From 9b66f4c6c086a8c96c485eea035abe1e428d2306 Mon Sep 17 00:00:00 2001
From: Dylan <28832631+DARwins1@users.noreply.github.com>
Date: Thu, 11 Nov 2021 02:51:35 -0600
Subject: [PATCH 01/10] Add files via upload

---
 script/campaign/cam1-1.js         |   6 +
 script/campaign/cam1-2.js         |   8 +
 script/campaign/cam1-3.js         |   5 +-
 script/campaign/cam1-4a.js        |   9 +-
 script/campaign/cam1-5.js         |  37 +++-
 script/campaign/cam1-7.js         |   7 +-
 script/campaign/cam1b.js          |   6 +
 script/campaign/cam1c.js          |  17 +-
 script/campaign/cam2-a.js         |  12 +-
 script/campaign/cam3-a.js         |  17 +-
 script/campaign/cam3-ab.js        |   2 +-
 script/campaign/transitionTech.js | 316 +++++++++++++++++-------------
 12 files changed, 274 insertions(+), 168 deletions(-)

diff --git a/script/campaign/cam1-1.js b/script/campaign/cam1-1.js
index 8e2f3f4..79c44b6 100644
--- a/script/campaign/cam1-1.js
+++ b/script/campaign/cam1-1.js
@@ -2,6 +2,10 @@
 include("script/campaign/libcampaign.js");
 include("script/campaign/templates.js");
 
+const SCAVENGER_RES = [
+	"R-Wpn-Flamer-Damage01", "R-Wpn-MG-Damage01",
+];
+
 //Ambush player from scav base - triggered from middle path
 camAreaEvent("scavBaseTrigger", function()
 {
@@ -56,6 +60,8 @@ function eventStartLevel()
 	startTransporterEntry(tent.x, tent.y, CAM_HUMAN_PLAYER);
 	setTransporterExit(text.x, text.y, CAM_HUMAN_PLAYER);
 
+	camCompleteRequiredResearch(SCAVENGER_RES, SCAV_7);
+
 	//Get rid of the already existing crate and replace with another
 	camSafeRemoveObject("artifact1", false);
 	camSetArtifacts({
diff --git a/script/campaign/cam1-2.js b/script/campaign/cam1-2.js
index e59c20d..d53f86b 100644
--- a/script/campaign/cam1-2.js
+++ b/script/campaign/cam1-2.js
@@ -2,6 +2,12 @@
 include("script/campaign/libcampaign.js");
 include("script/campaign/templates.js");
 
+const SCAVENGER_RES = [
+	"R-Wpn-Flamer-Damage02", "R-Wpn-Flamer-ROF01",
+	"R-Wpn-MG-Damage02", "R-Wpn-Mortar-Damage01",
+	"R-Wpn-Mortar-ROF01", "R-Wpn-Rocket-ROF01",
+];
+
 function exposeNorthBase()
 {
 	camDetectEnemyBase("NorthGroup"); // no problem if already detected
@@ -69,6 +75,8 @@ function eventStartLevel()
 	startTransporterEntry(tent.x, tent.y, CAM_HUMAN_PLAYER);
 	setTransporterExit(text.x, text.y, CAM_HUMAN_PLAYER);
 
+	camCompleteRequiredResearch(SCAVENGER_RES, SCAV_7);
+
 	camSetEnemyBases({
 		"NorthGroup": {
 			cleanup: "NorthBase",
diff --git a/script/campaign/cam1-3.js b/script/campaign/cam1-3.js
index c0f682c..a2d59e9 100644
--- a/script/campaign/cam1-3.js
+++ b/script/campaign/cam1-3.js
@@ -15,7 +15,10 @@ const NEW_PARADIGM_RES = [
 	"R-Wpn-RocketSlow-Damage01", "R-Struc-RprFac-Upgrade03",
 ];
 const SCAVENGER_RES = [
-	"R-Wpn-MG-Damage02", "R-Wpn-Rocket-Damage01", "R-Wpn-Cannon-Damage01",
+	"R-Wpn-Flamer-Damage02", "R-Wpn-Flamer-ROF01",
+	"R-Wpn-MG-Damage02", "R-Wpn-Cannon-Damage01",
+	"R-Wpn-Mortar-Damage01", "R-Wpn-Mortar-ROF01", "R-Wpn-Rocket-ROF01",
+	"R-Defense-WallUpgrade01","R-Struc-Materials01",
 ];
 var NPDefenseGroup, NPScoutGroup, NPFactory;
 
diff --git a/script/campaign/cam1-4a.js b/script/campaign/cam1-4a.js
index ffca649..5140692 100644
--- a/script/campaign/cam1-4a.js
+++ b/script/campaign/cam1-4a.js
@@ -8,12 +8,15 @@ const NEW_PARADIGM_RES = [
 	"R-Vehicle-Metals02", "R-Cyborg-Metals02", "R-Wpn-Cannon-Damage03",
 	"R-Wpn-Flamer-Damage03", "R-Wpn-Flamer-ROF01",
 	"R-Wpn-Mortar-Damage02", "R-Wpn-Rocket-Accuracy01",
-	"R-Wpn-Rocket-Damage02", "R-Wpn-Rocket-ROF01",
+	"R-Wpn-Rocket-Damage02", "R-Wpn-Rocket-ROF02",
 	"R-Wpn-RocketSlow-Damage02", "R-Struc-RprFac-Upgrade03",
 ];
-
 const SCAVENGER_RES = [
-	"R-Wpn-MG-Damage03", "R-Wpn-Rocket-Damage02",
+	"R-Wpn-Flamer-Damage03", "R-Wpn-Flamer-ROF01",
+	"R-Wpn-MG-Damage04", "R-Wpn-MG-ROF01", "R-Wpn-Rocket-Damage02",
+	"R-Wpn-Cannon-Damage02", "R-Wpn-Mortar-Damage03", "R-Wpn-Mortar-ROF01",
+	"R-Wpn-Rocket-ROF02", "R-Vehicle-Metals02",
+	"R-Defense-WallUpgrade03", "R-Struc-Materials03",
 ];
 
 //Pursue player when nearby but do not go too far away from defense zone.
diff --git a/script/campaign/cam1-5.js b/script/campaign/cam1-5.js
index 18eb840..056d4f6 100644
--- a/script/campaign/cam1-5.js
+++ b/script/campaign/cam1-5.js
@@ -10,9 +10,13 @@ const NEW_PARADIGM_RES = [
 	"R-Wpn-Mortar-Acc01", "R-Wpn-Rocket-Accuracy01", "R-Wpn-Rocket-Damage03",
 	"R-Wpn-Rocket-ROF02", "R-Wpn-RocketSlow-Damage02", "R-Struc-RprFac-Upgrade03",
 ];
-
 const SCAVENGER_RES = [
-	"R-Wpn-MG-Damage03", "R-Wpn-Rocket-Damage02", "R-Wpn-Cannon-Damage02",
+	"R-Wpn-Flamer-Damage03", "R-Wpn-Flamer-ROF01",
+	"R-Wpn-MG-Damage04", "R-Wpn-MG-ROF01", "R-Wpn-Rocket-Damage02",
+	"R-Wpn-Cannon-Damage03", "R-Wpn-Mortar-Damage03", "R-Wpn-Mortar-ROF01",
+	"R-Wpn-Rocket-Accuracy02", "R-Wpn-Rocket-ROF03", "R-Vehicle-Metals02",
+	"R-Defense-WallUpgrade03", "R-Struc-Materials03", "R-Wpn-Cannon-Accuracy01",
+	"R-Wpn-Mortar-Acc01",
 ];
 
 var useHeavyReinforcement;
@@ -20,11 +24,22 @@ var useHeavyReinforcement;
 //Get some droids for the New Paradigm transport
 function getDroidsForNPLZ(args)
 {
-	const LIGHT_ATTACKER_LIMIT = 8;
-	const HEAVY_ATTACKER_LIMIT = 3;
+	var lightAttackerLimit = 8;
+	var heavyAttackerLimit = 3;
 	var unitTemplates;
 	var list = [];
 
+	if (difficulty === HARD)
+	{
+		lightAttackerLimit = 9;
+		heavyAttackerLimit = 4;
+	}
+	else if (difficulty === INSANE)
+	{
+		lightAttackerLimit = 10;
+		heavyAttackerLimit = 5;
+	}
+
 	if (useHeavyReinforcement)
 	{
 		var artillery = [cTempl.npmor];
@@ -45,7 +60,7 @@ function getDroidsForNPLZ(args)
 		unitTemplates = [cTempl.nppod, cTempl.npmrl, cTempl.npsmc];
 	}
 
-	var lim = useHeavyReinforcement ? HEAVY_ATTACKER_LIMIT : LIGHT_ATTACKER_LIMIT;
+	var lim = useHeavyReinforcement ? heavyAttackerLimit : lightAttackerLimit;
 	for (var i = 0; i < lim; ++i)
 	{
 		list.push(unitTemplates[camRand(unitTemplates.length)]);
@@ -89,11 +104,21 @@ camAreaEvent("NPFactoryTrigger", function(droid)
 });
 
 //Land New Paradigm transport in the LZ area (protected by four hardpoints in the New Paradigm base)
+camAreaEvent("NPLZTriggerEast", function()
+{
+	camCallOnce("activateNPLZTransporter");
+});
+
 camAreaEvent("NPLZTrigger", function()
+{
+	camCallOnce("activateNPLZTransporter");
+});
+
+function activateNPLZTransporter()
 {
 	setTimer("sendNPTransport", camChangeOnDiff(camMinutesToMilliseconds(3)));
 	sendNPTransport();
-});
+}
 
 function sendNPTransport()
 {
diff --git a/script/campaign/cam1-7.js b/script/campaign/cam1-7.js
index c0c8881..463f2a0 100644
--- a/script/campaign/cam1-7.js
+++ b/script/campaign/cam1-7.js
@@ -13,7 +13,12 @@ const NEW_PARADIGM_RESEARCH = [
 	"R-Wpn-RocketSlow-Damage03", "R-Struc-RprFac-Upgrade03",
 ];
 const SCAVENGER_RES = [
-	"R-Wpn-MG-Damage03", "R-Wpn-Rocket-Damage02", "R-Wpn-Cannon-Damage02",
+	"R-Wpn-Flamer-Damage03", "R-Wpn-Flamer-ROF01",
+	"R-Wpn-MG-Damage04", "R-Wpn-MG-ROF01", "R-Wpn-Rocket-Damage03",
+	"R-Wpn-Cannon-Damage03", "R-Wpn-Mortar-Damage03", "R-Wpn-Mortar-ROF01",
+	"R-Wpn-Rocket-Accuracy02", "R-Wpn-Rocket-ROF03", "R-Vehicle-Metals02",
+	"R-Defense-WallUpgrade03", "R-Struc-Materials03", "R-Wpn-Cannon-Accuracy01",
+	"R-Wpn-Mortar-Acc01",
 ];
 var artiGroup; //Droids that take the artifact
 var enemyHasArtifact; //Do they have the artifact
diff --git a/script/campaign/cam1b.js b/script/campaign/cam1b.js
index 9b3cfe7..207f8e4 100644
--- a/script/campaign/cam1b.js
+++ b/script/campaign/cam1b.js
@@ -3,6 +3,9 @@ include("script/campaign/libcampaign.js");
 include("script/campaign/templates.js");
 
 var NPScout; // Sensor scout
+const SCAVENGER_RES = [
+	"R-Wpn-Flamer-Damage01", "R-Wpn-MG-Damage01",
+];
 
 camAreaEvent("AttackArea1", function(droid)
 {
@@ -80,6 +83,9 @@ function eventStartLevel()
 	setAlliance(NEW_PARADIGM, SCAV_7, true);
 	setAlliance(SCAV_6, SCAV_7, true);
 
+	camCompleteRequiredResearch(SCAVENGER_RES, 6);
+	camCompleteRequiredResearch(SCAVENGER_RES, 7);
+
 	camSetArtifacts({
 		"base1factory": { tech: "R-Wpn-Flamer-ROF01" },
 		"base2factory": { tech: "R-Wpn-MG2Mk1" },
diff --git a/script/campaign/cam1c.js b/script/campaign/cam1c.js
index 55d91a9..a18e27c 100644
--- a/script/campaign/cam1c.js
+++ b/script/campaign/cam1c.js
@@ -13,7 +13,10 @@ const NEW_PARADIGM_RES = [
 	"R-Wpn-RocketSlow-Damage01", "R-Struc-RprFac-Upgrade03",
 ];
 const SCAVENGER_RES = [
-	"R-Wpn-MG-Damage02", "R-Wpn-Rocket-Damage02", "R-Wpn-Cannon-Damage01",
+	"R-Wpn-Flamer-Damage02", "R-Wpn-Flamer-ROF01",
+	"R-Wpn-MG-Damage03", "R-Wpn-MG-ROF01", "R-Wpn-Rocket-Damage01",
+	"R-Wpn-Cannon-Damage02", "R-Wpn-Mortar-Damage02", "R-Wpn-Mortar-ROF01",
+	"R-Wpn-Rocket-ROF02", "R-Defense-WallUpgrade02","R-Struc-Materials02",
 ];
 
 function sendRocketForce()
@@ -113,14 +116,22 @@ function camEnemyBaseEliminated_NPCentralFactory()
 
 function getDroidsForNPLZ(args)
 {
-	var scouts = [ cTempl.npsens, cTempl.nppod, cTempl.nphmg, cTempl.npflam ];
-	var heavies = [ cTempl.npslc, cTempl.npsmct, cTempl.npmor ];
+	var scouts = [ cTempl.nppod, cTempl.nphmg ];
+	var heavies = [ cTempl.npslc, cTempl.npsmct ];
+	var useArtillery = (camRand(100) < 50);
 
 
 	var numScouts = camRand(5) + 1;
 	var heavy = heavies[camRand(heavies.length)];
 	var list = [];
 
+	if (useArtillery)
+	{
+		list[list.length] = cTempl.npsens; //sensor will count towards scout total
+		numScouts = numScouts - 1;
+		heavy = cTempl.npmor;
+	}
+	
 	for (var i = 0; i < numScouts; ++i)
 	{
 		list[list.length] = scouts[camRand(scouts.length)];
diff --git a/script/campaign/cam2-a.js b/script/campaign/cam2-a.js
index 34ccbc2..85ed57b 100644
--- a/script/campaign/cam2-a.js
+++ b/script/campaign/cam2-a.js
@@ -187,7 +187,6 @@ function truckDefense()
 //Gives starting tech and research.
 function cam2Setup()
 {
-	var x = 0;
 	const COLLECTIVE_RES = [
 		"R-Wpn-MG1Mk1", "R-Sys-Engineering02",
 		"R-Defense-WallUpgrade03", "R-Struc-Materials03",
@@ -202,19 +201,16 @@ function cam2Setup()
 		"R-Wpn-RocketSlow-Damage03", "R-Sys-Sensor-Upgrade01"
 	];
 
-	for (x = 0; x < ALPHA_TECH.length; ++x)
-	{
-		makeComponentAvailable(ALPHA_TECH[x], CAM_HUMAN_PLAYER);
-	}
-
-	for (x = 0; x < STRUCTS_ALPHA.length; ++x)
+	for (var x = 0, l = STRUCTS_ALPHA.length; x < l; ++x)
 	{
 		enableStructure(STRUCTS_ALPHA[x], CAM_HUMAN_PLAYER);
 	}
 
 	camCompleteRequiredResearch(PLAYER_RES_BETA, CAM_HUMAN_PLAYER);
+	camCompleteRequiredResearch(ALPHA_RESEARCH_NEW, THE_COLLECTIVE);
 	camCompleteRequiredResearch(COLLECTIVE_RES, THE_COLLECTIVE);
-	camCompleteRequiredResearch(ALPHA_RESEARCH, CAM_HUMAN_PLAYER);
+	camCompleteRequiredResearch(ALPHA_RESEARCH_NEW, CAM_HUMAN_PLAYER);
+
 	enableResearch("R-Wpn-Cannon-Damage04", CAM_HUMAN_PLAYER);
 	enableResearch("R-Wpn-Rocket-Damage04", CAM_HUMAN_PLAYER);
 	preDamageStuff();
diff --git a/script/campaign/cam3-a.js b/script/campaign/cam3-a.js
index 4296eb5..7810378 100644
--- a/script/campaign/cam3-a.js
+++ b/script/campaign/cam3-a.js
@@ -159,8 +159,6 @@ function groupPatrolNoTrigger()
 //Gives starting tech and research.
 function cam3Setup()
 {
-	var x = 0;
-	var l = 0;
 	const NEXUS_RES = [
 		"R-Wpn-MG1Mk1", "R-Sys-Engineering03", "R-Defense-WallUpgrade07",
 		"R-Struc-Materials07", "R-Struc-Factory-Upgrade06",
@@ -172,20 +170,13 @@ function cam3Setup()
 		"R-Wpn-Rail-ROF01", "R-Wpn-Rail-Accuracy01", "R-Wpn-Flamer-Damage06",
 	];
 
-	for (x = 0, l = BETA_TECH.length; x < l; ++x)
+	for (var x = 0, l = STRUCTS_ALPHA.length; x < l; ++x)
 	{
-		makeComponentAvailable(BETA_TECH[x], CAM_HUMAN_PLAYER);
+		enableStructure(STRUCTS_ALPHA[x], CAM_HUMAN_PLAYER);
 	}
 
-	for (x = 0, l = STRUCTS_GAMMA.length; x < l; ++x)
-	{
-		enableStructure(STRUCTS_GAMMA[x], CAM_HUMAN_PLAYER);
-	}
-
-	camCompleteRequiredResearch(ALPHA_RESEARCH, CAM_HUMAN_PLAYER);
-	camCompleteRequiredResearch(ALPHA_RESEARCH, NEXUS);
-
-	camCompleteRequiredResearch(PLAYER_RES_GAMMA, CAM_HUMAN_PLAYER);
+	camCompleteRequiredResearch(GAMMA_ALLY_RES, CAM_HUMAN_PLAYER);
+	camCompleteRequiredResearch(GAMMA_ALLY_RES, NEXUS);
 	camCompleteRequiredResearch(NEXUS_RES, NEXUS);
 
 	enableResearch("R-Wpn-Howitzer03-Rot", CAM_HUMAN_PLAYER);
diff --git a/script/campaign/cam3-ab.js b/script/campaign/cam3-ab.js
index 2fadd8e..4d9b2ce 100644
--- a/script/campaign/cam3-ab.js
+++ b/script/campaign/cam3-ab.js
@@ -187,7 +187,7 @@ function eventResearched(research, structure, player)
 	}
 	else if (research.name === "R-Sys-Resistance-Upgrade03")
 	{
-		hackFailChance = 97;
+		hackFailChance = 95;
 	}
 	else if (research.name === "R-Sys-Resistance-Upgrade04")
 	{
diff --git a/script/campaign/transitionTech.js b/script/campaign/transitionTech.js
index 94f6940..9b3b8ff 100644
--- a/script/campaign/transitionTech.js
+++ b/script/campaign/transitionTech.js
@@ -1,152 +1,204 @@
 //Contains the campaign transition technology definitions.
 
 //This array should give a player all the research from Alpha.
-const ALPHA_RESEARCH = [
-	"R-Wpn-MG1Mk1", "R-Vehicle-Body01",
-	"R-Sys-Spade1Mk1", "R-Vehicle-Prop-Wheels", "R-Wpn-Flamer-Damage03",
-	"R-Sys-Engineering01", "R-Sys-MobileRepairTurret01",
-	"R-Struc-PowerModuleMk1", "R-Wpn-MG2Mk1",
-	"R-Wpn-MG3Mk1", "R-Wpn-Cannon1Mk1", "R-Defense-WallUpgrade03",
-	"R-Struc-Factory-Upgrade03","R-Vehicle-Metals03", "R-Cyborg-Wpn-MG",
-	"R-Cyborg-Metals03",
-	"R-Struc-Materials03", "R-Struc-Research-Upgrade03",
-	"R-Struc-RprFac-Upgrade03", "R-Wpn-MG-ROF01",
-	"R-Wpn-Cannon-Damage03", "R-Wpn-Rocket05-MiniPod", "R-Wpn-Rocket-Damage03",
-	"R-Wpn-Flamer-ROF01", "R-Wpn-MG-Damage04",
-	"R-Wpn-Mortar-Damage03", "R-Wpn-Rocket-Accuracy02",
-	"R-Wpn-Rocket-ROF03", "R-Wpn-RocketSlow-Damage03",
-	"R-Wpn-RocketSlow-Accuracy01", "R-Vehicle-Engine03",
-	"R-Defense-MRL", "R-Comp-CommandTurret01",
-	"R-Cyborg-Wpn-Cannon", "R-Cyborg-Wpn-Flamer",
-	"R-Cyborg-Wpn-Rocket", "R-Defense-MortarPit", "R-Defense-Pillbox01",
-	"R-Defense-Pillbox04", "R-Defense-Pillbox05", "R-Defense-Pillbox06",
-	"R-Defense-TankTrap01", "R-Defense-Tower01", "R-Defense-Tower06",
-	"R-Defense-WallTower01", "R-Defense-WallTower02", "R-Defense-WallTower03",
-	"R-Defense-WallTower06",
-	"R-Vehicle-Body11", "R-Vehicle-Body12", "R-Vehicle-Engine03",
-	"R-Vehicle-Prop-Tracks", "R-Vehicle-Prop-Hover", "R-Vehicle-Prop-Wheels",
-	"R-Wpn-Cannon-Accuracy01", "R-Wpn-Mortar-Acc01",
-	"R-Wpn-Mortar-ROF01", "R-Defense-HvyMor", "R-Wpn-Rocket03-HvAT",
-	"R-Defense-HardcreteGate", "R-Cyb-Sys-Construct", "R-Cyb-Sys-Repair",
-	"R-Cyb-Wpn-Grenade", "R-Defense-LancerTower",
-];
+const ALPHA_RESEARCH_NEW = [
+	// 1
+	"R-Wpn-MG1Mk1", "R-Vehicle-Body01", "R-Sys-Spade1Mk1", "R-Vehicle-Prop-Wheels",
+	"R-Sys-MobileRepairTurret01", "R-Sys-Engineering01", "R-Wpn-Flamer01Mk1", "R-Wpn-MG-Damage01",
+	"R-Wpn-MG-Damage02", "R-Wpn-Flamer-Damage01", 
+	"R-Defense-Tower01", "R-Defense-TankTrap01",
+
+	// 2
+	"R-Wpn-Flamer-ROF01", "R-Wpn-Flamer-Damage02", "R-Wpn-MG2Mk1", "R-Sys-Sensor-Turret01", "R-Struc-PowerModuleMk1",
+	"R-Wpn-MG-Damage03", "R-Sys-Sensor-Tower01",
+
+	// 3
+	"R-Wpn-Cannon1Mk1", "R-Wpn-Cannon-Damage01",
+
+	// 4
+	"R-Wpn-Mortar01Lt", "R-Vehicle-Prop-Halftracks",
+	"R-Wpn-Mortar-Damage01", "R-Wpn-Mortar-ROF01",
+
+	// 5
+	"R-Wpn-MG3Mk1", "R-Wpn-Cannon2Mk1", "R-Struc-Factory-Module", "R-Wpn-MG-ROF01", "R-Wpn-MG-Damage04",
+	"R-Struc-Factory-Upgrade01", "R-Struc-Factory-Upgrade02", "R-Defense-HardcreteWall", "R-Defense-HardcreteGate",
+	"R-Struc-CommandRelay", "R-Comp-CommandTurret01", "R-Struc-RepairFacility",
+	"R-Struc-RprFac-Upgrade01", "R-Struc-RprFac-Upgrade02", "R-Defense-MortarPit",
+	"R-Defense-Pillbox01", "R-Defense-Pillbox04", "R-Defense-Pillbox05",
+	"R-Defense-WallTower01", "R-Defense-WallTower02", "R-Defense-WallUpgrade01",
+	"R-Defense-WallUpgrade02", "R-Defense-WallUpgrade03", "R-Struc-Materials01",
+	"R-Struc-Materials02", "R-Struc-Materials03", "R-Vehicle-Body05", "R-Defense-WallTower03",
+	"R-Wpn-Cannon-Damage02", "R-Wpn-Mortar-Damage02",
+
+	// 6
+	"R-Wpn-Rocket05-MiniPod", "R-Struc-Research-Module",
+	"R-Vehicle-Prop-Tracks", "R-Vehicle-Engine01", "R-Defense-Tower06", "R-Defense-Pillbox06",
+	"R-Wpn-Rocket-Damage01", "R-Wpn-Rocket-Damage02", "R-Wpn-Rocket-ROF01",
+	"R-Wpn-Rocket-ROF02", "R-Wpn-Rocket-ROF03", "R-Defense-WallTower06",
+	"R-Wpn-Rocket01-LtAT", "R-Defense-LancerTower", "R-Wpn-Rocket02-MRL", "R-Defense-MRL",
+	"R-Wpn-RocketSlow-Damage01", "R-Wpn-Flamer-Damage03",
+
+	// 7
+
+	// 8
+	"R-Vehicle-Metals01", "R-Vehicle-Metals02", "R-Vehicle-Body04", "R-Wpn-Rocket03-HvAT", "R-Wpn-RocketSlow-Damage02",
+	"R-Wpn-Rocket-Damage03", "R-Wpn-Mortar02Hvy", "R-Wpn-Mortar-Damage03", "R-Wpn-Cannon-Damage03",
+	"R-Wpn-RocketSlow-Damage02", "R-Vehicle-Body11", "R-Defense-HvyMor",
+
+	// 9
+	"R-Struc-Research-Upgrade01", "R-Struc-Research-Upgrade02", "R-Struc-Research-Upgrade03",
+	"R-Wpn-Mortar-Acc01", "R-Wpn-Rocket-Accuracy01", "R-Wpn-Rocket-Accuracy02",
+	"R-Wpn-RocketSlow-Accuracy01", "R-Wpn-Cannon-Accuracy01", "R-Struc-RprFac-Upgrade03",
+	"R-Comp-SynapticLink", "R-Vehicle-Body08", "R-Vehicle-Engine02", "R-Struc-Factory-Upgrade03",
+	"R-Struc-Factory-Cyborg", "R-Cyborg-Wpn-MG", "R-Cyborg-Metals01", "R-Cyborg-Metals02",
+	"R-Cyborg-Metals03", "R-Cyborg-Wpn-Cannon", "R-Cyborg-Wpn-Flamer", "R-Cyborg-Wpn-Rocket",
+	"R-Cyb-Sys-Repair", "R-Cyb-Sys-Construct", "R-Cyb-Wpn-Grenade",
+	"R-Cyborg-Legs01", "R-Wpn-RocketSlow-Damage03",
 
-//BETA 2-A
-const ALPHA_TECH = [
-	"MG1Mk1", "Cannon1Mk1", "Cannon2A-TMk1", "Cannon4AUTOMk1", "Flame1Mk1",
-	"MG2Mk1", "MG3Mk1", "Mortar1Mk1", "Mortar2Mk1", "Rocket-BB", "Rocket-LtA-T",
-	"Rocket-MRL", "Rocket-Pod", "Cannon1-VTOL", "Cannon4AUTO-VTOL", "MG1-VTOL", "MG2-VTOL",
-	"MG3-VTOL", "Rocket-VTOL-LtA-T", "Rocket-VTOL-Pod", "Rocket-VTOL-BB",
-	"CyborgFlamer01", "CyborgCannon", "CyborgChaingun", "CyborgRocket",
-	"CommandTurret1", "Body1REC", "Body5REC", "Body11ABT", "Body4ABT",
-	"Body8MBT", "Body12SUP", "CyborgLightBody", "HalfTrack", "hover01",
-	"tracked01", "wheeled01", "Spade1Mk1", "SensorTurret1Mk1",
-	"CommandBrain01", 
+	// 10
+
+	// 11
+	"R-Wpn-Cannon4AMk1", "R-Defense-Emplacement-HPVcannon", "R-Defense-WallTower-HPVcannon",
+
+	//12
+	"R-Vehicle-Prop-Hover", "R-Vehicle-Metals03", "R-Vehicle-Body12", "R-Vehicle-Engine03",
 ];
 
+//Basic base structures.
 const STRUCTS_ALPHA = [
-	"A0CommandCentre", "A0PowerGenerator", "A0ResourceExtractor",
-	"A0ResearchFacility", "A0LightFactory", "A0ComDroidControl",
-	"A0CyborgFactory", "A0FacMod1", "A0HardcreteMk1CWall",
-	"A0HardcreteMk1Wall", "A0PowMod1", "A0RepairCentre3",
-	"A0ResearchModule1", "A0TankTrap", "PillBox1", "PillBox4",
-	"PillBox5", "PillBox6", "TankTrapC", "WallTower01",
-	"WallTower03", "WallTower-HPVcannon", "WallTower06", "AASite-QuadMg1",
-	"Emplacement-MortarPit01", "Emplacement-MRL-pit", "Emplacement-HPVcannon", 
+	"A0CommandCentre",
+	"A0PowerGenerator",
+	"A0ResourceExtractor",
+	"A0ResearchFacility",
+	"A0LightFactory",
 ];
 
+
+//BETA 2-A bonus research
 const PLAYER_RES_BETA = [
-	"R-Wpn-MG1Mk1", "R-Sys-Engineering01", "R-Cyborg-Legs01",
-	"R-Vehicle-Metals03", "R-Cyborg-Metals03", "R-Defense-WallUpgrade03",
-	"R-Struc-Factory-Upgrade03",
-	"R-Struc-Materials03", "R-Struc-Research-Upgrade03",
-	"R-Struc-RprFac-Upgrade03", "R-Wpn-MG-ROF01",
-	"R-Sys-MobileRepairTurret01", "R-Wpn-Cannon-Damage03",
-	"R-Wpn-Flamer-Damage03", "R-Wpn-Flamer-ROF01", "R-Wpn-MG-Damage04",
-	"R-Wpn-Mortar-Damage03", "R-Wpn-Rocket-Accuracy02",
-	"R-Wpn-Rocket-ROF03", "R-Wpn-RocketSlow-Accuracy01",
-	"R-Wpn-RocketSlow-Damage03", "R-Vehicle-Engine03",
-	"R-Wpn-AAGun03", "R-Defense-AASite-QuadMg1",
-	"R-Sys-Sensor-Tower02", "R-Defense-MRL",
+	"R-Wpn-AAGun03",
+	"R-Defense-AASite-QuadMg1",
+	"R-Sys-Sensor-Tower02",
 ];
 
-//GAMMA 3-A
-const BETA_TECH = [
-	"MG1Mk1", "Cannon1Mk1", "Cannon2A-TMk1", "Cannon375mmMk1", "Flame1Mk1",
-	"MG2Mk1", "MG3Mk1", "Mortar1Mk1", "Mortar2Mk1", "Rocket-BB", "Rocket-LtA-T",
-	"Rocket-MRL", "Rocket-Pod", "Cannon1-VTOL", "MG1-VTOL", "MG2-VTOL",
-	"MG3-VTOL", "Rocket-VTOL-LtA-T", "Rocket-VTOL-Pod", "Rocket-VTOL-BB",
-	"CyborgFlamer01", "CyborgCannon", "CyborgChaingun", "CyborgRocket", "CyborgRotMG",
-	"CommandTurret1", "Body1REC", "Body5REC", "Body11ABT", "Body4ABT",
-	"Body8MBT", "Body12SUP", "CyborgLightBody", "HalfTrack", "hover01",
-	"tracked01", "wheeled01", "Spade1Mk1", "SensorTurret1Mk1",
-	"CommandBrain01", "V-Tol", "Sys-CBTurret01", "Sys-VstrikeTurret01",
-	"Sys-VTOLCBTurret01", "Body2SUP", "Body6SUPP", "Body9REC", "AAGun2Mk1",
-	"Bomb1-VTOL-LtHE", "Bomb2-VTOL-HvHE", "Bomb3-VTOL-LtINC", "Bomb4-VTOL-HvyINC",
-	"Cannon4AUTO-VTOL", "Cannon4AUTOMk1", "Cannon5Vulcan-VTOL", "Cannon5VulcanMk1",
-	"Flame2", "Howitzer105Mk1", "Howitzer150Mk1", "MG4ROTARY-VTOL", "MG4ROTARYMk1",
-	"Mortar3ROTARYMk1", "Rocket-HvyA-T", "Rocket-IDF", "Rocket-VTOL-HvyA-T",
-	"QuadRotAAGun", "HeavyRepair",
-];
+//This array should give a player all the research from Beta.
+const BETA_RESEARCH_NEW = [
+	// 1
+	"R-Sys-Engineering02", "R-Sys-Sensor-Upgrade01", "R-Wpn-MG-ROF02",
+	"R-Wpn-Cannon-Damage04", "R-Wpn-Rocket-Damage04", "R-Wpn-AAGun-Damage03",
+	"R-Defense-WallUpgrade06", "R-Sys-CBSensor-Tower01", "R-Wpn-AAGun-ROF02",
+	"R-Wpn-Cannon-Accuracy02", "R-Wpn-MG-Damage05", "R-Wpn-Cannon-ROF01",
+	"R-Wpn-RocketSlow-Damage04", "R-Struc-Materials06", "R-Sys-CBSensor-Turret01",
+	"R-Wpn-RocketSlow-Accuracy02",
 
-const STRUCTS_GAMMA = [
-	"A0CommandCentre", "A0PowerGenerator", "A0ResourceExtractor",
-	"A0ResearchFacility", "A0LightFactory", "A0ComDroidControl",
-	"A0CyborgFactory", "A0FacMod1", "A0HardcreteMk1CWall",
-	"A0HardcreteMk1Wall", "A0PowMod1", "A0RepairCentre3",
-	"A0ResearchModule1", "A0TankTrap", "PillBox1", "PillBox4",
-	"PillBox5", "PillBox6", "TankTrapC", "WallTower01",
-	"WallTower03", "WallTower04", "WallTower06", "AASite-QuadMg1",
-	"Emplacement-MortarPit02", "Emplacement-MRL-pit", "A0VTolFactory1",
-	"A0VtolPad", "Sys-CB-Tower01", "Sys-SensoTower02", "Sys-VTOL-CB-Tower01",
-	"Sys-VTOL-RadarTower01", "AASite-QuadBof", "AASite-QuadRotMg",
-	"Emplacement-HPVcannon", "Emplacement-Howitzer105", "Emplacement-Howitzer150",
-	"Emplacement-Rocket06-IDF", "Emplacement-RotMor", "Emplacement-HvyATrocket",
-	"Wall-RotMg", "Wall-VulcanCan", "WallTower-HvATrocket",
-	"WallTower-HPVcannon", "Tower-Projector", "Pillbox-RotMG",
-];
+	// 2
+
+	// 3
+	"R-Vehicle-Body06", "R-Wpn-Flame2", "R-Wpn-MG-ROF03", "R-Cyborg-Hvywpn-Mcannon",
+	"R-Wpn-RocketSlow-ROF01", "R-Defense-HvyFlamer", "R-Vehicle-Metals04",
+	 
+	"R-Wpn-MG-Damage06", "R-Cyb-Wpn-Thermite",
+	"R-Cyborg-Metals04", "R-Wpn-Flamer-Damage04",
+
+	// 4
+	"R-Wpn-RocketSlow-Accuracy03", "R-Wpn-AAGun-Accuracy01", "R-Wpn-Mortar-Acc02",
+	"R-Wpn-RocketSlow-Damage05", "R-Wpn-Rocket-Damage05",
+
+	// 5
+	"R-Vehicle-Body02", "R-Vehicle-Prop-VTOL", "R-Wpn-AAGun02", "R-Wpn-HowitzerMk1",
+	"R-Wpn-Rocket06-IDF", "R-Defense-AASite-QuadBof", "R-Defense-Howitzer", "R-Defense-IDFRocket",
+	"R-Struc-VTOLFactory", "R-Vehicle-Engine04", "R-Vehicle-Metals05", "R-Wpn-Bomb01", "R-Wpn-Rocket-Damage06", 
+	"R-Wpn-Flamer-ROF02", "R-Wpn-Howitzer-Damage02", "R-Wpn-Howitzer-ROF02", "R-Wpn-Mortar-ROF02", "R-Wpn-RocketSlow-Damage06",
+	"R-Cyborg-Metals05", "R-Struc-Factory-Upgrade06", "R-Struc-VTOLPad", "R-Vehicle-Armor-Heat01", "R-Wpn-Cannon-ROF02",
+	"R-Wpn-Bomb-Damage01", "R-Wpn-Bomb03", "R-Cyborg-Armor-Heat01", "R-Struc-RprFac-Upgrade06",
+	"R-Sys-VTOLStrike-Tower01", "R-Sys-VTOLStrike-Turret01", 
+	"R-Wpn-Flamer-Damage05",
 
-const PLAYER_RES_GAMMA = [
-	"R-Wpn-MG1Mk1", "R-Sys-Engineering02", "R-Cyborg-Legs01",
-	"R-Vehicle-Metals06", "R-Cyborg-Metals06", "R-Defense-WallUpgrade06",
-	"R-Struc-Factory-Upgrade06",
-	"R-Struc-Materials06", "R-Struc-Research-Upgrade06",
-	"R-Struc-RprFac-Upgrade06", "R-Wpn-MG-ROF03",
-	"R-Sys-MobileRepairTurret01", "R-Wpn-Cannon-Damage06",
-	"R-Wpn-Flamer-Damage06", "R-Wpn-Flamer-ROF03", "R-Wpn-MG-Damage07",
-	"R-Wpn-Mortar-Damage06", "R-Wpn-Rocket-Accuracy02",
-	"R-Wpn-Rocket-ROF03", "R-Wpn-RocketSlow-Accuracy03",
-	"R-Wpn-RocketSlow-Damage06", "R-Vehicle-Engine06",
-	"R-Wpn-AAGun03", "R-Defense-AASite-QuadMg1",
-	"R-Sys-Sensor-Tower02", "R-Defense-MRL", "R-Wpn-Cannon-Accuracy02",
-	"R-Wpn-Cannon-ROF03", "R-Wpn-Howitzer-Accuracy02", "R-Wpn-Howitzer-Damage03",
-	"R-Wpn-Mortar-Acc03", "R-Wpn-Mortar-ROF03", "R-Wpn-Mortar-ROF02", "R-Wpn-Rocket-Damage06",
-	"R-Wpn-RocketSlow-ROF03", "R-Vehicle-Armor-Heat03", "R-Cyborg-Armor-Heat03", "R-Struc-VTOLPad-Upgrade03",
-	"R-Struc-Power-Upgrade01", "R-Sys-Sensor-Upgrade01", "R-Wpn-AAGun-Accuracy02",
-	"R-Wpn-AAGun-Damage03", "R-Wpn-AAGun-ROF03", "R-Wpn-Bomb-Damage02", "R-Wpn-Bomb03",
-	"R-Wpn-Howitzer-ROF03", "R-Sys-CBSensor-Turret01", "R-Sys-VTOLStrike-Turret01",
-	"R-Cyborg-Wpn-RotMG", "R-Defense-AASite-QuadRotMg", "R-Defense-Emplacement-HPVcannon",
-	"R-Defense-Howitzer", "R-Defense-HvyFlamer", "R-Defense-RotMG", "R-Defense-Wall-VulcanCan",
-	"R-Defense-WallTower-HPVcannon", "R-Defense-HvyHowitzer", "R-Defense-Wall-RotMg",
-	"R-Defense-IDFRocket", "R-Wpn-Bomb04", "R-Defense-Pillbox-RotMG",
-	"R-Defense-WallTower04", "R-Cyb-Wpn-Thermite", "R-Cyborg-Hvywpn-HPV", "R-Cyborg-Hvywpn-Acannon",
-	"R-Sys-MobileRepairTurretHvy", 
+	// 6
+	"R-Struc-Power-Upgrade01", "R-Wpn-Cannon3Mk1", "R-Wpn-MG4", "R-Wpn-RocketSlow-ROF02",
+	"R-Cyborg-Wpn-RotMG", "R-Defense-RotMG", 
+	"R-Wpn-MG-Damage07", "R-Wpn-Cannon-Damage05", "R-Defense-Wall-RotMg",
+	"R-Defense-Pillbox-RotMG", "R-Defense-WallTower04"
+
+	// 7
+	"R-Wpn-Bomb02", "R-Wpn-Mortar-Damage05", "R-Wpn-Flamer-ROF03", "R-Wpn-Flamer-Damage06",
+	"R-Wpn-AAGun-Accuracy02", "R-Wpn-Howitzer-Accuracy02", "R-Wpn-Mortar-Acc03",
+	"R-Struc-Research-Upgrade06", "R-Cyborg-Hvywpn-HPV", "R-Sys-MobileRepairTurretHvy",
+	"R-Struc-VTOLPad-Upgrade03", "R-Wpn-Bomb04",
+
+	// 8
+	"R-Sys-VTOLCBS-Tower01", "R-Wpn-Mortar3", "R-Wpn-Rocket07-Tank-Killer",
+	"R-Defense-HvyA-Trocket", "R-Defense-RotMor", "R-Cyborg-Hvywpn-TK",
+	"R-Defense-WallTower-HvyA-Trocket", "R-Sys-VTOLCBS-Turret01",
+
+	// 9
+	"R-Wpn-Cannon5", "R-Defense-Wall-VulcanCan", "R-Cyborg-Hvywpn-Acannon",
+	"R-Wpn-Cannon-Damage06", "R-Wpn-RocketSlow-ROF03", "R-Wpn-Cannon-ROF03",
+	"R-Wpn-Bomb-Damage02", "R-Wpn-Mortar-ROF03", "R-Wpn-Mortar-Damage06",
+	"R-Wpn-AAGun04", "R-Defense-AASite-QuadRotMg", "R-Wpn-AAGun-ROF03",
+
+	// 10
+	"R-Vehicle-Body09", "R-Wpn-HvyHowitzer", "R-Defense-HvyHowitzer", "R-Vehicle-Metals06",
+	"R-Wpn-Howitzer-Damage03", "R-Cyborg-Metals06", "R-Vehicle-Engine06",
+	"R-Wpn-Howitzer-ROF03", "R-Vehicle-Armor-Heat03", "R-Cyborg-Armor-Heat03",
+
+	// 11
 ];
 
 //This is used for giving allies in Gamma technology (3-b/3-2/3-c)
-const GAMMA_ALLY_RES = [
-	"R-Wpn-Cannon-Accuracy02", "R-Wpn-Cannon-Damage06", "R-Wpn-Cannon-ROF03",
-	"R-Wpn-Flamer-Damage06", "R-Wpn-Flamer-ROF03", "R-Wpn-Howitzer-Accuracy02",
-	"R-Wpn-Howitzer-Damage03", "R-Wpn-MG-Damage07", "R-Wpn-MG-ROF03",
-	"R-Wpn-Mortar-Acc02", "R-Wpn-Mortar-Damage06", "R-Wpn-Mortar-ROF03",
-	"R-Wpn-Rocket-Accuracy02", "R-Wpn-Rocket-Damage06", "R-Wpn-Rocket-ROF03",
-	"R-Wpn-RocketSlow-Accuracy03", "R-Wpn-RocketSlow-Damage06", "R-Wpn-RocketSlow-ROF03",
-	"R-Vehicle-Armor-Heat02", "R-Vehicle-Engine06", "R-Vehicle-Metals06", "R-Cyborg-Metals06",
-	"R-Cyborg-Armor-Heat02", "R-Defense-WallUpgrade06", "R-Struc-Factory-Upgrade06",
-	"R-Struc-VTOLPad-Upgrade03", "R-Struc-Materials06", "R-Struc-Power-Upgrade01",
-	"R-Struc-Research-Upgrade06", "R-Struc-RprFac-Upgrade06", "R-Sys-Engineering02",
-	"R-Sys-MobileRepairTurret01", "R-Sys-Sensor-Upgrade01", "R-Wpn-AAGun-Accuracy02",
-	"R-Wpn-AAGun-Damage03", "R-Wpn-AAGun-ROF03", "R-Wpn-Bomb-Damage02",
+const GAMMA_ALLY_RES = ALPHA_RESEARCH_NEW.concat(PLAYER_RES_BETA).concat(BETA_RESEARCH_NEW);
+
+const GAMMA_RESEARCH_NEW = [
+	//1
+	"R-Wpn-Howitzer03-Rot", "R-Wpn-MG-Damage09", "R-Struc-Power-Upgrade02", "R-Sys-Engineering03",
+	"R-Wpn-Cannon-Damage08", "R-Wpn-AAGun-Damage06", "R-Defense-WallUpgrade07", "R-Defense-WallUpgrade08",
+	"R-Defense-WallUpgrade09", "R-Struc-Materials07", "R-Struc-Materials08", "R-Struc-Materials09",
+	"R-Defense-RotHow", "R-Wpn-Howitzer-Damage05", "R-Wpn-Missile-LtSAM", "R-Defense-SamSite1", "R-Wpn-Missile-Damage01",
+
+	//2
+
+	// 3
+	"R-Struc-Research-Upgrade07", "R-Struc-Research-Upgrade08", "R-Struc-Research-Upgrade09",
+	"R-Wpn-Cannon-ROF06", "R-Wpn-Cannon-Damage09", "R-Wpn-Laser01", "R-Vehicle-Body03",
+	"R-Cyborg-Wpn-Laser1", "R-Defense-PrisLas", "R-Defense-WallTower-PulseLas",
+	"R-Wpn-Energy-Accuracy01", "R-Wpn-Bomb-Damage03", "R-Vehicle-Metals07", "R-Wpn-Howitzer-Damage06",
+	"R-Vehicle-Engine07", "R-Wpn-AAGun-ROF06", "R-Wpn-Mortar-ROF04", "R-Wpn-Energy-Damage01",
+	"R-Wpn-Energy-Damage02", "R-Wpn-Energy-ROF01", "R-Cyborg-Metals07", "R-Vehicle-Armor-Heat04",
+	"R-Wpn-Howitzer-ROF04", "R-Cyborg-Armor-Heat04", "R-Wpn-RocketSlow-ROF04",
+	"R-Wpn-Howitzer-Accuracy03", "R-Wpn-AAGun-Accuracy03", "R-Wpn-Missile-Accuracy01",
+	"R-Wpn-RailGun01", "R-Cyborg-Wpn-Rail1", "R-Defense-GuardTower-Rail1", "R-Wpn-Rail-Damage01", "R-Wpn-Rail-Accuracy01",
+	"R-Wpn-Rail-ROF01",
+
+	// 4
+
+	// 5
+	"R-Sys-Resistance-Upgrade01", "R-Sys-Resistance-Upgrade02", "R-Sys-Resistance-Upgrade03",
+	"R-Sys-Resistance-Upgrade04",
+
+	// 6
+	"R-Vehicle-Body07", "R-Struc-VTOLPad-Upgrade04", "R-Vehicle-Metals08", "R-Vehicle-Engine08",
+	"R-Struc-VTOLPad-Upgrade05", "R-Struc-VTOLPad-Upgrade06", "R-Vehicle-Armor-Heat05", "R-Wpn-Missile2A-T",
+	"R-Cyborg-Wpn-ATMiss", "R-Defense-GuardTower-ATMiss", "R-Defense-WallTower-A-Tmiss", "R-Wpn-Missile-Damage02",
+	"R-Wpn-Missile-ROF01", "R-Wpn-Plasmite-Flamer", "R-Wpn-Flamer-Damage09", "R-Cyborg-Hvywpn-A-T",
+
+
+	// 7
+	"R-Wpn-MdArtMissile", "R-Wpn-Laser02", "R-Wpn-RailGun02", "R-Cyborg-Hvywpn-RailGunner",
+	"R-Wpn-Missile-HvSAM", "R-Defense-SamSite2", "R-Wpn-Missile-Accuracy02",
+	"R-Defense-PulseLas", "R-Wpn-Energy-ROF02", "R-Wpn-Energy-Damage03", "R-Wpn-Energy-ROF03",
+	"R-Defense-MdArtMissile", "R-Wpn-Missile-ROF02", "R-Defense-Rail2", "R-Defense-WallTower-Rail2",
+	"R-Wpn-Rail-Damage02", "R-Wpn-Rail-ROF02", "R-Defense-PulseLasTower", "R-Cyborg-Hvywpn-PulseLsr",
+
+	// 8
+	"R-Sys-Resistance", "R-Comp-MissileCodes01", "R-Comp-MissileCodes02", "R-Comp-MissileCodes03",
+
+	// 9
+	"R-Wpn-RailGun03", "R-Vehicle-Body10", "R-Wpn-HvArtMissile",
+	"R-Wpn-Rail-Damage03", "R-Defense-Rail3", "R-Defense-WallTower-Rail3", "R-Wpn-Rail-ROF03",
+	"R-Vehicle-Metals09", "R-Vehicle-Engine09", "R-Defense-HvyArtMissile", "R-Wpn-Missile-Damage03",
+	"R-Wpn-Missile-ROF03", "R-Cyborg-Metals09", "R-Vehicle-Armor-Heat06", "R-Cyborg-Armor-Heat06",
+
+
 ];
 
 //...

From 29314b697023b19f604e1dbbb70de266b79f7b56 Mon Sep 17 00:00:00 2001
From: Dylan <28832631+DARwins1@users.noreply.github.com>
Date: Thu, 11 Nov 2021 02:52:03 -0600
Subject: [PATCH 02/10] Add files via upload

---
 .../campaign/libcampaign_includes/victory.js  | 553 ++++++++++++++++++
 1 file changed, 553 insertions(+)
 create mode 100644 script/campaign/libcampaign_includes/victory.js

diff --git a/script/campaign/libcampaign_includes/victory.js b/script/campaign/libcampaign_includes/victory.js
new file mode 100644
index 0000000..eda08fb
--- /dev/null
+++ b/script/campaign/libcampaign_includes/victory.js
@@ -0,0 +1,553 @@
+
+////////////////////////////////////////////////////////////////////////////////
+// Victory celebration helpers.
+////////////////////////////////////////////////////////////////////////////////
+
+//;; ## camNextLevel(next level)
+//;;
+//;; A wrapper around ```loadLevel()```. Remembers to give bonus power
+//;; for completing the mission faster.
+//;;
+function camNextLevel(nextLevel)
+{
+	if (__camNeedBonusTime)
+	{
+		var bonusTime = getMissionTime();
+		if (difficulty === EASY || difficulty === MEDIUM)
+		{
+			bonusTime = Math.floor(bonusTime * 0.75);
+		}
+		if (bonusTime > 0)
+		{
+			var bonus = 110;
+			if (difficulty === HARD)
+			{
+				bonus = 105;
+			}
+			else if (difficulty === INSANE)
+			{
+				bonus = 100;
+			}
+			camTrace("Bonus time", bonusTime);
+			setPowerModifier(bonus); // Bonus percentage for completing fast
+			extraPowerTime(bonusTime);
+			setPowerModifier(100);
+		}
+	}
+	camBreakAlliances();
+	//Set these limits again for the home map before exiting this mission
+	setStructureLimits("A0CommandCentre", 1, CAM_HUMAN_PLAYER);
+	setStructureLimits("A0ComDroidControl", 1, CAM_HUMAN_PLAYER);
+
+	loadLevel(nextLevel);
+}
+
+//;; ## camSetStandardWinLossConditions(kind, nextLevel, data)
+//;;
+//;; Set victory and defeat conditions to one of the common
+//;; options. On victory, load nextLevel. The extra data parameter
+//;; contains extra data required to define some of the victory
+//;; conditions. The following options are available:
+//;;
+//;; * ```CAM_VICTORY_STANDARD``` Defeat if all ground factories
+//;; 	and construction droids are lost, or on mission timeout.
+//;; 	Victory when all enemies are destroyed and all artifacts
+//;; 	are recovered.
+//;; * ```CAM_VICTORY_PRE_OFFWORLD``` Defeat on timeout. Victory on
+//;; 	transporter launch, then load the sub-level.
+//;; * ```CAM_VICTORY_OFFWORLD``` Defeat on timeout or all units lost.
+//;; 	Victory when all artifacts are recovered and either all enemies
+//;; 	are dead (not just bases) or all droids are at the LZ.
+//;; 	Also automatically handles the "LZ compromised" message,
+//;; 	which is why it needs to know reinforcement interval to restore.
+//;; 	The following data parameter fields are available:
+//;;   * ```area``` The landing zone to return to.
+//;;   * ```message``` The "Return to LZ" message ID. Optional.
+//;;   * ```reinforcements``` Reinforcements interval, in seconds.
+//;; For standard and offworld victory, some extra data parameters can be defined:
+//;; * ```callback``` A function callback to check for extra win/loss
+//;; 		conditions. Return values are interpreted as follows:
+//;;   * __false__ means instant defeat ("objective failed"),
+//;;   * __true__ means victory as long as other standard victory
+//;; 		conditions are met,
+//;;   * __undefined__ means suppress
+//;; 		other victory checks ("clearly not won yet").
+//;; * ```victoryVideo``` Pass in the name of a video string here
+//;;			and it will be played before attempting to load the next level.
+//;; For offworld victory, some more extra data parameters can be defined:
+//;; * ```retlz``` Force the player to return to the LZ area:
+//;;   * __false__ mission does not require a LZ return,
+//;;   * __true__ mission requires all units to be at LZ to win.
+//;; * ```annihilate``` Player must destroy every thing on map to win:
+//;;   * __false__ mission does not require everything destroyed,
+//;;   * __true__ mission requires total map annihilation.
+//;; * ```eliminateBases``` Instant win when all enemy units and bases are destroyed:
+//;;   * __false__ does not require all bases to be destroyed,
+//;;   * __true__ requires all bases destroyed.
+//;;
+function camSetStandardWinLossConditions(kind, nextLevel, data)
+{
+	switch(kind)
+	{
+		case CAM_VICTORY_STANDARD:
+			__camWinLossCallback = CAM_VICTORY_STANDARD;
+			__camNeedBonusTime = true;
+			__camDefeatOnTimeout = true;
+			__camVictoryData = data;
+			useSafetyTransport(false);
+			break;
+		case CAM_VICTORY_PRE_OFFWORLD:
+			__camWinLossCallback = CAM_VICTORY_PRE_OFFWORLD;
+			__camNeedBonusTime = false;
+			__camDefeatOnTimeout = true;
+			useSafetyTransport(false);
+			break;
+		case CAM_VICTORY_OFFWORLD:
+			__camWinLossCallback = CAM_VICTORY_OFFWORLD;
+			__camNeedBonusTime = true;
+			__camDefeatOnTimeout = true;
+			__camVictoryData = data;
+			setReinforcementTime(__camVictoryData.reinforcements);
+			__camSetOffworldLimits();
+			useSafetyTransport(false);
+			break;
+		case CAM_VICTORY_TIMEOUT:
+			__camWinLossCallback = CAM_VICTORY_TIMEOUT;
+			__camNeedBonusTime = false;
+			__camDefeatOnTimeout = false;
+			__camVictoryData = data;
+			setReinforcementTime(__camVictoryData.reinforcements);
+			useSafetyTransport(true);
+			break;
+		default:
+			camDebug("Unknown standard victory condition", kind);
+			break;
+	}
+	__camNextLevel = nextLevel;
+}
+
+//Checks for extra win conditions defined in level scripts, if any.
+function camCheckExtraObjective()
+{
+	var extraObjMet = true;
+	if (camDef(__camVictoryData) && camDef(__camVictoryData.callback))
+	{
+		var result = __camGlobalContext()[__camVictoryData.callback]();
+		if (camDef(result))
+		{
+			if (!result)
+			{
+				__camGameLost();
+				return;
+			}
+		}
+		else
+		{
+			extraObjMet = false;
+		}
+	}
+
+	return extraObjMet;
+}
+
+//Message(s) the mission script can set to further explain specific victory conditions.
+//Allows a single string or an array of strings.
+function camSetExtraObjectiveMessage(message)
+{
+	__camExtraObjectiveMessage = message;
+}
+
+//////////// privates
+
+function __camGameLostCB()
+{
+	gameOverMessage(false, false);
+}
+
+function __camGameLost()
+{
+	camCallOnce("__camGameLostCB");
+}
+
+function __camGameWon()
+{
+	__camLevelEnded = true;
+	if (camDef(__camVictoryData) && camDef(__camVictoryData.victoryVideo))
+	{
+		camPlayVideos(__camVictoryData.victoryVideo);
+	}
+
+	if (camDef(__camNextLevel))
+	{
+		camTrace(__camNextLevel);
+		if (__camNextLevel === "GAMMA_OUT")
+		{
+			gameOverMessage(true, false, true);
+			return;
+		}
+		camNextLevel(__camNextLevel);
+	}
+	else
+	{
+		//If nothing to load, go to main menu.
+		gameOverMessage(true, false);
+	}
+}
+
+//Checks if the player is considered to be alive on all non-offworld missions.
+function __camPlayerDead()
+{
+	var dead = true;
+	var haveFactories = enumStruct(CAM_HUMAN_PLAYER, FACTORY).filter(function(obj) {
+		return obj.status === BUILT;
+	}).length > 0;
+	
+	//If no normal factories are found, check for any cyborg factories since the player can build Combat Engineers
+	if (!haveFactories)
+	{
+		var haveFactories = enumStruct(CAM_HUMAN_PLAYER, CYBORG_FACTORY).filter(function(obj) {
+			return obj.status === BUILT;
+		}).length > 0;
+	}
+
+	if (haveFactories)
+	{
+		dead = false;
+	}
+
+	if (__camNextLevel === "SUB_3_1S")
+	{
+		//Check for any construction units.
+		//NOTE: countDroid() will return the counts of construction units in
+		//apsLimboDroids between Gamma 3 to Gamma 5.
+		if (countDroid(DROID_CONSTRUCT) > 0)
+		{
+			dead = false;
+		}
+	}
+	else if (enumDroid(CAM_HUMAN_PLAYER, DROID_CONSTRUCT).length > 0)
+	{
+		//A construction unit is currently on the map.
+		dead = false;
+	}
+	else if (__camNextLevel === "CAM3A-D1")
+	{
+		const GAMMA_PLAYER = 1;
+
+		//Care about all units and not just trucks at the start of cam3-c.
+		if (allianceExistsBetween(GAMMA_PLAYER, NEXUS) && enumDroid(CAM_HUMAN_PLAYER).length > 0)
+		{
+			dead = false;
+		}
+	}
+	else
+	{
+		//Check the transporter.
+		var transporter = enumDroid(CAM_HUMAN_PLAYER, DROID_SUPERTRANSPORTER);
+		if (transporter.length > 0)
+		{
+			var cargoDroids = enumCargo(transporter[0]);
+			for (var i = 0, len = cargoDroids.length; i < len; ++i)
+			{
+				var virDroid = cargoDroids[i];
+				if (camDef(virDroid) && virDroid && virDroid.droidType === DROID_CONSTRUCT)
+				{
+					dead = false;
+					break;
+				}
+			}
+		}
+	}
+
+	if (__camWinLossCallback === CAM_VICTORY_TIMEOUT)
+	{
+		//Make the mission fail if no units are alive on map while having no factories.
+		var droidCount = 0;
+		enumDroid(CAM_HUMAN_PLAYER).forEach(function(obj) {
+			droidCount += 1;
+			if (obj.droidType === DROID_SUPERTRANSPORTER)
+			{
+				droidCount += enumCargo(obj).length;
+			}
+		});
+		dead = droidCount <= 0 && !haveFactories;
+	}
+
+	return dead;
+}
+
+function __camTriggerLastAttack()
+{
+	if (!__camLastAttackTriggered)
+	{
+		var enemies = enumArea(0, 0, mapWidth, mapHeight, ENEMIES, false);
+		// Do not order systems (sensor/trucks/repairs) to attack stuff.
+		enemies = enemies.filter(function(obj) {
+			return ((obj.type === DROID) && !camIsTransporter(obj) && !camIsSystemDroid(obj));
+		});
+		camTrace(enemies.length, "enemy droids remaining");
+		camManageGroup(camMakeGroup(enemies), CAM_ORDER_ATTACK);
+		__camLastAttackTriggered = true;
+	}
+}
+
+function __camVictoryStandard()
+{
+	var extraObj = camCheckExtraObjective();
+	// check if game is lost
+	if (__camPlayerDead())
+	{
+		__camGameLost();
+		return;
+	}
+	// check if game is won
+	if (camAllArtifactsPickedUp() && camAllEnemyBasesEliminated() && extraObj)
+	{
+		if (enumArea(0, 0, mapWidth, mapHeight, ENEMIES, false).length === 0)
+		{
+			__camGameWon();
+			return;
+		}
+		else
+		{
+			__camTriggerLastAttack();
+		}
+	}
+}
+
+function __camVictoryPreOffworld()
+{
+	if (__camPlayerDead())
+	{
+		__camGameLost();
+		return;
+	}
+	// victory hooked from eventTransporterExit
+}
+
+function __camVictoryTimeout()
+{
+	if (__camPlayerDead())
+	{
+		__camGameLost();
+		return;
+	}
+	// victory hooked from eventMissionTimeout
+}
+
+function __camVictoryOffworld()
+{
+	var lz = __camVictoryData.area;
+	if (!camDef(lz))
+	{
+		camDebug("Landing zone area is required for OFFWORLD");
+		return;
+	}
+	var total = countDroid(DROID_ANY, CAM_HUMAN_PLAYER); // for future use
+	if (total === 0)
+	{
+		__camGameLost();
+		return;
+	}
+	var forceLZ = camDef(__camVictoryData.retlz) ? __camVictoryData.retlz : false;
+	var destroyAll = camDef(__camVictoryData.annihilate) ? __camVictoryData.annihilate : false;
+	var elimBases = camDef(__camVictoryData.eliminateBases) ? __camVictoryData.eliminateBases : false;
+
+	if (camCheckExtraObjective() && camAllArtifactsPickedUp())
+	{
+		if (elimBases)
+		{
+			if (camAllEnemyBasesEliminated())
+			{
+				var enemyDroids = enumArea(0, 0, mapWidth, mapHeight, ENEMIES, false).filter(function(obj) {
+					return obj.type === DROID;
+				}).length;
+
+
+				if (!enemyDroids)
+				{
+					__camGameWon();
+					return;
+				}
+				else
+				{
+					__camTriggerLastAttack();
+				}
+			}
+		}
+		else
+		{
+			var enemyLen = enumArea(0, 0, mapWidth, mapHeight, ENEMIES, false).length;
+			if (!forceLZ && !enemyLen)
+			{
+				//if there are no more enemies, win instantly unless forced to go
+				//back to the LZ.
+				__camGameWon();
+				return;
+			}
+
+			//Missions that are not won based on artifact count (see missions 2-1 and 3-2).
+			//If either forceLZ or destroyAll is true then ignore this.
+			if (__camNumArtifacts === 0 && !forceLZ && !destroyAll)
+			{
+				__camGameWon();
+				return;
+			}
+
+			//Make sure to only count droids here.
+			var atlz = enumArea(lz, CAM_HUMAN_PLAYER, false).filter(function(obj) {
+				return (obj.type === DROID && !camIsTransporter(obj));
+			}).length;
+			if (((!forceLZ && !destroyAll) || (forceLZ && destroyAll && !enemyLen) || (forceLZ && !destroyAll)) && (atlz === total))
+			{
+				__camGameWon();
+				return;
+			}
+			else
+			{
+				__camTriggerLastAttack();
+			}
+
+			if (!destroyAll || (forceLZ && !enemyLen))
+			{
+				const REMIND_RETURN = 30; // every X seconds
+				if (__camRTLZTicker === 0 && camDef(__camVictoryData.message))
+				{
+					camTrace("Return to LZ message displayed");
+					camMarkTiles(lz);
+					if (camDef(__camVictoryData.message))
+					{
+						hackAddMessage(__camVictoryData.message, PROX_MSG, CAM_HUMAN_PLAYER, false);
+					}
+				}
+				if (__camRTLZTicker % REMIND_RETURN === 0)
+				{
+					var pos = camMakePos(lz);
+					playSound("pcv427.ogg", pos.x, pos.y, 0);
+					console(_("Return to LZ"));
+				}
+				++__camRTLZTicker;
+			}
+		}
+	}
+	if (enumArea(lz, ENEMIES, false).length > 0)
+	{
+		const REMIND_COMPROMISED = 30; // every X seconds
+		//Protect against early access to reinforcements GUI if it shouldn't be available yet
+		if (__camVictoryData.reinforcements >= 0)
+		{
+			setReinforcementTime(LZ_COMPROMISED_TIME);
+		}
+		if (__camLZCompromisedTicker === 0)
+		{
+			camTrace("LZ compromised");
+		}
+		if (__camLZCompromisedTicker % REMIND_COMPROMISED === 1)
+		{
+			var pos = camMakePos(lz);
+			playSound("pcv445.ogg", pos.x, pos.y, 0);
+		}
+		++__camLZCompromisedTicker;
+		if (__camRTLZTicker === 0)
+		{
+			camMarkTiles(lz);
+		}
+	}
+	else if (__camLZCompromisedTicker > 0)
+	{
+		camTrace("LZ clear");
+		var pos = camMakePos(lz);
+		playSound("lz-clear.ogg", pos.x, pos.y, 0);
+		setReinforcementTime(__camVictoryData.reinforcements);
+		__camLZCompromisedTicker = 0;
+		if (__camRTLZTicker === 0)
+		{
+			camUnmarkTiles(lz);
+		}
+	}
+}
+
+function __camShowVictoryConditions(forceMessage)
+{
+	if (!camDef(forceMessage))
+	{
+		if (__camVictoryMessageThrottle + camSecondsToMilliseconds(10) > gameTime)
+		{
+			return;
+		}
+		if (!camDef(__camNextLevel))
+		{
+			return; // fastplay / tutorial. Should be a better identifier for this.
+		}
+		if (__camWinLossCallback === CAM_VICTORY_PRE_OFFWORLD)
+		{
+			return; // do not need this on these missions.
+		}
+	}
+
+	const ANNIHILATE_MESSAGE = _("Destroy all enemy units and structures");
+
+	var unitsOnMap = 0;
+	var structuresOnMap = 0;
+
+	enumArea(0, 0, mapWidth, mapHeight, ENEMIES, false).forEach(function(obj) {
+		if (obj.type === DROID)
+		{
+			++unitsOnMap;
+		}
+		else if (obj.type === STRUCTURE)
+		{
+			++structuresOnMap;
+		}
+	});
+
+	console(__camNumArtifacts + "/" + Object.keys(__camArtifacts).length + " " + _("Artifacts collected"));
+	console(__camNumEnemyBases + "/" + Object.keys(__camEnemyBases).length + " " + _("Bases destroyed"));
+	console(unitsOnMap + " " + _("Enemy units remaining"));
+	console(structuresOnMap + " " + _("Enemy structures remaining"));
+
+	if (__camWinLossCallback === CAM_VICTORY_OFFWORLD)
+	{
+		if (camDef(__camVictoryData.retlz) && __camVictoryData.retlz)
+		{
+			console(_("Return to LZ required"));
+		}
+
+		if (camDef(__camVictoryData.annihilate) && __camVictoryData.annihilate)
+		{
+			console(ANNIHILATE_MESSAGE);
+		}
+
+		if (camDef(__camVictoryData.eliminateBases) && __camVictoryData.eliminateBases)
+		{
+			console(_("Destroy all enemy units and bases"));
+		}
+	}
+	else if (__camWinLossCallback === CAM_VICTORY_TIMEOUT)
+	{
+		console(_("Survive until the timer reaches zero"));
+	}
+	else if (__camWinLossCallback === CAM_VICTORY_STANDARD)
+	{
+		console(ANNIHILATE_MESSAGE);
+	}
+
+	//More specific messages set through the mission scripts.
+	if (camDef(__camExtraObjectiveMessage))
+	{
+		if (__camExtraObjectiveMessage instanceof Array)
+		{
+			for (var i = 0, len = __camExtraObjectiveMessage.length; i < len; ++i)
+			{
+				var mes = __camExtraObjectiveMessage[i];
+				console(mes);
+			}
+		}
+		else
+		{
+			console(__camExtraObjectiveMessage);
+		}
+	}
+
+	__camVictoryMessageThrottle = gameTime;
+}

From fd5a55259dbb7784fbe6f42c4ad238ebd0bc8de3 Mon Sep 17 00:00:00 2001
From: Dylan <28832631+DARwins1@users.noreply.github.com>
Date: Thu, 11 Nov 2021 02:52:25 -0600
Subject: [PATCH 03/10] Add files via upload

---
 stats/research.json       |  4 ++--
 stats/weaponmodifier.json |  2 +-
 stats/weapons.json        | 48 +++++++++++++++++++--------------------
 3 files changed, 27 insertions(+), 27 deletions(-)

diff --git a/stats/research.json b/stats/research.json
index 295c8b7..9186820 100644
--- a/stats/research.json
+++ b/stats/research.json
@@ -5439,11 +5439,11 @@
     "R-Wpn-Howitzer-Accuracy01": {
         "iconID": "IMAGE_RES_WEAPONTECH",
         "id": "R-Wpn-Howitzer-Accuracy01",
-        "keyTopic": 1,
         "msgName": "RES_W_HOWAC1",
         "name": "Target Acquisition Artillery Shells",
         "requiredResearch": [
-			"R-Wpn-HowitzerMk1"
+			"R-Wpn-HowitzerMk1",
+            "R-Struc-Research-Upgrade04"
         ],
         "researchPoints": 7200,
         "researchPower": 225,
diff --git a/stats/weaponmodifier.json b/stats/weaponmodifier.json
index 7883df2..728b499 100644
--- a/stats/weaponmodifier.json
+++ b/stats/weaponmodifier.json
@@ -2,7 +2,7 @@
     "ALL ROUNDER": {
         "Half-Tracked": 115,
         "Hover": 120,
-        "Legged": 60,
+        "Legged": 65,
         "Lift": 40,
         "Tracked": 105,
         "Wheeled": 125
diff --git a/stats/weapons.json b/stats/weapons.json
index 85ec640..e8ce114 100644
--- a/stats/weapons.json
+++ b/stats/weapons.json
@@ -9,7 +9,7 @@
         "facePlayer": 1,
         "firePause": 1,
         "flags": "AirOnly",
-        "flightGfx": "FXCAmmo.PIE",
+        "flightGfx": "FXAALSHT.PIE",
         "flightSpeed": 2250,
         "hitGfx": "FXAIREXP.PIE",
         "hitpoints": 200,
@@ -279,7 +279,7 @@
         "movement": "DIRECT",
         "muzzleGfx": "FXLRocPd.PIE",
         "name": "*Baba Rocket Pit Launcher*",
-        "numExplosions": 2,
+        "numExplosions": 1,
         "radiusLife": 10,
         "recoilValue": 10,
         "rotate": 180,
@@ -288,7 +288,7 @@
         "waterGfx": "FXSSplsh.PIE",
         "weaponClass": "KINETIC",
         "weaponEffect": "ANTI TANK",
-        "weaponSubClass": "SLOW ROCKET",
+        "weaponSubClass": "ROCKET",
         "weaponWav": "rocket.ogg",
         "weight": 250
     },
@@ -328,7 +328,7 @@
         "waterGfx": "FXSSplsh.PIE",
         "weaponClass": "KINETIC",
         "weaponEffect": "ANTI TANK",
-        "weaponSubClass": "SLOW ROCKET",
+        "weaponSubClass": "ROCKET",
         "weaponWav": "rocket.ogg",
         "weight": 500
     },
@@ -358,7 +358,7 @@
         "movement": "DIRECT",
         "muzzleGfx": "FXLRocPd.PIE",
         "name": "*BabaRocket*",
-        "numExplosions": 2,
+        "numExplosions": 1,
         "numRounds": 6,
         "radius": 64,
         "radiusDamage": 20,
@@ -369,7 +369,7 @@
         "waterGfx": "FXSSplsh.PIE",
         "weaponClass": "KINETIC",
         "weaponEffect": "ANTI TANK",
-        "weaponSubClass": "SLOW ROCKET",
+        "weaponSubClass": "ROCKET",
         "weaponWav": "rocket.ogg",
         "weight": 100
     },
@@ -827,7 +827,7 @@
         "effectSize": 50,
         "explosionWav": "smlexpl.ogg",
         "facePlayer": 1,
-        "firePause": 35,
+        "firePause": 39,
         "flags": "ShootAir",
         "flightGfx": "FXTracer.PIE",
         "flightSpeed": 2250,
@@ -857,7 +857,7 @@
         "weaponEffect": "ALL ROUNDER",
         "weaponSubClass": "CANNON",
         "weaponWav": "hivelcan.ogg",
-        "weight": 2500
+        "weight": 3000
     },
     "Cannon5Vulcan-VTOL": {
         "buildPoints": 700,
@@ -1061,7 +1061,7 @@
         "effectSize": 25,
         "explosionWav": "smlexpl.ogg",
         "facePlayer": 1,
-        "firePause": 32,
+        "firePause": 36,
         "flags": "ShootAir",
         "flightGfx": "FXTracer.PIE",
         "flightSpeed": 2250,
@@ -1069,7 +1069,7 @@
         "hitpoints": 100,
         "id": "Cyb-Hvywpn-HPV",
         "lightWorld": 1,
-        "longRange": 1024,
+        "longRange": 1088,
         "longHit": 65,
         "maxElevation": 90,
         "minElevation": -60,
@@ -1084,7 +1084,7 @@
         "recoilValue": 100,
         "rotate": 180,
         "shortHit": 65,
-        "shortRange": 1024,
+        "shortRange": 1088,
         "waterGfx": "FXSSplsh.PIE",
         "weaponClass": "KINETIC",
         "weaponEffect": "ALL ROUNDER",
@@ -1495,7 +1495,7 @@
         "hitpoints": 70,
         "id": "CyborgChaingun",
         "longRange": 768,
-        "longHit": 50,
+        "longHit": 55,
         "maxElevation": 90,
         "minElevation": -60,
         "minimumDamage": 33,
@@ -1611,7 +1611,7 @@
         "hitpoints": 70,
         "id": "CyborgRotMG",
         "longRange": 896,
-        "longHit": 50,
+        "longHit": 55,
         "maxElevation": 90,
         "minElevation": -60,
         "minimumDamage": 33,
@@ -2054,7 +2054,7 @@
         "hitpoints": 75,
         "id": "MG1-Pillbox",
         "longRange": 768,
-        "longHit": 50,
+        "longHit": 55,
         "maxElevation": 90,
         "minElevation": -60,
         "minimumDamage": 33,
@@ -2127,7 +2127,7 @@
         "hitpoints": 75,
         "id": "MG1Mk1",
         "longRange": 768,
-        "longHit": 50,
+        "longHit": 55,
         "maxElevation": 90,
         "minElevation": -60,
         "minimumDamage": 33,
@@ -2162,7 +2162,7 @@
         "hitpoints": 95,
         "id": "MG2-Pillbox",
         "longRange": 832,
-        "longHit": 50,
+        "longHit": 55,
         "maxElevation": 90,
         "minElevation": -60,
         "minimumDamage": 33,
@@ -2235,7 +2235,7 @@
         "hitpoints": 75,
         "id": "MG2Mk1",
         "longRange": 832,
-        "longHit": 50,
+        "longHit": 55,
         "maxElevation": 90,
         "minElevation": -60,
         "minimumDamage": 33,
@@ -2270,7 +2270,7 @@
         "hitpoints": 95,
         "id": "MG3-Pillbox",
         "longRange": 960,
-        "longHit": 50,
+        "longHit": 55,
         "maxElevation": 90,
         "minElevation": -60,
         "minimumDamage": 33,
@@ -2343,7 +2343,7 @@
         "hitpoints": 75,
         "id": "MG3Mk1",
         "longRange": 960,
-        "longHit": 50,
+        "longHit": 55,
         "maxElevation": 90,
         "minElevation": -60,
         "minimumDamage": 33,
@@ -2378,7 +2378,7 @@
         "hitpoints": 175,
         "id": "MG4ROTARY-Pillbox",
         "longRange": 1152,
-        "longHit": 50,
+        "longHit": 55,
         "maxElevation": 90,
         "minElevation": -60,
         "minimumDamage": 33,
@@ -2451,7 +2451,7 @@
         "hitpoints": 125,
         "id": "MG4ROTARYMk1",
         "longRange": 1152,
-        "longHit": 50,
+        "longHit": 55,
         "maxElevation": 90,
         "minElevation": -60,
         "minimumDamage": 33,
@@ -2779,7 +2779,7 @@
         "weight": 2000
     },
     "Mortar2Mk1": {
-        "buildPoints": 1000,
+        "buildPoints": 900,
         "buildPower": 200,
         "damage": 120,
         "designable": 1,
@@ -2820,7 +2820,7 @@
         "weight": 5000
     },
     "Mortar3ROTARYMk1": {
-        "buildPoints": 1000,
+        "buildPoints": 900,
         "buildPower": 200,
         "damage": 60,
         "designable": 1,
@@ -2948,7 +2948,7 @@
         "hitpoints": 70,
         "id": "NX-CyborgChaingun",
         "longRange": 768,
-        "longHit": 50,
+        "longHit": 5,
         "maxElevation": 90,
         "minElevation": -60,
         "minimumDamage": 33,

From fc7c6a8204d949fbae7b52b4c5955174a821ba6a Mon Sep 17 00:00:00 2001
From: Dylan <28832631+DARwins1@users.noreply.github.com>
Date: Thu, 11 Nov 2021 02:53:13 -0600
Subject: [PATCH 04/10] Delete components directory

---
 components/bodies/cybd_run.pie  | 196 --------------
 components/bodies/cybd_std.pie  |  52 ----
 components/bodies/cybdpair.pie  | 110 --------
 components/bodies/cybdpjmp.pie  | 341 ------------------------
 components/bodies/cybdplnd.pie  | 342 ------------------------
 components/bodies/cybdprun.pie  | 270 -------------------
 components/bodies/cybdpstd.pie  |  51 ----
 components/bodies/drhbod09.pie  |  54 ----
 components/bodies/drhbod10.pie  |  66 -----
 components/bodies/drhbod11.pie  |  54 ----
 components/bodies/drhbod12.pie  |  66 -----
 components/bodies/drhbod14.pie  |  92 -------
 components/bodies/drlbod01.pie  |  48 ----
 components/bodies/drlbod02.pie  |  48 ----
 components/bodies/drlbod03.pie  |  72 -----
 components/bodies/drlbod04.pie  |  54 ----
 components/bodies/drmbod05.pie  |  76 ------
 components/bodies/drmbod06.pie  |  59 -----
 components/bodies/drmbod07.pie  |  58 ----
 components/bodies/drmbod08.pie  |  70 -----
 components/bodies/drmbod13.pie  |  67 -----
 components/bodies/exbloke.pie   |  36 ---
 components/bodies/exbuggy.pie   |  63 -----
 components/bodies/exbugrk.pie   |  65 -----
 components/bodies/exfire.pie    | 101 -------
 components/bodies/exjeep.pie    |  77 ------
 components/bodies/exjeeprk.pie  |  75 ------
 components/bodies/exschool.pie  |  83 ------
 components/bodies/extrike.pie   |  95 -------
 components/bodies/fireknee.pie  | 122 ---------
 components/bodies/flamfall.pie  | 120 ---------
 components/bodies/mibnkbod.pie  | 119 ---------
 components/bodies/runanim.pie   | 144 ----------
 components/bodies/runflame.pie  | 120 ---------
 components/bodies/scbd_run.pie  | 196 --------------
 components/bodies/scbd_std.pie  | 106 --------
 components/bodies/walkanim.pie  | 124 ---------
 components/prop/mibnkdrl.pie    | 101 -------
 components/prop/mibnkdrr.pie    | 101 -------
 components/prop/prhheli1.pie    | 244 -----------------
 components/prop/prhheli2.pie    | 244 -----------------
 components/prop/prhheli3.pie    | 244 -----------------
 components/prop/prhheli4.pie    | 244 -----------------
 components/prop/prhhov1.pie     | 133 ----------
 components/prop/prhlhtr3.pie    |  94 -------
 components/prop/prhltrk3.pie    |  75 ------
 components/prop/prhlvtl1.pie    |  76 ------
 components/prop/prhlvtl2.pie    |  76 ------
 components/prop/prhlvtl3.pie    |  76 ------
 components/prop/prhlvtl4.pie    |  76 ------
 components/prop/prhlwhl1.pie    | 325 -----------------------
 components/prop/prhnaval1.pie   | 305 ---------------------
 components/prop/prhrhtr3.pie    |  94 -------
 components/prop/prhrtrk3.pie    |  75 ------
 components/prop/prhrvtl1.pie    |  76 ------
 components/prop/prhrvtl2.pie    |  76 ------
 components/prop/prhrvtl3.pie    |  76 ------
 components/prop/prhrvtl4.pie    |  76 ------
 components/prop/prhrwhl1.pie    | 325 -----------------------
 components/prop/prlheli1.pie    | 211 ---------------
 components/prop/prlheli2.pie    | 211 ---------------
 components/prop/prlheli3.pie    | 211 ---------------
 components/prop/prlhov1.pie     |  85 ------
 components/prop/prllhtr1.pie    |  46 ----
 components/prop/prlltrk1.pie    |  40 ---
 components/prop/prllvtl1.pie    |  56 ----
 components/prop/prllvtl2.pie    |  56 ----
 components/prop/prllvtl3.pie    |  56 ----
 components/prop/prllwhl1.pie    | 185 -------------
 components/prop/prlrhtr1.pie    |  46 ----
 components/prop/prlrtrk1.pie    |  40 ---
 components/prop/prlrvtl1.pie    |  56 ----
 components/prop/prlrvtl2.pie    |  56 ----
 components/prop/prlrvtl3.pie    |  56 ----
 components/prop/prlrwhl1.pie    | 185 -------------
 components/prop/prmheli1.pie    | 213 ---------------
 components/prop/prmhov1.pie     | 113 --------
 components/prop/prmlhtr2.pie    |  46 ----
 components/prop/prmltrk2.pie    |  51 ----
 components/prop/prmlvtl1.pie    |  56 ----
 components/prop/prmlwhl1.pie    | 237 -----------------
 components/prop/prmrhtr2.pie    |  46 ----
 components/prop/prmrtrk2.pie    |  51 ----
 components/prop/prmrvtl1.pie    |  56 ----
 components/prop/prmrwhl1.pie    | 237 -----------------
 components/prop/prsheli1.pie    | 455 --------------------------------
 components/prop/prshov1.pie     | 130 ---------
 components/prop/prslhtr4.pie    | 119 ---------
 components/prop/prsltrk4.pie    |  89 -------
 components/prop/prslvtl1.pie    |  76 ------
 components/prop/prslwhl1.pie    | 380 --------------------------
 components/prop/prsrhtr4.pie    | 119 ---------
 components/prop/prsrtrk4.pie    |  89 -------
 components/prop/prsrvtl1.pie    |  90 -------
 components/prop/prsrwhl1.pie    | 380 --------------------------
 components/weapons/cy_can.pie   |  47 ----
 components/weapons/cy_con.pie   |  29 --
 components/weapons/cy_flame.pie |  47 ----
 components/weapons/cy_gren.pie  |  41 ---
 components/weapons/cy_gun.pie   |  25 --
 components/weapons/cy_las.pie   |  42 ---
 components/weapons/cy_miss.pie  |  31 ---
 components/weapons/cy_rail.pie  |  45 ----
 components/weapons/cy_rep.pie   |  88 ------
 components/weapons/cy_rkt.pie   |  29 --
 components/weapons/cy_therm.pie |  47 ----
 components/weapons/cybody.pie   |  47 ----
 components/weapons/cybodyjp.pie |  47 ----
 components/weapons/exturret.pie |  27 --
 components/weapons/gnhaalas.pie |  61 -----
 components/weapons/gnhair.pie   |  81 ------
 components/weapons/gnhair2.pie  |  66 -----
 components/weapons/gnhblas.pie  | 109 --------
 components/weapons/gnhcan.pie   |  27 --
 components/weapons/gnhecm3.pie  |  43 ---
 components/weapons/gnhemp.pie   |  20 --
 components/weapons/gnhgss.pie   |  33 ---
 components/weapons/gnhhowt.pie  |  65 -----
 components/weapons/gnhhowt2.pie |  87 ------
 components/weapons/gnhlas.pie   |  43 ---
 components/weapons/gnhmg1.pie   |  95 -------
 components/weapons/gnhmort.pie  |  80 ------
 components/weapons/gnhmort2.pie |  76 ------
 components/weapons/gnhmorte.pie |  61 -----
 components/weapons/gnhmsl.pie   |  27 --
 components/weapons/gnhmslab.pie |  42 ---
 components/weapons/gnhmsli.pie  |  29 --
 components/weapons/gnhmslsa.pie |  92 -------
 components/weapons/gnhplasm.pie |  50 ----
 components/weapons/gnhplsma.pie |  59 -----
 components/weapons/gnhrckt.pie  |  48 ----
 components/weapons/gnhrepar.pie | 100 -------
 components/weapons/gnhsnsr3.pie | 105 --------
 components/weapons/gnhsnsr4.pie |  66 -----
 components/weapons/gnhsuper.pie |  81 ------
 components/weapons/gnhvcan.pie  |  39 ---
 components/weapons/gnhvcan2.pie |  57 ----
 components/weapons/gnlacan.pie  |  27 --
 components/weapons/gnlair.pie   | 117 --------
 components/weapons/gnlassat.pie |  31 ---
 components/weapons/gnlcan.pie   |  27 --
 components/weapons/gnlcmd1.pie  |  35 ---
 components/weapons/gnlflmr.pie  |  49 ----
 components/weapons/gnlgss.pie   |  25 --
 components/weapons/gnlmg1.pie   |  47 ----
 components/weapons/gnlmg2.pie   |  63 -----
 components/weapons/gnlmsl.pie   |  69 -----
 components/weapons/gnlrckt.pie  |  69 -----
 components/weapons/gnlrcktp.pie |  60 -----
 components/weapons/gnlsnsr1.pie |  89 -------
 components/weapons/gnmacan.pie  |  27 --
 components/weapons/gnmair.pie   |  45 ----
 components/weapons/gnmair2.pie  |  64 -----
 components/weapons/gnmair3.pie  |  56 ----
 components/weapons/gnmcan.pie   |  27 --
 components/weapons/gnmecm1.pie  |  83 ------
 components/weapons/gnmecm2.pie  | 119 ---------
 components/weapons/gnmflmr.pie  |  89 -------
 components/weapons/gnmflmrp.pie |  31 ---
 components/weapons/gnmgss.pie   |  25 --
 components/weapons/gnmhowt.pie  |  47 ----
 components/weapons/gnmhowti.pie |  65 -----
 components/weapons/gnmlas.pie   |  35 ---
 components/weapons/gnmmg1.pie   |  47 ----
 components/weapons/gnmmg2.pie   |  65 -----
 components/weapons/gnmmort.pie  |  73 -----
 components/weapons/gnmmorti.pie |  61 -----
 components/weapons/gnmmsl.pie   |  29 --
 components/weapons/gnmmsla.pie  |  73 -----
 components/weapons/gnmmslaa.pie |  66 -----
 components/weapons/gnmmslat.pie |  49 ----
 components/weapons/gnmmslbb.pie |  41 ---
 components/weapons/gnmmslsa.pie |  50 ----
 components/weapons/gnmrckt.pie  |  36 ---
 components/weapons/gnmrckta.pie |  69 -----
 components/weapons/gnmrcktb.pie |  61 -----
 components/weapons/gnmrepar.pie | 106 --------
 components/weapons/gnmrepr2.pie |  78 ------
 components/weapons/gnmrktbb.pie |  41 ---
 components/weapons/gnmrlas.pie  |  22 --
 components/weapons/gnmsnsr2.pie |  83 ------
 components/weapons/gnmvcan.pie  |  39 ---
 components/weapons/gnnavbig.pie |  45 ----
 components/weapons/gnwpfcan.pie |  32 ---
 components/weapons/gnwpfgss.pie |  40 ---
 components/weapons/gnwpfmsl.pie | 121 ---------
 components/weapons/gnwpfrkt.pie | 121 ---------
 components/weapons/mibnkgun.pie |  57 ----
 components/weapons/mibnktur.pie | 135 ----------
 components/weapons/misensor.pie |  47 ----
 components/weapons/sc_asscn.pie |  87 ------
 components/weapons/sc_atm.pie   |  54 ----
 components/weapons/sc_can.pie   |  70 -----
 components/weapons/sc_hpvcn.pie |  87 ------
 components/weapons/sc_pulse.pie |  78 ------
 components/weapons/sc_rail2.pie |  78 ------
 components/weapons/sc_tk.pie    |  58 ----
 components/weapons/scavmra.pie  |  27 --
 components/weapons/scbody.pie   |  41 ---
 components/weapons/trhair.pie   |  31 ---
 components/weapons/trhcan.pie   |  27 --
 components/weapons/trhcon.pie   |  53 ----
 components/weapons/trhecm3.pie  |  25 --
 components/weapons/trhemp.pie   |  37 ---
 components/weapons/trhgss.pie   |  34 ---
 components/weapons/trhhow2.pie  |  79 ------
 components/weapons/trhhowt.pie  |  79 ------
 components/weapons/trhlas.pie   |  27 --
 components/weapons/trhmg.pie    |  39 ---
 components/weapons/trhmsl.pie   | 106 --------
 components/weapons/trhmslab.pie |  27 --
 components/weapons/trhmsli.pie  |  27 --
 components/weapons/trhmslsa.pie |  64 -----
 components/weapons/trhplasm.pie |  27 --
 components/weapons/trhrckt.pie  |  25 --
 components/weapons/trhrmort.pie |  49 ----
 components/weapons/trhsnsr3.pie |  35 ---
 components/weapons/trhsuper.pie |  45 ----
 components/weapons/trhvcan.pie  |  58 ----
 components/weapons/trhvcan2.pie |  57 ----
 components/weapons/trlacan.pie  |  58 ----
 components/weapons/trlassat.pie | 131 ---------
 components/weapons/trlcan.pie   |  27 --
 components/weapons/trlcmd1.pie  |  37 ---
 components/weapons/trlcon.pie   |  71 -----
 components/weapons/trlflmr.pie  |  45 ----
 components/weapons/trlgss.pie   |  27 --
 components/weapons/trlmg1.pie   |  39 ---
 components/weapons/trlmg2.pie   |  39 ---
 components/weapons/trlmsl.pie   |  84 ------
 components/weapons/trlrckt.pie  |  37 ---
 components/weapons/trlrcktp.pie |  49 ----
 components/weapons/trlsnsr1.pie |  35 ---
 components/weapons/trlvtlem.pie |  47 ----
 components/weapons/trlvtlhe.pie |  47 ----
 components/weapons/trlvtlin.pie |  29 --
 components/weapons/trlvtlpl.pie |  29 --
 components/weapons/trmacan.pie  |  62 -----
 components/weapons/trmair.pie   |  31 ---
 components/weapons/trmair2.pie  |  88 ------
 components/weapons/trmair3.pie  |  39 ---
 components/weapons/trmcan.pie   |  27 --
 components/weapons/trmcon.pie   |  49 ----
 components/weapons/trmecm1.pie  |  51 ----
 components/weapons/trmecm2.pie  |  35 ---
 components/weapons/trmflmr.pie  |  73 -----
 components/weapons/trmgss.pie   |  37 ---
 components/weapons/trmhowt.pie  |  79 ------
 components/weapons/trmlas.pie   |  27 --
 components/weapons/trmmg.pie    |  39 ---
 components/weapons/trmmort.pie  |  69 -----
 components/weapons/trmmsl.pie   |  81 ------
 components/weapons/trmmsla.pie  |  83 ------
 components/weapons/trmmslaa.pie |  53 ----
 components/weapons/trmmslat.pie |  43 ---
 components/weapons/trmmslbb.pie |  37 ---
 components/weapons/trmmslsa.pie |  41 ---
 components/weapons/trmrckt.pie  |  49 ----
 components/weapons/trmrckta.pie |  39 ---
 components/weapons/trmrcktb.pie |  27 --
 components/weapons/trmrktbb.pie |  39 ---
 components/weapons/trmsnsr2.pie |  35 ---
 components/weapons/trmvcan.pie  |  58 ----
 components/weapons/trmvtlem.pie |  47 ----
 components/weapons/trmvtlhe.pie |  47 ----
 components/weapons/trmvtlin.pie |  39 ---
 components/weapons/trmvtlpl.pie |  37 ---
 components/weapons/trwpfcan.pie |  45 ----
 components/weapons/trwpfgss.pie |  45 ----
 components/weapons/trwpfmsl.pie |  57 ----
 components/weapons/trwpfrkt.pie |  57 ----
 271 files changed, 21202 deletions(-)
 delete mode 100644 components/bodies/cybd_run.pie
 delete mode 100644 components/bodies/cybd_std.pie
 delete mode 100644 components/bodies/cybdpair.pie
 delete mode 100644 components/bodies/cybdpjmp.pie
 delete mode 100644 components/bodies/cybdplnd.pie
 delete mode 100644 components/bodies/cybdprun.pie
 delete mode 100644 components/bodies/cybdpstd.pie
 delete mode 100644 components/bodies/drhbod09.pie
 delete mode 100644 components/bodies/drhbod10.pie
 delete mode 100644 components/bodies/drhbod11.pie
 delete mode 100644 components/bodies/drhbod12.pie
 delete mode 100644 components/bodies/drhbod14.pie
 delete mode 100644 components/bodies/drlbod01.pie
 delete mode 100644 components/bodies/drlbod02.pie
 delete mode 100644 components/bodies/drlbod03.pie
 delete mode 100644 components/bodies/drlbod04.pie
 delete mode 100644 components/bodies/drmbod05.pie
 delete mode 100644 components/bodies/drmbod06.pie
 delete mode 100644 components/bodies/drmbod07.pie
 delete mode 100644 components/bodies/drmbod08.pie
 delete mode 100644 components/bodies/drmbod13.pie
 delete mode 100644 components/bodies/exbloke.pie
 delete mode 100644 components/bodies/exbuggy.pie
 delete mode 100644 components/bodies/exbugrk.pie
 delete mode 100644 components/bodies/exfire.pie
 delete mode 100644 components/bodies/exjeep.pie
 delete mode 100644 components/bodies/exjeeprk.pie
 delete mode 100644 components/bodies/exschool.pie
 delete mode 100644 components/bodies/extrike.pie
 delete mode 100644 components/bodies/fireknee.pie
 delete mode 100644 components/bodies/flamfall.pie
 delete mode 100644 components/bodies/mibnkbod.pie
 delete mode 100644 components/bodies/runanim.pie
 delete mode 100644 components/bodies/runflame.pie
 delete mode 100644 components/bodies/scbd_run.pie
 delete mode 100644 components/bodies/scbd_std.pie
 delete mode 100644 components/bodies/walkanim.pie
 delete mode 100644 components/prop/mibnkdrl.pie
 delete mode 100644 components/prop/mibnkdrr.pie
 delete mode 100644 components/prop/prhheli1.pie
 delete mode 100644 components/prop/prhheli2.pie
 delete mode 100644 components/prop/prhheli3.pie
 delete mode 100644 components/prop/prhheli4.pie
 delete mode 100644 components/prop/prhhov1.pie
 delete mode 100644 components/prop/prhlhtr3.pie
 delete mode 100644 components/prop/prhltrk3.pie
 delete mode 100644 components/prop/prhlvtl1.pie
 delete mode 100644 components/prop/prhlvtl2.pie
 delete mode 100644 components/prop/prhlvtl3.pie
 delete mode 100644 components/prop/prhlvtl4.pie
 delete mode 100644 components/prop/prhlwhl1.pie
 delete mode 100644 components/prop/prhnaval1.pie
 delete mode 100644 components/prop/prhrhtr3.pie
 delete mode 100644 components/prop/prhrtrk3.pie
 delete mode 100644 components/prop/prhrvtl1.pie
 delete mode 100644 components/prop/prhrvtl2.pie
 delete mode 100644 components/prop/prhrvtl3.pie
 delete mode 100644 components/prop/prhrvtl4.pie
 delete mode 100644 components/prop/prhrwhl1.pie
 delete mode 100644 components/prop/prlheli1.pie
 delete mode 100644 components/prop/prlheli2.pie
 delete mode 100644 components/prop/prlheli3.pie
 delete mode 100644 components/prop/prlhov1.pie
 delete mode 100644 components/prop/prllhtr1.pie
 delete mode 100644 components/prop/prlltrk1.pie
 delete mode 100644 components/prop/prllvtl1.pie
 delete mode 100644 components/prop/prllvtl2.pie
 delete mode 100644 components/prop/prllvtl3.pie
 delete mode 100644 components/prop/prllwhl1.pie
 delete mode 100644 components/prop/prlrhtr1.pie
 delete mode 100644 components/prop/prlrtrk1.pie
 delete mode 100644 components/prop/prlrvtl1.pie
 delete mode 100644 components/prop/prlrvtl2.pie
 delete mode 100644 components/prop/prlrvtl3.pie
 delete mode 100644 components/prop/prlrwhl1.pie
 delete mode 100644 components/prop/prmheli1.pie
 delete mode 100644 components/prop/prmhov1.pie
 delete mode 100644 components/prop/prmlhtr2.pie
 delete mode 100644 components/prop/prmltrk2.pie
 delete mode 100644 components/prop/prmlvtl1.pie
 delete mode 100644 components/prop/prmlwhl1.pie
 delete mode 100644 components/prop/prmrhtr2.pie
 delete mode 100644 components/prop/prmrtrk2.pie
 delete mode 100644 components/prop/prmrvtl1.pie
 delete mode 100644 components/prop/prmrwhl1.pie
 delete mode 100644 components/prop/prsheli1.pie
 delete mode 100644 components/prop/prshov1.pie
 delete mode 100644 components/prop/prslhtr4.pie
 delete mode 100644 components/prop/prsltrk4.pie
 delete mode 100644 components/prop/prslvtl1.pie
 delete mode 100644 components/prop/prslwhl1.pie
 delete mode 100644 components/prop/prsrhtr4.pie
 delete mode 100644 components/prop/prsrtrk4.pie
 delete mode 100644 components/prop/prsrvtl1.pie
 delete mode 100644 components/prop/prsrwhl1.pie
 delete mode 100644 components/weapons/cy_can.pie
 delete mode 100644 components/weapons/cy_con.pie
 delete mode 100644 components/weapons/cy_flame.pie
 delete mode 100644 components/weapons/cy_gren.pie
 delete mode 100644 components/weapons/cy_gun.pie
 delete mode 100644 components/weapons/cy_las.pie
 delete mode 100644 components/weapons/cy_miss.pie
 delete mode 100644 components/weapons/cy_rail.pie
 delete mode 100644 components/weapons/cy_rep.pie
 delete mode 100644 components/weapons/cy_rkt.pie
 delete mode 100644 components/weapons/cy_therm.pie
 delete mode 100644 components/weapons/cybody.pie
 delete mode 100644 components/weapons/cybodyjp.pie
 delete mode 100644 components/weapons/exturret.pie
 delete mode 100644 components/weapons/gnhaalas.pie
 delete mode 100644 components/weapons/gnhair.pie
 delete mode 100644 components/weapons/gnhair2.pie
 delete mode 100644 components/weapons/gnhblas.pie
 delete mode 100644 components/weapons/gnhcan.pie
 delete mode 100644 components/weapons/gnhecm3.pie
 delete mode 100644 components/weapons/gnhemp.pie
 delete mode 100644 components/weapons/gnhgss.pie
 delete mode 100644 components/weapons/gnhhowt.pie
 delete mode 100644 components/weapons/gnhhowt2.pie
 delete mode 100644 components/weapons/gnhlas.pie
 delete mode 100644 components/weapons/gnhmg1.pie
 delete mode 100644 components/weapons/gnhmort.pie
 delete mode 100644 components/weapons/gnhmort2.pie
 delete mode 100644 components/weapons/gnhmorte.pie
 delete mode 100644 components/weapons/gnhmsl.pie
 delete mode 100644 components/weapons/gnhmslab.pie
 delete mode 100644 components/weapons/gnhmsli.pie
 delete mode 100644 components/weapons/gnhmslsa.pie
 delete mode 100644 components/weapons/gnhplasm.pie
 delete mode 100644 components/weapons/gnhplsma.pie
 delete mode 100644 components/weapons/gnhrckt.pie
 delete mode 100644 components/weapons/gnhrepar.pie
 delete mode 100644 components/weapons/gnhsnsr3.pie
 delete mode 100644 components/weapons/gnhsnsr4.pie
 delete mode 100644 components/weapons/gnhsuper.pie
 delete mode 100644 components/weapons/gnhvcan.pie
 delete mode 100644 components/weapons/gnhvcan2.pie
 delete mode 100644 components/weapons/gnlacan.pie
 delete mode 100644 components/weapons/gnlair.pie
 delete mode 100644 components/weapons/gnlassat.pie
 delete mode 100644 components/weapons/gnlcan.pie
 delete mode 100644 components/weapons/gnlcmd1.pie
 delete mode 100644 components/weapons/gnlflmr.pie
 delete mode 100644 components/weapons/gnlgss.pie
 delete mode 100644 components/weapons/gnlmg1.pie
 delete mode 100644 components/weapons/gnlmg2.pie
 delete mode 100644 components/weapons/gnlmsl.pie
 delete mode 100644 components/weapons/gnlrckt.pie
 delete mode 100644 components/weapons/gnlrcktp.pie
 delete mode 100644 components/weapons/gnlsnsr1.pie
 delete mode 100644 components/weapons/gnmacan.pie
 delete mode 100644 components/weapons/gnmair.pie
 delete mode 100644 components/weapons/gnmair2.pie
 delete mode 100644 components/weapons/gnmair3.pie
 delete mode 100644 components/weapons/gnmcan.pie
 delete mode 100644 components/weapons/gnmecm1.pie
 delete mode 100644 components/weapons/gnmecm2.pie
 delete mode 100644 components/weapons/gnmflmr.pie
 delete mode 100644 components/weapons/gnmflmrp.pie
 delete mode 100644 components/weapons/gnmgss.pie
 delete mode 100644 components/weapons/gnmhowt.pie
 delete mode 100644 components/weapons/gnmhowti.pie
 delete mode 100644 components/weapons/gnmlas.pie
 delete mode 100644 components/weapons/gnmmg1.pie
 delete mode 100644 components/weapons/gnmmg2.pie
 delete mode 100644 components/weapons/gnmmort.pie
 delete mode 100644 components/weapons/gnmmorti.pie
 delete mode 100644 components/weapons/gnmmsl.pie
 delete mode 100644 components/weapons/gnmmsla.pie
 delete mode 100644 components/weapons/gnmmslaa.pie
 delete mode 100644 components/weapons/gnmmslat.pie
 delete mode 100644 components/weapons/gnmmslbb.pie
 delete mode 100644 components/weapons/gnmmslsa.pie
 delete mode 100644 components/weapons/gnmrckt.pie
 delete mode 100644 components/weapons/gnmrckta.pie
 delete mode 100644 components/weapons/gnmrcktb.pie
 delete mode 100644 components/weapons/gnmrepar.pie
 delete mode 100644 components/weapons/gnmrepr2.pie
 delete mode 100644 components/weapons/gnmrktbb.pie
 delete mode 100644 components/weapons/gnmrlas.pie
 delete mode 100644 components/weapons/gnmsnsr2.pie
 delete mode 100644 components/weapons/gnmvcan.pie
 delete mode 100644 components/weapons/gnnavbig.pie
 delete mode 100644 components/weapons/gnwpfcan.pie
 delete mode 100644 components/weapons/gnwpfgss.pie
 delete mode 100644 components/weapons/gnwpfmsl.pie
 delete mode 100644 components/weapons/gnwpfrkt.pie
 delete mode 100644 components/weapons/mibnkgun.pie
 delete mode 100644 components/weapons/mibnktur.pie
 delete mode 100644 components/weapons/misensor.pie
 delete mode 100644 components/weapons/sc_asscn.pie
 delete mode 100644 components/weapons/sc_atm.pie
 delete mode 100644 components/weapons/sc_can.pie
 delete mode 100644 components/weapons/sc_hpvcn.pie
 delete mode 100644 components/weapons/sc_pulse.pie
 delete mode 100644 components/weapons/sc_rail2.pie
 delete mode 100644 components/weapons/sc_tk.pie
 delete mode 100644 components/weapons/scavmra.pie
 delete mode 100644 components/weapons/scbody.pie
 delete mode 100644 components/weapons/trhair.pie
 delete mode 100644 components/weapons/trhcan.pie
 delete mode 100644 components/weapons/trhcon.pie
 delete mode 100644 components/weapons/trhecm3.pie
 delete mode 100644 components/weapons/trhemp.pie
 delete mode 100644 components/weapons/trhgss.pie
 delete mode 100644 components/weapons/trhhow2.pie
 delete mode 100644 components/weapons/trhhowt.pie
 delete mode 100644 components/weapons/trhlas.pie
 delete mode 100644 components/weapons/trhmg.pie
 delete mode 100644 components/weapons/trhmsl.pie
 delete mode 100644 components/weapons/trhmslab.pie
 delete mode 100644 components/weapons/trhmsli.pie
 delete mode 100644 components/weapons/trhmslsa.pie
 delete mode 100644 components/weapons/trhplasm.pie
 delete mode 100644 components/weapons/trhrckt.pie
 delete mode 100644 components/weapons/trhrmort.pie
 delete mode 100644 components/weapons/trhsnsr3.pie
 delete mode 100644 components/weapons/trhsuper.pie
 delete mode 100644 components/weapons/trhvcan.pie
 delete mode 100644 components/weapons/trhvcan2.pie
 delete mode 100644 components/weapons/trlacan.pie
 delete mode 100644 components/weapons/trlassat.pie
 delete mode 100644 components/weapons/trlcan.pie
 delete mode 100644 components/weapons/trlcmd1.pie
 delete mode 100644 components/weapons/trlcon.pie
 delete mode 100644 components/weapons/trlflmr.pie
 delete mode 100644 components/weapons/trlgss.pie
 delete mode 100644 components/weapons/trlmg1.pie
 delete mode 100644 components/weapons/trlmg2.pie
 delete mode 100644 components/weapons/trlmsl.pie
 delete mode 100644 components/weapons/trlrckt.pie
 delete mode 100644 components/weapons/trlrcktp.pie
 delete mode 100644 components/weapons/trlsnsr1.pie
 delete mode 100644 components/weapons/trlvtlem.pie
 delete mode 100644 components/weapons/trlvtlhe.pie
 delete mode 100644 components/weapons/trlvtlin.pie
 delete mode 100644 components/weapons/trlvtlpl.pie
 delete mode 100644 components/weapons/trmacan.pie
 delete mode 100644 components/weapons/trmair.pie
 delete mode 100644 components/weapons/trmair2.pie
 delete mode 100644 components/weapons/trmair3.pie
 delete mode 100644 components/weapons/trmcan.pie
 delete mode 100644 components/weapons/trmcon.pie
 delete mode 100644 components/weapons/trmecm1.pie
 delete mode 100644 components/weapons/trmecm2.pie
 delete mode 100644 components/weapons/trmflmr.pie
 delete mode 100644 components/weapons/trmgss.pie
 delete mode 100644 components/weapons/trmhowt.pie
 delete mode 100644 components/weapons/trmlas.pie
 delete mode 100644 components/weapons/trmmg.pie
 delete mode 100644 components/weapons/trmmort.pie
 delete mode 100644 components/weapons/trmmsl.pie
 delete mode 100644 components/weapons/trmmsla.pie
 delete mode 100644 components/weapons/trmmslaa.pie
 delete mode 100644 components/weapons/trmmslat.pie
 delete mode 100644 components/weapons/trmmslbb.pie
 delete mode 100644 components/weapons/trmmslsa.pie
 delete mode 100644 components/weapons/trmrckt.pie
 delete mode 100644 components/weapons/trmrckta.pie
 delete mode 100644 components/weapons/trmrcktb.pie
 delete mode 100644 components/weapons/trmrktbb.pie
 delete mode 100644 components/weapons/trmsnsr2.pie
 delete mode 100644 components/weapons/trmvcan.pie
 delete mode 100644 components/weapons/trmvtlem.pie
 delete mode 100644 components/weapons/trmvtlhe.pie
 delete mode 100644 components/weapons/trmvtlin.pie
 delete mode 100644 components/weapons/trmvtlpl.pie
 delete mode 100644 components/weapons/trwpfcan.pie
 delete mode 100644 components/weapons/trwpfgss.pie
 delete mode 100644 components/weapons/trwpfmsl.pie
 delete mode 100644 components/weapons/trwpfrkt.pie

diff --git a/components/bodies/cybd_run.pie b/components/bodies/cybd_run.pie
deleted file mode 100644
index 3dc6c0c..0000000
--- a/components/bodies/cybd_run.pie
+++ /dev/null
@@ -1,196 +0,0 @@
-PIE 3
-TYPE 200
-TEXTURE 0 page-14-droid-hubs.png 0 0
-LEVELS 6
-LEVEL 1
-POINTS 8
-	-0.72 11.2 -8.64
-	14.4 13.6 -10.8
-	13.68 28 0
-	-1.44 25.6 2.16
-	7.2 19.2 -16.56
-	10.08 6.4 -3.6
-	8.64 20.8 7.92
-	5.04 33.6 -4.32
-POLYGONS 8
-	200 3 0 1 2 0.734375 0.828125 0.703125 0.828125 0.703125 0.78125
-	200 3 0 2 3 0.734375 0.828125 0.703125 0.78125 0.734375 0.78125
-	200 3 3 2 1 0.734375 0.78125 0.703125 0.78125 0.703125 0.828125
-	200 3 3 1 0 0.734375 0.78125 0.703125 0.828125 0.734375 0.828125
-	200 3 4 5 6 0.667969 0.828125 0.699219 0.828125 0.699219 0.78125
-	200 3 4 6 7 0.667969 0.828125 0.699219 0.78125 0.667969 0.78125
-	200 3 7 6 5 0.667969 0.78125 0.699219 0.78125 0.699219 0.828125
-	200 3 7 5 4 0.667969 0.78125 0.699219 0.828125 0.667969 0.828125
-ANIMOBJECT 80 0 12
-	0 0 0 0  0 0 0  1 1 1 
-	1 -514 -5878 -1084  -16390 580 -3905  1 1 1 
-	2 -1255 -5366 -1621  -15079 3125 -3354  1 1 1 
-	3 -2598 3276 2296  9450 7260 3275  1 1 1 
-	4 -3848 13096 11205  40900 5066 11365  1 1 1 
-	5 -3281 12809 8156  39328 3913 10398  1 1 1 
-	6 -2370 14662 5795  45218 46 9700  1 1 1 
-	7 -1128 17472 6936  55849 -4754 7202  1 1 1 
-	8 -977 20040 12136  70938 -9037 5927  1 1 1 
-	9 998 13127 5712  37833 -5305 2155  1 1 1 
-	10 1044 19 4511  -31 -3055 -2368  1 1 1 
-	11 856 -4636 1784  -12520 -2894 -1638  1 1 1 
-LEVEL 2
-POINTS 8
-	2.16 1.6 -13.68
-	15.12 3.2 -14.4
-	14.4 17.6 -7.92
-	1.44 16 -6.48
-	7.92 6.4 -20.16
-	10.08 0 -7.92
-	9.36 12.8 -0.72
-	7.2 20.8 -13.68
-POLYGONS 8
-	200 3 0 1 2 0.644531 0.777344 0.621094 0.777344 0.621094 0.738281
-	200 3 0 2 3 0.644531 0.777344 0.621094 0.738281 0.644531 0.738281
-	200 3 3 2 1 0.644531 0.738281 0.621094 0.738281 0.621094 0.777344
-	200 3 3 1 0 0.644531 0.738281 0.621094 0.777344 0.644531 0.777344
-	200 3 4 5 6 0.59375 0.777344 0.617188 0.777344 0.617188 0.738281
-	200 3 4 6 7 0.59375 0.777344 0.617188 0.738281 0.59375 0.738281
-	200 3 7 6 5 0.59375 0.738281 0.617188 0.738281 0.617188 0.777344
-	200 3 7 5 4 0.59375 0.738281 0.617188 0.777344 0.59375 0.777344
-ANIMOBJECT 80 0 12
-	0 0 0 0  0 0 0  1 1 1 
-	1 -2406 2954 7115  26830 -199 7249  1 1 1 
-	2 -3760 4577 11627  45014 -478 11311  1 1 1 
-	3 -3960 7768 13045  49841 2347 12367  1 1 1 
-	4 -3834 13069 11081  40476 5137 11279  1 1 1 
-	5 -4217 13056 15701  64345 -1164 14567  1 1 1 
-	6 -4394 12286 17601  85713 -9517 14325  1 1 1 
-	7 -3972 12754 18309  98385 -15562 9959  1 1 1 
-	8 -2973 16453 18640  96734 -15826 6829  1 1 1 
-	9 -2448 12268 17652  78629 -14411 8147  1 1 1 
-	10 -2576 6678 17734  51683 -8710 10000  1 1 1 
-	11 -669 1344 6456  14301 -2851 5524  1 1 1 
-LEVEL 3
-POINTS 8
-	2.16 3.2 -23.76
-	16.56 6.4 -23.04
-	16.56 2.4 -4.32
-	2.16 0 -5.04
-	9.36 3.2 -23.76
-	9.36 0 -5.04
-	8.64 5.6 -3.6
-	8.64 9.6 -22.32
-POLYGONS 8
-	200 3 0 1 2 0.609375 0.832031 0.609375 0.804688 0.644531 0.804688
-	200 3 0 2 3 0.609375 0.832031 0.644531 0.804688 0.644531 0.832031
-	200 3 3 2 1 0.644531 0.832031 0.644531 0.804688 0.609375 0.804688
-	200 3 3 1 0 0.644531 0.832031 0.609375 0.804688 0.609375 0.832031
-	200 3 4 5 6 0.648438 0.777344 0.683594 0.777344 0.683594 0.761719
-	200 3 4 6 7 0.648438 0.777344 0.683594 0.761719 0.648438 0.761719
-	200 3 7 6 5 0.648438 0.761719 0.683594 0.761719 0.683594 0.777344
-	200 3 7 5 4 0.648438 0.761719 0.683594 0.777344 0.648438 0.777344
-ANIMOBJECT 80 0 12
-	0 0 0 0  0 0 0  1 1 1 
-	1 -817 3891 1161  3144 2914 -205  1 1 1 
-	2 -1579 7788 2063  5590 5186 -255  1 1 1 
-	3 -2093 11761 2960  8045 7457 -207  1 1 1 
-	4 -2110 15809 4102  11227 10372 0  1 1 1 
-	5 -1908 19887 4756  15586 4460 73  1 1 1 
-	6 -1353 23866 5476  20720 -2507 -419  1 1 1 
-	7 -311 25510 12061  41718 -2009 -1131  1 1 1 
-	8 761 25274 17165  62702 -1288 -1617  1 1 1 
-	9 1397 18634 15525  52959 -425 -1150  1 1 1 
-	10 535 10792 12427  24860 538 -356  1 1 1 
-	11 633 2042 5902  10419 812 -143  1 1 1 
-LEVEL 4
-POINTS 8
-	-14.4 8 1.44
-	1.44 8 1.44
-	0.72 27.2 0
-	-14.4 27.2 0
-	-8.64 9.6 10.08
-	-8.64 6.4 -6.48
-	-7.2 25.6 -8.64
-	-7.2 28.8 7.92
-POLYGONS 8
-	200 3 0 1 2 0.703125 0.828125 0.734375 0.828125 0.734375 0.78125
-	200 3 0 2 3 0.703125 0.828125 0.734375 0.78125 0.703125 0.78125
-	200 3 3 2 1 0.703125 0.78125 0.734375 0.78125 0.734375 0.828125
-	200 3 3 1 0 0.703125 0.78125 0.734375 0.828125 0.703125 0.828125
-	200 3 4 5 6 0.699219 0.828125 0.667969 0.828125 0.667969 0.78125
-	200 3 4 6 7 0.699219 0.828125 0.667969 0.78125 0.699219 0.78125
-	200 3 7 6 5 0.699219 0.78125 0.667969 0.78125 0.667969 0.828125
-	200 3 7 5 4 0.699219 0.78125 0.667969 0.828125 0.699219 0.828125
-ANIMOBJECT 80 0 12
-	0 0 0 0  0 0 0  1 1 1 
-	1 -938 2636 -2140  6797 2433 2555  1 1 1 
-	2 -1650 6973 -1780  18615 3987 3365  1 1 1 
-	3 -1551 -4808 1416  -13022 6739 8069  1 1 1 
-	4 138 -15915 12154  -47988 10957 9498  1 1 1 
-	5 81 -18163 12844  -57707 12197 7323  1 1 1 
-	6 -581 -17637 8217  -54886 10990 5388  1 1 1 
-	7 972 -20436 12692  -72431 12260 6534  1 1 1 
-	8 1197 -20064 11598  -69706 8975 6853  1 1 1 
-	9 909 -14510 7273  -42806 686 4610  1 1 1 
-	10 1036 -3509 5317  -9144 -3192 -899  1 1 1 
-	11 565 -4260 2027  -11342 -1697 119  1 1 1 
-LEVEL 5
-POINTS 8
-	-12.96 3.2 12.24
-	0 2.4 10.8
-	-1.44 12.8 0
-	-14.4 13.6 0.72
-	-6.48 9.6 15.84
-	-7.92 -2.4 7.2
-	-9.36 7.2 -3.6
-	-7.2 19.2 4.32
-POLYGONS 8
-	200 3 0 1 2 0.621094 0.777344 0.644531 0.777344 0.644531 0.738281
-	200 3 0 2 3 0.621094 0.777344 0.644531 0.738281 0.621094 0.738281
-	200 3 3 2 1 0.621094 0.738281 0.644531 0.738281 0.644531 0.777344
-	200 3 3 1 0 0.621094 0.738281 0.644531 0.777344 0.621094 0.777344
-	200 3 4 5 6 0.617188 0.777344 0.59375 0.777344 0.59375 0.738281
-	200 3 4 6 7 0.617188 0.777344 0.59375 0.738281 0.617188 0.738281
-	200 3 7 6 5 0.617188 0.738281 0.59375 0.738281 0.59375 0.777344
-	200 3 7 5 4 0.617188 0.738281 0.59375 0.777344 0.617188 0.777344
-ANIMOBJECT 80 0 12
-	0 0 0 0  0 0 0  1 1 1 
-	1 -988 3923 -1933  14614 2710 1280  1 1 1 
-	2 -1628 6589 -1894  16234 3857 3743  1 1 1 
-	3 -1910 -2386 1033  1689 6561 5581  1 1 1 
-	4 -794 -12663 9314  -22708 8593 5913  1 1 1 
-	5 113 -18220 12960  -58439 12300 7393  1 1 1 
-	6 642 -18997 13025  -83211 15341 7240  1 1 1 
-	7 306 -19298 9751  -54730 9643 5117  1 1 1 
-	8 299 -16849 6455  -35022 4539 3213  1 1 1 
-	9 770 -12785 5739  -29382 -571 2782  1 1 1 
-	10 1109 -7879 7764  -39296 -1301 3631  1 1 1 
-	11 565 -4091 1983  -10290 -1725 -51  1 1 1 
-LEVEL 6
-POINTS 8
-	-15.12 3.2 0
-	-0.72 0 0
-	-0.72 3.2 18.72
-	-15.12 6.4 18.72
-	-7.92 3.2 18.72
-	-7.92 0 0
-	-6.48 5.6 0
-	-6.48 9.6 18
-POLYGONS 8
-	200 3 0 1 2 0.609375 0.804688 0.609375 0.832031 0.644531 0.832031
-	200 3 0 2 3 0.609375 0.804688 0.644531 0.832031 0.644531 0.804688
-	200 3 3 2 1 0.644531 0.804688 0.644531 0.832031 0.609375 0.832031
-	200 3 3 1 0 0.644531 0.804688 0.609375 0.832031 0.609375 0.804688
-	200 3 4 5 6 0.683594 0.777344 0.648438 0.777344 0.648438 0.761719
-	200 3 4 6 7 0.683594 0.777344 0.648438 0.761719 0.683594 0.761719
-	200 3 7 6 5 0.683594 0.761719 0.648438 0.761719 0.648438 0.777344
-	200 3 7 5 4 0.683594 0.761719 0.648438 0.777344 0.683594 0.777344
-ANIMOBJECT 80 0 12
-	0 0 0 0  0 0 0  1 1 1 
-	1 -871 4623 -2753  21363 -130 -116  1 1 1 
-	2 -1704 10151 -5002  42726 -208 -272  1 1 1 
-	3 -2201 770 -3302  32853 -1147 -389  1 1 1 
-	4 -1700 -12181 4890  4279 -2380 -151  1 1 1 
-	5 -2116 -21113 4981  -10418 -2690 176  1 1 1 
-	6 -2229 -25729 4440  -21375 -2490 509  1 1 1 
-	7 -1269 -21605 3996  -18155 -5426 580  1 1 1 
-	8 -270 -17364 3643  -15641 -7710 521  1 1 1 
-	9 532 -13001 3283  -13108 -9989 360  1 1 1 
-	10 901 -8519 2812  -9812 -12905 0  1 1 1 
-	11 792 -3888 1524  -5446 -6747 -237  1 1 1 
\ No newline at end of file
diff --git a/components/bodies/cybd_std.pie b/components/bodies/cybd_std.pie
deleted file mode 100644
index 9b3f3d1..0000000
--- a/components/bodies/cybd_std.pie
+++ /dev/null
@@ -1,52 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-14-droid-hubs.png 256 256
-EVENT 1 cybd_run.pie
-LEVELS 1
-LEVEL 1
-POINTS 26 
-	12 0 8 
-	4 0 8 
-	2 26 2 
-	10 26 2 
-	4 0 0 
-	12 0 0 
-	10 26 -6 
-	2 26 -6 
-	4 0 -6 
-	2 26 8 
-	12 0 -6 
-	10 26 8 
-	-4 2 12 
-	-12 2 12 
-	-10 26 2 
-	-2 26 2 
-	-12 2 0 
-	-4 2 0 
-	-2 26 -4 
-	-10 26 -4 
-	-4 2 -6 
-	-2 26 12 
-	-2 26 -6 
-	-12 2 -6 
-	-10 26 -6 
-	-10 26 12
-POLYGONS 16
-	200 3 3 2 1 78 186 82 186 82 199
-	200 3 3 1 0 78 186 82 199 78 199
-	200 3 7 6 5 78 186 74 186 74 199
-	200 3 7 5 4 78 186 74 199 78 199
-	200 3 9 7 8 28 201 21 201 21 214
-	200 3 9 8 1 28 201 21 214 28 214
-	200 3 6 11 0 21 187 28 187 28 200
-	200 3 6 0 10 21 187 28 200 21 200
-	200 3 15 14 13 106 186 102 186 102 199
-	200 3 15 13 12 106 186 102 199 106 199
-	200 3 19 18 17 98 186 102 186 102 199
-	200 3 19 17 16 98 186 102 199 98 199
-	200 3 22 21 12 50 201 57 201 57 214
-	200 3 22 12 20 50 201 57 214 50 214
-	200 3 25 24 23 57 187 50 187 50 200
-	200 3 25 23 13 57 187 50 200 57 200
-CONNECTORS 1
-	0 0 32
diff --git a/components/bodies/cybdpair.pie b/components/bodies/cybdpair.pie
deleted file mode 100644
index 07499a7..0000000
--- a/components/bodies/cybdpair.pie
+++ /dev/null
@@ -1,110 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-14-droid-hubs.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 59 
-	-4 4 8 
-	-12 4 8 
-	-10 30 2 
-	-2 30 2 
-	-12 4 0 
-	-4 4 0 
-	-2 30 -6 
-	-10 30 -6 
-	-4 4 -6 
-	-2 30 8 
-	-12 4 -6 
-	-10 30 8 
-	12 6 12 
-	4 6 12 
-	2 30 2 
-	10 30 2 
-	4 6 0 
-	12 6 0 
-	10 30 -4 
-	2 30 -4 
-	4 6 -6 
-	2 30 -6 
-	2 30 12 
-	12 6 -6 
-	10 30 12 
-	10 30 -6 
-	18 26 8 
-	-18 26 8 
-	-18 58 4 
-	18 58 4 
-	-18 26 -2 
-	18 26 -2 
-	18 58 -6 
-	-18 58 -6 
-	10 30 -8 
-	10 30 8 
-	6 58 8 
-	6 58 -8 
-	-8 56 -8 
-	8 56 -8 
-	8 56 6 
-	-8 56 6 
-	14 24 -7 
-	14 27 10 
-	14 47 7 
-	14 44 -10 
-	-10 30 -8 
-	-6 58 -8 
-	-6 58 8 
-	-9 58 19 
-	9 58 19 
-	9 32 21 
-	-9 32 21 
-	-11 64 6 
-	-11 49 8 
-	11 49 8 
-	11 64 6 
-	11 31 9 
-	-11 31 9
-POLYGONS 42
-	200 3 3 2 1 82 186 78 186 78 199
-	200 3 3 1 0 82 186 78 199 82 199
-	200 3 7 6 5 74 186 78 186 78 199
-	200 3 7 5 4 74 186 78 199 74 199
-	200 3 6 9 0 21 201 28 201 28 214
-	200 3 6 0 8 21 201 28 214 21 214
-	200 3 11 7 10 28 187 21 187 21 200
-	200 3 11 10 1 28 187 21 200 28 200
-	200 3 15 14 13 102 186 106 186 106 199
-	200 3 15 13 12 102 186 106 199 102 199
-	200 3 19 18 17 102 186 98 186 98 199
-	200 3 19 17 16 102 186 98 199 102 199
-	200 3 22 21 20 57 201 50 201 50 214
-	200 3 22 20 13 57 201 50 214 57 214
-	200 3 25 24 12 50 187 57 187 57 200
-	200 3 25 12 23 50 187 57 200 50 200
-	200 3 29 28 27 19 246 1 246 1 230
-	200 3 29 27 26 19 246 1 230 19 230
-	200 3 33 32 31 1 215 19 215 19 231
-	200 3 33 31 30 1 215 19 231 1 231
-	200 3 37 36 35 57 200 66 200 66 214
-	200 3 37 35 34 57 200 66 214 57 214
-	200 3 41 40 39 9 246 9 255 0 255
-	200 3 41 39 38 9 246 0 255 0 246
-	200 3 42 43 44 130 210 139 210 139 200
-	200 3 42 44 45 130 210 139 200 130 200
-	200 3 45 44 43 130 200 139 200 139 210
-	200 3 45 43 42 130 200 139 210 130 210
-	200 3 48 47 46 66 200 57 200 57 214
-	200 3 48 46 11 66 200 57 214 66 214
-	200 3 52 51 50 137 197 137 186 126 186
-	200 3 52 50 49 137 197 126 186 126 197
-	200 3 56 55 54 118 186 112 186 112 197
-	200 3 56 54 53 118 186 112 197 118 197
-	200 3 57 56 50 137 186 124 186 127 190
-	200 3 57 50 51 137 186 127 190 137 190
-	200 3 53 58 52 124 186 137 186 137 190
-	200 3 53 52 49 124 186 137 190 127 190
-	200 3 56 53 49 124 186 124 197 118 197
-	200 3 56 49 50 124 186 118 197 118 186
-	200 3 58 57 51 118 197 118 186 112 186
-	200 3 58 51 52 118 197 112 186 112 197
-CONNECTORS 1
-	-16 4 47
diff --git a/components/bodies/cybdpjmp.pie b/components/bodies/cybdpjmp.pie
deleted file mode 100644
index 9331481..0000000
--- a/components/bodies/cybdpjmp.pie
+++ /dev/null
@@ -1,341 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-14-droid-hubs.png 256 256
-LEVELS 3
-LEVEL 1
-POINTS 64 
-	-4 1 0 
-	-12 1 0 
-	-10 28 0 
-	-2 28 0 
-	-12 0 -6 
-	-4 0 -6 
-	-2 26 -5 
-	-10 26 -5 
-	-4 7 12 
-	-2 29 1 
-	-2 21 -16 
-	-12 7 12 
-	-10 21 -16 
-	-10 29 1 
-	12 0 6 
-	4 0 6 
-	2 27 3 
-	10 27 3 
-	4 1 2 
-	12 1 2 
-	10 30 -4 
-	2 30 -4 
-	4 7 -12 
-	2 23 14 
-	12 7 -12 
-	10 23 14 
-	18 17 10 
-	-18 17 10 
-	-18 48 -1 
-	18 48 -1 
-	-18 15 1 
-	18 15 1 
-	18 45 -11 
-	-18 45 -11 
-	10 17 -5 
-	10 21 9 
-	6 49 2 
-	6 45 -13 
-	-8 43 -12 
-	8 43 -12 
-	8 46 1 
-	-8 46 1 
-	14 11 -4 
-	14 17 12 
-	14 36 5 
-	14 30 -11 
-	-10 21 9 
-	-10 17 -5 
-	-6 45 -13 
-	-6 49 2 
-	-16 0 -20 
-	16 0 -20 
-	16 0 20 
-	-16 0 20 
-	-9 51 13 
-	9 51 13 
-	9 27 22 
-	-9 27 22 
-	-11 54 0 
-	-11 40 5 
-	11 40 5 
-	11 54 0 
-	11 23 11 
-	-11 23 11
-POLYGONS 44
-	200 3 3 2 1 66 186 62 186 62 198
-	200 3 3 1 0 66 186 62 198 66 198
-	200 3 7 6 5 58 186 62 186 62 198
-	200 3 7 5 4 58 186 62 198 58 198
-	200 3 10 9 8 1 201 11 201 11 213
-	200 3 10 8 5 1 201 11 213 1 213
-	200 3 13 12 4 11 187 1 187 1 199
-	200 3 13 4 11 11 187 1 199 11 199
-	200 3 17 16 15 86 186 90 186 90 198
-	200 3 17 15 14 86 186 90 198 86 198
-	200 3 21 20 19 86 186 82 186 82 198
-	200 3 21 19 18 86 186 82 198 86 198
-	200 3 23 21 22 39 201 29 201 29 213
-	200 3 23 22 15 39 201 29 213 39 213
-	200 3 20 25 14 29 187 39 187 39 199
-	200 3 20 14 24 29 187 39 199 29 199
-	200 3 29 28 27 19 246 1 246 1 230
-	200 3 29 27 26 19 246 1 230 19 230
-	200 3 33 32 31 1 215 19 215 19 231
-	200 3 33 31 30 1 215 19 231 1 231
-	200 3 37 36 35 57 200 66 200 66 214
-	200 3 37 35 34 57 200 66 214 57 214
-	200 3 41 40 39 9 246 9 255 0 255
-	200 3 41 39 38 9 246 0 255 0 246
-	200 3 42 43 44 130 210 139 210 139 200
-	200 3 42 44 45 130 210 139 200 130 200
-	200 3 45 44 43 130 200 139 200 139 210
-	200 3 45 43 42 130 200 139 210 130 210
-	200 3 49 48 47 66 200 57 200 57 214
-	200 3 49 47 46 66 200 57 214 66 214
-	200 3 53 52 51 153 215 169 215 169 231
-	200 3 53 51 50 153 215 169 231 153 231
-	200 3 57 56 55 137 197 137 186 126 186
-	200 3 57 55 54 137 197 126 186 126 197
-	200 3 61 60 59 118 186 112 186 112 197
-	200 3 61 59 58 118 186 112 197 118 197
-	200 3 62 61 55 137 186 124 186 127 190
-	200 3 62 55 56 137 186 127 190 137 190
-	200 3 58 63 57 124 186 137 186 137 190
-	200 3 58 57 54 124 186 137 190 127 190
-	200 3 61 58 54 124 186 124 197 118 197
-	200 3 61 54 55 124 186 118 197 118 186
-	200 3 63 62 56 118 197 118 186 112 186
-	200 3 63 56 57 118 197 112 186 112 197
-CONNECTORS 1
-	-16 4 40
-LEVEL 2
-POINTS 62 
-	-4 1 3 
-	-12 1 3 
-	-10 29 1 
-	-2 29 1 
-	-12 -1 -1 
-	-4 -1 -1 
-	-2 27 -3 
-	-10 27 -3 
-	-4 5 13 
-	-2 22 -12 
-	-12 5 13 
-	-10 22 -12 
-	12 2 12 
-	4 2 12 
-	2 26 2 
-	10 26 2 
-	4 2 8 
-	12 2 8 
-	10 26 -6 
-	2 26 -6 
-	4 2 -6 
-	2 26 12 
-	12 2 -6 
-	10 26 12 
-	18 17 12 
-	-18 17 12 
-	-18 46 -2 
-	18 46 -2 
-	-18 13 2 
-	18 13 2 
-	18 42 -12 
-	-18 42 -12 
-	10 15 -4 
-	10 20 10 
-	6 47 1 
-	6 42 -14 
-	-8 40 -13 
-	8 40 -13 
-	8 45 0 
-	-8 45 0 
-	14 9 -1 
-	14 19 14 
-	14 36 4 
-	14 27 -11 
-	-10 20 10 
-	-10 15 -4 
-	-6 42 -14 
-	-6 47 1 
-	-16 0 -22 
-	16 0 -22 
-	16 0 22 
-	-16 0 22 
-	-9 51 12 
-	9 51 12 
-	9 28 22 
-	-9 28 22 
-	-11 52 -1 
-	-11 39 4 
-	11 39 4 
-	11 52 -1 
-	11 22 11 
-	-11 22 11
-POLYGONS 44
-	200 3 3 2 1 74 186 70 186 70 199
-	200 3 3 1 0 74 186 70 199 74 199
-	200 3 7 6 5 66 186 70 186 70 199
-	200 3 7 5 4 66 186 70 199 66 199
-	200 3 9 3 8 12 201 20 201 20 214
-	200 3 9 8 5 12 201 20 214 12 214
-	200 3 2 11 4 20 187 12 187 12 200
-	200 3 2 4 10 20 187 12 200 20 200
-	200 3 15 14 13 94 186 98 186 98 198
-	200 3 15 13 12 94 186 98 198 94 198
-	200 3 19 18 17 94 186 90 186 90 198
-	200 3 19 17 16 94 186 90 198 94 198
-	200 3 21 19 20 49 201 40 201 40 213
-	200 3 21 20 13 49 201 40 213 49 213
-	200 3 18 23 12 40 187 49 187 49 199
-	200 3 18 12 22 40 187 49 199 40 199
-	200 3 27 26 25 19 246 1 246 1 230
-	200 3 27 25 24 19 246 1 230 19 230
-	200 3 31 30 29 1 215 19 215 19 231
-	200 3 31 29 28 1 215 19 231 1 231
-	200 3 35 34 33 57 200 66 200 66 214
-	200 3 35 33 32 57 200 66 214 57 214
-	200 3 39 38 37 9 246 9 255 0 255
-	200 3 39 37 36 9 246 0 255 0 246
-	200 3 40 41 42 130 210 139 210 139 200
-	200 3 40 42 43 130 210 139 200 130 200
-	200 3 43 42 41 130 200 139 200 139 210
-	200 3 43 41 40 130 200 139 210 130 210
-	200 3 47 46 45 66 200 57 200 57 214
-	200 3 47 45 44 66 200 57 214 66 214
-	200 3 51 50 49 153 215 169 215 169 231
-	200 3 51 49 48 153 215 169 231 153 231
-	200 3 55 54 53 137 197 137 186 126 186
-	200 3 55 53 52 137 197 126 186 126 197
-	200 3 59 58 57 118 186 112 186 112 197
-	200 3 59 57 56 118 186 112 197 118 197
-	200 3 60 59 53 137 186 124 186 127 190
-	200 3 60 53 54 137 186 127 190 137 190
-	200 3 56 61 55 124 186 137 186 137 190
-	200 3 56 55 52 124 186 137 190 127 190
-	200 3 59 56 52 124 186 124 197 118 197
-	200 3 59 52 53 124 186 118 197 118 186
-	200 3 61 60 54 118 197 118 186 112 186
-	200 3 61 54 55 118 197 112 186 112 197
-CONNECTORS 1
-	-16 4 40
-LEVEL 3
-POINTS 64 
-	-4 8 16 
-	-12 8 16 
-	-10 28 -1 
-	-2 28 -1 
-	-12 4 9 
-	-4 4 9 
-	-2 24 -8 
-	-10 24 -8 
-	-4 1 4 
-	-2 31 3 
-	-12 1 4 
-	-10 31 3 
-	12 12 19 
-	4 12 19 
-	2 28 -1 
-	10 28 -1 
-	4 6 8 
-	12 6 8 
-	10 25 -6 
-	2 25 -6 
-	4 3 3 
-	2 24 -8 
-	2 33 7 
-	12 3 3 
-	10 33 7 
-	10 24 -8 
-	18 25 6 
-	-18 25 6 
-	-18 56 -6 
-	18 56 -6 
-	-18 23 -3 
-	18 23 -3 
-	18 53 -15 
-	-18 53 -15 
-	10 25 -10 
-	10 29 5 
-	6 57 -2 
-	6 52 -17 
-	-8 50 -17 
-	8 50 -17 
-	8 54 -3 
-	-8 54 -3 
-	14 19 -7 
-	14 27 8 
-	14 45 0 
-	14 38 -16 
-	-10 29 5 
-	-10 25 -10 
-	-6 52 -17 
-	-6 57 -2 
-	-16 0 -16 
-	16 0 -16 
-	16 0 16 
-	-16 0 16 
-	-9 59 9 
-	9 59 9 
-	9 35 17 
-	-9 35 17 
-	-11 62 -4 
-	-11 48 0 
-	11 48 0 
-	11 62 -4 
-	11 31 6 
-	-11 31 6
-POLYGONS 44
-	200 3 3 2 1 82 186 78 186 78 199
-	200 3 3 1 0 82 186 78 199 82 199
-	200 3 7 6 5 74 186 78 186 78 199
-	200 3 7 5 4 74 186 78 199 74 199
-	200 3 6 9 0 21 201 28 201 28 214
-	200 3 6 0 8 21 201 28 214 21 214
-	200 3 11 7 10 28 187 21 187 21 200
-	200 3 11 10 1 28 187 21 200 28 200
-	200 3 15 14 13 102 186 106 186 106 199
-	200 3 15 13 12 102 186 106 199 102 199
-	200 3 19 18 17 102 186 98 186 98 199
-	200 3 19 17 16 102 186 98 199 102 199
-	200 3 22 21 20 57 201 50 201 50 214
-	200 3 22 20 13 57 201 50 214 57 214
-	200 3 25 24 12 50 187 57 187 57 200
-	200 3 25 12 23 50 187 57 200 50 200
-	200 3 29 28 27 19 246 1 246 1 230
-	200 3 29 27 26 19 246 1 230 19 230
-	200 3 33 32 31 1 215 19 215 19 231
-	200 3 33 31 30 1 215 19 231 1 231
-	200 3 37 36 35 57 200 66 200 66 214
-	200 3 37 35 34 57 200 66 214 57 214
-	200 3 41 40 39 9 246 9 255 0 255
-	200 3 41 39 38 9 246 0 255 0 246
-	200 3 42 43 44 130 210 139 210 139 200
-	200 3 42 44 45 130 210 139 200 130 200
-	200 3 45 44 43 130 200 139 200 139 210
-	200 3 45 43 42 130 200 139 210 130 210
-	200 3 49 48 47 66 200 57 200 57 214
-	200 3 49 47 46 66 200 57 214 66 214
-	200 3 53 52 51 153 215 169 215 169 231
-	200 3 53 51 50 153 215 169 231 153 231
-	200 3 57 56 55 137 197 137 186 126 186
-	200 3 57 55 54 137 197 126 186 126 197
-	200 3 61 60 59 118 186 112 186 112 197
-	200 3 61 59 58 118 186 112 197 118 197
-	200 3 62 61 55 137 186 124 186 127 190
-	200 3 62 55 56 137 186 127 190 137 190
-	200 3 58 63 57 124 186 137 186 137 190
-	200 3 58 57 54 124 186 137 190 127 190
-	200 3 61 58 54 124 186 124 197 118 197
-	200 3 61 54 55 124 186 118 197 118 186
-	200 3 63 62 56 118 197 118 186 112 186
-	200 3 63 56 57 118 197 112 186 112 197
-CONNECTORS 1
-	-16 4 40
diff --git a/components/bodies/cybdplnd.pie b/components/bodies/cybdplnd.pie
deleted file mode 100644
index bbebf0c..0000000
--- a/components/bodies/cybdplnd.pie
+++ /dev/null
@@ -1,342 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-14-droid-hubs.png 256 256
-LEVELS 3
-LEVEL 1
-POINTS 64 
-	-4 3 1 
-	-12 3 1 
-	-10 30 -4 
-	-2 30 -4 
-	-12 3 -6 
-	-4 3 -6 
-	-2 30 -12 
-	-10 30 -12 
-	-4 3 -12 
-	-2 30 1 
-	-12 3 -12 
-	-10 30 1 
-	12 5 5 
-	4 5 5 
-	2 30 -4 
-	10 30 -4 
-	4 5 -6 
-	12 5 -6 
-	10 30 -10 
-	2 30 -10 
-	4 5 -12 
-	2 30 -12 
-	2 30 5 
-	12 5 -12 
-	10 30 5 
-	10 30 -12 
-	18 24 1 
-	-18 24 1 
-	-18 56 5 
-	18 56 5 
-	-18 26 -8 
-	18 26 -8 
-	18 59 -3 
-	-18 59 -3 
-	10 32 -13 
-	10 27 2 
-	6 55 9 
-	6 59 -5 
-	-8 57 -6 
-	8 57 -6 
-	8 53 7 
-	-8 53 7 
-	14 26 -13 
-	14 24 4 
-	14 44 6 
-	14 46 -12 
-	-10 27 2 
-	-10 32 -13 
-	-6 59 -5 
-	-6 55 9 
-	-16 0 -16 
-	16 0 -16 
-	16 0 16 
-	-16 0 16 
-	-9 51 20 
-	9 51 20 
-	9 26 16 
-	-9 26 16 
-	-11 60 10 
-	-11 46 7 
-	11 46 7 
-	11 60 10 
-	11 28 4 
-	-11 28 4
-POLYGONS 44
-	200 3 3 2 1 82 186 78 186 78 199
-	200 3 3 1 0 82 186 78 199 82 199
-	200 3 7 6 5 74 186 78 186 78 199
-	200 3 7 5 4 74 186 78 199 74 199
-	200 3 6 9 0 21 201 28 201 28 214
-	200 3 6 0 8 21 201 28 214 21 214
-	200 3 11 7 10 28 187 21 187 21 200
-	200 3 11 10 1 28 187 21 200 28 200
-	200 3 15 14 13 102 186 106 186 106 199
-	200 3 15 13 12 102 186 106 199 102 199
-	200 3 19 18 17 102 186 98 186 98 199
-	200 3 19 17 16 102 186 98 199 102 199
-	200 3 22 21 20 57 201 50 201 50 214
-	200 3 22 20 13 57 201 50 214 57 214
-	200 3 25 24 12 50 187 57 187 57 200
-	200 3 25 12 23 50 187 57 200 50 200
-	200 3 29 28 27 19 246 1 246 1 230
-	200 3 29 27 26 19 246 1 230 19 230
-	200 3 33 32 31 1 215 19 215 19 231
-	200 3 33 31 30 1 215 19 231 1 231
-	200 3 37 36 35 57 200 66 200 66 214
-	200 3 37 35 34 57 200 66 214 57 214
-	200 3 41 40 39 9 246 9 255 0 255
-	200 3 41 39 38 9 246 0 255 0 246
-	200 3 42 43 44 130 210 139 210 139 200
-	200 3 42 44 45 130 210 139 200 130 200
-	200 3 45 44 43 130 200 139 200 139 210
-	200 3 45 43 42 130 200 139 210 130 210
-	200 3 49 48 47 66 200 57 200 57 214
-	200 3 49 47 46 66 200 57 214 66 214
-	200 3 53 52 51 153 215 169 215 169 231
-	200 3 53 51 50 153 215 169 231 153 231
-	200 3 57 56 55 137 197 137 186 126 186
-	200 3 57 55 54 137 197 126 186 126 197
-	200 3 61 60 59 118 186 112 186 112 197
-	200 3 61 59 58 118 186 112 197 118 197
-	200 3 62 61 55 137 186 124 186 127 190
-	200 3 62 55 56 137 186 127 190 137 190
-	200 3 58 63 57 124 186 137 186 137 190
-	200 3 58 57 54 124 186 137 190 127 190
-	200 3 61 58 54 124 186 124 197 118 197
-	200 3 61 54 55 124 186 118 197 118 186
-	200 3 63 62 56 118 197 118 186 112 186
-	200 3 63 56 57 118 197 112 186 112 197
-CONNECTORS 1
-	-16 4 40
-LEVEL 2
-POINTS 62 
-	-4 1 -7 
-	-12 1 -7 
-	-10 27 2 
-	-2 27 2 
-	-12 1 -14 
-	-4 1 -14 
-	-2 27 -3 
-	-10 27 -3 
-	-4 1 2 
-	-2 27 -14 
-	-12 1 2 
-	-10 27 -14 
-	12 -1 0 
-	4 -1 0 
-	2 24 0 
-	10 24 0 
-	4 0 -3 
-	12 0 -3 
-	10 28 -6 
-	2 28 -6 
-	4 6 -16 
-	2 20 9 
-	12 6 -16 
-	10 20 9 
-	18 12 6 
-	-18 12 6 
-	-18 44 4 
-	18 44 4 
-	-18 13 -3 
-	18 13 -3 
-	18 45 -5 
-	-18 45 -5 
-	10 17 -9 
-	10 16 6 
-	6 44 9 
-	6 45 -7 
-	-8 43 -7 
-	8 43 -7 
-	8 42 6 
-	-8 42 6 
-	14 11 -9 
-	14 13 8 
-	14 33 7 
-	14 31 -11 
-	-10 16 6 
-	-10 17 -9 
-	-6 45 -7 
-	-6 44 9 
-	-16 0 -22 
-	16 0 -22 
-	16 0 22 
-	-16 0 22 
-	-9 43 20 
-	9 43 20 
-	9 17 20 
-	-9 17 20 
-	-11 50 8 
-	-11 35 8 
-	11 35 8 
-	11 50 8 
-	11 17 8 
-	-11 17 8
-POLYGONS 44
-	200 3 3 2 1 74 186 70 186 70 199
-	200 3 3 1 0 74 186 70 199 74 199
-	200 3 7 6 5 66 186 70 186 70 199
-	200 3 7 5 4 66 186 70 199 66 199
-	200 3 9 3 8 12 201 20 201 20 214
-	200 3 9 8 5 12 201 20 214 12 214
-	200 3 2 11 4 20 187 12 187 12 200
-	200 3 2 4 10 20 187 12 200 20 200
-	200 3 15 14 13 94 186 98 186 98 198
-	200 3 15 13 12 94 186 98 198 94 198
-	200 3 19 18 17 94 186 90 186 90 198
-	200 3 19 17 16 94 186 90 198 94 198
-	200 3 21 19 20 49 201 40 201 40 213
-	200 3 21 20 13 49 201 40 213 49 213
-	200 3 18 23 12 40 187 49 187 49 199
-	200 3 18 12 22 40 187 49 199 40 199
-	200 3 27 26 25 19 246 1 246 1 230
-	200 3 27 25 24 19 246 1 230 19 230
-	200 3 31 30 29 1 215 19 215 19 231
-	200 3 31 29 28 1 215 19 231 1 231
-	200 3 35 34 33 57 200 66 200 66 214
-	200 3 35 33 32 57 200 66 214 57 214
-	200 3 39 38 37 9 246 9 255 0 255
-	200 3 39 37 36 9 246 0 255 0 246
-	200 3 40 41 42 130 210 139 210 139 200
-	200 3 40 42 43 130 210 139 200 130 200
-	200 3 43 42 41 130 200 139 200 139 210
-	200 3 43 41 40 130 200 139 210 130 210
-	200 3 47 46 45 66 200 57 200 57 214
-	200 3 47 45 44 66 200 57 214 66 214
-	200 3 51 50 49 153 215 169 215 169 231
-	200 3 51 49 48 153 215 169 231 153 231
-	200 3 55 54 53 137 197 137 186 126 186
-	200 3 55 53 52 137 197 126 186 126 197
-	200 3 59 58 57 118 186 112 186 112 197
-	200 3 59 57 56 118 186 112 197 118 197
-	200 3 60 59 53 137 186 124 186 127 190
-	200 3 60 53 54 137 186 127 190 137 190
-	200 3 56 61 55 124 186 137 186 137 190
-	200 3 56 55 52 124 186 137 190 127 190
-	200 3 59 56 52 124 186 124 197 118 197
-	200 3 59 52 53 124 186 118 197 118 186
-	200 3 61 60 54 118 197 118 186 112 186
-	200 3 61 54 55 118 197 112 186 112 197
-CONNECTORS 1
-	-16 4 40
-
-LEVEL 3
-POINTS 64 
-	-4 3 -7 
-	-12 3 -7 
-	-10 29 0 
-	-2 29 0 
-	-12 2 -13 
-	-4 2 -13 
-	-2 28 -5 
-	-10 28 -5 
-	-4 5 6 
-	-2 29 2 
-	-2 26 -17 
-	-12 5 6 
-	-10 26 -17 
-	-10 29 2 
-	12 0 0 
-	4 0 0 
-	2 27 3 
-	10 27 3 
-	4 2 -4 
-	12 2 -4 
-	10 31 -3 
-	2 31 -3 
-	4 11 -17 
-	2 20 13 
-	12 11 -17 
-	10 20 13 
-	18 16 8 
-	-18 16 8 
-	-18 48 4 
-	18 48 4 
-	-18 16 -1 
-	18 16 -1 
-	18 48 -5 
-	-18 48 -5 
-	10 20 -8 
-	10 20 8 
-	6 48 8 
-	6 48 -8 
-	-8 46 -8 
-	8 46 -8 
-	8 46 6 
-	-8 46 6 
-	14 13 -8 
-	14 15 9 
-	14 35 7 
-	14 34 -10 
-	-10 20 8 
-	-10 20 -8 
-	-6 48 -8 
-	-6 48 8 
-	-16 0 -20 
-	16 0 -20 
-	16 0 20 
-	-16 0 20 
-	-9 48 19 
-	9 48 19 
-	9 22 21 
-	-9 22 21 
-	-11 53 6 
-	-11 39 8 
-	11 39 8 
-	11 53 6 
-	11 21 9 
-	-11 21 9
-POLYGONS 44
-	200 3 3 2 1 66 186 62 186 62 198
-	200 3 3 1 0 66 186 62 198 66 198
-	200 3 7 6 5 58 186 62 186 62 198
-	200 3 7 5 4 58 186 62 198 58 198
-	200 3 10 9 8 1 201 11 201 11 213
-	200 3 10 8 5 1 201 11 213 1 213
-	200 3 13 12 4 11 187 1 187 1 199
-	200 3 13 4 11 11 187 1 199 11 199
-	200 3 17 16 15 86 186 90 186 90 198
-	200 3 17 15 14 86 186 90 198 86 198
-	200 3 21 20 19 86 186 82 186 82 198
-	200 3 21 19 18 86 186 82 198 86 198
-	200 3 23 21 22 39 201 29 201 29 213
-	200 3 23 22 15 39 201 29 213 39 213
-	200 3 20 25 14 29 187 39 187 39 199
-	200 3 20 14 24 29 187 39 199 29 199
-	200 3 29 28 27 19 246 1 246 1 230
-	200 3 29 27 26 19 246 1 230 19 230
-	200 3 33 32 31 1 215 19 215 19 231
-	200 3 33 31 30 1 215 19 231 1 231
-	200 3 37 36 35 57 200 66 200 66 214
-	200 3 37 35 34 57 200 66 214 57 214
-	200 3 41 40 39 9 246 9 255 0 255
-	200 3 41 39 38 9 246 0 255 0 246
-	200 3 42 43 44 130 210 139 210 139 200
-	200 3 42 44 45 130 210 139 200 130 200
-	200 3 45 44 43 130 200 139 200 139 210
-	200 3 45 43 42 130 200 139 210 130 210
-	200 3 49 48 47 66 200 57 200 57 214
-	200 3 49 47 46 66 200 57 214 66 214
-	200 3 53 52 51 153 215 169 215 169 231
-	200 3 53 51 50 153 215 169 231 153 231
-	200 3 57 56 55 137 197 137 186 126 186
-	200 3 57 55 54 137 197 126 186 126 197
-	200 3 61 60 59 118 186 112 186 112 197
-	200 3 61 59 58 118 186 112 197 118 197
-	200 3 62 61 55 137 186 124 186 127 190
-	200 3 62 55 56 137 186 127 190 137 190
-	200 3 58 63 57 124 186 137 186 137 190
-	200 3 58 57 54 124 186 137 190 127 190
-	200 3 61 58 54 124 186 124 197 118 197
-	200 3 61 54 55 124 186 118 197 118 186
-	200 3 63 62 56 118 197 118 186 112 186
-	200 3 63 56 57 118 197 112 186 112 197
-CONNECTORS 1
-	-16 4 40
diff --git a/components/bodies/cybdprun.pie b/components/bodies/cybdprun.pie
deleted file mode 100644
index cfdf865..0000000
--- a/components/bodies/cybdprun.pie
+++ /dev/null
@@ -1,270 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-14-droid-hubs.png 256 256
-LEVELS 6
-LEVEL 1
-POINTS 26 
-	12 9 -15 
-	4 9 -15 
-	2 30 2 
-	10 30 2 
-	4 11 -21 
-	12 11 -21 
-	10 31 -3 
-	2 31 -3 
-	4 5 -2 
-	2 34 -15 
-	2 29 4 
-	12 5 -2 
-	10 29 4 
-	10 34 -15 
-	-4 10 19 
-	-12 10 19 
-	-10 30 1 
-	-2 30 1 
-	-12 9 15 
-	-4 9 15 
-	-2 28 -6 
-	-10 28 -6 
-	-4 5 0 
-	-2 34 13 
-	-12 5 0 
-	-10 34 13
-POLYGONS 16
-	200 3 3 2 1 62 186 66 186 66 198
-	200 3 3 1 0 62 186 66 198 62 198
-	200 3 7 6 5 62 186 58 186 58 198
-	200 3 7 5 4 62 186 58 198 62 198
-	200 3 10 9 4 11 201 1 201 1 213
-	200 3 10 4 8 11 201 1 213 11 213
-	200 3 13 12 11 1 187 11 187 11 199
-	200 3 13 11 5 1 187 11 199 1 199
-	200 3 17 16 15 90 186 86 186 86 198
-	200 3 17 15 14 90 186 86 198 90 198
-	200 3 21 20 19 82 186 86 186 86 198
-	200 3 21 19 18 82 186 86 198 82 198
-	200 3 20 23 14 29 201 39 201 39 213
-	200 3 20 14 22 29 201 39 213 29 213
-	200 3 25 21 24 39 187 29 187 29 199
-	200 3 25 24 15 39 187 29 199 39 199
-LEVEL 2
-POINTS 24 
-	12 0 -10 
-	4 0 -10 
-	2 23 3 
-	10 23 3 
-	4 0 -16 
-	12 0 -16 
-	10 24 -2 
-	2 24 -2 
-	4 -2 0 
-	2 26 -12 
-	12 -2 0 
-	10 26 -12 
-	-4 2 16 
-	-12 2 16 
-	-10 24 2 
-	-2 24 2 
-	-12 1 12 
-	-4 1 12 
-	-2 23 -5 
-	-10 23 -5 
-	-4 0 -1 
-	-2 26 12 
-	-12 0 -1 
-	-10 26 12
-POLYGONS 16
-	200 3 3 2 1 70 186 74 186 74 199
-	200 3 3 1 0 70 186 74 199 70 199
-	200 3 7 6 5 70 186 66 186 66 199
-	200 3 7 5 4 70 186 66 199 70 199
-	200 3 2 9 4 20 201 12 201 12 214
-	200 3 2 4 8 20 201 12 214 20 214
-	200 3 11 3 10 12 187 20 187 20 200
-	200 3 11 10 5 12 187 20 200 12 200
-	200 3 15 14 13 98 186 94 186 94 198
-	200 3 15 13 12 98 186 94 198 98 198
-	200 3 19 18 17 90 186 94 186 94 198
-	200 3 19 17 16 90 186 94 198 90 198
-	200 3 18 21 12 40 201 49 201 49 213
-	200 3 18 12 20 40 201 49 213 40 213
-	200 3 23 19 22 49 187 40 187 40 199
-	200 3 23 22 13 49 187 40 199 49 199
-LEVEL 3
-POINTS 26 
-	12 0 8 
-	4 0 8 
-	2 26 2 
-	10 26 2 
-	4 0 0 
-	12 0 0 
-	10 26 -6 
-	2 26 -6 
-	4 0 -6 
-	2 26 8 
-	12 0 -6 
-	10 26 8 
-	-4 2 12 
-	-12 2 12 
-	-10 26 2 
-	-2 26 2 
-	-12 2 0 
-	-4 2 0 
-	-2 26 -4 
-	-10 26 -4 
-	-4 2 -6 
-	-2 26 12 
-	-2 26 -6 
-	-12 2 -6 
-	-10 26 -6 
-	-10 26 12
-POLYGONS 16
-	200 3 3 2 1 78 186 82 186 82 199
-	200 3 3 1 0 78 186 82 199 78 199
-	200 3 7 6 5 78 186 74 186 74 199
-	200 3 7 5 4 78 186 74 199 78 199
-	200 3 9 7 8 28 201 21 201 21 214
-	200 3 9 8 1 28 201 21 214 28 214
-	200 3 6 11 0 21 187 28 187 28 200
-	200 3 6 0 10 21 187 28 200 21 200
-	200 3 15 14 13 106 186 102 186 102 199
-	200 3 15 13 12 106 186 102 199 106 199
-	200 3 19 18 17 98 186 102 186 102 199
-	200 3 19 17 16 98 186 102 199 98 199
-	200 3 22 21 12 50 201 57 201 57 214
-	200 3 22 12 20 50 201 57 214 50 214
-	200 3 25 24 23 57 187 50 187 50 200
-	200 3 25 23 13 57 187 50 200 57 200
-LEVEL 4
-POINTS 26 
-	-4 9 -15 
-	-12 9 -15 
-	-10 30 2 
-	-2 30 2 
-	-12 11 -21 
-	-4 11 -21 
-	-2 31 -3 
-	-10 31 -3 
-	-4 5 -2 
-	-2 29 4 
-	-2 34 -15 
-	-12 5 -2 
-	-10 34 -15 
-	-10 29 4 
-	12 10 19 
-	4 10 19 
-	2 30 1 
-	10 30 1 
-	4 9 15 
-	12 9 15 
-	10 28 -6 
-	2 28 -6 
-	4 5 0 
-	2 34 13 
-	12 5 0 
-	10 34 13
-POLYGONS 16
-	200 3 3 2 1 66 186 62 186 62 198
-	200 3 3 1 0 66 186 62 198 66 198
-	200 3 7 6 5 58 186 62 186 62 198
-	200 3 7 5 4 58 186 62 198 58 198
-	200 3 10 9 8 1 201 11 201 11 213
-	200 3 10 8 5 1 201 11 213 1 213
-	200 3 13 12 4 11 187 1 187 1 199
-	200 3 13 4 11 11 187 1 199 11 199
-	200 3 17 16 15 86 186 90 186 90 198
-	200 3 17 15 14 86 186 90 198 86 198
-	200 3 21 20 19 86 186 82 186 82 198
-	200 3 21 19 18 86 186 82 198 86 198
-	200 3 23 21 22 39 201 29 201 29 213
-	200 3 23 22 15 39 201 29 213 39 213
-	200 3 20 25 14 29 187 39 187 39 199
-	200 3 20 14 24 29 187 39 199 29 199
-LEVEL 5
-POINTS 24 
-	-4 0 -10 
-	-12 0 -10 
-	-10 23 3 
-	-2 23 3 
-	-12 0 -16 
-	-4 0 -16 
-	-2 24 -2 
-	-10 24 -2 
-	-4 -2 0 
-	-2 26 -12 
-	-12 -2 0 
-	-10 26 -12 
-	12 2 16 
-	4 2 16 
-	2 24 2 
-	10 24 2 
-	4 1 12 
-	12 1 12 
-	10 23 -5 
-	2 23 -5 
-	4 0 -1 
-	2 26 12 
-	12 0 -1 
-	10 26 12
-POLYGONS 16
-	200 3 3 2 1 74 186 70 186 70 199
-	200 3 3 1 0 74 186 70 199 74 199
-	200 3 7 6 5 66 186 70 186 70 199
-	200 3 7 5 4 66 186 70 199 66 199
-	200 3 9 3 8 12 201 20 201 20 214
-	200 3 9 8 5 12 201 20 214 12 214
-	200 3 2 11 4 20 187 12 187 12 200
-	200 3 2 4 10 20 187 12 200 20 200
-	200 3 15 14 13 94 186 98 186 98 198
-	200 3 15 13 12 94 186 98 198 94 198
-	200 3 19 18 17 94 186 90 186 90 198
-	200 3 19 17 16 94 186 90 198 94 198
-	200 3 21 19 20 49 201 40 201 40 213
-	200 3 21 20 13 49 201 40 213 49 213
-	200 3 18 23 12 40 187 49 187 49 199
-	200 3 18 12 22 40 187 49 199 40 199
-LEVEL 6
-POINTS 26 
-	-4 0 8 
-	-12 0 8 
-	-10 26 2 
-	-2 26 2 
-	-12 0 0 
-	-4 0 0 
-	-2 26 -6 
-	-10 26 -6 
-	-4 0 -6 
-	-2 26 8 
-	-12 0 -6 
-	-10 26 8 
-	12 2 12 
-	4 2 12 
-	2 26 2 
-	10 26 2 
-	4 2 0 
-	12 2 0 
-	10 26 -4 
-	2 26 -4 
-	4 2 -6 
-	2 26 -6 
-	2 26 12 
-	12 2 -6 
-	10 26 12 
-	10 26 -6
-POLYGONS 16
-	200 3 3 2 1 82 186 78 186 78 199
-	200 3 3 1 0 82 186 78 199 82 199
-	200 3 7 6 5 74 186 78 186 78 199
-	200 3 7 5 4 74 186 78 199 74 199
-	200 3 6 9 0 21 201 28 201 28 214
-	200 3 6 0 8 21 201 28 214 21 214
-	200 3 11 7 10 28 187 21 187 21 200
-	200 3 11 10 1 28 187 21 200 28 200
-	200 3 15 14 13 102 186 106 186 106 199
-	200 3 15 13 12 102 186 106 199 102 199
-	200 3 19 18 17 102 186 98 186 98 199
-	200 3 19 17 16 102 186 98 199 102 199
-	200 3 22 21 20 57 201 50 201 50 214
-	200 3 22 20 13 57 201 50 214 57 214
-	200 3 25 24 12 50 187 57 187 57 200
-	200 3 25 12 23 50 187 57 200 50 200
\ No newline at end of file
diff --git a/components/bodies/cybdpstd.pie b/components/bodies/cybdpstd.pie
deleted file mode 100644
index 2037b14..0000000
--- a/components/bodies/cybdpstd.pie
+++ /dev/null
@@ -1,51 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-14-droid-hubs.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 26 
-	12 0 8 
-	4 0 8 
-	2 26 2 
-	10 26 2 
-	4 0 0 
-	12 0 0 
-	10 26 -6 
-	2 26 -6 
-	4 0 -6 
-	2 26 8 
-	12 0 -6 
-	10 26 8 
-	-4 2 12 
-	-12 2 12 
-	-10 26 2 
-	-2 26 2 
-	-12 2 0 
-	-4 2 0 
-	-2 26 -4 
-	-10 26 -4 
-	-4 2 -6 
-	-2 26 12 
-	-2 26 -6 
-	-12 2 -6 
-	-10 26 -6 
-	-10 26 12
-POLYGONS 16
-	200 3 3 2 1 78 186 82 186 82 199
-	200 3 3 1 0 78 186 82 199 78 199
-	200 3 7 6 5 78 186 74 186 74 199
-	200 3 7 5 4 78 186 74 199 78 199
-	200 3 9 7 8 28 201 21 201 21 214
-	200 3 9 8 1 28 201 21 214 28 214
-	200 3 6 11 0 21 187 28 187 28 200
-	200 3 6 0 10 21 187 28 200 21 200
-	200 3 15 14 13 106 186 102 186 102 199
-	200 3 15 13 12 106 186 102 199 106 199
-	200 3 19 18 17 98 186 102 186 102 199
-	200 3 19 17 16 98 186 102 199 98 199
-	200 3 22 21 12 50 201 57 201 57 214
-	200 3 22 12 20 50 201 57 214 50 214
-	200 3 25 24 23 57 187 50 187 50 200
-	200 3 25 23 13 57 187 50 200 57 200
-CONNECTORS 1
-	0 0 0
diff --git a/components/bodies/drhbod09.pie b/components/bodies/drhbod09.pie
deleted file mode 100644
index 97606d5..0000000
--- a/components/bodies/drhbod09.pie
+++ /dev/null
@@ -1,54 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-14-droid-hubs.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 14 
-	8 9 -47 
-	12 15 -46 
-	-12 15 -46 
-	-9 9 -47 
-	9 27 -37 
-	-9 27 -37 
-	15 35 -16 
-	-15 35 -16 
-	-7 35 47 
-	8 35 47 
-	-19 17 -15 
-	-19 20 33 
-	19 17 -15 
-	19 20 33
-POLYGONS 24
-	200 3 3 2 1 4 103 2 109 19 109
-	200 3 3 1 0 4 103 19 109 16 103
-	200 3 5 4 1 4 118 17 118 19 109
-	200 3 5 1 2 4 118 19 109 2 109
-	200 3 7 6 4 216 57 238 57 233 48
-	200 3 7 4 5 216 57 233 48 222 48
-	200 3 9 6 7 232 81 238 57 216 57
-	200 3 9 7 8 232 81 216 57 222 81
-	200 3 2 11 10 4 120 1 140 0 128
-	200 3 13 1 12 17 140 14 120 18 128
-	200 3 11 0 13 0 140 13 120 18 140
-	200 3 0 11 3 13 120 0 140 5 120
-	200 3 7 5 2 254 102 251 92 244 88
-	200 3 7 2 10 254 102 244 88 244 102
-	200 3 8 7 10 252 130 254 102 244 102
-	200 3 8 10 11 252 130 244 102 244 124
-	200 3 3 11 2 239 87 244 124 244 88
-	200 3 9 8 11 203 27 194 27 188 41
-	200 3 9 11 13 203 27 188 41 209 41
-	200 3 6 9 13 254 102 252 130 244 124
-	200 3 6 13 12 254 102 244 124 244 102
-	200 3 4 6 12 251 92 254 102 244 102
-	200 3 4 12 1 251 92 244 102 244 88
-	200 3 13 0 1 244 124 240 87 244 88
-CONNECTORS 8
-	0 23 35
-	0 -33 25
-	0 23 55
-	0 0 0
-	0 0 0
-	0 -33 9
-	0 23 9
-	0 23 -11
diff --git a/components/bodies/drhbod10.pie b/components/bodies/drhbod10.pie
deleted file mode 100644
index 38e47b8..0000000
--- a/components/bodies/drhbod10.pie
+++ /dev/null
@@ -1,66 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-14-droid-hubs.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 20 
-	11 4 -38 
-	-11 4 -38 
-	-11 23 -38 
-	11 23 -38 
-	-9 4 -67 
-	9 4 -67 
-	-9 10 -67 
-	9 10 -67 
-	19 26 -25 
-	-19 26 -26 
-	-9 20 -38 
-	9 20 -38 
-	19 26 50 
-	-19 26 50 
-	19 11 -25 
-	9 4 -38 
-	19 11 50 
-	-19 11 50 
-	-19 11 -26 
-	-9 4 -38
-POLYGONS 30
-	200 3 3 2 1 128 26 110 16 110 16
-	200 3 3 1 0 128 26 110 16 128 26
-	200 3 5 0 1 155 37 153 47 169 47
-	200 3 5 1 4 155 37 169 47 167 37
-	200 3 2 3 7 101 51 112 51 111 66
-	200 3 2 7 6 101 51 111 66 102 66
-	200 3 7 3 0 118 66 111 51 120 51
-	200 3 7 0 5 118 66 120 51 120 66
-	200 3 2 6 4 112 49 118 65 120 65
-	200 3 2 4 1 112 49 120 65 120 49
-	200 3 11 10 9 80 63 70 63 64 57
-	200 3 11 9 8 80 63 64 57 86 57
-	200 3 8 9 13 86 57 64 57 64 16
-	200 3 8 13 12 86 57 64 16 86 16
-	200 3 15 11 8 100 63 94 63 87 56
-	200 3 15 8 14 100 63 87 56 97 56
-	200 3 14 8 12 97 56 87 56 87 16
-	200 3 14 12 16 97 56 87 16 97 16
-	200 3 9 18 17 86 56 98 56 98 16
-	200 3 9 17 13 86 56 98 16 86 16
-	200 3 10 19 18 94 62 100 62 98 56
-	200 3 10 18 9 94 62 98 56 86 56
-	200 3 16 12 13 131 16 131 28 110 28
-	200 3 16 13 17 131 16 110 28 110 16
-	200 3 6 7 5 111 60 102 60 102 65
-	200 3 6 5 4 111 60 102 65 111 65
-	200 3 18 14 16 153 39 169 39 169 47
-	200 3 18 16 17 153 39 169 47 153 47
-	200 3 19 15 14 157 37 164 37 169 39
-	200 3 19 14 18 157 37 169 39 153 39
-CONNECTORS 8
-	0 32 27
-	0 -52 17
-	0 32 47
-	0 0 0
-	0 0 0
-	0 -52 3
-	0 32 3
-	0 32 -17
diff --git a/components/bodies/drhbod11.pie b/components/bodies/drhbod11.pie
deleted file mode 100644
index 5fe93c8..0000000
--- a/components/bodies/drhbod11.pie
+++ /dev/null
@@ -1,54 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-14-droid-hubs.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 14 
-	-20 31 37 
-	19 31 37 
-	19 23 51 
-	-20 23 51 
-	-20 31 -22 
-	-20 23 -51 
-	-20 10 36 
-	-20 10 -33 
-	-20 17 -51 
-	19 23 -51 
-	19 17 -51 
-	19 31 -22 
-	19 10 36 
-	19 10 -33
-POLYGONS 24
-	200 3 3 2 1 35 67 59 67 59 60
-	200 3 3 1 0 35 67 59 60 35 60
-	200 3 5 3 0 209 49 209 92 215 86
-	200 3 5 0 4 209 49 215 86 215 61
-	200 3 7 6 3 201 56 201 86 209 92
-	200 3 7 3 5 201 56 209 92 209 49
-	200 3 5 8 7 209 49 206 49 201 56
-	200 3 10 8 5 148 58 121 58 121 61
-	200 3 10 5 9 148 58 121 61 148 61
-	200 3 9 5 4 175 49 149 49 149 63
-	200 3 9 4 11 175 49 149 63 175 63
-	200 3 0 1 11 22 92 48 92 48 68
-	200 3 0 11 4 22 92 48 68 22 68
-	200 3 6 12 2 147 58 123 58 123 49
-	200 3 6 2 3 147 58 123 49 147 49
-	200 3 8 10 13 121 73 148 73 148 62
-	200 3 8 13 7 121 73 148 62 121 62
-	200 3 7 13 12 209 27 188 27 188 44
-	200 3 7 12 6 209 27 188 44 209 44
-	200 3 2 9 11 186 91 186 48 181 60
-	200 3 2 11 1 186 91 181 60 181 85
-	200 3 12 13 9 196 84 196 55 186 48
-	200 3 12 9 2 196 84 186 48 186 91
-	200 3 9 13 10 186 48 196 55 191 48
-CONNECTORS 8
-	0 12 34
-	0 -29 24
-	0 12 54
-	0 0 0
-	0 0 0
-	0 -29 9
-	0 12 9
-	0 12 -11
diff --git a/components/bodies/drhbod12.pie b/components/bodies/drhbod12.pie
deleted file mode 100644
index e71a421..0000000
--- a/components/bodies/drhbod12.pie
+++ /dev/null
@@ -1,66 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-14-droid-hubs.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 18 
-	19 19 46 
-	-19 19 46 
-	-12 31 21 
-	12 31 21 
-	-10 26 -46 
-	-15 19 -46 
-	14 19 -46 
-	9 26 -46 
-	-10 13 -38 
-	9 13 -38 
-	12 10 21 
-	-12 10 21 
-	-12 9 -29 
-	-19 19 -29 
-	-12 33 -29 
-	12 9 -29 
-	12 33 -29 
-	19 19 -29
-POLYGONS 32
-	200 3 3 2 1 4 37 21 37 25 51
-	200 3 3 1 0 4 37 25 51 0 51
-	200 3 7 6 5 191 26 188 21 207 21
-	200 3 7 5 4 191 26 207 21 204 26
-	200 3 6 9 8 188 21 191 18 204 18
-	200 3 6 8 5 188 21 204 18 207 21
-	200 3 0 1 11 0 66 24 66 20 52
-	200 3 0 11 10 0 66 20 52 4 52
-	200 3 1 13 12 247 82 247 40 239 40
-	200 3 1 12 11 247 82 239 40 240 67
-	200 3 2 14 13 253 67 255 40 247 40
-	200 3 2 13 1 253 67 247 40 247 82
-	200 3 4 5 13 251 31 247 31 247 40
-	200 3 4 13 14 251 31 247 40 255 40
-	200 3 8 12 13 243 36 239 40 247 40
-	200 3 8 13 5 243 36 247 40 247 31
-	200 3 15 10 11 210 31 209 45 221 45
-	200 3 15 11 12 210 31 221 45 220 31
-	200 3 15 12 8 210 31 220 31 219 29
-	200 3 15 8 9 210 31 219 29 211 29
-	200 3 2 3 16 20 102 1 102 1 77
-	200 3 2 16 14 20 102 1 77 19 77
-	200 3 16 7 4 1 77 3 69 17 69
-	200 3 16 4 14 1 77 17 69 19 77
-	200 3 17 0 10 247 40 247 82 240 67
-	200 3 17 10 15 247 40 240 67 240 40
-	200 3 16 3 0 254 40 253 67 247 82
-	200 3 16 0 17 254 40 247 82 247 40
-	200 3 7 16 17 251 31 254 40 247 40
-	200 3 7 17 6 251 31 247 40 247 31
-	200 3 15 9 6 240 40 243 36 247 31
-	200 3 15 6 17 240 40 247 31 247 40
-CONNECTORS 8
-	0 -2 34
-	0 -32 9
-	0 -32 24
-	0 0 0
-	0 0 0
-	0 -2 4
-	0 -32 4
-	0 -32 -16
diff --git a/components/bodies/drhbod14.pie b/components/bodies/drhbod14.pie
deleted file mode 100644
index 5f7aaea..0000000
--- a/components/bodies/drhbod14.pie
+++ /dev/null
@@ -1,92 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-14-droid-hubs.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 28 
-	-19 45 52 
-	-19 29 45 
-	-41 29 45 
-	19 45 52 
-	19 29 45 
-	41 29 45 
-	-19 14 -44 
-	19 14 -44 
-	19 29 -68 
-	-19 29 -68 
-	-41 29 -44 
-	-19 45 -37 
-	19 45 -37 
-	41 29 -44 
-	-19 14 38 
-	19 14 38 
-	50 41 51 
-	28 57 58 
-	28 57 21 
-	50 42 14 
-	41 29 8 
-	19 45 16 
-	-28 57 58 
-	-50 41 51 
-	-50 42 14 
-	-28 57 21 
-	-19 45 16 
-	-41 29 8
-POLYGONS 48
-	200 3 2 1 0 214 214 214 204 222 204
-	200 3 4 3 0 251 231 251 237 226 237
-	200 3 4 0 1 251 231 226 237 226 231
-	200 3 3 4 5 222 204 214 204 214 214
-	200 3 9 8 7 226 237 251 237 251 225
-	200 3 9 7 6 226 237 251 225 226 225
-	200 3 11 9 10 214 219 226 204 226 219
-	200 3 11 12 8 214 240 189 240 189 256
-	200 3 11 8 9 214 240 189 256 214 256
-	200 3 13 8 12 226 219 226 204 214 219
-	200 3 6 7 15 256 225 256 219 226 219
-	200 3 6 15 14 256 225 226 219 226 225
-	200 3 19 18 17 189 204 189 194 211 194
-	200 3 19 17 16 189 204 211 194 211 204
-	200 3 13 12 21 226 219 214 219 214 256
-	200 3 13 21 20 226 219 214 256 226 256
-	200 3 25 24 23 189 194 189 204 211 204
-	200 3 25 23 22 189 194 211 204 211 194
-	200 3 11 10 27 214 219 226 219 226 256
-	200 3 11 27 26 214 219 226 256 214 256
-	200 3 8 13 5 256 219 249 225 226 225
-	200 3 8 5 4 256 219 226 225 226 219
-	200 3 10 9 1 249 225 256 219 226 219
-	200 3 10 1 2 249 225 226 219 226 225
-	200 3 9 6 14 251 225 246 237 226 237
-	200 3 9 14 1 251 225 226 237 226 225
-	200 3 7 8 4 246 237 251 225 226 225
-	200 3 7 4 15 246 237 226 225 226 237
-	200 3 15 4 1 251 225 251 231 226 231
-	200 3 15 1 14 251 225 226 231 226 225
-	200 3 22 23 2 211 194 211 204 220 204
-	200 3 22 2 0 211 194 220 204 220 194
-	200 3 16 17 3 211 204 211 194 220 194
-	200 3 16 3 5 211 204 220 194 220 204
-	200 3 17 18 21 253 247 231 247 231 256
-	200 3 17 21 3 253 247 231 256 253 256
-	200 3 18 19 20 211 194 211 204 220 204
-	200 3 18 20 21 211 194 220 204 220 194
-	200 3 19 16 5 231 247 253 247 253 256
-	200 3 19 5 20 231 247 253 256 231 256
-	200 3 25 22 0 231 247 253 247 253 256
-	200 3 25 0 26 231 247 253 256 231 256
-	200 3 23 24 27 253 247 231 247 231 256
-	200 3 23 27 2 253 247 231 256 253 256
-	200 3 24 25 26 211 204 211 194 220 194
-	200 3 24 26 27 211 204 220 194 220 204
-	200 3 0 3 12 214 256 189 256 189 204
-	200 3 0 12 11 214 256 189 204 214 204
-CONNECTORS 8
-	0 35 47
-	0 -21 47
-	0 -2 65
-	0 0 0
-	0 0 0
-	0 -37 13
-	0 -2 13
-	0 -2 -7
diff --git a/components/bodies/drlbod01.pie b/components/bodies/drlbod01.pie
deleted file mode 100644
index 79e42c7..0000000
--- a/components/bodies/drlbod01.pie
+++ /dev/null
@@ -1,48 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-14-droid-hubs.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 12 
-	-7 9 -34 
-	7 9 -34 
-	7 14 -34 
-	-7 14 -34 
-	-11 22 26 
-	-14 9 28 
-	-14 9 -14 
-	-11 22 -14 
-	10 22 -14 
-	10 22 26 
-	13 9 28 
-	13 9 -14
-POLYGONS 20
-	200 3 3 2 1 35 3 51 3 51 10
-	200 3 3 1 0 35 3 51 10 35 10
-	200 3 7 6 5 38 24 26 24 26 0
-	200 3 7 5 4 38 24 26 0 38 1
-	200 3 0 6 7 26 35 26 24 38 24
-	200 3 7 3 0 38 24 31 35 26 35
-	200 3 2 3 7 12 36 2 36 0 25
-	200 3 2 7 8 12 36 0 25 14 25
-	200 3 10 9 4 51 10 52 0 62 0
-	200 3 10 4 5 51 10 62 0 63 10
-	200 3 6 11 10 26 24 14 24 14 0
-	200 3 6 10 5 26 24 14 0 26 0
-	200 3 0 1 11 23 35 17 35 14 24
-	200 3 0 11 6 23 35 14 24 26 24
-	200 3 8 7 4 13 24 1 24 1 1
-	200 3 8 4 9 13 24 1 1 13 1
-	200 3 11 8 9 26 24 38 24 38 1
-	200 3 11 9 10 26 24 38 1 26 0
-	200 3 1 2 8 26 35 31 35 38 24
-	200 3 1 8 11 26 35 38 24 26 24
-CONNECTORS 8
-	0 10 23
-	0 -25 13
-	0 10 43
-	0 0 0
-	0 0 0
-	0 -25 9
-	0 10 9
-	0 10 -11
diff --git a/components/bodies/drlbod02.pie b/components/bodies/drlbod02.pie
deleted file mode 100644
index c43279d..0000000
--- a/components/bodies/drlbod02.pie
+++ /dev/null
@@ -1,48 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-14-droid-hubs.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 12 
-	9 27 38 
-	-9 27 38 
-	-14 27 0 
-	14 27 0 
-	-6 16 33 
-	7 16 33 
-	12 10 0 
-	-12 10 0 
-	-8 21 -27 
-	9 21 -27 
-	-4 11 -31 
-	4 11 -31
-POLYGONS 20
-	200 3 3 2 1 49 85 49 67 69 71
-	200 3 3 1 0 49 85 69 71 69 82
-	200 3 7 6 5 60 67 60 63 81 64
-	200 3 7 5 4 60 67 81 64 81 66
-	200 3 9 8 2 72 81 72 72 88 68
-	200 3 9 2 3 72 81 88 68 88 85
-	200 3 8 9 11 97 64 97 73 88 71
-	200 3 8 11 10 97 64 88 71 88 66
-	200 3 11 9 3 48 94 51 88 69 85
-	200 3 11 3 6 48 94 69 85 69 94
-	200 3 3 0 5 70 85 47 85 50 91
-	200 3 3 5 6 70 85 50 91 70 94
-	200 3 2 7 4 70 85 70 94 50 91
-	200 3 2 4 1 70 85 50 91 47 85
-	200 3 2 8 10 69 85 51 88 48 94
-	200 3 2 10 7 69 85 48 94 69 94
-	200 3 0 1 4 87 73 87 85 100 84
-	200 3 0 4 5 87 73 100 84 100 75
-	200 3 10 11 6 218 129 218 130 239 131
-	200 3 10 6 7 218 129 239 131 239 127
-CONNECTORS 8
-	0 20 27
-	0 -25 17
-	0 20 47
-	0 0 0
-	0 0 0
-	0 -25 10
-	0 20 10
-	0 20 -10
diff --git a/components/bodies/drlbod03.pie b/components/bodies/drlbod03.pie
deleted file mode 100644
index 8449a14..0000000
--- a/components/bodies/drlbod03.pie
+++ /dev/null
@@ -1,72 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-14-droid-hubs.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 20 
-	13 10 37 
-	13 24 37 
-	13 25 16 
-	13 10 16 
-	13 29 -1 
-	13 10 -1 
-	11 29 -22 
-	11 10 -22 
-	7 24 -42 
-	7 10 -42 
-	-14 10 37 
-	-14 10 16 
-	-14 25 16 
-	-14 24 37 
-	-14 10 -1 
-	-14 29 -1 
-	-12 10 -22 
-	-12 29 -22 
-	-7 10 -42 
-	-7 24 -42
-POLYGONS 36
-	200 3 3 2 1 163 1 163 12 173 12
-	200 3 3 1 0 163 1 173 12 173 2
-	200 3 5 4 2 155 0 155 15 163 12
-	200 3 5 2 3 155 0 163 12 163 1
-	200 3 7 6 4 145 0 145 15 155 15
-	200 3 7 4 5 145 0 155 15 155 0
-	200 3 9 8 6 136 3 136 12 145 15
-	200 3 9 6 7 136 3 145 15 145 0
-	200 3 13 12 11 173 12 163 12 163 1
-	200 3 13 11 10 173 12 163 1 173 2
-	200 3 12 15 14 163 12 155 15 155 0
-	200 3 12 14 11 163 12 155 0 163 1
-	200 3 15 17 16 155 15 145 15 145 0
-	200 3 15 16 14 155 15 145 0 155 0
-	200 3 17 19 18 145 15 136 11 136 3
-	200 3 17 18 16 145 15 136 3 145 0
-	200 3 10 11 3 100 0 110 0 110 16
-	200 3 10 3 0 100 0 110 16 100 16
-	200 3 11 14 5 110 0 117 0 117 16
-	200 3 11 5 3 110 0 117 16 110 16
-	200 3 14 16 7 117 0 126 1 126 15
-	200 3 14 7 5 117 0 126 15 117 16
-	200 3 16 18 9 126 1 134 4 134 12
-	200 3 16 9 7 126 1 134 12 126 15
-	200 3 18 19 8 174 5 184 5 184 14
-	200 3 18 8 9 174 5 184 14 174 14
-	200 3 19 17 6 64 4 73 1 73 15
-	200 3 19 6 8 64 4 73 15 64 12
-	200 3 17 15 4 73 1 83 0 83 16
-	200 3 17 4 6 73 1 83 16 73 15
-	200 3 15 12 2 83 0 91 0 91 16
-	200 3 15 2 4 83 0 91 16 83 16
-	200 3 12 13 1 91 0 100 0 100 16
-	200 3 12 1 2 91 0 100 16 91 16
-	200 3 13 10 0 184 0 173 0 173 16
-	200 3 13 0 1 184 0 173 16 184 16
-CONNECTORS 8
-	0 -12 29
-	0 -33 19
-	0 -12 49
-	0 0 0
-	0 0 0
-	0 -33 8
-	0 -12 8
-	0 -12 -12
diff --git a/components/bodies/drlbod04.pie b/components/bodies/drlbod04.pie
deleted file mode 100644
index a6e6c82..0000000
--- a/components/bodies/drlbod04.pie
+++ /dev/null
@@ -1,54 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-14-droid-hubs.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 14 
-	14 18 -19 
-	9 10 -12 
-	10 10 26 
-	14 17 23 
-	10 26 20 
-	9 26 -13 
-	-10 26 20 
-	-9 26 -13 
-	-14 18 -19 
-	3 18 -43 
-	-3 18 -43 
-	-9 10 -12 
-	-10 10 26 
-	-14 17 23
-POLYGONS 24
-	200 3 3 2 1 87 102 88 108 65 108
-	200 3 3 1 0 87 102 65 108 60 102
-	200 3 0 5 4 60 102 64 95 85 94
-	200 3 0 4 3 60 102 85 94 87 102
-	200 3 7 6 4 149 81 173 81 173 100
-	200 3 7 4 5 149 81 173 100 149 100
-	200 3 9 0 8 177 65 178 73 178 53
-	200 3 10 9 8 177 61 177 65 178 53
-	200 3 10 8 7 107 101 116 101 118 96
-	200 3 9 10 7 178 110 178 116 190 122
-	200 3 9 7 5 178 110 190 122 190 103
-	200 3 5 0 9 118 96 116 101 107 101
-	200 3 8 0 1 178 53 178 73 177 70
-	200 3 8 1 11 178 53 177 70 177 56
-	200 3 13 8 11 87 102 60 102 65 108
-	200 3 13 11 12 87 102 65 108 88 108
-	200 3 7 8 13 64 95 60 102 87 102
-	200 3 7 13 6 64 95 87 102 85 94
-	200 3 11 2 12 143 101 166 102 166 101
-	200 3 1 2 11 143 102 166 102 143 101
-	200 3 13 3 4 172 123 172 102 167 105
-	200 3 13 4 6 172 123 167 105 167 120
-	200 3 12 2 3 176 120 176 105 172 102
-	200 3 12 3 13 176 120 172 102 172 123
-CONNECTORS 8
-	0 8 26
-	0 -33 16
-	0 8 46
-	0 0 0
-	0 0 0
-	0 -33 17
-	0 8 17
-	0 8 -3
diff --git a/components/bodies/drmbod05.pie b/components/bodies/drmbod05.pie
deleted file mode 100644
index 5c19ad0..0000000
--- a/components/bodies/drmbod05.pie
+++ /dev/null
@@ -1,76 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-14-droid-hubs.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 24 
-	-17 9 -28 
-	-17 9 41 
-	17 9 41 
-	17 9 -28 
-	11 22 22 
-	17 21 32 
-	-17 21 32 
-	-11 22 22 
-	-11 30 -21 
-	11 30 -21 
-	11 30 12 
-	-11 30 12 
-	-10 23 24 
-	-10 29 25 
-	-10 28 30 
-	-10 23 30 
-	10 23 24 
-	10 23 30 
-	10 28 30 
-	10 29 25 
-	17 21 11 
-	-17 21 11 
-	-17 21 -38 
-	17 21 -38
-POLYGONS 36
-	200 3 3 2 1 178 102 191 102 191 94
-	200 3 3 1 0 178 102 191 94 178 94
-	200 3 7 6 5 224 32 231 29 231 46
-	200 3 7 5 4 224 32 231 46 224 43
-	200 3 11 10 9 51 94 51 111 33 111
-	200 3 11 9 8 51 94 33 111 33 94
-	200 3 15 14 13 173 42 174 42 175 42
-	200 3 15 13 12 173 42 175 42 177 42
-	200 3 19 18 17 175 34 174 34 173 34
-	200 3 19 17 16 175 34 173 34 172 34
-	200 3 17 18 14 173 34 174 34 174 42
-	200 3 17 14 15 173 34 174 42 173 42
-	200 3 18 19 13 174 34 175 34 175 42
-	200 3 18 13 14 174 34 175 42 174 42
-	200 3 19 16 12 175 34 177 34 177 42
-	200 3 19 12 13 175 34 177 42 175 42
-	200 3 20 10 4 231 46 231 43 224 43
-	200 3 7 11 21 224 32 231 32 231 29
-	200 3 10 11 7 231 43 231 32 224 32
-	200 3 10 7 4 231 43 224 32 224 43
-	200 3 6 22 0 145 39 108 39 114 48
-	200 3 6 0 1 145 39 114 48 150 48
-	200 3 11 8 22 135 31 117 31 108 39
-	200 3 11 22 21 135 31 108 39 134 39
-	200 3 21 6 7 228 29 231 29 230 32
-	200 3 5 6 1 48 111 48 95 59 95
-	200 3 5 1 2 48 111 59 95 59 111
-	200 3 4 5 20 230 43 231 46 228 46
-	200 3 5 2 3 145 39 150 48 114 48
-	200 3 5 3 23 145 39 114 48 108 39
-	200 3 9 10 20 117 31 135 31 134 39
-	200 3 9 20 23 117 31 134 39 108 39
-	200 3 22 23 3 154 25 176 25 176 34
-	200 3 22 3 0 154 25 176 34 154 34
-	200 3 8 9 23 158 16 172 16 176 25
-	200 3 8 23 22 158 16 176 25 154 25
-CONNECTORS 8
-	0 1 31
-	0 -21 21
-	0 1 51
-	0 0 0
-	0 0 0
-	0 -21 8
-	0 1 8
-	0 1 -12
diff --git a/components/bodies/drmbod06.pie b/components/bodies/drmbod06.pie
deleted file mode 100644
index 208bdc7..0000000
--- a/components/bodies/drmbod06.pie
+++ /dev/null
@@ -1,59 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-14-droid-hubs.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 19 
-	-15 7 -27 
-	-14 7 21 
-	14 7 21 
-	15 7 -27 
-	17 27 21 
-	-16 27 21 
-	-12 32 15 
-	12 32 15 
-	-17 25 -27 
-	-13 28 -24 
-	17 25 -27 
-	13 28 -24 
-	-16 25 -39 
-	-17 27 34 
-	17 27 34 
-	16 25 -39 
-	-16 24 -39 
-	16 24 -39 
-	16 27 21
-POLYGONS 24
-	200 3 3 2 1 2 120 1 141 17 141
-	200 3 3 1 0 2 120 17 141 16 120
-	200 3 7 6 5 219 91 236 91 239 88
-	200 3 7 5 4 219 91 239 88 216 88
-	200 3 6 9 8 31 59 31 39 27 37
-	200 3 6 8 5 31 59 27 37 26 62
-	200 3 11 7 4 31 39 32 59 25 62
-	200 3 11 4 10 31 39 25 62 26 37
-	200 3 13 12 0 63 52 61 11 52 18
-	200 3 13 0 1 63 52 52 18 52 45
-	200 3 15 14 2 61 11 63 52 52 45
-	200 3 15 2 3 61 11 52 45 52 18
-	200 3 9 11 10 235 84 219 84 217 87
-	200 3 9 10 8 235 84 217 87 237 87
-	200 3 7 11 9 219 123 220 102 234 102
-	200 3 7 9 6 219 123 234 102 235 123
-	200 3 12 15 3 0 157 19 157 18 142
-	200 3 12 3 0 0 157 18 142 1 142
-	200 3 14 13 1 151 35 171 35 170 47
-	200 3 14 1 2 151 35 170 47 152 47
-	200 3 10 17 16 218 98 218 92 235 92
-	200 3 10 16 8 218 98 235 92 236 98
-	200 3 14 18 5 216 126 217 121 237 121
-	200 3 14 5 13 216 126 237 121 237 126
-CONNECTORS 8
-	0 2 33
-	0 -20 23
-	0 2 53
-	0 0 0
-	0 0 0
-	0 -20 6
-	0 2 6
-	0 2 -14
diff --git a/components/bodies/drmbod07.pie b/components/bodies/drmbod07.pie
deleted file mode 100644
index 5522c6f..0000000
--- a/components/bodies/drmbod07.pie
+++ /dev/null
@@ -1,58 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-14-droid-hubs.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 14 
-	-17 20 42 
-	-13 7 30 
-	-13 7 -23 
-	-17 20 -23 
-	13 7 30 
-	17 20 42 
-	17 20 -23 
-	13 7 -23 
-	9 33 13 
-	-9 33 13 
-	-9 33 -23 
-	9 33 -23 
-	10 20 -46 
-	-10 20 -46
-POLYGONS 28
-	200 3 3 2 1 205 95 215 95 215 125
-	200 3 3 1 0 205 95 215 125 205 132
-	200 3 7 6 5 215 95 205 95 205 132
-	200 3 7 5 4 215 95 205 132 215 125
-	200 3 3 2 1 205 95 215 95 215 125
-	200 3 3 1 0 205 95 215 125 205 132
-	200 3 7 6 5 215 95 205 95 205 132
-	200 3 7 5 4 215 95 205 132 215 125
-	200 3 11 10 9 224 0 238 0 238 20
-	200 3 11 9 8 224 0 238 20 224 20
-	200 3 5 8 9 150 80 155 65 168 65
-	200 3 5 9 0 150 80 168 65 173 80
-	200 3 13 10 11 136 75 136 82 122 82
-	200 3 13 11 12 136 75 122 82 122 75
-	200 3 13 3 10 148 76 148 82 137 82
-	200 3 11 6 12 137 82 148 82 148 76
-	200 3 6 11 8 203 96 192 96 192 115
-	200 3 6 8 5 203 96 192 115 203 131
-	200 3 10 3 0 192 96 203 96 203 131
-	200 3 10 0 9 192 96 203 131 192 115
-	200 3 13 12 7 119 66 105 66 102 74
-	200 3 13 7 2 119 66 102 74 121 74
-	200 3 2 7 4 118 75 100 75 100 94
-	200 3 2 4 1 118 75 100 94 118 94
-	200 3 5 0 1 121 100 146 100 143 85
-	200 3 5 1 4 121 100 143 85 124 85
-	200 3 12 6 7 224 20 224 29 235 29
-	200 3 3 13 2 224 29 224 20 235 29
-CONNECTORS 8
-	0 -1 33
-	0 -19 23
-	0 -1 53
-	0 0 0
-	0 0 0
-	0 -19 7
-	0 -1 7
-	0 -1 -13
diff --git a/components/bodies/drmbod08.pie b/components/bodies/drmbod08.pie
deleted file mode 100644
index 1204025..0000000
--- a/components/bodies/drmbod08.pie
+++ /dev/null
@@ -1,70 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-14-droid-hubs.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 20 
-	17 21 37 
-	-16 21 37 
-	-10 31 25 
-	10 31 25 
-	-8 21 -30 
-	8 21 -30 
-	10 32 -10 
-	-10 32 -10 
-	-11 20 -42 
-	-11 16 -44 
-	11 16 -44 
-	11 20 -42 
-	17 21 -10 
-	-16 21 -10 
-	-16 5 25 
-	17 5 25 
-	17 21 25 
-	-16 21 25 
-	-16 5 -18 
-	17 5 -18
-POLYGONS 34
-	200 3 3 2 1 166 124 155 124 152 134
-	200 3 3 1 0 166 124 152 134 170 134
-	200 3 7 6 5 89 102 103 102 102 95
-	200 3 7 5 4 89 102 102 95 91 95
-	200 3 11 10 9 126 100 126 102 141 102
-	200 3 11 9 8 126 100 141 102 141 100
-	200 3 12 11 5 152 116 148 103 146 108
-	200 3 8 4 5 134 103 136 108 146 108
-	200 3 8 5 11 134 103 146 108 148 103
-	200 3 13 4 8 131 116 136 108 134 103
-	200 3 15 0 1 171 123 171 132 191 132
-	200 3 15 1 14 171 123 191 132 191 123
-	200 3 6 3 16 29 112 29 131 38 131
-	200 3 6 16 12 29 112 38 131 38 112
-	200 3 13 17 2 38 112 38 131 29 131
-	200 3 13 2 7 38 112 29 131 29 112
-	200 3 17 1 2 38 131 38 137 29 131
-	200 3 3 0 16 29 131 38 137 38 131
-	200 3 6 7 2 165 103 152 103 152 124
-	200 3 6 2 3 165 103 152 124 165 124
-	200 3 10 19 18 134 116 131 131 152 131
-	200 3 10 18 9 134 116 152 131 148 116
-	200 3 19 15 14 104 103 104 101 124 101
-	200 3 19 14 18 104 103 124 101 124 103
-	200 3 11 12 19 20 113 19 129 28 125
-	200 3 11 19 10 20 113 28 125 22 112
-	200 3 19 12 0 28 125 19 129 19 154
-	200 3 19 0 15 28 125 19 154 28 148
-	200 3 1 13 18 19 154 19 129 28 125
-	200 3 1 18 14 19 154 28 125 28 148
-	200 3 18 13 8 28 125 19 129 20 113
-	200 3 18 8 9 28 125 20 113 22 112
-	200 3 7 4 13 120 113 130 105 130 113
-	200 3 12 5 6 130 113 130 105 120 113
-CONNECTORS 8
-	0 11 32
-	0 -22 22
-	0 11 52
-	0 0 0
-	0 0 0
-	0 -22 5
-	0 11 5
-	0 11 -15
diff --git a/components/bodies/drmbod13.pie b/components/bodies/drmbod13.pie
deleted file mode 100644
index 0d9b1e8..0000000
--- a/components/bodies/drmbod13.pie
+++ /dev/null
@@ -1,67 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-14-droid-hubs.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 19 
-	-4 9 -65 
-	-13 16 -33 
-	13 16 -33 
-	4 9 -65 
-	-7 22 -60 
-	7 22 -60 
-	10 41 -23 
-	-10 41 -23 
-	-25 41 -23 
-	-13 36 48 
-	-20 14 33 
-	20 14 33 
-	13 36 48 
-	25 41 -23 
-	9 41 -23 
-	10 38 17 
-	-10 38 17 
-	-7 43 14 
-	7 43 14
-POLYGONS 32
-	200 3 3 2 1 255 225 226 225 226 219
-	200 3 3 1 0 255 225 226 219 255 219
-	200 3 7 6 5 253 237 253 247 236 247
-	200 3 7 5 4 253 237 236 247 236 237
-	200 3 4 5 3 236 237 236 247 226 247
-	200 3 4 3 0 236 237 226 247 226 237
-	200 3 3 5 6 231 256 231 247 253 247
-	200 3 3 6 2 231 256 253 247 253 256
-	200 3 7 4 0 253 247 231 247 231 256
-	200 3 7 0 1 253 247 231 256 253 256
-	200 3 10 9 8 226 256 214 256 214 219
-	200 3 8 1 10 214 219 226 219 226 256
-	200 3 13 12 11 214 219 214 256 226 256
-	200 3 11 2 13 226 256 226 219 214 219
-	200 3 2 11 10 226 225 255 225 255 219
-	200 3 2 10 1 226 225 255 219 226 219
-	200 3 11 12 9 251 225 251 237 226 237
-	200 3 11 9 10 251 225 226 237 226 225
-	200 3 14 13 2 226 247 231 247 226 256
-	200 3 1 8 7 226 256 231 247 226 247
-	200 3 15 9 12 205 225 189 241 214 241
-	200 3 15 12 13 205 225 214 241 214 204
-	200 3 13 6 15 214 204 207 204 205 225
-	200 3 16 8 9 198 225 189 204 189 241
-	200 3 16 9 15 198 225 189 241 205 225
-	200 3 16 7 8 198 225 196 204 189 204
-	200 3 18 6 7 205 224 207 204 196 204
-	200 3 18 7 17 205 224 196 204 198 224
-	200 3 18 15 6 221 225 216 224 220 245
-	200 3 18 17 16 245 252 239 252 239 252
-	200 3 18 16 15 245 252 239 252 245 252
-	200 3 17 7 16 221 225 220 245 216 224
-CONNECTORS 8
-	0 2 43
-	0 -41 33
-	0 2 63
-	0 0 0
-	0 0 0
-	0 -41 11
-	0 2 11
-	0 -41 -9
diff --git a/components/bodies/exbloke.pie b/components/bodies/exbloke.pie
deleted file mode 100644
index 7888763..0000000
--- a/components/bodies/exbloke.pie
+++ /dev/null
@@ -1,36 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-7-barbarians-arizona.png 256 256
-EVENT 1 runanim.pie
-EVENT 2 fireknee.pie
-EVENT 3 flamfall.pie
-LEVELS 1
-LEVEL 1
-POINTS 16 
-	8 0 -7 
-	8 0 6 
-	-10 0 6 
-	-10 0 -7 
-	8 0 0 
-	-9 0 0 
-	-9 33 0 
-	8 33 0 
-	3 0 -6 
-	3 0 5 
-	-1 32 5 
-	-1 32 -6 
-	-6 0 5 
-	-6 0 -6 
-	-3 32 -6 
-	-3 32 5
-POLYGONS 10
-	200 3 3 2 1 155 116 145 116 145 124
-	200 3 3 1 0 155 116 145 124 155 124
-	4200 3 7 6 5 2 1 14 18 28 146 16 146 16 162
-	4200 3 7 5 4 2 1 14 18 28 146 16 162 28 162
-	4200 3 6 7 4 2 1 14 18 136 98 124 98 124 114
-	4200 3 6 4 5 2 1 14 18 136 98 124 114 136 114
-	4200 3 11 10 9 2 1 8 18 7 146 1 146 1 162
-	4200 3 11 9 8 2 1 8 18 7 146 1 162 7 162
-	4200 3 15 14 13 2 1 8 18 158 98 152 98 152 114
-	4200 3 15 13 12 2 1 8 18 158 98 152 114 158 114
diff --git a/components/bodies/exbuggy.pie b/components/bodies/exbuggy.pie
deleted file mode 100644
index c5c9f41..0000000
--- a/components/bodies/exbuggy.pie
+++ /dev/null
@@ -1,63 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-7-barbarians-arizona.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 24 
-	-4 19 -3 
-	4 19 -3 
-	4 22 6 
-	-4 22 6 
-	-6 11 -7 
-	6 11 -7 
-	7 12 20 
-	-7 12 20 
-	-13 0 -24 
-	-15 0 26 
-	15 0 26 
-	13 0 -24 
-	-13 10 -24 
-	13 10 -24 
-	15 12 26 
-	-15 12 26 
-	-2 10 -26 
-	-2 15 -26 
-	-2 15 -10 
-	-2 10 -8 
-	2 10 -26 
-	2 10 -8 
-	2 15 -10 
-	2 15 -26
-POLYGONS 32
-	200 3 3 2 1 211 125 211 121 207 121
-	200 3 3 1 0 211 125 207 121 207 125
-	200 3 0 1 5 199 113 199 109 202 109
-	200 3 0 5 4 199 113 202 109 202 113
-	200 3 1 2 6 209 137 205 138 200 134
-	200 3 1 6 5 209 137 200 134 211 134
-	200 3 2 3 7 216 109 216 113 213 114
-	200 3 2 7 6 216 109 213 114 213 108
-	200 3 3 0 4 211 138 207 137 205 134
-	200 3 3 4 7 211 138 205 134 216 134
-	200 3 11 10 9 190 130 197 129 197 135
-	200 3 11 9 8 190 130 197 135 190 135
-	200 3 15 14 13 218 129 218 117 199 118
-	200 3 15 13 12 218 129 199 118 199 128
-	200 3 12 13 11 203 116 203 106 207 106
-	200 3 12 11 8 203 116 207 106 207 116
-	200 3 13 14 10 217 133 198 134 198 129
-	200 3 13 10 11 217 133 198 129 217 129
-	200 3 14 15 9 213 105 213 117 208 117
-	200 3 14 9 10 213 105 208 117 208 105
-	200 3 15 12 8 218 134 199 133 199 129
-	200 3 15 8 9 218 134 199 129 218 129
-	200 3 19 18 17 205 133 204 135 198 135
-	200 3 19 17 16 205 133 198 135 198 133
-	200 3 23 22 21 218 135 212 135 211 133
-	200 3 23 21 20 218 135 211 133 218 133
-	200 3 21 22 18 212 110 213 110 213 112
-	200 3 21 18 19 212 110 213 112 212 112
-	200 3 22 23 17 204 122 198 122 198 124
-	200 3 22 17 18 204 122 198 124 204 124
-	200 3 23 20 16 201 110 203 110 203 112
-	200 3 23 16 17 201 110 203 112 201 112
\ No newline at end of file
diff --git a/components/bodies/exbugrk.pie b/components/bodies/exbugrk.pie
deleted file mode 100644
index d83f1da..0000000
--- a/components/bodies/exbugrk.pie
+++ /dev/null
@@ -1,65 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-7-barbarians-arizona.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 24 
-	-4 19 -3 
-	4 19 -3 
-	4 22 6 
-	-4 22 6 
-	-6 11 -7 
-	6 11 -7 
-	7 12 20 
-	-7 12 20 
-	-13 0 -24 
-	-15 0 26 
-	15 0 26 
-	13 0 -24 
-	-13 10 -24 
-	13 10 -24 
-	15 12 26 
-	-15 12 26 
-	-6 24 0 
-	-6 17 24 
-	6 17 24 
-	6 24 0 
-	-6 35 2 
-	6 35 2 
-	6 29 27 
-	-6 29 27
-POLYGONS 34
-	200 3 3 2 1 211 125 211 121 207 121
-	200 3 3 1 0 211 125 207 121 207 125
-	200 3 0 1 5 199 113 199 109 202 109
-	200 3 0 5 4 199 113 202 109 202 113
-	200 3 1 2 6 209 137 205 138 200 134
-	200 3 1 6 5 209 137 200 134 211 134
-	200 3 2 3 7 216 109 216 113 213 114
-	200 3 2 7 6 216 109 213 114 213 108
-	200 3 3 0 4 211 138 207 137 205 134
-	200 3 3 4 7 211 138 205 134 216 134
-	200 3 11 10 9 190 130 197 129 197 135
-	200 3 11 9 8 190 130 197 135 190 135
-	200 3 15 14 13 218 129 218 117 199 118
-	200 3 15 13 12 218 129 199 118 199 128
-	200 3 12 13 11 203 116 203 106 207 106
-	200 3 12 11 8 203 116 207 106 207 116
-	200 3 13 14 10 217 133 198 134 198 129
-	200 3 13 10 11 217 133 198 129 217 129
-	200 3 14 15 9 213 105 213 117 208 117
-	200 3 14 9 10 213 105 208 117 208 105
-	200 3 15 12 8 218 134 199 133 199 129
-	200 3 15 8 9 218 134 199 129 218 129
-	200 3 19 18 17 4 114 4 126 15 126
-	200 3 19 17 16 4 114 15 126 15 114
-	200 3 23 22 21 6 130 17 130 17 105
-	200 3 23 21 20 6 130 17 105 6 105
-	200 3 20 21 19 228 178 238 178 238 190
-	200 3 20 19 16 228 178 238 190 228 190
-	200 3 21 22 18 0 132 20 132 20 143
-	200 3 21 18 19 0 132 20 143 0 143
-	200 3 22 23 17 225 191 237 191 237 198
-	200 3 22 17 18 225 191 237 198 225 198
-	200 3 23 20 16 19 128 0 128 0 142
-	200 3 23 16 17 19 128 0 142 19 142
\ No newline at end of file
diff --git a/components/bodies/exfire.pie b/components/bodies/exfire.pie
deleted file mode 100644
index 5550db5..0000000
--- a/components/bodies/exfire.pie
+++ /dev/null
@@ -1,101 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-7-barbarians-arizona.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 32 
-	17 36 -7 
-	17 17 -3 
-	-17 17 -3 
-	-17 36 -7 
-	17 30 -49 
-	-17 30 -49 
-	17 17 5 
-	-17 17 5 
-	17 32 8 
-	17 32 69 
-	-17 32 69 
-	-17 32 8 
-	17 0 27 
-	17 5 23 
-	-17 5 23 
-	-17 0 27 
-	17 0 -31 
-	17 5 -33 
-	-17 5 -33 
-	-17 0 -31 
-	17 6 -52 
-	-17 6 -52 
-	17 5 65 
-	17 6 77 
-	17 0 61 
-	17 5 -14 
-	17 0 -17 
-	-17 6 77 
-	-17 5 65 
-	-17 0 61 
-	-17 5 -14 
-	-17 0 -17
-POLYGONS 60
-	200 3 3 2 1 254 66 243 66 243 84
-	200 3 3 1 0 254 66 243 84 254 84
-	200 3 5 3 0 70 180 46 180 46 164
-	200 3 5 0 4 70 180 46 164 70 164
-	200 3 2 7 6 44 180 39 180 39 164
-	200 3 2 6 1 44 180 39 164 44 164
-	200 3 11 10 9 37 180 2 180 2 164
-	200 3 11 9 8 37 180 2 164 37 164
-	200 3 15 14 13 219 168 219 164 190 164
-	200 3 15 13 12 219 168 190 164 190 168
-	200 3 19 18 17 219 168 219 163 190 163
-	200 3 19 17 16 219 168 190 163 190 168
-	200 3 21 5 4 219 163 219 143 190 143
-	200 3 21 4 20 219 163 190 143 190 163
-	200 3 23 22 8 2 203 8 203 39 184
-	200 3 23 8 9 2 203 39 184 6 184
-	200 3 8 22 24 39 184 8 203 10 207
-	200 3 8 24 6 39 184 10 207 40 195
-	200 3 20 4 0 70 203 69 185 47 182
-	200 3 20 0 17 70 203 47 182 61 203
-	200 3 0 1 16 47 182 45 195 59 207
-	200 3 0 16 17 47 182 59 207 61 203
-	200 3 26 16 1 52 207 59 207 45 195
-	200 3 26 1 25 52 207 45 195 50 204
-	200 3 25 1 6 50 204 45 195 40 195
-	200 3 25 6 13 50 204 40 195 31 204
-	200 3 6 24 12 40 195 10 207 28 207
-	200 3 6 12 13 40 195 28 207 31 204
-	200 3 11 28 27 39 184 8 203 2 203
-	200 3 11 27 10 39 184 2 203 6 184
-	200 3 29 28 11 10 207 8 203 39 184
-	200 3 29 11 7 10 207 39 184 40 195
-	200 3 3 5 21 47 182 69 185 70 203
-	200 3 3 21 18 47 182 70 203 61 203
-	200 3 19 2 3 59 207 45 195 47 182
-	200 3 19 3 18 59 207 47 182 61 203
-	200 3 2 19 31 45 195 59 207 52 207
-	200 3 2 31 30 45 195 52 207 50 204
-	200 3 7 2 30 40 195 45 195 50 204
-	200 3 7 30 14 40 195 50 204 31 204
-	200 3 15 29 7 28 207 10 207 40 195
-	200 3 15 7 14 28 207 40 195 31 204
-	200 3 28 29 24 183 126 186 126 186 144
-	200 3 28 24 22 183 126 186 144 183 144
-	200 3 30 31 26 183 126 186 126 186 144
-	200 3 30 26 25 183 126 186 144 183 144
-	200 3 10 27 23 166 126 182 126 182 144
-	200 3 10 23 9 166 126 182 144 166 144
-	200 3 29 15 12 72 221 72 204 91 204
-	200 3 29 12 24 72 221 91 204 91 221
-	200 3 14 30 25 72 201 72 182 91 182
-	200 3 14 25 13 72 201 91 182 91 201
-	200 3 31 19 16 72 181 72 174 91 174
-	200 3 31 16 26 72 181 91 174 91 181
-	200 3 18 21 20 72 172 72 163 91 163
-	200 3 18 20 17 72 172 91 163 91 172
-	200 3 27 28 22 72 229 72 223 91 223
-	200 3 27 22 23 72 229 91 223 91 229
-	200 3 7 11 8 125 81 112 81 112 63
-	200 3 7 8 6 125 81 112 63 125 63
-CONNECTORS 1
-	0 38 32
diff --git a/components/bodies/exjeep.pie b/components/bodies/exjeep.pie
deleted file mode 100644
index 8e27e7c..0000000
--- a/components/bodies/exjeep.pie
+++ /dev/null
@@ -1,77 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-7-barbarians-arizona.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 36 
-	0 28 -7 
-	1 30 -7 
-	0 32 -7 
-	-2 30 -7 
-	0 17 6 
-	0 16 -2 
-	1 26 -2 
-	1 26 6 
-	-2 17 1 
-	9 17 1 
-	9 26 1 
-	-2 26 1 
-	-10 16 -7 
-	9 16 -7 
-	9 22 -3 
-	-10 22 -3 
-	6 16 -2 
-	6 17 6 
-	3 26 6 
-	3 26 -2 
-	0 33 -7 
-	0 26 -7 
-	0 26 16 
-	0 33 16 
-	-3 30 -7 
-	3 30 -7 
-	3 30 16 
-	-3 30 16 
-	-13 0 -22 
-	-15 0 27 
-	14 0 27 
-	12 0 -22 
-	12 14 -22 
-	-13 14 -22 
-	14 19 27 
-	-15 19 27
-POLYGONS 34
-	200 3 3 2 1 151 121 149 121 149 119
-	200 3 3 1 0 151 121 149 119 151 119
-	200 3 7 6 5 36 128 42 128 42 135
-	200 3 7 5 4 36 128 42 135 36 134
-	200 3 8 9 10 30 156 40 156 40 146
-	200 3 8 10 11 30 156 40 146 30 146
-	200 3 11 10 9 30 146 40 146 40 156
-	200 3 11 9 8 30 146 40 156 30 156
-	200 3 12 13 14 151 91 141 91 141 95
-	200 3 12 14 15 151 91 141 95 151 95
-	200 3 15 14 13 151 95 141 95 141 91
-	200 3 15 13 12 151 95 141 91 151 91
-	200 3 19 18 17 42 128 36 128 36 135
-	200 3 19 17 16 42 128 36 135 42 135
-	200 3 20 21 22 120 122 113 122 113 140
-	200 3 20 22 23 120 122 113 140 120 140
-	200 3 23 22 21 120 140 113 140 113 122
-	200 3 23 21 20 120 140 113 122 120 122
-	200 3 24 25 26 120 122 113 122 113 140
-	200 3 24 26 27 120 122 113 140 120 140
-	200 3 27 26 25 120 140 113 140 113 122
-	200 3 27 25 24 120 140 113 122 120 122
-	200 3 31 30 29 243 106 255 105 255 119
-	200 3 31 29 28 243 106 255 119 243 118
-	200 3 33 32 31 189 137 189 127 195 127
-	200 3 33 31 28 189 137 195 127 195 137
-	200 3 32 34 30 144 122 123 124 123 115
-	200 3 32 30 31 144 122 123 115 144 115
-	200 3 34 35 29 187 126 187 138 195 138
-	200 3 34 29 30 187 126 195 138 195 126
-	200 3 35 33 28 144 124 123 122 123 115
-	200 3 35 28 29 144 124 123 115 144 115
-	200 3 35 34 32 243 84 255 84 254 105
-	200 3 35 32 33 243 84 254 105 244 105
\ No newline at end of file
diff --git a/components/bodies/exjeeprk.pie b/components/bodies/exjeeprk.pie
deleted file mode 100644
index 7a2ee8b..0000000
--- a/components/bodies/exjeeprk.pie
+++ /dev/null
@@ -1,75 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-7-barbarians-arizona.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 32 
-	0 17 6 
-	0 16 -2 
-	1 26 -2 
-	1 26 6 
-	-2 17 1 
-	9 17 1 
-	9 26 1 
-	-2 26 1 
-	-10 16 -7 
-	9 16 -7 
-	9 22 -3 
-	-10 22 -3 
-	6 16 -2 
-	6 17 6 
-	3 26 6 
-	3 26 -2 
-	-13 0 -22 
-	-15 0 27 
-	14 0 27 
-	12 0 -22 
-	12 14 -22 
-	-13 14 -22 
-	14 19 27 
-	-15 19 27 
-	-10 27 2 
-	-10 21 27 
-	11 21 27 
-	11 27 2 
-	-10 39 5 
-	11 39 5 
-	11 32 30 
-	-10 32 30
-POLYGONS 36
-	200 3 3 2 1 36 128 42 128 42 135
-	200 3 3 1 0 36 128 42 135 36 134
-	200 3 4 5 6 30 156 40 156 40 146
-	200 3 4 6 7 30 156 40 146 30 146
-	200 3 7 6 5 30 146 40 146 40 156
-	200 3 7 5 4 30 146 40 156 30 156
-	200 3 8 9 10 151 91 141 91 141 95
-	200 3 8 10 11 151 91 141 95 151 95
-	200 3 11 10 9 151 95 141 95 141 91
-	200 3 11 9 8 151 95 141 91 151 91
-	200 3 15 14 13 42 128 36 128 36 135
-	200 3 15 13 12 42 128 36 135 42 135
-	200 3 19 18 17 243 106 255 105 255 119
-	200 3 19 17 16 243 106 255 119 243 118
-	200 3 21 20 19 189 137 189 127 195 127
-	200 3 21 19 16 189 137 195 127 195 137
-	200 3 20 22 18 144 122 123 124 123 115
-	200 3 20 18 19 144 122 123 115 144 115
-	200 3 22 23 17 187 126 187 138 195 138
-	200 3 22 17 18 187 126 195 138 195 126
-	200 3 23 21 16 144 124 123 122 123 115
-	200 3 23 16 17 144 124 123 115 144 115
-	200 3 23 22 20 243 84 255 84 254 105
-	200 3 23 20 21 243 84 254 105 244 105
-	200 3 27 26 25 0 114 0 126 21 126
-	200 3 27 25 24 0 114 21 126 21 114
-	200 3 31 30 29 0 130 21 130 21 105
-	200 3 31 29 28 0 130 21 105 0 105
-	200 3 28 29 27 222 178 242 178 242 190
-	200 3 28 27 24 222 178 242 190 222 190
-	200 3 29 30 26 0 132 20 132 20 143
-	200 3 29 26 27 0 132 20 143 0 143
-	200 3 30 31 25 221 191 243 191 243 198
-	200 3 30 25 26 221 191 243 198 221 198
-	200 3 31 28 24 19 127 0 127 0 142
-	200 3 31 24 25 19 127 0 142 19 142
\ No newline at end of file
diff --git a/components/bodies/exschool.pie b/components/bodies/exschool.pie
deleted file mode 100644
index 48e3496..0000000
--- a/components/bodies/exschool.pie
+++ /dev/null
@@ -1,83 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-7-barbarians-arizona.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 32 
-	15 21 -76 
-	15 22 -62 
-	-15 22 -62 
-	-15 21 -76 
-	14 37 -59 
-	14 36 37 
-	-15 36 37 
-	-15 37 -59 
-	15 0 -67 
-	15 6 -72 
-	-15 6 -72 
-	-15 0 -67 
-	15 6 -77 
-	-15 6 -77 
-	15 22 -58 
-	21 22 -58 
-	21 32 -58 
-	15 32 -58 
-	-21 22 -58 
-	-15 22 -58 
-	-15 32 -58 
-	-21 32 -58 
-	15 9 40 
-	-15 9 40 
-	15 8 12 
-	15 0 6 
-	-15 0 6 
-	-15 8 12 
-	-12 23 -75 
-	12 23 -75 
-	12 34 -61 
-	-12 34 -61
-POLYGONS 42
-	200 3 3 2 1 110 220 110 212 92 212
-	200 3 3 1 0 110 220 92 212 92 220
-	200 3 7 6 5 110 208 110 152 92 152
-	200 3 7 5 4 110 208 92 152 92 208
-	200 3 11 10 9 197 191 197 187 216 187
-	200 3 11 9 8 197 191 216 187 216 191
-	200 3 13 3 0 197 187 197 179 216 179
-	200 3 13 0 12 197 187 216 179 216 187
-	200 3 2 7 4 197 178 197 170 215 170
-	200 3 2 4 1 197 178 215 170 216 178
-	200 3 17 16 15 216 172 219 172 219 178
-	200 3 17 15 14 216 172 219 178 216 178
-	200 3 21 20 19 194 172 197 172 197 178
-	200 3 21 19 18 194 172 197 178 194 178
-	200 3 6 23 22 188 145 188 159 171 159
-	200 3 6 22 5 188 145 171 159 171 145
-	200 3 27 26 25 188 159 188 164 171 164
-	200 3 27 25 24 188 159 171 164 171 159
-	200 3 23 27 24 90 163 90 179 73 179
-	200 3 23 24 22 90 163 73 179 73 163
-	200 3 26 11 8 90 182 90 224 73 224
-	200 3 26 8 25 90 182 73 224 73 182
-	200 3 10 13 12 90 227 90 229 73 229
-	200 3 10 12 9 90 227 73 229 73 227
-	200 3 22 24 4 2 225 18 225 59 209
-	200 3 22 4 5 2 225 59 209 3 209
-	200 3 24 25 1 18 225 21 230 60 217
-	200 3 24 1 4 18 225 60 217 59 209
-	200 3 25 8 9 21 230 63 230 66 226
-	200 3 25 9 1 21 230 66 226 60 217
-	200 3 1 9 12 60 217 66 226 68 226
-	200 3 1 12 0 60 217 68 226 68 217
-	200 3 7 27 23 59 209 18 225 2 225
-	200 3 7 23 6 59 209 2 225 3 209
-	200 3 2 26 27 60 217 21 230 18 225
-	200 3 2 27 7 60 217 18 225 59 209
-	200 3 10 11 26 66 226 63 230 21 230
-	200 3 10 26 2 66 226 21 230 60 217
-	200 3 13 10 2 68 226 66 226 60 217
-	200 3 13 2 3 68 226 60 217 68 217
-	200 3 31 30 29 66 151 81 151 81 161
-	200 3 31 29 28 66 151 81 161 66 161
-CONNECTORS 1
-	0 -33 37
diff --git a/components/bodies/extrike.pie b/components/bodies/extrike.pie
deleted file mode 100644
index ef396aa..0000000
--- a/components/bodies/extrike.pie
+++ /dev/null
@@ -1,95 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-7-barbarians-arizona.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 40 
-	2 25 11 
-	2 23 17 
-	-2 23 17 
-	-2 25 11 
-	2 17 15 
-	-2 17 15 
-	2 18 10 
-	-2 18 10 
-	3 0 -14 
-	3 9 -14 
-	3 9 -25 
-	3 0 -25 
-	-3 0 -14 
-	-3 0 -25 
-	-3 9 -25 
-	-3 9 -14 
-	4 5 -14 
-	10 0 21 
-	9 14 25 
-	3 22 -2 
-	-5 5 -14 
-	-3 22 -2 
-	-10 14 25 
-	-10 0 21 
-	-17 0 24 
-	-17 0 9 
-	-17 13 9 
-	-17 13 24 
-	-11 0 9 
-	-11 13 9 
-	-11 13 24 
-	-11 0 24 
-	16 0 24 
-	16 13 24 
-	16 13 9 
-	16 0 9 
-	10 13 9 
-	10 0 9 
-	10 13 24 
-	10 0 24
-POLYGONS 48
-	200 3 3 2 1 131 99 135 99 135 99
-	200 3 3 1 0 131 99 135 99 131 99
-	200 3 2 5 4 135 99 135 103 135 103
-	200 3 2 4 1 135 99 135 103 135 99
-	200 3 6 0 1 131 103 131 99 135 99
-	200 3 6 1 4 131 103 135 99 135 103
-	200 3 2 3 7 135 99 131 99 131 103
-	200 3 2 7 5 135 99 131 103 135 103
-	200 3 7 3 0 131 103 131 99 131 99
-	200 3 7 0 6 131 103 131 99 131 103
-	200 3 11 10 9 152 90 152 84 158 84
-	200 3 11 9 8 152 90 158 84 158 90
-	200 3 15 14 13 158 84 152 84 152 90
-	200 3 15 13 12 158 84 152 90 158 90
-	200 3 13 14 10 152 90 152 84 152 84
-	200 3 13 10 11 152 90 152 84 152 90
-	200 3 14 15 9 152 84 158 84 158 84
-	200 3 14 9 10 152 84 158 84 152 84
-	200 3 15 12 8 158 84 158 90 158 90
-	200 3 15 8 9 158 84 158 90 158 84
-	200 3 18 17 16 160 83 158 90 141 87
-	200 3 16 19 18 141 87 147 79 160 83
-	200 3 22 21 20 160 83 147 79 141 88
-	200 3 20 23 22 141 88 158 90 160 83
-	200 3 19 16 20 205 119 211 117 211 129
-	200 3 20 21 19 211 129 205 127 205 119
-	200 3 17 23 20 243 105 255 105 251 119
-	200 3 20 16 17 251 119 247 119 243 105
-	200 3 22 23 17 230 159 228 168 239 168
-	200 3 17 18 22 239 168 237 159 230 159
-	200 3 18 19 21 218 129 198 126 198 122
-	200 3 21 22 18 198 122 218 118 218 129
-	200 3 27 26 25 158 84 152 84 152 90
-	200 3 27 25 24 158 84 152 90 158 90
-	200 3 25 26 29 152 90 152 84 152 84
-	200 3 25 29 28 152 90 152 84 152 90
-	200 3 26 27 30 152 84 158 84 158 84
-	200 3 26 30 29 152 84 158 84 152 84
-	200 3 27 24 31 158 84 158 90 158 90
-	200 3 27 31 30 158 84 158 90 158 84
-	200 3 35 34 33 152 90 152 84 158 84
-	200 3 35 33 32 152 90 158 84 158 90
-	200 3 37 36 34 152 90 152 84 152 84
-	200 3 37 34 35 152 90 152 84 152 90
-	200 3 36 38 33 152 84 158 84 158 84
-	200 3 36 33 34 152 84 158 84 152 84
-	200 3 38 39 32 158 84 158 90 158 90
-	200 3 38 32 33 158 84 158 90 158 84
\ No newline at end of file
diff --git a/components/bodies/fireknee.pie b/components/bodies/fireknee.pie
deleted file mode 100644
index 02e6923..0000000
--- a/components/bodies/fireknee.pie
+++ /dev/null
@@ -1,122 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-7-barbarians-arizona.png 256 256
-LEVELS 3
-LEVEL 1
-POINTS 18 
-	10 0 -8 
-	10 0 10 
-	-10 0 10 
-	-10 0 -8 
-	9 0 5 
-	-9 0 5 
-	-9 24 1 
-	9 24 1 
-	-9 0 -3 
-	9 0 -3 
-	0 0 -14 
-	7 0 8 
-	2 23 8 
-	-4 23 -14 
-	-6 0 12 
-	-6 0 -16 
-	-1 23 -16 
-	-1 23 12
-POLYGONS 12
-	200 3 3 2 1 155 115 145 115 145 123
-	200 3 3 1 0 155 115 145 123 155 123
-	4200 3 7 6 5 2 1 11 14 45 128 54 128 54 140
-	4200 3 7 5 4 2 1 11 14 45 128 54 140 45 140
-	4200 3 6 7 9 2 1 11 14 111 153 120 153 120 165
-	4200 3 6 9 8 2 1 11 14 111 153 120 165 111 165
-	4200 3 13 12 11 2 1 14 14 126 223 138 223 138 235
-	4200 3 13 11 10 2 1 14 14 126 223 138 235 126 235
-	4200 3 14 15 16 2 1 17 14 92 234 107 234 107 222
-	4200 3 14 16 17 2 1 17 14 92 234 107 222 92 222
-	4200 3 17 16 15 2 1 17 14 92 222 107 222 107 234
-	4200 3 17 15 14 2 1 17 14 92 222 107 234 92 234
-ANIMOBJECT 150 2 3
-	0 0 0 0 0 0 0 1.0 1.0 1.0
-	1 0 0 0 0 0 0 -1.0 -1.0 -1.0
-	2 0 0 0 0 0 0 -1.0 -1.0 -1.0
-LEVEL 2
-POINTS 23 
-	10 0 -9 
-	10 0 9 
-	-10 0 9 
-	-10 0 -9 
-	9 0 4 
-	-8 0 4 
-	-8 24 8 
-	9 24 8 
-	-8 0 -4 
-	9 0 -4 
-	0 0 -15 
-	7 0 7 
-	2 23 15 
-	-4 23 -7 
-	-6 0 11 
-	-6 0 -17 
-	0 23 -9 
-	0 23 19 
-	-7 18 -11 
-	-2 14 -35 
-	2 9 -11 
-	-7 9 -11 
-	2 18 -11
-POLYGONS 14
-	200 3 3 2 1 155 115 145 115 145 123
-	200 3 3 1 0 155 115 145 123 155 123
-	4200 3 7 6 5 2 1 11 14 45 128 54 128 54 140
-	4200 3 7 5 4 2 1 11 14 45 128 54 140 45 140
-	4200 3 6 7 9 2 1 11 14 111 153 120 153 120 165
-	4200 3 6 9 8 2 1 11 14 111 153 120 165 111 165
-	4200 3 13 12 11 2 1 14 14 126 223 138 223 138 235
-	4200 3 13 11 10 2 1 14 14 126 223 138 235 126 235
-	4200 3 14 15 16 2 1 17 14 92 234 107 234 107 222
-	4200 3 14 16 17 2 1 17 14 92 234 107 222 92 222
-	4200 3 17 16 15 2 1 17 14 92 222 107 222 107 234
-	4200 3 17 15 14 2 1 17 14 92 222 107 234 92 234
-	200 3 20 19 18 244 120 254 125 244 130
-	200 3 22 19 21 244 120 254 125 244 130
-ANIMOBJECT 150 2 3
-	0 0 0 0 0 0 0 -1.0 -1.0 -1.0
-	1 0 0 0 0 0 0 1.0 1.0 1.0
-	2 0 0 0 0 0 0 -1.0 -1.0 -1.0
-LEVEL 3
-POINTS 18 
-	10 0 -8 
-	10 0 10 
-	-10 0 10 
-	-10 0 -8 
-	9 0 5 
-	-9 0 5 
-	-9 24 1 
-	9 24 1 
-	-9 0 -3 
-	9 0 -3 
-	0 0 -14 
-	7 0 8 
-	2 23 8 
-	-4 23 -14 
-	-6 0 12 
-	-6 0 -16 
-	-1 23 -16 
-	-1 23 12
-POLYGONS 12
-	200 3 3 2 1 155 115 145 115 145 123
-	200 3 3 1 0 155 115 145 123 155 123
-	4200 3 7 6 5 2 1 11 14 45 128 54 128 54 140
-	4200 3 7 5 4 2 1 11 14 45 128 54 140 45 140
-	4200 3 6 7 9 2 1 11 14 111 153 120 153 120 165
-	4200 3 6 9 8 2 1 11 14 111 153 120 165 111 165
-	4200 3 13 12 11 2 1 14 14 126 223 138 223 138 235
-	4200 3 13 11 10 2 1 14 14 126 223 138 235 126 235
-	4200 3 14 15 16 2 1 17 14 92 234 107 234 107 222
-	4200 3 14 16 17 2 1 17 14 92 234 107 222 92 222
-	4200 3 17 16 15 2 1 17 14 92 222 107 222 107 234
-	4200 3 17 15 14 2 1 17 14 92 222 107 234 92 234
-ANIMOBJECT 150 2 3
-	0 0 0 0 0 0 0 -1.0 -1.0 -1.0
-	1 0 0 0 0 0 0 -1.0 -1.0 -1.0
-	2 0 0 0 0 0 0 1.0 1.0 1.0
diff --git a/components/bodies/flamfall.pie b/components/bodies/flamfall.pie
deleted file mode 100644
index 89f50cc..0000000
--- a/components/bodies/flamfall.pie
+++ /dev/null
@@ -1,120 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-7-barbarians-arizona.png 256 256
-LEVELS 4
-LEVEL 1
-POINTS 12 
-	3 0 0 
-	-5 0 0 
-	-10 46 -8 
-	10 46 -8 
-	0 -1 -7 
-	0 2 13 
-	-7 52 4 
-	-7 49 -16 
-	-2 0 6 
-	-2 -1 -7 
-	8 44 -15 
-	8 47 -1
-POLYGONS 8
-	200 3 0 1 2 1 255 15 255 15 232
-	200 3 0 2 3 1 255 15 232 1 232
-	200 3 3 2 1 1 232 15 232 15 255
-	200 3 3 1 0 1 232 15 255 1 255
-	200 3 7 6 5 38 235 50 235 50 255
-	200 3 7 5 4 38 235 50 255 38 255
-	200 3 11 10 9 24 232 16 232 16 255
-	200 3 11 9 8 24 232 16 255 24 255
-ANIMOBJECT 250 1 4
-	  0	0 0 0 0 0 0  1.0  1.0  1.0
-	  1	0 0 0 0 0 0 -1.0 -1.0 -1.0
-	  2	0 0 0 0 0 0 -1.0 -1.0 -1.0
-	  3	0 0 0 0 0 0 -1.0 -1.0 -1.0
-LEVEL 2
-POINTS 14 
-	-11 46 -21 
-	-4 4 9 
-	3 -4 -10 
-	13 43 -27 
-	3 -3 -6 
-	-4 4 10 
-	1 -5 -10 
-	1 2 5 
-	-6 45 -14 
-	-6 37 -30 
-	-2 4 10 
-	-2 -3 -6 
-	8 39 -26 
-	8 47 -8
-POLYGONS 8
-	200 3 2 1 0 111 220 125 220 125 196
-	200 3 2 0 3 111 220 125 196 111 196
-	200 3 3 0 5 111 196 125 196 125 220
-	200 3 3 5 4 111 196 125 220 111 220
-	200 3 9 8 7 25 234 37 234 37 255
-	200 3 9 7 6 25 234 37 255 25 255
-	200 3 13 12 11 138 195 126 195 126 221
-	200 3 13 11 10 138 195 126 221 138 221
-ANIMOBJECT 250 1 4
-	  0	0 0 0 0 0 0 -1.0 -1.0 -1.0
-	  1	0 0 0 0 0 0  1.0  1.0  1.0
-	  2	0 0 0 0 0 0 -1.0 -1.0 -1.0
-	  3	0 0 0 0 0 0 -1.0 -1.0 -1.0
-LEVEL 3
-POINTS 12 
-	-2 9 9 
-	-2 -5 -5 
-	8 27 -38 
-	8 42 -23 
-	7 0 0 
-	-5 0 0 
-	-10 40 -40 
-	10 40 -40 
-	1 -5 -5 
-	1 4 4 
-	-8 37 -28 
-	-8 27 -38
-POLYGONS 8
-	200 3 3 2 1 50 235 38 235 38 255
-	200 3 3 1 0 50 235 38 255 50 255
-	200 3 4 5 6 153 250 169 250 169 222
-	200 3 4 6 7 153 250 169 222 153 222
-	200 3 7 6 5 153 222 169 222 169 250
-	200 3 7 5 4 153 222 169 250 153 250
-	200 3 11 10 9 16 232 24 232 24 255
-	200 3 11 9 8 16 232 24 255 16 255
-ANIMOBJECT 250 1 4
-	  0	0 0 0 0 0 0 -1.0 -1.0 -1.0
-	  1	0 0 0 0 0 0 -1.0 -1.0 -1.0
-	  2	0 0 0 0 0 0  1.0  1.0  1.0
-	  3	0 0 0 0 0 0 -1.0 -1.0 -1.0
-LEVEL 4
-POINTS 14 
-	-4 -5 -1 
-	3 12 3 
-	13 16 -58 
-	-9 12 -59 
-	-4 -7 -1 
-	3 14 3 
-	1 -5 -1 
-	1 10 2 
-	-3 24 -49 
-	-3 8 -53 
-	-2 10 2 
-	-2 -7 -1 
-	8 4 -47 
-	8 22 -42
-POLYGONS 8
-	200 3 3 2 1 126 167 111 167 111 194
-	200 3 3 1 0 126 167 111 194 126 194
-	200 3 5 3 4 111 194 126 167 126 194
-	200 3 5 2 3 111 194 111 167 126 167
-	200 3 9 8 7 126 195 138 195 138 221
-	200 3 9 7 6 126 195 138 221 126 221
-	200 3 13 12 11 37 234 25 234 25 255
-	200 3 13 11 10 37 234 25 255 37 255
-ANIMOBJECT 250 1 4
-	  0	0 0 0 0 0 0 -1.0 -1.0 -1.0
-	  1	0 0 0 0 0 0 -1.0 -1.0 -1.0
-	  2	0 0 0 0 0 0 -1.0 -1.0 -1.0
-	  3	0 0 0 0 0 0  1.0  1.0  1.0
diff --git a/components/bodies/mibnkbod.pie b/components/bodies/mibnkbod.pie
deleted file mode 100644
index abcef33..0000000
--- a/components/bodies/mibnkbod.pie
+++ /dev/null
@@ -1,119 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 41 
-	5 20 17 
-	0 20 20 
-	0 23 20 
-	5 23 17 
-	0 20 11 
-	0 20 2 
-	-6 20 5 
-	-8 20 11 
-	8 20 11 
-	5 20 5 
-	-6 20 17 
-	0 23 2 
-	-6 23 5 
-	-8 23 11 
-	-6 23 17 
-	5 23 5 
-	8 23 11 
-	-14 23 -13 
-	-14 20 -18 
-	13 20 -18 
-	13 23 -13 
-	-14 20 -2 
-	-14 23 -7 
-	13 23 -7 
-	13 20 -2 
-	-14 20 28 
-	13 20 28 
-	-9 17 -33 
-	9 17 -33 
-	-9 10 -33 
-	9 10 -33 
-	-14 10 -18 
-	-14 7 -13 
-	13 7 -13 
-	13 10 -18 
-	-14 7 -7 
-	13 7 -7 
-	-14 10 -2 
-	13 10 -2 
-	-14 10 28 
-	13 10 28
-POLYGONS 68
-	200 3 3 2 1 237 220 239 220 239 222
-	200 3 3 1 0 237 220 239 222 237 222
-	200 3 7 6 5 239 221 239 220 238 220
-	200 3 7 5 4 239 221 238 220 238 221
-	200 3 5 9 8 238 220 237 220 237 221
-	200 3 5 8 4 238 220 237 221 238 221
-	200 3 8 0 1 237 221 237 222 238 222
-	200 3 8 1 4 237 221 238 222 238 221
-	200 3 1 10 7 238 222 239 222 239 221
-	200 3 1 7 4 238 222 239 221 238 221
-	200 3 12 11 5 239 220 237 220 237 222
-	200 3 12 5 6 239 220 237 222 239 222
-	200 3 13 12 6 239 220 237 220 237 222
-	200 3 13 6 7 239 220 237 222 239 222
-	200 3 14 13 7 239 220 237 220 237 222
-	200 3 14 7 10 239 220 237 222 239 222
-	200 3 2 14 10 237 220 239 220 239 222
-	200 3 2 10 1 237 220 239 222 237 222
-	200 3 11 15 9 239 220 237 220 237 222
-	200 3 11 9 5 239 220 237 222 239 222
-	200 3 15 16 8 237 220 239 220 239 222
-	200 3 15 8 9 237 220 239 222 237 222
-	200 3 16 3 0 237 220 239 220 239 222
-	200 3 16 0 8 237 220 239 222 237 222
-	200 3 20 19 18 225 222 225 220 227 220
-	200 3 20 18 17 225 222 227 220 227 222
-	200 3 24 23 22 237 222 237 220 239 220
-	200 3 24 22 21 237 222 239 220 239 222
-	200 3 26 24 21 233 222 233 220 235 220
-	200 3 26 21 25 233 222 235 220 235 222
-	200 3 23 20 17 225 222 225 222 227 222
-	200 3 23 17 22 225 222 227 222 227 222
-	200 3 19 28 27 233 221 233 220 235 220
-	200 3 19 27 18 233 221 235 220 235 221
-	200 3 28 30 29 233 220 233 222 235 222
-	200 3 28 29 27 233 220 235 222 235 220
-	200 3 34 33 32 229 220 229 220 231 220
-	200 3 34 32 31 229 220 231 220 231 220
-	200 3 33 36 35 233 220 233 221 235 221
-	200 3 33 35 32 233 220 235 221 235 220
-	200 3 36 38 37 225 221 225 221 227 221
-	200 3 36 37 35 225 221 227 221 227 221
-	200 3 38 40 39 229 221 229 222 231 222
-	200 3 38 39 37 229 221 231 222 231 221
-	200 3 40 26 25 225 222 225 222 227 222
-	200 3 40 25 39 225 222 227 222 227 222
-	200 3 30 34 31 229 220 229 220 231 220
-	200 3 30 31 29 229 220 231 220 231 220
-	200 3 29 31 18 229 222 229 222 229 220
-	200 3 29 18 27 229 222 229 220 229 221
-	200 3 25 21 37 231 220 230 220 230 222
-	200 3 25 37 39 231 220 230 222 231 222
-	200 3 37 21 22 230 222 230 220 230 220
-	200 3 37 22 35 230 222 230 220 230 222
-	200 3 35 22 17 230 222 230 220 229 220
-	200 3 35 17 32 230 222 229 220 229 222
-	200 3 32 17 18 229 222 229 220 229 220
-	200 3 32 18 31 229 222 229 220 229 222
-	200 3 19 34 30 229 220 229 222 229 222
-	200 3 19 30 28 229 220 229 222 229 221
-	200 3 38 24 26 230 222 230 220 231 220
-	200 3 38 26 40 230 222 231 220 231 222
-	200 3 23 24 38 230 220 230 220 230 222
-	200 3 23 38 36 230 220 230 222 230 222
-	200 3 20 23 36 229 220 230 220 230 222
-	200 3 20 36 33 229 220 230 222 229 222
-	200 3 19 20 33 229 220 229 220 229 222
-	200 3 19 33 34 229 220 229 222 229 222
-CONNECTORS 2
-	0 11 22
-	0 -25 9
diff --git a/components/bodies/runanim.pie b/components/bodies/runanim.pie
deleted file mode 100644
index 0a19c28..0000000
--- a/components/bodies/runanim.pie
+++ /dev/null
@@ -1,144 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-7-barbarians-arizona.png 256 256
-LEVELS 4
-LEVEL 1
-POINTS 16 
-	9 0 -12 
-	9 0 7 
-	-9 0 7 
-	-9 0 -12 
-	5 0 0 
-	-8 0 0 
-	-8 33 -9 
-	9 33 -9 
-	2 0 -5 
-	2 0 6 
-	-2 32 -3 
-	-2 32 -15 
-	-6 0 6 
-	-6 0 -5 
-	-3 32 -15 
-	-3 32 -3
-POLYGONS 10
-	200 3 3 2 1 155 116 145 116 145 124
-	200 3 3 1 0 155 116 145 124 155 124
-	4200 3 7 6 5 2 1 14 18 28 146 16 146 16 162
-	4200 3 7 5 4 2 1 14 18 28 146 16 162 28 162
-	4200 3 6 7 4 2 1 14 18 136 98 124 98 124 114
-	4200 3 6 4 5 2 1 14 18 136 98 124 114 136 114
-	4200 3 11 10 9 2 1 8 18 7 146 1 146 1 162
-	4200 3 11 9 8 2 1 8 18 7 146 1 162 7 162
-	4200 3 15 14 13 2 1 8 18 158 98 152 98 152 114
-	4200 3 15 13 12 2 1 8 18 158 98 152 114 158 114
-ANIMOBJECT 250 0 4
-	0	0 0 0 0 0 0  1.0  1.0  1.0
-	1	0 0 0 0 0 0 -1.0 -1.0 -1.0
-	2	0 0 0 0 0 0 -1.0 -1.0 -1.0
-	3	0 0 0 0 0 0 -1.0 -1.0 -1.0
-LEVEL 2
-POINTS 18 
-	9 0 -12 
-	9 0 6 
-	-9 0 14 
-	-9 0 -3 
-	4 3 -13 
-	-8 3 12 
-	9 35 -15 
-	-8 35 -9 
-	-8 3 10 
-	4 3 -10 
-	2 3 -10 
-	2 3 6 
-	-2 34 -3 
-	-2 34 -20 
-	-5 3 13 
-	-5 3 -5 
-	-2 34 -15 
-	-2 34 3
-POLYGONS 10
-	200 3 3 2 1 155 116 145 116 145 124
-	200 3 3 1 0 155 116 145 124 155 124
-	4200 3 6 5 4 2 1 14 18 28 146 16 162 28 162
-	4200 3 6 7 5 2 1 14 18 28 146 16 146 16 162
-	4200 3 9 8 7 2 1 14 18 124 114 136 114 136 98
-	4200 3 9 7 6 2 1 14 18 124 114 136 98 124 98
-	4200 3 13 12 11 2 1 11 18 32 128 23 128 23 144
-	4200 3 13 11 10 2 1 11 18 32 128 23 144 32 144
-	4200 3 17 16 15 2 1 11 18 52 146 43 146 43 162
-	4200 3 17 15 14 2 1 11 18 52 146 43 162 52 162
-ANIMOBJECT 250 0 4
-	0	0 0 0 0 0 0 -1.0 -1.0 -1.0
-	1	0 0 0 0 0 0  1.0  1.0  1.0
-	2	0 0 0 0 0 0 -1.0 -1.0 -1.0
-	3	0 0 0 0 0 0 -1.0 -1.0 -1.0
-LEVEL 3
-POINTS 16 
-	9 0 -12 
-	9 0 7 
-	-9 0 7 
-	-9 0 -12 
-	5 0 0 
-	-8 0 0 
-	-8 33 -9 
-	9 33 -9 
-	2 0 -5 
-	2 0 6 
-	-2 32 -3 
-	-2 32 -15 
-	-6 0 6 
-	-6 0 -5 
-	-3 32 -15 
-	-3 32 -3
-POLYGONS 10
-	200 3 3 2 1 155 116 145 116 145 124
-	200 3 3 1 0 155 116 145 124 155 124
-	4200 3 7 6 5 2 1 14 18 28 146 16 146 16 162
-	4200 3 7 5 4 2 1 14 18 28 146 16 162 28 162
-	4200 3 6 7 4 2 1 14 18 136 98 124 98 124 114
-	4200 3 6 4 5 2 1 14 18 136 98 124 114 136 114
-	4200 3 11 10 9 2 1 8 18 7 146 1 146 1 162
-	4200 3 11 9 8 2 1 8 18 7 146 1 162 7 162
-	4200 3 15 14 13 2 1 8 18 158 98 152 98 152 114
-	4200 3 15 13 12 2 1 8 18 158 98 152 114 158 114
-ANIMOBJECT 250 0 4
-	0	0 0 0 0 0 0 -1.0 -1.0 -1.0
-	1	0 0 0 0 0 0 -1.0 -1.0 -1.0
-	2	0 0 0 0 0 0  1.0  1.0  1.0
-	3	0 0 0 0 0 0 -1.0 -1.0 -1.0
-LEVEL 4
-POINTS 18 
-	9 0 -3 
-	9 0 14 
-	-9 0 6 
-	-9 0 -12 
-	-8 3 -10 
-	-8 35 -12 
-	4 4 15 
-	9 35 -8 
-	-8 3 -6 
-	4 4 13 
-	2 3 -4 
-	2 4 13 
-	-2 34 3 
-	-2 34 -14 
-	-5 3 6 
-	-5 3 -10 
-	-2 34 -20 
-	-2 34 -3
-POLYGONS 10
-	200 3 3 2 1 155 116 145 116 145 124
-	200 3 3 1 0 155 116 145 124 155 124
-	4200 3 6 5 4 2 1 14 18 28 162 16 146 16 162
-	4200 3 6 7 5 2 1 14 18 28 162 28 146 16 146
-	4200 3 7 9 8 2 1 14 18 124 98 124 114 136 114
-	4200 3 7 8 5 2 1 14 18 124 98 136 114 136 98
-	4200 3 13 12 11 2 1 11 18 43 146 52 146 52 162
-	4200 3 13 11 10 2 1 11 18 43 146 52 162 43 162
-	4200 3 17 16 15 2 1 11 18 23 128 32 128 32 144
-	4200 3 17 15 14 2 1 11 18 23 128 32 144 23 144
-ANIMOBJECT 250 0 4
-	0	0 0 0 0 0 0 -1.0 -1.0 -1.0
-	1	0 0 0 0 0 0 -1.0 -1.0 -1.0
-	2	0 0 0 0 0 0 -1.0 -1.0 -1.0
-	3	0 0 0 0 0 0  1.0  1.0  1.0
diff --git a/components/bodies/runflame.pie b/components/bodies/runflame.pie
deleted file mode 100644
index 14be84d..0000000
--- a/components/bodies/runflame.pie
+++ /dev/null
@@ -1,120 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-7-barbarians-arizona.png 256 256
-LEVELS 4
-LEVEL 1
-POINTS 12 
-	3 0 0 
-	-5 0 0 
-	-10 47 0 
-	10 47 0 
-	0 0 -7 
-	0 0 14 
-	-7 51 14 
-	-7 51 -7 
-	-2 0 6 
-	-2 0 -7 
-	8 46 -7 
-	8 46 6
-POLYGONS 8
-	200 3 0 1 2 1 255 15 255 15 232
-	200 3 0 2 3 1 255 15 232 1 232
-	200 3 3 2 1 1 232 15 232 15 255
-	200 3 3 1 0 1 232 15 255 1 255
-	200 3 7 6 5 38 235 50 235 50 255
-	200 3 7 5 4 38 235 50 255 38 255
-	200 3 11 10 9 24 232 16 232 16 255
-	200 3 11 9 8 24 232 16 255 24 255
-ANIMOBJECT 250 0 4
-	  0	0 0 0 0 0 0  1.0  1.0  1.0
-	  1	0 0 0 0 0 0 -1.0 -1.0 -1.0
-	  2	0 0 0 0 0 0 -1.0 -1.0 -1.0
-	  3	0 0 0 0 0 0 -1.0 -1.0 -1.0
-LEVEL 2
-POINTS 14 
-	3 0 -7 
-	-4 0 11 
-	-11 50 0 
-	13 50 -6 
-	1 0 -12 
-	1 0 6 
-	-6 46 6 
-	-6 46 -12 
-	-2 0 12 
-	-2 0 -7 
-	8 46 -7 
-	8 46 12 
-	-4 0 9 
-	3 0 -11
-POLYGONS 8
-	200 3 3 2 1 111 196 125 196 125 220
-	200 3 3 1 0 111 196 125 220 111 220
-	200 3 7 6 5 25 234 37 234 37 255
-	200 3 7 5 4 25 234 37 255 25 255
-	200 3 11 10 9 138 195 126 195 126 221
-	200 3 11 9 8 138 195 126 221 138 221
-	200 3 13 12 2 111 220 125 220 125 196
-	200 3 13 2 3 111 220 125 196 111 196
-ANIMOBJECT 250 0 4
-	  0	0 0 0 0 0 0 -1.0 -1.0 -1.0
-	  1	0 0 0 0 0 0  1.0  1.0  1.0
-	  2	0 0 0 0 0 0 -1.0 -1.0 -1.0
-	  3	0 0 0 0 0 0 -1.0 -1.0 -1.0
-LEVEL 3
-POINTS 12 
-	7 0 0 
-	-5 0 0 
-	-10 57 0 
-	10 57 0 
-	1 0 -7 
-	1 0 6 
-	-8 46 6 
-	-8 46 -7 
-	-2 0 13 
-	-2 0 -7 
-	8 46 -7 
-	8 46 13
-POLYGONS 8
-	200 3 0 1 2 153 250 169 250 169 222
-	200 3 0 2 3 153 250 169 222 153 222
-	200 3 3 2 1 153 222 169 222 169 250
-	200 3 3 1 0 153 222 169 250 153 250
-	200 3 7 6 5 16 232 24 232 24 255
-	200 3 7 5 4 16 232 24 255 16 255
-	200 3 11 10 9 50 235 38 235 38 255
-	200 3 11 9 8 50 235 38 255 50 255
-ANIMOBJECT 250 0 4
-	  0	0 0 0 0 0 0 -1.0 -1.0 -1.0
-	  1	0 0 0 0 0 0 -1.0 -1.0 -1.0
-	  2	0 0 0 0 0 0  1.0  1.0  1.0
-	  3	0 0 0 0 0 0 -1.0 -1.0 -1.0
-LEVEL 4
-POINTS 14 
-	-4 0 -7 
-	-9 60 -3 
-	3 0 14 
-	13 60 0 
-	1 0 -5 
-	1 0 10 
-	-3 53 10 
-	-3 53 -5 
-	-2 0 10 
-	-2 0 -7 
-	8 46 -7 
-	8 46 10 
-	-4 0 -5 
-	3 0 12
-POLYGONS 8
-	200 3 2 1 0 111 194 126 167 126 194
-	200 3 2 3 1 111 194 111 167 126 167
-	200 3 7 6 5 126 195 138 195 138 221
-	200 3 7 5 4 126 195 138 221 126 221
-	200 3 11 10 9 37 234 25 234 25 255
-	200 3 11 9 8 37 234 25 255 37 255
-	200 3 1 3 13 126 167 111 167 111 194
-	200 3 1 13 12 126 167 111 194 126 194
-ANIMOBJECT 250 0 4
-	  0	0 0 0 0 0 0 -1.0 -1.0 -1.0
-	  1	0 0 0 0 0 0 -1.0 -1.0 -1.0
-	  2	0 0 0 0 0 0 -1.0 -1.0 -1.0
-	  3	0 0 0 0 0 0  1.0  1.0  1.0
diff --git a/components/bodies/scbd_run.pie b/components/bodies/scbd_run.pie
deleted file mode 100644
index 817f894..0000000
--- a/components/bodies/scbd_run.pie
+++ /dev/null
@@ -1,196 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-14-droid-hubs.png 256 256
-LEVELS 6
-LEVEL 1
-POINTS 8 
-	-1 14 -12 
-	20 17 -15 
-	19 35 0 
-	-2 32 3 
-	10 24 -23 
-	14 8 -5 
-	12 26 11 
-	7 42 -6
-POLYGONS 8
-	200 3 0 1 2 188 212 180 212 180 200
-	200 3 0 2 3 188 212 180 200 188 200
-	200 3 3 2 1 188 200 180 200 180 212
-	200 3 3 1 0 188 200 180 212 188 212
-	200 3 4 5 6 171 212 179 212 179 200
-	200 3 4 6 7 171 212 179 200 171 200
-	200 3 7 6 5 171 200 179 200 179 212
-	200 3 7 5 4 171 200 179 212 171 212
-ANIMOBJECT 125 0 12
-	  0	      0       0       0       0       0       0    1.0     1.0    1.0
-	  1	   -714   -8165   -1355  -16390     580   -3905    1.0     1.0    1.0
-	  2	  -1744   -7453   -2027  -15079    3125   -3354    1.0     1.0    1.0
-	  3	  -3609    4551    2870    9450    7260    3275    1.0     1.0    1.0
-	  4	  -5345   18190   14007   40900    5066   11365    1.0     1.0    1.0
-	  5	  -4557   17791   10195   39328    3913   10398    1.0     1.0    1.0
-	  6	  -3293   20365    7244   45218      46    9700    1.0     1.0    1.0
-	  7	  -1567   24268    8671   55849   -4754    7202    1.0     1.0    1.0
-	  8	  -1358   27834   15171   70938   -9037    5927    1.0     1.0    1.0
-	  9	   1387   18232    7141   37833   -5305    2155    1.0     1.0    1.0
-	 10	   1451      27    5639     -31   -3055   -2368    1.0     1.0    1.0
-	 11	   1189   -6440    2231  -12520   -2894   -1638    1.0     1.0    1.0
-LEVEL 2
-POINTS 8 
-	3 2 -19 
-	21 4 -20 
-	20 22 -11 
-	2 20 -9 
-	11 8 -28 
-	14 0 -11 
-	13 16 -1 
-	10 26 -19
-POLYGONS 8
-	200 3 0 1 2 165 199 159 199 159 189
-	200 3 0 2 3 165 199 159 189 165 189
-	200 3 3 2 1 165 189 159 189 159 199
-	200 3 3 1 0 165 189 159 199 165 199
-	200 3 4 5 6 152 199 158 199 158 189
-	200 3 4 6 7 152 199 158 189 152 189
-	200 3 7 6 5 152 189 158 189 158 199
-	200 3 7 5 4 152 189 158 199 152 199
-ANIMOBJECT 125 0 12
-	  0	      0       0       0       0       0       0    1.0    1.0    1.0
-	  1	  -3342    4103    8894   26830    -199    7249    1.0    1.0    1.0
-	  2	  -5223    6358   14534   45014    -478   11311    1.0    1.0    1.0
-	  3	  -5500   10789   16307   49841    2347   12367    1.0    1.0    1.0
-	  4	  -5326   18152   13852   40476    5137   11279    1.0    1.0    1.0
-	  5	  -5858   18134   19627   64345   -1164   14567    1.0    1.0    1.0
-	  6	  -6103   17064   22002   85713   -9517   14325    1.0    1.0    1.0
-	  7	  -5517   17714   22887   98385  -15562    9959    1.0    1.0    1.0
-	  8	  -4130   22852   23301   96734  -15826    6829    1.0    1.0    1.0
-	  9	  -3400   17040   22066   78629  -14411    8147    1.0    1.0    1.0
-	 10	  -3578    9276   22168   51683   -8710   10000    1.0    1.0    1.0
-	 11	   -930    1868    8070   14301   -2851    5524    1.0    1.0    1.0
-LEVEL 3
-POINTS 8 
-	3 4 -33 
-	23 8 -32 
-	23 3 -6 
-	3 0 -7 
-	13 4 -33 
-	13 0 -7 
-	12 7 -5 
-	12 12 -31
-POLYGONS 8
-	200 3 0 1 2 156 213 156 206 165 206
-	200 3 0 2 3 156 213 165 206 165 213
-	200 3 3 2 1 165 213 165 206 156 206
-	200 3 3 1 0 165 213 156 206 156 213
-	200 3 4 5 6 166 199 175 199 175 195
-	200 3 4 6 7 166 199 175 195 166 195
-	200 3 7 6 5 166 195 175 195 175 199
-	200 3 7 5 4 166 195 175 199 166 199
-ANIMOBJECT 125 0 12
-	  0	      0       0       0       0       0       0    1.0    1.0    1.0
-	  1	  -1136    5405    1452    3144    2914    -205    1.0    1.0    1.0
-	  2	  -2194   10817    2579    5590    5186    -255    1.0    1.0    1.0
-	  3	  -2908   16335    3701    8045    7457    -207    1.0    1.0    1.0
-	  4	  -2931   21957    5128   11227   10372       0    1.0    1.0    1.0
-	  5	  -2651   27621    5945   15586    4460      73    1.0    1.0    1.0
-	  6	  -1880   33148    6846   20720   -2507    -419    1.0    1.0    1.0
-	  7	   -432   35431   15077   41718   -2009   -1131    1.0    1.0    1.0
-	  8	   1058   35103   21457   62702   -1288   -1617    1.0    1.0    1.0
-	  9	   1941   25881   19407   52959    -425   -1150    1.0    1.0    1.0
-	 10	    744   14989   15534   24860     538    -356    1.0    1.0    1.0
-	 11	    880    2837    7378   10419     812    -143    1.0    1.0    1.0
-LEVEL 4
-POINTS 8 
-	-20 10 2 
-	2 10 2 
-	1 34 0 
-	-20 34 0 
-	-12 12 14 
-	-12 8 -9 
-	-10 32 -12 
-	-10 36 11
-POLYGONS 8
-	200 3 0 1 2 180 212 188 212 188 200
-	200 3 0 2 3 180 212 188 200 180 200
-	200 3 3 2 1 180 200 188 200 188 212
-	200 3 3 1 0 180 200 188 212 180 212
-	200 3 4 5 6 179 212 171 212 171 200
-	200 3 4 6 7 179 212 171 200 179 200
-	200 3 7 6 5 179 200 171 200 171 212
-	200 3 7 5 4 179 200 171 212 179 212
-ANIMOBJECT 125 0 12
-	  0	      0       0       0       0       0       0    1.0    1.0    1.0
-	  1	  -1304    3662   -2676    6797    2433    2555    1.0    1.0    1.0
-	  2	  -2292    9685   -2225   18615    3987    3365    1.0    1.0    1.0
-	  3	  -2155   -6678    1771  -13022    6739    8069    1.0    1.0    1.0
-	  4	    192  -22105   15193  -47988   10957    9498    1.0    1.0    1.0
-	  5	    113  -25227   16055  -57707   12197    7323    1.0    1.0    1.0
-	  6	   -807  -24497   10272  -54886   10990    5388    1.0    1.0    1.0
-	  7	   1351  -28384   15866  -72431   12260    6534    1.0    1.0    1.0
-	  8	   1663  -27868   14498  -69706    8975    6853    1.0    1.0    1.0
-	  9	   1263  -20154    9092  -42806     686    4610    1.0    1.0    1.0
-	 10	   1439   -4874    6647   -9144   -3192    -899    1.0    1.0    1.0
-	 11	    786   -5917    2534  -11342   -1697     119    1.0    1.0    1.0
-LEVEL 5
-POINTS 8 
-	-18 4 17 
-	0 3 15 
-	-2 16 0 
-	-20 17 1 
-	-9 12 22 
-	-11 -3 10 
-	-13 9 -5 
-	-10 24 6
-POLYGONS 8
-	200 3 0 1 2 159 199 165 199 165 189
-	200 3 0 2 3 159 199 165 189 159 189
-	200 3 3 2 1 159 189 165 189 165 199
-	200 3 3 1 0 159 189 165 199 159 199
-	200 3 4 5 6 158 199 152 199 152 189
-	200 3 4 6 7 158 199 152 189 158 189
-	200 3 7 6 5 158 189 152 189 152 199
-	200 3 7 5 4 158 189 152 199 158 199
-ANIMOBJECT 125 0 12
-	  0	      0       0       0       0       0       0    1.0    1.0    1.0
-	  1	  -1373    5449   -2417   14614    2710    1280    1.0    1.0    1.0
-	  2	  -2262    9152   -2368   16234    3857    3743    1.0    1.0    1.0
-	  3	  -2654   -3315    1292    1689    6561    5581    1.0    1.0    1.0
-	  4	  -1104  -17588   11643  -22708    8593    5913    1.0    1.0    1.0
-	  5	    157  -25306   16200  -58439   12300    7393    1.0    1.0    1.0
-	  6	    892  -26386   16282  -83211   15341    7240    1.0    1.0    1.0
-	  7	    426  -26804   12189  -54730    9643    5117    1.0    1.0    1.0
-	  8	    416  -23402    8069  -35022    4539    3213    1.0    1.0    1.0
-	  9	   1070  -17758    7174  -29382    -571    2782    1.0    1.0    1.0
-	 10	   1541  -10944    9705  -39296   -1301    3631    1.0    1.0    1.0
-	 11	    785   -5683    2479  -10290   -1725     -51    1.0    1.0    1.0
-LEVEL 6
-POINTS 8 
-	-21 4 0 
-	-1 0 0 
-	-1 4 26 
-	-21 8 26 
-	-11 4 26 
-	-11 0 0 
-	-9 7 0 
-	-9 12 25
-POLYGONS 8
-	200 3 0 1 2 156 206 156 213 165 213
-	200 3 0 2 3 156 206 165 213 165 206
-	200 3 3 2 1 165 206 165 213 156 213
-	200 3 3 1 0 165 206 156 213 156 206
-	200 3 4 5 6 175 199 166 199 166 195
-	200 3 4 6 7 175 199 166 195 175 195
-	200 3 7 6 5 175 195 166 195 166 199
-	200 3 7 5 4 175 195 166 199 175 199
-ANIMOBJECT 125 0 12
-	  0	      0       0       0       0       0       0    1.0    1.0    1.0
-	  1	  -1210    6421   -3442   21363    -130    -116    1.0    1.0    1.0
-	  2	  -2368   14099   -6253   42726    -208    -272    1.0    1.0    1.0
-	  3	  -3058    1070   -4128   32853   -1147    -389    1.0    1.0    1.0
-	  4	  -2362  -16919    6113    4279   -2380    -151    1.0    1.0    1.0
-	  5	  -2940  -29324    6227  -10418   -2690     176    1.0    1.0    1.0
-	  6	  -3096  -35736    5550  -21375   -2490     509    1.0    1.0    1.0
-	  7	  -1763  -30007    4996  -18155   -5426     580    1.0    1.0    1.0
-	  8	   -375  -24118    4554  -15641   -7710     521    1.0    1.0    1.0
-	  9	    740  -18057    4104  -13108   -9989     360    1.0    1.0    1.0
-	 10	   1252  -11832    3516   -9812  -12905       0    1.0    1.0    1.0
-	 11	   1100   -5401    1905   -5446   -6747    -237    1.0    1.0    1.0
diff --git a/components/bodies/scbd_std.pie b/components/bodies/scbd_std.pie
deleted file mode 100644
index 83676cf..0000000
--- a/components/bodies/scbd_std.pie
+++ /dev/null
@@ -1,106 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-14-droid-hubs.png 256 256
-EVENT 1 scbd_run.pie
-LEVELS 1
-LEVEL 1
-POINTS 48 
-	-1 16 -5 
-	20 17 -8 
-	20 40 0 
-	-2 39 1 
-	10 20 -18 
-	13 13 4 
-	11 36 12 
-	8 43 -10 
-	2 2 -9 
-	20 3 -12 
-	20 23 -6 
-	2 22 -4 
-	11 6 -20 
-	13 0 -1 
-	13 20 4 
-	10 25 -15 
-	3 4 -24 
-	23 8 -23 
-	22 3 2 
-	2 0 0 
-	13 4 -24 
-	12 0 1 
-	11 7 2 
-	12 12 -23 
-	-20 16 0 
-	1 15 0 
-	1 40 0 
-	-20 40 0 
-	-13 16 12 
-	-12 15 -12 
-	-9 40 -12 
-	-10 40 11 
-	-20 3 7 
-	-2 3 6 
-	-2 22 -1 
-	-20 22 0 
-	-12 7 16 
-	-12 0 -2 
-	-12 18 -10 
-	-12 26 8 
-	-22 4 -8 
-	-2 0 -7 
-	-3 4 18 
-	-23 8 17 
-	-13 4 18 
-	-12 0 -7 
-	-11 7 -8 
-	-12 12 17
-POLYGONS 48
-	200 3 0 1 2 188 212 180 212 180 200
-	200 3 0 2 3 188 212 180 200 188 200
-	200 3 3 2 1 188 200 180 200 180 212
-	200 3 3 1 0 188 200 180 212 188 212
-	200 3 4 5 6 171 212 179 212 179 200
-	200 3 4 6 7 171 212 179 200 171 200
-	200 3 7 6 5 171 200 179 200 179 212
-	200 3 7 5 4 171 200 179 212 171 212
-	200 3 8 9 10 165 199 159 199 159 189
-	200 3 8 10 11 165 199 159 189 165 189
-	200 3 11 10 9 165 189 159 189 159 199
-	200 3 11 9 8 165 189 159 199 165 199
-	200 3 12 13 14 152 199 158 199 158 189
-	200 3 12 14 15 152 199 158 189 152 189
-	200 3 15 14 13 152 189 158 189 158 199
-	200 3 15 13 12 152 189 158 199 152 199
-	200 3 16 17 18 156 213 156 206 165 206
-	200 3 16 18 19 156 213 165 206 165 213
-	200 3 19 18 17 165 213 165 206 156 206
-	200 3 19 17 16 165 213 156 206 156 213
-	200 3 20 21 22 166 199 175 199 175 195
-	200 3 20 22 23 166 199 175 195 166 195
-	200 3 23 22 21 166 195 175 195 175 199
-	200 3 23 21 20 166 195 175 199 166 199
-	200 3 24 25 26 180 212 188 212 188 200
-	200 3 24 26 27 180 212 188 200 180 200
-	200 3 27 26 25 180 200 188 200 188 212
-	200 3 27 25 24 180 200 188 212 180 212
-	200 3 28 29 30 179 212 171 212 171 200
-	200 3 28 30 31 179 212 171 200 179 200
-	200 3 31 30 29 179 200 171 200 171 212
-	200 3 31 29 28 179 200 171 212 179 212
-	200 3 32 33 34 159 199 165 199 165 189
-	200 3 32 34 35 159 199 165 189 159 189
-	200 3 35 34 33 159 189 165 189 165 199
-	200 3 35 33 32 159 189 165 199 159 199
-	200 3 36 37 38 158 199 152 199 152 189
-	200 3 36 38 39 158 199 152 189 158 189
-	200 3 39 38 37 158 189 152 189 152 199
-	200 3 39 37 36 158 189 152 199 158 199
-	200 3 40 41 42 156 206 156 213 165 213
-	200 3 40 42 43 156 206 165 213 165 206
-	200 3 43 42 41 165 206 165 213 156 213
-	200 3 43 41 40 165 206 156 213 156 206
-	200 3 44 45 46 175 199 166 199 166 195
-	200 3 44 46 47 175 199 166 195 175 195
-	200 3 47 46 45 175 195 166 195 166 199
-	200 3 47 45 44 175 195 166 199 175 199
-CONNECTORS 1
-	0 0 36
diff --git a/components/bodies/walkanim.pie b/components/bodies/walkanim.pie
deleted file mode 100644
index 3ada7ad..0000000
--- a/components/bodies/walkanim.pie
+++ /dev/null
@@ -1,124 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-7-barbarians-arizona.png 256 256
-LEVELS 4
-LEVEL 1
-POINTS 16 
-	10 0 -7 
-	10 0 6 
-	-8 0 6 
-	-8 0 -7 
-	6 0 0 
-	-7 0 0 
-	-7 33 0 
-	10 33 0 
-	3 0 -6 
-	3 0 5 
-	-1 32 5 
-	-1 32 -6 
-	-5 0 5 
-	-5 0 -6 
-	-2 32 -6 
-	-2 32 5
-POLYGONS 10
-	200 3 3 2 1 155 116 145 116 145 124
-	200 3 3 1 0 155 116 145 124 155 124
-	4200 3 7 6 5 2 1 14 18 28 146 16 146 16 162
-	4200 3 7 5 4 2 1 14 18 28 146 16 162 28 162
-	4200 3 6 7 4 2 1 14 18 136 98 124 98 124 114
-	4200 3 6 4 5 2 1 14 18 136 98 124 114 136 114
-	4200 3 11 10 9 2 1 8 18 7 146 1 146 1 162
-	4200 3 11 9 8 2 1 8 18 7 146 1 162 7 162
-	4200 3 15 14 13 2 1 8 18 158 98 152 98 152 114
-	4200 3 15 13 12 2 1 8 18 158 98 152 114 158 114
-LEVEL 2
-POINTS 18 
-	10 0 -13 
-	10 0 5 
-	-8 0 13 
-	-8 0 -4 
-	5 0 -14 
-	-7 0 11 
-	10 31 -6 
-	-7 31 0 
-	-7 0 9 
-	5 0 -11 
-	3 0 -11 
-	3 0 5 
-	-1 30 5 
-	-1 30 -11 
-	-4 0 12 
-	-4 0 -6 
-	-1 30 -6 
-	-1 30 12
-POLYGONS 10
-	200 3 3 2 1 155 116 145 116 145 124
-	200 3 3 1 0 155 116 145 124 155 124
-	4200 3 6 5 4 2 1 14 18 28 146 16 162 28 162
-	4200 3 6 7 5 2 1 14 18 28 146 16 146 16 162
-	4200 3 9 8 7 2 1 14 18 124 114 136 114 136 98
-	4200 3 9 7 6 2 1 14 18 124 114 136 98 124 98
-	4200 3 13 12 11 2 1 11 18 32 128 23 128 23 144
-	4200 3 13 11 10 2 1 11 18 32 128 23 144 32 144
-	4200 3 17 16 15 2 1 11 18 52 146 43 146 43 162
-	4200 3 17 15 14 2 1 11 18 52 146 43 162 52 162
-LEVEL 3
-POINTS 16 
-	10 0 -7 
-	10 0 6 
-	-8 0 6 
-	-8 0 -7 
-	6 0 0 
-	-7 0 0 
-	-7 33 0 
-	10 33 0 
-	3 0 -6 
-	3 0 5 
-	-1 32 5 
-	-1 32 -6 
-	-5 0 5 
-	-5 0 -6 
-	-2 32 -6 
-	-2 32 5
-POLYGONS 10
-	200 3 3 2 1 155 116 145 116 145 124
-	200 3 3 1 0 155 116 145 124 155 124
-	4200 3 7 6 5 2 1 14 18 28 146 16 146 16 162
-	4200 3 7 5 4 2 1 14 18 28 146 16 162 28 162
-	4200 3 6 7 4 2 1 14 18 136 98 124 98 124 114
-	4200 3 6 4 5 2 1 14 18 136 98 124 114 136 114
-	4200 3 11 10 9 2 1 8 18 7 146 1 146 1 162
-	4200 3 11 9 8 2 1 8 18 7 146 1 162 7 162
-	4200 3 15 14 13 2 1 8 18 158 98 152 98 152 114
-	4200 3 15 13 12 2 1 8 18 158 98 152 114 158 114
-LEVEL 4
-POINTS 18 
-	10 0 -4 
-	10 0 13 
-	-8 0 5 
-	-8 0 -13 
-	-7 0 -7 
-	-7 31 -3 
-	5 0 14 
-	10 31 0 
-	-7 0 -5 
-	5 0 12 
-	3 0 -5 
-	3 0 12 
-	-1 30 12 
-	-1 30 -5 
-	-4 0 5 
-	-4 0 -11 
-	-1 30 -11 
-	-1 30 5
-POLYGONS 10
-	200 3 3 2 1 155 116 145 116 145 124
-	200 3 3 1 0 155 116 145 124 155 124
-	4200 3 6 5 4 2 1 14 18 28 162 16 146 16 162
-	4200 3 6 7 5 2 1 14 18 28 162 28 146 16 146
-	4200 3 7 9 8 2 1 14 18 124 98 124 114 136 114
-	4200 3 7 8 5 2 1 14 18 124 98 136 114 136 98
-	4200 3 13 12 11 2 1 11 18 43 146 52 146 52 162
-	4200 3 13 11 10 2 1 11 18 43 146 52 162 43 162
-	4200 3 17 16 15 2 1 11 18 23 128 32 128 32 144
-	4200 3 17 15 14 2 1 11 18 23 128 32 144 23 144
\ No newline at end of file
diff --git a/components/prop/mibnkdrl.pie b/components/prop/mibnkdrl.pie
deleted file mode 100644
index be5e261..0000000
--- a/components/prop/mibnkdrl.pie
+++ /dev/null
@@ -1,101 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 34 
-	14 5 26 
-	14 12 26 
-	24 12 26 
-	24 5 26 
-	14 5 -27 
-	14 1 -21 
-	24 1 -21 
-	24 5 -27 
-	14 16 -21 
-	14 12 -27 
-	24 12 -27 
-	24 16 -21 
-	14 16 20 
-	24 16 20 
-	14 1 20 
-	24 1 20 
-	14 8 -17 
-	24 8 -17 
-	14 18 -22 
-	14 14 -27 
-	25 14 -27 
-	25 18 -22 
-	14 14 26 
-	14 18 21 
-	25 18 21 
-	25 14 26 
-	14 17 -22 
-	14 14 -26 
-	14 17 21 
-	14 14 25 
-	25 14 -26 
-	25 17 -22 
-	25 17 21 
-	25 14 25
-POLYGONS 60
-	200 3 3 2 1 233 222 233 220 235 220
-	200 3 3 1 0 233 222 235 220 235 222
-	200 3 7 6 5 229 220 229 222 231 222
-	200 3 7 5 4 229 220 231 222 231 220
-	200 3 11 10 9 225 222 225 220 227 220
-	200 3 11 9 8 225 222 227 220 227 222
-	200 3 2 13 12 225 222 225 220 227 220
-	200 3 2 12 1 225 222 227 220 227 222
-	200 3 6 15 14 237 220 237 222 239 222
-	200 3 6 14 5 237 220 239 222 239 220
-	200 3 15 3 0 237 222 237 222 239 222
-	200 3 15 0 14 237 222 239 222 239 222
-	200 3 10 7 4 225 220 225 222 227 222
-	200 3 10 4 9 225 220 227 222 227 220
-	200 3 0 1 12 235 222 235 220 235 220
-	200 3 0 12 16 235 222 235 220 233 221
-	200 3 12 8 9 235 220 233 220 233 220
-	200 3 12 9 16 235 220 233 220 233 221
-	200 3 9 4 5 233 220 233 222 233 222
-	200 3 9 5 16 233 220 233 222 233 221
-	200 3 5 14 0 233 222 235 222 235 222
-	200 3 5 0 16 233 222 235 222 233 221
-	200 3 2 3 15 235 220 235 222 235 222
-	200 3 2 15 17 235 220 235 222 233 221
-	200 3 11 13 2 233 220 235 220 235 220
-	200 3 11 2 17 233 220 235 220 233 221
-	200 3 7 10 11 233 222 233 220 233 220
-	200 3 7 11 17 233 222 233 220 233 221
-	200 3 15 6 7 235 222 233 222 233 222
-	200 3 15 7 17 235 222 233 222 233 221
-	200 3 13 11 8 221 222 221 220 223 220
-	200 3 13 8 12 221 222 223 220 223 222
-	200 3 21 20 19 217 222 217 220 219 220
-	200 3 21 19 18 217 222 219 220 219 222
-	200 3 25 24 23 233 222 233 220 235 220
-	200 3 25 23 22 233 222 235 220 235 222
-	200 3 19 27 26 225 222 225 222 225 220
-	200 3 19 26 18 225 222 225 220 225 220
-	200 3 18 26 28 225 220 225 220 227 220
-	200 3 18 28 23 225 220 227 220 227 220
-	200 3 22 23 28 227 222 227 220 227 220
-	200 3 22 28 29 227 222 227 220 227 222
-	200 3 31 30 20 225 220 225 222 225 222
-	200 3 31 20 21 225 220 225 222 225 220
-	200 3 32 31 21 227 220 225 220 225 220
-	200 3 32 21 24 227 220 225 220 227 220
-	200 3 32 24 25 227 220 227 220 227 222
-	200 3 32 25 33 227 220 227 222 227 222
-	200 3 24 21 18 221 222 221 220 223 220
-	200 3 24 18 23 221 222 223 220 223 222
-	200 3 30 31 26 237 220 237 220 239 220
-	200 3 30 26 27 237 220 239 220 239 220
-	200 3 31 32 28 237 220 237 222 239 222
-	200 3 31 28 26 237 220 239 222 239 220
-	200 3 32 33 29 237 222 237 222 239 222
-	200 3 32 29 28 237 222 239 222 239 222
-	200 3 33 25 22 237 222 237 222 239 222
-	200 3 33 22 29 237 222 239 222 239 222
-	200 3 20 30 27 237 220 237 220 239 220
-	200 3 20 27 19 237 220 239 220 239 220
\ No newline at end of file
diff --git a/components/prop/mibnkdrr.pie b/components/prop/mibnkdrr.pie
deleted file mode 100644
index b165ded..0000000
--- a/components/prop/mibnkdrr.pie
+++ /dev/null
@@ -1,101 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 34 
-	-24 16 20 
-	-24 16 -21 
-	-14 16 -21 
-	-14 16 20 
-	-24 5 26 
-	-24 12 26 
-	-14 12 26 
-	-14 5 26 
-	-24 5 -27 
-	-24 1 -21 
-	-14 1 -21 
-	-14 5 -27 
-	-24 12 -27 
-	-14 12 -27 
-	-24 1 20 
-	-14 1 20 
-	-24 8 -17 
-	-14 8 -17 
-	-25 14 26 
-	-25 18 21 
-	-14 18 21 
-	-14 14 26 
-	-25 18 -22 
-	-25 14 -27 
-	-14 14 -27 
-	-14 18 -22 
-	-25 17 -22 
-	-25 14 -26 
-	-25 17 21 
-	-25 14 25 
-	-14 14 -26 
-	-14 17 -22 
-	-14 17 21 
-	-14 14 25
-POLYGONS 60
-	200 3 3 2 1 221 222 221 220 223 220
-	200 3 3 1 0 221 222 223 220 223 222
-	200 3 7 6 5 233 222 233 220 235 220
-	200 3 7 5 4 233 222 235 220 235 222
-	200 3 11 10 9 229 220 229 222 231 222
-	200 3 11 9 8 229 220 231 222 231 220
-	200 3 2 13 12 225 222 225 220 227 220
-	200 3 2 12 1 225 222 227 220 227 222
-	200 3 6 3 0 225 222 225 220 227 220
-	200 3 6 0 5 225 222 227 220 227 222
-	200 3 10 15 14 237 220 237 222 239 222
-	200 3 10 14 9 237 220 239 222 239 220
-	200 3 15 7 4 237 222 237 222 239 222
-	200 3 15 4 14 237 222 239 222 239 222
-	200 3 13 11 8 225 220 225 222 227 222
-	200 3 13 8 12 225 220 227 222 227 220
-	200 3 4 5 0 235 222 235 220 235 220
-	200 3 4 0 16 235 222 235 220 233 221
-	200 3 0 1 12 235 220 233 220 233 220
-	200 3 0 12 16 235 220 233 220 233 221
-	200 3 12 8 9 233 220 233 222 233 222
-	200 3 12 9 16 233 220 233 222 233 221
-	200 3 9 14 4 233 222 235 222 235 222
-	200 3 9 4 16 233 222 235 222 233 221
-	200 3 6 7 15 235 220 235 222 235 222
-	200 3 6 15 17 235 220 235 222 233 221
-	200 3 2 3 6 233 220 235 220 235 220
-	200 3 2 6 17 233 220 235 220 233 221
-	200 3 11 13 2 233 222 233 220 233 220
-	200 3 11 2 17 233 222 233 220 233 221
-	200 3 15 10 11 235 222 233 222 233 222
-	200 3 15 11 17 235 222 233 222 233 221
-	200 3 21 20 19 233 222 233 220 235 220
-	200 3 21 19 18 233 222 235 220 235 222
-	200 3 25 24 23 217 222 217 220 219 220
-	200 3 25 23 22 217 222 219 220 219 222
-	200 3 23 27 26 225 222 225 222 225 220
-	200 3 23 26 22 225 222 225 220 225 220
-	200 3 22 26 28 225 220 225 220 227 220
-	200 3 22 28 19 225 220 227 220 227 220
-	200 3 18 19 28 227 222 227 220 227 220
-	200 3 18 28 29 227 222 227 220 227 222
-	200 3 31 30 24 225 220 225 222 225 222
-	200 3 31 24 25 225 220 225 222 225 220
-	200 3 32 31 25 227 220 225 220 225 220
-	200 3 32 25 20 227 220 225 220 227 220
-	200 3 32 20 21 227 220 227 220 227 222
-	200 3 32 21 33 227 220 227 222 227 222
-	200 3 20 25 22 221 222 221 220 223 220
-	200 3 20 22 19 221 222 223 220 223 222
-	200 3 30 31 26 237 220 237 220 239 220
-	200 3 30 26 27 237 220 239 220 239 220
-	200 3 31 32 28 237 220 237 222 239 222
-	200 3 31 28 26 237 220 239 222 239 220
-	200 3 32 33 29 237 222 237 222 239 222
-	200 3 32 29 28 237 222 239 222 239 222
-	200 3 33 21 18 237 222 237 222 239 222
-	200 3 33 18 29 237 222 239 222 239 222
-	200 3 24 30 27 237 220 237 220 239 220
-	200 3 24 27 23 237 220 239 220 239 220
\ No newline at end of file
diff --git a/components/prop/prhheli1.pie b/components/prop/prhheli1.pie
deleted file mode 100644
index 70ad583..0000000
--- a/components/prop/prhheli1.pie
+++ /dev/null
@@ -1,244 +0,0 @@
-PIE 3
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 0 0
-LEVELS 1
-LEVEL 1
-POINTS 99
-	-22 29 -17.4
-	-15.6635 30 -24.4
-	-22 20 -23.4
-	0 39 -5
-	-4.33013 39 -7.5
-	-5.19615 36 -7
-	4.33013 39 -12.5
-	5.19615 36 -13
-	0 36 -16
-	-4.33013 39 -12.5
-	-5.19615 36 -13
-	4.33013 39 -7.5
-	5.19615 36 -7
-	0 39 -15
-	0 36 -4
-	-3 43 -10
-	-3 39 -10
-	0 39 -7
-	0 43 -7
-	3 39 -10
-	0 43 -13
-	3 43 -10
-	0 39 -13
-	-19 36 2
-	-29 32 2
-	-29 32 29
-	-27 25 2
-	-27 25 29
-	-21 25 2
-	-21 25 35
-	-19 36 35
-	19 36 -17.4
-	-19 36 -17.4
-	19 36 9.00001
-	-19 36 9.00001
-	-10 36 68
-	-6.00001 51 53
-	-10 36 46
-	9.99997 36 68
-	9.99997 24 60
-	9.99997 36 46
-	-6.00001 51 68
-	-4.33013 54 63.5
-	0 54 66
-	0 54 56
-	4.33013 54 58.5
-	5.19615 51 64
-	4.33013 54 63.5
-	0 51 67
-	-5.19615 51 58
-	-4.33013 54 58.5
-	0 51 55
-	5.19615 51 58
-	-5.19615 51 64
-	-3 58 61
-	-3 54 61
-	0 54 64
-	0 58 64
-	3 54 61
-	0 58 58
-	3 58 61
-	0 54 58
-	-22 20 9.00001
-	-22 29 35.4
-	-22 29 9.00001
-	-22 22 35.4
-	-19 36 35.4
-	19 36 2
-	29 32 29
-	29 32 2
-	27 25 29
-	27 25 2
-	21 25 2
-	21 25 35
-	19 36 35
-	5.99997 51 68
-	5.99997 51 53
-	15.6635 30 -24.4
-	22 29 9.00001
-	-17 17 9.00001
-	-15.2244 17 -32.4
-	15.2244 17 -32.4
-	22 20 -23.4
-	22 20 9.00001
-	22 29 -17.4
-	17 17 9.00001
-	-10 24 60
-	5.99999 51 68
-	9.99999 36 68
-	9.99999 24 60
-	21 23 48.4
-	-21 23 48.4
-	22 29 35.4
-	22 22 35.4
-	19 36 35.4
-	-17 19 35.4
-	17 19 35.4
-	-17 19 35.4
-	17 19 35.4
-POLYGONS 138
-	200 3 0 1 2 0.27018 0.206666 0.275988 0.23884 0.317975 0.206769
-	200 3 3 4 5 0.408556 0.693014 0.420282 0.693014 0.420282 0.728492
-	200 3 6 7 8 0.443734 0.693014 0.443734 0.728492 0.45546 0.728492
-	200 3 4 9 10 0.420282 0.693014 0.443734 0.693014 0.443734 0.728492
-	200 3 6 11 12 0.443734 0.693014 0.420282 0.693014 0.420282 0.728492
-	200 3 9 13 8 0.443734 0.693014 0.45546 0.693014 0.45546 0.728492
-	200 3 11 3 14 0.420282 0.693014 0.408556 0.693014 0.408556 0.728492
-	200 3 11 6 3 0.459919 0.779883 0.459919 0.750005 0.434044 0.794822
-	200 3 9 4 13 0.40817 0.750005 0.40817 0.779883 0.434044 0.735066
-	200 3 15 16 17 0.055366 0.254187 0.048112 0.254187 0.048112 0.268411
-	200 3 18 17 19 0.055366 0.268411 0.055366 0.275665 0.06959 0.275665
-	200 3 20 21 19 0.06959 0.254187 0.06959 0.268411 0.076844 0.268411
-	200 3 20 22 16 0.06959 0.254187 0.06959 0.246933 0.055366 0.246933
-	200 3 20 15 18 0.06959 0.254187 0.055366 0.254187 0.055366 0.268411
-	200 3 23 24 25 0.572295 0.527942 0.542808 0.527942 0.542808 0.429128
-	200 3 24 26 27 0.542808 0.527942 0.567359 0.527942 0.567359 0.429128
-	200 3 26 28 27 0.567359 0.527942 0.542585 0.527942 0.567359 0.429128
-	200 3 29 30 25 0.573906 0.398551 0.536241 0.384337 0.542808 0.429128
-	200 3 23 28 24 0.410521 0.721298 0.410521 0.786473 0.463846 0.756848
-	200 3 31 32 33 0.085103 0.028362 0.005298 0.028362 0.085103 0.105342
-	200 3 32 1 0 0.250361 0.227609 0.275988 0.23884 0.27018 0.206666
-	200 3 14 3 5 0.408556 0.728492 0.408556 0.693014 0.420282 0.728492
-	200 3 13 6 8 0.45546 0.693014 0.443734 0.693014 0.45546 0.728492
-	200 3 5 4 10 0.420282 0.728492 0.420282 0.693014 0.443734 0.728492
-	200 3 7 6 12 0.443734 0.728492 0.443734 0.693014 0.420282 0.728492
-	200 3 10 9 8 0.443734 0.728492 0.443734 0.693014 0.45546 0.728492
-	200 3 12 11 14 0.420282 0.728492 0.420282 0.693014 0.408556 0.728492
-	200 3 6 13 3 0.459919 0.750005 0.434044 0.735066 0.434044 0.794822
-	200 3 4 3 13 0.40817 0.779883 0.434044 0.794822 0.434044 0.735066
-	200 3 18 15 17 0.055366 0.268411 0.055366 0.254187 0.048112 0.268411
-	200 3 21 18 19 0.06959 0.268411 0.055366 0.268411 0.06959 0.275665
-	200 3 22 20 19 0.076844 0.254187 0.06959 0.254187 0.076844 0.268411
-	200 3 15 20 16 0.055366 0.254187 0.06959 0.254187 0.055366 0.246933
-	200 3 21 20 18 0.06959 0.268411 0.06959 0.254187 0.055366 0.268411
-	200 3 30 23 25 0.572296 0.407169 0.572295 0.527942 0.542808 0.429128
-	200 3 25 24 27 0.542808 0.429128 0.542808 0.527942 0.567359 0.429128
-	200 3 28 29 27 0.542585 0.527942 0.542585 0.407169 0.567359 0.429128
-	200 3 27 29 25 0.567359 0.429128 0.573906 0.398551 0.542808 0.429128
-	200 3 28 26 24 0.410521 0.786473 0.446071 0.792398 0.463846 0.756848
-	200 3 31 1 32 0.251051 0.206118 0.329538 0.245364 0.334006 0.206118
-	200 3 32 34 33 0.005298 0.028362 0.005298 0.105342 0.085103 0.105342
-	200 3 35 36 37 0.027546 0.04893 0.063512 0.086169 0.074484 0.048941
-	200 3 38 39 40 0.027546 0.04893 0.046738 0.020155 0.074484 0.048941
-	200 3 41 36 35 0.027538 0.086162 0.063512 0.086169 0.027546 0.04893
-	200 3 42 43 44 0.40817 0.779883 0.434044 0.794822 0.434044 0.735066
-	200 3 45 44 43 0.459919 0.750005 0.434044 0.735066 0.434044 0.794822
-	200 3 46 47 48 0.420282 0.728492 0.420282 0.693014 0.408556 0.728492
-	200 3 49 50 51 0.443734 0.728492 0.443734 0.693014 0.45546 0.728492
-	200 3 52 45 46 0.443734 0.728492 0.443734 0.693014 0.420282 0.728492
-	200 3 53 42 49 0.420282 0.728492 0.420282 0.693014 0.443734 0.728492
-	200 3 44 45 51 0.45546 0.693014 0.443734 0.693014 0.45546 0.728492
-	200 3 48 43 53 0.408556 0.728492 0.408556 0.693014 0.420282 0.728492
-	200 3 54 55 56 0.055366 0.254187 0.048112 0.254187 0.048112 0.268411
-	200 3 57 56 58 0.055366 0.268411 0.055366 0.275665 0.06959 0.275665
-	200 3 59 60 58 0.06959 0.254187 0.06959 0.268411 0.076844 0.268411
-	200 3 59 61 55 0.06959 0.254187 0.06959 0.246933 0.055366 0.246933
-	200 3 59 54 57 0.06959 0.254187 0.055366 0.254187 0.055366 0.268411
-	200 3 50 42 44 0.40817 0.750005 0.40817 0.779883 0.434044 0.735066
-	200 3 47 45 43 0.459919 0.779883 0.459919 0.750005 0.434044 0.794822
-	200 3 47 43 48 0.420282 0.693014 0.408556 0.693014 0.408556 0.728492
-	200 3 50 44 51 0.443734 0.693014 0.45546 0.693014 0.45546 0.728492
-	200 3 45 47 46 0.443734 0.693014 0.420282 0.693014 0.420282 0.728492
-	200 3 42 50 49 0.420282 0.693014 0.443734 0.693014 0.443734 0.728492
-	200 3 45 52 51 0.443734 0.693014 0.443734 0.728492 0.45546 0.728492
-	200 3 43 42 53 0.408556 0.693014 0.420282 0.693014 0.420282 0.728492
-	200 3 57 54 56 0.055366 0.268411 0.055366 0.254187 0.048112 0.268411
-	200 3 60 57 58 0.06959 0.268411 0.055366 0.268411 0.06959 0.275665
-	200 3 61 59 58 0.076844 0.254187 0.06959 0.254187 0.076844 0.268411
-	200 3 54 59 55 0.055366 0.254187 0.06959 0.254187 0.055366 0.246933
-	200 3 60 59 57 0.06959 0.268411 0.06959 0.254187 0.055366 0.268411
-	200 3 62 63 64 0.028737 0.102828 0.047641 0.023898 0.047878 0.102709
-	200 3 65 63 62 0.02843 0.023924 0.047641 0.023898 0.028737 0.102828
-	200 3 66 64 63 0.08645 0.023656 0.047878 0.102709 0.047641 0.023898
-	200 3 62 64 0 0.028737 0.102828 0.047878 0.102709 0.047641 0.023898
-	200 3 2 62 0 0.02843 0.00591999 0.028737 0.102828 0.047641 0.023898
-	200 3 32 0 64 0.08645 0.023656 0.047641 0.023898 0.047878 0.102709
-	200 3 34 32 64 0.086541 0.102732 0.08645 0.023656 0.047878 0.102709
-	200 3 34 64 66 0.086541 0.102732 0.047878 0.102709 0.08645 0.023656
-	200 3 66 33 34 0.005298 0.028362 0.085103 0.105342 0.005298 0.105342
-	200 3 67 68 69 0.572295 0.527942 0.542808 0.429128 0.542808 0.527942
-	200 3 69 70 71 0.542808 0.527942 0.567359 0.429128 0.567359 0.527942
-	200 3 71 70 72 0.567359 0.527942 0.567359 0.429128 0.542585 0.527942
-	200 3 73 68 74 0.573906 0.398551 0.542808 0.429128 0.536241 0.384337
-	200 3 67 69 72 0.410521 0.721298 0.463846 0.756848 0.410521 0.786473
-	200 3 74 68 67 0.572296 0.407169 0.542808 0.429128 0.572295 0.527942
-	200 3 68 70 69 0.542808 0.429128 0.567359 0.429128 0.542808 0.527942
-	200 3 72 70 73 0.542585 0.527942 0.567359 0.429128 0.542585 0.407169
-	200 3 70 68 73 0.567359 0.429128 0.542808 0.429128 0.573906 0.398551
-	200 3 72 69 71 0.410521 0.786473 0.463846 0.756848 0.446071 0.792398
-	200 3 75 38 76 0.027538 0.086162 0.027546 0.04893 0.063512 0.086169
-	200 3 77 1 31 0.25552 0.245364 0.329538 0.245364 0.251051 0.206118
-	200 3 33 78 31 0.086541 0.102732 0.047878 0.102709 0.08645 0.023656
-	200 3 62 2 79 0.028737 0.102828 0.02843 0.00591999 0.028737 0.102828
-	200 3 62 79 65 0.028737 0.102828 0.028737 0.102828 0.02843 0.023924
-	200 3 2 1 80 0.317975 0.206769 0.275988 0.23884 0.332868 0.23884
-	200 3 81 77 82 0.332868 0.23884 0.275988 0.23884 0.317975 0.206769
-	200 3 83 84 78 0.028737 0.102828 0.047641 0.023898 0.047878 0.102709
-	200 3 82 84 83 0.02843 0.00591999 0.047641 0.023898 0.028737 0.102828
-	200 3 84 77 31 0.27018 0.206666 0.275988 0.23884 0.250361 0.227609
-	200 3 31 78 84 0.08645 0.023656 0.047878 0.102709 0.047641 0.023898
-	200 3 83 85 82 0.028737 0.102828 0.028737 0.102828 0.02843 0.00591999
-	200 3 82 77 84 0.317975 0.206769 0.275988 0.23884 0.27018 0.206666
-	200 3 38 40 76 0.027546 0.04893 0.074484 0.048941 0.063512 0.086169
-	200 3 35 37 86 0.027546 0.04893 0.074484 0.048941 0.046738 0.020155
-	200 3 87 35 88 0.055486 0.048438 0.033449 0.079336 0.060996 0.079336
-	200 3 88 86 89 0.060996 0.079336 0.033449 0.109044 0.060996 0.109044
-	200 3 41 35 87 0.038959 0.048438 0.033449 0.079336 0.055486 0.048438
-	200 3 35 86 88 0.033449 0.079336 0.033449 0.109044 0.060996 0.079336
-	200 3 90 89 91 0.076276 0.126869 0.060996 0.109044 0.017445 0.126756
-	200 3 89 86 91 0.060996 0.109044 0.033449 0.109044 0.017445 0.126756
-	200 3 41 76 36 0.061406 0.130947 0.033425 0.130947 0.033425 0.130947
-	200 3 40 36 76 0.070547 0.00690198 0.034767 0.041943 0.061602 0.041943
-	200 3 75 76 41 0.061406 0.130947 0.033425 0.130947 0.061406 0.130947
-	200 3 37 36 40 0.025822 0.00690198 0.034767 0.041943 0.070547 0.00690198
-	200 3 65 91 63 0.030391 0.102767 0.028193 0.058107 0.048996 0.095899
-	200 3 63 91 66 0.048996 0.095899 0.028193 0.058107 0.068914 0.088246
-	200 3 83 78 92 0.028737 0.102828 0.047878 0.102709 0.047641 0.023898
-	200 3 93 83 92 0.02843 0.023924 0.028737 0.102828 0.047641 0.023898
-	200 3 94 92 78 0.08645 0.023656 0.047641 0.023898 0.047878 0.102709
-	200 3 94 33 66 0.085103 0.028362 0.085103 0.105342 0.005298 0.028362
-	200 3 33 94 78 0.086541 0.102732 0.08645 0.023656 0.047878 0.102709
-	200 3 83 93 85 0.028737 0.102828 0.02843 0.023924 0.028737 0.102828
-	200 3 66 91 37 0.068914 0.088246 0.028193 0.058107 0.066857 0.051211
-	200 3 66 37 40 0.005503 0.02847 0.025822 0.00690198 0.070437 0.00681299
-	200 3 37 91 86 0.066857 0.051211 0.028193 0.058107 0.028597 0.024904
-	200 3 94 66 40 0.084878 0.02847 0.005503 0.02847 0.070437 0.00681299
-	200 3 65 95 91 0.030391 0.102767 0.02843 0.023924 0.021054 0.126759
-	200 3 2 80 79 0.02843 0.00591999 0.02843 0.00591999 0.028737 0.102828
-	200 3 79 95 65 0.028737 0.102828 0.02843 0.023924 0.02843 0.023924
-	200 3 85 81 82 0.028737 0.102828 0.02843 0.00591999 0.02843 0.00591999
-	200 3 93 96 85 0.02843 0.023924 0.02843 0.023924 0.028737 0.102828
-	200 3 94 40 90 0.068914 0.088246 0.066857 0.051211 0.026765 0.071837
-	200 3 92 94 90 0.048996 0.095899 0.068914 0.088246 0.026765 0.071837
-	200 3 93 92 90 0.030391 0.102767 0.048996 0.095899 0.026765 0.071837
-	200 3 40 39 90 0.066857 0.051211 0.028597 0.024904 0.026765 0.071837
-	200 3 93 90 96 0.030391 0.102767 0.026765 0.071837 0.02843 0.023924
-	200 3 97 98 90 0.023684 0.10306 0.070036 0.103149 0.076276 0.126139
-	200 3 91 97 90 0.017445 0.126026 0.023684 0.10306 0.076276 0.126139
diff --git a/components/prop/prhheli2.pie b/components/prop/prhheli2.pie
deleted file mode 100644
index 70ad583..0000000
--- a/components/prop/prhheli2.pie
+++ /dev/null
@@ -1,244 +0,0 @@
-PIE 3
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 0 0
-LEVELS 1
-LEVEL 1
-POINTS 99
-	-22 29 -17.4
-	-15.6635 30 -24.4
-	-22 20 -23.4
-	0 39 -5
-	-4.33013 39 -7.5
-	-5.19615 36 -7
-	4.33013 39 -12.5
-	5.19615 36 -13
-	0 36 -16
-	-4.33013 39 -12.5
-	-5.19615 36 -13
-	4.33013 39 -7.5
-	5.19615 36 -7
-	0 39 -15
-	0 36 -4
-	-3 43 -10
-	-3 39 -10
-	0 39 -7
-	0 43 -7
-	3 39 -10
-	0 43 -13
-	3 43 -10
-	0 39 -13
-	-19 36 2
-	-29 32 2
-	-29 32 29
-	-27 25 2
-	-27 25 29
-	-21 25 2
-	-21 25 35
-	-19 36 35
-	19 36 -17.4
-	-19 36 -17.4
-	19 36 9.00001
-	-19 36 9.00001
-	-10 36 68
-	-6.00001 51 53
-	-10 36 46
-	9.99997 36 68
-	9.99997 24 60
-	9.99997 36 46
-	-6.00001 51 68
-	-4.33013 54 63.5
-	0 54 66
-	0 54 56
-	4.33013 54 58.5
-	5.19615 51 64
-	4.33013 54 63.5
-	0 51 67
-	-5.19615 51 58
-	-4.33013 54 58.5
-	0 51 55
-	5.19615 51 58
-	-5.19615 51 64
-	-3 58 61
-	-3 54 61
-	0 54 64
-	0 58 64
-	3 54 61
-	0 58 58
-	3 58 61
-	0 54 58
-	-22 20 9.00001
-	-22 29 35.4
-	-22 29 9.00001
-	-22 22 35.4
-	-19 36 35.4
-	19 36 2
-	29 32 29
-	29 32 2
-	27 25 29
-	27 25 2
-	21 25 2
-	21 25 35
-	19 36 35
-	5.99997 51 68
-	5.99997 51 53
-	15.6635 30 -24.4
-	22 29 9.00001
-	-17 17 9.00001
-	-15.2244 17 -32.4
-	15.2244 17 -32.4
-	22 20 -23.4
-	22 20 9.00001
-	22 29 -17.4
-	17 17 9.00001
-	-10 24 60
-	5.99999 51 68
-	9.99999 36 68
-	9.99999 24 60
-	21 23 48.4
-	-21 23 48.4
-	22 29 35.4
-	22 22 35.4
-	19 36 35.4
-	-17 19 35.4
-	17 19 35.4
-	-17 19 35.4
-	17 19 35.4
-POLYGONS 138
-	200 3 0 1 2 0.27018 0.206666 0.275988 0.23884 0.317975 0.206769
-	200 3 3 4 5 0.408556 0.693014 0.420282 0.693014 0.420282 0.728492
-	200 3 6 7 8 0.443734 0.693014 0.443734 0.728492 0.45546 0.728492
-	200 3 4 9 10 0.420282 0.693014 0.443734 0.693014 0.443734 0.728492
-	200 3 6 11 12 0.443734 0.693014 0.420282 0.693014 0.420282 0.728492
-	200 3 9 13 8 0.443734 0.693014 0.45546 0.693014 0.45546 0.728492
-	200 3 11 3 14 0.420282 0.693014 0.408556 0.693014 0.408556 0.728492
-	200 3 11 6 3 0.459919 0.779883 0.459919 0.750005 0.434044 0.794822
-	200 3 9 4 13 0.40817 0.750005 0.40817 0.779883 0.434044 0.735066
-	200 3 15 16 17 0.055366 0.254187 0.048112 0.254187 0.048112 0.268411
-	200 3 18 17 19 0.055366 0.268411 0.055366 0.275665 0.06959 0.275665
-	200 3 20 21 19 0.06959 0.254187 0.06959 0.268411 0.076844 0.268411
-	200 3 20 22 16 0.06959 0.254187 0.06959 0.246933 0.055366 0.246933
-	200 3 20 15 18 0.06959 0.254187 0.055366 0.254187 0.055366 0.268411
-	200 3 23 24 25 0.572295 0.527942 0.542808 0.527942 0.542808 0.429128
-	200 3 24 26 27 0.542808 0.527942 0.567359 0.527942 0.567359 0.429128
-	200 3 26 28 27 0.567359 0.527942 0.542585 0.527942 0.567359 0.429128
-	200 3 29 30 25 0.573906 0.398551 0.536241 0.384337 0.542808 0.429128
-	200 3 23 28 24 0.410521 0.721298 0.410521 0.786473 0.463846 0.756848
-	200 3 31 32 33 0.085103 0.028362 0.005298 0.028362 0.085103 0.105342
-	200 3 32 1 0 0.250361 0.227609 0.275988 0.23884 0.27018 0.206666
-	200 3 14 3 5 0.408556 0.728492 0.408556 0.693014 0.420282 0.728492
-	200 3 13 6 8 0.45546 0.693014 0.443734 0.693014 0.45546 0.728492
-	200 3 5 4 10 0.420282 0.728492 0.420282 0.693014 0.443734 0.728492
-	200 3 7 6 12 0.443734 0.728492 0.443734 0.693014 0.420282 0.728492
-	200 3 10 9 8 0.443734 0.728492 0.443734 0.693014 0.45546 0.728492
-	200 3 12 11 14 0.420282 0.728492 0.420282 0.693014 0.408556 0.728492
-	200 3 6 13 3 0.459919 0.750005 0.434044 0.735066 0.434044 0.794822
-	200 3 4 3 13 0.40817 0.779883 0.434044 0.794822 0.434044 0.735066
-	200 3 18 15 17 0.055366 0.268411 0.055366 0.254187 0.048112 0.268411
-	200 3 21 18 19 0.06959 0.268411 0.055366 0.268411 0.06959 0.275665
-	200 3 22 20 19 0.076844 0.254187 0.06959 0.254187 0.076844 0.268411
-	200 3 15 20 16 0.055366 0.254187 0.06959 0.254187 0.055366 0.246933
-	200 3 21 20 18 0.06959 0.268411 0.06959 0.254187 0.055366 0.268411
-	200 3 30 23 25 0.572296 0.407169 0.572295 0.527942 0.542808 0.429128
-	200 3 25 24 27 0.542808 0.429128 0.542808 0.527942 0.567359 0.429128
-	200 3 28 29 27 0.542585 0.527942 0.542585 0.407169 0.567359 0.429128
-	200 3 27 29 25 0.567359 0.429128 0.573906 0.398551 0.542808 0.429128
-	200 3 28 26 24 0.410521 0.786473 0.446071 0.792398 0.463846 0.756848
-	200 3 31 1 32 0.251051 0.206118 0.329538 0.245364 0.334006 0.206118
-	200 3 32 34 33 0.005298 0.028362 0.005298 0.105342 0.085103 0.105342
-	200 3 35 36 37 0.027546 0.04893 0.063512 0.086169 0.074484 0.048941
-	200 3 38 39 40 0.027546 0.04893 0.046738 0.020155 0.074484 0.048941
-	200 3 41 36 35 0.027538 0.086162 0.063512 0.086169 0.027546 0.04893
-	200 3 42 43 44 0.40817 0.779883 0.434044 0.794822 0.434044 0.735066
-	200 3 45 44 43 0.459919 0.750005 0.434044 0.735066 0.434044 0.794822
-	200 3 46 47 48 0.420282 0.728492 0.420282 0.693014 0.408556 0.728492
-	200 3 49 50 51 0.443734 0.728492 0.443734 0.693014 0.45546 0.728492
-	200 3 52 45 46 0.443734 0.728492 0.443734 0.693014 0.420282 0.728492
-	200 3 53 42 49 0.420282 0.728492 0.420282 0.693014 0.443734 0.728492
-	200 3 44 45 51 0.45546 0.693014 0.443734 0.693014 0.45546 0.728492
-	200 3 48 43 53 0.408556 0.728492 0.408556 0.693014 0.420282 0.728492
-	200 3 54 55 56 0.055366 0.254187 0.048112 0.254187 0.048112 0.268411
-	200 3 57 56 58 0.055366 0.268411 0.055366 0.275665 0.06959 0.275665
-	200 3 59 60 58 0.06959 0.254187 0.06959 0.268411 0.076844 0.268411
-	200 3 59 61 55 0.06959 0.254187 0.06959 0.246933 0.055366 0.246933
-	200 3 59 54 57 0.06959 0.254187 0.055366 0.254187 0.055366 0.268411
-	200 3 50 42 44 0.40817 0.750005 0.40817 0.779883 0.434044 0.735066
-	200 3 47 45 43 0.459919 0.779883 0.459919 0.750005 0.434044 0.794822
-	200 3 47 43 48 0.420282 0.693014 0.408556 0.693014 0.408556 0.728492
-	200 3 50 44 51 0.443734 0.693014 0.45546 0.693014 0.45546 0.728492
-	200 3 45 47 46 0.443734 0.693014 0.420282 0.693014 0.420282 0.728492
-	200 3 42 50 49 0.420282 0.693014 0.443734 0.693014 0.443734 0.728492
-	200 3 45 52 51 0.443734 0.693014 0.443734 0.728492 0.45546 0.728492
-	200 3 43 42 53 0.408556 0.693014 0.420282 0.693014 0.420282 0.728492
-	200 3 57 54 56 0.055366 0.268411 0.055366 0.254187 0.048112 0.268411
-	200 3 60 57 58 0.06959 0.268411 0.055366 0.268411 0.06959 0.275665
-	200 3 61 59 58 0.076844 0.254187 0.06959 0.254187 0.076844 0.268411
-	200 3 54 59 55 0.055366 0.254187 0.06959 0.254187 0.055366 0.246933
-	200 3 60 59 57 0.06959 0.268411 0.06959 0.254187 0.055366 0.268411
-	200 3 62 63 64 0.028737 0.102828 0.047641 0.023898 0.047878 0.102709
-	200 3 65 63 62 0.02843 0.023924 0.047641 0.023898 0.028737 0.102828
-	200 3 66 64 63 0.08645 0.023656 0.047878 0.102709 0.047641 0.023898
-	200 3 62 64 0 0.028737 0.102828 0.047878 0.102709 0.047641 0.023898
-	200 3 2 62 0 0.02843 0.00591999 0.028737 0.102828 0.047641 0.023898
-	200 3 32 0 64 0.08645 0.023656 0.047641 0.023898 0.047878 0.102709
-	200 3 34 32 64 0.086541 0.102732 0.08645 0.023656 0.047878 0.102709
-	200 3 34 64 66 0.086541 0.102732 0.047878 0.102709 0.08645 0.023656
-	200 3 66 33 34 0.005298 0.028362 0.085103 0.105342 0.005298 0.105342
-	200 3 67 68 69 0.572295 0.527942 0.542808 0.429128 0.542808 0.527942
-	200 3 69 70 71 0.542808 0.527942 0.567359 0.429128 0.567359 0.527942
-	200 3 71 70 72 0.567359 0.527942 0.567359 0.429128 0.542585 0.527942
-	200 3 73 68 74 0.573906 0.398551 0.542808 0.429128 0.536241 0.384337
-	200 3 67 69 72 0.410521 0.721298 0.463846 0.756848 0.410521 0.786473
-	200 3 74 68 67 0.572296 0.407169 0.542808 0.429128 0.572295 0.527942
-	200 3 68 70 69 0.542808 0.429128 0.567359 0.429128 0.542808 0.527942
-	200 3 72 70 73 0.542585 0.527942 0.567359 0.429128 0.542585 0.407169
-	200 3 70 68 73 0.567359 0.429128 0.542808 0.429128 0.573906 0.398551
-	200 3 72 69 71 0.410521 0.786473 0.463846 0.756848 0.446071 0.792398
-	200 3 75 38 76 0.027538 0.086162 0.027546 0.04893 0.063512 0.086169
-	200 3 77 1 31 0.25552 0.245364 0.329538 0.245364 0.251051 0.206118
-	200 3 33 78 31 0.086541 0.102732 0.047878 0.102709 0.08645 0.023656
-	200 3 62 2 79 0.028737 0.102828 0.02843 0.00591999 0.028737 0.102828
-	200 3 62 79 65 0.028737 0.102828 0.028737 0.102828 0.02843 0.023924
-	200 3 2 1 80 0.317975 0.206769 0.275988 0.23884 0.332868 0.23884
-	200 3 81 77 82 0.332868 0.23884 0.275988 0.23884 0.317975 0.206769
-	200 3 83 84 78 0.028737 0.102828 0.047641 0.023898 0.047878 0.102709
-	200 3 82 84 83 0.02843 0.00591999 0.047641 0.023898 0.028737 0.102828
-	200 3 84 77 31 0.27018 0.206666 0.275988 0.23884 0.250361 0.227609
-	200 3 31 78 84 0.08645 0.023656 0.047878 0.102709 0.047641 0.023898
-	200 3 83 85 82 0.028737 0.102828 0.028737 0.102828 0.02843 0.00591999
-	200 3 82 77 84 0.317975 0.206769 0.275988 0.23884 0.27018 0.206666
-	200 3 38 40 76 0.027546 0.04893 0.074484 0.048941 0.063512 0.086169
-	200 3 35 37 86 0.027546 0.04893 0.074484 0.048941 0.046738 0.020155
-	200 3 87 35 88 0.055486 0.048438 0.033449 0.079336 0.060996 0.079336
-	200 3 88 86 89 0.060996 0.079336 0.033449 0.109044 0.060996 0.109044
-	200 3 41 35 87 0.038959 0.048438 0.033449 0.079336 0.055486 0.048438
-	200 3 35 86 88 0.033449 0.079336 0.033449 0.109044 0.060996 0.079336
-	200 3 90 89 91 0.076276 0.126869 0.060996 0.109044 0.017445 0.126756
-	200 3 89 86 91 0.060996 0.109044 0.033449 0.109044 0.017445 0.126756
-	200 3 41 76 36 0.061406 0.130947 0.033425 0.130947 0.033425 0.130947
-	200 3 40 36 76 0.070547 0.00690198 0.034767 0.041943 0.061602 0.041943
-	200 3 75 76 41 0.061406 0.130947 0.033425 0.130947 0.061406 0.130947
-	200 3 37 36 40 0.025822 0.00690198 0.034767 0.041943 0.070547 0.00690198
-	200 3 65 91 63 0.030391 0.102767 0.028193 0.058107 0.048996 0.095899
-	200 3 63 91 66 0.048996 0.095899 0.028193 0.058107 0.068914 0.088246
-	200 3 83 78 92 0.028737 0.102828 0.047878 0.102709 0.047641 0.023898
-	200 3 93 83 92 0.02843 0.023924 0.028737 0.102828 0.047641 0.023898
-	200 3 94 92 78 0.08645 0.023656 0.047641 0.023898 0.047878 0.102709
-	200 3 94 33 66 0.085103 0.028362 0.085103 0.105342 0.005298 0.028362
-	200 3 33 94 78 0.086541 0.102732 0.08645 0.023656 0.047878 0.102709
-	200 3 83 93 85 0.028737 0.102828 0.02843 0.023924 0.028737 0.102828
-	200 3 66 91 37 0.068914 0.088246 0.028193 0.058107 0.066857 0.051211
-	200 3 66 37 40 0.005503 0.02847 0.025822 0.00690198 0.070437 0.00681299
-	200 3 37 91 86 0.066857 0.051211 0.028193 0.058107 0.028597 0.024904
-	200 3 94 66 40 0.084878 0.02847 0.005503 0.02847 0.070437 0.00681299
-	200 3 65 95 91 0.030391 0.102767 0.02843 0.023924 0.021054 0.126759
-	200 3 2 80 79 0.02843 0.00591999 0.02843 0.00591999 0.028737 0.102828
-	200 3 79 95 65 0.028737 0.102828 0.02843 0.023924 0.02843 0.023924
-	200 3 85 81 82 0.028737 0.102828 0.02843 0.00591999 0.02843 0.00591999
-	200 3 93 96 85 0.02843 0.023924 0.02843 0.023924 0.028737 0.102828
-	200 3 94 40 90 0.068914 0.088246 0.066857 0.051211 0.026765 0.071837
-	200 3 92 94 90 0.048996 0.095899 0.068914 0.088246 0.026765 0.071837
-	200 3 93 92 90 0.030391 0.102767 0.048996 0.095899 0.026765 0.071837
-	200 3 40 39 90 0.066857 0.051211 0.028597 0.024904 0.026765 0.071837
-	200 3 93 90 96 0.030391 0.102767 0.026765 0.071837 0.02843 0.023924
-	200 3 97 98 90 0.023684 0.10306 0.070036 0.103149 0.076276 0.126139
-	200 3 91 97 90 0.017445 0.126026 0.023684 0.10306 0.076276 0.126139
diff --git a/components/prop/prhheli3.pie b/components/prop/prhheli3.pie
deleted file mode 100644
index 70ad583..0000000
--- a/components/prop/prhheli3.pie
+++ /dev/null
@@ -1,244 +0,0 @@
-PIE 3
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 0 0
-LEVELS 1
-LEVEL 1
-POINTS 99
-	-22 29 -17.4
-	-15.6635 30 -24.4
-	-22 20 -23.4
-	0 39 -5
-	-4.33013 39 -7.5
-	-5.19615 36 -7
-	4.33013 39 -12.5
-	5.19615 36 -13
-	0 36 -16
-	-4.33013 39 -12.5
-	-5.19615 36 -13
-	4.33013 39 -7.5
-	5.19615 36 -7
-	0 39 -15
-	0 36 -4
-	-3 43 -10
-	-3 39 -10
-	0 39 -7
-	0 43 -7
-	3 39 -10
-	0 43 -13
-	3 43 -10
-	0 39 -13
-	-19 36 2
-	-29 32 2
-	-29 32 29
-	-27 25 2
-	-27 25 29
-	-21 25 2
-	-21 25 35
-	-19 36 35
-	19 36 -17.4
-	-19 36 -17.4
-	19 36 9.00001
-	-19 36 9.00001
-	-10 36 68
-	-6.00001 51 53
-	-10 36 46
-	9.99997 36 68
-	9.99997 24 60
-	9.99997 36 46
-	-6.00001 51 68
-	-4.33013 54 63.5
-	0 54 66
-	0 54 56
-	4.33013 54 58.5
-	5.19615 51 64
-	4.33013 54 63.5
-	0 51 67
-	-5.19615 51 58
-	-4.33013 54 58.5
-	0 51 55
-	5.19615 51 58
-	-5.19615 51 64
-	-3 58 61
-	-3 54 61
-	0 54 64
-	0 58 64
-	3 54 61
-	0 58 58
-	3 58 61
-	0 54 58
-	-22 20 9.00001
-	-22 29 35.4
-	-22 29 9.00001
-	-22 22 35.4
-	-19 36 35.4
-	19 36 2
-	29 32 29
-	29 32 2
-	27 25 29
-	27 25 2
-	21 25 2
-	21 25 35
-	19 36 35
-	5.99997 51 68
-	5.99997 51 53
-	15.6635 30 -24.4
-	22 29 9.00001
-	-17 17 9.00001
-	-15.2244 17 -32.4
-	15.2244 17 -32.4
-	22 20 -23.4
-	22 20 9.00001
-	22 29 -17.4
-	17 17 9.00001
-	-10 24 60
-	5.99999 51 68
-	9.99999 36 68
-	9.99999 24 60
-	21 23 48.4
-	-21 23 48.4
-	22 29 35.4
-	22 22 35.4
-	19 36 35.4
-	-17 19 35.4
-	17 19 35.4
-	-17 19 35.4
-	17 19 35.4
-POLYGONS 138
-	200 3 0 1 2 0.27018 0.206666 0.275988 0.23884 0.317975 0.206769
-	200 3 3 4 5 0.408556 0.693014 0.420282 0.693014 0.420282 0.728492
-	200 3 6 7 8 0.443734 0.693014 0.443734 0.728492 0.45546 0.728492
-	200 3 4 9 10 0.420282 0.693014 0.443734 0.693014 0.443734 0.728492
-	200 3 6 11 12 0.443734 0.693014 0.420282 0.693014 0.420282 0.728492
-	200 3 9 13 8 0.443734 0.693014 0.45546 0.693014 0.45546 0.728492
-	200 3 11 3 14 0.420282 0.693014 0.408556 0.693014 0.408556 0.728492
-	200 3 11 6 3 0.459919 0.779883 0.459919 0.750005 0.434044 0.794822
-	200 3 9 4 13 0.40817 0.750005 0.40817 0.779883 0.434044 0.735066
-	200 3 15 16 17 0.055366 0.254187 0.048112 0.254187 0.048112 0.268411
-	200 3 18 17 19 0.055366 0.268411 0.055366 0.275665 0.06959 0.275665
-	200 3 20 21 19 0.06959 0.254187 0.06959 0.268411 0.076844 0.268411
-	200 3 20 22 16 0.06959 0.254187 0.06959 0.246933 0.055366 0.246933
-	200 3 20 15 18 0.06959 0.254187 0.055366 0.254187 0.055366 0.268411
-	200 3 23 24 25 0.572295 0.527942 0.542808 0.527942 0.542808 0.429128
-	200 3 24 26 27 0.542808 0.527942 0.567359 0.527942 0.567359 0.429128
-	200 3 26 28 27 0.567359 0.527942 0.542585 0.527942 0.567359 0.429128
-	200 3 29 30 25 0.573906 0.398551 0.536241 0.384337 0.542808 0.429128
-	200 3 23 28 24 0.410521 0.721298 0.410521 0.786473 0.463846 0.756848
-	200 3 31 32 33 0.085103 0.028362 0.005298 0.028362 0.085103 0.105342
-	200 3 32 1 0 0.250361 0.227609 0.275988 0.23884 0.27018 0.206666
-	200 3 14 3 5 0.408556 0.728492 0.408556 0.693014 0.420282 0.728492
-	200 3 13 6 8 0.45546 0.693014 0.443734 0.693014 0.45546 0.728492
-	200 3 5 4 10 0.420282 0.728492 0.420282 0.693014 0.443734 0.728492
-	200 3 7 6 12 0.443734 0.728492 0.443734 0.693014 0.420282 0.728492
-	200 3 10 9 8 0.443734 0.728492 0.443734 0.693014 0.45546 0.728492
-	200 3 12 11 14 0.420282 0.728492 0.420282 0.693014 0.408556 0.728492
-	200 3 6 13 3 0.459919 0.750005 0.434044 0.735066 0.434044 0.794822
-	200 3 4 3 13 0.40817 0.779883 0.434044 0.794822 0.434044 0.735066
-	200 3 18 15 17 0.055366 0.268411 0.055366 0.254187 0.048112 0.268411
-	200 3 21 18 19 0.06959 0.268411 0.055366 0.268411 0.06959 0.275665
-	200 3 22 20 19 0.076844 0.254187 0.06959 0.254187 0.076844 0.268411
-	200 3 15 20 16 0.055366 0.254187 0.06959 0.254187 0.055366 0.246933
-	200 3 21 20 18 0.06959 0.268411 0.06959 0.254187 0.055366 0.268411
-	200 3 30 23 25 0.572296 0.407169 0.572295 0.527942 0.542808 0.429128
-	200 3 25 24 27 0.542808 0.429128 0.542808 0.527942 0.567359 0.429128
-	200 3 28 29 27 0.542585 0.527942 0.542585 0.407169 0.567359 0.429128
-	200 3 27 29 25 0.567359 0.429128 0.573906 0.398551 0.542808 0.429128
-	200 3 28 26 24 0.410521 0.786473 0.446071 0.792398 0.463846 0.756848
-	200 3 31 1 32 0.251051 0.206118 0.329538 0.245364 0.334006 0.206118
-	200 3 32 34 33 0.005298 0.028362 0.005298 0.105342 0.085103 0.105342
-	200 3 35 36 37 0.027546 0.04893 0.063512 0.086169 0.074484 0.048941
-	200 3 38 39 40 0.027546 0.04893 0.046738 0.020155 0.074484 0.048941
-	200 3 41 36 35 0.027538 0.086162 0.063512 0.086169 0.027546 0.04893
-	200 3 42 43 44 0.40817 0.779883 0.434044 0.794822 0.434044 0.735066
-	200 3 45 44 43 0.459919 0.750005 0.434044 0.735066 0.434044 0.794822
-	200 3 46 47 48 0.420282 0.728492 0.420282 0.693014 0.408556 0.728492
-	200 3 49 50 51 0.443734 0.728492 0.443734 0.693014 0.45546 0.728492
-	200 3 52 45 46 0.443734 0.728492 0.443734 0.693014 0.420282 0.728492
-	200 3 53 42 49 0.420282 0.728492 0.420282 0.693014 0.443734 0.728492
-	200 3 44 45 51 0.45546 0.693014 0.443734 0.693014 0.45546 0.728492
-	200 3 48 43 53 0.408556 0.728492 0.408556 0.693014 0.420282 0.728492
-	200 3 54 55 56 0.055366 0.254187 0.048112 0.254187 0.048112 0.268411
-	200 3 57 56 58 0.055366 0.268411 0.055366 0.275665 0.06959 0.275665
-	200 3 59 60 58 0.06959 0.254187 0.06959 0.268411 0.076844 0.268411
-	200 3 59 61 55 0.06959 0.254187 0.06959 0.246933 0.055366 0.246933
-	200 3 59 54 57 0.06959 0.254187 0.055366 0.254187 0.055366 0.268411
-	200 3 50 42 44 0.40817 0.750005 0.40817 0.779883 0.434044 0.735066
-	200 3 47 45 43 0.459919 0.779883 0.459919 0.750005 0.434044 0.794822
-	200 3 47 43 48 0.420282 0.693014 0.408556 0.693014 0.408556 0.728492
-	200 3 50 44 51 0.443734 0.693014 0.45546 0.693014 0.45546 0.728492
-	200 3 45 47 46 0.443734 0.693014 0.420282 0.693014 0.420282 0.728492
-	200 3 42 50 49 0.420282 0.693014 0.443734 0.693014 0.443734 0.728492
-	200 3 45 52 51 0.443734 0.693014 0.443734 0.728492 0.45546 0.728492
-	200 3 43 42 53 0.408556 0.693014 0.420282 0.693014 0.420282 0.728492
-	200 3 57 54 56 0.055366 0.268411 0.055366 0.254187 0.048112 0.268411
-	200 3 60 57 58 0.06959 0.268411 0.055366 0.268411 0.06959 0.275665
-	200 3 61 59 58 0.076844 0.254187 0.06959 0.254187 0.076844 0.268411
-	200 3 54 59 55 0.055366 0.254187 0.06959 0.254187 0.055366 0.246933
-	200 3 60 59 57 0.06959 0.268411 0.06959 0.254187 0.055366 0.268411
-	200 3 62 63 64 0.028737 0.102828 0.047641 0.023898 0.047878 0.102709
-	200 3 65 63 62 0.02843 0.023924 0.047641 0.023898 0.028737 0.102828
-	200 3 66 64 63 0.08645 0.023656 0.047878 0.102709 0.047641 0.023898
-	200 3 62 64 0 0.028737 0.102828 0.047878 0.102709 0.047641 0.023898
-	200 3 2 62 0 0.02843 0.00591999 0.028737 0.102828 0.047641 0.023898
-	200 3 32 0 64 0.08645 0.023656 0.047641 0.023898 0.047878 0.102709
-	200 3 34 32 64 0.086541 0.102732 0.08645 0.023656 0.047878 0.102709
-	200 3 34 64 66 0.086541 0.102732 0.047878 0.102709 0.08645 0.023656
-	200 3 66 33 34 0.005298 0.028362 0.085103 0.105342 0.005298 0.105342
-	200 3 67 68 69 0.572295 0.527942 0.542808 0.429128 0.542808 0.527942
-	200 3 69 70 71 0.542808 0.527942 0.567359 0.429128 0.567359 0.527942
-	200 3 71 70 72 0.567359 0.527942 0.567359 0.429128 0.542585 0.527942
-	200 3 73 68 74 0.573906 0.398551 0.542808 0.429128 0.536241 0.384337
-	200 3 67 69 72 0.410521 0.721298 0.463846 0.756848 0.410521 0.786473
-	200 3 74 68 67 0.572296 0.407169 0.542808 0.429128 0.572295 0.527942
-	200 3 68 70 69 0.542808 0.429128 0.567359 0.429128 0.542808 0.527942
-	200 3 72 70 73 0.542585 0.527942 0.567359 0.429128 0.542585 0.407169
-	200 3 70 68 73 0.567359 0.429128 0.542808 0.429128 0.573906 0.398551
-	200 3 72 69 71 0.410521 0.786473 0.463846 0.756848 0.446071 0.792398
-	200 3 75 38 76 0.027538 0.086162 0.027546 0.04893 0.063512 0.086169
-	200 3 77 1 31 0.25552 0.245364 0.329538 0.245364 0.251051 0.206118
-	200 3 33 78 31 0.086541 0.102732 0.047878 0.102709 0.08645 0.023656
-	200 3 62 2 79 0.028737 0.102828 0.02843 0.00591999 0.028737 0.102828
-	200 3 62 79 65 0.028737 0.102828 0.028737 0.102828 0.02843 0.023924
-	200 3 2 1 80 0.317975 0.206769 0.275988 0.23884 0.332868 0.23884
-	200 3 81 77 82 0.332868 0.23884 0.275988 0.23884 0.317975 0.206769
-	200 3 83 84 78 0.028737 0.102828 0.047641 0.023898 0.047878 0.102709
-	200 3 82 84 83 0.02843 0.00591999 0.047641 0.023898 0.028737 0.102828
-	200 3 84 77 31 0.27018 0.206666 0.275988 0.23884 0.250361 0.227609
-	200 3 31 78 84 0.08645 0.023656 0.047878 0.102709 0.047641 0.023898
-	200 3 83 85 82 0.028737 0.102828 0.028737 0.102828 0.02843 0.00591999
-	200 3 82 77 84 0.317975 0.206769 0.275988 0.23884 0.27018 0.206666
-	200 3 38 40 76 0.027546 0.04893 0.074484 0.048941 0.063512 0.086169
-	200 3 35 37 86 0.027546 0.04893 0.074484 0.048941 0.046738 0.020155
-	200 3 87 35 88 0.055486 0.048438 0.033449 0.079336 0.060996 0.079336
-	200 3 88 86 89 0.060996 0.079336 0.033449 0.109044 0.060996 0.109044
-	200 3 41 35 87 0.038959 0.048438 0.033449 0.079336 0.055486 0.048438
-	200 3 35 86 88 0.033449 0.079336 0.033449 0.109044 0.060996 0.079336
-	200 3 90 89 91 0.076276 0.126869 0.060996 0.109044 0.017445 0.126756
-	200 3 89 86 91 0.060996 0.109044 0.033449 0.109044 0.017445 0.126756
-	200 3 41 76 36 0.061406 0.130947 0.033425 0.130947 0.033425 0.130947
-	200 3 40 36 76 0.070547 0.00690198 0.034767 0.041943 0.061602 0.041943
-	200 3 75 76 41 0.061406 0.130947 0.033425 0.130947 0.061406 0.130947
-	200 3 37 36 40 0.025822 0.00690198 0.034767 0.041943 0.070547 0.00690198
-	200 3 65 91 63 0.030391 0.102767 0.028193 0.058107 0.048996 0.095899
-	200 3 63 91 66 0.048996 0.095899 0.028193 0.058107 0.068914 0.088246
-	200 3 83 78 92 0.028737 0.102828 0.047878 0.102709 0.047641 0.023898
-	200 3 93 83 92 0.02843 0.023924 0.028737 0.102828 0.047641 0.023898
-	200 3 94 92 78 0.08645 0.023656 0.047641 0.023898 0.047878 0.102709
-	200 3 94 33 66 0.085103 0.028362 0.085103 0.105342 0.005298 0.028362
-	200 3 33 94 78 0.086541 0.102732 0.08645 0.023656 0.047878 0.102709
-	200 3 83 93 85 0.028737 0.102828 0.02843 0.023924 0.028737 0.102828
-	200 3 66 91 37 0.068914 0.088246 0.028193 0.058107 0.066857 0.051211
-	200 3 66 37 40 0.005503 0.02847 0.025822 0.00690198 0.070437 0.00681299
-	200 3 37 91 86 0.066857 0.051211 0.028193 0.058107 0.028597 0.024904
-	200 3 94 66 40 0.084878 0.02847 0.005503 0.02847 0.070437 0.00681299
-	200 3 65 95 91 0.030391 0.102767 0.02843 0.023924 0.021054 0.126759
-	200 3 2 80 79 0.02843 0.00591999 0.02843 0.00591999 0.028737 0.102828
-	200 3 79 95 65 0.028737 0.102828 0.02843 0.023924 0.02843 0.023924
-	200 3 85 81 82 0.028737 0.102828 0.02843 0.00591999 0.02843 0.00591999
-	200 3 93 96 85 0.02843 0.023924 0.02843 0.023924 0.028737 0.102828
-	200 3 94 40 90 0.068914 0.088246 0.066857 0.051211 0.026765 0.071837
-	200 3 92 94 90 0.048996 0.095899 0.068914 0.088246 0.026765 0.071837
-	200 3 93 92 90 0.030391 0.102767 0.048996 0.095899 0.026765 0.071837
-	200 3 40 39 90 0.066857 0.051211 0.028597 0.024904 0.026765 0.071837
-	200 3 93 90 96 0.030391 0.102767 0.026765 0.071837 0.02843 0.023924
-	200 3 97 98 90 0.023684 0.10306 0.070036 0.103149 0.076276 0.126139
-	200 3 91 97 90 0.017445 0.126026 0.023684 0.10306 0.076276 0.126139
diff --git a/components/prop/prhheli4.pie b/components/prop/prhheli4.pie
deleted file mode 100644
index 70ad583..0000000
--- a/components/prop/prhheli4.pie
+++ /dev/null
@@ -1,244 +0,0 @@
-PIE 3
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 0 0
-LEVELS 1
-LEVEL 1
-POINTS 99
-	-22 29 -17.4
-	-15.6635 30 -24.4
-	-22 20 -23.4
-	0 39 -5
-	-4.33013 39 -7.5
-	-5.19615 36 -7
-	4.33013 39 -12.5
-	5.19615 36 -13
-	0 36 -16
-	-4.33013 39 -12.5
-	-5.19615 36 -13
-	4.33013 39 -7.5
-	5.19615 36 -7
-	0 39 -15
-	0 36 -4
-	-3 43 -10
-	-3 39 -10
-	0 39 -7
-	0 43 -7
-	3 39 -10
-	0 43 -13
-	3 43 -10
-	0 39 -13
-	-19 36 2
-	-29 32 2
-	-29 32 29
-	-27 25 2
-	-27 25 29
-	-21 25 2
-	-21 25 35
-	-19 36 35
-	19 36 -17.4
-	-19 36 -17.4
-	19 36 9.00001
-	-19 36 9.00001
-	-10 36 68
-	-6.00001 51 53
-	-10 36 46
-	9.99997 36 68
-	9.99997 24 60
-	9.99997 36 46
-	-6.00001 51 68
-	-4.33013 54 63.5
-	0 54 66
-	0 54 56
-	4.33013 54 58.5
-	5.19615 51 64
-	4.33013 54 63.5
-	0 51 67
-	-5.19615 51 58
-	-4.33013 54 58.5
-	0 51 55
-	5.19615 51 58
-	-5.19615 51 64
-	-3 58 61
-	-3 54 61
-	0 54 64
-	0 58 64
-	3 54 61
-	0 58 58
-	3 58 61
-	0 54 58
-	-22 20 9.00001
-	-22 29 35.4
-	-22 29 9.00001
-	-22 22 35.4
-	-19 36 35.4
-	19 36 2
-	29 32 29
-	29 32 2
-	27 25 29
-	27 25 2
-	21 25 2
-	21 25 35
-	19 36 35
-	5.99997 51 68
-	5.99997 51 53
-	15.6635 30 -24.4
-	22 29 9.00001
-	-17 17 9.00001
-	-15.2244 17 -32.4
-	15.2244 17 -32.4
-	22 20 -23.4
-	22 20 9.00001
-	22 29 -17.4
-	17 17 9.00001
-	-10 24 60
-	5.99999 51 68
-	9.99999 36 68
-	9.99999 24 60
-	21 23 48.4
-	-21 23 48.4
-	22 29 35.4
-	22 22 35.4
-	19 36 35.4
-	-17 19 35.4
-	17 19 35.4
-	-17 19 35.4
-	17 19 35.4
-POLYGONS 138
-	200 3 0 1 2 0.27018 0.206666 0.275988 0.23884 0.317975 0.206769
-	200 3 3 4 5 0.408556 0.693014 0.420282 0.693014 0.420282 0.728492
-	200 3 6 7 8 0.443734 0.693014 0.443734 0.728492 0.45546 0.728492
-	200 3 4 9 10 0.420282 0.693014 0.443734 0.693014 0.443734 0.728492
-	200 3 6 11 12 0.443734 0.693014 0.420282 0.693014 0.420282 0.728492
-	200 3 9 13 8 0.443734 0.693014 0.45546 0.693014 0.45546 0.728492
-	200 3 11 3 14 0.420282 0.693014 0.408556 0.693014 0.408556 0.728492
-	200 3 11 6 3 0.459919 0.779883 0.459919 0.750005 0.434044 0.794822
-	200 3 9 4 13 0.40817 0.750005 0.40817 0.779883 0.434044 0.735066
-	200 3 15 16 17 0.055366 0.254187 0.048112 0.254187 0.048112 0.268411
-	200 3 18 17 19 0.055366 0.268411 0.055366 0.275665 0.06959 0.275665
-	200 3 20 21 19 0.06959 0.254187 0.06959 0.268411 0.076844 0.268411
-	200 3 20 22 16 0.06959 0.254187 0.06959 0.246933 0.055366 0.246933
-	200 3 20 15 18 0.06959 0.254187 0.055366 0.254187 0.055366 0.268411
-	200 3 23 24 25 0.572295 0.527942 0.542808 0.527942 0.542808 0.429128
-	200 3 24 26 27 0.542808 0.527942 0.567359 0.527942 0.567359 0.429128
-	200 3 26 28 27 0.567359 0.527942 0.542585 0.527942 0.567359 0.429128
-	200 3 29 30 25 0.573906 0.398551 0.536241 0.384337 0.542808 0.429128
-	200 3 23 28 24 0.410521 0.721298 0.410521 0.786473 0.463846 0.756848
-	200 3 31 32 33 0.085103 0.028362 0.005298 0.028362 0.085103 0.105342
-	200 3 32 1 0 0.250361 0.227609 0.275988 0.23884 0.27018 0.206666
-	200 3 14 3 5 0.408556 0.728492 0.408556 0.693014 0.420282 0.728492
-	200 3 13 6 8 0.45546 0.693014 0.443734 0.693014 0.45546 0.728492
-	200 3 5 4 10 0.420282 0.728492 0.420282 0.693014 0.443734 0.728492
-	200 3 7 6 12 0.443734 0.728492 0.443734 0.693014 0.420282 0.728492
-	200 3 10 9 8 0.443734 0.728492 0.443734 0.693014 0.45546 0.728492
-	200 3 12 11 14 0.420282 0.728492 0.420282 0.693014 0.408556 0.728492
-	200 3 6 13 3 0.459919 0.750005 0.434044 0.735066 0.434044 0.794822
-	200 3 4 3 13 0.40817 0.779883 0.434044 0.794822 0.434044 0.735066
-	200 3 18 15 17 0.055366 0.268411 0.055366 0.254187 0.048112 0.268411
-	200 3 21 18 19 0.06959 0.268411 0.055366 0.268411 0.06959 0.275665
-	200 3 22 20 19 0.076844 0.254187 0.06959 0.254187 0.076844 0.268411
-	200 3 15 20 16 0.055366 0.254187 0.06959 0.254187 0.055366 0.246933
-	200 3 21 20 18 0.06959 0.268411 0.06959 0.254187 0.055366 0.268411
-	200 3 30 23 25 0.572296 0.407169 0.572295 0.527942 0.542808 0.429128
-	200 3 25 24 27 0.542808 0.429128 0.542808 0.527942 0.567359 0.429128
-	200 3 28 29 27 0.542585 0.527942 0.542585 0.407169 0.567359 0.429128
-	200 3 27 29 25 0.567359 0.429128 0.573906 0.398551 0.542808 0.429128
-	200 3 28 26 24 0.410521 0.786473 0.446071 0.792398 0.463846 0.756848
-	200 3 31 1 32 0.251051 0.206118 0.329538 0.245364 0.334006 0.206118
-	200 3 32 34 33 0.005298 0.028362 0.005298 0.105342 0.085103 0.105342
-	200 3 35 36 37 0.027546 0.04893 0.063512 0.086169 0.074484 0.048941
-	200 3 38 39 40 0.027546 0.04893 0.046738 0.020155 0.074484 0.048941
-	200 3 41 36 35 0.027538 0.086162 0.063512 0.086169 0.027546 0.04893
-	200 3 42 43 44 0.40817 0.779883 0.434044 0.794822 0.434044 0.735066
-	200 3 45 44 43 0.459919 0.750005 0.434044 0.735066 0.434044 0.794822
-	200 3 46 47 48 0.420282 0.728492 0.420282 0.693014 0.408556 0.728492
-	200 3 49 50 51 0.443734 0.728492 0.443734 0.693014 0.45546 0.728492
-	200 3 52 45 46 0.443734 0.728492 0.443734 0.693014 0.420282 0.728492
-	200 3 53 42 49 0.420282 0.728492 0.420282 0.693014 0.443734 0.728492
-	200 3 44 45 51 0.45546 0.693014 0.443734 0.693014 0.45546 0.728492
-	200 3 48 43 53 0.408556 0.728492 0.408556 0.693014 0.420282 0.728492
-	200 3 54 55 56 0.055366 0.254187 0.048112 0.254187 0.048112 0.268411
-	200 3 57 56 58 0.055366 0.268411 0.055366 0.275665 0.06959 0.275665
-	200 3 59 60 58 0.06959 0.254187 0.06959 0.268411 0.076844 0.268411
-	200 3 59 61 55 0.06959 0.254187 0.06959 0.246933 0.055366 0.246933
-	200 3 59 54 57 0.06959 0.254187 0.055366 0.254187 0.055366 0.268411
-	200 3 50 42 44 0.40817 0.750005 0.40817 0.779883 0.434044 0.735066
-	200 3 47 45 43 0.459919 0.779883 0.459919 0.750005 0.434044 0.794822
-	200 3 47 43 48 0.420282 0.693014 0.408556 0.693014 0.408556 0.728492
-	200 3 50 44 51 0.443734 0.693014 0.45546 0.693014 0.45546 0.728492
-	200 3 45 47 46 0.443734 0.693014 0.420282 0.693014 0.420282 0.728492
-	200 3 42 50 49 0.420282 0.693014 0.443734 0.693014 0.443734 0.728492
-	200 3 45 52 51 0.443734 0.693014 0.443734 0.728492 0.45546 0.728492
-	200 3 43 42 53 0.408556 0.693014 0.420282 0.693014 0.420282 0.728492
-	200 3 57 54 56 0.055366 0.268411 0.055366 0.254187 0.048112 0.268411
-	200 3 60 57 58 0.06959 0.268411 0.055366 0.268411 0.06959 0.275665
-	200 3 61 59 58 0.076844 0.254187 0.06959 0.254187 0.076844 0.268411
-	200 3 54 59 55 0.055366 0.254187 0.06959 0.254187 0.055366 0.246933
-	200 3 60 59 57 0.06959 0.268411 0.06959 0.254187 0.055366 0.268411
-	200 3 62 63 64 0.028737 0.102828 0.047641 0.023898 0.047878 0.102709
-	200 3 65 63 62 0.02843 0.023924 0.047641 0.023898 0.028737 0.102828
-	200 3 66 64 63 0.08645 0.023656 0.047878 0.102709 0.047641 0.023898
-	200 3 62 64 0 0.028737 0.102828 0.047878 0.102709 0.047641 0.023898
-	200 3 2 62 0 0.02843 0.00591999 0.028737 0.102828 0.047641 0.023898
-	200 3 32 0 64 0.08645 0.023656 0.047641 0.023898 0.047878 0.102709
-	200 3 34 32 64 0.086541 0.102732 0.08645 0.023656 0.047878 0.102709
-	200 3 34 64 66 0.086541 0.102732 0.047878 0.102709 0.08645 0.023656
-	200 3 66 33 34 0.005298 0.028362 0.085103 0.105342 0.005298 0.105342
-	200 3 67 68 69 0.572295 0.527942 0.542808 0.429128 0.542808 0.527942
-	200 3 69 70 71 0.542808 0.527942 0.567359 0.429128 0.567359 0.527942
-	200 3 71 70 72 0.567359 0.527942 0.567359 0.429128 0.542585 0.527942
-	200 3 73 68 74 0.573906 0.398551 0.542808 0.429128 0.536241 0.384337
-	200 3 67 69 72 0.410521 0.721298 0.463846 0.756848 0.410521 0.786473
-	200 3 74 68 67 0.572296 0.407169 0.542808 0.429128 0.572295 0.527942
-	200 3 68 70 69 0.542808 0.429128 0.567359 0.429128 0.542808 0.527942
-	200 3 72 70 73 0.542585 0.527942 0.567359 0.429128 0.542585 0.407169
-	200 3 70 68 73 0.567359 0.429128 0.542808 0.429128 0.573906 0.398551
-	200 3 72 69 71 0.410521 0.786473 0.463846 0.756848 0.446071 0.792398
-	200 3 75 38 76 0.027538 0.086162 0.027546 0.04893 0.063512 0.086169
-	200 3 77 1 31 0.25552 0.245364 0.329538 0.245364 0.251051 0.206118
-	200 3 33 78 31 0.086541 0.102732 0.047878 0.102709 0.08645 0.023656
-	200 3 62 2 79 0.028737 0.102828 0.02843 0.00591999 0.028737 0.102828
-	200 3 62 79 65 0.028737 0.102828 0.028737 0.102828 0.02843 0.023924
-	200 3 2 1 80 0.317975 0.206769 0.275988 0.23884 0.332868 0.23884
-	200 3 81 77 82 0.332868 0.23884 0.275988 0.23884 0.317975 0.206769
-	200 3 83 84 78 0.028737 0.102828 0.047641 0.023898 0.047878 0.102709
-	200 3 82 84 83 0.02843 0.00591999 0.047641 0.023898 0.028737 0.102828
-	200 3 84 77 31 0.27018 0.206666 0.275988 0.23884 0.250361 0.227609
-	200 3 31 78 84 0.08645 0.023656 0.047878 0.102709 0.047641 0.023898
-	200 3 83 85 82 0.028737 0.102828 0.028737 0.102828 0.02843 0.00591999
-	200 3 82 77 84 0.317975 0.206769 0.275988 0.23884 0.27018 0.206666
-	200 3 38 40 76 0.027546 0.04893 0.074484 0.048941 0.063512 0.086169
-	200 3 35 37 86 0.027546 0.04893 0.074484 0.048941 0.046738 0.020155
-	200 3 87 35 88 0.055486 0.048438 0.033449 0.079336 0.060996 0.079336
-	200 3 88 86 89 0.060996 0.079336 0.033449 0.109044 0.060996 0.109044
-	200 3 41 35 87 0.038959 0.048438 0.033449 0.079336 0.055486 0.048438
-	200 3 35 86 88 0.033449 0.079336 0.033449 0.109044 0.060996 0.079336
-	200 3 90 89 91 0.076276 0.126869 0.060996 0.109044 0.017445 0.126756
-	200 3 89 86 91 0.060996 0.109044 0.033449 0.109044 0.017445 0.126756
-	200 3 41 76 36 0.061406 0.130947 0.033425 0.130947 0.033425 0.130947
-	200 3 40 36 76 0.070547 0.00690198 0.034767 0.041943 0.061602 0.041943
-	200 3 75 76 41 0.061406 0.130947 0.033425 0.130947 0.061406 0.130947
-	200 3 37 36 40 0.025822 0.00690198 0.034767 0.041943 0.070547 0.00690198
-	200 3 65 91 63 0.030391 0.102767 0.028193 0.058107 0.048996 0.095899
-	200 3 63 91 66 0.048996 0.095899 0.028193 0.058107 0.068914 0.088246
-	200 3 83 78 92 0.028737 0.102828 0.047878 0.102709 0.047641 0.023898
-	200 3 93 83 92 0.02843 0.023924 0.028737 0.102828 0.047641 0.023898
-	200 3 94 92 78 0.08645 0.023656 0.047641 0.023898 0.047878 0.102709
-	200 3 94 33 66 0.085103 0.028362 0.085103 0.105342 0.005298 0.028362
-	200 3 33 94 78 0.086541 0.102732 0.08645 0.023656 0.047878 0.102709
-	200 3 83 93 85 0.028737 0.102828 0.02843 0.023924 0.028737 0.102828
-	200 3 66 91 37 0.068914 0.088246 0.028193 0.058107 0.066857 0.051211
-	200 3 66 37 40 0.005503 0.02847 0.025822 0.00690198 0.070437 0.00681299
-	200 3 37 91 86 0.066857 0.051211 0.028193 0.058107 0.028597 0.024904
-	200 3 94 66 40 0.084878 0.02847 0.005503 0.02847 0.070437 0.00681299
-	200 3 65 95 91 0.030391 0.102767 0.02843 0.023924 0.021054 0.126759
-	200 3 2 80 79 0.02843 0.00591999 0.02843 0.00591999 0.028737 0.102828
-	200 3 79 95 65 0.028737 0.102828 0.02843 0.023924 0.02843 0.023924
-	200 3 85 81 82 0.028737 0.102828 0.02843 0.00591999 0.02843 0.00591999
-	200 3 93 96 85 0.02843 0.023924 0.02843 0.023924 0.028737 0.102828
-	200 3 94 40 90 0.068914 0.088246 0.066857 0.051211 0.026765 0.071837
-	200 3 92 94 90 0.048996 0.095899 0.068914 0.088246 0.026765 0.071837
-	200 3 93 92 90 0.030391 0.102767 0.048996 0.095899 0.026765 0.071837
-	200 3 40 39 90 0.066857 0.051211 0.028597 0.024904 0.026765 0.071837
-	200 3 93 90 96 0.030391 0.102767 0.026765 0.071837 0.02843 0.023924
-	200 3 97 98 90 0.023684 0.10306 0.070036 0.103149 0.076276 0.126139
-	200 3 91 97 90 0.017445 0.126026 0.023684 0.10306 0.076276 0.126139
diff --git a/components/prop/prhhov1.pie b/components/prop/prhhov1.pie
deleted file mode 100644
index 14e9926..0000000
--- a/components/prop/prhhov1.pie
+++ /dev/null
@@ -1,133 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 54 
-	-25 26 60 
-	-25 26 52 
-	25 26 52 
-	25 26 60 
-	-17 10 -49 
-	18 10 -49 
-	30 10 -16 
-	-30 10 -16 
-	30 10 38 
-	-30 10 38 
-	18 10 71 
-	-17 10 71 
-	-23 17 -25 
-	-27 17 -25 
-	-27 14 42 
-	-23 14 42 
-	-23 11 -41 
-	-32 11 -25 
-	-32 11 45 
-	-4 11 61 
-	-4 24 61 
-	-4 24 83 
-	-4 11 69 
-	5 11 61 
-	5 11 69 
-	5 24 83 
-	5 24 61 
-	17 25 75 
-	17 25 61 
-	17 12 61 
-	17 12 75 
-	-18 0 -53 
-	19 0 -53 
-	19 0 75 
-	-18 0 75 
-	-16 25 75 
-	-16 25 61 
-	-16 12 61 
-	-16 12 75 
-	32 0 38 
-	-31 0 38 
-	-29 11 52 
-	-29 11 60 
-	29 11 52 
-	29 11 60 
-	32 0 -16 
-	-31 0 -16 
-	23 17 -25 
-	27 17 -25 
-	27 14 42 
-	23 14 42 
-	23 11 -41 
-	32 11 -25 
-	32 11 45
-POLYGONS 72
-	200 3 6 8 39 199 35 199 0 192 0
-	200 3 6 39 45 199 35 192 0 192 35
-	200 3 9 7 46 199 0 199 35 192 35
-	200 3 9 46 40 199 0 192 35 192 0
-	200 3 11 9 40 199 31 199 0 192 0
-	200 3 11 40 34 199 31 192 0 192 35
-	200 3 5 6 45 199 31 199 0 192 0
-	200 3 5 45 32 199 31 192 0 192 35
-	200 3 8 10 33 199 0 199 31 192 35
-	200 3 8 33 39 199 0 192 35 192 0
-	200 3 7 4 31 199 0 199 31 192 35
-	200 3 7 31 46 199 0 192 35 192 0
-	200 3 10 11 34 199 1 199 34 192 35
-	200 3 10 34 33 199 1 192 35 192 0
-	200 3 7 6 5 24 10 0 10 5 2
-	200 3 7 5 4 24 10 5 2 19 2
-	200 3 9 8 6 24 24 0 24 0 10
-	200 3 9 6 7 24 24 0 10 24 10
-	200 3 11 10 8 19 33 5 33 0 24
-	200 3 11 8 9 19 33 0 24 24 24
-	200 3 16 17 13 24 40 19 40 19 36
-	200 3 16 13 12 24 40 19 36 19 36
-	200 3 12 13 17 19 36 19 36 19 40
-	200 3 12 17 16 19 36 19 40 24 40
-	200 3 51 52 48 24 40 19 40 19 36
-	200 3 51 48 47 24 40 19 36 19 36
-	200 3 47 48 52 19 36 19 36 19 40
-	200 3 47 52 51 19 36 19 40 24 40
-	200 3 2 3 44 19 71 19 71 20 63
-	200 3 2 44 43 19 71 20 63 20 63
-	200 3 44 3 0 20 63 19 71 1 71
-	200 3 44 0 42 20 63 1 71 0 63
-	200 3 24 25 21 4 40 8 48 8 48
-	200 3 24 21 22 4 40 8 48 4 40
-	200 3 25 26 20 8 47 0 47 0 47
-	200 3 25 20 21 8 47 0 47 8 47
-	200 3 26 25 24 0 48 8 48 4 40
-	200 3 26 24 23 0 48 4 40 0 40
-	200 3 28 27 30 0 55 0 48 7 48
-	200 3 28 30 29 0 55 7 48 7 55
-	200 3 30 27 28 7 48 0 48 0 55
-	200 3 30 28 29 7 48 0 55 7 55
-	200 3 22 21 20 4 40 8 48 0 48
-	200 3 22 20 19 4 40 0 48 0 40
-	200 3 36 35 38 0 55 0 48 7 48
-	200 3 36 38 37 0 55 7 48 7 55
-	200 3 38 35 36 7 48 0 48 0 55
-	200 3 38 36 37 7 48 0 55 7 55
-	200 3 42 0 1 0 63 1 71 1 71
-	200 3 42 1 41 0 63 1 71 0 63
-	200 3 2 43 41 19 71 20 63 0 63
-	200 3 2 41 1 19 71 0 63 1 71
-	200 3 12 13 14 19 36 19 36 1 38
-	200 3 12 14 15 19 36 1 38 1 38
-	200 3 15 14 13 1 38 1 38 19 36
-	200 3 15 13 12 1 38 19 36 19 36
-	200 3 47 48 49 19 36 19 36 1 38
-	200 3 47 49 50 19 36 1 38 1 38
-	200 3 50 49 48 1 38 1 38 19 36
-	200 3 50 48 47 1 38 19 36 19 36
-	200 3 17 18 14 19 40 0 40 1 38
-	200 3 17 14 13 19 40 1 38 19 36
-	200 3 13 14 18 19 36 1 38 0 40
-	200 3 13 18 17 19 36 0 40 19 40
-	200 3 52 53 49 19 40 0 40 1 38
-	200 3 52 49 48 19 40 1 38 19 36
-	200 3 48 49 53 19 36 1 38 0 40
-	200 3 48 53 52 19 36 0 40 19 40
-	200 3 3 2 1 19 70 19 70 1 70
-	200 3 3 1 0 19 70 1 70 1 70
-	200 3 4 5 32 199 34 199 1 192 0
-	200 3 4 32 31 199 34 192 0 192 35
\ No newline at end of file
diff --git a/components/prop/prhlhtr3.pie b/components/prop/prhlhtr3.pie
deleted file mode 100644
index 5a50dd5..0000000
--- a/components/prop/prhlhtr3.pie
+++ /dev/null
@@ -1,94 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 32 
-	19 23 42 
-	41 23 42 
-	41 15 53 
-	19 15 53 
-	35 16 -53 
-	35 7 -53 
-	35 0 -44 
-	35 23 -46 
-	19 16 -53 
-	19 23 -46 
-	19 0 -44 
-	19 7 -53 
-	35 0 -32 
-	35 23 -32 
-	19 23 -32 
-	19 0 -32 
-	19 23 -18 
-	35 23 -18 
-	19 0 -20 
-	19 7 -11 
-	35 7 -11 
-	35 0 -20 
-	19 16 -11 
-	35 16 -11 
-	41 0 53 
-	41 0 -11 
-	19 0 -11 
-	19 0 53 
-	41 15 -11 
-	19 15 -11 
-	41 23 -1 
-	19 23 -1
-POLYGONS 55
-	200 3 3 27 24 0 178 0 186 10 186
-	200 3 3 24 2 0 178 10 186 10 178
-	200 3 31 30 28 9 108 2 108 2 126
-	200 3 31 28 29 9 108 2 126 9 126
-	200 3 27 26 25 94 136 94 98 88 98
-	200 3 27 25 24 94 136 88 98 88 136
-	200 3 26 29 28 10 186 10 178 0 178
-	200 3 26 28 25 10 186 0 178 0 186
-	200 3 15 10 6 35 56 35 62 43 62
-	200 3 15 6 12 35 56 43 62 43 56
-	200 3 12 21 18 35 56 35 62 43 62
-	200 3 12 18 15 35 56 43 62 43 56
-	200 3 10 11 5 4 84 8 84 8 73
-	200 3 10 5 6 4 84 8 73 4 73
-	200 3 23 17 16 13 84 17 84 17 73
-	200 3 23 16 22 13 84 17 73 13 73
-	200 3 11 8 4 8 84 13 84 13 73
-	200 3 11 4 5 8 84 13 73 8 73
-	200 3 21 20 19 4 84 8 84 8 73
-	200 3 21 19 18 4 84 8 73 4 73
-	200 3 8 9 7 13 84 17 84 17 73
-	200 3 8 7 4 13 84 17 73 13 73
-	200 3 21 12 13 97 164 97 175 113 175
-	200 3 21 13 17 97 164 113 175 113 163
-	200 3 20 21 17 102 157 97 164 113 163
-	200 3 20 17 23 102 157 113 163 108 157
-	200 3 13 12 6 113 175 97 175 97 164
-	200 3 13 6 7 113 175 97 164 113 163
-	200 3 7 6 5 113 163 97 164 102 157
-	200 3 7 5 4 113 163 102 157 108 157
-	200 3 1 30 31 10 136 10 98 1 98
-	200 3 1 31 0 10 136 1 98 1 136
-	200 3 9 14 13 12 217 12 194 1 194
-	200 3 9 13 7 12 217 1 194 1 217
-	200 3 17 13 14 12 217 12 194 1 194
-	200 3 17 14 16 12 217 1 194 1 217
-	200 3 25 28 2 11 137 5 137 5 171
-	200 3 25 2 24 11 137 5 171 11 171
-	200 3 28 30 1 5 137 1 142 1 165
-	200 3 28 1 2 5 137 1 165 5 171
-	200 3 3 2 1 9 107 2 107 2 127
-	200 3 3 1 0 9 107 2 127 9 127
-	200 3 11 10 9 102 157 97 164 113 163
-	200 3 11 9 8 102 157 113 163 108 157
-	200 3 10 15 14 97 164 97 175 113 175
-	200 3 10 14 9 97 164 113 175 113 163
-	200 3 16 18 19 113 163 97 164 102 157
-	200 3 16 19 22 113 163 102 157 108 157
-	200 3 14 15 18 113 175 97 175 97 164
-	200 3 14 18 16 113 175 97 164 113 163
-	200 3 0 31 29 1 165 1 142 5 137
-	200 3 0 29 27 1 165 5 137 11 171
-	200 3 31 29 26 1 142 5 137 11 137
-	200 3 31 26 27 1 142 11 137 11 171
-	200 3 27 3 0 11 171 5 171 1 165
\ No newline at end of file
diff --git a/components/prop/prhltrk3.pie b/components/prop/prhltrk3.pie
deleted file mode 100644
index 2561756..0000000
--- a/components/prop/prhltrk3.pie
+++ /dev/null
@@ -1,75 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 24 
-	21 26 -17 
-	21 26 -33 
-	41 26 -33 
-	41 26 -17 
-	21 26 13 
-	21 0 13 
-	21 0 -17 
-	41 0 -17 
-	41 0 13 
-	41 26 13 
-	21 26 32 
-	21 0 30 
-	21 17 42 
-	21 8 42 
-	41 26 32 
-	41 0 30 
-	41 8 42 
-	41 17 42 
-	21 0 -34 
-	21 7 -43 
-	21 18 -43 
-	41 0 -34 
-	41 18 -43 
-	41 7 -43
-POLYGONS 44
-	200 3 3 2 1 11 125 11 109 0 109
-	200 3 3 1 0 11 125 0 109 0 125
-	200 3 6 5 4 12 170 12 143 0 143
-	200 3 6 4 0 12 170 0 143 0 170
-	200 3 9 8 7 0 143 12 143 12 170
-	200 3 9 7 3 0 143 12 170 0 170
-	200 3 4 5 11 0 142 12 142 12 156
-	200 3 4 11 10 0 142 12 156 0 158
-	200 3 11 13 12 12 156 8 165 4 166
-	200 3 11 12 10 12 156 4 166 0 158
-	200 3 15 8 9 12 156 12 142 0 142
-	200 3 15 9 14 12 156 0 142 0 158
-	200 3 17 16 15 4 166 8 165 12 156
-	200 3 17 15 14 4 166 12 156 0 158
-	200 3 14 9 4 11 128 11 106 0 106
-	200 3 14 4 10 11 128 0 106 0 128
-	200 3 9 3 0 11 132 11 102 0 102
-	200 3 9 0 4 11 132 0 102 0 132
-	200 3 0 1 18 0 144 0 156 12 157
-	200 3 0 18 6 0 144 12 157 12 144
-	200 3 1 20 19 0 156 4 164 9 164
-	200 3 1 19 18 0 156 9 164 12 157
-	200 3 21 2 3 12 157 0 156 0 144
-	200 3 21 3 7 12 157 0 144 12 144
-	200 3 23 22 2 9 164 4 164 0 156
-	200 3 23 2 21 9 164 0 156 12 157
-	200 3 23 21 18 9 182 9 186 1 186
-	200 3 23 18 19 9 182 1 186 1 182
-	200 3 2 22 20 9 173 9 177 1 177
-	200 3 2 20 1 9 173 1 177 1 173
-	200 3 22 23 19 9 177 9 182 1 182
-	200 3 22 19 20 9 177 1 182 1 177
-	200 3 15 16 13 9 186 9 182 1 182
-	200 3 15 13 11 9 186 1 182 1 186
-	200 3 16 17 12 9 182 9 177 1 177
-	200 3 16 12 13 9 182 1 177 1 182
-	200 3 17 14 10 9 177 9 173 1 173
-	200 3 17 10 12 9 177 1 173 1 177
-	200 3 21 7 6 94 102 94 128 88 128
-	200 3 21 6 18 94 102 88 128 88 102
-	200 3 7 8 5 94 100 94 134 88 134
-	200 3 7 5 6 94 100 88 134 88 100
-	200 3 8 15 11 94 107 94 127 88 127
-	200 3 8 11 5 94 107 88 127 88 107
\ No newline at end of file
diff --git a/components/prop/prhlvtl1.pie b/components/prop/prhlvtl1.pie
deleted file mode 100644
index 8801e92..0000000
--- a/components/prop/prhlvtl1.pie
+++ /dev/null
@@ -1,76 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 31 
-	22 11 16 
-	22 15 31 
-	38 15 31 
-	38 11 16 
-	22 29 11 
-	38 29 11 
-	38 34 27 
-	22 34 27 
-	10 36 15 
-	10 36 39 
-	17 50 45 
-	17 50 33 
-	20 10 -29 
-	20 14 -16 
-	33 14 -16 
-	33 10 -29 
-	20 21 -32 
-	33 21 -32 
-	33 24 -19 
-	20 24 -19 
-	48 15 31 
-	20 16 36 
-	15 31 36 
-	20 21 -11 
-	40 15 11 
-	8 28 50 
-	0 36 50 
-	0 36 48 
-	8 28 44 
-	0 20 50 
-	0 20 37
-POLYGONS 38
-	200 3 3 2 1 104 204 104 189 118 189
-	200 3 3 1 0 104 204 118 189 118 204
-	200 3 7 6 5 104 189 118 189 118 204
-	200 3 7 5 4 104 189 118 204 104 204
-	200 3 4 5 3 104 203 117 203 117 217
-	200 3 4 3 0 104 203 117 217 104 217
-	200 3 5 6 2 104 203 117 203 117 217
-	200 3 5 2 3 104 203 117 217 104 217
-	200 3 6 7 1 104 203 117 203 117 217
-	200 3 6 1 2 104 203 117 217 104 217
-	200 3 7 4 0 104 203 117 203 117 217
-	200 3 7 0 1 104 203 117 217 104 217
-	200 3 8 9 10 8 48 2 48 0 40
-	200 3 8 10 11 8 48 0 40 3 40
-	200 3 11 10 9 3 40 0 40 2 48
-	200 3 11 9 8 3 40 2 48 8 48
-	200 3 15 14 13 104 204 104 189 118 189
-	200 3 15 13 12 104 204 118 189 118 204
-	200 3 19 18 17 104 189 118 189 118 204
-	200 3 19 17 16 104 189 118 204 104 204
-	200 3 16 17 15 104 203 117 203 117 217
-	200 3 16 15 12 104 203 117 217 104 217
-	200 3 17 18 14 104 203 117 203 117 217
-	200 3 17 14 15 104 203 117 217 104 217
-	200 3 18 19 13 104 203 117 203 117 217
-	200 3 18 13 14 104 203 117 217 104 217
-	200 3 19 16 12 104 203 117 203 117 217
-	200 3 19 12 13 104 203 117 217 104 217
-	200 3 22 21 20 17 98 1 98 0 85
-	200 3 22 20 24 0 98 2 85 9 89
-	200 3 22 24 23 0 98 9 89 17 98
-	200 3 24 21 23 4 93 5 84 3 84
-	200 3 20 21 24 5 97 5 84 4 93
-	200 3 28 27 26 11 93 20 93 20 89
-	200 3 28 26 25 11 93 20 89 12 89
-	200 3 30 28 25 3 93 11 93 12 89
-	200 3 30 25 29 3 93 12 89 3 89
-	200 3 29 25 26 88 182 90 180 88 178
\ No newline at end of file
diff --git a/components/prop/prhlvtl2.pie b/components/prop/prhlvtl2.pie
deleted file mode 100644
index f38995a..0000000
--- a/components/prop/prhlvtl2.pie
+++ /dev/null
@@ -1,76 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 31 
-	22 5 16 
-	22 9 31 
-	38 9 31 
-	38 5 16 
-	22 23 11 
-	38 23 11 
-	38 28 27 
-	22 28 27 
-	10 26 14 
-	10 26 43 
-	17 41 49 
-	17 39 35 
-	18 5 -42 
-	18 8 -29 
-	31 8 -29 
-	31 5 -42 
-	18 15 -44 
-	31 15 -44 
-	31 19 -31 
-	18 19 -31 
-	48 9 31 
-	20 11 36 
-	20 24 36 
-	20 15 -15 
-	40 9 7 
-	8 18 56 
-	0 26 56 
-	0 26 51 
-	8 18 51 
-	0 10 56 
-	0 10 51
-POLYGONS 38
-	200 3 3 2 1 104 204 104 189 118 189
-	200 3 3 1 0 104 204 118 189 118 204
-	200 3 7 6 5 104 189 118 189 118 204
-	200 3 7 5 4 104 189 118 204 104 204
-	200 3 4 5 3 104 203 117 203 117 217
-	200 3 4 3 0 104 203 117 217 104 217
-	200 3 5 6 2 104 203 117 203 117 217
-	200 3 5 2 3 104 203 117 217 104 217
-	200 3 6 7 1 104 203 117 203 117 217
-	200 3 6 1 2 104 203 117 217 104 217
-	200 3 7 4 0 104 203 117 203 117 217
-	200 3 7 0 1 104 203 117 217 104 217
-	200 3 8 9 10 8 48 2 48 0 40
-	200 3 8 10 11 8 48 0 40 3 40
-	200 3 11 10 9 3 40 0 40 2 48
-	200 3 11 9 8 3 40 2 48 8 48
-	200 3 15 14 13 104 204 104 189 118 189
-	200 3 15 13 12 104 204 118 189 118 204
-	200 3 19 18 17 104 189 118 189 118 204
-	200 3 19 17 16 104 189 118 204 104 204
-	200 3 16 17 15 104 203 117 203 117 217
-	200 3 16 15 12 104 203 117 217 104 217
-	200 3 17 18 14 104 203 117 203 117 217
-	200 3 17 14 15 104 203 117 217 104 217
-	200 3 18 19 13 104 203 117 203 117 217
-	200 3 18 13 14 104 203 117 217 104 217
-	200 3 19 16 12 104 203 117 203 117 217
-	200 3 19 12 13 104 203 117 217 104 217
-	200 3 22 21 20 17 98 1 98 0 85
-	200 3 22 20 24 0 98 2 85 9 89
-	200 3 22 24 23 0 98 9 89 17 98
-	200 3 24 21 23 4 93 5 84 3 84
-	200 3 20 21 24 5 97 5 84 4 93
-	200 3 28 27 26 11 93 20 93 20 89
-	200 3 28 26 25 11 93 20 89 12 89
-	200 3 30 28 25 3 93 11 93 12 89
-	200 3 30 25 29 3 93 12 89 3 89
-	200 3 29 25 26 88 182 90 180 88 178
\ No newline at end of file
diff --git a/components/prop/prhlvtl3.pie b/components/prop/prhlvtl3.pie
deleted file mode 100644
index 685c18c..0000000
--- a/components/prop/prhlvtl3.pie
+++ /dev/null
@@ -1,76 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 31 
-	22 10 18 
-	22 14 34 
-	38 14 34 
-	38 10 18 
-	22 28 13 
-	38 28 13 
-	38 32 29 
-	22 32 29 
-	10 32 11 
-	10 32 36 
-	17 47 41 
-	17 47 30 
-	20 10 -32 
-	20 13 -19 
-	33 13 -19 
-	33 10 -32 
-	20 20 -35 
-	33 20 -35 
-	33 23 -22 
-	20 23 -22 
-	48 14 33 
-	20 15 39 
-	20 32 39 
-	20 19 -9 
-	40 14 13 
-	8 23 57 
-	0 31 57 
-	0 31 39 
-	8 23 52 
-	0 15 57 
-	0 15 43
-POLYGONS 38
-	200 3 3 2 1 104 204 104 189 118 189
-	200 3 3 1 0 104 204 118 189 118 204
-	200 3 7 6 5 104 189 118 189 118 204
-	200 3 7 5 4 104 189 118 204 104 204
-	200 3 4 5 3 104 203 117 203 117 217
-	200 3 4 3 0 104 203 117 217 104 217
-	200 3 5 6 2 104 203 117 203 117 217
-	200 3 5 2 3 104 203 117 217 104 217
-	200 3 6 7 1 104 203 117 203 117 217
-	200 3 6 1 2 104 203 117 217 104 217
-	200 3 7 4 0 104 203 117 203 117 217
-	200 3 7 0 1 104 203 117 217 104 217
-	200 3 8 9 10 8 48 2 48 0 40
-	200 3 8 10 11 8 48 0 40 3 40
-	200 3 11 10 9 3 40 0 40 2 48
-	200 3 11 9 8 3 40 2 48 8 48
-	200 3 15 14 13 104 204 104 189 118 189
-	200 3 15 13 12 104 204 118 189 118 204
-	200 3 19 18 17 104 189 118 189 118 204
-	200 3 19 17 16 104 189 118 204 104 204
-	200 3 16 17 15 104 203 117 203 117 217
-	200 3 16 15 12 104 203 117 217 104 217
-	200 3 17 18 14 104 203 117 203 117 217
-	200 3 17 14 15 104 203 117 217 104 217
-	200 3 18 19 13 104 203 117 203 117 217
-	200 3 18 13 14 104 203 117 217 104 217
-	200 3 19 16 12 104 203 117 203 117 217
-	200 3 19 12 13 104 203 117 217 104 217
-	200 3 22 21 20 17 98 1 98 0 85
-	200 3 22 20 24 0 98 2 85 9 89
-	200 3 22 24 23 0 98 9 89 17 98
-	200 3 24 21 23 4 93 5 84 3 84
-	200 3 20 21 24 5 97 5 84 4 93
-	200 3 28 27 26 11 93 20 93 20 89
-	200 3 28 26 25 11 93 20 89 12 89
-	200 3 30 28 25 3 93 11 93 12 89
-	200 3 30 25 29 3 93 12 89 3 89
-	200 3 29 25 26 88 182 90 180 88 178
\ No newline at end of file
diff --git a/components/prop/prhlvtl4.pie b/components/prop/prhlvtl4.pie
deleted file mode 100644
index f1a71f2..0000000
--- a/components/prop/prhlvtl4.pie
+++ /dev/null
@@ -1,76 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 31 
-	48 14 28 
-	20 15 34 
-	14 32 34 
-	20 19 -14 
-	40 14 8 
-	22 10 13 
-	22 14 29 
-	38 14 29 
-	38 10 13 
-	22 28 8 
-	38 28 8 
-	38 32 24 
-	22 32 24 
-	20 10 -32 
-	20 13 -19 
-	33 13 -19 
-	33 10 -32 
-	20 20 -35 
-	33 20 -35 
-	33 23 -22 
-	20 23 -22 
-	0 27 53 
-	8 19 53 
-	0 12 53 
-	0 27 36 
-	8 19 47 
-	0 12 36 
-	10 32 8 
-	10 30 32 
-	17 47 38 
-	17 47 26
-POLYGONS 38
-	200 3 2 1 0 17 98 1 98 0 85
-	200 3 2 0 4 0 98 2 85 9 89
-	200 3 2 4 3 0 98 9 89 17 98
-	200 3 4 1 3 4 93 5 84 3 84
-	200 3 0 1 4 5 97 5 84 4 93
-	200 3 8 7 6 104 204 104 189 118 189
-	200 3 8 6 5 104 204 118 189 118 204
-	200 3 12 11 10 104 189 118 189 118 204
-	200 3 12 10 9 104 189 118 204 104 204
-	200 3 9 10 8 104 203 117 203 117 217
-	200 3 9 8 5 104 203 117 217 104 217
-	200 3 10 11 7 104 203 117 203 117 217
-	200 3 10 7 8 104 203 117 217 104 217
-	200 3 11 12 6 104 203 117 203 117 217
-	200 3 11 6 7 104 203 117 217 104 217
-	200 3 12 9 5 104 203 117 203 117 217
-	200 3 12 5 6 104 203 117 217 104 217
-	200 3 16 15 14 104 204 104 189 118 189
-	200 3 16 14 13 104 204 118 189 118 204
-	200 3 20 19 18 104 189 118 189 118 204
-	200 3 20 18 17 104 189 118 204 104 204
-	200 3 17 18 16 104 203 117 203 117 217
-	200 3 17 16 13 104 203 117 217 104 217
-	200 3 18 19 15 104 203 117 203 117 217
-	200 3 18 15 16 104 203 117 217 104 217
-	200 3 19 20 14 104 203 117 203 117 217
-	200 3 19 14 15 104 203 117 217 104 217
-	200 3 20 17 13 104 203 117 203 117 217
-	200 3 20 13 14 104 203 117 217 104 217
-	200 3 23 22 21 88 182 90 180 88 178
-	200 3 25 24 21 11 93 20 93 20 89
-	200 3 25 21 22 11 93 20 89 12 89
-	200 3 26 25 22 3 93 11 93 12 89
-	200 3 26 22 23 3 93 12 89 3 89
-	200 3 27 28 29 8 48 2 48 0 40
-	200 3 27 29 30 8 48 0 40 3 40
-	200 3 30 29 28 3 40 0 40 2 48
-	200 3 30 28 27 3 40 2 48 8 48
\ No newline at end of file
diff --git a/components/prop/prhlwhl1.pie b/components/prop/prhlwhl1.pie
deleted file mode 100644
index f812946..0000000
--- a/components/prop/prhlwhl1.pie
+++ /dev/null
@@ -1,325 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 118 
-	21 7 32 
-	21 7 -32 
-	21 26 -32 
-	21 26 32 
-	22 7 -32 
-	22 7 32 
-	40 12 32 
-	40 12 -32 
-	40 26 -32 
-	40 26 32 
-	39 12 -32 
-	39 12 32 
-	21 17 42 
-	21 8 43 
-	40 8 43 
-	40 17 42 
-	21 8 -44 
-	21 18 -43 
-	40 18 -43 
-	40 8 -44 
-	40 8 42 
-	21 8 42 
-	39 8 42 
-	40 8 -43 
-	21 8 -43 
-	39 8 -43 
-	22 8 -43 
-	22 26 32 
-	22 26 -32 
-	22 8 42 
-	22 17 42 
-	22 18 -43 
-	22 1 -11 
-	22 13 -20 
-	22 7 -20 
-	22 2 -15 
-	22 2 -7 
-	22 7 -2 
-	22 13 -2 
-	22 10 -21 
-	22 10 -1 
-	22 4 -18 
-	22 4 -4 
-	39 7 -20 
-	39 4 -18 
-	39 2 -15 
-	39 1 -11 
-	39 2 -7 
-	39 4 -4 
-	39 7 -2 
-	39 10 -21 
-	39 10 -1 
-	39 13 -20 
-	39 13 -2 
-	22 1 -32 
-	22 7 -41 
-	22 2 -36 
-	22 2 -28 
-	22 7 -23 
-	22 13 -23 
-	22 10 -42 
-	22 10 -22 
-	22 4 -39 
-	22 4 -25 
-	39 7 -41 
-	39 4 -39 
-	39 2 -36 
-	39 1 -32 
-	39 2 -28 
-	39 4 -25 
-	39 7 -23 
-	39 10 -42 
-	39 10 -22 
-	39 13 -23 
-	39 16 -25 
-	22 1 31 
-	22 13 22 
-	22 7 22 
-	22 2 27 
-	22 2 35 
-	22 7 40 
-	22 10 21 
-	22 10 41 
-	22 4 24 
-	22 4 38 
-	39 7 22 
-	39 4 24 
-	39 2 27 
-	39 1 31 
-	39 2 35 
-	39 4 38 
-	39 7 40 
-	39 10 21 
-	39 10 41 
-	39 13 22 
-	39 16 38 
-	22 1 10 
-	22 13 1 
-	22 7 1 
-	22 2 6 
-	22 2 14 
-	22 7 19 
-	22 13 19 
-	22 10 0 
-	22 10 20 
-	22 4 3 
-	22 4 17 
-	39 7 1 
-	39 4 3 
-	39 2 6 
-	39 1 10 
-	39 2 14 
-	39 4 17 
-	39 7 19 
-	39 10 0 
-	39 10 20 
-	39 13 1 
-	39 13 19
-POLYGONS 200
-	200 3 3 2 1 10 187 10 221 3 221
-	200 3 3 1 0 10 187 3 221 3 187
-	200 3 5 0 1 11 187 11 187 11 221
-	200 3 5 1 4 11 187 11 221 11 221
-	200 3 8 7 6 3 221 10 221 10 187
-	200 3 8 6 9 3 221 10 187 3 187
-	200 3 9 6 7 3 187 10 187 10 221
-	200 3 9 7 8 3 187 10 221 3 221
-	200 3 11 10 7 11 187 11 221 11 221
-	200 3 11 7 6 11 187 11 221 11 187
-	200 3 18 19 16 11 224 11 219 2 219
-	200 3 18 16 17 11 224 2 219 2 224
-	200 3 14 15 12 11 205 11 210 2 210
-	200 3 14 12 13 11 205 2 210 2 205
-	200 3 20 21 12 9 177 1 177 1 172
-	200 3 20 12 15 9 177 1 172 9 172
-	200 3 15 15 14 7 177 7 177 2 177
-	200 3 15 14 20 7 177 2 177 2 177
-	200 3 21 13 12 2 177 2 177 7 177
-	200 3 21 12 12 2 177 7 177 7 177
-	200 3 20 14 13 9 182 9 182 1 182
-	200 3 20 13 21 9 182 1 182 1 182
-	200 3 21 12 3 1 199 9 199 11 208
-	200 3 21 3 0 1 199 11 208 3 208
-	200 3 2 8 9 10 221 3 221 3 187
-	200 3 2 9 3 10 221 3 187 10 187
-	200 3 3 9 8 10 187 3 187 3 221
-	200 3 3 8 2 10 187 3 221 10 221
-	200 3 6 20 15 3 208 1 199 9 199
-	200 3 6 15 9 3 208 9 199 11 208
-	200 3 9 15 20 11 208 9 199 1 199
-	200 3 9 20 6 11 208 1 199 3 208
-	200 3 3 9 15 2 224 11 224 11 210
-	200 3 3 15 12 2 224 11 210 2 210
-	200 3 12 15 9 2 210 11 210 11 224
-	200 3 12 9 3 2 210 11 224 2 224
-	200 3 22 11 6 4 131 4 131 4 131
-	200 3 22 6 20 4 131 4 131 4 131
-	200 3 24 1 2 1 208 3 199 11 199
-	200 3 24 2 17 1 208 11 199 9 208
-	200 3 18 23 7 9 208 1 208 3 199
-	200 3 18 7 8 9 208 3 199 11 199
-	200 3 8 7 23 11 199 3 199 1 208
-	200 3 8 23 18 11 199 1 208 9 208
-	200 3 18 8 2 11 224 11 210 2 210
-	200 3 18 2 17 11 224 2 210 2 224
-	200 3 17 2 8 2 224 2 210 11 210
-	200 3 17 8 18 2 224 11 210 11 224
-	200 3 25 23 7 4 131 4 131 4 131
-	200 3 25 7 10 4 131 4 131 4 131
-	200 3 26 4 1 4 131 4 131 4 131
-	200 3 26 1 24 4 131 4 131 4 131
-	200 3 23 24 16 9 182 1 182 1 182
-	200 3 23 16 19 9 182 1 182 9 182
-	200 3 18 23 19 5 175 5 175 5 175
-	200 3 17 16 24 6 175 6 175 6 175
-	200 3 27 5 4 3 187 10 187 10 221
-	200 3 27 4 28 3 187 10 221 3 221
-	200 3 29 5 27 0 127 2 120 10 120
-	200 3 29 27 30 0 127 10 120 8 127
-	200 3 29 21 0 0 127 0 127 2 120
-	200 3 29 0 5 0 127 2 120 2 120
-	200 3 26 31 28 0 129 8 129 10 122
-	200 3 26 28 4 0 129 10 122 2 122
-	200 3 23 18 17 9 177 9 172 1 172
-	200 3 23 17 24 9 177 1 172 1 177
-	200 3 44 41 34 27 52 27 53 21 53
-	200 3 44 34 43 27 52 21 53 21 52
-	200 3 45 35 41 27 52 27 53 21 53
-	200 3 45 41 44 27 52 21 53 21 52
-	200 3 46 32 35 27 52 27 53 21 53
-	200 3 46 35 45 27 52 21 53 21 52
-	200 3 47 36 32 27 52 27 53 21 53
-	200 3 47 32 46 27 52 21 53 21 52
-	200 3 48 42 36 27 52 27 53 21 53
-	200 3 48 36 47 27 52 21 53 21 52
-	200 3 49 37 42 27 52 27 53 21 53
-	200 3 49 42 48 27 52 21 53 21 52
-	200 3 43 34 39 27 52 27 53 21 53
-	200 3 43 39 50 27 52 21 53 21 52
-	200 3 51 40 37 27 52 27 53 21 53
-	200 3 51 37 49 27 52 21 53 21 52
-	200 3 50 39 33 27 52 27 53 21 53
-	200 3 50 33 52 27 52 21 53 21 52
-	200 3 53 38 40 27 52 27 53 21 53
-	200 3 53 40 51 27 52 21 53 21 52
-	200 3 51 49 48 154 174 152 173 150 172
-	200 3 42 32 36 150 172 147 167 148 170
-	200 3 65 62 55 27 52 27 53 21 53
-	200 3 65 55 64 27 52 21 53 21 52
-	200 3 66 56 62 27 52 27 53 21 53
-	200 3 66 62 65 27 52 21 53 21 52
-	200 3 67 54 56 27 52 27 53 21 53
-	200 3 67 56 66 27 52 21 53 21 52
-	200 3 68 57 54 27 52 27 53 21 53
-	200 3 68 54 67 27 52 21 53 21 52
-	200 3 69 63 57 27 52 27 53 21 53
-	200 3 69 57 68 27 52 21 53 21 52
-	200 3 70 58 63 27 52 27 53 21 53
-	200 3 70 63 69 27 52 21 53 21 52
-	200 3 64 55 60 27 52 27 53 21 53
-	200 3 64 60 71 27 52 21 53 21 52
-	200 3 72 61 58 27 52 27 53 21 53
-	200 3 72 58 70 27 52 21 53 21 52
-	200 3 73 59 61 27 52 27 53 21 53
-	200 3 73 61 72 27 52 21 53 21 52
-	200 3 72 70 69 154 174 152 173 150 172
-	200 3 86 83 77 27 52 27 53 21 53
-	200 3 86 77 85 27 52 21 53 21 52
-	200 3 87 78 83 27 52 27 53 21 53
-	200 3 87 83 86 27 52 21 53 21 52
-	200 3 88 75 78 27 52 27 53 21 53
-	200 3 88 78 87 27 52 21 53 21 52
-	200 3 89 79 75 27 52 27 53 21 53
-	200 3 89 75 88 27 52 21 53 21 52
-	200 3 90 84 79 27 52 27 53 21 53
-	200 3 90 79 89 27 52 21 53 21 52
-	200 3 91 80 84 27 52 27 53 21 53
-	200 3 91 84 90 27 52 21 53 21 52
-	200 3 85 77 81 27 52 27 53 21 53
-	200 3 85 81 92 27 52 21 53 21 52
-	200 3 93 82 80 27 52 27 53 21 53
-	200 3 93 80 91 27 52 21 53 21 52
-	200 3 92 81 76 27 52 27 53 21 53
-	200 3 92 76 94 27 52 21 53 21 52
-	200 3 93 91 90 154 174 152 173 150 172
-	200 3 108 105 98 27 52 27 53 21 53
-	200 3 108 98 107 27 52 21 53 21 52
-	200 3 109 99 105 27 52 27 53 21 53
-	200 3 109 105 108 27 52 21 53 21 52
-	200 3 110 96 99 27 52 27 53 21 53
-	200 3 110 99 109 27 52 21 53 21 52
-	200 3 111 100 96 27 52 27 53 21 53
-	200 3 111 96 110 27 52 21 53 21 52
-	200 3 112 106 100 27 52 27 53 21 53
-	200 3 112 100 111 27 52 21 53 21 52
-	200 3 113 101 106 27 52 27 53 21 53
-	200 3 113 106 112 27 52 21 53 21 52
-	200 3 107 98 103 27 52 27 53 21 53
-	200 3 107 103 114 27 52 21 53 21 52
-	200 3 115 104 101 27 52 27 53 21 53
-	200 3 115 101 113 27 52 21 53 21 52
-	200 3 114 103 97 27 52 27 53 21 53
-	200 3 114 97 116 27 52 21 53 21 52
-	200 3 117 102 104 27 52 27 53 21 53
-	200 3 117 104 115 27 52 21 53 21 52
-	200 3 115 113 112 154 174 152 173 150 172
-	200 3 106 96 100 150 172 147 167 148 170
-	200 3 73 72 71 156 173 154 174 154 159
-	200 3 73 71 74 156 173 154 159 158 172
-	200 3 65 64 71 150 161 152 160 154 159
-	200 3 65 71 72 150 161 154 159 154 174
-	200 3 67 66 65 147 167 148 164 150 161
-	200 3 67 65 72 147 167 150 161 154 174
-	200 3 69 68 67 150 172 148 170 147 167
-	200 3 69 67 72 150 172 147 167 154 174
-	200 3 53 51 50 156 173 154 174 154 159
-	200 3 53 50 52 156 173 154 159 156 160
-	200 3 44 43 50 150 161 152 160 154 159
-	200 3 44 50 51 150 161 154 159 154 174
-	200 3 46 45 44 147 167 148 164 150 161
-	200 3 46 44 51 147 167 150 161 154 174
-	200 3 48 47 46 150 172 148 170 147 167
-	200 3 48 46 51 150 172 147 167 154 174
-	200 3 117 115 114 156 173 154 174 154 159
-	200 3 117 114 116 156 173 154 159 156 160
-	200 3 108 107 114 150 161 152 160 154 159
-	200 3 108 114 115 150 161 154 159 154 174
-	200 3 110 109 108 147 167 148 164 150 161
-	200 3 110 108 115 147 167 150 161 154 174
-	200 3 112 111 110 150 172 148 170 147 167
-	200 3 112 110 115 150 172 147 167 154 174
-	200 3 93 92 94 154 174 154 159 156 160
-	200 3 93 94 95 154 174 156 160 158 172
-	200 3 86 85 92 150 161 152 160 154 159
-	200 3 86 92 93 150 161 154 159 154 174
-	200 3 88 87 86 147 167 148 164 150 161
-	200 3 88 86 93 147 167 150 161 154 174
-	200 3 90 89 88 150 172 148 170 147 167
-	200 3 90 88 93 150 172 147 167 154 174
-	200 3 77 84 80 152 160 150 172 152 173
-	200 3 77 80 82 152 160 152 173 154 174
-	200 3 77 83 78 152 160 150 161 148 164
-	200 3 77 78 84 152 160 148 164 150 172
-	200 3 78 75 79 148 164 147 167 148 170
-	200 3 78 79 84 148 164 148 170 150 172
-	200 3 101 98 105 152 173 152 160 150 161
-	200 3 101 105 106 152 173 150 161 150 172
-	200 3 105 99 96 150 161 148 164 147 167
-	200 3 105 96 106 150 161 147 167 150 172
-	200 3 37 34 41 152 173 152 160 150 161
-	200 3 37 41 42 152 173 150 161 150 172
-	200 3 41 35 32 150 161 148 164 147 167
-	200 3 41 32 42 150 161 147 167 150 172
-	200 3 60 55 63 154 159 152 160 150 172
-	200 3 60 63 58 154 159 150 172 152 173
-	200 3 55 62 56 152 160 150 161 148 164
-	200 3 55 56 63 152 160 148 164 150 172
-	200 3 56 54 57 148 164 147 167 148 170
-	200 3 56 57 63 148 164 148 170 150 172
\ No newline at end of file
diff --git a/components/prop/prhnaval1.pie b/components/prop/prhnaval1.pie
deleted file mode 100644
index bde0b5f..0000000
--- a/components/prop/prhnaval1.pie
+++ /dev/null
@@ -1,305 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-28-naval.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 108 
-	7 1 54 
-	7 2 56 
-	7 8 56 
-	7 8 54 
-	-10 13 -69 
-	-24 12 -28 
-	-23 12 55 
-	-29 12 19 
-	-17 -10 50 
-	-22 -4 19 
-	-19 -4 -29 
-	-9 3 -68 
-	-15 -15 48 
-	-17 -14 19 
-	-17 -14 -28 
-	-6 -14 -61 
-	0 13 -80 
-	0 -6 -73 
-	0 -13 -69 
-	10 13 -69 
-	25 12 -28 
-	24 11 55 
-	30 12 19 
-	17 -10 50 
-	23 -5 19 
-	20 -4 -29 
-	9 3 -68 
-	15 -15 48 
-	17 -14 19 
-	17 -14 -29 
-	6 -14 -61 
-	-6 1 54 
-	-6 2 56 
-	-6 8 56 
-	-6 8 54 
-	7 15 18 
-	-7 15 18 
-	7 9 48 
-	-8 13 -68 
-	-23 12 -28 
-	-21 11 54 
-	-27 12 19 
-	0 13 -71 
-	9 13 -68 
-	23 12 -28 
-	22 11 54 
-	28 12 19 
-	-6 9 48 
-	6 3 46 
-	-7 7 -66 
-	-21 7 -28 
-	-20 6 48 
-	-25 6 17 
-	0 7 -67 
-	8 7 -66 
-	22 7 -28 
-	20 6 48 
-	26 6 17 
-	-6 4 46 
-	-28 12 -4 
-	-23 -4 -4 
-	-17 -14 -4 
-	24 -4 -4 
-	29 12 -4 
-	17 -14 -4 
-	25 6 -4 
-	-25 7 -4 
-	27 12 -4 
-	-27 12 -4 
-	-7 8 -35 
-	0 8 -35 
-	8 7 -34 
-	23 5 -27 
-	23 4 46 
-	27 5 18 
-	21 0 45 
-	26 1 18 
-	22 2 -28 
-	20 3 -36 
-	26 2 -4 
-	27 5 -4 
-	25 5 -28 
-	25 4 46 
-	29 4 19 
-	24 -1 45 
-	28 1 18 
-	24 1 -29 
-	23 3 -37 
-	28 1 -4 
-	29 5 -4 
-	-23 5 -27 
-	-21 5 46 
-	-27 5 18 
-	-20 0 45 
-	-26 1 19 
-	-21 2 -28 
-	-20 3 -36 
-	-26 6 -4 
-	-25 1 -4 
-	-26 4 -28 
-	-24 4 47 
-	-30 5 19 
-	-23 -1 46 
-	-29 1 19 
-	-24 1 -29 
-	-22 3 -37 
-	-29 5 -4 
-	-28 1 -4
-POLYGONS 190
-	4200 3 11 5 4 8 1 64 45 62 4 50 2 61 2
-	4200 3 3 0 21 8 1 64 45 14 2 14 4 9 1
-	4200 3 0 27 23 8 1 64 45 14 4 12 9 11 8
-	4200 3 0 23 21 8 1 64 45 14 4 11 8 9 1
-	4200 3 1 3 2 8 1 64 45 24 9 25 5 24 5
-	4200 3 33 1 2 8 1 64 45 18 2 14 4 14 2
-	4200 3 32 34 31 8 1 64 45 24 9 25 5 25 9
-	4200 3 6 8 31 8 1 64 45 23 1 21 8 18 4
-	4200 3 34 6 31 8 1 64 45 18 2 23 1 18 4
-	4200 3 31 8 12 8 1 64 45 18 4 21 8 21 9
-	4200 3 0 12 27 8 1 64 45 14 4 21 9 12 9
-	4200 3 33 3 34 8 1 64 45 0 35 1 28 1 35
-	4200 3 35 57 65 8 1 64 45 17 28 17 20 27 20
-	4200 3 40 7 6 8 1 64 45 2 41 17 44 1 42
-	4200 3 47 6 34 8 1 64 45 4 35 1 42 1 35
-	4200 3 37 34 3 8 1 64 45 4 28 1 35 1 28
-	4200 3 45 3 21 8 1 64 45 2 22 1 28 1 21
-	4200 3 46 21 22 8 1 64 45 17 19 1 21 17 19
-	4200 3 67 22 63 8 1 64 45 27 20 17 19 27 19
-	4200 3 43 20 19 8 1 64 45 55 28 38 20 56 27
-	4200 3 39 4 5 8 1 64 45 38 42 56 36 38 42
-	4200 3 68 5 59 8 1 64 45 27 43 38 42 27 44
-	4200 3 38 16 4 8 1 64 45 55 35 61 31 56 36
-	4200 3 42 19 16 8 1 64 45 57 31 56 27 61 31
-	4200 3 51 41 40 8 1 64 45 26 15 22 13 27 13
-	4200 3 48 47 37 8 1 64 45 31 15 29 13 31 13
-	4200 3 56 37 45 8 1 64 45 33 15 31 13 33 13
-	4200 3 57 45 46 8 1 64 45 37 15 33 13 37 13
-	4200 3 65 46 67 8 1 64 45 43 15 37 13 43 13
-	4200 3 54 44 43 8 1 64 45 58 15 51 13 58 13
-	4200 3 50 38 39 8 1 64 45 8 15 2 13 8 13
-	4200 3 66 39 68 8 1 64 45 16 15 8 13 16 13
-	4200 3 16 19 26 8 1 64 45 3 2 0 2 0 5
-	4200 3 17 16 26 8 1 64 45 3 7 3 2 0 5
-	4200 3 17 26 30 8 1 64 45 3 7 0 5 1 10
-	4200 3 11 17 15 8 1 64 45 6 5 3 7 5 10
-	4200 3 11 16 17 8 1 64 45 6 5 3 2 3 7
-	4200 3 4 16 11 8 1 64 45 6 2 3 2 6 5
-	4200 3 18 17 30 8 1 64 45 3 10 3 7 1 10
-	4200 3 15 17 18 8 1 64 45 5 10 3 7 3 10
-	4200 3 36 66 52 8 1 64 45 17 35 27 42 17 43
-	4200 3 44 63 20 8 1 64 45 38 21 27 19 38 20
-	4200 3 41 59 7 8 1 64 45 17 44 27 44 17 44
-	4200 3 55 67 44 8 1 64 45 51 15 43 13 51 13
-	4200 3 52 68 41 8 1 64 45 22 15 16 13 22 13
-	4200 3 104 99 105 8 1 64 45 50 5 50 4 52 4
-	4200 3 19 20 26 8 1 64 45 61 2 50 2 62 4
-	4200 3 81 86 87 8 1 64 45 50 4 50 5 52 4
-	4200 3 99 104 106 8 1 64 45 50 4 50 5 43 4
-	4200 3 107 106 104 8 1 64 45 43 5 43 4 50 5
-	4200 3 101 106 107 8 1 64 45 36 4 43 4 43 5
-	4200 3 103 101 107 8 1 64 45 36 5 36 4 43 5
-	4200 3 100 101 103 8 1 64 45 28 4 36 4 36 5
-	4200 3 102 100 103 8 1 64 45 29 5 28 4 36 5
-	4200 3 10 11 15 8 1 64 45 50 7 62 4 59 9
-	4200 3 14 10 15 8 1 64 45 50 9 50 7 59 9
-	4200 3 60 10 14 8 1 64 45 43 7 50 7 50 9
-	4200 3 61 60 14 8 1 64 45 43 9 43 7 50 9
-	4200 3 9 60 61 8 1 64 45 36 7 43 7 43 9
-	4200 3 13 9 61 8 1 64 45 36 9 36 7 43 9
-	4200 3 8 9 13 8 1 64 45 27 8 36 7 36 9
-	4200 3 12 8 13 8 1 64 45 28 9 27 8 36 9
-	4200 3 83 82 84 8 1 64 45 36 4 29 4 29 5
-	4200 3 85 83 84 8 1 64 45 36 5 36 4 29 5
-	4200 3 89 83 85 8 1 64 45 43 4 36 4 36 5
-	4200 3 88 89 85 8 1 64 45 43 5 43 4 36 5
-	4200 3 81 89 88 8 1 64 45 50 4 43 4 43 5
-	4200 3 86 81 88 8 1 64 45 50 5 50 4 43 5
-	4200 3 24 23 27 8 1 64 45 36 7 27 8 28 9
-	4200 3 28 24 27 8 1 64 45 36 9 36 7 28 9
-	4200 3 62 24 28 8 1 64 45 43 7 36 7 36 9
-	4200 3 64 62 28 8 1 64 45 43 9 43 7 36 9
-	4200 3 25 62 64 8 1 64 45 50 7 43 7 43 9
-	4200 3 29 25 64 8 1 64 45 50 9 50 7 43 9
-	4200 3 26 25 29 8 1 64 45 62 4 50 7 50 9
-	4200 3 26 29 30 8 1 64 45 62 4 50 9 59 9
-	4200 3 54 71 55 8 1 64 45 54 28 40 28 38 22
-	4200 3 49 50 69 8 1 64 45 54 35 38 41 41 35
-	4200 3 65 55 71 8 1 64 45 27 20 38 22 40 28
-	4200 3 54 53 71 8 1 64 45 54 28 55 31 40 28
-	4200 3 71 53 70 8 1 64 45 40 28 55 31 41 31
-	4200 3 69 53 49 8 1 64 45 41 35 55 31 54 35
-	4200 3 70 53 69 8 1 64 45 41 31 55 31 41 35
-	4200 3 66 69 50 8 1 64 45 27 42 41 35 38 41
-	4200 3 36 69 66 8 1 64 45 17 35 41 35 27 42
-	4200 3 70 69 36 8 1 64 45 41 31 41 35 17 35
-	4200 3 35 70 36 8 1 64 45 17 28 41 31 17 35
-	4200 3 71 70 35 8 1 64 45 40 28 41 31 17 28
-	4200 3 71 35 65 8 1 64 45 40 28 17 28 27 20
-	4200 3 42 49 53 8 1 64 45 0 13 2 15 0 15
-	4200 3 42 38 49 8 1 64 45 0 13 2 13 2 15
-	4200 3 54 42 53 8 1 64 45 58 15 59 13 59 15
-	4200 3 43 42 54 8 1 64 45 58 13 59 13 58 15
-	4200 3 78 25 26 8 1 64 45 52 4 50 7 62 4
-	4200 3 72 26 20 8 1 64 45 50 4 62 4 50 2
-	4200 3 75 21 23 8 1 64 45 29 5 26 2 27 8
-	4200 3 73 22 21 8 1 64 45 29 4 36 2 26 2
-	4200 3 76 23 24 8 1 64 45 36 5 27 8 36 7
-	4200 3 74 63 22 8 1 64 45 36 4 43 2 36 2
-	4200 3 79 24 62 8 1 64 45 43 5 36 7 43 7
-	4200 3 80 20 63 8 1 64 45 43 4 50 2 43 2
-	4200 3 77 62 25 8 1 64 45 50 5 43 7 50 7
-	4200 3 87 77 78 8 1 64 45 50 21 55 21 51 20
-	4200 3 81 78 72 8 1 64 45 45 18 50 21 45 19
-	4200 3 84 73 75 8 1 64 45 1 20 2 18 1 18
-	4200 3 82 74 73 8 1 64 45 2 18 18 17 2 20
-	4200 3 83 80 74 8 1 64 45 18 16 32 17 18 17
-	4200 3 89 72 80 8 1 64 45 32 16 45 19 32 17
-	4200 3 10 96 11 8 1 64 45 50 7 52 4 62 4
-	4200 3 11 90 5 8 1 64 45 62 4 50 4 50 2
-	4200 3 5 97 59 8 1 64 45 50 2 43 4 43 2
-	4200 3 60 95 10 8 1 64 45 43 7 50 5 50 7
-	4200 3 59 92 7 8 1 64 45 43 2 36 4 36 2
-	4200 3 9 98 60 8 1 64 45 36 7 43 5 43 7
-	4200 3 7 91 6 8 1 64 45 36 2 28 4 26 2
-	4200 3 8 94 9 8 1 64 45 27 8 36 5 36 7
-	4200 3 6 93 8 8 1 64 45 26 2 29 5 27 8
-	4200 3 95 105 96 8 1 64 45 55 21 50 21 51 20
-	4200 3 96 99 90 8 1 64 45 50 21 46 18 45 19
-	4200 3 90 106 97 8 1 64 45 45 19 32 16 32 17
-	4200 3 97 101 92 8 1 64 45 31 17 18 16 18 17
-	4200 3 92 100 91 8 1 64 45 36 4 28 4 28 4
-	4200 3 91 102 93 8 1 64 45 1 20 2 18 2 20
-	4200 3 57 35 56 8 1 64 45 17 20 17 28 4 22
-	4200 3 36 52 51 8 1 64 45 17 35 17 43 4 40
-	4200 3 36 51 58 8 1 64 45 17 35 4 40 5 34
-	4200 3 58 48 36 8 1 64 45 5 34 5 29 17 35
-	4200 3 48 35 36 8 1 64 45 5 29 17 28 17 35
-	4200 3 48 56 35 8 1 64 45 5 29 4 22 17 28
-	4200 3 51 52 41 8 1 64 45 26 15 22 15 22 13
-	4200 3 50 49 38 8 1 64 45 8 15 2 15 2 13
-	4200 3 66 50 39 8 1 64 45 16 15 8 15 8 13
-	4200 3 52 66 68 8 1 64 45 22 15 16 15 16 13
-	4200 3 57 56 45 8 1 64 45 37 15 33 15 33 13
-	4200 3 65 57 46 8 1 64 45 43 15 37 15 37 13
-	4200 3 54 55 44 8 1 64 45 58 15 51 15 51 13
-	4200 3 55 65 67 8 1 64 45 51 15 43 15 43 13
-	4200 3 48 58 47 8 1 64 45 31 15 29 15 29 13
-	4200 3 56 48 37 8 1 64 45 33 15 31 15 31 13
-	4200 3 58 51 47 8 1 64 45 29 15 26 15 29 13
-	4200 3 47 51 40 8 1 64 45 29 13 26 15 27 13
-	4200 3 37 47 34 8 1 64 45 4 28 4 35 1 35
-	4200 3 1 0 3 8 1 64 45 24 9 25 9 25 5
-	4200 3 33 32 1 8 1 64 45 18 2 18 4 14 4
-	4200 3 32 33 34 8 1 64 45 24 9 24 5 25 5
-	4200 3 33 2 3 8 1 64 45 0 35 0 28 1 28
-	4200 3 0 31 12 8 1 64 45 14 4 18 4 21 9
-	4200 3 10 95 96 8 1 64 45 50 7 50 5 52 4
-	4200 3 11 96 90 8 1 64 45 62 4 52 4 50 4
-	4200 3 5 90 97 8 1 64 45 50 2 50 4 43 4
-	4200 3 59 97 92 8 1 64 45 43 2 43 4 36 4
-	4200 3 7 92 91 8 1 64 45 36 2 36 4 28 4
-	4200 3 96 105 99 8 1 64 45 50 21 51 20 46 18
-	4200 3 90 99 106 8 1 64 45 45 19 46 18 32 16
-	4200 3 97 106 101 8 1 64 45 31 17 32 16 18 16
-	4200 3 92 101 100 8 1 64 45 18 17 18 16 2 18
-	4200 3 72 78 26 8 1 64 45 50 4 52 4 62 4
-	4200 3 73 74 22 8 1 64 45 29 4 36 4 36 2
-	4200 3 74 80 63 8 1 64 45 36 4 43 4 43 2
-	4200 3 80 72 20 8 1 64 45 43 4 50 4 50 2
-	4200 3 81 87 78 8 1 64 45 45 18 51 20 50 21
-	4200 3 82 83 74 8 1 64 45 2 18 18 16 18 17
-	4200 3 83 89 80 8 1 64 45 18 16 32 16 32 17
-	4200 3 89 81 72 8 1 64 45 32 16 45 18 45 19
-	4200 3 75 73 21 8 1 64 45 29 5 29 4 26 2
-	4200 3 84 82 73 8 1 64 45 1 20 2 20 2 18
-	4200 3 76 75 23 8 1 64 45 36 5 29 5 27 8
-	4200 3 79 76 24 8 1 64 45 43 5 36 5 36 7
-	4200 3 77 79 62 8 1 64 45 50 5 43 5 43 7
-	4200 3 60 98 95 8 1 64 45 43 7 43 5 50 5
-	4200 3 9 94 98 8 1 64 45 36 7 36 5 43 5
-	4200 3 8 93 94 8 1 64 45 27 8 29 5 36 5
-	4200 3 40 41 7 8 1 64 45 2 41 17 44 17 44
-	4200 3 46 45 21 8 1 64 45 17 19 2 22 1 21
-	4200 3 67 46 22 8 1 64 45 27 20 17 19 17 19
-	4200 3 43 44 20 8 1 64 45 55 28 38 21 38 20
-	4200 3 39 38 4 8 1 64 45 38 42 55 35 56 36
-	4200 3 68 39 5 8 1 64 45 27 43 38 42 38 42
-	4200 3 44 67 63 8 1 64 45 38 21 27 20 27 19
-	4200 3 41 68 59 8 1 64 45 17 44 27 43 27 44
-	4200 3 47 40 6 8 1 64 45 29 13 27 13 26 13
-	4200 3 45 37 3 8 1 64 45 2 22 4 28 1 28
-	4200 3 38 42 16 8 1 64 45 55 35 57 31 61 31
-	4200 3 42 43 19 8 1 64 45 57 31 55 28 56 27
-	4200 3 78 77 25 8 1 64 45 52 4 50 5 50 7
-	4200 3 87 86 77 8 1 64 45 50 21 55 23 55 21
-	4200 3 6 91 93 8 1 64 45 26 2 28 4 29 5
-	4200 3 95 104 105 8 1 64 45 55 21 55 22 50 21
-	4200 3 91 100 102 8 1 64 45 1 20 1 19 2 18
-	4200 3 91 100 102 8 1 64 45 1 20 1 19 2 18
\ No newline at end of file
diff --git a/components/prop/prhrhtr3.pie b/components/prop/prhrhtr3.pie
deleted file mode 100644
index 6af8ec2..0000000
--- a/components/prop/prhrhtr3.pie
+++ /dev/null
@@ -1,94 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 32 
-	-41 23 42 
-	-20 23 42 
-	-20 15 53 
-	-41 15 53 
-	-35 7 -53 
-	-35 16 -53 
-	-35 23 -46 
-	-35 0 -44 
-	-20 23 -46 
-	-20 16 -53 
-	-20 7 -53 
-	-20 0 -44 
-	-35 0 -32 
-	-35 23 -32 
-	-20 23 -32 
-	-20 0 -32 
-	-20 23 -18 
-	-35 23 -18 
-	-35 7 -11 
-	-20 7 -11 
-	-20 0 -20 
-	-35 0 -20 
-	-20 16 -11 
-	-35 16 -11 
-	-41 0 -11 
-	-41 0 53 
-	-20 0 53 
-	-20 0 -11 
-	-41 15 -11 
-	-20 15 -11 
-	-20 23 -1 
-	-41 23 -1
-POLYGONS 55
-	200 3 26 2 3 0 186 0 178 10 178
-	200 3 26 3 25 0 186 10 178 10 186
-	200 3 31 30 29 2 108 9 108 9 126
-	200 3 31 29 28 2 108 9 126 2 126
-	200 3 27 26 25 94 98 94 136 88 136
-	200 3 27 25 24 94 98 88 136 88 98
-	200 3 29 27 24 10 178 10 186 0 186
-	200 3 29 24 28 10 178 0 186 0 178
-	200 3 15 12 7 35 56 43 56 43 62
-	200 3 15 7 11 35 56 43 62 35 62
-	200 3 12 15 20 35 56 43 56 43 62
-	200 3 12 20 21 35 56 43 62 35 62
-	200 3 11 7 4 4 84 4 73 8 73
-	200 3 11 4 10 4 84 8 73 8 84
-	200 3 23 22 16 13 84 13 73 17 73
-	200 3 23 16 17 13 84 17 73 17 84
-	200 3 10 4 5 8 84 8 73 13 73
-	200 3 10 5 9 8 84 13 73 13 84
-	200 3 21 20 19 4 84 4 73 8 73
-	200 3 21 19 18 4 84 8 73 8 84
-	200 3 9 5 6 13 84 13 73 17 73
-	200 3 9 6 8 13 84 17 73 17 84
-	200 3 12 21 17 97 175 97 164 113 163
-	200 3 12 17 13 97 175 113 163 113 175
-	200 3 21 18 23 97 164 102 157 108 157
-	200 3 21 23 17 97 164 108 157 113 163
-	200 3 13 6 7 113 175 113 163 97 164
-	200 3 13 7 12 113 175 97 164 97 175
-	200 3 7 6 5 97 164 113 163 108 157
-	200 3 7 5 4 97 164 108 157 102 157
-	200 3 31 0 1 10 98 10 136 1 136
-	200 3 31 1 30 10 98 1 136 1 98
-	200 3 8 6 13 12 217 1 217 1 194
-	200 3 8 13 14 12 217 1 194 12 194
-	200 3 17 16 14 12 217 1 217 1 194
-	200 3 17 14 13 12 217 1 194 12 194
-	200 3 24 25 3 11 137 11 171 5 171
-	200 3 24 3 28 11 137 5 171 5 137
-	200 3 31 28 3 1 142 5 137 5 171
-	200 3 31 3 0 1 142 5 171 1 165
-	200 3 3 2 1 2 107 9 107 9 127
-	200 3 3 1 0 2 107 9 127 2 127
-	200 3 11 10 9 97 164 102 157 108 157
-	200 3 11 9 8 97 164 108 157 113 163
-	200 3 15 11 8 97 175 97 164 113 163
-	200 3 15 8 14 97 175 113 163 113 175
-	200 3 20 16 22 97 164 113 163 108 157
-	200 3 20 22 19 97 164 108 157 102 157
-	200 3 14 16 20 113 175 113 163 97 164
-	200 3 14 20 15 113 175 97 164 97 175
-	200 3 1 26 29 1 165 11 171 5 137
-	200 3 1 29 30 1 165 5 137 1 142
-	200 3 29 30 26 5 137 1 142 11 171
-	200 3 29 26 27 5 137 11 171 11 137
-	200 3 26 1 2 11 171 1 165 5 171
\ No newline at end of file
diff --git a/components/prop/prhrtrk3.pie b/components/prop/prhrtrk3.pie
deleted file mode 100644
index 3e5ca5a..0000000
--- a/components/prop/prhrtrk3.pie
+++ /dev/null
@@ -1,75 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 24 
-	-40 26 -17 
-	-40 26 -33 
-	-20 26 -33 
-	-20 26 -17 
-	-40 26 13 
-	-40 0 13 
-	-40 0 -17 
-	-20 0 -17 
-	-20 0 13 
-	-20 26 13 
-	-40 26 32 
-	-40 0 30 
-	-40 17 42 
-	-40 8 42 
-	-20 26 32 
-	-20 0 30 
-	-20 8 42 
-	-20 17 42 
-	-40 0 -34 
-	-40 7 -43 
-	-40 18 -43 
-	-20 0 -34 
-	-20 18 -43 
-	-20 7 -43
-POLYGONS 44
-	200 3 3 2 1 10 125 10 109 1 109
-	200 3 3 1 0 10 125 1 109 1 125
-	200 3 6 5 4 11 170 11 143 1 143
-	200 3 6 4 0 11 170 1 143 1 170
-	200 3 9 8 7 1 143 11 143 11 170
-	200 3 9 7 3 1 143 11 170 1 170
-	200 3 4 5 11 1 142 11 142 11 156
-	200 3 4 11 10 1 142 11 156 1 158
-	200 3 11 13 12 11 156 8 165 4 166
-	200 3 11 12 10 11 156 4 166 1 158
-	200 3 15 8 9 11 156 11 142 1 142
-	200 3 15 9 14 11 156 1 142 1 158
-	200 3 17 16 15 4 166 8 165 11 156
-	200 3 17 15 14 4 166 11 156 1 158
-	200 3 14 9 4 10 128 10 106 1 106
-	200 3 14 4 10 10 128 1 106 1 128
-	200 3 9 3 0 10 132 10 102 1 102
-	200 3 9 0 4 10 132 1 102 1 132
-	200 3 0 1 18 1 144 1 156 11 157
-	200 3 0 18 6 1 144 11 157 11 144
-	200 3 1 20 19 1 156 4 164 8 164
-	200 3 1 19 18 1 156 8 164 11 157
-	200 3 21 2 3 11 157 1 156 1 144
-	200 3 21 3 7 11 157 1 144 11 144
-	200 3 23 22 2 8 164 4 164 1 156
-	200 3 23 2 21 8 164 1 156 11 157
-	200 3 23 21 18 9 182 9 186 1 186
-	200 3 23 18 19 9 182 1 186 1 182
-	200 3 2 22 20 9 173 9 177 1 177
-	200 3 2 20 1 9 173 1 177 1 173
-	200 3 22 23 19 9 177 9 182 1 182
-	200 3 22 19 20 9 177 1 182 1 177
-	200 3 15 16 13 9 186 9 182 1 182
-	200 3 15 13 11 9 186 1 182 1 186
-	200 3 16 17 12 9 182 9 177 1 177
-	200 3 16 12 13 9 182 1 177 1 182
-	200 3 17 14 10 9 177 9 173 1 173
-	200 3 17 10 12 9 177 1 173 1 177
-	200 3 21 7 6 94 102 94 128 88 128
-	200 3 21 6 18 94 102 88 128 88 102
-	200 3 7 8 5 94 100 94 134 88 134
-	200 3 7 5 6 94 100 88 134 88 100
-	200 3 8 15 11 94 107 94 127 88 127
-	200 3 8 11 5 94 107 88 127 88 107
\ No newline at end of file
diff --git a/components/prop/prhrvtl1.pie b/components/prop/prhrvtl1.pie
deleted file mode 100644
index bba7261..0000000
--- a/components/prop/prhrvtl1.pie
+++ /dev/null
@@ -1,76 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 31 
-	-9 36 15 
-	-9 36 39 
-	-16 50 45 
-	-16 50 33 
-	-22 15 32 
-	-22 11 16 
-	-38 11 16 
-	-38 15 32 
-	-38 29 11 
-	-22 29 11 
-	-22 34 27 
-	-38 34 27 
-	-19 14 -16 
-	-19 10 -29 
-	-33 10 -29 
-	-33 14 -16 
-	-33 20 -32 
-	-19 20 -32 
-	-19 24 -19 
-	-33 24 -19 
-	0 36 50 
-	-7 28 50 
-	-7 28 44 
-	0 36 48 
-	0 20 50 
-	0 20 37 
-	-20 16 36 
-	-20 21 -11 
-	-40 15 11 
-	-48 15 31 
-	-14 31 36
-POLYGONS 38
-	200 3 0 1 2 8 48 2 48 0 40
-	200 3 0 2 3 8 48 0 40 3 40
-	200 3 3 2 1 3 40 0 40 2 48
-	200 3 3 1 0 3 40 2 48 8 48
-	200 3 7 6 5 104 175 104 189 117 189
-	200 3 7 5 4 104 175 117 189 117 175
-	200 3 11 10 9 118 189 104 189 104 204
-	200 3 11 9 8 118 189 104 204 118 204
-	200 3 8 9 5 117 203 104 203 104 217
-	200 3 8 5 6 117 203 104 217 117 217
-	200 3 11 8 6 117 203 104 203 104 217
-	200 3 11 6 7 117 203 104 217 117 217
-	200 3 10 11 7 117 203 104 203 104 217
-	200 3 10 7 4 117 203 104 217 117 217
-	200 3 9 10 4 117 203 104 203 104 217
-	200 3 9 4 5 117 203 104 217 117 217
-	200 3 15 14 13 104 175 104 189 117 189
-	200 3 15 13 12 104 175 117 189 117 175
-	200 3 19 18 17 118 189 104 189 104 204
-	200 3 19 17 16 118 189 104 204 118 204
-	200 3 16 17 13 117 203 104 203 104 217
-	200 3 16 13 14 117 203 104 217 117 217
-	200 3 19 16 14 117 203 104 203 104 217
-	200 3 19 14 15 117 203 104 217 117 217
-	200 3 18 19 15 117 203 104 203 104 217
-	200 3 18 15 12 117 203 104 217 117 217
-	200 3 17 18 12 117 203 104 203 104 217
-	200 3 17 12 13 117 203 104 217 117 217
-	200 3 23 22 21 20 93 11 93 11 89
-	200 3 23 21 20 20 93 11 89 20 89
-	200 3 22 25 24 11 93 3 93 3 89
-	200 3 22 24 21 11 93 3 89 11 89
-	200 3 21 24 20 86 180 88 182 88 178
-	200 3 28 27 26 4 93 3 84 5 84
-	200 3 29 28 26 5 97 4 93 5 84
-	200 3 30 29 26 17 98 0 85 1 98
-	200 3 29 30 27 2 85 0 98 17 98
-	200 3 29 27 28 2 85 17 98 9 89
\ No newline at end of file
diff --git a/components/prop/prhrvtl2.pie b/components/prop/prhrvtl2.pie
deleted file mode 100644
index 7ec6bc0..0000000
--- a/components/prop/prhrvtl2.pie
+++ /dev/null
@@ -1,76 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 31 
-	-9 26 14 
-	-9 26 43 
-	-16 41 49 
-	-16 39 35 
-	-40 9 7 
-	-20 15 -15 
-	-20 24 36 
-	-48 9 31 
-	-20 11 36 
-	-22 9 32 
-	-22 5 16 
-	-38 5 16 
-	-38 9 32 
-	-38 23 11 
-	-22 23 11 
-	-22 28 27 
-	-38 28 27 
-	-18 8 -29 
-	-18 5 -42 
-	-31 5 -42 
-	-31 8 -29 
-	-31 15 -45 
-	-18 15 -45 
-	-18 19 -32 
-	-31 19 -32 
-	0 26 56 
-	-7 18 56 
-	-7 18 51 
-	0 26 51 
-	0 10 56 
-	0 10 51
-POLYGONS 38
-	200 3 0 1 2 8 48 2 48 0 40
-	200 3 0 2 3 8 48 0 40 3 40
-	200 3 3 2 1 3 40 0 40 2 48
-	200 3 3 1 0 3 40 2 48 8 48
-	200 3 7 6 5 2 85 0 98 17 98
-	200 3 7 5 4 2 85 17 98 9 89
-	200 3 6 7 8 17 98 0 85 1 98
-	200 3 12 11 10 104 189 104 204 118 204
-	200 3 12 10 9 104 189 118 204 118 189
-	200 3 16 15 14 118 189 104 189 104 204
-	200 3 16 14 13 118 189 104 204 118 204
-	200 3 13 14 10 117 203 104 203 104 217
-	200 3 13 10 11 117 203 104 217 117 217
-	200 3 16 13 11 117 203 104 203 104 217
-	200 3 16 11 12 117 203 104 217 117 217
-	200 3 15 16 12 117 203 104 203 104 217
-	200 3 15 12 9 117 203 104 217 117 217
-	200 3 14 15 9 117 203 104 203 104 217
-	200 3 14 9 10 117 203 104 217 117 217
-	200 3 20 19 18 104 189 104 204 118 204
-	200 3 20 18 17 104 189 118 204 118 189
-	200 3 24 23 22 118 189 104 189 104 204
-	200 3 24 22 21 118 189 104 204 118 204
-	200 3 21 22 18 117 203 104 203 104 217
-	200 3 21 18 19 117 203 104 217 117 217
-	200 3 24 21 19 117 203 104 203 104 217
-	200 3 24 19 20 117 203 104 217 117 217
-	200 3 23 24 20 117 203 104 203 104 217
-	200 3 23 20 17 117 203 104 217 117 217
-	200 3 22 23 17 117 203 104 203 104 217
-	200 3 22 17 18 117 203 104 217 117 217
-	200 3 28 27 26 20 93 11 93 11 89
-	200 3 28 26 25 20 93 11 89 20 89
-	200 3 27 30 29 11 93 3 93 3 89
-	200 3 27 29 26 11 93 3 89 11 89
-	200 3 26 29 25 86 180 88 182 88 178
-	200 3 4 5 8 4 93 3 84 5 84
-	200 3 7 4 8 5 97 4 93 5 84
\ No newline at end of file
diff --git a/components/prop/prhrvtl3.pie b/components/prop/prhrvtl3.pie
deleted file mode 100644
index 4ef6f65..0000000
--- a/components/prop/prhrvtl3.pie
+++ /dev/null
@@ -1,76 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 31 
-	-9 32 11 
-	-9 32 36 
-	-16 47 41 
-	-16 47 29 
-	-22 14 34 
-	-22 10 18 
-	-38 10 18 
-	-38 14 34 
-	-38 28 13 
-	-22 28 13 
-	-22 32 29 
-	-38 32 29 
-	-20 13 -19 
-	-20 10 -32 
-	-33 10 -32 
-	-33 13 -19 
-	-33 20 -35 
-	-20 20 -35 
-	-20 23 -22 
-	-33 23 -22 
-	0 31 57 
-	-7 23 57 
-	-7 23 52 
-	0 31 39 
-	0 15 57 
-	0 15 43 
-	-20 15 39 
-	-20 19 -9 
-	-40 14 13 
-	-48 14 33 
-	-20 32 39
-POLYGONS 38
-	200 3 0 1 2 8 48 2 48 0 40
-	200 3 0 2 3 8 48 0 40 3 40
-	200 3 3 2 1 3 40 0 40 2 48
-	200 3 3 1 0 3 40 2 48 8 48
-	200 3 7 6 5 104 189 104 204 118 204
-	200 3 7 5 4 104 189 118 204 118 189
-	200 3 11 10 9 118 189 104 189 104 204
-	200 3 11 9 8 118 189 104 204 118 204
-	200 3 8 9 5 117 203 104 203 104 217
-	200 3 8 5 6 117 203 104 217 117 217
-	200 3 11 8 6 117 203 104 203 104 217
-	200 3 11 6 7 117 203 104 217 117 217
-	200 3 10 11 7 117 203 104 203 104 217
-	200 3 10 7 4 117 203 104 217 117 217
-	200 3 9 10 4 117 203 104 203 104 217
-	200 3 9 4 5 117 203 104 217 117 217
-	200 3 15 14 13 117 190 117 203 105 203
-	200 3 15 13 12 117 190 105 203 105 190
-	200 3 19 18 17 105 190 117 190 117 203
-	200 3 19 17 16 105 190 117 203 105 203
-	200 3 16 17 13 104 204 117 204 117 216
-	200 3 16 13 14 104 204 117 216 104 216
-	200 3 19 16 14 104 204 117 204 117 216
-	200 3 19 14 15 104 204 117 216 104 216
-	200 3 18 19 15 104 204 117 204 117 216
-	200 3 18 15 12 104 204 117 216 104 216
-	200 3 17 18 12 104 204 117 204 117 216
-	200 3 17 12 13 104 204 117 216 104 216
-	200 3 23 22 21 20 93 11 93 11 89
-	200 3 23 21 20 20 93 11 89 20 89
-	200 3 22 25 24 11 93 3 93 3 89
-	200 3 22 24 21 11 93 3 89 11 89
-	200 3 21 24 20 86 180 88 182 88 178
-	200 3 28 27 26 4 93 3 84 5 84
-	200 3 29 28 26 5 97 4 93 5 84
-	200 3 29 30 27 2 85 0 98 17 98
-	200 3 29 27 28 2 85 17 98 9 89
-	200 3 30 29 26 17 98 0 85 1 98
\ No newline at end of file
diff --git a/components/prop/prhrvtl4.pie b/components/prop/prhrvtl4.pie
deleted file mode 100644
index 0731c00..0000000
--- a/components/prop/prhrvtl4.pie
+++ /dev/null
@@ -1,76 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 31 
-	-22 14 29 
-	-22 10 13 
-	-38 10 13 
-	-38 14 29 
-	-38 28 8 
-	-22 28 8 
-	-22 32 24 
-	-38 32 24 
-	-20 13 -19 
-	-20 10 -32 
-	-33 10 -32 
-	-33 13 -19 
-	-33 20 -35 
-	-20 20 -35 
-	-20 23 -22 
-	-33 23 -22 
-	0 27 53 
-	-7 19 53 
-	-7 19 47 
-	0 27 36 
-	0 12 53 
-	0 12 36 
-	-20 15 34 
-	-20 19 -14 
-	-40 14 8 
-	-48 14 28 
-	-14 29 34 
-	-9 32 8 
-	-9 30 32 
-	-16 47 38 
-	-16 47 26
-POLYGONS 38
-	200 3 3 2 1 104 189 104 204 118 204
-	200 3 3 1 0 104 189 118 204 118 189
-	200 3 7 6 5 118 189 104 189 104 204
-	200 3 7 5 4 118 189 104 204 118 204
-	200 3 4 5 1 117 203 104 203 104 217
-	200 3 4 1 2 117 203 104 217 117 217
-	200 3 7 4 2 117 203 104 203 104 217
-	200 3 7 2 3 117 203 104 217 117 217
-	200 3 6 7 3 117 203 104 203 104 217
-	200 3 6 3 0 117 203 104 217 117 217
-	200 3 5 6 0 117 203 104 203 104 217
-	200 3 5 0 1 117 203 104 217 117 217
-	200 3 11 10 9 104 189 104 204 118 204
-	200 3 11 9 8 104 189 118 204 118 189
-	200 3 15 14 13 118 189 104 189 104 204
-	200 3 15 13 12 118 189 104 204 118 204
-	200 3 12 13 9 117 203 104 203 104 217
-	200 3 12 9 10 117 203 104 217 117 217
-	200 3 15 12 10 117 203 104 203 104 217
-	200 3 15 10 11 117 203 104 217 117 217
-	200 3 14 15 11 117 203 104 203 104 217
-	200 3 14 11 8 117 203 104 217 117 217
-	200 3 13 14 8 117 203 104 203 104 217
-	200 3 13 8 9 117 203 104 217 117 217
-	200 3 19 18 17 20 93 11 93 11 89
-	200 3 19 17 16 20 93 11 89 20 89
-	200 3 18 21 20 11 93 3 93 3 89
-	200 3 18 20 17 11 93 3 89 11 89
-	200 3 17 20 16 86 180 88 182 88 178
-	200 3 24 23 22 4 93 3 84 5 84
-	200 3 25 24 22 5 97 4 93 5 84
-	200 3 25 26 23 2 85 0 98 17 98
-	200 3 25 23 24 2 85 17 98 9 89
-	200 3 26 25 22 17 98 0 85 1 98
-	200 3 27 28 29 8 48 2 48 0 40
-	200 3 27 29 30 8 48 0 40 3 40
-	200 3 30 29 28 3 40 0 40 2 48
-	200 3 30 28 27 3 40 2 48 8 48
\ No newline at end of file
diff --git a/components/prop/prhrwhl1.pie b/components/prop/prhrwhl1.pie
deleted file mode 100644
index 13d0eea..0000000
--- a/components/prop/prhrwhl1.pie
+++ /dev/null
@@ -1,325 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 118 
-	-21 7 32 
-	-21 7 -32 
-	-21 26 -32 
-	-21 26 32 
-	-22 7 -32 
-	-22 7 32 
-	-40 12 32 
-	-40 12 -32 
-	-40 26 -32 
-	-40 26 32 
-	-39 12 -32 
-	-39 12 32 
-	-21 17 42 
-	-21 8 43 
-	-40 8 43 
-	-40 17 42 
-	-21 8 -44 
-	-21 18 -43 
-	-40 18 -43 
-	-40 8 -44 
-	-40 8 42 
-	-21 8 42 
-	-39 8 42 
-	-40 8 -43 
-	-21 8 -43 
-	-39 8 -43 
-	-22 8 -43 
-	-22 26 32 
-	-22 26 -32 
-	-22 8 42 
-	-22 17 42 
-	-22 18 -43 
-	-22 1 -11 
-	-22 13 -20 
-	-22 7 -20 
-	-22 2 -15 
-	-22 2 -7 
-	-22 7 -2 
-	-22 13 -2 
-	-22 10 -21 
-	-22 10 -1 
-	-22 4 -18 
-	-22 4 -4 
-	-39 7 -20 
-	-39 4 -18 
-	-39 2 -15 
-	-39 1 -11 
-	-39 2 -7 
-	-39 4 -4 
-	-39 7 -2 
-	-39 10 -21 
-	-39 10 -1 
-	-39 13 -20 
-	-39 13 -2 
-	-22 1 -32 
-	-22 7 -41 
-	-22 2 -36 
-	-22 2 -28 
-	-22 7 -23 
-	-22 13 -23 
-	-22 10 -42 
-	-22 10 -22 
-	-22 4 -39 
-	-22 4 -25 
-	-39 7 -41 
-	-39 4 -39 
-	-39 2 -36 
-	-39 1 -32 
-	-39 2 -28 
-	-39 4 -25 
-	-39 7 -23 
-	-39 10 -42 
-	-39 10 -22 
-	-39 13 -23 
-	-39 16 -25 
-	-22 1 31 
-	-22 13 22 
-	-22 7 22 
-	-22 2 27 
-	-22 2 35 
-	-22 7 40 
-	-22 10 21 
-	-22 10 41 
-	-22 4 24 
-	-22 4 38 
-	-39 7 22 
-	-39 4 24 
-	-39 2 27 
-	-39 1 31 
-	-39 2 35 
-	-39 4 38 
-	-39 7 40 
-	-39 10 21 
-	-39 10 41 
-	-39 13 22 
-	-39 16 38 
-	-22 1 10 
-	-22 13 1 
-	-22 7 1 
-	-22 2 6 
-	-22 2 14 
-	-22 7 19 
-	-22 13 19 
-	-22 10 0 
-	-22 10 20 
-	-22 4 3 
-	-22 4 17 
-	-39 7 1 
-	-39 4 3 
-	-39 2 6 
-	-39 1 10 
-	-39 2 14 
-	-39 4 17 
-	-39 7 19 
-	-39 10 0 
-	-39 10 20 
-	-39 13 1 
-	-39 13 19
-POLYGONS 200
-	200 3 3 0 1 10 187 3 187 3 221
-	200 3 3 1 2 10 187 3 221 10 221
-	200 3 5 4 1 11 187 11 221 11 221
-	200 3 5 1 0 11 187 11 221 11 187
-	200 3 6 7 8 10 187 10 221 3 221
-	200 3 6 8 9 10 187 3 221 3 187
-	200 3 9 8 7 3 187 3 221 10 221
-	200 3 9 7 6 3 187 10 221 10 187
-	200 3 11 6 7 11 187 11 187 11 221
-	200 3 11 7 10 11 187 11 221 11 221
-	200 3 18 17 16 11 224 2 224 2 219
-	200 3 18 16 19 11 224 2 219 11 219
-	200 3 14 13 12 11 205 2 205 2 210
-	200 3 14 12 15 11 205 2 210 11 210
-	200 3 20 15 12 9 177 9 172 1 172
-	200 3 20 12 21 9 177 1 172 1 177
-	200 3 15 20 14 7 177 2 177 2 177
-	200 3 15 14 15 7 177 2 177 7 177
-	200 3 21 12 12 2 177 7 177 7 177
-	200 3 21 12 13 2 177 7 177 2 177
-	200 3 20 21 13 9 182 1 182 1 182
-	200 3 20 13 14 9 182 1 182 9 182
-	200 3 21 0 3 1 199 3 208 11 208
-	200 3 21 3 12 1 199 11 208 9 199
-	200 3 9 8 2 3 187 3 221 10 221
-	200 3 9 2 3 3 187 10 221 10 187
-	200 3 3 2 8 10 187 10 221 3 221
-	200 3 3 8 9 10 187 3 221 3 187
-	200 3 15 20 6 9 199 1 199 3 208
-	200 3 15 6 9 9 199 3 208 11 208
-	200 3 9 6 20 11 208 3 208 1 199
-	200 3 9 20 15 11 208 1 199 9 199
-	200 3 15 9 3 11 210 11 224 2 224
-	200 3 15 3 12 11 210 2 224 2 210
-	200 3 12 3 9 2 210 2 224 11 224
-	200 3 12 9 15 2 210 11 224 11 210
-	200 3 22 20 6 4 131 4 131 4 131
-	200 3 22 6 11 4 131 4 131 4 131
-	200 3 24 17 2 1 208 9 208 11 199
-	200 3 24 2 1 1 208 11 199 3 199
-	200 3 7 23 18 3 199 1 208 9 208
-	200 3 7 18 8 3 199 9 208 11 199
-	200 3 8 18 23 11 199 9 208 1 208
-	200 3 8 23 7 11 199 1 208 3 199
-	200 3 2 8 18 2 210 11 210 11 224
-	200 3 2 18 17 2 210 11 224 2 224
-	200 3 17 18 8 2 224 11 224 11 210
-	200 3 17 8 2 2 224 11 210 2 210
-	200 3 25 10 7 4 131 4 131 4 131
-	200 3 25 7 23 4 131 4 131 4 131
-	200 3 26 24 1 4 131 4 131 4 131
-	200 3 26 1 4 4 131 4 131 4 131
-	200 3 23 19 16 9 182 9 182 1 182
-	200 3 23 16 24 9 182 1 182 1 182
-	200 3 18 19 23 5 175 5 175 5 175
-	200 3 17 24 16 6 175 6 175 6 175
-	200 3 27 28 4 3 187 3 221 10 221
-	200 3 27 4 5 3 187 10 221 10 187
-	200 3 29 30 27 0 127 8 127 10 120
-	200 3 29 27 5 0 127 10 120 2 120
-	200 3 29 5 0 0 127 2 120 2 120
-	200 3 29 0 21 0 127 2 120 0 127
-	200 3 26 4 28 0 129 2 122 10 122
-	200 3 26 28 31 0 129 10 122 8 129
-	200 3 23 24 17 9 177 1 177 1 172
-	200 3 23 17 18 9 177 1 172 9 172
-	200 3 44 43 34 27 52 21 52 21 53
-	200 3 44 34 41 27 52 21 53 27 53
-	200 3 45 44 41 27 52 21 52 21 53
-	200 3 45 41 35 27 52 21 53 27 53
-	200 3 46 45 35 27 52 21 52 21 53
-	200 3 46 35 32 27 52 21 53 27 53
-	200 3 47 46 32 27 52 21 52 21 53
-	200 3 47 32 36 27 52 21 53 27 53
-	200 3 48 47 36 27 52 21 52 21 53
-	200 3 48 36 42 27 52 21 53 27 53
-	200 3 49 48 42 27 52 21 52 21 53
-	200 3 49 42 37 27 52 21 53 27 53
-	200 3 43 50 39 27 52 21 52 21 53
-	200 3 43 39 34 27 52 21 53 27 53
-	200 3 51 49 37 27 52 21 52 21 53
-	200 3 51 37 40 27 52 21 53 27 53
-	200 3 50 52 33 27 52 21 52 21 53
-	200 3 50 33 39 27 52 21 53 27 53
-	200 3 53 51 40 27 52 21 52 21 53
-	200 3 53 40 38 27 52 21 53 27 53
-	200 3 51 48 49 154 174 150 172 152 173
-	200 3 42 36 32 150 172 148 170 147 167
-	200 3 65 64 55 27 52 21 52 21 53
-	200 3 65 55 62 27 52 21 53 27 53
-	200 3 66 65 62 27 52 21 52 21 53
-	200 3 66 62 56 27 52 21 53 27 53
-	200 3 67 66 56 27 52 21 52 21 53
-	200 3 67 56 54 27 52 21 53 27 53
-	200 3 68 67 54 27 52 21 52 21 53
-	200 3 68 54 57 27 52 21 53 27 53
-	200 3 69 68 57 27 52 21 52 21 53
-	200 3 69 57 63 27 52 21 53 27 53
-	200 3 70 69 63 27 52 21 52 21 53
-	200 3 70 63 58 27 52 21 53 27 53
-	200 3 64 71 60 27 52 21 52 21 53
-	200 3 64 60 55 27 52 21 53 27 53
-	200 3 72 70 58 27 52 21 52 21 53
-	200 3 72 58 61 27 52 21 53 27 53
-	200 3 73 72 61 27 52 21 52 21 53
-	200 3 73 61 59 27 52 21 53 27 53
-	200 3 72 69 70 154 174 150 172 152 173
-	200 3 86 85 77 27 52 21 52 21 53
-	200 3 86 77 83 27 52 21 53 27 53
-	200 3 87 86 83 27 52 21 52 21 53
-	200 3 87 83 78 27 52 21 53 27 53
-	200 3 88 87 78 27 52 21 52 21 53
-	200 3 88 78 75 27 52 21 53 27 53
-	200 3 89 88 75 27 52 21 52 21 53
-	200 3 89 75 79 27 52 21 53 27 53
-	200 3 90 89 79 27 52 21 52 21 53
-	200 3 90 79 84 27 52 21 53 27 53
-	200 3 91 90 84 27 52 21 52 21 53
-	200 3 91 84 80 27 52 21 53 27 53
-	200 3 85 92 81 27 52 21 52 21 53
-	200 3 85 81 77 27 52 21 53 27 53
-	200 3 93 91 80 27 52 21 52 21 53
-	200 3 93 80 82 27 52 21 53 27 53
-	200 3 92 94 76 27 52 21 52 21 53
-	200 3 92 76 81 27 52 21 53 27 53
-	200 3 93 90 91 154 174 150 172 152 173
-	200 3 108 107 98 27 52 21 52 21 53
-	200 3 108 98 105 27 52 21 53 27 53
-	200 3 109 108 105 27 52 21 52 21 53
-	200 3 109 105 99 27 52 21 53 27 53
-	200 3 110 109 99 27 52 21 52 21 53
-	200 3 110 99 96 27 52 21 53 27 53
-	200 3 111 110 96 27 52 21 52 21 53
-	200 3 111 96 100 27 52 21 53 27 53
-	200 3 112 111 100 27 52 21 52 21 53
-	200 3 112 100 106 27 52 21 53 27 53
-	200 3 113 112 106 27 52 21 52 21 53
-	200 3 113 106 101 27 52 21 53 27 53
-	200 3 107 114 103 27 52 21 52 21 53
-	200 3 107 103 98 27 52 21 53 27 53
-	200 3 115 113 101 27 52 21 52 21 53
-	200 3 115 101 104 27 52 21 53 27 53
-	200 3 114 116 97 27 52 21 52 21 53
-	200 3 114 97 103 27 52 21 53 27 53
-	200 3 117 115 104 27 52 21 52 21 53
-	200 3 117 104 102 27 52 21 53 27 53
-	200 3 115 112 113 154 174 150 172 152 173
-	200 3 106 100 96 150 172 148 170 147 167
-	200 3 73 74 71 156 173 158 172 154 159
-	200 3 73 71 72 156 173 154 159 154 174
-	200 3 65 72 71 150 161 154 174 154 159
-	200 3 65 71 64 150 161 154 159 152 160
-	200 3 67 72 65 147 167 154 174 150 161
-	200 3 67 65 66 147 167 150 161 148 164
-	200 3 69 72 67 150 172 154 174 147 167
-	200 3 69 67 68 150 172 147 167 148 170
-	200 3 53 52 50 156 173 156 160 154 159
-	200 3 53 50 51 156 173 154 159 154 174
-	200 3 44 51 50 150 161 154 174 154 159
-	200 3 44 50 43 150 161 154 159 152 160
-	200 3 46 51 44 147 167 154 174 150 161
-	200 3 46 44 45 147 167 150 161 148 164
-	200 3 48 51 46 150 172 154 174 147 167
-	200 3 48 46 47 150 172 147 167 148 170
-	200 3 117 116 114 156 173 156 160 154 159
-	200 3 117 114 115 156 173 154 159 154 174
-	200 3 108 115 114 150 161 154 174 154 159
-	200 3 108 114 107 150 161 154 159 152 160
-	200 3 110 115 108 147 167 154 174 150 161
-	200 3 110 108 109 147 167 150 161 148 164
-	200 3 112 115 110 150 172 154 174 147 167
-	200 3 112 110 111 150 172 147 167 148 170
-	200 3 93 95 94 154 174 158 172 156 160
-	200 3 93 94 92 154 174 156 160 154 159
-	200 3 86 93 92 150 161 154 174 154 159
-	200 3 86 92 85 150 161 154 159 152 160
-	200 3 88 93 86 147 167 154 174 150 161
-	200 3 88 86 87 147 167 150 161 148 164
-	200 3 90 93 88 150 172 154 174 147 167
-	200 3 90 88 89 150 172 147 167 148 170
-	200 3 77 82 80 152 160 154 174 152 173
-	200 3 77 80 84 152 160 152 173 150 172
-	200 3 77 84 78 152 160 150 172 148 164
-	200 3 77 78 83 152 160 148 164 150 161
-	200 3 78 84 79 148 164 150 172 148 170
-	200 3 78 79 75 148 164 148 170 147 167
-	200 3 101 106 105 152 173 150 172 150 161
-	200 3 101 105 98 152 173 150 161 152 160
-	200 3 105 106 96 150 161 150 172 147 167
-	200 3 105 96 99 150 161 147 167 148 164
-	200 3 37 42 41 152 173 150 172 150 161
-	200 3 37 41 34 152 173 150 161 152 160
-	200 3 41 42 32 150 161 150 172 147 167
-	200 3 41 32 35 150 161 147 167 148 164
-	200 3 60 58 63 154 159 152 173 150 172
-	200 3 60 63 55 154 159 150 172 152 160
-	200 3 55 63 56 152 160 150 172 148 164
-	200 3 55 56 62 152 160 148 164 150 161
-	200 3 56 63 57 148 164 150 172 148 170
-	200 3 56 57 54 148 164 148 170 147 167
\ No newline at end of file
diff --git a/components/prop/prlheli1.pie b/components/prop/prlheli1.pie
deleted file mode 100644
index 8276c86..0000000
--- a/components/prop/prlheli1.pie
+++ /dev/null
@@ -1,211 +0,0 @@
-PIE 3
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 0 0
-LEVELS 1
-LEVEL 1
-POINTS 88
-	9 22 19.6
-	12 29 14.1
-	-9 22 19.6
-	-11 13 16.3
-	-16 21 11.9
-	-16 21 -10.1
-	-12 29 14.1
-	-11 13 -15.6
-	-9 21 -15.6
-	-12 29 -10.1
-	0 32 5
-	-4.33013 32 2.5
-	-4.33013 29 2.5
-	4.33013 32 -2.5
-	4.33013 29 -2.5
-	0 29 -5
-	-4.33013 32 -2.5
-	-4.33013 29 -2.5
-	4.33013 32 2.5
-	4.33013 29 2.5
-	0 32 -5
-	0 29 5
-	-3 36 0
-	-3 32 0
-	0 32 3
-	0 36 3
-	3 32 0
-	0 36 -3
-	3 36 0
-	0 32 -3
-	2.99999 20 43
-	8.99999 29 14
-	-9.00001 29 14
-	-3.00001 20 43
-	-3.00001 12 43
-	-3.00001 11 22
-	2.99999 11 22
-	-9.00001 16 14
-	-21 28 -10.1
-	-21 28 7.5
-	-21 23 -10.1
-	-21 23 7.5
-	-16 21 -10.1
-	-16 21 10.8
-	-12 29 10.8
-	2.99999 12 43
-	9.00001 16 14
-	0.99999 12 58
-	0.99999 20 58
-	-1.00001 16 76
-	-1.00001 35 64
-	-1.00001 20 58
-	-1.00001 12 72
-	-1.00001 35 76
-	0.99999 35 64
-	0.99999 16 76
-	0.99999 12 72
-	0.99999 35 76
-	-1.00001 12 58
-	11 13 16.3
-	16 21 -10.1
-	16 21 11.9
-	12 29 -10.1
-	9 21 -15.6
-	21 28 7.5
-	21 28 -10.1
-	21 23 7.5
-	21 23 -10.1
-	16 21 -10.1
-	16 21 10.8
-	12 29 10.8
-	11 13 -15.6
-	-2 23 60.8
-	-2 28.0912 73.0912
-	-2 30.2 68
-	-2 17.9088 62.9088
-	-2 23 75.2
-	-2 15.8 68
-	-2 17.9088 73.0912
-	2 23 75.2
-	2 28.0912 62.9088
-	2 30.2 68
-	2 17.9088 73.0912
-	2 23 60.8
-	2 15.8 68
-	2 17.9088 62.9088
-	-2 28.0912 62.9088
-	2 28.0912 73.0912
-POLYGONS 116
-	200 3 0 1 2 0.075924 0.118542 0.086743 0.10051 0.011008 0.118542
-	200 3 3 4 5 0.028737 0.108362 0.047878 0.093909 0.047641 0.023898
-	200 3 2 6 4 0.075749 0.119106 0.086541 0.102732 0.047878 0.085426
-	200 3 7 5 8 0.332462 0.238937 0.332687 0.206587 0.252483 0.238887
-	200 3 6 9 4 0.086541 0.102732 0.08645 0.023656 0.047878 0.093909
-	200 3 10 11 12 0.408556 0.693014 0.420282 0.693014 0.420282 0.728492
-	200 3 13 14 15 0.443734 0.693014 0.443734 0.728492 0.45546 0.728492
-	200 3 11 16 17 0.420282 0.693014 0.443734 0.693014 0.443734 0.728492
-	200 3 13 18 19 0.443734 0.693014 0.420282 0.693014 0.420282 0.728492
-	200 3 16 20 15 0.443734 0.693014 0.45546 0.693014 0.45546 0.728492
-	200 3 18 10 21 0.420282 0.693014 0.408556 0.693014 0.408556 0.728492
-	200 3 18 13 10 0.459919 0.779883 0.459919 0.750005 0.434044 0.794822
-	200 3 16 11 20 0.40817 0.750005 0.40817 0.779883 0.434044 0.735066
-	200 3 22 23 24 0.055366 0.254187 0.048112 0.254187 0.048112 0.268411
-	200 3 25 24 26 0.055366 0.268411 0.055366 0.275665 0.06959 0.275665
-	200 3 27 28 26 0.06959 0.254187 0.06959 0.268411 0.076844 0.268411
-	200 3 27 29 23 0.06959 0.254187 0.06959 0.246933 0.055366 0.246933
-	200 3 27 22 25 0.06959 0.254187 0.055366 0.254187 0.055366 0.268411
-	200 3 30 31 32 0.054197 0.002029 0.075501 0.100594 0.011587 0.100594
-	200 3 33 32 34 0.070928 0.12587 0.070928 0.000373006 0.042243 0.12587
-	200 3 34 35 36 0.042243 0.12587 -0.00437 0.079257 -0.00437 0.079257
-	200 3 35 34 37 -0.00437 0.079257 0.042243 0.12587 0.024315 0.000373006
-	200 3 9 38 39 0.572295 0.527942 0.542808 0.527942 0.542808 0.429128
-	200 3 38 40 41 0.542808 0.527942 0.567359 0.527942 0.567359 0.429128
-	200 3 40 42 41 0.567359 0.527942 0.542585 0.527942 0.567359 0.429128
-	200 3 43 44 39 0.573906 0.398551 0.536241 0.384337 0.542808 0.429128
-	200 3 9 42 38 0.410521 0.721298 0.410521 0.786473 0.463846 0.756848
-	200 3 30 45 31 0.070928 0.12587 0.042243 0.12587 0.070928 0.000373006
-	200 3 36 46 45 -0.00437 0.079257 0.024315 0.000373006 0.042243 0.12587
-	200 3 47 45 30 0.042243 0.065569 0.042243 0.12587 0.070928 0.12587
-	200 3 1 6 2 0.086743 0.10051 0.000188 0.10051 0.011008 0.118542
-	200 3 7 3 5 0.02843 0.00591999 0.028737 0.108362 0.047641 0.023898
-	200 3 3 2 4 0.034223 0.10244 0.075749 0.119106 0.047878 0.085426
-	200 3 5 9 8 0.332687 0.206587 0.252513 0.206598 0.252483 0.238887
-	200 3 9 5 4 0.08645 0.023656 0.047641 0.023898 0.047878 0.093909
-	200 3 21 10 12 0.408556 0.728492 0.408556 0.693014 0.420282 0.728492
-	200 3 20 13 15 0.45546 0.693014 0.443734 0.693014 0.45546 0.728492
-	200 3 12 11 17 0.420282 0.728492 0.420282 0.693014 0.443734 0.728492
-	200 3 14 13 19 0.443734 0.728492 0.443734 0.693014 0.420282 0.728492
-	200 3 17 16 15 0.443734 0.728492 0.443734 0.693014 0.45546 0.728492
-	200 3 19 18 21 0.420282 0.728492 0.420282 0.693014 0.408556 0.728492
-	200 3 13 20 10 0.459919 0.750005 0.434044 0.735066 0.434044 0.794822
-	200 3 11 10 20 0.40817 0.779883 0.434044 0.794822 0.434044 0.735066
-	200 3 25 22 24 0.055366 0.268411 0.055366 0.254187 0.048112 0.268411
-	200 3 28 25 26 0.06959 0.268411 0.055366 0.268411 0.06959 0.275665
-	200 3 29 27 26 0.076844 0.254187 0.06959 0.254187 0.076844 0.268411
-	200 3 22 27 23 0.055366 0.254187 0.06959 0.254187 0.055366 0.246933
-	200 3 28 27 25 0.06959 0.268411 0.06959 0.254187 0.055366 0.268411
-	200 3 33 30 32 0.032892 0.002029 0.054197 0.002029 0.011587 0.100594
-	200 3 32 37 34 0.070928 0.000373006 0.024315 0.000373006 0.042243 0.12587
-	200 3 45 34 36 0.042243 0.12587 0.042243 0.12587 -0.00437 0.079257
-	200 3 44 9 39 0.572296 0.407169 0.572295 0.527942 0.542808 0.429128
-	200 3 39 38 41 0.542808 0.429128 0.542808 0.527942 0.567359 0.429128
-	200 3 42 43 41 0.542585 0.527942 0.542585 0.407169 0.567359 0.429128
-	200 3 41 43 39 0.567359 0.429128 0.573906 0.398551 0.542808 0.429128
-	200 3 42 40 38 0.410521 0.786473 0.446071 0.792398 0.463846 0.756848
-	200 3 9 6 1 0.001564 0.02353 0.001564 0.10051 0.086743 0.10051
-	200 3 45 46 31 0.042243 0.12587 0.024315 0.000373006 0.070928 0.000373006
-	200 3 48 47 30 0.070928 0.065569 0.042243 0.065569 0.070928 0.12587
-	200 3 49 50 51 0.061406 0.086643 0.033425 0.130947 0.019434 0.09597
-	200 3 49 51 52 0.061406 0.086643 0.019434 0.09597 0.052079 0.077316
-	200 3 53 54 50 0.061406 0.130947 0.033425 0.130947 0.033425 0.130947
-	200 3 55 52 56 0.061406 0.086643 0.052079 0.077316 0.052079 0.077316
-	200 3 57 49 55 0.061406 0.130947 0.061406 0.086643 0.061406 0.086643
-	200 3 58 56 52 0.019434 0.077316 0.052079 0.077316 0.052079 0.077316
-	200 3 55 54 57 0.061406 0.086643 0.033425 0.130947 0.061406 0.130947
-	200 3 53 50 49 0.061406 0.130947 0.033425 0.130947 0.061406 0.086643
-	200 3 52 51 58 0.052079 0.077316 0.019434 0.09597 0.019434 0.077316
-	200 3 57 54 53 0.061406 0.130947 0.033425 0.130947 0.061406 0.130947
-	200 3 49 52 55 0.061406 0.086643 0.052079 0.077316 0.061406 0.086643
-	200 3 53 49 57 0.061406 0.130947 0.061406 0.086643 0.061406 0.130947
-	200 3 59 60 61 0.028737 0.108362 0.047641 0.023898 0.047878 0.093909
-	200 3 9 62 8 0.334006 0.206118 0.251051 0.206118 0.323637 0.245364
-	200 3 62 63 8 0.251051 0.206118 0.261421 0.245364 0.323637 0.245364
-	200 3 62 64 65 0.572295 0.527942 0.542808 0.429128 0.542808 0.527942
-	200 3 65 66 67 0.542808 0.527942 0.567359 0.429128 0.567359 0.527942
-	200 3 67 66 68 0.567359 0.527942 0.567359 0.429128 0.542585 0.527942
-	200 3 69 64 70 0.573906 0.398551 0.542808 0.429128 0.536241 0.384337
-	200 3 62 65 68 0.410521 0.721298 0.463846 0.756848 0.410521 0.786473
-	200 3 62 9 1 0.086743 0.02353 0.001564 0.02353 0.086743 0.10051
-	200 3 70 64 62 0.572296 0.407169 0.542808 0.429128 0.572295 0.527942
-	200 3 64 66 65 0.542808 0.429128 0.567359 0.429128 0.542808 0.527942
-	200 3 68 66 69 0.542585 0.527942 0.567359 0.429128 0.542585 0.407169
-	200 3 66 64 69 0.567359 0.429128 0.542808 0.429128 0.573906 0.398551
-	200 3 68 65 67 0.410521 0.786473 0.463846 0.756848 0.446071 0.792398
-	200 3 0 61 1 0.075749 0.119106 0.047878 0.085426 0.086541 0.102732
-	200 3 61 0 59 0.047878 0.085426 0.075749 0.119106 0.034223 0.10244
-	200 3 71 60 59 0.02843 0.00591999 0.047641 0.023898 0.028737 0.108362
-	200 3 62 61 60 0.08645 0.023656 0.047878 0.093909 0.047641 0.023898
-	200 3 71 63 60 0.332462 0.238937 0.252483 0.238887 0.332687 0.206587
-	200 3 1 61 62 0.086541 0.102732 0.047878 0.093909 0.08645 0.023656
-	200 3 60 63 62 0.332687 0.206587 0.252483 0.238887 0.252513 0.206598
-	200 3 58 51 33 0.042243 0.065569 0.070928 0.065569 0.070928 0.12587
-	200 3 30 33 51 0.054067 0.00217199 0.032975 0.00217199 0.039749 0.05298
-	200 3 34 58 33 0.042243 0.12587 0.042243 0.065569 0.070928 0.12587
-	200 3 48 30 51 0.047293 0.05298 0.054067 0.00217199 0.039749 0.05298
-	200 3 45 58 34 0.054067 0.00217199 0.039749 0.05298 0.032975 0.00217199
-	200 3 47 58 45 0.047293 0.05298 0.039749 0.05298 0.054067 0.00217199
-	200 3 48 50 54 0.019434 0.09597 0.033425 0.130947 0.033425 0.130947
-	200 3 55 56 48 0.061406 0.086643 0.052079 0.077316 0.019434 0.09597
-	200 3 51 50 48 0.019434 0.09597 0.033425 0.130947 0.019434 0.09597
-	200 3 47 56 58 0.019434 0.077316 0.052079 0.077316 0.019434 0.077316
-	200 3 48 54 55 0.019434 0.09597 0.033425 0.130947 0.061406 0.086643
-	200 3 48 56 47 0.019434 0.09597 0.052079 0.077316 0.019434 0.077316
-	200 3 72 73 74 0.520458 0.766056 0.560067 0.749649 0.54366 0.742853
-	200 3 75 76 73 0.527253 0.782462 0.566862 0.766056 0.560067 0.749649
-	200 3 77 78 76 0.54366 0.789258 0.560067 0.782462 0.566862 0.766056
-	200 3 79 80 81 0.520458 0.766056 0.560067 0.749649 0.54366 0.742853
-	200 3 82 83 80 0.527253 0.782462 0.566862 0.766056 0.560067 0.749649
-	200 3 84 85 83 0.54366 0.789258 0.560067 0.782462 0.566862 0.766056
-	200 3 86 72 74 0.527253 0.749649 0.520458 0.766056 0.54366 0.742853
-	200 3 72 75 73 0.520458 0.766056 0.527253 0.782462 0.560067 0.749649
-	200 3 75 77 76 0.527253 0.782462 0.54366 0.789258 0.566862 0.766056
-	200 3 87 79 81 0.527253 0.749649 0.520458 0.766056 0.54366 0.742853
-	200 3 79 82 80 0.520458 0.766056 0.527253 0.782462 0.560067 0.749649
-	200 3 82 84 83 0.527253 0.782462 0.54366 0.789258 0.566862 0.766056
diff --git a/components/prop/prlheli2.pie b/components/prop/prlheli2.pie
deleted file mode 100644
index 8276c86..0000000
--- a/components/prop/prlheli2.pie
+++ /dev/null
@@ -1,211 +0,0 @@
-PIE 3
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 0 0
-LEVELS 1
-LEVEL 1
-POINTS 88
-	9 22 19.6
-	12 29 14.1
-	-9 22 19.6
-	-11 13 16.3
-	-16 21 11.9
-	-16 21 -10.1
-	-12 29 14.1
-	-11 13 -15.6
-	-9 21 -15.6
-	-12 29 -10.1
-	0 32 5
-	-4.33013 32 2.5
-	-4.33013 29 2.5
-	4.33013 32 -2.5
-	4.33013 29 -2.5
-	0 29 -5
-	-4.33013 32 -2.5
-	-4.33013 29 -2.5
-	4.33013 32 2.5
-	4.33013 29 2.5
-	0 32 -5
-	0 29 5
-	-3 36 0
-	-3 32 0
-	0 32 3
-	0 36 3
-	3 32 0
-	0 36 -3
-	3 36 0
-	0 32 -3
-	2.99999 20 43
-	8.99999 29 14
-	-9.00001 29 14
-	-3.00001 20 43
-	-3.00001 12 43
-	-3.00001 11 22
-	2.99999 11 22
-	-9.00001 16 14
-	-21 28 -10.1
-	-21 28 7.5
-	-21 23 -10.1
-	-21 23 7.5
-	-16 21 -10.1
-	-16 21 10.8
-	-12 29 10.8
-	2.99999 12 43
-	9.00001 16 14
-	0.99999 12 58
-	0.99999 20 58
-	-1.00001 16 76
-	-1.00001 35 64
-	-1.00001 20 58
-	-1.00001 12 72
-	-1.00001 35 76
-	0.99999 35 64
-	0.99999 16 76
-	0.99999 12 72
-	0.99999 35 76
-	-1.00001 12 58
-	11 13 16.3
-	16 21 -10.1
-	16 21 11.9
-	12 29 -10.1
-	9 21 -15.6
-	21 28 7.5
-	21 28 -10.1
-	21 23 7.5
-	21 23 -10.1
-	16 21 -10.1
-	16 21 10.8
-	12 29 10.8
-	11 13 -15.6
-	-2 23 60.8
-	-2 28.0912 73.0912
-	-2 30.2 68
-	-2 17.9088 62.9088
-	-2 23 75.2
-	-2 15.8 68
-	-2 17.9088 73.0912
-	2 23 75.2
-	2 28.0912 62.9088
-	2 30.2 68
-	2 17.9088 73.0912
-	2 23 60.8
-	2 15.8 68
-	2 17.9088 62.9088
-	-2 28.0912 62.9088
-	2 28.0912 73.0912
-POLYGONS 116
-	200 3 0 1 2 0.075924 0.118542 0.086743 0.10051 0.011008 0.118542
-	200 3 3 4 5 0.028737 0.108362 0.047878 0.093909 0.047641 0.023898
-	200 3 2 6 4 0.075749 0.119106 0.086541 0.102732 0.047878 0.085426
-	200 3 7 5 8 0.332462 0.238937 0.332687 0.206587 0.252483 0.238887
-	200 3 6 9 4 0.086541 0.102732 0.08645 0.023656 0.047878 0.093909
-	200 3 10 11 12 0.408556 0.693014 0.420282 0.693014 0.420282 0.728492
-	200 3 13 14 15 0.443734 0.693014 0.443734 0.728492 0.45546 0.728492
-	200 3 11 16 17 0.420282 0.693014 0.443734 0.693014 0.443734 0.728492
-	200 3 13 18 19 0.443734 0.693014 0.420282 0.693014 0.420282 0.728492
-	200 3 16 20 15 0.443734 0.693014 0.45546 0.693014 0.45546 0.728492
-	200 3 18 10 21 0.420282 0.693014 0.408556 0.693014 0.408556 0.728492
-	200 3 18 13 10 0.459919 0.779883 0.459919 0.750005 0.434044 0.794822
-	200 3 16 11 20 0.40817 0.750005 0.40817 0.779883 0.434044 0.735066
-	200 3 22 23 24 0.055366 0.254187 0.048112 0.254187 0.048112 0.268411
-	200 3 25 24 26 0.055366 0.268411 0.055366 0.275665 0.06959 0.275665
-	200 3 27 28 26 0.06959 0.254187 0.06959 0.268411 0.076844 0.268411
-	200 3 27 29 23 0.06959 0.254187 0.06959 0.246933 0.055366 0.246933
-	200 3 27 22 25 0.06959 0.254187 0.055366 0.254187 0.055366 0.268411
-	200 3 30 31 32 0.054197 0.002029 0.075501 0.100594 0.011587 0.100594
-	200 3 33 32 34 0.070928 0.12587 0.070928 0.000373006 0.042243 0.12587
-	200 3 34 35 36 0.042243 0.12587 -0.00437 0.079257 -0.00437 0.079257
-	200 3 35 34 37 -0.00437 0.079257 0.042243 0.12587 0.024315 0.000373006
-	200 3 9 38 39 0.572295 0.527942 0.542808 0.527942 0.542808 0.429128
-	200 3 38 40 41 0.542808 0.527942 0.567359 0.527942 0.567359 0.429128
-	200 3 40 42 41 0.567359 0.527942 0.542585 0.527942 0.567359 0.429128
-	200 3 43 44 39 0.573906 0.398551 0.536241 0.384337 0.542808 0.429128
-	200 3 9 42 38 0.410521 0.721298 0.410521 0.786473 0.463846 0.756848
-	200 3 30 45 31 0.070928 0.12587 0.042243 0.12587 0.070928 0.000373006
-	200 3 36 46 45 -0.00437 0.079257 0.024315 0.000373006 0.042243 0.12587
-	200 3 47 45 30 0.042243 0.065569 0.042243 0.12587 0.070928 0.12587
-	200 3 1 6 2 0.086743 0.10051 0.000188 0.10051 0.011008 0.118542
-	200 3 7 3 5 0.02843 0.00591999 0.028737 0.108362 0.047641 0.023898
-	200 3 3 2 4 0.034223 0.10244 0.075749 0.119106 0.047878 0.085426
-	200 3 5 9 8 0.332687 0.206587 0.252513 0.206598 0.252483 0.238887
-	200 3 9 5 4 0.08645 0.023656 0.047641 0.023898 0.047878 0.093909
-	200 3 21 10 12 0.408556 0.728492 0.408556 0.693014 0.420282 0.728492
-	200 3 20 13 15 0.45546 0.693014 0.443734 0.693014 0.45546 0.728492
-	200 3 12 11 17 0.420282 0.728492 0.420282 0.693014 0.443734 0.728492
-	200 3 14 13 19 0.443734 0.728492 0.443734 0.693014 0.420282 0.728492
-	200 3 17 16 15 0.443734 0.728492 0.443734 0.693014 0.45546 0.728492
-	200 3 19 18 21 0.420282 0.728492 0.420282 0.693014 0.408556 0.728492
-	200 3 13 20 10 0.459919 0.750005 0.434044 0.735066 0.434044 0.794822
-	200 3 11 10 20 0.40817 0.779883 0.434044 0.794822 0.434044 0.735066
-	200 3 25 22 24 0.055366 0.268411 0.055366 0.254187 0.048112 0.268411
-	200 3 28 25 26 0.06959 0.268411 0.055366 0.268411 0.06959 0.275665
-	200 3 29 27 26 0.076844 0.254187 0.06959 0.254187 0.076844 0.268411
-	200 3 22 27 23 0.055366 0.254187 0.06959 0.254187 0.055366 0.246933
-	200 3 28 27 25 0.06959 0.268411 0.06959 0.254187 0.055366 0.268411
-	200 3 33 30 32 0.032892 0.002029 0.054197 0.002029 0.011587 0.100594
-	200 3 32 37 34 0.070928 0.000373006 0.024315 0.000373006 0.042243 0.12587
-	200 3 45 34 36 0.042243 0.12587 0.042243 0.12587 -0.00437 0.079257
-	200 3 44 9 39 0.572296 0.407169 0.572295 0.527942 0.542808 0.429128
-	200 3 39 38 41 0.542808 0.429128 0.542808 0.527942 0.567359 0.429128
-	200 3 42 43 41 0.542585 0.527942 0.542585 0.407169 0.567359 0.429128
-	200 3 41 43 39 0.567359 0.429128 0.573906 0.398551 0.542808 0.429128
-	200 3 42 40 38 0.410521 0.786473 0.446071 0.792398 0.463846 0.756848
-	200 3 9 6 1 0.001564 0.02353 0.001564 0.10051 0.086743 0.10051
-	200 3 45 46 31 0.042243 0.12587 0.024315 0.000373006 0.070928 0.000373006
-	200 3 48 47 30 0.070928 0.065569 0.042243 0.065569 0.070928 0.12587
-	200 3 49 50 51 0.061406 0.086643 0.033425 0.130947 0.019434 0.09597
-	200 3 49 51 52 0.061406 0.086643 0.019434 0.09597 0.052079 0.077316
-	200 3 53 54 50 0.061406 0.130947 0.033425 0.130947 0.033425 0.130947
-	200 3 55 52 56 0.061406 0.086643 0.052079 0.077316 0.052079 0.077316
-	200 3 57 49 55 0.061406 0.130947 0.061406 0.086643 0.061406 0.086643
-	200 3 58 56 52 0.019434 0.077316 0.052079 0.077316 0.052079 0.077316
-	200 3 55 54 57 0.061406 0.086643 0.033425 0.130947 0.061406 0.130947
-	200 3 53 50 49 0.061406 0.130947 0.033425 0.130947 0.061406 0.086643
-	200 3 52 51 58 0.052079 0.077316 0.019434 0.09597 0.019434 0.077316
-	200 3 57 54 53 0.061406 0.130947 0.033425 0.130947 0.061406 0.130947
-	200 3 49 52 55 0.061406 0.086643 0.052079 0.077316 0.061406 0.086643
-	200 3 53 49 57 0.061406 0.130947 0.061406 0.086643 0.061406 0.130947
-	200 3 59 60 61 0.028737 0.108362 0.047641 0.023898 0.047878 0.093909
-	200 3 9 62 8 0.334006 0.206118 0.251051 0.206118 0.323637 0.245364
-	200 3 62 63 8 0.251051 0.206118 0.261421 0.245364 0.323637 0.245364
-	200 3 62 64 65 0.572295 0.527942 0.542808 0.429128 0.542808 0.527942
-	200 3 65 66 67 0.542808 0.527942 0.567359 0.429128 0.567359 0.527942
-	200 3 67 66 68 0.567359 0.527942 0.567359 0.429128 0.542585 0.527942
-	200 3 69 64 70 0.573906 0.398551 0.542808 0.429128 0.536241 0.384337
-	200 3 62 65 68 0.410521 0.721298 0.463846 0.756848 0.410521 0.786473
-	200 3 62 9 1 0.086743 0.02353 0.001564 0.02353 0.086743 0.10051
-	200 3 70 64 62 0.572296 0.407169 0.542808 0.429128 0.572295 0.527942
-	200 3 64 66 65 0.542808 0.429128 0.567359 0.429128 0.542808 0.527942
-	200 3 68 66 69 0.542585 0.527942 0.567359 0.429128 0.542585 0.407169
-	200 3 66 64 69 0.567359 0.429128 0.542808 0.429128 0.573906 0.398551
-	200 3 68 65 67 0.410521 0.786473 0.463846 0.756848 0.446071 0.792398
-	200 3 0 61 1 0.075749 0.119106 0.047878 0.085426 0.086541 0.102732
-	200 3 61 0 59 0.047878 0.085426 0.075749 0.119106 0.034223 0.10244
-	200 3 71 60 59 0.02843 0.00591999 0.047641 0.023898 0.028737 0.108362
-	200 3 62 61 60 0.08645 0.023656 0.047878 0.093909 0.047641 0.023898
-	200 3 71 63 60 0.332462 0.238937 0.252483 0.238887 0.332687 0.206587
-	200 3 1 61 62 0.086541 0.102732 0.047878 0.093909 0.08645 0.023656
-	200 3 60 63 62 0.332687 0.206587 0.252483 0.238887 0.252513 0.206598
-	200 3 58 51 33 0.042243 0.065569 0.070928 0.065569 0.070928 0.12587
-	200 3 30 33 51 0.054067 0.00217199 0.032975 0.00217199 0.039749 0.05298
-	200 3 34 58 33 0.042243 0.12587 0.042243 0.065569 0.070928 0.12587
-	200 3 48 30 51 0.047293 0.05298 0.054067 0.00217199 0.039749 0.05298
-	200 3 45 58 34 0.054067 0.00217199 0.039749 0.05298 0.032975 0.00217199
-	200 3 47 58 45 0.047293 0.05298 0.039749 0.05298 0.054067 0.00217199
-	200 3 48 50 54 0.019434 0.09597 0.033425 0.130947 0.033425 0.130947
-	200 3 55 56 48 0.061406 0.086643 0.052079 0.077316 0.019434 0.09597
-	200 3 51 50 48 0.019434 0.09597 0.033425 0.130947 0.019434 0.09597
-	200 3 47 56 58 0.019434 0.077316 0.052079 0.077316 0.019434 0.077316
-	200 3 48 54 55 0.019434 0.09597 0.033425 0.130947 0.061406 0.086643
-	200 3 48 56 47 0.019434 0.09597 0.052079 0.077316 0.019434 0.077316
-	200 3 72 73 74 0.520458 0.766056 0.560067 0.749649 0.54366 0.742853
-	200 3 75 76 73 0.527253 0.782462 0.566862 0.766056 0.560067 0.749649
-	200 3 77 78 76 0.54366 0.789258 0.560067 0.782462 0.566862 0.766056
-	200 3 79 80 81 0.520458 0.766056 0.560067 0.749649 0.54366 0.742853
-	200 3 82 83 80 0.527253 0.782462 0.566862 0.766056 0.560067 0.749649
-	200 3 84 85 83 0.54366 0.789258 0.560067 0.782462 0.566862 0.766056
-	200 3 86 72 74 0.527253 0.749649 0.520458 0.766056 0.54366 0.742853
-	200 3 72 75 73 0.520458 0.766056 0.527253 0.782462 0.560067 0.749649
-	200 3 75 77 76 0.527253 0.782462 0.54366 0.789258 0.566862 0.766056
-	200 3 87 79 81 0.527253 0.749649 0.520458 0.766056 0.54366 0.742853
-	200 3 79 82 80 0.520458 0.766056 0.527253 0.782462 0.560067 0.749649
-	200 3 82 84 83 0.527253 0.782462 0.54366 0.789258 0.566862 0.766056
diff --git a/components/prop/prlheli3.pie b/components/prop/prlheli3.pie
deleted file mode 100644
index 8276c86..0000000
--- a/components/prop/prlheli3.pie
+++ /dev/null
@@ -1,211 +0,0 @@
-PIE 3
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 0 0
-LEVELS 1
-LEVEL 1
-POINTS 88
-	9 22 19.6
-	12 29 14.1
-	-9 22 19.6
-	-11 13 16.3
-	-16 21 11.9
-	-16 21 -10.1
-	-12 29 14.1
-	-11 13 -15.6
-	-9 21 -15.6
-	-12 29 -10.1
-	0 32 5
-	-4.33013 32 2.5
-	-4.33013 29 2.5
-	4.33013 32 -2.5
-	4.33013 29 -2.5
-	0 29 -5
-	-4.33013 32 -2.5
-	-4.33013 29 -2.5
-	4.33013 32 2.5
-	4.33013 29 2.5
-	0 32 -5
-	0 29 5
-	-3 36 0
-	-3 32 0
-	0 32 3
-	0 36 3
-	3 32 0
-	0 36 -3
-	3 36 0
-	0 32 -3
-	2.99999 20 43
-	8.99999 29 14
-	-9.00001 29 14
-	-3.00001 20 43
-	-3.00001 12 43
-	-3.00001 11 22
-	2.99999 11 22
-	-9.00001 16 14
-	-21 28 -10.1
-	-21 28 7.5
-	-21 23 -10.1
-	-21 23 7.5
-	-16 21 -10.1
-	-16 21 10.8
-	-12 29 10.8
-	2.99999 12 43
-	9.00001 16 14
-	0.99999 12 58
-	0.99999 20 58
-	-1.00001 16 76
-	-1.00001 35 64
-	-1.00001 20 58
-	-1.00001 12 72
-	-1.00001 35 76
-	0.99999 35 64
-	0.99999 16 76
-	0.99999 12 72
-	0.99999 35 76
-	-1.00001 12 58
-	11 13 16.3
-	16 21 -10.1
-	16 21 11.9
-	12 29 -10.1
-	9 21 -15.6
-	21 28 7.5
-	21 28 -10.1
-	21 23 7.5
-	21 23 -10.1
-	16 21 -10.1
-	16 21 10.8
-	12 29 10.8
-	11 13 -15.6
-	-2 23 60.8
-	-2 28.0912 73.0912
-	-2 30.2 68
-	-2 17.9088 62.9088
-	-2 23 75.2
-	-2 15.8 68
-	-2 17.9088 73.0912
-	2 23 75.2
-	2 28.0912 62.9088
-	2 30.2 68
-	2 17.9088 73.0912
-	2 23 60.8
-	2 15.8 68
-	2 17.9088 62.9088
-	-2 28.0912 62.9088
-	2 28.0912 73.0912
-POLYGONS 116
-	200 3 0 1 2 0.075924 0.118542 0.086743 0.10051 0.011008 0.118542
-	200 3 3 4 5 0.028737 0.108362 0.047878 0.093909 0.047641 0.023898
-	200 3 2 6 4 0.075749 0.119106 0.086541 0.102732 0.047878 0.085426
-	200 3 7 5 8 0.332462 0.238937 0.332687 0.206587 0.252483 0.238887
-	200 3 6 9 4 0.086541 0.102732 0.08645 0.023656 0.047878 0.093909
-	200 3 10 11 12 0.408556 0.693014 0.420282 0.693014 0.420282 0.728492
-	200 3 13 14 15 0.443734 0.693014 0.443734 0.728492 0.45546 0.728492
-	200 3 11 16 17 0.420282 0.693014 0.443734 0.693014 0.443734 0.728492
-	200 3 13 18 19 0.443734 0.693014 0.420282 0.693014 0.420282 0.728492
-	200 3 16 20 15 0.443734 0.693014 0.45546 0.693014 0.45546 0.728492
-	200 3 18 10 21 0.420282 0.693014 0.408556 0.693014 0.408556 0.728492
-	200 3 18 13 10 0.459919 0.779883 0.459919 0.750005 0.434044 0.794822
-	200 3 16 11 20 0.40817 0.750005 0.40817 0.779883 0.434044 0.735066
-	200 3 22 23 24 0.055366 0.254187 0.048112 0.254187 0.048112 0.268411
-	200 3 25 24 26 0.055366 0.268411 0.055366 0.275665 0.06959 0.275665
-	200 3 27 28 26 0.06959 0.254187 0.06959 0.268411 0.076844 0.268411
-	200 3 27 29 23 0.06959 0.254187 0.06959 0.246933 0.055366 0.246933
-	200 3 27 22 25 0.06959 0.254187 0.055366 0.254187 0.055366 0.268411
-	200 3 30 31 32 0.054197 0.002029 0.075501 0.100594 0.011587 0.100594
-	200 3 33 32 34 0.070928 0.12587 0.070928 0.000373006 0.042243 0.12587
-	200 3 34 35 36 0.042243 0.12587 -0.00437 0.079257 -0.00437 0.079257
-	200 3 35 34 37 -0.00437 0.079257 0.042243 0.12587 0.024315 0.000373006
-	200 3 9 38 39 0.572295 0.527942 0.542808 0.527942 0.542808 0.429128
-	200 3 38 40 41 0.542808 0.527942 0.567359 0.527942 0.567359 0.429128
-	200 3 40 42 41 0.567359 0.527942 0.542585 0.527942 0.567359 0.429128
-	200 3 43 44 39 0.573906 0.398551 0.536241 0.384337 0.542808 0.429128
-	200 3 9 42 38 0.410521 0.721298 0.410521 0.786473 0.463846 0.756848
-	200 3 30 45 31 0.070928 0.12587 0.042243 0.12587 0.070928 0.000373006
-	200 3 36 46 45 -0.00437 0.079257 0.024315 0.000373006 0.042243 0.12587
-	200 3 47 45 30 0.042243 0.065569 0.042243 0.12587 0.070928 0.12587
-	200 3 1 6 2 0.086743 0.10051 0.000188 0.10051 0.011008 0.118542
-	200 3 7 3 5 0.02843 0.00591999 0.028737 0.108362 0.047641 0.023898
-	200 3 3 2 4 0.034223 0.10244 0.075749 0.119106 0.047878 0.085426
-	200 3 5 9 8 0.332687 0.206587 0.252513 0.206598 0.252483 0.238887
-	200 3 9 5 4 0.08645 0.023656 0.047641 0.023898 0.047878 0.093909
-	200 3 21 10 12 0.408556 0.728492 0.408556 0.693014 0.420282 0.728492
-	200 3 20 13 15 0.45546 0.693014 0.443734 0.693014 0.45546 0.728492
-	200 3 12 11 17 0.420282 0.728492 0.420282 0.693014 0.443734 0.728492
-	200 3 14 13 19 0.443734 0.728492 0.443734 0.693014 0.420282 0.728492
-	200 3 17 16 15 0.443734 0.728492 0.443734 0.693014 0.45546 0.728492
-	200 3 19 18 21 0.420282 0.728492 0.420282 0.693014 0.408556 0.728492
-	200 3 13 20 10 0.459919 0.750005 0.434044 0.735066 0.434044 0.794822
-	200 3 11 10 20 0.40817 0.779883 0.434044 0.794822 0.434044 0.735066
-	200 3 25 22 24 0.055366 0.268411 0.055366 0.254187 0.048112 0.268411
-	200 3 28 25 26 0.06959 0.268411 0.055366 0.268411 0.06959 0.275665
-	200 3 29 27 26 0.076844 0.254187 0.06959 0.254187 0.076844 0.268411
-	200 3 22 27 23 0.055366 0.254187 0.06959 0.254187 0.055366 0.246933
-	200 3 28 27 25 0.06959 0.268411 0.06959 0.254187 0.055366 0.268411
-	200 3 33 30 32 0.032892 0.002029 0.054197 0.002029 0.011587 0.100594
-	200 3 32 37 34 0.070928 0.000373006 0.024315 0.000373006 0.042243 0.12587
-	200 3 45 34 36 0.042243 0.12587 0.042243 0.12587 -0.00437 0.079257
-	200 3 44 9 39 0.572296 0.407169 0.572295 0.527942 0.542808 0.429128
-	200 3 39 38 41 0.542808 0.429128 0.542808 0.527942 0.567359 0.429128
-	200 3 42 43 41 0.542585 0.527942 0.542585 0.407169 0.567359 0.429128
-	200 3 41 43 39 0.567359 0.429128 0.573906 0.398551 0.542808 0.429128
-	200 3 42 40 38 0.410521 0.786473 0.446071 0.792398 0.463846 0.756848
-	200 3 9 6 1 0.001564 0.02353 0.001564 0.10051 0.086743 0.10051
-	200 3 45 46 31 0.042243 0.12587 0.024315 0.000373006 0.070928 0.000373006
-	200 3 48 47 30 0.070928 0.065569 0.042243 0.065569 0.070928 0.12587
-	200 3 49 50 51 0.061406 0.086643 0.033425 0.130947 0.019434 0.09597
-	200 3 49 51 52 0.061406 0.086643 0.019434 0.09597 0.052079 0.077316
-	200 3 53 54 50 0.061406 0.130947 0.033425 0.130947 0.033425 0.130947
-	200 3 55 52 56 0.061406 0.086643 0.052079 0.077316 0.052079 0.077316
-	200 3 57 49 55 0.061406 0.130947 0.061406 0.086643 0.061406 0.086643
-	200 3 58 56 52 0.019434 0.077316 0.052079 0.077316 0.052079 0.077316
-	200 3 55 54 57 0.061406 0.086643 0.033425 0.130947 0.061406 0.130947
-	200 3 53 50 49 0.061406 0.130947 0.033425 0.130947 0.061406 0.086643
-	200 3 52 51 58 0.052079 0.077316 0.019434 0.09597 0.019434 0.077316
-	200 3 57 54 53 0.061406 0.130947 0.033425 0.130947 0.061406 0.130947
-	200 3 49 52 55 0.061406 0.086643 0.052079 0.077316 0.061406 0.086643
-	200 3 53 49 57 0.061406 0.130947 0.061406 0.086643 0.061406 0.130947
-	200 3 59 60 61 0.028737 0.108362 0.047641 0.023898 0.047878 0.093909
-	200 3 9 62 8 0.334006 0.206118 0.251051 0.206118 0.323637 0.245364
-	200 3 62 63 8 0.251051 0.206118 0.261421 0.245364 0.323637 0.245364
-	200 3 62 64 65 0.572295 0.527942 0.542808 0.429128 0.542808 0.527942
-	200 3 65 66 67 0.542808 0.527942 0.567359 0.429128 0.567359 0.527942
-	200 3 67 66 68 0.567359 0.527942 0.567359 0.429128 0.542585 0.527942
-	200 3 69 64 70 0.573906 0.398551 0.542808 0.429128 0.536241 0.384337
-	200 3 62 65 68 0.410521 0.721298 0.463846 0.756848 0.410521 0.786473
-	200 3 62 9 1 0.086743 0.02353 0.001564 0.02353 0.086743 0.10051
-	200 3 70 64 62 0.572296 0.407169 0.542808 0.429128 0.572295 0.527942
-	200 3 64 66 65 0.542808 0.429128 0.567359 0.429128 0.542808 0.527942
-	200 3 68 66 69 0.542585 0.527942 0.567359 0.429128 0.542585 0.407169
-	200 3 66 64 69 0.567359 0.429128 0.542808 0.429128 0.573906 0.398551
-	200 3 68 65 67 0.410521 0.786473 0.463846 0.756848 0.446071 0.792398
-	200 3 0 61 1 0.075749 0.119106 0.047878 0.085426 0.086541 0.102732
-	200 3 61 0 59 0.047878 0.085426 0.075749 0.119106 0.034223 0.10244
-	200 3 71 60 59 0.02843 0.00591999 0.047641 0.023898 0.028737 0.108362
-	200 3 62 61 60 0.08645 0.023656 0.047878 0.093909 0.047641 0.023898
-	200 3 71 63 60 0.332462 0.238937 0.252483 0.238887 0.332687 0.206587
-	200 3 1 61 62 0.086541 0.102732 0.047878 0.093909 0.08645 0.023656
-	200 3 60 63 62 0.332687 0.206587 0.252483 0.238887 0.252513 0.206598
-	200 3 58 51 33 0.042243 0.065569 0.070928 0.065569 0.070928 0.12587
-	200 3 30 33 51 0.054067 0.00217199 0.032975 0.00217199 0.039749 0.05298
-	200 3 34 58 33 0.042243 0.12587 0.042243 0.065569 0.070928 0.12587
-	200 3 48 30 51 0.047293 0.05298 0.054067 0.00217199 0.039749 0.05298
-	200 3 45 58 34 0.054067 0.00217199 0.039749 0.05298 0.032975 0.00217199
-	200 3 47 58 45 0.047293 0.05298 0.039749 0.05298 0.054067 0.00217199
-	200 3 48 50 54 0.019434 0.09597 0.033425 0.130947 0.033425 0.130947
-	200 3 55 56 48 0.061406 0.086643 0.052079 0.077316 0.019434 0.09597
-	200 3 51 50 48 0.019434 0.09597 0.033425 0.130947 0.019434 0.09597
-	200 3 47 56 58 0.019434 0.077316 0.052079 0.077316 0.019434 0.077316
-	200 3 48 54 55 0.019434 0.09597 0.033425 0.130947 0.061406 0.086643
-	200 3 48 56 47 0.019434 0.09597 0.052079 0.077316 0.019434 0.077316
-	200 3 72 73 74 0.520458 0.766056 0.560067 0.749649 0.54366 0.742853
-	200 3 75 76 73 0.527253 0.782462 0.566862 0.766056 0.560067 0.749649
-	200 3 77 78 76 0.54366 0.789258 0.560067 0.782462 0.566862 0.766056
-	200 3 79 80 81 0.520458 0.766056 0.560067 0.749649 0.54366 0.742853
-	200 3 82 83 80 0.527253 0.782462 0.566862 0.766056 0.560067 0.749649
-	200 3 84 85 83 0.54366 0.789258 0.560067 0.782462 0.566862 0.766056
-	200 3 86 72 74 0.527253 0.749649 0.520458 0.766056 0.54366 0.742853
-	200 3 72 75 73 0.520458 0.766056 0.527253 0.782462 0.560067 0.749649
-	200 3 75 77 76 0.527253 0.782462 0.54366 0.789258 0.566862 0.766056
-	200 3 87 79 81 0.527253 0.749649 0.520458 0.766056 0.54366 0.742853
-	200 3 79 82 80 0.520458 0.766056 0.527253 0.782462 0.560067 0.749649
-	200 3 82 84 83 0.527253 0.782462 0.54366 0.789258 0.566862 0.766056
diff --git a/components/prop/prlhov1.pie b/components/prop/prlhov1.pie
deleted file mode 100644
index 73f3f75..0000000
--- a/components/prop/prlhov1.pie
+++ /dev/null
@@ -1,85 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 28 
-	14 10 -36 
-	25 10 -25 
-	25 10 42 
-	-13 10 -36 
-	-25 10 -25 
-	-25 10 42 
-	14 10 54 
-	-13 10 54 
-	-20 23 38 
-	-23 10 38 
-	23 10 38 
-	20 23 38 
-	27 0 -27 
-	27 0 44 
-	-26 0 44 
-	-26 0 -27 
-	-13 22 55 
-	-13 22 42 
-	-13 10 42 
-	-13 10 55 
-	15 0 57 
-	-14 0 57 
-	13 22 55 
-	13 22 42 
-	13 10 42 
-	13 10 55 
-	-14 0 -39 
-	15 0 -39
-POLYGONS 50
-	200 3 3 2 1 6 32 23 7 23 29
-	200 3 3 1 0 6 32 23 29 18 32
-	200 3 5 2 3 1 7 23 7 6 32
-	200 3 5 3 4 1 7 6 32 1 29
-	200 3 7 6 2 6 3 18 3 23 7
-	200 3 7 2 5 6 3 23 7 1 7
-	200 3 8 9 10 1 71 0 63 20 63
-	200 3 8 10 11 1 71 20 63 19 71
-	200 3 11 10 9 19 71 20 63 0 63
-	200 3 11 9 8 19 71 0 63 1 71
-	200 3 1 2 13 199 34 199 1 192 0
-	200 3 1 13 12 199 34 192 0 192 35
-	200 3 5 4 15 199 1 199 34 192 35
-	200 3 5 15 14 199 1 192 35 192 0
-	200 3 17 17 16 0 55 0 55 0 48
-	200 3 16 17 16 0 48 0 55 0 48
-	200 3 18 18 17 7 55 7 55 0 55
-	200 3 17 18 17 0 55 7 55 0 55
-	200 3 19 19 18 7 48 7 48 7 55
-	200 3 18 19 18 7 55 7 48 7 55
-	200 3 16 16 19 0 48 0 48 7 48
-	200 3 19 16 19 7 48 0 48 7 48
-	200 3 19 16 17 7 48 0 48 0 55
-	200 3 19 17 18 7 48 0 55 7 55
-	200 3 17 16 19 0 55 0 48 7 48
-	200 3 17 19 18 0 55 7 48 7 55
-	200 3 2 6 20 199 15 199 3 192 0
-	200 3 2 20 13 199 15 192 0 192 13
-	200 3 7 5 14 199 3 199 15 192 13
-	200 3 7 14 21 199 3 192 13 192 0
-	200 3 23 23 22 0 55 0 55 0 48
-	200 3 22 23 22 0 48 0 55 0 48
-	200 3 24 24 23 7 55 7 55 0 55
-	200 3 23 24 23 0 55 7 55 0 55
-	200 3 25 25 24 7 48 7 48 7 55
-	200 3 24 25 24 7 55 7 48 7 55
-	200 3 22 22 25 0 48 0 48 7 48
-	200 3 25 22 25 7 48 0 48 7 48
-	200 3 25 22 23 7 48 0 48 0 55
-	200 3 25 23 24 7 48 0 55 7 55
-	200 3 23 22 25 0 55 0 48 7 48
-	200 3 23 25 24 0 55 7 48 7 55
-	200 3 3 0 27 199 1 199 18 192 19
-	200 3 3 27 26 199 1 192 19 192 0
-	200 3 6 7 21 199 18 199 1 192 0
-	200 3 6 21 20 199 18 192 0 192 19
-	200 3 4 3 26 199 0 199 12 192 15
-	200 3 4 26 15 199 0 192 15 192 2
-	200 3 0 1 12 199 12 199 0 192 2
-	200 3 0 12 27 199 12 192 2 192 15
\ No newline at end of file
diff --git a/components/prop/prllhtr1.pie b/components/prop/prllhtr1.pie
deleted file mode 100644
index df44ec9..0000000
--- a/components/prop/prllhtr1.pie
+++ /dev/null
@@ -1,46 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 14 
-	31 13 31 
-	31 20 23 
-	31 20 -14 
-	31 0 31 
-	31 0 -14 
-	15 20 23 
-	15 13 31 
-	15 0 31 
-	15 20 -14 
-	15 0 -14 
-	15 17 -30 
-	15 0 -30 
-	29 0 -30 
-	29 17 -30
-POLYGONS 25
-	200 3 3 2 1 11 171 1 149 1 167
-	200 3 3 1 0 11 171 1 167 4 171
-	200 3 2 1 3 1 149 1 167 11 171
-	200 3 2 3 4 1 149 11 171 11 149
-	200 3 8 7 6 1 149 11 171 4 171
-	200 3 8 6 5 1 149 4 171 1 167
-	200 3 8 9 7 1 149 11 149 11 171
-	200 3 13 12 11 16 73 9 73 9 84
-	200 3 13 11 10 16 73 9 84 16 84
-	200 3 7 9 4 88 99 88 135 94 135
-	200 3 7 4 3 88 99 94 135 94 99
-	200 3 2 8 5 1 135 10 135 10 105
-	200 3 2 5 1 1 135 10 105 1 105
-	200 3 6 7 3 1 177 1 186 9 186
-	200 3 6 3 0 1 177 9 186 9 177
-	200 3 2 13 10 0 189 0 206 11 206
-	200 3 2 10 8 0 189 11 206 11 189
-	200 3 2 4 12 113 157 96 157 96 173
-	200 3 2 12 13 113 157 96 173 111 173
-	200 3 11 9 8 96 174 96 157 113 157
-	200 3 11 8 10 96 174 113 157 111 174
-	200 3 12 4 9 9 83 10 73 0 73
-	200 3 12 9 11 9 83 0 73 0 83
-	200 3 6 0 1 1 98 10 98 10 118
-	200 3 6 1 5 1 98 10 118 1 118
\ No newline at end of file
diff --git a/components/prop/prlltrk1.pie b/components/prop/prlltrk1.pie
deleted file mode 100644
index d27a8f8..0000000
--- a/components/prop/prlltrk1.pie
+++ /dev/null
@@ -1,40 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 12 
-	14 20 22 
-	36 20 22 
-	36 13 32 
-	14 13 32 
-	36 0 32 
-	14 0 32 
-	14 13 -31 
-	36 13 -31 
-	36 20 -22 
-	14 20 -22 
-	36 0 -31 
-	14 0 -31
-POLYGONS 21
-	200 3 3 2 1 9 107 2 107 2 127
-	200 3 3 1 0 9 107 2 127 9 127
-	200 3 3 5 4 1 177 1 185 9 185
-	200 3 3 4 2 1 177 9 185 9 177
-	200 3 9 8 7 9 109 2 109 2 125
-	200 3 9 7 6 9 109 2 125 9 125
-	200 3 1 8 9 10 136 10 100 1 100
-	200 3 1 9 0 10 136 1 100 1 136
-	200 3 10 7 2 11 137 4 137 4 172
-	200 3 10 2 4 11 137 4 172 11 172
-	200 3 7 8 1 4 137 1 142 1 166
-	200 3 7 1 2 4 137 1 166 4 172
-	200 3 0 9 6 1 166 1 143 4 138
-	200 3 0 6 5 1 166 4 138 11 171
-	200 3 9 6 11 1 143 4 138 11 138
-	200 3 9 11 5 1 143 11 138 11 171
-	200 3 5 3 0 11 171 4 171 1 166
-	200 3 11 6 7 1 185 1 177 9 177
-	200 3 11 7 10 1 185 9 177 9 185
-	200 3 5 11 10 94 135 94 99 89 99
-	200 3 5 10 4 94 135 89 99 89 135
\ No newline at end of file
diff --git a/components/prop/prllvtl1.pie b/components/prop/prllvtl1.pie
deleted file mode 100644
index 60bfd29..0000000
--- a/components/prop/prllvtl1.pie
+++ /dev/null
@@ -1,56 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 23 
-	14 12 -17 
-	14 8 24 
-	37 8 2 
-	46 8 20 
-	6 14 33 
-	0 21 33 
-	0 21 28 
-	6 14 28 
-	0 8 33 
-	0 8 28 
-	19 3 5 
-	19 6 17 
-	31 6 17 
-	31 3 5 
-	19 17 2 
-	31 17 2 
-	31 20 13 
-	19 20 13 
-	7 23 6 
-	7 23 24 
-	12 34 28 
-	12 34 20 
-	14 21 24
-POLYGONS 26
-	200 3 2 1 0 4 93 5 84 3 84
-	200 3 3 1 2 5 97 5 84 4 93
-	200 3 7 6 5 9 93 17 93 17 88
-	200 3 7 5 4 9 93 17 88 8 88
-	200 3 9 7 4 0 93 9 93 8 88
-	200 3 9 4 8 0 93 8 88 0 88
-	200 3 8 4 5 88 182 90 180 88 178
-	200 3 13 12 11 104 204 104 189 118 189
-	200 3 13 11 10 104 204 118 189 118 204
-	200 3 17 16 15 104 189 118 189 118 204
-	200 3 17 15 14 104 189 118 204 104 204
-	200 3 14 15 13 104 203 117 203 117 217
-	200 3 14 13 10 104 203 117 217 104 217
-	200 3 15 16 12 104 203 117 203 117 217
-	200 3 15 12 13 104 203 117 217 104 217
-	200 3 16 17 11 104 203 117 203 117 217
-	200 3 16 11 12 104 203 117 217 104 217
-	200 3 17 14 10 104 203 117 203 117 217
-	200 3 17 10 11 104 203 117 217 104 217
-	200 3 18 19 20 8 48 2 48 0 40
-	200 3 18 20 21 8 48 0 40 3 40
-	200 3 21 20 19 3 40 0 40 2 48
-	200 3 21 19 18 3 40 2 48 8 48
-	200 3 22 1 3 17 98 1 98 0 85
-	200 3 22 3 2 0 98 2 85 9 89
-	200 3 22 2 0 0 98 9 89 17 98
\ No newline at end of file
diff --git a/components/prop/prllvtl2.pie b/components/prop/prllvtl2.pie
deleted file mode 100644
index 1f59010..0000000
--- a/components/prop/prllvtl2.pie
+++ /dev/null
@@ -1,56 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 23 
-	0 25 41 
-	6 19 41 
-	0 13 41 
-	19 7 -1 
-	19 10 10 
-	31 10 10 
-	31 7 -1 
-	19 21 -4 
-	31 21 -4 
-	31 24 6 
-	19 24 6 
-	0 25 36 
-	6 19 36 
-	0 13 36 
-	7 27 13 
-	7 27 31 
-	12 38 35 
-	12 38 26 
-	14 15 -24 
-	14 12 17 
-	37 12 -4 
-	46 12 13 
-	14 24 17
-POLYGONS 26
-	200 3 2 1 0 88 182 90 180 88 178
-	200 3 6 5 4 104 204 104 189 118 189
-	200 3 6 4 3 104 204 118 189 118 204
-	200 3 10 9 8 104 189 118 189 118 204
-	200 3 10 8 7 104 189 118 204 104 204
-	200 3 7 8 6 104 203 117 203 117 217
-	200 3 7 6 3 104 203 117 217 104 217
-	200 3 8 9 5 104 203 117 203 117 217
-	200 3 8 5 6 104 203 117 217 104 217
-	200 3 9 10 4 104 203 117 203 117 217
-	200 3 9 4 5 104 203 117 217 104 217
-	200 3 10 7 3 104 203 117 203 117 217
-	200 3 10 3 4 104 203 117 217 104 217
-	200 3 12 11 0 9 93 17 93 17 88
-	200 3 12 0 1 9 93 17 88 8 88
-	200 3 13 12 1 0 93 9 93 8 88
-	200 3 13 1 2 0 93 8 88 0 88
-	200 3 14 15 16 8 48 2 48 0 40
-	200 3 14 16 17 8 48 0 40 3 40
-	200 3 17 16 15 3 40 0 40 2 48
-	200 3 17 15 14 3 40 2 48 8 48
-	200 3 20 19 18 4 93 5 84 3 84
-	200 3 21 19 20 5 97 5 84 4 93
-	200 3 22 19 21 17 98 1 98 0 85
-	200 3 22 21 20 0 98 2 85 9 89
-	200 3 22 20 18 0 98 9 89 17 98
\ No newline at end of file
diff --git a/components/prop/prllvtl3.pie b/components/prop/prllvtl3.pie
deleted file mode 100644
index 2aaf054..0000000
--- a/components/prop/prllvtl3.pie
+++ /dev/null
@@ -1,56 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 23 
-	19 7 4 
-	19 10 16 
-	31 10 16 
-	31 7 4 
-	19 21 1 
-	31 21 1 
-	31 24 12 
-	19 24 12 
-	7 27 5 
-	7 27 23 
-	12 38 27 
-	12 38 18 
-	6 18 32 
-	0 24 32 
-	0 24 22 
-	6 18 24 
-	0 12 32 
-	0 12 27 
-	14 15 -18 
-	14 12 23 
-	37 12 1 
-	46 12 18 
-	14 24 23
-POLYGONS 26
-	200 3 3 2 1 104 204 104 189 118 189
-	200 3 3 1 0 104 204 118 189 118 204
-	200 3 7 6 5 104 189 118 189 118 204
-	200 3 7 5 4 104 189 118 204 104 204
-	200 3 4 5 3 104 203 117 203 117 217
-	200 3 4 3 0 104 203 117 217 104 217
-	200 3 5 6 2 104 203 117 203 117 217
-	200 3 5 2 3 104 203 117 217 104 217
-	200 3 6 7 1 104 203 117 203 117 217
-	200 3 6 1 2 104 203 117 217 104 217
-	200 3 7 4 0 104 203 117 203 117 217
-	200 3 7 0 1 104 203 117 217 104 217
-	200 3 8 9 10 8 48 2 48 0 40
-	200 3 8 10 11 8 48 0 40 3 40
-	200 3 11 10 9 3 40 0 40 2 48
-	200 3 11 9 8 3 40 2 48 8 48
-	200 3 15 14 13 9 93 17 93 17 88
-	200 3 15 13 12 9 93 17 88 8 88
-	200 3 17 15 12 0 93 9 93 8 88
-	200 3 17 12 16 0 93 8 88 0 88
-	200 3 16 12 13 88 182 90 180 88 178
-	200 3 20 19 18 4 93 5 84 3 84
-	200 3 21 19 20 5 97 5 84 4 93
-	200 3 22 19 21 17 98 1 98 0 85
-	200 3 22 21 20 0 98 2 85 9 89
-	200 3 22 20 18 0 98 9 89 17 98
\ No newline at end of file
diff --git a/components/prop/prllwhl1.pie b/components/prop/prllwhl1.pie
deleted file mode 100644
index c9a2e2f..0000000
--- a/components/prop/prllwhl1.pie
+++ /dev/null
@@ -1,185 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 62 
-	13 0 -16 
-	13 13 -26 
-	13 7 -26 
-	13 1 -20 
-	13 1 -12 
-	13 7 -6 
-	13 13 -6 
-	13 10 -27 
-	13 10 -5 
-	13 4 -24 
-	13 4 -8 
-	27 7 -26 
-	27 4 -24 
-	27 1 -20 
-	27 0 -16 
-	27 1 -12 
-	27 4 -8 
-	27 7 -6 
-	27 10 -27 
-	27 10 -5 
-	27 13 -26 
-	27 13 -6 
-	12 22 -18 
-	28 22 -18 
-	12 7 -29 
-	28 7 -29 
-	12 16 -28 
-	28 16 -28 
-	28 11 -18 
-	12 6 -18 
-	13 0 16 
-	13 13 26 
-	13 7 26 
-	13 1 20 
-	13 1 12 
-	13 7 6 
-	13 13 6 
-	13 10 27 
-	13 10 5 
-	13 4 24 
-	13 4 8 
-	27 7 26 
-	27 4 24 
-	27 1 20 
-	27 0 16 
-	27 1 12 
-	27 4 8 
-	27 7 6 
-	27 10 27 
-	27 10 5 
-	27 13 26 
-	27 13 6 
-	12 22 18 
-	28 22 18 
-	12 7 29 
-	28 7 29 
-	12 16 28 
-	28 16 28 
-	28 11 18 
-	12 6 18 
-	13 10 -26 
-	13 10 26
-POLYGONS 116
-	200 3 12 9 2 27 52 27 53 21 53
-	200 3 12 2 11 27 52 21 53 21 52
-	200 3 13 3 9 27 52 27 53 21 53
-	200 3 13 9 12 27 52 21 53 21 52
-	200 3 14 0 3 27 52 27 53 21 53
-	200 3 14 3 13 27 52 21 53 21 52
-	200 3 15 4 0 27 52 27 53 21 53
-	200 3 15 0 14 27 52 21 53 21 52
-	200 3 16 10 4 27 52 27 53 21 53
-	200 3 16 4 15 27 52 21 53 21 52
-	200 3 17 5 10 27 52 27 53 21 53
-	200 3 17 10 16 27 52 21 53 21 52
-	200 3 11 2 7 27 52 27 53 21 53
-	200 3 11 7 18 27 52 21 53 21 52
-	200 3 19 8 5 27 52 27 53 21 53
-	200 3 19 5 17 27 52 21 53 21 52
-	200 3 18 7 1 27 52 27 53 21 53
-	200 3 18 1 20 27 52 21 53 21 52
-	200 3 21 6 8 27 52 27 53 21 53
-	200 3 21 8 19 27 52 21 53 21 52
-	200 3 12 11 18 150 161 152 160 154 159
-	200 3 12 18 19 150 161 154 159 154 174
-	200 3 14 13 12 147 167 148 164 150 161
-	200 3 14 12 19 147 167 150 161 154 174
-	200 3 15 14 19 148 170 147 167 154 174
-	200 3 15 19 17 148 170 154 174 152 173
-	200 3 15 17 16 148 170 152 173 150 172
-	200 3 2 9 3 152 160 150 161 148 164
-	200 3 2 3 10 152 160 148 164 150 172
-	200 3 3 0 4 148 164 147 167 148 170
-	200 3 3 4 10 148 164 148 170 150 172
-	200 3 26 24 25 12 199 12 204 1 204
-	200 3 26 25 27 12 199 1 204 1 199
-	200 3 27 25 24 1 199 1 204 12 204
-	200 3 27 24 26 1 199 12 204 12 199
-	200 3 23 27 25 12 187 12 199 12 204
-	200 3 23 25 28 12 187 12 204 1 195
-	200 3 28 25 27 1 195 12 204 12 199
-	200 3 28 27 23 1 195 12 199 12 187
-	200 3 24 26 22 12 204 12 199 12 187
-	200 3 24 22 29 12 204 12 187 1 195
-	200 3 29 22 26 1 195 12 187 12 199
-	200 3 29 26 24 1 195 12 199 12 204
-	200 3 42 41 32 27 52 21 52 21 53
-	200 3 42 32 39 27 52 21 53 27 53
-	200 3 43 42 39 27 52 21 52 21 53
-	200 3 43 39 33 27 52 21 53 27 53
-	200 3 44 43 33 27 52 21 52 21 53
-	200 3 44 33 30 27 52 21 53 27 53
-	200 3 45 44 30 27 52 21 52 21 53
-	200 3 45 30 34 27 52 21 53 27 53
-	200 3 46 45 34 27 52 21 52 21 53
-	200 3 46 34 40 27 52 21 53 27 53
-	200 3 47 46 40 27 52 21 52 21 53
-	200 3 47 40 35 27 52 21 53 27 53
-	200 3 41 48 37 27 52 21 52 21 53
-	200 3 41 37 32 27 52 21 53 27 53
-	200 3 49 47 35 27 52 21 52 21 53
-	200 3 49 35 38 27 52 21 53 27 53
-	200 3 48 50 31 27 52 21 52 21 53
-	200 3 48 31 37 27 52 21 53 27 53
-	200 3 51 49 38 27 52 21 52 21 53
-	200 3 51 38 36 27 52 21 53 27 53
-	200 3 42 49 48 150 161 154 174 154 159
-	200 3 42 48 41 150 161 154 159 152 160
-	200 3 44 49 42 147 167 154 174 150 161
-	200 3 44 42 43 147 167 150 161 148 164
-	200 3 45 46 47 148 170 150 172 152 173
-	200 3 45 47 49 148 170 152 173 154 174
-	200 3 45 49 44 148 170 154 174 147 167
-	200 3 32 40 33 152 160 150 172 148 164
-	200 3 32 33 39 152 160 148 164 150 161
-	200 3 33 40 34 148 164 150 172 148 170
-	200 3 33 34 30 148 164 148 170 147 167
-	200 3 55 54 56 1 204 12 204 12 199
-	200 3 55 56 57 1 204 12 199 1 199
-	200 3 57 56 54 1 199 12 199 12 204
-	200 3 57 54 55 1 199 12 204 1 204
-	200 3 55 57 53 12 204 12 199 12 187
-	200 3 55 53 58 12 204 12 187 1 195
-	200 3 58 53 57 1 195 12 187 12 199
-	200 3 58 57 55 1 195 12 199 12 204
-	200 3 52 56 54 1 187 1 200 1 204
-	200 3 52 54 59 1 187 1 204 12 196
-	200 3 59 54 56 12 196 1 204 1 200
-	200 3 59 56 52 12 196 1 200 1 187
-	200 3 58 53 23 1 224 12 224 12 187
-	200 3 58 23 28 1 224 12 187 1 187
-	200 3 28 23 53 1 187 12 187 12 224
-	200 3 28 53 58 1 187 12 224 1 224
-	200 3 53 52 22 12 224 1 224 1 187
-	200 3 53 22 23 12 224 1 187 12 187
-	200 3 23 22 52 12 187 1 187 1 224
-	200 3 23 52 53 12 187 1 224 12 224
-	200 3 29 22 52 12 187 1 187 1 224
-	200 3 29 52 59 12 187 1 224 12 224
-	200 3 59 52 22 12 224 1 224 1 187
-	200 3 59 22 29 12 224 1 187 12 187
-	200 3 51 50 48 156 173 156 160 154 159
-	200 3 51 48 49 156 173 154 159 154 174
-	200 3 20 21 19 156 160 156 173 154 174
-	200 3 20 19 18 156 160 154 174 154 159
-	200 3 5 60 7 152 173 154 160 154 159
-	200 3 5 7 2 152 173 154 159 152 160
-	200 3 5 2 10 152 173 152 160 150 172
-	200 3 61 35 40 154 160 152 173 150 172
-	200 3 61 40 32 154 160 150 172 152 160
-	200 3 61 32 37 154 160 152 160 154 159
-	200 3 23 22 26 1 187 12 187 12 199
-	200 3 23 26 27 1 187 12 199 1 199
-	200 3 27 26 22 1 199 12 199 12 187
-	200 3 27 22 23 1 199 12 187 1 187
-	200 3 57 56 52 12 199 1 199 1 187
-	200 3 57 52 53 12 199 1 187 12 187
-	200 3 53 52 56 12 187 1 187 1 199
-	200 3 53 56 57 12 187 1 199 12 199
\ No newline at end of file
diff --git a/components/prop/prlrhtr1.pie b/components/prop/prlrhtr1.pie
deleted file mode 100644
index 821fa11..0000000
--- a/components/prop/prlrhtr1.pie
+++ /dev/null
@@ -1,46 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 14 
-	-30 20 23 
-	-30 13 31 
-	-30 0 31 
-	-30 20 -14 
-	-30 0 -14 
-	-15 0 31 
-	-15 13 31 
-	-15 20 23 
-	-15 20 -14 
-	-15 0 -14 
-	-14 0 -30 
-	-14 17 -30 
-	-28 17 -30 
-	-28 0 -30
-POLYGONS 25
-	200 3 3 2 1 1 149 11 171 4 171
-	200 3 3 1 0 1 149 4 171 1 167
-	200 3 0 3 4 1 167 1 149 11 149
-	200 3 0 4 2 1 167 11 149 11 171
-	200 3 8 7 6 1 149 1 167 4 171
-	200 3 8 6 5 1 149 4 171 11 171
-	200 3 8 5 9 1 149 11 171 11 149
-	200 3 13 12 11 9 73 16 73 16 84
-	200 3 13 11 10 9 73 16 84 9 84
-	200 3 9 5 2 88 135 88 99 94 99
-	200 3 9 2 4 88 135 94 99 94 135
-	200 3 3 0 7 1 135 1 105 10 105
-	200 3 3 7 8 1 135 10 105 10 135
-	200 3 5 6 1 1 186 1 177 9 177
-	200 3 5 1 2 1 186 9 177 9 186
-	200 3 12 3 8 0 206 0 189 11 189
-	200 3 12 8 11 0 206 11 189 11 206
-	200 3 4 3 12 96 157 113 157 111 173
-	200 3 4 12 13 96 157 111 173 96 173
-	200 3 9 10 11 96 157 96 174 111 174
-	200 3 9 11 8 96 157 111 174 113 157
-	200 3 4 13 10 10 73 9 83 0 83
-	200 3 4 10 9 10 73 0 83 0 73
-	200 3 1 6 7 10 98 1 98 1 118
-	200 3 1 7 0 10 98 1 118 10 118
\ No newline at end of file
diff --git a/components/prop/prlrtrk1.pie b/components/prop/prlrtrk1.pie
deleted file mode 100644
index 6b783c7..0000000
--- a/components/prop/prlrtrk1.pie
+++ /dev/null
@@ -1,40 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 12 
-	-35 20 22 
-	-14 20 22 
-	-14 13 32 
-	-35 13 32 
-	-14 0 32 
-	-35 0 32 
-	-35 13 -31 
-	-14 13 -31 
-	-14 20 -22 
-	-35 20 -22 
-	-14 0 -31 
-	-35 0 -31
-POLYGONS 21
-	200 3 3 2 1 9 107 2 107 2 127
-	200 3 3 1 0 9 107 2 127 9 127
-	200 3 3 5 4 1 178 1 186 9 186
-	200 3 3 4 2 1 178 9 186 9 178
-	200 3 9 8 7 9 109 2 109 2 125
-	200 3 9 7 6 9 109 2 125 9 125
-	200 3 1 8 9 10 135 10 99 1 99
-	200 3 1 9 0 10 135 1 99 1 135
-	200 3 10 7 2 11 137 4 137 4 171
-	200 3 10 2 4 11 137 4 171 11 171
-	200 3 7 8 1 4 137 1 142 1 165
-	200 3 7 1 2 4 137 1 165 4 171
-	200 3 0 9 6 1 165 1 142 4 138
-	200 3 0 6 5 1 165 4 138 11 170
-	200 3 9 6 11 1 142 4 138 11 138
-	200 3 9 11 5 1 142 11 138 11 170
-	200 3 5 3 0 11 170 4 170 1 165
-	200 3 11 6 7 1 186 1 177 9 177
-	200 3 11 7 10 1 186 9 177 9 186
-	200 3 5 11 10 94 136 94 98 88 98
-	200 3 5 10 4 94 136 88 98 88 136
\ No newline at end of file
diff --git a/components/prop/prlrvtl1.pie b/components/prop/prlrvtl1.pie
deleted file mode 100644
index 7fd58e7..0000000
--- a/components/prop/prlrvtl1.pie
+++ /dev/null
@@ -1,56 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 23 
-	-7 23 6 
-	-7 23 24 
-	-12 34 28 
-	-12 34 20 
-	-19 6 17 
-	-19 3 5 
-	-31 3 5 
-	-31 6 17 
-	-31 17 2 
-	-19 17 2 
-	-19 20 13 
-	-31 20 13 
-	0 21 33 
-	-6 14 33 
-	-6 14 28 
-	0 21 28 
-	0 8 33 
-	0 8 28 
-	-14 8 24 
-	-46 8 20 
-	-14 21 24 
-	-37 8 2 
-	-14 12 -17
-POLYGONS 26
-	200 3 0 1 2 8 48 2 48 0 40
-	200 3 0 2 3 8 48 0 40 3 40
-	200 3 3 2 1 3 40 0 40 2 48
-	200 3 3 1 0 3 40 2 48 8 48
-	200 3 7 6 5 104 175 104 189 117 189
-	200 3 7 5 4 104 175 117 189 117 175
-	200 3 11 10 9 118 189 104 189 104 204
-	200 3 11 9 8 118 189 104 204 118 204
-	200 3 8 9 5 117 203 104 203 104 217
-	200 3 8 5 6 117 203 104 217 117 217
-	200 3 11 8 6 117 203 104 203 104 217
-	200 3 11 6 7 117 203 104 217 117 217
-	200 3 10 11 7 117 203 104 203 104 217
-	200 3 10 7 4 117 203 104 217 117 217
-	200 3 9 10 4 117 203 104 203 104 217
-	200 3 9 4 5 117 203 104 217 117 217
-	200 3 15 14 13 17 93 9 93 8 88
-	200 3 15 13 12 17 93 8 88 17 88
-	200 3 14 17 16 9 93 0 93 0 88
-	200 3 14 16 13 9 93 0 88 8 88
-	200 3 13 16 12 86 180 88 182 88 178
-	200 3 20 19 18 17 98 1 98 0 85
-	200 3 19 20 22 2 85 0 98 17 98
-	200 3 19 22 21 2 85 17 98 9 89
-	200 3 21 22 18 4 93 5 84 3 84
-	200 3 19 21 18 5 97 5 84 4 93
\ No newline at end of file
diff --git a/components/prop/prlrvtl2.pie b/components/prop/prlrvtl2.pie
deleted file mode 100644
index 799b947..0000000
--- a/components/prop/prlrvtl2.pie
+++ /dev/null
@@ -1,56 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 23 
-	-14 12 17 
-	-46 12 13 
-	-14 24 17 
-	-37 12 -4 
-	-14 15 -24 
-	0 25 41 
-	0 13 41 
-	-6 19 41 
-	-6 19 36 
-	0 25 36 
-	0 13 36 
-	-19 10 10 
-	-19 7 -1 
-	-31 7 -1 
-	-31 10 10 
-	-31 21 -4 
-	-19 21 -4 
-	-19 24 6 
-	-31 24 6 
-	-7 27 13 
-	-7 27 31 
-	-12 38 35 
-	-12 38 26
-POLYGONS 26
-	200 3 2 1 0 17 98 1 98 0 85
-	200 3 1 2 4 2 85 0 98 17 98
-	200 3 1 4 3 2 85 17 98 9 89
-	200 3 3 4 0 4 93 5 84 3 84
-	200 3 1 3 0 5 97 5 84 4 93
-	200 3 7 6 5 86 180 88 182 88 178
-	200 3 9 8 7 17 93 9 93 8 88
-	200 3 9 7 5 17 93 8 88 17 88
-	200 3 8 10 6 9 93 0 93 0 88
-	200 3 8 6 7 9 93 0 88 8 88
-	200 3 14 13 12 104 175 104 189 117 189
-	200 3 14 12 11 104 175 117 189 117 175
-	200 3 18 17 16 118 189 104 189 104 204
-	200 3 18 16 15 118 189 104 204 118 204
-	200 3 15 16 12 117 203 104 203 104 217
-	200 3 15 12 13 117 203 104 217 117 217
-	200 3 18 15 13 117 203 104 203 104 217
-	200 3 18 13 14 117 203 104 217 117 217
-	200 3 17 18 14 117 203 104 203 104 217
-	200 3 17 14 11 117 203 104 217 117 217
-	200 3 16 17 11 117 203 104 203 104 217
-	200 3 16 11 12 117 203 104 217 117 217
-	200 3 19 20 21 8 48 2 48 0 40
-	200 3 19 21 22 8 48 0 40 3 40
-	200 3 22 21 20 3 40 0 40 2 48
-	200 3 22 20 19 3 40 2 48 8 48
\ No newline at end of file
diff --git a/components/prop/prlrvtl3.pie b/components/prop/prlrvtl3.pie
deleted file mode 100644
index e5e2f99..0000000
--- a/components/prop/prlrvtl3.pie
+++ /dev/null
@@ -1,56 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 23 
-	-7 27 5 
-	-7 27 23 
-	-12 38 27 
-	-12 38 18 
-	-19 10 16 
-	-19 7 4 
-	-31 7 4 
-	-31 10 16 
-	-31 21 1 
-	-19 21 1 
-	-19 24 12 
-	-31 24 12 
-	0 24 32 
-	-6 18 32 
-	-6 18 24 
-	0 24 22 
-	0 12 32 
-	0 12 27 
-	-14 12 23 
-	-46 12 18 
-	-14 24 23 
-	-37 12 1 
-	-14 15 -18
-POLYGONS 26
-	200 3 0 1 2 8 48 2 48 0 40
-	200 3 0 2 3 8 48 0 40 3 40
-	200 3 3 2 1 3 40 0 40 2 48
-	200 3 3 1 0 3 40 2 48 8 48
-	200 3 7 6 5 104 175 104 189 117 189
-	200 3 7 5 4 104 175 117 189 117 175
-	200 3 11 10 9 118 189 104 189 104 204
-	200 3 11 9 8 118 189 104 204 118 204
-	200 3 8 9 5 117 203 104 203 104 217
-	200 3 8 5 6 117 203 104 217 117 217
-	200 3 11 8 6 117 203 104 203 104 217
-	200 3 11 6 7 117 203 104 217 117 217
-	200 3 10 11 7 117 203 104 203 104 217
-	200 3 10 7 4 117 203 104 217 117 217
-	200 3 9 10 4 117 203 104 203 104 217
-	200 3 9 4 5 117 203 104 217 117 217
-	200 3 15 14 13 17 93 9 93 8 88
-	200 3 15 13 12 17 93 8 88 17 88
-	200 3 14 17 16 9 93 0 93 0 88
-	200 3 14 16 13 9 93 0 88 8 88
-	200 3 13 16 12 86 180 88 182 88 178
-	200 3 20 19 18 17 98 1 98 0 85
-	200 3 19 20 22 2 85 0 98 17 98
-	200 3 19 22 21 2 85 17 98 9 89
-	200 3 21 22 18 4 93 5 84 3 84
-	200 3 19 21 18 5 97 5 84 4 93
\ No newline at end of file
diff --git a/components/prop/prlrwhl1.pie b/components/prop/prlrwhl1.pie
deleted file mode 100644
index 8366f18..0000000
--- a/components/prop/prlrwhl1.pie
+++ /dev/null
@@ -1,185 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 62 
-	-13 0 -16 
-	-13 13 -26 
-	-13 7 -26 
-	-13 1 -20 
-	-13 1 -12 
-	-13 7 -6 
-	-13 13 -6 
-	-13 10 -27 
-	-13 10 -5 
-	-13 4 -24 
-	-13 4 -8 
-	-27 7 -26 
-	-27 4 -24 
-	-27 1 -20 
-	-27 0 -16 
-	-27 1 -12 
-	-27 4 -8 
-	-27 7 -6 
-	-27 10 -27 
-	-27 10 -5 
-	-27 13 -26 
-	-27 13 -6 
-	-12 22 -18 
-	-28 22 -18 
-	-12 7 -29 
-	-28 7 -29 
-	-12 16 -28 
-	-28 16 -28 
-	-28 11 -18 
-	-12 6 -18 
-	-13 0 16 
-	-13 13 26 
-	-13 7 26 
-	-13 1 20 
-	-13 1 12 
-	-13 7 6 
-	-13 13 6 
-	-13 10 27 
-	-13 10 5 
-	-13 4 24 
-	-13 4 8 
-	-27 7 26 
-	-27 4 24 
-	-27 1 20 
-	-27 0 16 
-	-27 1 12 
-	-27 4 8 
-	-27 7 6 
-	-27 10 27 
-	-27 10 5 
-	-27 13 26 
-	-27 13 6 
-	-12 22 18 
-	-28 22 18 
-	-12 7 29 
-	-28 7 29 
-	-12 16 28 
-	-28 16 28 
-	-28 11 18 
-	-12 6 18 
-	-13 10 -26 
-	-13 10 26
-POLYGONS 116
-	200 3 12 11 2 27 52 21 52 21 53
-	200 3 12 2 9 27 52 21 53 27 53
-	200 3 13 12 9 27 52 21 52 21 53
-	200 3 13 9 3 27 52 21 53 27 53
-	200 3 14 13 3 27 52 21 52 21 53
-	200 3 14 3 0 27 52 21 53 27 53
-	200 3 15 14 0 27 52 21 52 21 53
-	200 3 15 0 4 27 52 21 53 27 53
-	200 3 16 15 4 27 52 21 52 21 53
-	200 3 16 4 10 27 52 21 53 27 53
-	200 3 17 16 10 27 52 21 52 21 53
-	200 3 17 10 5 27 52 21 53 27 53
-	200 3 11 18 7 27 52 21 52 21 53
-	200 3 11 7 2 27 52 21 53 27 53
-	200 3 19 17 5 27 52 21 52 21 53
-	200 3 19 5 8 27 52 21 53 27 53
-	200 3 18 20 1 27 52 21 52 21 53
-	200 3 18 1 7 27 52 21 53 27 53
-	200 3 21 19 8 27 52 21 52 21 53
-	200 3 21 8 6 27 52 21 53 27 53
-	200 3 12 19 18 150 161 154 174 154 159
-	200 3 12 18 11 150 161 154 159 152 160
-	200 3 14 19 12 147 167 154 174 150 161
-	200 3 14 12 13 147 167 150 161 148 164
-	200 3 15 16 17 148 170 150 172 152 173
-	200 3 15 17 19 148 170 152 173 154 174
-	200 3 15 19 14 148 170 154 174 147 167
-	200 3 2 10 3 152 160 150 172 148 164
-	200 3 2 3 9 152 160 148 164 150 161
-	200 3 3 10 4 148 164 150 172 148 170
-	200 3 3 4 0 148 164 148 170 147 167
-	200 3 25 24 26 1 204 12 204 12 199
-	200 3 25 26 27 1 204 12 199 1 199
-	200 3 27 26 24 1 199 12 199 12 204
-	200 3 27 24 25 1 199 12 204 1 204
-	200 3 25 27 23 12 204 12 199 12 187
-	200 3 25 23 28 12 204 12 187 1 195
-	200 3 28 23 27 1 195 12 187 12 199
-	200 3 28 27 25 1 195 12 199 12 204
-	200 3 22 26 24 12 187 12 199 12 204
-	200 3 22 24 29 12 187 12 204 1 195
-	200 3 29 24 26 1 195 12 204 12 199
-	200 3 29 26 22 1 195 12 199 12 187
-	200 3 42 39 32 27 52 27 53 21 53
-	200 3 42 32 41 27 52 21 53 21 52
-	200 3 43 33 39 27 52 27 53 21 53
-	200 3 43 39 42 27 52 21 53 21 52
-	200 3 44 30 33 27 52 27 53 21 53
-	200 3 44 33 43 27 52 21 53 21 52
-	200 3 45 34 30 27 52 27 53 21 53
-	200 3 45 30 44 27 52 21 53 21 52
-	200 3 46 40 34 27 52 27 53 21 53
-	200 3 46 34 45 27 52 21 53 21 52
-	200 3 47 35 40 27 52 27 53 21 53
-	200 3 47 40 46 27 52 21 53 21 52
-	200 3 41 32 37 27 52 27 53 21 53
-	200 3 41 37 48 27 52 21 53 21 52
-	200 3 49 38 35 27 52 27 53 21 53
-	200 3 49 35 47 27 52 21 53 21 52
-	200 3 48 37 31 27 52 27 53 21 53
-	200 3 48 31 50 27 52 21 53 21 52
-	200 3 51 36 38 27 52 27 53 21 53
-	200 3 51 38 49 27 52 21 53 21 52
-	200 3 42 41 48 150 161 152 160 154 159
-	200 3 42 48 49 150 161 154 159 154 174
-	200 3 44 43 42 147 167 148 164 150 161
-	200 3 44 42 49 147 167 150 161 154 174
-	200 3 45 44 49 148 170 147 167 154 174
-	200 3 45 49 47 148 170 154 174 152 173
-	200 3 45 47 46 148 170 152 173 150 172
-	200 3 32 39 33 152 160 150 161 148 164
-	200 3 32 33 40 152 160 148 164 150 172
-	200 3 33 30 34 148 164 147 167 148 170
-	200 3 33 34 40 148 164 148 170 150 172
-	200 3 56 54 55 12 199 12 204 1 204
-	200 3 56 55 57 12 199 1 204 1 199
-	200 3 57 55 54 1 199 1 204 12 204
-	200 3 57 54 56 1 199 12 204 12 199
-	200 3 53 57 55 12 187 12 199 12 204
-	200 3 53 55 58 12 187 12 204 1 195
-	200 3 58 55 57 1 195 12 204 12 199
-	200 3 58 57 53 1 195 12 199 12 187
-	200 3 54 56 52 1 204 1 200 1 187
-	200 3 54 52 59 1 204 1 187 12 196
-	200 3 59 52 56 12 196 1 187 1 200
-	200 3 59 56 54 12 196 1 200 1 204
-	200 3 23 53 58 12 187 12 224 1 224
-	200 3 23 58 28 12 187 1 224 1 187
-	200 3 28 58 53 1 187 1 224 12 224
-	200 3 28 53 23 1 187 12 224 12 187
-	200 3 22 52 53 1 187 1 224 12 224
-	200 3 22 53 23 1 187 12 224 12 187
-	200 3 23 53 52 12 187 12 224 1 224
-	200 3 23 52 22 12 187 1 224 1 187
-	200 3 52 22 29 1 224 1 187 12 187
-	200 3 52 29 59 1 224 12 187 12 224
-	200 3 59 29 22 12 224 12 187 1 187
-	200 3 59 22 52 12 224 1 187 1 224
-	200 3 51 49 48 156 173 154 174 154 159
-	200 3 51 48 50 156 173 154 159 156 160
-	200 3 20 18 19 156 160 154 159 154 174
-	200 3 20 19 21 156 160 154 174 156 173
-	200 3 5 10 2 152 173 150 172 152 160
-	200 3 5 2 7 152 173 152 160 154 159
-	200 3 5 7 60 152 173 154 159 154 160
-	200 3 61 37 32 154 160 154 159 152 160
-	200 3 61 32 40 154 160 152 160 150 172
-	200 3 61 40 35 154 160 150 172 152 173
-	200 3 26 22 23 12 199 12 187 1 187
-	200 3 26 23 27 12 199 1 187 1 199
-	200 3 27 23 22 1 199 1 187 12 187
-	200 3 27 22 26 1 199 12 187 12 199
-	200 3 52 56 57 1 187 1 199 12 199
-	200 3 52 57 53 1 187 12 199 12 187
-	200 3 53 57 56 12 187 12 199 1 199
-	200 3 53 56 52 12 187 1 199 1 187
\ No newline at end of file
diff --git a/components/prop/prmheli1.pie b/components/prop/prmheli1.pie
deleted file mode 100644
index 3179ce7..0000000
--- a/components/prop/prmheli1.pie
+++ /dev/null
@@ -1,213 +0,0 @@
-PIE 3
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 0 0
-LEVELS 1
-LEVEL 1
-POINTS 90
-	9 29 12
-	12 34 12
-	-9 29 12
-	-17 17 7
-	-20 23 7
-	-20 23 -10
-	-12 34 12
-	-17 17 -15
-	-9 29 -15
-	-12 34 -10
-	0 37 5
-	-4.33013 37 2.5
-	-4.33013 34 2.5
-	4.33013 37 -2.5
-	4.33013 34 -2.5
-	0 34 -5
-	-4.33013 37 -2.5
-	-4.33013 34 -2.5
-	4.33013 37 2.5
-	4.33013 34 2.5
-	0 37 -5
-	0 34 5
-	-3 41 0
-	-3 37 0
-	0 37 3
-	0 41 3
-	3 37 0
-	0 41 -3
-	3 41 0
-	0 37 -3
-	2.99999 34 47
-	8.99999 34 12
-	-9.00001 34 12
-	-3.00001 34 47
-	-3.00001 26 47
-	-3.00001 13 34
-	2.99999 13 34
-	-9.00001 21 12
-	-1.00001 26 62
-	-1.00001 34 62
-	-1.00001 30 80
-	-1.00001 11 68
-	-1.00001 34 76
-	-15 21 -20
-	-24 15 -20
-	-24 15 7
-	-21 9 -20
-	-21 9 7
-	-15 10 -20
-	-15 10 13
-	-15 21 13
-	15 21 -20
-	24 15 -20
-	15 10 -20
-	15 10 13
-	21 9 7
-	24 15 7
-	21 9 -20
-	15 21 13
-	17 17 7
-	17 17 -15
-	20 23 -10
-	9 29 -15
-	12 34 -10
-	20 23 7
-	-1.00001 11 80
-	0.99999 11 68
-	0.99999 30 80
-	0.99999 34 76
-	0.99999 26 62
-	0.99999 11 80
-	2.99999 26 47
-	9.00001 21 12
-	0.99999 34 62
-	-2 24 64.8
-	-2 29.0912 77.0912
-	-2 31.2 72
-	-2 18.9088 66.9088
-	-2 24 79.2
-	-2 16.8 72
-	-2 18.9088 77.0912
-	2 24 79.2
-	2 29.0912 66.9088
-	2 31.2 72
-	2 18.9088 77.0912
-	2 24 64.8
-	2 16.8 72
-	2 18.9088 66.9088
-	-2 29.0912 66.9088
-	2 29.0912 77.0912
-POLYGONS 116
-	200 3 0 1 2 0.075924 0.118542 0.086743 0.10051 0.011008 0.118542
-	200 3 3 4 5 0.028737 0.085545 0.047878 0.085426 0.047641 0.023898
-	200 3 2 6 4 0.075749 0.119106 0.086541 0.102732 0.047878 0.085426
-	200 3 7 5 8 0.332462 0.238937 0.332687 0.206587 0.252483 0.238887
-	200 3 6 9 4 0.086541 0.102732 0.08645 0.023656 0.047878 0.085426
-	200 3 10 11 12 0.408556 0.693014 0.420282 0.693014 0.420282 0.728492
-	200 3 13 14 15 0.443734 0.693014 0.443734 0.728492 0.45546 0.728492
-	200 3 11 16 17 0.420282 0.693014 0.443734 0.693014 0.443734 0.728492
-	200 3 13 18 19 0.443734 0.693014 0.420282 0.693014 0.420282 0.728492
-	200 3 16 20 15 0.443734 0.693014 0.45546 0.693014 0.45546 0.728492
-	200 3 18 10 21 0.420282 0.693014 0.408556 0.693014 0.408556 0.728492
-	200 3 18 13 10 0.459919 0.779883 0.459919 0.750005 0.434044 0.794822
-	200 3 16 11 20 0.40817 0.750005 0.40817 0.779883 0.434044 0.735066
-	200 3 22 23 24 0.055366 0.254187 0.048112 0.254187 0.048112 0.268411
-	200 3 25 24 26 0.055366 0.268411 0.055366 0.275665 0.06959 0.275665
-	200 3 27 28 26 0.06959 0.254187 0.06959 0.268411 0.076844 0.268411
-	200 3 27 29 23 0.06959 0.254187 0.06959 0.246933 0.055366 0.246933
-	200 3 27 22 25 0.06959 0.254187 0.055366 0.254187 0.055366 0.268411
-	200 3 30 31 32 0.054197 0.002029 0.075501 0.100594 0.011587 0.100594
-	200 3 33 32 34 0.070928 0.12587 0.070928 0.000373006 0.042243 0.12587
-	200 3 34 35 36 0.042243 0.12587 -0.00437 0.079257 -0.00437 0.079257
-	200 3 35 34 37 -0.00437 0.079257 0.042243 0.12587 0.024315 0.000373006
-	200 3 38 39 33 0.042243 0.065569 0.070928 0.065569 0.070928 0.12587
-	200 3 30 33 39 0.054067 0.00217199 0.032975 0.00217199 0.039749 0.05298
-	200 3 40 38 41 0.061406 0.086643 0.019434 0.09597 0.033425 0.130947
-	200 3 40 42 38 0.061406 0.086643 0.052079 0.077316 0.019434 0.09597
-	200 3 43 44 45 0.572295 0.527942 0.542808 0.527942 0.542808 0.429128
-	200 3 44 46 47 0.542808 0.527942 0.567359 0.527942 0.567359 0.429128
-	200 3 46 48 47 0.567359 0.527942 0.542585 0.527942 0.567359 0.429128
-	200 3 49 50 45 0.573906 0.398551 0.536241 0.384337 0.542808 0.429128
-	200 3 43 48 44 0.410521 0.721298 0.410521 0.786473 0.463846 0.756848
-	200 3 51 52 53 0.410521 0.721298 0.463846 0.756848 0.410521 0.786473
-	200 3 54 55 56 0.573906 0.398551 0.567359 0.429128 0.542808 0.429128
-	200 3 57 55 53 0.567359 0.527942 0.567359 0.429128 0.542585 0.527942
-	200 3 52 56 55 0.542808 0.527942 0.542808 0.429128 0.567359 0.429128
-	200 3 51 58 56 0.572295 0.527942 0.572296 0.407169 0.542808 0.429128
-	200 3 59 60 61 0.028737 0.085545 0.02843 0.00591999 0.047641 0.023898
-	200 3 60 62 61 0.332462 0.238937 0.252483 0.238887 0.332687 0.206587
-	200 3 63 9 1 0.086743 0.02353 0.001564 0.02353 0.086743 0.10051
-	200 3 63 62 8 0.251051 0.206118 0.261421 0.245364 0.323637 0.245364
-	200 3 0 59 64 0.075749 0.119106 0.034223 0.10244 0.047878 0.085426
-	200 3 1 64 63 0.086541 0.102732 0.047878 0.085426 0.08645 0.023656
-	200 3 65 41 66 0.061406 0.130947 0.033425 0.130947 0.033425 0.130947
-	200 3 67 68 42 0.061406 0.086643 0.052079 0.077316 0.052079 0.077316
-	200 3 69 66 41 0.019434 0.09597 0.033425 0.130947 0.033425 0.130947
-	200 3 70 67 40 0.061406 0.130947 0.061406 0.086643 0.061406 0.086643
-	200 3 39 42 68 0.019434 0.077316 0.052079 0.077316 0.052079 0.077316
-	200 3 30 71 31 0.070928 0.12587 0.042243 0.12587 0.070928 0.000373006
-	200 3 36 72 71 -0.00437 0.079257 0.024315 0.000373006 0.042243 0.12587
-	200 3 69 71 30 0.042243 0.065569 0.042243 0.12587 0.070928 0.12587
-	200 3 67 70 66 0.061406 0.086643 0.061406 0.130947 0.033425 0.130947
-	200 3 67 69 68 0.061406 0.086643 0.019434 0.09597 0.052079 0.077316
-	200 3 1 6 2 0.086743 0.10051 0.000188 0.10051 0.011008 0.118542
-	200 3 7 3 5 0.02843 0.00591999 0.028737 0.085545 0.047641 0.023898
-	200 3 3 2 4 0.034223 0.10244 0.075749 0.119106 0.047878 0.085426
-	200 3 5 9 8 0.332687 0.206587 0.252513 0.206598 0.252483 0.238887
-	200 3 9 5 4 0.08645 0.023656 0.047641 0.023898 0.047878 0.085426
-	200 3 21 10 12 0.408556 0.728492 0.408556 0.693014 0.420282 0.728492
-	200 3 20 13 15 0.45546 0.693014 0.443734 0.693014 0.45546 0.728492
-	200 3 12 11 17 0.420282 0.728492 0.420282 0.693014 0.443734 0.728492
-	200 3 14 13 19 0.443734 0.728492 0.443734 0.693014 0.420282 0.728492
-	200 3 17 16 15 0.443734 0.728492 0.443734 0.693014 0.45546 0.728492
-	200 3 19 18 21 0.420282 0.728492 0.420282 0.693014 0.408556 0.728492
-	200 3 13 20 10 0.459919 0.750005 0.434044 0.735066 0.434044 0.794822
-	200 3 11 10 20 0.40817 0.779883 0.434044 0.794822 0.434044 0.735066
-	200 3 25 22 24 0.055366 0.268411 0.055366 0.254187 0.048112 0.268411
-	200 3 28 25 26 0.06959 0.268411 0.055366 0.268411 0.06959 0.275665
-	200 3 29 27 26 0.076844 0.254187 0.06959 0.254187 0.076844 0.268411
-	200 3 22 27 23 0.055366 0.254187 0.06959 0.254187 0.055366 0.246933
-	200 3 28 27 25 0.06959 0.268411 0.06959 0.254187 0.055366 0.268411
-	200 3 33 30 32 0.032892 0.002029 0.054197 0.002029 0.011587 0.100594
-	200 3 32 37 34 0.070928 0.000373006 0.024315 0.000373006 0.042243 0.12587
-	200 3 71 34 36 0.042243 0.12587 0.042243 0.12587 -0.00437 0.079257
-	200 3 34 38 33 0.042243 0.12587 0.042243 0.065569 0.070928 0.12587
-	200 3 73 30 39 0.047293 0.05298 0.054067 0.00217199 0.039749 0.05298
-	200 3 65 40 41 0.061406 0.130947 0.061406 0.086643 0.033425 0.130947
-	200 3 42 39 38 0.052079 0.077316 0.019434 0.077316 0.019434 0.09597
-	200 3 50 43 45 0.572296 0.407169 0.572295 0.527942 0.542808 0.429128
-	200 3 45 44 47 0.542808 0.429128 0.542808 0.527942 0.567359 0.429128
-	200 3 48 49 47 0.542585 0.527942 0.542585 0.407169 0.567359 0.429128
-	200 3 47 49 45 0.567359 0.429128 0.573906 0.398551 0.542808 0.429128
-	200 3 48 46 44 0.410521 0.786473 0.446071 0.792398 0.463846 0.756848
-	200 3 52 57 53 0.463846 0.756848 0.446071 0.792398 0.410521 0.786473
-	200 3 58 54 56 0.536241 0.384337 0.573906 0.398551 0.542808 0.429128
-	200 3 55 54 53 0.567359 0.429128 0.542585 0.407169 0.542585 0.527942
-	200 3 57 52 55 0.567359 0.527942 0.542808 0.527942 0.567359 0.429128
-	200 3 52 51 56 0.542808 0.527942 0.572295 0.527942 0.542808 0.429128
-	200 3 64 59 61 0.047878 0.085426 0.028737 0.085545 0.047641 0.023898
-	200 3 62 63 61 0.252483 0.238887 0.252513 0.206598 0.332687 0.206587
-	200 3 9 6 1 0.001564 0.02353 0.001564 0.10051 0.086743 0.10051
-	200 3 9 63 8 0.334006 0.206118 0.251051 0.206118 0.323637 0.245364
-	200 3 1 0 64 0.086541 0.102732 0.075749 0.119106 0.047878 0.085426
-	200 3 64 61 63 0.047878 0.085426 0.047641 0.023898 0.08645 0.023656
-	200 3 70 65 66 0.061406 0.130947 0.061406 0.130947 0.033425 0.130947
-	200 3 40 67 42 0.061406 0.086643 0.061406 0.086643 0.052079 0.077316
-	200 3 38 69 41 0.019434 0.09597 0.019434 0.09597 0.033425 0.130947
-	200 3 65 70 40 0.061406 0.130947 0.061406 0.130947 0.061406 0.086643
-	200 3 73 39 68 0.019434 0.077316 0.019434 0.077316 0.052079 0.077316
-	200 3 71 72 31 0.042243 0.12587 0.024315 0.000373006 0.070928 0.000373006
-	200 3 73 69 30 0.070928 0.065569 0.042243 0.065569 0.070928 0.12587
-	200 3 69 67 66 0.019434 0.09597 0.061406 0.086643 0.033425 0.130947
-	200 3 69 73 68 0.019434 0.09597 0.019434 0.077316 0.052079 0.077316
-	200 3 71 38 34 0.054067 0.00217199 0.039749 0.05298 0.032975 0.00217199
-	200 3 69 38 71 0.047293 0.05298 0.039749 0.05298 0.054067 0.00217199
-	200 3 74 75 76 0.520458 0.766056 0.560067 0.749649 0.54366 0.742853
-	200 3 77 78 75 0.527253 0.782462 0.566862 0.766056 0.560067 0.749649
-	200 3 79 80 78 0.54366 0.789258 0.560067 0.782462 0.566862 0.766056
-	200 3 81 82 83 0.520458 0.766056 0.560067 0.749649 0.54366 0.742853
-	200 3 84 85 82 0.527253 0.782462 0.566862 0.766056 0.560067 0.749649
-	200 3 86 87 85 0.54366 0.789258 0.560067 0.782462 0.566862 0.766056
-	200 3 88 74 76 0.527253 0.749649 0.520458 0.766056 0.54366 0.742853
-	200 3 74 77 75 0.520458 0.766056 0.527253 0.782462 0.560067 0.749649
-	200 3 77 79 78 0.527253 0.782462 0.54366 0.789258 0.566862 0.766056
-	200 3 89 81 83 0.527253 0.749649 0.520458 0.766056 0.54366 0.742853
-	200 3 81 84 82 0.520458 0.766056 0.527253 0.782462 0.560067 0.749649
-	200 3 84 86 85 0.527253 0.782462 0.54366 0.789258 0.566862 0.766056
diff --git a/components/prop/prmhov1.pie b/components/prop/prmhov1.pie
deleted file mode 100644
index e4ce339..0000000
--- a/components/prop/prmhov1.pie
+++ /dev/null
@@ -1,113 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 42 
-	16 25 54 
-	16 25 41 
-	16 14 41 
-	16 14 54 
-	-17 25 54 
-	-17 25 41 
-	-17 14 41 
-	-17 14 54 
-	20 13 -36 
-	28 13 -23 
-	19 20 -23 
-	27 13 31 
-	23 15 28 
-	-21 25 37 
-	-24 14 37 
-	24 14 37 
-	20 25 37 
-	31 3 -17 
-	31 3 25 
-	30 13 25 
-	30 13 -17 
-	-32 3 25 
-	-32 3 -17 
-	-31 13 -17 
-	-31 13 25 
-	18 3 -47 
-	17 13 -43 
-	-19 3 -47 
-	-18 13 -43 
-	18 3 54 
-	-19 3 54 
-	-18 13 51 
-	17 13 51 
-	-20 13 -36 
-	-28 13 -23 
-	-20 20 -23 
-	-28 13 31 
-	-23 15 28 
-	0 13 41 
-	0 13 49 
-	0 24 60 
-	0 24 41
-POLYGONS 64
-	200 3 0 1 1 0 48 0 55 0 55
-	200 3 0 1 0 0 48 0 55 0 48
-	200 3 1 2 2 0 55 7 55 7 55
-	200 3 1 2 1 0 55 7 55 0 55
-	200 3 2 3 3 7 55 7 48 7 48
-	200 3 2 3 2 7 55 7 48 7 55
-	200 3 3 0 0 7 48 0 48 0 48
-	200 3 3 0 3 7 48 0 48 7 48
-	200 3 3 0 1 7 48 0 48 0 55
-	200 3 3 1 2 7 48 0 55 7 55
-	200 3 1 0 3 0 55 0 48 7 48
-	200 3 1 3 2 0 55 7 48 7 55
-	200 3 4 5 5 0 48 0 55 0 55
-	200 3 4 5 4 0 48 0 55 0 48
-	200 3 5 6 6 0 55 7 55 7 55
-	200 3 5 6 5 0 55 7 55 0 55
-	200 3 6 7 7 7 55 7 48 7 48
-	200 3 6 7 6 7 55 7 48 7 55
-	200 3 7 4 4 7 48 0 48 0 48
-	200 3 7 4 7 7 48 0 48 7 48
-	200 3 7 4 5 7 48 0 48 0 55
-	200 3 7 5 6 7 48 0 55 7 55
-	200 3 5 4 7 0 55 0 48 7 48
-	200 3 5 7 6 0 55 7 48 7 55
-	200 3 8 9 10 24 39 19 40 19 36
-	200 3 10 9 8 19 36 19 40 24 39
-	200 3 9 11 12 19 40 0 40 1 37
-	200 3 9 12 10 19 40 1 37 19 36
-	200 3 10 12 11 19 36 1 37 0 40
-	200 3 10 11 9 19 36 0 40 19 40
-	200 3 13 14 15 1 71 0 63 20 63
-	200 3 13 15 16 1 71 20 63 19 71
-	200 3 16 15 14 19 71 20 63 0 63
-	200 3 16 14 13 19 71 0 63 1 71
-	200 3 20 19 18 199 35 199 0 192 0
-	200 3 20 18 17 199 35 192 0 192 35
-	200 3 24 23 22 199 0 199 35 192 35
-	200 3 24 22 21 199 0 192 35 192 0
-	200 3 26 20 17 199 31 199 0 192 0
-	200 3 26 17 25 199 31 192 0 192 35
-	200 3 23 28 27 199 0 199 31 192 35
-	200 3 23 27 22 199 0 192 35 192 0
-	200 3 28 26 25 199 34 199 1 192 0
-	200 3 28 25 27 199 34 192 0 192 35
-	200 3 32 31 30 199 1 199 34 192 35
-	200 3 32 30 29 199 1 192 35 192 0
-	200 3 19 32 29 199 0 199 31 192 35
-	200 3 19 29 18 199 0 192 35 192 0
-	200 3 31 24 21 199 31 199 0 192 0
-	200 3 31 21 30 199 31 192 0 192 35
-	200 3 33 34 35 24 39 19 40 19 36
-	200 3 35 34 33 19 36 19 40 24 39
-	200 3 34 36 37 19 40 0 40 1 37
-	200 3 34 37 35 19 40 1 37 19 36
-	200 3 35 37 36 19 36 1 37 0 40
-	200 3 35 36 34 19 36 0 40 19 40
-	200 3 41 40 39 0 48 8 48 4 40
-	200 3 41 39 38 0 48 4 40 0 40
-	200 3 23 20 26 24 10 0 10 5 2
-	200 3 23 26 28 24 10 5 2 19 2
-	200 3 24 19 20 24 25 0 25 0 10
-	200 3 24 20 23 24 25 0 10 24 10
-	200 3 24 31 32 24 25 19 33 5 33
-	200 3 24 32 19 24 25 5 33 0 25
\ No newline at end of file
diff --git a/components/prop/prmlhtr2.pie b/components/prop/prmlhtr2.pie
deleted file mode 100644
index 4107c8f..0000000
--- a/components/prop/prmlhtr2.pie
+++ /dev/null
@@ -1,46 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 14 
-	39 13 42 
-	39 20 33 
-	39 20 -6 
-	39 0 42 
-	39 0 -6 
-	18 20 33 
-	18 13 42 
-	18 0 42 
-	18 20 -6 
-	18 0 -6 
-	18 0 -42 
-	36 0 -42 
-	18 17 -42 
-	36 17 -42
-POLYGONS 25
-	200 3 3 2 1 11 171 1 149 1 167
-	200 3 3 1 0 11 171 1 167 4 171
-	200 3 2 1 3 1 149 1 167 11 171
-	200 3 2 3 4 1 149 11 171 11 149
-	200 3 8 7 6 1 149 11 171 4 171
-	200 3 8 6 5 1 149 4 171 1 167
-	200 3 8 9 7 1 149 11 149 11 171
-	200 3 7 9 4 88 99 88 135 94 135
-	200 3 7 4 3 88 99 94 135 94 99
-	200 3 2 8 5 1 135 10 135 10 105
-	200 3 2 5 1 1 135 10 105 1 105
-	200 3 6 7 3 1 177 1 186 9 186
-	200 3 6 3 0 1 177 9 186 9 177
-	200 3 11 4 9 9 83 10 73 0 73
-	200 3 11 9 10 9 83 0 73 0 83
-	200 3 6 0 1 1 98 10 98 10 118
-	200 3 6 1 5 1 98 10 118 1 118
-	200 3 10 9 8 96 137 96 174 113 174
-	200 3 10 8 12 96 137 113 174 111 137
-	200 3 2 4 11 113 174 96 174 96 137
-	200 3 2 11 13 113 174 96 137 111 137
-	200 3 2 13 12 1 186 2 225 12 225
-	200 3 2 12 8 1 186 12 225 12 186
-	200 3 13 11 10 17 73 6 73 6 84
-	200 3 13 10 12 17 73 6 84 17 84
\ No newline at end of file
diff --git a/components/prop/prmltrk2.pie b/components/prop/prmltrk2.pie
deleted file mode 100644
index 5639304..0000000
--- a/components/prop/prmltrk2.pie
+++ /dev/null
@@ -1,51 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 16 
-	21 24 30 
-	21 0 28 
-	21 0 1 
-	21 24 1 
-	21 12 40 
-	41 24 30 
-	41 24 1 
-	41 0 1 
-	41 0 28 
-	41 12 40 
-	21 24 -29 
-	41 24 -29 
-	21 0 -30 
-	41 0 -30 
-	21 11 -39 
-	41 11 -39
-POLYGONS 28
-	200 3 3 2 1 1 171 11 171 11 154
-	200 3 3 1 0 1 171 11 154 1 153
-	200 3 1 4 0 11 154 6 148 1 153
-	200 3 8 7 6 11 154 11 171 1 171
-	200 3 8 6 5 11 154 1 171 1 153
-	200 3 9 8 5 6 148 11 154 1 153
-	200 3 5 6 3 10 101 10 133 1 133
-	200 3 5 3 0 10 101 1 133 1 101
-	200 3 6 11 10 10 102 10 132 1 132
-	200 3 6 10 3 10 102 1 132 1 102
-	200 3 13 7 2 93 105 93 129 89 129
-	200 3 13 2 12 93 105 89 129 89 105
-	200 3 8 9 4 9 185 9 180 1 180
-	200 3 8 4 1 9 185 1 180 1 185
-	200 3 9 5 0 9 180 9 174 1 174
-	200 3 9 0 4 9 180 1 174 1 180
-	200 3 7 8 1 93 106 93 128 89 128
-	200 3 7 1 2 93 106 89 128 89 106
-	200 3 15 13 12 9 180 9 185 1 185
-	200 3 15 12 14 9 180 1 185 1 180
-	200 3 11 15 14 9 174 9 180 1 180
-	200 3 11 14 10 9 174 1 180 1 174
-	200 3 3 10 12 1 164 1 143 11 143
-	200 3 3 12 2 1 164 11 143 11 164
-	200 3 10 14 12 1 143 6 137 11 143
-	200 3 13 11 6 11 143 1 143 1 164
-	200 3 13 6 7 11 143 1 164 11 164
-	200 3 15 11 13 6 137 1 143 11 143
\ No newline at end of file
diff --git a/components/prop/prmlvtl1.pie b/components/prop/prmlvtl1.pie
deleted file mode 100644
index e359b95..0000000
--- a/components/prop/prmlvtl1.pie
+++ /dev/null
@@ -1,56 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 23 
-	17 18 -28 
-	17 14 17 
-	39 14 -6 
-	47 14 12 
-	17 28 17 
-	22 9 -3 
-	22 12 9 
-	35 12 9 
-	35 9 -3 
-	22 23 -7 
-	35 23 -7 
-	35 27 5 
-	22 27 5 
-	6 19 43 
-	0 26 43 
-	0 26 33 
-	6 19 36 
-	0 13 43 
-	0 13 39 
-	8 33 9 
-	8 29 29 
-	14 45 33 
-	14 45 24
-POLYGONS 26
-	200 3 2 1 0 8 93 17 84 0 84
-	200 3 3 1 2 15 97 17 84 8 93
-	200 3 4 1 3 17 98 1 98 0 85
-	200 3 4 3 2 0 98 2 85 9 89
-	200 3 4 2 0 0 98 9 89 17 98
-	200 3 8 7 6 104 231 104 217 118 217
-	200 3 8 6 5 104 231 118 217 118 231
-	200 3 12 11 10 104 189 118 189 118 204
-	200 3 12 10 9 104 189 118 204 104 204
-	200 3 9 10 8 104 203 117 203 117 217
-	200 3 9 8 5 104 203 117 217 104 217
-	200 3 10 11 7 104 203 117 203 117 217
-	200 3 10 7 8 104 203 117 217 104 217
-	200 3 11 12 6 104 203 117 203 117 217
-	200 3 11 6 7 104 203 117 217 104 217
-	200 3 12 9 5 104 203 117 203 117 217
-	200 3 12 5 6 104 203 117 217 104 217
-	200 3 16 15 14 8 93 17 93 17 89
-	200 3 16 14 13 8 93 17 89 9 89
-	200 3 18 16 13 0 93 8 93 9 89
-	200 3 18 13 17 0 93 9 89 0 89
-	200 3 17 13 14 88 182 90 180 88 178
-	200 3 19 20 21 8 48 2 48 0 40
-	200 3 19 21 22 8 48 0 40 3 40
-	200 3 22 21 20 3 40 0 40 2 48
-	200 3 22 20 19 3 40 2 48 8 48
\ No newline at end of file
diff --git a/components/prop/prmlwhl1.pie b/components/prop/prmlwhl1.pie
deleted file mode 100644
index 56c7126..0000000
--- a/components/prop/prmlwhl1.pie
+++ /dev/null
@@ -1,237 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 82 
-	20 0 22 
-	20 12 13 
-	20 6 13 
-	20 1 18 
-	20 1 26 
-	20 6 31 
-	20 12 31 
-	20 9 12 
-	20 9 32 
-	20 3 15 
-	20 3 29 
-	33 6 13 
-	33 3 15 
-	33 1 18 
-	33 0 22 
-	33 1 26 
-	33 3 29 
-	33 6 31 
-	33 9 12 
-	33 9 32 
-	33 12 13 
-	33 12 31 
-	20 0 1 
-	20 12 -8 
-	20 6 -8 
-	20 1 -3 
-	20 1 5 
-	20 6 10 
-	20 12 10 
-	20 9 -9 
-	20 9 11 
-	20 3 -6 
-	20 3 8 
-	32 6 -8 
-	32 3 -6 
-	32 1 -3 
-	32 0 1 
-	32 1 5 
-	32 3 8 
-	32 6 10 
-	32 9 -9 
-	32 9 11 
-	32 12 -8 
-	32 12 10 
-	20 0 -20 
-	20 12 -29 
-	20 6 -29 
-	20 1 -24 
-	20 1 -16 
-	20 6 -11 
-	20 12 -11 
-	20 9 -30 
-	20 9 -10 
-	20 3 -27 
-	20 3 -13 
-	31 6 -29 
-	31 3 -27 
-	31 1 -24 
-	31 0 -20 
-	31 1 -16 
-	31 3 -13 
-	31 6 -11 
-	31 9 -30 
-	31 9 -10 
-	31 12 -29 
-	31 12 -11 
-	19 6 -26 
-	19 23 -25 
-	19 8 -33 
-	32 23 -25 
-	32 11 -26 
-	31 8 -33 
-	19 26 22 
-	19 6 28 
-	34 26 22 
-	34 11 28 
-	19 18 -30 
-	31 18 -30 
-	19 7 35 
-	34 7 35 
-	19 18 32 
-	34 18 32
-POLYGONS 148
-	200 3 12 9 2 27 52 27 53 21 53
-	200 3 12 2 11 27 52 21 53 21 52
-	200 3 13 3 9 27 52 27 53 21 53
-	200 3 13 9 12 27 52 21 53 21 52
-	200 3 14 0 3 27 52 27 53 21 53
-	200 3 14 3 13 27 52 21 53 21 52
-	200 3 15 4 0 27 52 27 53 21 53
-	200 3 15 0 14 27 52 21 53 21 52
-	200 3 16 10 4 27 52 27 53 21 53
-	200 3 16 4 15 27 52 21 53 21 52
-	200 3 17 5 10 27 52 27 53 21 53
-	200 3 17 10 16 27 52 21 53 21 52
-	200 3 11 2 7 27 52 27 53 21 53
-	200 3 11 7 18 27 52 21 53 21 52
-	200 3 19 8 5 27 52 27 53 21 53
-	200 3 19 5 17 27 52 21 53 21 52
-	200 3 18 7 1 27 52 27 53 21 53
-	200 3 18 1 20 27 52 21 53 21 52
-	200 3 21 6 8 27 52 27 53 21 53
-	200 3 21 8 19 27 52 21 53 21 52
-	200 3 57 47 53 27 52 27 53 21 53
-	200 3 57 53 56 27 52 21 53 21 52
-	200 3 34 31 24 27 52 27 53 21 53
-	200 3 34 24 33 27 52 21 53 21 52
-	200 3 35 25 31 27 52 27 53 21 53
-	200 3 35 31 34 27 52 21 53 21 52
-	200 3 36 22 25 27 52 27 53 21 53
-	200 3 36 25 35 27 52 21 53 21 52
-	200 3 37 26 22 27 52 27 53 21 53
-	200 3 37 22 36 27 52 21 53 21 52
-	200 3 38 32 26 27 52 27 53 21 53
-	200 3 38 26 37 27 52 21 53 21 52
-	200 3 39 27 32 27 52 27 53 21 53
-	200 3 39 32 38 27 52 21 53 21 52
-	200 3 33 24 29 27 52 27 53 21 53
-	200 3 33 29 40 27 52 21 53 21 52
-	200 3 41 30 27 27 52 27 53 21 53
-	200 3 41 27 39 27 52 21 53 21 52
-	200 3 40 29 23 27 52 27 53 21 53
-	200 3 40 23 42 27 52 21 53 21 52
-	200 3 43 28 30 27 52 27 53 21 53
-	200 3 43 30 41 27 52 21 53 21 52
-	200 3 56 53 46 27 52 27 53 21 53
-	200 3 56 46 55 27 52 21 53 21 52
-	200 3 58 44 47 27 52 27 53 21 53
-	200 3 58 47 57 27 52 21 53 21 52
-	200 3 59 48 44 27 52 27 53 21 53
-	200 3 59 44 58 27 52 21 53 21 52
-	200 3 60 54 48 27 52 27 53 21 53
-	200 3 60 48 59 27 52 21 53 21 52
-	200 3 61 49 54 27 52 27 53 21 53
-	200 3 61 54 60 27 52 21 53 21 52
-	200 3 55 46 51 27 52 27 53 21 53
-	200 3 55 51 62 27 52 21 53 21 52
-	200 3 63 52 49 27 52 27 53 21 53
-	200 3 63 49 61 27 52 21 53 21 52
-	200 3 62 51 45 27 52 27 53 21 53
-	200 3 62 45 64 27 52 21 53 21 52
-	200 3 65 50 52 27 52 27 53 21 53
-	200 3 65 52 63 27 52 21 53 21 52
-	200 3 65 63 62 156 173 154 174 154 159
-	200 3 65 62 64 156 173 154 159 156 160
-	200 3 56 55 62 150 161 152 160 154 159
-	200 3 56 62 63 150 161 154 159 154 174
-	200 3 58 57 56 147 167 148 164 150 161
-	200 3 58 56 63 147 167 150 161 154 174
-	200 3 43 41 40 156 173 154 174 154 159
-	200 3 43 40 42 156 173 154 159 156 160
-	200 3 34 33 40 150 161 152 160 154 159
-	200 3 34 40 41 150 161 154 159 154 174
-	200 3 36 35 34 147 167 148 164 150 161
-	200 3 36 34 41 147 167 150 161 154 174
-	200 3 59 58 63 148 170 147 167 154 174
-	200 3 59 63 61 148 170 154 174 152 173
-	200 3 59 61 60 148 170 152 173 150 172
-	200 3 37 36 41 148 170 147 167 154 174
-	200 3 37 41 39 148 170 154 174 152 173
-	200 3 37 39 38 148 170 152 173 150 172
-	200 3 21 19 18 156 173 154 174 154 159
-	200 3 21 18 20 156 173 154 159 156 160
-	200 3 12 11 18 150 161 152 160 154 159
-	200 3 12 18 19 150 161 154 159 154 174
-	200 3 14 13 12 147 167 148 164 150 161
-	200 3 14 12 19 147 167 150 161 154 174
-	200 3 15 14 19 148 170 147 167 154 174
-	200 3 15 19 17 148 170 154 174 152 173
-	200 3 15 17 16 148 170 152 173 150 172
-	200 3 2 10 5 152 160 150 172 152 173
-	200 3 2 5 8 152 160 152 173 154 174
-	200 3 2 9 3 152 160 150 161 148 164
-	200 3 2 3 10 152 160 148 164 150 172
-	200 3 3 0 4 148 164 147 167 148 170
-	200 3 3 4 10 148 164 148 170 150 172
-	200 3 27 24 31 152 173 152 160 150 161
-	200 3 27 31 32 152 173 150 161 150 172
-	200 3 31 25 22 150 161 148 164 147 167
-	200 3 31 22 26 150 161 147 167 148 170
-	200 3 31 26 32 150 161 148 170 150 172
-	200 3 49 51 46 152 173 154 159 152 160
-	200 3 49 46 54 152 173 152 160 150 172
-	200 3 46 53 47 152 160 150 161 148 164
-	200 3 46 47 54 152 160 148 164 150 172
-	200 3 47 44 48 148 164 147 167 148 170
-	200 3 47 48 54 148 164 148 170 150 172
-	200 3 75 74 69 1 187 12 187 12 224
-	200 3 75 69 70 1 187 12 224 1 224
-	200 3 70 69 74 1 224 12 224 12 187
-	200 3 70 74 75 1 224 12 187 1 187
-	200 3 76 68 71 1 220 1 211 12 211
-	200 3 76 71 77 1 220 12 211 12 220
-	200 3 77 71 68 12 220 12 211 1 211
-	200 3 77 68 76 12 220 1 211 1 220
-	200 3 77 69 67 12 220 12 224 1 224
-	200 3 77 67 76 12 220 1 224 1 220
-	200 3 76 67 69 1 220 1 224 12 224
-	200 3 76 69 77 1 220 12 224 12 220
-	200 3 66 67 72 12 224 1 224 1 187
-	200 3 66 72 73 12 224 1 187 12 187
-	200 3 73 72 67 12 187 1 187 1 224
-	200 3 73 67 66 12 187 1 224 12 224
-	200 3 80 78 73 12 220 12 211 8 210
-	200 3 80 73 72 12 220 8 210 6 223
-	200 3 72 73 78 6 223 8 210 12 211
-	200 3 72 78 80 6 223 12 211 12 220
-	200 3 81 74 75 12 220 6 223 8 210
-	200 3 81 75 79 12 220 8 210 12 211
-	200 3 79 75 74 12 211 8 210 6 223
-	200 3 79 74 81 12 211 6 223 12 220
-	200 3 79 78 80 12 211 1 211 1 220
-	200 3 79 80 81 12 211 1 220 12 220
-	200 3 81 80 78 12 220 1 220 1 211
-	200 3 81 78 79 12 220 1 211 12 211
-	200 3 72 74 81 1 187 12 187 12 195
-	200 3 72 81 80 1 187 12 195 1 195
-	200 3 80 81 74 1 195 12 195 12 187
-	200 3 80 74 72 1 195 12 187 1 187
-	200 3 74 72 67 12 187 1 187 1 224
-	200 3 74 67 69 12 187 1 224 12 224
-	200 3 69 67 72 12 224 1 224 1 187
-	200 3 69 72 74 12 224 1 187 12 187
-	200 3 66 68 76 8 210 12 211 12 220
-	200 3 66 76 67 8 210 12 220 6 223
-	200 3 67 76 68 6 223 12 220 12 211
-	200 3 67 68 66 6 223 12 211 8 210
-	200 3 70 69 77 8 210 6 223 12 220
-	200 3 70 77 71 8 210 12 220 12 211
-	200 3 71 77 69 12 211 12 220 6 223
-	200 3 71 69 70 12 211 6 223 8 210
\ No newline at end of file
diff --git a/components/prop/prmrhtr2.pie b/components/prop/prmrhtr2.pie
deleted file mode 100644
index 02fe29b..0000000
--- a/components/prop/prmrhtr2.pie
+++ /dev/null
@@ -1,46 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 14 
-	-38 20 33 
-	-38 13 42 
-	-38 0 42 
-	-38 20 -6 
-	-38 0 -6 
-	-18 0 42 
-	-18 13 42 
-	-18 20 33 
-	-18 20 -6 
-	-18 0 -6 
-	-17 0 -42 
-	-36 0 -42 
-	-17 17 -42 
-	-36 17 -42
-POLYGONS 25
-	200 3 3 2 1 1 149 11 171 4 171
-	200 3 3 1 0 1 149 4 171 1 167
-	200 3 0 3 4 1 167 1 149 11 149
-	200 3 0 4 2 1 167 11 149 11 171
-	200 3 8 7 6 1 149 1 167 4 171
-	200 3 8 6 5 1 149 4 171 11 171
-	200 3 8 5 9 1 149 11 171 11 149
-	200 3 9 5 2 88 135 88 99 94 99
-	200 3 9 2 4 88 135 94 99 94 135
-	200 3 3 0 7 1 135 1 105 10 105
-	200 3 3 7 8 1 135 10 105 10 135
-	200 3 5 6 1 1 186 1 177 9 177
-	200 3 5 1 2 1 186 9 177 9 186
-	200 3 4 11 10 10 73 9 83 0 83
-	200 3 4 10 9 10 73 0 83 0 73
-	200 3 1 6 7 10 98 1 98 1 118
-	200 3 1 7 0 10 98 1 118 10 118
-	200 3 9 10 12 96 174 96 137 111 137
-	200 3 9 12 8 96 174 111 137 113 174
-	200 3 4 3 13 96 174 113 174 111 137
-	200 3 4 13 11 96 174 111 137 96 137
-	200 3 13 3 8 2 225 1 186 12 186
-	200 3 13 8 12 2 225 12 186 12 225
-	200 3 11 13 12 6 73 17 73 17 84
-	200 3 11 12 10 6 73 17 84 6 84
\ No newline at end of file
diff --git a/components/prop/prmrtrk2.pie b/components/prop/prmrtrk2.pie
deleted file mode 100644
index b82493a..0000000
--- a/components/prop/prmrtrk2.pie
+++ /dev/null
@@ -1,51 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 16 
-	-41 0 1 
-	-41 0 -30 
-	-41 24 -29 
-	-41 24 1 
-	-41 11 -39 
-	-21 0 1 
-	-21 24 1 
-	-21 24 -29 
-	-21 0 -30 
-	-21 11 -39 
-	-41 24 30 
-	-41 0 28 
-	-41 12 40 
-	-21 24 30 
-	-21 0 28 
-	-21 12 40
-POLYGONS 28
-	200 3 3 2 1 0 164 0 143 12 143
-	200 3 3 1 0 0 164 12 143 12 164
-	200 3 2 4 1 0 143 6 137 12 143
-	200 3 8 7 6 12 143 0 143 0 164
-	200 3 8 6 5 12 143 0 164 12 164
-	200 3 9 7 8 6 137 0 143 12 143
-	200 3 3 0 11 0 171 12 171 12 154
-	200 3 3 11 10 0 171 12 154 0 153
-	200 3 11 12 10 12 154 6 148 0 153
-	200 3 14 5 6 12 154 12 171 0 171
-	200 3 14 6 13 12 154 0 171 0 153
-	200 3 15 14 13 6 148 12 154 0 153
-	200 3 13 6 3 11 101 11 133 0 133
-	200 3 13 3 10 11 101 0 133 0 101
-	200 3 6 7 2 11 102 11 132 0 132
-	200 3 6 2 3 11 102 0 132 0 102
-	200 3 9 8 1 9 180 9 186 1 186
-	200 3 9 1 4 9 180 1 186 1 180
-	200 3 7 9 4 9 173 9 180 1 180
-	200 3 7 4 2 9 173 1 180 1 173
-	200 3 14 15 12 9 186 9 180 1 180
-	200 3 14 12 11 9 186 1 180 1 186
-	200 3 15 13 10 9 180 9 173 1 173
-	200 3 15 10 12 9 180 1 173 1 180
-	200 3 8 5 0 93 102 93 128 89 128
-	200 3 8 0 1 93 102 89 128 89 102
-	200 3 5 14 11 93 107 93 127 89 127
-	200 3 5 11 0 93 107 89 127 89 107
\ No newline at end of file
diff --git a/components/prop/prmrvtl1.pie b/components/prop/prmrvtl1.pie
deleted file mode 100644
index 1ac8049..0000000
--- a/components/prop/prmrvtl1.pie
+++ /dev/null
@@ -1,56 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 23 
-	-39 14 -6 
-	-17 18 -28 
-	-17 28 17 
-	-48 14 12 
-	-23 12 9 
-	-23 9 -3 
-	-36 9 -3 
-	-36 12 9 
-	-36 23 -7 
-	-23 23 -7 
-	-23 27 5 
-	-36 27 5 
-	-17 14 17 
-	0 26 43 
-	-6 19 43 
-	-6 19 36 
-	0 26 33 
-	0 13 43 
-	0 13 39 
-	-7 33 9 
-	-7 29 29 
-	-13 45 33 
-	-13 45 24
-POLYGONS 26
-	200 3 3 2 1 2 85 0 98 17 98
-	200 3 3 1 0 2 85 17 98 9 89
-	200 3 7 6 5 104 217 104 231 118 231
-	200 3 7 5 4 104 217 118 231 118 217
-	200 3 11 10 9 118 189 104 189 104 204
-	200 3 11 9 8 118 189 104 204 118 204
-	200 3 8 9 5 117 203 104 203 104 217
-	200 3 8 5 6 117 203 104 217 117 217
-	200 3 11 8 6 117 203 104 203 104 217
-	200 3 11 6 7 117 203 104 217 117 217
-	200 3 10 11 7 117 203 104 203 104 217
-	200 3 10 7 4 117 203 104 217 117 217
-	200 3 9 10 4 117 203 104 203 104 217
-	200 3 9 4 5 117 203 104 217 117 217
-	200 3 0 1 12 8 93 0 84 17 84
-	200 3 3 0 12 15 97 8 93 17 84
-	200 3 2 3 12 17 98 0 85 1 98
-	200 3 16 15 14 17 93 8 93 8 89
-	200 3 16 14 13 17 93 8 89 17 89
-	200 3 15 18 17 8 93 0 93 0 89
-	200 3 15 17 14 8 93 0 89 8 89
-	200 3 14 17 13 86 180 88 182 88 178
-	200 3 19 20 21 8 48 2 48 0 40
-	200 3 19 21 22 8 48 0 40 3 40
-	200 3 22 21 20 3 40 0 40 2 48
-	200 3 22 20 19 3 40 2 48 8 48
\ No newline at end of file
diff --git a/components/prop/prmrwhl1.pie b/components/prop/prmrwhl1.pie
deleted file mode 100644
index e01c722..0000000
--- a/components/prop/prmrwhl1.pie
+++ /dev/null
@@ -1,237 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 82 
-	-20 0 22 
-	-20 12 13 
-	-20 6 13 
-	-20 1 18 
-	-20 1 26 
-	-20 6 31 
-	-20 12 31 
-	-20 9 12 
-	-20 9 32 
-	-20 3 15 
-	-20 3 29 
-	-33 6 13 
-	-33 3 15 
-	-33 1 18 
-	-33 0 22 
-	-33 1 26 
-	-33 3 29 
-	-33 6 31 
-	-33 9 12 
-	-33 9 32 
-	-33 12 13 
-	-33 12 31 
-	-20 0 1 
-	-20 12 -8 
-	-20 6 -8 
-	-20 1 -3 
-	-20 1 5 
-	-20 6 10 
-	-20 12 10 
-	-20 9 -9 
-	-20 9 11 
-	-20 3 -6 
-	-20 3 8 
-	-32 6 -8 
-	-32 3 -6 
-	-32 1 -3 
-	-32 0 1 
-	-32 1 5 
-	-32 3 8 
-	-32 6 10 
-	-32 9 -9 
-	-32 9 11 
-	-32 12 -8 
-	-32 12 10 
-	-20 0 -20 
-	-20 12 -29 
-	-20 6 -29 
-	-20 1 -24 
-	-20 1 -16 
-	-20 6 -11 
-	-20 12 -11 
-	-20 9 -30 
-	-20 9 -10 
-	-20 3 -27 
-	-20 3 -13 
-	-31 6 -29 
-	-31 3 -27 
-	-31 1 -24 
-	-31 0 -20 
-	-31 1 -16 
-	-31 3 -13 
-	-31 6 -11 
-	-31 9 -30 
-	-31 9 -10 
-	-31 12 -29 
-	-31 12 -11 
-	-19 6 -26 
-	-19 23 -25 
-	-19 8 -33 
-	-32 23 -25 
-	-32 11 -26 
-	-31 8 -33 
-	-19 26 22 
-	-19 6 28 
-	-34 26 22 
-	-34 11 28 
-	-19 18 -30 
-	-31 18 -30 
-	-19 7 35 
-	-34 7 35 
-	-19 18 32 
-	-34 18 32
-POLYGONS 148
-	200 3 12 11 2 27 52 21 52 21 53
-	200 3 12 2 9 27 52 21 53 27 53
-	200 3 13 12 9 27 52 21 52 21 53
-	200 3 13 9 3 27 52 21 53 27 53
-	200 3 14 13 3 27 52 21 52 21 53
-	200 3 14 3 0 27 52 21 53 27 53
-	200 3 15 14 0 27 52 21 52 21 53
-	200 3 15 0 4 27 52 21 53 27 53
-	200 3 16 15 4 27 52 21 52 21 53
-	200 3 16 4 10 27 52 21 53 27 53
-	200 3 17 16 10 27 52 21 52 21 53
-	200 3 17 10 5 27 52 21 53 27 53
-	200 3 11 18 7 27 52 21 52 21 53
-	200 3 11 7 2 27 52 21 53 27 53
-	200 3 19 17 5 27 52 21 52 21 53
-	200 3 19 5 8 27 52 21 53 27 53
-	200 3 18 20 1 27 52 21 52 21 53
-	200 3 18 1 7 27 52 21 53 27 53
-	200 3 21 19 8 27 52 21 52 21 53
-	200 3 21 8 6 27 52 21 53 27 53
-	200 3 57 56 53 27 52 21 52 21 53
-	200 3 57 53 47 27 52 21 53 27 53
-	200 3 34 33 24 27 52 21 52 21 53
-	200 3 34 24 31 27 52 21 53 27 53
-	200 3 35 34 31 27 52 21 52 21 53
-	200 3 35 31 25 27 52 21 53 27 53
-	200 3 36 35 25 27 52 21 52 21 53
-	200 3 36 25 22 27 52 21 53 27 53
-	200 3 37 36 22 27 52 21 52 21 53
-	200 3 37 22 26 27 52 21 53 27 53
-	200 3 38 37 26 27 52 21 52 21 53
-	200 3 38 26 32 27 52 21 53 27 53
-	200 3 39 38 32 27 52 21 52 21 53
-	200 3 39 32 27 27 52 21 53 27 53
-	200 3 33 40 29 27 52 21 52 21 53
-	200 3 33 29 24 27 52 21 53 27 53
-	200 3 41 39 27 27 52 21 52 21 53
-	200 3 41 27 30 27 52 21 53 27 53
-	200 3 40 42 23 27 52 21 52 21 53
-	200 3 40 23 29 27 52 21 53 27 53
-	200 3 43 41 30 27 52 21 52 21 53
-	200 3 43 30 28 27 52 21 53 27 53
-	200 3 56 55 46 27 52 21 52 21 53
-	200 3 56 46 53 27 52 21 53 27 53
-	200 3 58 57 47 27 52 21 52 21 53
-	200 3 58 47 44 27 52 21 53 27 53
-	200 3 59 58 44 27 52 21 52 21 53
-	200 3 59 44 48 27 52 21 53 27 53
-	200 3 60 59 48 27 52 21 52 21 53
-	200 3 60 48 54 27 52 21 53 27 53
-	200 3 61 60 54 27 52 21 52 21 53
-	200 3 61 54 49 27 52 21 53 27 53
-	200 3 55 62 51 27 52 21 52 21 53
-	200 3 55 51 46 27 52 21 53 27 53
-	200 3 63 61 49 27 52 21 52 21 53
-	200 3 63 49 52 27 52 21 53 27 53
-	200 3 62 64 45 27 52 21 52 21 53
-	200 3 62 45 51 27 52 21 53 27 53
-	200 3 65 63 52 27 52 21 52 21 53
-	200 3 65 52 50 27 52 21 53 27 53
-	200 3 65 64 62 156 173 156 160 154 159
-	200 3 65 62 63 156 173 154 159 154 174
-	200 3 56 63 62 150 161 154 174 154 159
-	200 3 56 62 55 150 161 154 159 152 160
-	200 3 58 63 56 147 167 154 174 150 161
-	200 3 58 56 57 147 167 150 161 148 164
-	200 3 43 42 40 156 173 156 160 154 159
-	200 3 43 40 41 156 173 154 159 154 174
-	200 3 34 41 40 150 161 154 174 154 159
-	200 3 34 40 33 150 161 154 159 152 160
-	200 3 36 41 34 147 167 154 174 150 161
-	200 3 36 34 35 147 167 150 161 148 164
-	200 3 59 60 61 148 170 150 172 152 173
-	200 3 59 61 63 148 170 152 173 154 174
-	200 3 59 63 58 148 170 154 174 147 167
-	200 3 37 38 39 148 170 150 172 152 173
-	200 3 37 39 41 148 170 152 173 154 174
-	200 3 37 41 36 148 170 154 174 147 167
-	200 3 21 20 18 156 173 156 160 154 159
-	200 3 21 18 19 156 173 154 159 154 174
-	200 3 12 19 18 150 161 154 174 154 159
-	200 3 12 18 11 150 161 154 159 152 160
-	200 3 14 19 12 147 167 154 174 150 161
-	200 3 14 12 13 147 167 150 161 148 164
-	200 3 15 16 17 148 170 150 172 152 173
-	200 3 15 17 19 148 170 152 173 154 174
-	200 3 15 19 14 148 170 154 174 147 167
-	200 3 2 8 5 152 160 154 174 152 173
-	200 3 2 5 10 152 160 152 173 150 172
-	200 3 2 10 3 152 160 150 172 148 164
-	200 3 2 3 9 152 160 148 164 150 161
-	200 3 3 10 4 148 164 150 172 148 170
-	200 3 3 4 0 148 164 148 170 147 167
-	200 3 27 32 31 152 173 150 172 150 161
-	200 3 27 31 24 152 173 150 161 152 160
-	200 3 31 32 26 150 161 150 172 148 170
-	200 3 31 26 22 150 161 148 170 147 167
-	200 3 31 22 25 150 161 147 167 148 164
-	200 3 49 54 46 152 173 150 172 152 160
-	200 3 49 46 51 152 173 152 160 154 159
-	200 3 46 54 47 152 160 150 172 148 164
-	200 3 46 47 53 152 160 148 164 150 161
-	200 3 47 54 48 148 164 150 172 148 170
-	200 3 47 48 44 148 164 148 170 147 167
-	200 3 69 74 75 12 224 12 187 1 187
-	200 3 69 75 70 12 224 1 187 1 224
-	200 3 70 75 74 1 224 1 187 12 187
-	200 3 70 74 69 1 224 12 187 12 224
-	200 3 71 68 76 12 211 1 211 1 220
-	200 3 71 76 77 12 211 1 220 12 220
-	200 3 77 76 68 12 220 1 220 1 211
-	200 3 77 68 71 12 220 1 211 12 211
-	200 3 67 69 77 1 224 12 224 12 220
-	200 3 67 77 76 1 224 12 220 1 220
-	200 3 76 77 69 1 220 12 220 12 224
-	200 3 76 69 67 1 220 12 224 1 224
-	200 3 72 67 66 1 187 1 224 12 224
-	200 3 72 66 73 1 187 12 224 12 187
-	200 3 73 66 67 12 187 12 224 1 224
-	200 3 73 67 72 12 187 1 224 1 187
-	200 3 73 78 80 8 210 12 211 12 220
-	200 3 73 80 72 8 210 12 220 6 223
-	200 3 72 80 78 6 223 12 220 12 211
-	200 3 72 78 73 6 223 12 211 8 210
-	200 3 75 74 81 8 210 6 223 12 220
-	200 3 75 81 79 8 210 12 220 12 211
-	200 3 79 81 74 12 211 12 220 6 223
-	200 3 79 74 75 12 211 6 223 8 210
-	200 3 80 78 79 1 220 1 211 12 211
-	200 3 80 79 81 1 220 12 211 12 220
-	200 3 81 79 78 12 220 12 211 1 211
-	200 3 81 78 80 12 220 1 211 1 220
-	200 3 81 74 72 12 195 12 187 1 187
-	200 3 81 72 80 12 195 1 187 1 195
-	200 3 80 72 74 1 195 1 187 12 187
-	200 3 80 74 81 1 195 12 187 12 195
-	200 3 67 72 74 1 224 1 187 12 187
-	200 3 67 74 69 1 224 12 187 12 224
-	200 3 69 74 72 12 224 12 187 1 187
-	200 3 69 72 67 12 224 1 187 1 224
-	200 3 76 68 66 12 220 12 211 8 210
-	200 3 76 66 67 12 220 8 210 6 223
-	200 3 67 66 68 6 223 8 210 12 211
-	200 3 67 68 76 6 223 12 211 12 220
-	200 3 77 69 70 12 220 6 223 8 210
-	200 3 77 70 71 12 220 8 210 12 211
-	200 3 71 70 69 12 211 8 210 6 223
-	200 3 71 69 77 12 211 6 223 12 220
\ No newline at end of file
diff --git a/components/prop/prsheli1.pie b/components/prop/prsheli1.pie
deleted file mode 100644
index 0370b69..0000000
--- a/components/prop/prsheli1.pie
+++ /dev/null
@@ -1,455 +0,0 @@
-PIE 3
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 0 0
-LEVELS 1
-LEVEL 1
-POINTS 184
-	-64 56 -26
-	-57 56 -21
-	-57 56 -43
-	-50 56 -26
-	-50 50 -27
-	-19 45 -2.00001
-	-19 45 -37
-	-50 50 -37
-	-50 40 -37
-	-41 29 -17
-	-50 40 -27
-	-41 29 -37
-	-57 59 -27
-	-61.3301 59 -29.5
-	-61.3301 56 -29.5
-	-52.6699 59 -34.5
-	-52.6699 56 -34.5
-	-57 56 -37
-	-61.3301 59 -34.5
-	-61.3301 56 -34.5
-	-52.6699 59 -29.5
-	-52.6699 56 -29.5
-	-57 59 -37
-	-57 56 -27
-	-60 63 -32
-	-60 59 -32
-	-57 59 -29
-	-57 63 -29
-	-54 59 -32
-	-57 63 -35
-	-54 63 -32
-	-57 59 -35
-	-50 38 -26
-	-50 38 -38
-	-50 56 -38
-	-57 38 -43
-	-57 38 -21
-	-57 30 -38.6
-	-64 38 -26
-	-64 56 -38
-	-64 38 -38
-	-52.8 30 -28.4
-	-52.8 30 -35.6
-	-57 30 -25.4
-	-61.2 30 -28.4
-	-61.2 30 -35.6
-	73 68 54
-	73 68 42
-	66 68 37
-	66 68 59
-	59 68 42
-	50 41 36
-	59 62 43
-	59 52 43
-	59 52 53
-	59 62 53
-	28 57 58
-	50 41 51
-	28 57 21
-	57 59 -27
-	61.3301 56 -29.5
-	61.3301 59 -29.5
-	52.6699 59 -34.5
-	57 56 -37
-	52.6699 56 -34.5
-	61.3301 56 -34.5
-	61.3301 59 -34.5
-	52.6699 56 -29.5
-	52.6699 59 -29.5
-	57 59 -37
-	57 56 -27
-	60 63 -32
-	57 59 -29
-	60 59 -32
-	57 63 -29
-	54 59 -32
-	57 63 -35
-	54 63 -32
-	57 59 -35
-	59 50 54
-	59 68 54
-	59 50 42
-	66 50 37
-	66 50 59
-	66 42 41.4
-	61.8 42 44.4
-	73 50 54
-	73 50 42
-	61.8 42 51.6
-	66 42 54.6
-	70.2 42 44.4
-	70.2 42 51.6
-	-59 62 53
-	-28 57 58
-	-59 62 43
-	-28 57 21
-	-50 41 36
-	-50 41 51
-	-59 52 53
-	-59 52 43
-	52.8 30 -28.4
-	57 30 -25.4
-	50 38 -26
-	61.2 30 -35.6
-	57 30 -38.6
-	64 38 -38
-	-66 71 53
-	-70.3301 71 50.5
-	-70.3301 68 50.5
-	-61.6699 71 45.5
-	-61.6699 68 45.5
-	-66 68 43
-	-70.3301 71 45.5
-	-70.3301 68 45.5
-	-61.6699 71 50.5
-	-61.6699 68 50.5
-	-66 71 43
-	-66 68 53
-	-69 75 48
-	-69 71 48
-	-66 71 51
-	-66 75 51
-	-63 71 48
-	-66 75 45
-	-63 75 48
-	-66 71 45
-	61.2 30 -28.4
-	64 38 -26
-	52.8 30 -35.6
-	50 38 -38
-	57 56 -21
-	57 38 -21
-	57 38 -43
-	57 56 -43
-	64 56 -38
-	50 56 -26
-	50 56 -38
-	64 56 -26
-	50 40 -27
-	50 50 -27
-	19 45 -2.00001
-	50 40 -37
-	41 29 -37
-	19 45 -37
-	41 29 -17
-	50 50 -37
-	-61.8 42 51.6
-	-59 50 54
-	-66 42 54.6
-	-70.2 42 44.4
-	-73 50 42
-	-66 42 41.4
-	66 71 53
-	70.3301 68 50.5
-	70.3301 71 50.5
-	61.6699 71 45.5
-	66 68 43
-	61.6699 68 45.5
-	70.3301 68 45.5
-	70.3301 71 45.5
-	61.6699 68 50.5
-	61.6699 71 50.5
-	66 71 43
-	66 68 53
-	69 75 48
-	66 71 51
-	69 71 48
-	66 75 51
-	63 71 48
-	66 75 45
-	63 75 48
-	66 71 45
-	-70.2 42 51.6
-	-73 50 54
-	-66 50 59
-	-61.8 42 44.4
-	-66 68 59
-	-73 68 54
-	-66 50 37
-	-66 68 37
-	-73 68 42
-	-59 50 42
-	-59 68 54
-	-59 68 42
-POLYGONS 264
-	200 3 0 1 2 0.43943 0.74078 0.418785 0.750023 0.448834 0.780072
-	200 3 1 3 2 0.418785 0.750023 0.409542 0.770668 0.448834 0.780072
-	200 3 4 5 6 0.070749 0.061499 0.011546 0.01438 0.011557 0.080361
-	200 3 7 6 8 0.070753 0.080351 0.011557 0.080361 0.070365 0.098963
-	200 3 9 5 10 0.070108 0.014353 0.011546 0.01438 0.070682 0.035308
-	200 3 9 10 11 0.075772 0.080367 0.051904 0.046445 0.028037 0.080367
-	200 3 8 6 11 0.070365 0.098963 0.011557 0.080361 0.053065 0.1097
-	200 3 10 5 4 0.070682 0.035308 0.011546 0.01438 0.070749 0.061499
-	200 3 12 13 14 0.408556 0.693014 0.420282 0.693014 0.420282 0.728492
-	200 3 15 16 17 0.443734 0.693014 0.443734 0.728492 0.45546 0.728492
-	200 3 13 18 19 0.420282 0.693014 0.443734 0.693014 0.443734 0.728492
-	200 3 15 20 21 0.443734 0.693014 0.420282 0.693014 0.420282 0.728492
-	200 3 18 22 17 0.443734 0.693014 0.45546 0.693014 0.45546 0.728492
-	200 3 20 12 23 0.420282 0.693014 0.408556 0.693014 0.408556 0.728492
-	200 3 20 15 12 0.459919 0.779883 0.459919 0.750005 0.434044 0.794822
-	200 3 18 13 22 0.40817 0.750005 0.40817 0.779883 0.434044 0.735066
-	200 3 24 25 26 0.055366 0.254187 0.048112 0.254187 0.048112 0.268411
-	200 3 27 26 28 0.055366 0.268411 0.055366 0.275665 0.06959 0.275665
-	200 3 29 30 28 0.06959 0.254187 0.06959 0.268411 0.076844 0.268411
-	200 3 29 31 25 0.06959 0.254187 0.06959 0.246933 0.055366 0.246933
-	200 3 29 24 27 0.06959 0.254187 0.055366 0.254187 0.055366 0.268411
-	200 3 23 12 14 0.408556 0.728492 0.408556 0.693014 0.420282 0.728492
-	200 3 22 15 17 0.45546 0.693014 0.443734 0.693014 0.45546 0.728492
-	200 3 14 13 19 0.420282 0.728492 0.420282 0.693014 0.443734 0.728492
-	200 3 16 15 21 0.443734 0.728492 0.443734 0.693014 0.420282 0.728492
-	200 3 19 18 17 0.443734 0.728492 0.443734 0.693014 0.45546 0.728492
-	200 3 21 20 23 0.420282 0.728492 0.420282 0.693014 0.408556 0.728492
-	200 3 15 22 12 0.459919 0.750005 0.434044 0.735066 0.434044 0.794822
-	200 3 13 12 22 0.40817 0.779883 0.434044 0.794822 0.434044 0.735066
-	200 3 27 24 26 0.055366 0.268411 0.055366 0.254187 0.048112 0.268411
-	200 3 30 27 28 0.06959 0.268411 0.055366 0.268411 0.06959 0.275665
-	200 3 31 29 28 0.076844 0.254187 0.06959 0.254187 0.076844 0.268411
-	200 3 24 29 25 0.055366 0.254187 0.06959 0.254187 0.055366 0.246933
-	200 3 30 29 27 0.06959 0.268411 0.06959 0.254187 0.055366 0.268411
-	200 3 32 33 34 0.036946 0.099355 0.061514 0.099355 0.061514 0.039177
-	200 3 33 35 34 0.061514 0.099355 0.069861 0.099355 0.061514 0.039177
-	200 3 3 1 36 0.036946 0.039177 0.02963 0.039177 0.02963 0.099355
-	200 3 37 35 33 0.062742 0.078685 0.069861 0.099355 0.061514 0.099355
-	200 3 38 0 39 0.036946 0.099355 0.036946 0.039177 0.061514 0.039177
-	200 3 35 40 2 0.069861 0.099355 0.061514 0.099355 0.069861 0.039177
-	200 3 1 0 38 0.02963 0.039177 0.036946 0.039177 0.036946 0.099355
-	200 3 32 41 42 0.036946 0.099355 0.04186 0.078685 0.0566 0.078685
-	200 3 41 43 37 0.554466 0.894495 0.564285 0.875856 0.521084 0.875856
-	200 3 43 44 45 0.564285 0.875856 0.554466 0.857217 0.530902 0.857217
-	200 3 43 36 38 0.035718 0.078685 0.02963 0.099355 0.036946 0.099355
-	200 3 44 38 40 0.04186 0.078685 0.036946 0.099355 0.061514 0.099355
-	200 3 45 40 37 0.0566 0.078685 0.061514 0.099355 0.062742 0.078685
-	200 3 41 32 43 0.04186 0.078685 0.036946 0.099355 0.035718 0.078685
-	200 3 46 47 48 0.43943 0.74078 0.458077 0.759428 0.448834 0.780072
-	200 3 49 48 50 0.418785 0.750023 0.448834 0.780072 0.428189 0.789315
-	200 3 51 52 53 0.054292 0.120443 0.069706 0.072882 0.070604 0.097542
-	200 3 54 55 56 0.069676 0.031326 0.069691 0.052104 0.015862 0.041772
-	200 3 57 51 53 0.029029 0.086569 0.074518 0.086569 0.060672 0.039514
-	200 3 57 54 56 0.054849 0.00752801 0.069676 0.031326 0.015862 0.041772
-	200 3 58 52 51 0.015918 0.11865 0.069706 0.072882 0.054292 0.120443
-	200 3 55 52 56 0.069691 0.052104 0.069706 0.072882 0.015862 0.041772
-	200 3 59 60 61 0.408556 0.693014 0.420282 0.728492 0.420282 0.693014
-	200 3 62 63 64 0.443734 0.693014 0.45546 0.728492 0.443734 0.728492
-	200 3 61 65 66 0.420282 0.693014 0.443734 0.728492 0.443734 0.693014
-	200 3 62 67 68 0.443734 0.693014 0.420282 0.728492 0.420282 0.693014
-	200 3 66 63 69 0.443734 0.693014 0.45546 0.728492 0.45546 0.693014
-	200 3 68 70 59 0.420282 0.693014 0.408556 0.728492 0.408556 0.693014
-	200 3 68 59 62 0.459919 0.779883 0.434044 0.794822 0.459919 0.750005
-	200 3 66 69 61 0.40817 0.750005 0.434044 0.735066 0.40817 0.779883
-	200 3 71 72 73 0.055366 0.254187 0.048112 0.268411 0.048112 0.254187
-	200 3 74 75 72 0.055366 0.268411 0.06959 0.275665 0.055366 0.275665
-	200 3 76 75 77 0.06959 0.254187 0.076844 0.268411 0.06959 0.268411
-	200 3 76 73 78 0.06959 0.254187 0.055366 0.246933 0.06959 0.246933
-	200 3 76 74 71 0.06959 0.254187 0.055366 0.268411 0.055366 0.254187
-	200 3 70 60 59 0.408556 0.728492 0.420282 0.728492 0.408556 0.693014
-	200 3 69 63 62 0.45546 0.693014 0.45546 0.728492 0.443734 0.693014
-	200 3 60 65 61 0.420282 0.728492 0.443734 0.728492 0.420282 0.693014
-	200 3 64 67 62 0.443734 0.728492 0.420282 0.728492 0.443734 0.693014
-	200 3 65 63 66 0.443734 0.728492 0.45546 0.728492 0.443734 0.693014
-	200 3 67 70 68 0.420282 0.728492 0.408556 0.728492 0.420282 0.693014
-	200 3 62 59 69 0.459919 0.750005 0.434044 0.794822 0.434044 0.735066
-	200 3 61 69 59 0.40817 0.779883 0.434044 0.735066 0.434044 0.794822
-	200 3 74 72 71 0.055366 0.268411 0.048112 0.268411 0.055366 0.254187
-	200 3 77 75 74 0.06959 0.268411 0.06959 0.275665 0.055366 0.268411
-	200 3 78 75 76 0.076844 0.254187 0.076844 0.268411 0.06959 0.254187
-	200 3 71 73 76 0.055366 0.254187 0.055366 0.246933 0.06959 0.254187
-	200 3 77 74 76 0.06959 0.268411 0.055366 0.268411 0.06959 0.254187
-	200 3 79 80 50 0.036946 0.099355 0.036946 0.039177 0.061514 0.039177
-	200 3 81 50 82 0.061514 0.099355 0.061514 0.039177 0.069861 0.099355
-	200 3 80 79 83 0.036946 0.039177 0.036946 0.099355 0.02963 0.099355
-	200 3 84 85 81 0.062742 0.078685 0.0566 0.078685 0.061514 0.099355
-	200 3 86 87 47 0.036946 0.099355 0.061514 0.099355 0.061514 0.039177
-	200 3 82 48 87 0.069861 0.099355 0.069861 0.039177 0.061514 0.099355
-	200 3 49 83 86 0.02963 0.039177 0.02963 0.099355 0.036946 0.099355
-	200 3 79 81 85 0.036946 0.099355 0.061514 0.099355 0.0566 0.078685
-	200 3 88 85 89 0.554466 0.894495 0.530902 0.894495 0.564285 0.875856
-	200 3 89 84 90 0.564285 0.875856 0.521084 0.875856 0.530902 0.857217
-	200 3 89 91 86 0.035718 0.078685 0.04186 0.078685 0.036946 0.099355
-	200 3 91 90 87 0.04186 0.078685 0.0566 0.078685 0.061514 0.099355
-	200 3 90 84 87 0.0566 0.078685 0.062742 0.078685 0.061514 0.099355
-	200 3 88 89 79 0.04186 0.078685 0.035718 0.078685 0.036946 0.099355
-	200 3 92 93 94 0.069691 0.052104 0.015862 0.041772 0.069706 0.072882
-	200 3 95 96 94 0.015918 0.11865 0.054292 0.120443 0.069706 0.072882
-	200 3 97 93 98 0.054849 0.00752801 0.015862 0.041772 0.069676 0.031326
-	200 3 97 98 99 0.029029 0.086569 0.028857 0.039514 0.060672 0.039514
-	200 3 98 93 92 0.069676 0.031326 0.015862 0.041772 0.069691 0.052104
-	200 3 96 99 94 0.054292 0.120443 0.070604 0.097542 0.069706 0.072882
-	200 3 100 101 102 0.04186 0.078685 0.035718 0.078685 0.036946 0.099355
-	200 3 103 104 105 0.0566 0.078685 0.062742 0.078685 0.061514 0.099355
-	200 3 106 107 108 0.408556 0.693014 0.420282 0.693014 0.420282 0.728492
-	200 3 109 110 111 0.443734 0.693014 0.443734 0.728492 0.45546 0.728492
-	200 3 107 112 113 0.420282 0.693014 0.443734 0.693014 0.443734 0.728492
-	200 3 109 114 115 0.443734 0.693014 0.420282 0.693014 0.420282 0.728492
-	200 3 112 116 111 0.443734 0.693014 0.45546 0.693014 0.45546 0.728492
-	200 3 114 106 117 0.420282 0.693014 0.408556 0.693014 0.408556 0.728492
-	200 3 114 109 106 0.459919 0.779883 0.459919 0.750005 0.434044 0.794822
-	200 3 112 107 116 0.40817 0.750005 0.40817 0.779883 0.434044 0.735066
-	200 3 118 119 120 0.055366 0.254187 0.048112 0.254187 0.048112 0.268411
-	200 3 121 120 122 0.055366 0.268411 0.055366 0.275665 0.06959 0.275665
-	200 3 123 124 122 0.06959 0.254187 0.06959 0.268411 0.076844 0.268411
-	200 3 123 125 119 0.06959 0.254187 0.06959 0.246933 0.055366 0.246933
-	200 3 123 118 121 0.06959 0.254187 0.055366 0.254187 0.055366 0.268411
-	200 3 117 106 108 0.408556 0.728492 0.408556 0.693014 0.420282 0.728492
-	200 3 116 109 111 0.45546 0.693014 0.443734 0.693014 0.45546 0.728492
-	200 3 108 107 113 0.420282 0.728492 0.420282 0.693014 0.443734 0.728492
-	200 3 110 109 115 0.443734 0.728492 0.443734 0.693014 0.420282 0.728492
-	200 3 113 112 111 0.443734 0.728492 0.443734 0.693014 0.45546 0.728492
-	200 3 115 114 117 0.420282 0.728492 0.420282 0.693014 0.408556 0.728492
-	200 3 109 116 106 0.459919 0.750005 0.434044 0.735066 0.434044 0.794822
-	200 3 107 106 116 0.40817 0.779883 0.434044 0.794822 0.434044 0.735066
-	200 3 121 118 120 0.055366 0.268411 0.055366 0.254187 0.048112 0.268411
-	200 3 124 121 122 0.06959 0.268411 0.055366 0.268411 0.06959 0.275665
-	200 3 125 123 122 0.076844 0.254187 0.06959 0.254187 0.076844 0.268411
-	200 3 118 123 119 0.055366 0.254187 0.06959 0.254187 0.055366 0.246933
-	200 3 124 123 121 0.06959 0.268411 0.06959 0.254187 0.055366 0.268411
-	200 3 126 103 105 0.04186 0.078685 0.0566 0.078685 0.061514 0.099355
-	200 3 101 126 127 0.035718 0.078685 0.04186 0.078685 0.036946 0.099355
-	200 3 101 104 103 0.564285 0.875856 0.521084 0.875856 0.530902 0.857217
-	200 3 100 128 104 0.554466 0.894495 0.530902 0.894495 0.521084 0.875856
-	200 3 102 129 128 0.036946 0.099355 0.061514 0.099355 0.0566 0.078685
-	200 3 130 131 127 0.02963 0.039177 0.02963 0.099355 0.036946 0.099355
-	200 3 132 133 105 0.069861 0.099355 0.069861 0.039177 0.061514 0.099355
-	200 3 127 105 134 0.036946 0.099355 0.061514 0.099355 0.061514 0.039177
-	200 3 104 128 129 0.062742 0.078685 0.0566 0.078685 0.061514 0.099355
-	200 3 135 102 131 0.036946 0.039177 0.036946 0.099355 0.02963 0.099355
-	200 3 129 136 132 0.061514 0.099355 0.061514 0.039177 0.069861 0.099355
-	200 3 102 135 136 0.036946 0.099355 0.036946 0.039177 0.061514 0.039177
-	200 3 130 133 135 0.418785 0.750023 0.448834 0.780072 0.409542 0.770668
-	200 3 137 134 133 0.43943 0.74078 0.458077 0.759428 0.448834 0.780072
-	200 3 138 139 140 0.070682 0.035308 0.070749 0.061499 0.011546 0.01438
-	200 3 141 142 143 0.070365 0.098963 0.053065 0.1097 0.011557 0.080361
-	200 3 144 142 138 0.075772 0.080367 0.028037 0.080367 0.051904 0.046445
-	200 3 144 138 140 0.070108 0.014353 0.070682 0.035308 0.011546 0.01438
-	200 3 145 141 143 0.070753 0.080351 0.070365 0.098963 0.011557 0.080361
-	200 3 139 145 143 0.070749 0.061499 0.070753 0.080351 0.011557 0.080361
-	200 3 146 147 148 0.04186 0.078685 0.036946 0.099355 0.035718 0.078685
-	200 3 149 150 151 0.0566 0.078685 0.061514 0.099355 0.062742 0.078685
-	200 3 152 153 154 0.408556 0.693014 0.420282 0.728492 0.420282 0.693014
-	200 3 155 156 157 0.443734 0.693014 0.45546 0.728492 0.443734 0.728492
-	200 3 154 158 159 0.420282 0.693014 0.443734 0.728492 0.443734 0.693014
-	200 3 155 160 161 0.443734 0.693014 0.420282 0.728492 0.420282 0.693014
-	200 3 159 156 162 0.443734 0.693014 0.45546 0.728492 0.45546 0.693014
-	200 3 161 163 152 0.420282 0.693014 0.408556 0.728492 0.408556 0.693014
-	200 3 161 152 155 0.459919 0.779883 0.434044 0.794822 0.459919 0.750005
-	200 3 159 162 154 0.40817 0.750005 0.434044 0.735066 0.40817 0.779883
-	200 3 164 165 166 0.055366 0.254187 0.048112 0.268411 0.048112 0.254187
-	200 3 167 168 165 0.055366 0.268411 0.06959 0.275665 0.055366 0.275665
-	200 3 169 168 170 0.06959 0.254187 0.076844 0.268411 0.06959 0.268411
-	200 3 169 166 171 0.06959 0.254187 0.055366 0.246933 0.06959 0.246933
-	200 3 169 167 164 0.06959 0.254187 0.055366 0.268411 0.055366 0.254187
-	200 3 163 153 152 0.408556 0.728492 0.420282 0.728492 0.408556 0.693014
-	200 3 162 156 155 0.45546 0.693014 0.45546 0.728492 0.443734 0.693014
-	200 3 153 158 154 0.420282 0.728492 0.443734 0.728492 0.420282 0.693014
-	200 3 157 160 155 0.443734 0.728492 0.420282 0.728492 0.443734 0.693014
-	200 3 158 156 159 0.443734 0.728492 0.45546 0.728492 0.443734 0.693014
-	200 3 160 163 161 0.420282 0.728492 0.408556 0.728492 0.420282 0.693014
-	200 3 155 152 162 0.459919 0.750005 0.434044 0.794822 0.434044 0.735066
-	200 3 154 162 152 0.40817 0.779883 0.434044 0.735066 0.434044 0.794822
-	200 3 167 165 164 0.055366 0.268411 0.048112 0.268411 0.055366 0.254187
-	200 3 170 168 167 0.06959 0.268411 0.06959 0.275665 0.055366 0.268411
-	200 3 171 168 169 0.076844 0.254187 0.076844 0.268411 0.06959 0.254187
-	200 3 164 166 169 0.055366 0.254187 0.055366 0.246933 0.06959 0.254187
-	200 3 170 167 169 0.06959 0.268411 0.055366 0.268411 0.06959 0.254187
-	200 3 172 173 150 0.04186 0.078685 0.036946 0.099355 0.061514 0.099355
-	200 3 148 174 173 0.035718 0.078685 0.02963 0.099355 0.036946 0.099355
-	200 3 148 172 149 0.564285 0.875856 0.554466 0.857217 0.530902 0.857217
-	200 3 146 148 175 0.554466 0.894495 0.564285 0.875856 0.530902 0.894495
-	200 3 147 146 175 0.036946 0.099355 0.04186 0.078685 0.0566 0.078685
-	200 3 176 177 173 0.02963 0.039177 0.036946 0.039177 0.036946 0.099355
-	200 3 178 150 179 0.069861 0.099355 0.061514 0.099355 0.069861 0.039177
-	200 3 173 177 180 0.036946 0.099355 0.036946 0.039177 0.061514 0.039177
-	200 3 151 178 181 0.062742 0.078685 0.069861 0.099355 0.061514 0.099355
-	200 3 182 176 174 0.036946 0.039177 0.02963 0.039177 0.02963 0.099355
-	200 3 181 178 183 0.061514 0.099355 0.069861 0.099355 0.061514 0.039177
-	200 3 147 181 183 0.036946 0.099355 0.061514 0.099355 0.061514 0.039177
-	200 3 176 182 183 0.418785 0.750023 0.409542 0.770668 0.428189 0.789315
-	200 3 177 176 179 0.43943 0.74078 0.418785 0.750023 0.448834 0.780072
-	200 3 39 0 2 0.458077 0.759428 0.43943 0.74078 0.448834 0.780072
-	200 3 3 34 2 0.409542 0.770668 0.428189 0.789315 0.448834 0.780072
-	200 3 7 4 6 0.070753 0.080351 0.070749 0.061499 0.011557 0.080361
-	200 3 10 8 11 0.051904 0.046445 0.028037 0.046445 0.028037 0.080367
-	200 3 3 32 34 0.036946 0.039177 0.036946 0.099355 0.061514 0.039177
-	200 3 35 2 34 0.069861 0.099355 0.069861 0.039177 0.061514 0.039177
-	200 3 32 3 36 0.036946 0.099355 0.036946 0.039177 0.02963 0.099355
-	200 3 42 37 33 0.0566 0.078685 0.062742 0.078685 0.061514 0.099355
-	200 3 40 38 39 0.061514 0.099355 0.036946 0.099355 0.061514 0.039177
-	200 3 40 39 2 0.061514 0.099355 0.061514 0.039177 0.069861 0.039177
-	200 3 36 1 38 0.02963 0.099355 0.02963 0.039177 0.036946 0.099355
-	200 3 33 32 42 0.061514 0.099355 0.036946 0.099355 0.0566 0.078685
-	200 3 42 41 37 0.530902 0.894495 0.554466 0.894495 0.521084 0.875856
-	200 3 37 43 45 0.521084 0.875856 0.564285 0.875856 0.530902 0.857217
-	200 3 44 43 38 0.04186 0.078685 0.035718 0.078685 0.036946 0.099355
-	200 3 45 44 40 0.0566 0.078685 0.04186 0.078685 0.061514 0.099355
-	200 3 40 35 37 0.061514 0.099355 0.069861 0.099355 0.062742 0.078685
-	200 3 32 36 43 0.036946 0.099355 0.02963 0.099355 0.035718 0.078685
-	200 3 49 46 48 0.418785 0.750023 0.43943 0.74078 0.448834 0.780072
-	200 3 80 49 50 0.409542 0.770668 0.418785 0.750023 0.428189 0.789315
-	200 3 54 57 53 0.028857 0.039514 0.029029 0.086569 0.060672 0.039514
-	200 3 52 58 56 0.069706 0.072882 0.015918 0.11865 0.015862 0.041772
-	200 3 81 79 50 0.061514 0.099355 0.036946 0.099355 0.061514 0.039177
-	200 3 50 48 82 0.061514 0.039177 0.069861 0.039177 0.069861 0.099355
-	200 3 49 80 83 0.02963 0.039177 0.036946 0.039177 0.02963 0.099355
-	200 3 82 84 81 0.069861 0.099355 0.062742 0.078685 0.061514 0.099355
-	200 3 46 86 47 0.036946 0.039177 0.036946 0.099355 0.061514 0.039177
-	200 3 48 47 87 0.069861 0.039177 0.061514 0.039177 0.061514 0.099355
-	200 3 46 49 86 0.036946 0.039177 0.02963 0.039177 0.036946 0.099355
-	200 3 88 79 85 0.04186 0.078685 0.036946 0.099355 0.0566 0.078685
-	200 3 85 84 89 0.530902 0.894495 0.521084 0.875856 0.564285 0.875856
-	200 3 91 89 90 0.554466 0.857217 0.564285 0.875856 0.530902 0.857217
-	200 3 83 89 86 0.02963 0.099355 0.035718 0.078685 0.036946 0.099355
-	200 3 86 91 87 0.036946 0.099355 0.04186 0.078685 0.061514 0.099355
-	200 3 84 82 87 0.062742 0.078685 0.069861 0.099355 0.061514 0.099355
-	200 3 89 83 79 0.035718 0.078685 0.02963 0.099355 0.036946 0.099355
-	200 3 93 95 94 0.015862 0.041772 0.015918 0.11865 0.069706 0.072882
-	200 3 96 97 99 0.074518 0.086569 0.029029 0.086569 0.060672 0.039514
-	200 3 101 131 102 0.035718 0.078685 0.02963 0.099355 0.036946 0.099355
-	200 3 104 132 105 0.062742 0.078685 0.069861 0.099355 0.061514 0.099355
-	200 3 127 126 105 0.036946 0.099355 0.04186 0.078685 0.061514 0.099355
-	200 3 131 101 127 0.02963 0.099355 0.035718 0.078685 0.036946 0.099355
-	200 3 126 101 103 0.554466 0.857217 0.564285 0.875856 0.530902 0.857217
-	200 3 101 100 104 0.564285 0.875856 0.554466 0.894495 0.521084 0.875856
-	200 3 100 102 128 0.04186 0.078685 0.036946 0.099355 0.0566 0.078685
-	200 3 137 130 127 0.036946 0.039177 0.02963 0.039177 0.036946 0.099355
-	200 3 133 134 105 0.069861 0.039177 0.061514 0.039177 0.061514 0.099355
-	200 3 137 127 134 0.036946 0.039177 0.036946 0.099355 0.061514 0.039177
-	200 3 132 104 129 0.069861 0.099355 0.062742 0.078685 0.061514 0.099355
-	200 3 130 135 131 0.02963 0.039177 0.036946 0.039177 0.02963 0.099355
-	200 3 136 133 132 0.061514 0.039177 0.069861 0.039177 0.069861 0.099355
-	200 3 129 102 136 0.061514 0.099355 0.036946 0.099355 0.061514 0.039177
-	200 3 133 136 135 0.448834 0.780072 0.428189 0.789315 0.409542 0.770668
-	200 3 130 137 133 0.418785 0.750023 0.43943 0.74078 0.448834 0.780072
-	200 3 142 141 138 0.028037 0.080367 0.028037 0.046445 0.051904 0.046445
-	200 3 140 139 143 0.011546 0.01438 0.070749 0.061499 0.011557 0.080361
-	200 3 147 174 148 0.036946 0.099355 0.02963 0.099355 0.035718 0.078685
-	200 3 150 178 151 0.061514 0.099355 0.069861 0.099355 0.062742 0.078685
-	200 3 149 172 150 0.0566 0.078685 0.04186 0.078685 0.061514 0.099355
-	200 3 172 148 173 0.04186 0.078685 0.035718 0.078685 0.036946 0.099355
-	200 3 151 148 149 0.521084 0.875856 0.564285 0.875856 0.530902 0.857217
-	200 3 148 151 175 0.564285 0.875856 0.521084 0.875856 0.530902 0.894495
-	200 3 181 147 175 0.061514 0.099355 0.036946 0.099355 0.0566 0.078685
-	200 3 174 176 173 0.02963 0.099355 0.02963 0.039177 0.036946 0.099355
-	200 3 150 180 179 0.061514 0.099355 0.061514 0.039177 0.069861 0.039177
-	200 3 150 173 180 0.061514 0.099355 0.036946 0.099355 0.061514 0.039177
-	200 3 175 151 181 0.0566 0.078685 0.062742 0.078685 0.061514 0.099355
-	200 3 147 182 174 0.036946 0.099355 0.036946 0.039177 0.02963 0.099355
-	200 3 178 179 183 0.069861 0.099355 0.069861 0.039177 0.061514 0.039177
-	200 3 182 147 183 0.036946 0.039177 0.036946 0.099355 0.061514 0.039177
-	200 3 179 176 183 0.448834 0.780072 0.418785 0.750023 0.428189 0.789315
-	200 3 180 177 179 0.458077 0.759428 0.43943 0.74078 0.448834 0.780072
diff --git a/components/prop/prshov1.pie b/components/prop/prshov1.pie
deleted file mode 100644
index 0b4bb53..0000000
--- a/components/prop/prshov1.pie
+++ /dev/null
@@ -1,130 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 48 
-	19 64 91 
-	19 64 71 
-	19 32 71 
-	19 32 89 
-	-18 64 91 
-	-18 64 71 
-	-18 32 71 
-	-18 32 89 
-	39 53 58 
-	0 53 58 
-	7 30 58 
-	32 30 58 
-	19 67 58 
-	39 53 69 
-	19 67 69 
-	32 30 69 
-	0 53 69 
-	7 30 69 
-	-38 53 58 
-	-31 30 58 
-	-7 30 58 
-	-19 67 58 
-	-19 67 69 
-	-7 30 69 
-	-38 53 69 
-	-31 30 69 
-	-5 30 70 
-	0 66 70 
-	0 54 94 
-	-5 30 78 
-	5 30 70 
-	5 30 78 
-	-21 2 -76 
-	21 2 -76 
-	20 29 -68 
-	-20 29 -68 
-	21 2 86 
-	-21 2 86 
-	-20 29 78 
-	20 29 78 
-	46 2 45 
-	41 29 45 
-	-46 2 45 
-	-41 29 45 
-	46 2 -44 
-	41 29 -44 
-	-46 2 -44 
-	-41 29 -44
-POLYGONS 75
-	200 3 0 1 1 0 48 0 55 0 55
-	200 3 0 1 0 0 48 0 55 0 48
-	200 3 1 2 2 0 55 7 55 7 55
-	200 3 1 2 1 0 55 7 55 0 55
-	200 3 2 3 3 7 55 7 48 7 48
-	200 3 2 3 2 7 55 7 48 7 55
-	200 3 3 0 0 7 48 0 48 0 48
-	200 3 3 0 3 7 48 0 48 7 48
-	200 3 3 0 1 7 48 0 48 0 55
-	200 3 3 1 2 7 48 0 55 7 55
-	200 3 1 0 3 0 55 0 48 7 48
-	200 3 1 3 2 0 55 7 48 7 55
-	200 3 4 5 5 0 48 0 55 0 55
-	200 3 4 5 4 0 48 0 55 0 48
-	200 3 5 6 6 0 55 7 55 7 55
-	200 3 5 6 5 0 55 7 55 0 55
-	200 3 6 7 7 7 55 7 48 7 48
-	200 3 6 7 6 7 55 7 48 7 55
-	200 3 7 4 4 7 48 0 48 0 48
-	200 3 7 4 7 7 48 0 48 7 48
-	200 3 7 4 5 7 48 0 48 0 55
-	200 3 7 5 6 7 48 0 55 7 55
-	200 3 5 4 7 0 55 0 48 7 48
-	200 3 5 7 6 0 55 7 48 7 55
-	200 3 11 10 9 13 63 18 63 20 68
-	200 3 11 9 8 13 63 20 68 11 68
-	200 3 9 12 8 20 68 16 71 11 68
-	200 3 14 13 8 17 85 11 85 11 92
-	200 3 14 8 12 17 85 11 92 17 92
-	200 3 13 15 11 11 85 0 85 0 92
-	200 3 13 11 8 11 85 0 92 11 92
-	200 3 17 16 9 0 85 11 85 11 92
-	200 3 17 9 10 0 85 11 92 0 92
-	200 3 16 14 12 11 85 17 85 17 92
-	200 3 16 12 9 11 85 17 92 11 92
-	200 3 17 15 13 2 63 7 63 9 68
-	200 3 17 13 14 2 63 9 68 4 71
-	200 3 16 17 14 0 68 2 63 4 71
-	200 3 20 19 18 13 63 18 63 20 68
-	200 3 20 18 9 13 63 20 68 11 68
-	200 3 18 21 9 20 68 16 71 11 68
-	200 3 22 16 9 17 85 11 85 11 92
-	200 3 22 9 21 17 85 11 92 17 92
-	200 3 16 23 20 11 85 0 85 0 92
-	200 3 16 20 9 11 85 0 92 11 92
-	200 3 25 24 18 0 85 11 85 11 92
-	200 3 25 18 19 0 85 11 92 0 92
-	200 3 24 22 21 11 85 17 85 17 92
-	200 3 24 21 18 11 85 17 92 11 92
-	200 3 25 23 16 2 63 7 63 9 68
-	200 3 25 16 22 2 63 9 68 4 71
-	200 3 24 25 22 0 68 2 63 4 71
-	200 3 29 28 27 4 40 8 48 0 48
-	200 3 29 27 26 4 40 0 48 0 40
-	200 3 27 28 31 0 48 8 48 4 40
-	200 3 27 31 30 0 48 4 40 0 40
-	200 3 29 31 28 4 40 4 40 8 48
-	200 3 35 34 33 199 34 199 1 192 0
-	200 3 35 33 32 199 34 192 0 192 35
-	200 3 39 38 37 199 1 199 34 192 35
-	200 3 39 37 36 199 1 192 35 192 0
-	200 3 41 39 36 199 0 199 31 192 35
-	200 3 41 36 40 199 0 192 35 192 0
-	200 3 38 43 42 199 31 199 0 192 0
-	200 3 38 42 37 199 31 192 0 192 35
-	200 3 45 41 40 199 35 199 0 192 0
-	200 3 45 40 44 199 35 192 0 192 35
-	200 3 43 47 46 199 0 199 35 192 35
-	200 3 43 46 42 199 0 192 35 192 0
-	200 3 34 45 44 199 31 199 0 192 0
-	200 3 34 44 33 199 31 192 0 192 35
-	200 3 47 35 32 199 0 199 31 192 35
-	200 3 47 32 46 199 0 192 35 192 0
-	200 3 38 39 41 19 33 5 33 0 24
-	200 3 38 41 43 19 33 0 24 24 24
\ No newline at end of file
diff --git a/components/prop/prslhtr4.pie b/components/prop/prslhtr4.pie
deleted file mode 100644
index 158d54b..0000000
--- a/components/prop/prslhtr4.pie
+++ /dev/null
@@ -1,119 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 38 
-	23 0 -56 
-	23 0 -27 
-	45 0 -27 
-	42 0 -56 
-	23 6 -74 
-	23 0 -67 
-	40 0 -67 
-	39 6 -74 
-	23 22 -67 
-	23 16 -74 
-	39 16 -74 
-	40 22 -67 
-	23 25 -55 
-	42 25 -55 
-	23 28 -27 
-	45 28 -27 
-	23 8 -18 
-	45 8 -18 
-	23 20 -18 
-	45 20 -18 
-	45 0 18 
-	45 29 18 
-	45 29 -9 
-	45 0 -9 
-	22 0 18 
-	22 0 -9 
-	22 20 -18 
-	22 29 -9 
-	22 29 18 
-	22 8 -18 
-	22 29 46 
-	22 0 46 
-	22 20 54 
-	22 8 54 
-	45 0 46 
-	45 20 54 
-	45 29 46 
-	45 8 54
-POLYGONS 74
-	200 3 3 2 1 35 56 35 62 43 62
-	200 3 3 1 0 35 56 43 62 43 56
-	200 3 7 6 5 8 84 5 84 5 73
-	200 3 7 5 4 8 84 5 73 8 73
-	200 3 11 10 9 17 84 13 84 13 73
-	200 3 11 9 8 17 84 13 73 17 73
-	200 3 10 7 4 13 84 8 84 8 73
-	200 3 10 4 9 13 84 8 73 13 73
-	200 3 12 8 5 113 175 113 165 97 165
-	200 3 12 5 0 113 175 97 165 97 175
-	200 3 8 9 4 113 165 108 159 101 159
-	200 3 8 4 5 113 165 101 159 97 165
-	200 3 6 11 13 97 165 113 165 113 175
-	200 3 6 13 3 97 165 113 175 97 175
-	200 3 7 10 11 101 159 108 159 113 165
-	200 3 7 11 6 101 159 113 165 97 165
-	200 3 13 11 8 13 214 13 197 0 197
-	200 3 13 8 12 13 214 0 197 0 214
-	200 3 6 3 0 35 56 35 62 43 62
-	200 3 6 0 5 35 56 43 62 43 56
-	200 3 15 13 12 13 221 13 190 0 190
-	200 3 15 12 14 13 221 0 190 0 221
-	200 3 2 17 16 4 84 8 84 8 73
-	200 3 2 16 1 4 84 8 73 4 73
-	200 3 17 19 18 8 84 13 84 13 73
-	200 3 17 18 16 8 84 13 73 8 73
-	200 3 19 15 14 13 84 17 84 17 73
-	200 3 19 14 18 13 84 17 73 13 73
-	200 3 0 1 14 97 150 97 173 113 173
-	200 3 0 14 12 97 150 113 173 113 150
-	200 3 15 2 3 113 173 97 173 97 150
-	200 3 15 3 13 113 173 97 150 113 150
-	200 3 1 16 18 97 163 102 156 108 156
-	200 3 1 18 14 97 163 108 156 113 162
-	200 3 19 17 2 108 156 102 156 97 163
-	200 3 19 2 15 108 156 97 163 113 162
-	200 3 23 22 21 12 142 0 142 0 160
-	200 3 23 21 20 12 142 0 160 12 160
-	200 3 17 19 22 9 137 3 137 0 142
-	200 3 17 22 23 9 137 0 142 12 142
-	200 3 27 26 25 0 142 3 137 12 142
-	200 3 27 25 24 0 142 12 142 12 160
-	200 3 24 28 27 12 160 0 160 0 142
-	200 3 27 26 29 0 142 3 137 9 137
-	200 3 27 29 25 0 142 9 137 12 142
-	200 3 24 25 23 94 136 94 98 88 98
-	200 3 24 23 20 94 136 88 98 88 136
-	200 3 25 29 17 94 124 94 110 88 110
-	200 3 25 17 23 94 124 88 110 88 124
-	200 3 29 26 19 10 186 10 175 0 175
-	200 3 29 19 17 10 186 0 175 0 186
-	200 3 26 27 22 11 98 11 105 0 105
-	200 3 26 22 19 11 98 0 105 0 98
-	200 3 27 28 21 11 105 11 123 0 123
-	200 3 27 21 22 11 105 0 123 0 105
-	200 3 31 30 28 12 142 0 142 0 160
-	200 3 31 28 24 12 142 0 160 12 160
-	200 3 33 32 30 9 137 3 137 0 142
-	200 3 33 30 31 9 137 0 142 12 142
-	200 3 36 35 34 0 142 3 137 12 142
-	200 3 36 34 20 0 142 12 142 12 160
-	200 3 20 21 36 12 160 0 160 0 142
-	200 3 36 35 37 0 142 3 137 9 137
-	200 3 36 37 34 0 142 9 137 12 142
-	200 3 20 34 31 94 136 94 98 88 98
-	200 3 20 31 24 94 136 88 98 88 136
-	200 3 34 37 33 94 124 94 110 88 110
-	200 3 34 33 31 94 124 88 110 88 124
-	200 3 37 35 32 10 186 10 175 0 175
-	200 3 37 32 33 10 186 0 175 0 186
-	200 3 35 36 30 11 98 11 105 0 105
-	200 3 35 30 32 11 98 0 105 0 98
-	200 3 36 21 28 11 105 11 123 0 123
-	200 3 36 28 30 11 105 0 123 0 105
\ No newline at end of file
diff --git a/components/prop/prsltrk4.pie b/components/prop/prsltrk4.pie
deleted file mode 100644
index f5bbd63..0000000
--- a/components/prop/prsltrk4.pie
+++ /dev/null
@@ -1,89 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 28 
-	20 7 -60 
-	20 20 -60 
-	20 29 -49 
-	20 0 -50 
-	20 29 -12 
-	20 0 -12 
-	20 20 -1 
-	20 7 -1 
-	42 7 -60 
-	42 0 -50 
-	42 29 -12 
-	42 29 -49 
-	42 20 -60 
-	42 0 -12 
-	42 20 -1 
-	42 7 -1 
-	20 29 9 
-	20 0 8 
-	20 29 47 
-	20 0 47 
-	20 20 57 
-	20 7 57 
-	42 0 8 
-	42 29 47 
-	42 29 9 
-	42 0 47 
-	42 20 57 
-	42 7 57
-POLYGONS 54
-	200 3 3 2 1 12 165 0 165 4 171
-	200 3 3 1 0 12 165 4 171 9 171
-	200 3 5 4 2 12 143 0 143 0 165
-	200 3 5 2 3 12 143 0 165 12 165
-	200 3 7 6 4 8 137 4 137 0 143
-	200 3 7 4 5 8 137 0 143 12 143
-	200 3 11 10 9 0 165 0 143 12 165
-	200 3 11 9 8 0 165 12 165 9 171
-	200 3 8 12 11 9 171 4 171 0 165
-	200 3 10 14 13 0 143 4 137 12 143
-	200 3 10 13 9 0 143 12 143 12 165
-	200 3 10 14 15 0 143 4 137 8 137
-	200 3 10 15 13 0 143 8 137 12 143
-	200 3 8 9 3 94 125 94 109 88 109
-	200 3 8 3 0 94 125 88 109 88 125
-	200 3 9 13 5 94 136 94 98 88 98
-	200 3 9 5 3 94 136 88 98 88 136
-	200 3 13 15 7 94 124 94 110 88 110
-	200 3 13 7 5 94 124 88 110 88 124
-	200 3 14 10 4 11 98 11 105 0 105
-	200 3 14 4 6 11 98 0 105 0 98
-	200 3 10 11 2 11 105 11 129 0 129
-	200 3 10 2 4 11 105 0 129 0 105
-	200 3 11 12 1 11 129 11 136 0 136
-	200 3 11 1 2 11 129 0 136 0 129
-	200 3 12 8 0 10 175 10 186 0 186
-	200 3 12 0 1 10 175 0 186 0 175
-	200 3 17 16 6 12 165 0 165 4 171
-	200 3 17 6 7 12 165 4 171 9 171
-	200 3 19 18 16 12 143 0 143 0 165
-	200 3 19 16 17 12 143 0 165 12 165
-	200 3 21 20 18 8 137 4 137 0 143
-	200 3 21 18 19 8 137 0 143 12 143
-	200 3 24 23 22 0 165 0 143 12 165
-	200 3 24 22 15 0 165 12 165 9 171
-	200 3 15 14 24 9 171 4 171 0 165
-	200 3 23 26 25 0 143 4 137 12 143
-	200 3 23 25 22 0 143 12 143 12 165
-	200 3 23 26 27 0 143 4 137 8 137
-	200 3 23 27 25 0 143 8 137 12 143
-	200 3 15 22 17 94 125 94 109 88 109
-	200 3 15 17 7 94 125 88 109 88 125
-	200 3 22 25 19 94 136 94 98 88 98
-	200 3 22 19 17 94 136 88 98 88 136
-	200 3 25 27 21 94 124 94 110 88 110
-	200 3 25 21 19 94 124 88 110 88 124
-	200 3 27 26 20 10 186 10 175 0 175
-	200 3 27 20 21 10 186 0 175 0 186
-	200 3 26 23 18 11 98 11 105 0 105
-	200 3 26 18 20 11 98 0 105 0 98
-	200 3 23 24 16 11 105 11 129 0 129
-	200 3 23 16 18 11 105 0 129 0 105
-	200 3 24 14 6 11 129 11 136 0 136
-	200 3 24 6 16 11 129 0 136 0 129
\ No newline at end of file
diff --git a/components/prop/prslvtl1.pie b/components/prop/prslvtl1.pie
deleted file mode 100644
index 48d3b38..0000000
--- a/components/prop/prslvtl1.pie
+++ /dev/null
@@ -1,76 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-15-droid-hubs.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 24 
-	41 29 8 
-	68 23 19 
-	75 23 37 
-	50 41 51 
-	41 29 45 
-	49 16 -8 
-	45 7 -28 
-	34 14 -24 
-	36 20 -12 
-	54 8 -18 
-	55 28 -15 
-	60 21 -25 
-	42 32 -18 
-	40 27 -31 
-	51 20 -35 
-	28 57 21 
-	28 57 58 
-	20 73 66 
-	20 73 46 
-	10 33 52 
-	0 44 52 
-	10 33 48 
-	0 23 42 
-	0 23 52
-POLYGONS 45
-	200 3 3 2 1 0 217 9 194 21 201
-	200 3 3 1 0 0 217 21 201 28 225
-	200 3 1 2 4 21 201 7 194 1 225
-	200 3 1 4 0 21 201 1 225 29 225
-	200 3 3 4 2 0 99 0 92 28 99
-	200 3 5 6 7 178 1 178 21 190 17
-	200 3 5 7 8 178 1 190 17 190 5
-	200 3 8 7 6 190 5 190 17 178 21
-	200 3 8 6 5 190 5 178 21 178 1
-	200 3 5 9 6 178 1 170 11 178 21
-	200 3 6 9 5 178 21 170 11 178 1
-	200 3 9 5 10 107 56 125 56 125 42
-	200 3 9 10 11 107 56 125 42 107 42
-	200 3 11 10 5 107 42 125 42 125 56
-	200 3 11 5 9 107 42 125 56 107 56
-	200 3 5 8 12 107 56 125 56 125 42
-	200 3 5 12 10 107 56 125 42 107 42
-	200 3 10 12 8 107 42 125 42 125 56
-	200 3 10 8 5 107 42 125 56 107 56
-	200 3 8 7 13 125 56 107 56 107 42
-	200 3 8 13 12 125 56 107 42 125 42
-	200 3 12 13 7 125 42 107 42 107 56
-	200 3 12 7 8 125 42 107 56 125 56
-	200 3 7 6 14 125 56 107 56 107 42
-	200 3 7 14 13 125 56 107 42 125 42
-	200 3 13 14 6 125 42 107 42 107 56
-	200 3 13 6 7 125 42 107 56 125 56
-	200 3 6 9 11 125 56 107 56 107 42
-	200 3 6 11 14 125 56 107 42 125 42
-	200 3 14 11 9 125 42 107 42 107 56
-	200 3 14 9 6 125 42 107 56 125 56
-	200 3 11 10 12 170 11 178 1 190 5
-	200 3 11 12 13 170 11 190 5 190 17
-	200 3 13 12 10 190 17 190 5 178 1
-	200 3 13 10 11 190 17 178 1 170 11
-	200 3 11 13 14 170 11 190 17 178 21
-	200 3 14 13 11 178 21 190 17 170 11
-	200 3 15 16 17 0 179 32 179 32 148
-	200 3 15 17 18 0 179 32 148 0 148
-	200 3 18 17 16 0 148 32 148 32 179
-	200 3 18 16 15 0 148 32 179 0 179
-	200 3 21 20 19 115 61 108 56 115 56
-	200 3 21 19 23 115 61 115 56 122 56
-	200 3 21 23 22 115 61 122 56 122 66
-	200 3 19 20 23 237 112 237 112 236 112
\ No newline at end of file
diff --git a/components/prop/prslwhl1.pie b/components/prop/prslwhl1.pie
deleted file mode 100644
index 0a86cc7..0000000
--- a/components/prop/prslwhl1.pie
+++ /dev/null
@@ -1,380 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 134 
-	25 0 12 
-	25 16 -1 
-	25 8 -1 
-	25 1 7 
-	25 1 16 
-	25 8 24 
-	25 16 24 
-	25 12 -2 
-	25 12 25 
-	25 4 2 
-	25 4 21 
-	43 8 -1 
-	43 4 2 
-	43 1 7 
-	43 0 12 
-	43 1 16 
-	43 4 21 
-	43 8 24 
-	43 12 -2 
-	43 12 25 
-	43 16 -1 
-	43 16 24 
-	24 29 10 
-	44 29 10 
-	44 12 10 
-	24 7 10 
-	25 0 41 
-	25 16 53 
-	25 8 53 
-	25 1 46 
-	25 1 36 
-	25 8 29 
-	25 16 29 
-	25 12 54 
-	25 12 28 
-	25 4 51 
-	25 4 32 
-	43 8 53 
-	43 4 51 
-	43 1 46 
-	43 0 41 
-	43 1 36 
-	43 4 32 
-	43 8 29 
-	43 12 54 
-	43 12 28 
-	43 16 53 
-	43 16 29 
-	24 29 45 
-	44 29 45 
-	24 8 57 
-	44 8 57 
-	24 21 56 
-	44 21 56 
-	44 12 45 
-	24 7 45 
-	25 0 -15 
-	25 13 -25 
-	25 7 -25 
-	25 1 -20 
-	25 1 -11 
-	25 7 -6 
-	25 13 -6 
-	25 10 -26 
-	25 10 -5 
-	25 3 -23 
-	25 3 -8 
-	43 7 -25 
-	43 3 -23 
-	43 1 -20 
-	43 0 -15 
-	43 1 -11 
-	43 3 -8 
-	43 7 -6 
-	43 10 -26 
-	43 10 -5 
-	43 13 -25 
-	43 13 -6 
-	25 0 -41 
-	25 13 -50 
-	25 7 -50 
-	25 1 -45 
-	25 1 -36 
-	25 7 -31 
-	25 13 -31 
-	25 10 -51 
-	25 10 -30 
-	25 3 -48 
-	25 3 -33 
-	42 7 -50 
-	42 3 -48 
-	42 1 -45 
-	42 0 -41 
-	42 1 -36 
-	42 3 -33 
-	42 7 -31 
-	42 10 -51 
-	42 10 -30 
-	42 13 -50 
-	42 13 -31 
-	25 0 -66 
-	25 13 -75 
-	25 7 -75 
-	25 1 -70 
-	25 1 -61 
-	25 7 -56 
-	25 13 -56 
-	25 10 -76 
-	25 10 -55 
-	25 3 -73 
-	25 3 -58 
-	41 7 -75 
-	41 3 -73 
-	41 1 -70 
-	41 0 -66 
-	41 1 -61 
-	41 3 -58 
-	41 7 -56 
-	41 10 -76 
-	41 10 -55 
-	41 13 -75 
-	41 13 -56 
-	24 7 -70 
-	24 25 -69 
-	24 9 -78 
-	42 25 -69 
-	42 12 -70 
-	41 9 -78 
-	24 29 -17 
-	24 7 -17 
-	44 29 -17 
-	44 12 -17 
-	24 19 -75 
-	41 19 -75
-POLYGONS 239
-	200 3 12 9 2 27 52 27 53 21 53
-	200 3 12 2 11 27 52 21 53 21 52
-	200 3 13 3 9 27 52 27 53 21 53
-	200 3 13 9 12 27 52 21 53 21 52
-	200 3 14 0 3 27 52 27 53 21 53
-	200 3 14 3 13 27 52 21 53 21 52
-	200 3 15 4 0 27 52 27 53 21 53
-	200 3 15 0 14 27 52 21 53 21 52
-	200 3 16 10 4 27 52 27 53 21 53
-	200 3 16 4 15 27 52 21 53 21 52
-	200 3 17 5 10 27 52 27 53 21 53
-	200 3 17 10 16 27 52 21 53 21 52
-	200 3 11 2 7 27 52 27 53 21 53
-	200 3 11 7 18 27 52 21 53 21 52
-	200 3 19 8 5 27 52 27 53 21 53
-	200 3 19 5 17 27 52 21 53 21 52
-	200 3 18 7 1 27 52 27 53 21 53
-	200 3 18 1 20 27 52 21 53 21 52
-	200 3 21 6 8 27 52 27 53 21 53
-	200 3 21 8 19 27 52 21 53 21 52
-	200 3 12 11 18 150 161 152 160 154 159
-	200 3 12 18 19 150 161 154 159 154 174
-	200 3 14 13 12 147 167 148 164 150 161
-	200 3 14 12 19 147 167 150 161 154 174
-	200 3 15 14 19 148 170 147 167 154 174
-	200 3 15 19 17 148 170 154 174 152 173
-	200 3 15 17 16 148 170 152 173 150 172
-	200 3 38 37 28 27 52 21 52 21 53
-	200 3 38 28 35 27 52 21 53 27 53
-	200 3 39 38 35 27 52 21 52 21 53
-	200 3 39 35 29 27 52 21 53 27 53
-	200 3 40 39 29 27 52 21 52 21 53
-	200 3 40 29 26 27 52 21 53 27 53
-	200 3 41 40 26 27 52 21 52 21 53
-	200 3 41 26 30 27 52 21 53 27 53
-	200 3 42 41 30 27 52 21 52 21 53
-	200 3 42 30 36 27 52 21 53 27 53
-	200 3 43 42 36 27 52 21 52 21 53
-	200 3 43 36 31 27 52 21 53 27 53
-	200 3 37 44 33 27 52 21 52 21 53
-	200 3 37 33 28 27 52 21 53 27 53
-	200 3 45 43 31 27 52 21 52 21 53
-	200 3 45 31 34 27 52 21 53 27 53
-	200 3 44 46 27 27 52 21 52 21 53
-	200 3 44 27 33 27 52 21 53 27 53
-	200 3 47 45 34 27 52 21 52 21 53
-	200 3 47 34 32 27 52 21 53 27 53
-	200 3 38 45 44 150 161 154 174 154 159
-	200 3 38 44 37 150 161 154 159 152 160
-	200 3 40 45 38 147 167 154 174 150 161
-	200 3 40 38 39 147 167 150 161 148 164
-	200 3 41 42 43 148 170 150 172 152 173
-	200 3 41 43 45 148 170 152 173 154 174
-	200 3 41 45 40 148 170 154 174 147 167
-	200 3 51 50 52 12 204 1 204 1 199
-	200 3 51 52 53 12 204 1 199 12 199
-	200 3 53 52 50 12 199 1 199 1 204
-	200 3 53 50 51 12 199 1 204 12 204
-	200 3 51 53 49 12 204 12 199 12 187
-	200 3 51 49 54 12 204 12 187 1 195
-	200 3 54 49 53 1 195 12 187 12 199
-	200 3 54 53 51 1 195 12 199 12 204
-	200 3 48 52 50 1 187 1 200 1 204
-	200 3 48 50 55 1 187 1 204 12 196
-	200 3 55 50 52 12 196 1 204 1 200
-	200 3 55 52 48 12 196 1 200 1 187
-	200 3 54 49 23 1 224 12 224 12 187
-	200 3 54 23 24 1 224 12 187 1 187
-	200 3 24 23 49 1 187 12 187 12 224
-	200 3 24 49 54 1 187 12 224 1 224
-	200 3 49 48 22 12 224 1 224 1 187
-	200 3 49 22 23 12 224 1 187 12 187
-	200 3 23 22 48 12 187 1 187 1 224
-	200 3 23 48 49 12 187 1 224 12 224
-	200 3 25 22 48 12 187 1 187 1 224
-	200 3 25 48 55 12 187 1 224 12 224
-	200 3 55 48 22 12 224 1 224 1 187
-	200 3 55 22 25 12 224 1 187 12 187
-	200 3 47 46 44 156 173 156 160 154 159
-	200 3 47 44 45 156 173 154 159 154 174
-	200 3 20 21 19 156 160 156 173 154 174
-	200 3 20 19 18 156 160 154 174 154 159
-	200 3 53 52 48 12 199 1 199 1 187
-	200 3 53 48 49 12 199 1 187 12 187
-	200 3 49 48 52 12 187 1 187 1 199
-	200 3 49 52 53 12 187 1 199 12 199
-	200 3 68 65 58 27 52 27 53 21 53
-	200 3 68 58 67 27 52 21 53 21 52
-	200 3 69 59 65 27 52 27 53 21 53
-	200 3 69 65 68 27 52 21 53 21 52
-	200 3 70 56 59 27 52 27 53 21 53
-	200 3 70 59 69 27 52 21 53 21 52
-	200 3 71 60 56 27 52 27 53 21 53
-	200 3 71 56 70 27 52 21 53 21 52
-	200 3 72 66 60 27 52 27 53 21 53
-	200 3 72 60 71 27 52 21 53 21 52
-	200 3 73 61 66 27 52 27 53 21 53
-	200 3 73 66 72 27 52 21 53 21 52
-	200 3 67 58 63 27 52 27 53 21 53
-	200 3 67 63 74 27 52 21 53 21 52
-	200 3 75 64 61 27 52 27 53 21 53
-	200 3 75 61 73 27 52 21 53 21 52
-	200 3 74 63 57 27 52 27 53 21 53
-	200 3 74 57 76 27 52 21 53 21 52
-	200 3 77 62 64 27 52 27 53 21 53
-	200 3 77 64 75 27 52 21 53 21 52
-	200 3 113 103 109 27 52 27 53 21 53
-	200 3 113 109 112 27 52 21 53 21 52
-	200 3 90 87 80 27 52 27 53 21 53
-	200 3 90 80 89 27 52 21 53 21 52
-	200 3 91 81 87 27 52 27 53 21 53
-	200 3 91 87 90 27 52 21 53 21 52
-	200 3 92 78 81 27 52 27 53 21 53
-	200 3 92 81 91 27 52 21 53 21 52
-	200 3 93 82 78 27 52 27 53 21 53
-	200 3 93 78 92 27 52 21 53 21 52
-	200 3 94 88 82 27 52 27 53 21 53
-	200 3 94 82 93 27 52 21 53 21 52
-	200 3 95 83 88 27 52 27 53 21 53
-	200 3 95 88 94 27 52 21 53 21 52
-	200 3 89 80 85 27 52 27 53 21 53
-	200 3 89 85 96 27 52 21 53 21 52
-	200 3 97 86 83 27 52 27 53 21 53
-	200 3 97 83 95 27 52 21 53 21 52
-	200 3 96 85 79 27 52 27 53 21 53
-	200 3 96 79 98 27 52 21 53 21 52
-	200 3 99 84 86 27 52 27 53 21 53
-	200 3 99 86 97 27 52 21 53 21 52
-	200 3 112 109 102 27 52 27 53 21 53
-	200 3 112 102 111 27 52 21 53 21 52
-	200 3 114 100 103 27 52 27 53 21 53
-	200 3 114 103 113 27 52 21 53 21 52
-	200 3 115 104 100 27 52 27 53 21 53
-	200 3 115 100 114 27 52 21 53 21 52
-	200 3 116 110 104 27 52 27 53 21 53
-	200 3 116 104 115 27 52 21 53 21 52
-	200 3 117 105 110 27 52 27 53 21 53
-	200 3 117 110 116 27 52 21 53 21 52
-	200 3 111 102 107 27 52 27 53 21 53
-	200 3 111 107 118 27 52 21 53 21 52
-	200 3 119 108 105 27 52 27 53 21 53
-	200 3 119 105 117 27 52 21 53 21 52
-	200 3 118 107 101 27 52 27 53 21 53
-	200 3 118 101 120 27 52 21 53 21 52
-	200 3 121 106 108 27 52 27 53 21 53
-	200 3 121 108 119 27 52 21 53 21 52
-	200 3 121 119 118 156 173 154 174 154 159
-	200 3 121 118 120 156 173 154 159 156 160
-	200 3 112 111 118 150 161 152 160 154 159
-	200 3 112 118 119 150 161 154 159 154 174
-	200 3 114 113 112 147 167 148 164 150 161
-	200 3 114 112 119 147 167 150 161 154 174
-	200 3 99 97 96 156 173 154 174 154 159
-	200 3 99 96 98 156 173 154 159 156 160
-	200 3 90 89 96 150 161 152 160 154 159
-	200 3 90 96 97 150 161 154 159 154 174
-	200 3 92 91 90 147 167 148 164 150 161
-	200 3 92 90 97 147 167 150 161 154 174
-	200 3 115 114 119 148 170 147 167 154 174
-	200 3 115 119 117 148 170 154 174 152 173
-	200 3 115 117 116 148 170 152 173 150 172
-	200 3 93 92 97 148 170 147 167 154 174
-	200 3 93 97 95 148 170 154 174 152 173
-	200 3 93 95 94 148 170 152 173 150 172
-	200 3 77 75 74 156 173 154 174 154 159
-	200 3 77 74 76 156 173 154 159 156 160
-	200 3 68 67 74 150 161 152 160 154 159
-	200 3 68 74 75 150 161 154 159 154 174
-	200 3 70 69 68 147 167 148 164 150 161
-	200 3 70 68 75 147 167 150 161 154 174
-	200 3 71 70 75 148 170 147 167 154 174
-	200 3 71 75 73 148 170 154 174 152 173
-	200 3 71 73 72 148 170 152 173 150 172
-	200 3 83 80 87 152 173 152 160 150 161
-	200 3 83 87 88 152 173 150 161 150 172
-	200 3 87 81 78 150 161 148 164 147 167
-	200 3 87 78 82 150 161 147 167 148 170
-	200 3 87 82 88 150 161 148 170 150 172
-	200 3 105 107 102 152 173 154 159 152 160
-	200 3 105 102 110 152 173 152 160 150 172
-	200 3 102 109 103 152 160 150 161 148 164
-	200 3 102 103 110 152 160 148 164 150 172
-	200 3 103 100 104 148 164 147 167 148 170
-	200 3 103 104 110 148 164 148 170 150 172
-	200 3 131 130 125 1 187 12 187 12 224
-	200 3 131 125 126 1 187 12 224 1 224
-	200 3 126 125 130 1 224 12 224 12 187
-	200 3 126 130 131 1 224 12 187 1 187
-	200 3 132 124 127 1 220 1 211 12 211
-	200 3 132 127 133 1 220 12 211 12 220
-	200 3 133 127 124 12 220 12 211 1 211
-	200 3 133 124 132 12 220 1 211 1 220
-	200 3 133 125 123 12 220 12 224 1 224
-	200 3 133 123 132 12 220 1 224 1 220
-	200 3 132 123 125 1 220 1 224 12 224
-	200 3 132 125 133 1 220 12 224 12 220
-	200 3 122 123 128 12 224 1 224 1 187
-	200 3 122 128 129 12 224 1 187 12 187
-	200 3 129 128 123 12 187 1 187 1 224
-	200 3 129 123 122 12 187 1 224 12 224
-	200 3 130 128 123 12 187 1 187 1 224
-	200 3 130 123 125 12 187 1 224 12 224
-	200 3 125 123 128 12 224 1 224 1 187
-	200 3 125 128 130 12 224 1 187 12 187
-	200 3 122 124 132 8 210 12 211 12 220
-	200 3 122 132 123 8 210 12 220 6 223
-	200 3 123 132 124 6 223 12 220 12 211
-	200 3 123 124 122 6 223 12 211 8 210
-	200 3 126 125 133 8 210 6 223 12 220
-	200 3 126 133 127 8 210 12 220 12 211
-	200 3 127 133 125 12 211 12 220 6 223
-	200 3 127 125 126 12 211 6 223 8 210
-	200 3 24 23 130 1 223 12 223 12 196
-	200 3 24 130 131 1 223 12 196 1 196
-	200 3 131 130 23 1 196 12 196 12 223
-	200 3 131 23 24 1 196 12 223 1 223
-	200 3 23 22 128 12 223 1 223 1 196
-	200 3 23 128 130 12 223 1 196 12 196
-	200 3 130 128 22 12 196 1 196 1 223
-	200 3 130 22 23 12 196 1 223 12 223
-	200 3 22 25 129 1 223 12 223 12 196
-	200 3 22 129 128 1 223 12 196 1 196
-	200 3 128 129 25 1 196 12 196 12 223
-	200 3 128 25 22 1 196 12 223 1 223
-	200 3 65 59 56 150 161 148 164 147 167
-	200 3 65 56 60 150 161 147 167 148 170
-	200 3 65 60 66 150 161 148 170 150 172
-	200 3 65 66 61 150 161 150 172 152 173
-	200 3 65 61 58 150 161 152 173 152 160
-	200 3 36 30 26 150 172 148 170 147 167
-	200 3 36 26 29 150 172 147 167 148 164
-	200 3 36 29 35 150 172 148 164 150 161
-	200 3 35 28 31 150 161 152 160 152 173
-	200 3 35 31 36 150 161 152 173 150 172
-	200 3 9 3 0 150 161 148 164 147 167
-	200 3 9 0 4 150 161 147 167 148 170
-	200 3 9 4 10 150 161 148 170 150 172
-	200 3 9 10 5 150 161 150 172 152 173
-	200 3 9 5 2 150 161 152 173 152 160
\ No newline at end of file
diff --git a/components/prop/prsrhtr4.pie b/components/prop/prsrhtr4.pie
deleted file mode 100644
index f757e85..0000000
--- a/components/prop/prsrhtr4.pie
+++ /dev/null
@@ -1,119 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 38 
-	-38 0 -56 
-	-41 0 -27 
-	-19 0 -27 
-	-19 0 -56 
-	-41 8 -18 
-	-19 8 -18 
-	-41 20 -18 
-	-19 20 -18 
-	-41 28 -27 
-	-19 28 -27 
-	-38 25 -55 
-	-19 25 -55 
-	-35 6 -74 
-	-36 0 -67 
-	-19 0 -67 
-	-19 6 -74 
-	-36 22 -67 
-	-35 16 -74 
-	-19 16 -74 
-	-19 22 -67 
-	-19 0 18 
-	-19 29 18 
-	-19 29 -9 
-	-19 0 -9 
-	-42 0 18 
-	-42 0 -9 
-	-42 20 -18 
-	-42 29 -9 
-	-42 29 18 
-	-42 8 -18 
-	-42 29 46 
-	-42 0 46 
-	-42 20 54 
-	-42 8 54 
-	-19 0 46 
-	-19 20 54 
-	-19 29 46 
-	-19 8 54
-POLYGONS 74
-	200 3 3 2 1 35 56 35 62 43 62
-	200 3 3 1 0 35 56 43 62 43 56
-	200 3 2 5 4 4 84 8 84 8 73
-	200 3 2 4 1 4 84 8 73 4 73
-	200 3 5 7 6 8 84 13 84 13 73
-	200 3 5 6 4 8 84 13 73 8 73
-	200 3 7 9 8 13 84 17 84 17 73
-	200 3 7 8 6 13 84 17 73 13 73
-	200 3 0 1 8 97 150 97 173 113 173
-	200 3 0 8 10 97 150 113 173 113 150
-	200 3 9 2 3 113 173 97 173 97 150
-	200 3 9 3 11 113 173 97 150 113 150
-	200 3 1 4 6 97 163 102 156 108 156
-	200 3 1 6 8 97 163 108 156 113 162
-	200 3 7 5 2 108 156 102 156 97 163
-	200 3 7 2 9 108 156 97 163 113 162
-	200 3 15 14 13 8 84 5 84 5 73
-	200 3 15 13 12 8 84 5 73 8 73
-	200 3 19 18 17 17 84 13 84 13 73
-	200 3 19 17 16 17 84 13 73 17 73
-	200 3 18 15 12 13 84 8 84 8 73
-	200 3 18 12 17 13 84 8 73 13 73
-	200 3 10 16 13 113 175 113 165 97 165
-	200 3 10 13 0 113 175 97 165 97 175
-	200 3 16 17 12 113 165 108 159 101 159
-	200 3 16 12 13 113 165 101 159 97 165
-	200 3 14 19 11 97 165 113 165 113 175
-	200 3 14 11 3 97 165 113 175 97 175
-	200 3 15 18 19 101 159 108 159 113 165
-	200 3 15 19 14 101 159 113 165 97 165
-	200 3 11 19 16 13 214 13 197 0 197
-	200 3 11 16 10 13 214 0 197 0 214
-	200 3 14 3 0 35 56 35 62 43 62
-	200 3 14 0 13 35 56 43 62 43 56
-	200 3 9 11 10 13 221 13 190 0 190
-	200 3 9 10 8 13 221 0 190 0 221
-	200 3 23 22 21 12 142 0 142 0 160
-	200 3 23 21 20 12 142 0 160 12 160
-	200 3 5 7 22 9 137 3 137 0 142
-	200 3 5 22 23 9 137 0 142 12 142
-	200 3 27 26 25 0 142 3 137 12 142
-	200 3 27 25 24 0 142 12 142 12 160
-	200 3 24 28 27 12 160 0 160 0 142
-	200 3 27 26 29 0 142 3 137 9 137
-	200 3 27 29 25 0 142 9 137 12 142
-	200 3 24 25 23 94 136 94 98 88 98
-	200 3 24 23 20 94 136 88 98 88 136
-	200 3 25 29 5 94 124 94 110 88 110
-	200 3 25 5 23 94 124 88 110 88 124
-	200 3 29 26 7 10 186 10 175 0 175
-	200 3 29 7 5 10 186 0 175 0 186
-	200 3 26 27 22 11 98 11 105 0 105
-	200 3 26 22 7 11 98 0 105 0 98
-	200 3 27 28 21 11 105 11 123 0 123
-	200 3 27 21 22 11 105 0 123 0 105
-	200 3 31 30 28 12 142 0 142 0 160
-	200 3 31 28 24 12 142 0 160 12 160
-	200 3 33 32 30 9 137 3 137 0 142
-	200 3 33 30 31 9 137 0 142 12 142
-	200 3 36 35 34 0 142 3 137 12 142
-	200 3 36 34 20 0 142 12 142 12 160
-	200 3 20 21 36 12 160 0 160 0 142
-	200 3 36 35 37 0 142 3 137 9 137
-	200 3 36 37 34 0 142 9 137 12 142
-	200 3 20 34 31 94 136 94 98 88 98
-	200 3 20 31 24 94 136 88 98 88 136
-	200 3 34 37 33 94 124 94 110 88 110
-	200 3 34 33 31 94 124 88 110 88 124
-	200 3 37 35 32 10 186 10 175 0 175
-	200 3 37 32 33 10 186 0 175 0 186
-	200 3 35 36 30 11 98 11 105 0 105
-	200 3 35 30 32 11 98 0 105 0 98
-	200 3 36 21 28 11 105 11 123 0 123
-	200 3 36 28 30 11 105 0 123 0 105
\ No newline at end of file
diff --git a/components/prop/prsrtrk4.pie b/components/prop/prsrtrk4.pie
deleted file mode 100644
index 86395ed..0000000
--- a/components/prop/prsrtrk4.pie
+++ /dev/null
@@ -1,89 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 28 
-	-42 7 -60 
-	-42 20 -60 
-	-42 29 -49 
-	-42 0 -50 
-	-42 29 -12 
-	-42 0 -12 
-	-42 20 -1 
-	-42 7 -1 
-	-20 7 -60 
-	-20 0 -50 
-	-20 29 -12 
-	-20 29 -49 
-	-20 20 -60 
-	-20 0 -12 
-	-20 20 -1 
-	-20 7 -1 
-	-42 29 9 
-	-42 0 8 
-	-42 29 47 
-	-42 0 47 
-	-42 20 57 
-	-42 7 57 
-	-20 0 8 
-	-20 29 47 
-	-20 29 9 
-	-20 0 47 
-	-20 20 57 
-	-20 7 57
-POLYGONS 54
-	200 3 3 2 1 12 165 0 165 4 171
-	200 3 3 1 0 12 165 4 171 9 171
-	200 3 5 4 2 12 143 0 143 0 165
-	200 3 5 2 3 12 143 0 165 12 165
-	200 3 7 6 4 8 137 4 137 0 143
-	200 3 7 4 5 8 137 0 143 12 143
-	200 3 11 10 9 0 165 0 143 12 165
-	200 3 11 9 8 0 165 12 165 9 171
-	200 3 8 12 11 9 171 4 171 0 165
-	200 3 10 14 13 0 143 4 137 12 143
-	200 3 10 13 9 0 143 12 143 12 165
-	200 3 10 14 15 0 143 4 137 8 137
-	200 3 10 15 13 0 143 8 137 12 143
-	200 3 8 9 3 94 125 94 109 88 109
-	200 3 8 3 0 94 125 88 109 88 125
-	200 3 9 13 5 94 136 94 98 88 98
-	200 3 9 5 3 94 136 88 98 88 136
-	200 3 13 15 7 94 124 94 110 88 110
-	200 3 13 7 5 94 124 88 110 88 124
-	200 3 14 10 4 11 98 11 105 0 105
-	200 3 14 4 6 11 98 0 105 0 98
-	200 3 10 11 2 11 105 11 129 0 129
-	200 3 10 2 4 11 105 0 129 0 105
-	200 3 11 12 1 11 129 11 136 0 136
-	200 3 11 1 2 11 129 0 136 0 129
-	200 3 12 8 0 10 175 10 186 0 186
-	200 3 12 0 1 10 175 0 186 0 175
-	200 3 17 16 6 12 165 0 165 4 171
-	200 3 17 6 7 12 165 4 171 9 171
-	200 3 19 18 16 12 143 0 143 0 165
-	200 3 19 16 17 12 143 0 165 12 165
-	200 3 21 20 18 8 137 4 137 0 143
-	200 3 21 18 19 8 137 0 143 12 143
-	200 3 24 23 22 0 165 0 143 12 165
-	200 3 24 22 15 0 165 12 165 9 171
-	200 3 15 14 24 9 171 4 171 0 165
-	200 3 23 26 25 0 143 4 137 12 143
-	200 3 23 25 22 0 143 12 143 12 165
-	200 3 23 26 27 0 143 4 137 8 137
-	200 3 23 27 25 0 143 8 137 12 143
-	200 3 15 22 17 94 125 94 109 88 109
-	200 3 15 17 7 94 125 88 109 88 125
-	200 3 22 25 19 94 136 94 98 88 98
-	200 3 22 19 17 94 136 88 98 88 136
-	200 3 25 27 21 94 124 94 110 88 110
-	200 3 25 21 19 94 124 88 110 88 124
-	200 3 27 26 20 10 186 10 175 0 175
-	200 3 27 20 21 10 186 0 175 0 186
-	200 3 26 23 18 11 98 11 105 0 105
-	200 3 26 18 20 11 98 0 105 0 98
-	200 3 23 24 16 11 105 11 129 0 129
-	200 3 23 16 18 11 105 0 129 0 105
-	200 3 24 14 6 11 129 11 136 0 136
-	200 3 24 6 16 11 129 0 136 0 129
\ No newline at end of file
diff --git a/components/prop/prsrvtl1.pie b/components/prop/prsrvtl1.pie
deleted file mode 100644
index 3d2362e..0000000
--- a/components/prop/prsrvtl1.pie
+++ /dev/null
@@ -1,90 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-15-droid-hubs.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 32 
-	-50 16 -8 
-	-46 7 -28 
-	-34 15 -24 
-	-36 20 -12 
-	-56 8 -18 
-	-56 28 -15 
-	-62 20 -25 
-	-42 33 -18 
-	-40 27 -31 
-	-52 20 -35 
-	-41 29 8 
-	-68 23 19 
-	-75 23 37 
-	-50 41 51 
-	-41 29 45 
-	13 46 4 
-	0 46 10 
-	-13 46 4 
-	-19 46 -8 
-	-13 46 -22 
-	0 46 -28 
-	13 46 -22 
-	19 46 -8 
-	-28 57 21 
-	-28 57 58 
-	-20 73 66 
-	-20 73 46 
-	0 44 52 
-	0 23 52 
-	-10 33 52 
-	-10 33 48 
-	0 23 42
-POLYGONS 51
-	200 3 0 1 2 178 1 178 21 190 17
-	200 3 0 2 3 178 1 190 17 190 5
-	200 3 3 2 1 190 5 190 17 178 21
-	200 3 3 1 0 190 5 178 21 178 1
-	200 3 0 4 1 178 1 170 11 178 21
-	200 3 1 4 0 178 21 170 11 178 1
-	200 3 4 0 5 107 56 125 56 125 42
-	200 3 4 5 6 107 56 125 42 107 42
-	200 3 6 5 0 107 42 125 42 125 56
-	200 3 6 0 4 107 42 125 56 107 56
-	200 3 0 3 7 107 56 125 56 125 42
-	200 3 0 7 5 107 56 125 42 107 42
-	200 3 5 7 3 107 42 125 42 125 56
-	200 3 5 3 0 107 42 125 56 107 56
-	200 3 3 2 8 125 56 107 56 107 42
-	200 3 3 8 7 125 56 107 42 125 42
-	200 3 7 8 2 125 42 107 42 107 56
-	200 3 7 2 3 125 42 107 56 125 56
-	200 3 2 1 9 125 56 107 56 107 42
-	200 3 2 9 8 125 56 107 42 125 42
-	200 3 8 9 1 125 42 107 42 107 56
-	200 3 8 1 2 125 42 107 56 125 56
-	200 3 1 4 6 125 56 107 56 107 42
-	200 3 1 6 9 125 56 107 42 125 42
-	200 3 9 6 4 125 42 107 42 107 56
-	200 3 9 4 1 125 42 107 56 125 56
-	200 3 6 5 7 170 11 178 1 190 5
-	200 3 6 7 8 170 11 190 5 190 17
-	200 3 8 7 5 190 17 190 5 178 1
-	200 3 8 5 6 190 17 178 1 170 11
-	200 3 6 8 9 170 11 190 17 178 21
-	200 3 9 8 6 178 21 190 17 170 11
-	200 3 13 12 11 0 217 9 194 21 201
-	200 3 13 11 10 0 217 21 201 28 225
-	200 3 11 12 14 21 201 7 194 1 225
-	200 3 11 14 10 21 201 1 225 29 225
-	200 3 13 14 12 0 99 0 92 28 99
-	200 3 18 17 16 193 20 199 7 212 1
-	200 3 18 16 15 193 20 212 1 225 7
-	200 3 20 19 18 212 39 199 33 193 20
-	200 3 20 18 15 212 39 193 20 225 7
-	200 3 22 21 20 231 20 225 33 212 39
-	200 3 22 20 15 231 20 212 39 225 7
-	200 3 23 24 25 0 179 32 179 32 148
-	200 3 23 25 26 0 179 32 148 0 148
-	200 3 26 25 24 0 148 32 148 32 179
-	200 3 26 24 23 0 148 32 179 0 179
-	200 3 29 28 27 236 112 237 112 237 111
-	200 3 30 29 27 115 61 115 56 108 56
-	200 3 30 31 28 115 61 122 66 122 56
-	200 3 30 28 29 115 61 122 56 115 56
\ No newline at end of file
diff --git a/components/prop/prsrwhl1.pie b/components/prop/prsrwhl1.pie
deleted file mode 100644
index 07b8a32..0000000
--- a/components/prop/prsrwhl1.pie
+++ /dev/null
@@ -1,380 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 134 
-	-25 0 12 
-	-25 16 -1 
-	-25 8 -1 
-	-25 1 7 
-	-25 1 16 
-	-25 8 24 
-	-25 16 24 
-	-25 12 -2 
-	-25 12 25 
-	-25 4 2 
-	-25 4 21 
-	-43 8 -1 
-	-43 4 2 
-	-43 1 7 
-	-43 0 12 
-	-43 1 16 
-	-43 4 21 
-	-43 8 24 
-	-43 12 -2 
-	-43 12 25 
-	-43 16 -1 
-	-43 16 24 
-	-24 29 10 
-	-44 29 10 
-	-44 12 10 
-	-24 7 10 
-	-25 0 41 
-	-25 16 53 
-	-25 8 53 
-	-25 1 46 
-	-25 1 36 
-	-25 8 29 
-	-25 16 29 
-	-25 12 54 
-	-25 12 28 
-	-25 4 51 
-	-25 4 32 
-	-43 8 53 
-	-43 4 51 
-	-43 1 46 
-	-43 0 41 
-	-43 1 36 
-	-43 4 32 
-	-43 8 29 
-	-43 12 54 
-	-43 12 28 
-	-43 16 53 
-	-43 16 29 
-	-24 29 45 
-	-44 29 45 
-	-24 8 57 
-	-44 8 57 
-	-24 21 56 
-	-44 21 56 
-	-44 12 45 
-	-24 7 45 
-	-25 0 -15 
-	-25 13 -25 
-	-25 7 -25 
-	-25 1 -20 
-	-25 1 -11 
-	-25 7 -6 
-	-25 13 -6 
-	-25 10 -26 
-	-25 10 -5 
-	-25 3 -23 
-	-25 3 -8 
-	-43 7 -25 
-	-43 3 -23 
-	-43 1 -20 
-	-43 0 -15 
-	-43 1 -11 
-	-43 3 -8 
-	-43 7 -6 
-	-43 10 -26 
-	-43 10 -5 
-	-43 13 -25 
-	-43 13 -6 
-	-25 0 -41 
-	-25 13 -50 
-	-25 7 -50 
-	-25 1 -45 
-	-25 1 -36 
-	-25 7 -31 
-	-25 13 -31 
-	-25 10 -51 
-	-25 10 -30 
-	-25 3 -48 
-	-25 3 -33 
-	-42 7 -50 
-	-42 3 -48 
-	-42 1 -45 
-	-42 0 -41 
-	-42 1 -36 
-	-42 3 -33 
-	-42 7 -31 
-	-42 10 -51 
-	-42 10 -30 
-	-42 13 -50 
-	-42 13 -31 
-	-25 0 -66 
-	-25 13 -75 
-	-25 7 -75 
-	-25 1 -70 
-	-25 1 -61 
-	-25 7 -56 
-	-25 13 -56 
-	-25 10 -76 
-	-25 10 -55 
-	-25 3 -73 
-	-25 3 -58 
-	-41 7 -75 
-	-41 3 -73 
-	-41 1 -70 
-	-41 0 -66 
-	-41 1 -61 
-	-41 3 -58 
-	-41 7 -56 
-	-41 10 -76 
-	-41 10 -55 
-	-41 13 -75 
-	-41 13 -56 
-	-24 7 -70 
-	-24 25 -69 
-	-24 9 -78 
-	-42 25 -69 
-	-42 12 -70 
-	-41 9 -78 
-	-24 29 -17 
-	-24 7 -17 
-	-44 29 -17 
-	-44 12 -17 
-	-24 19 -75 
-	-41 19 -75
-POLYGONS 239
-	200 3 12 11 2 27 52 21 52 21 53
-	200 3 12 2 9 27 52 21 53 27 53
-	200 3 13 12 9 27 52 21 52 21 53
-	200 3 13 9 3 27 52 21 53 27 53
-	200 3 14 13 3 27 52 21 52 21 53
-	200 3 14 3 0 27 52 21 53 27 53
-	200 3 15 14 0 27 52 21 52 21 53
-	200 3 15 0 4 27 52 21 53 27 53
-	200 3 16 15 4 27 52 21 52 21 53
-	200 3 16 4 10 27 52 21 53 27 53
-	200 3 17 16 10 27 52 21 52 21 53
-	200 3 17 10 5 27 52 21 53 27 53
-	200 3 11 18 7 27 52 21 52 21 53
-	200 3 11 7 2 27 52 21 53 27 53
-	200 3 19 17 5 27 52 21 52 21 53
-	200 3 19 5 8 27 52 21 53 27 53
-	200 3 18 20 1 27 52 21 52 21 53
-	200 3 18 1 7 27 52 21 53 27 53
-	200 3 21 19 8 27 52 21 52 21 53
-	200 3 21 8 6 27 52 21 53 27 53
-	200 3 12 19 18 150 161 154 174 154 159
-	200 3 12 18 11 150 161 154 159 152 160
-	200 3 14 19 12 147 167 154 174 150 161
-	200 3 14 12 13 147 167 150 161 148 164
-	200 3 15 16 17 148 170 150 172 152 173
-	200 3 15 17 19 148 170 152 173 154 174
-	200 3 15 19 14 148 170 154 174 147 167
-	200 3 38 35 28 27 52 27 53 21 53
-	200 3 38 28 37 27 52 21 53 21 52
-	200 3 39 29 35 27 52 27 53 21 53
-	200 3 39 35 38 27 52 21 53 21 52
-	200 3 40 26 29 27 52 27 53 21 53
-	200 3 40 29 39 27 52 21 53 21 52
-	200 3 41 30 26 27 52 27 53 21 53
-	200 3 41 26 40 27 52 21 53 21 52
-	200 3 42 36 30 27 52 27 53 21 53
-	200 3 42 30 41 27 52 21 53 21 52
-	200 3 43 31 36 27 52 27 53 21 53
-	200 3 43 36 42 27 52 21 53 21 52
-	200 3 37 28 33 27 52 27 53 21 53
-	200 3 37 33 44 27 52 21 53 21 52
-	200 3 45 34 31 27 52 27 53 21 53
-	200 3 45 31 43 27 52 21 53 21 52
-	200 3 44 33 27 27 52 27 53 21 53
-	200 3 44 27 46 27 52 21 53 21 52
-	200 3 47 32 34 27 52 27 53 21 53
-	200 3 47 34 45 27 52 21 53 21 52
-	200 3 38 37 44 150 161 152 160 154 159
-	200 3 38 44 45 150 161 154 159 154 174
-	200 3 40 39 38 147 167 148 164 150 161
-	200 3 40 38 45 147 167 150 161 154 174
-	200 3 41 40 45 148 170 147 167 154 174
-	200 3 41 45 43 148 170 154 174 152 173
-	200 3 41 43 42 148 170 152 173 150 172
-	200 3 52 50 51 1 199 1 204 12 204
-	200 3 52 51 53 1 199 12 204 12 199
-	200 3 53 51 50 12 199 12 204 1 204
-	200 3 53 50 52 12 199 1 204 1 199
-	200 3 49 53 51 12 187 12 199 12 204
-	200 3 49 51 54 12 187 12 204 1 195
-	200 3 54 51 53 1 195 12 204 12 199
-	200 3 54 53 49 1 195 12 199 12 187
-	200 3 50 52 48 1 204 1 199 1 187
-	200 3 50 48 55 1 204 1 187 12 196
-	200 3 55 48 52 12 196 1 187 1 199
-	200 3 55 52 50 12 196 1 199 1 204
-	200 3 23 49 54 12 187 12 224 1 224
-	200 3 23 54 24 12 187 1 224 1 187
-	200 3 24 54 49 1 187 1 224 12 224
-	200 3 24 49 23 1 187 12 224 12 187
-	200 3 22 48 49 1 187 1 224 12 224
-	200 3 22 49 23 1 187 12 224 12 187
-	200 3 23 49 48 12 187 12 224 1 224
-	200 3 23 48 22 12 187 1 224 1 187
-	200 3 48 22 25 1 224 1 187 12 187
-	200 3 48 25 55 1 224 12 187 12 224
-	200 3 55 25 22 12 224 12 187 1 187
-	200 3 55 22 48 12 224 1 187 1 224
-	200 3 47 45 44 156 173 154 174 154 159
-	200 3 47 44 46 156 173 154 159 156 160
-	200 3 20 18 19 156 160 154 159 154 174
-	200 3 20 19 21 156 160 154 174 156 173
-	200 3 48 52 53 1 187 1 199 12 199
-	200 3 48 53 49 1 187 12 199 12 187
-	200 3 49 53 52 12 187 12 199 1 199
-	200 3 49 52 48 12 187 1 199 1 187
-	200 3 68 67 58 27 52 21 52 21 53
-	200 3 68 58 65 27 52 21 53 27 53
-	200 3 69 68 65 27 52 21 52 21 53
-	200 3 69 65 59 27 52 21 53 27 53
-	200 3 70 69 59 27 52 21 52 21 53
-	200 3 70 59 56 27 52 21 53 27 53
-	200 3 71 70 56 27 52 21 52 21 53
-	200 3 71 56 60 27 52 21 53 27 53
-	200 3 72 71 60 27 52 21 52 21 53
-	200 3 72 60 66 27 52 21 53 27 53
-	200 3 73 72 66 27 52 21 52 21 53
-	200 3 73 66 61 27 52 21 53 27 53
-	200 3 67 74 63 27 52 21 52 21 53
-	200 3 67 63 58 27 52 21 53 27 53
-	200 3 75 73 61 27 52 21 52 21 53
-	200 3 75 61 64 27 52 21 53 27 53
-	200 3 74 76 57 27 52 21 52 21 53
-	200 3 74 57 63 27 52 21 53 27 53
-	200 3 77 75 64 27 52 21 52 21 53
-	200 3 77 64 62 27 52 21 53 27 53
-	200 3 113 112 109 27 52 21 52 21 53
-	200 3 113 109 103 27 52 21 53 27 53
-	200 3 90 89 80 27 52 21 52 21 53
-	200 3 90 80 87 27 52 21 53 27 53
-	200 3 91 90 87 27 52 21 52 21 53
-	200 3 91 87 81 27 52 21 53 27 53
-	200 3 92 91 81 27 52 21 52 21 53
-	200 3 92 81 78 27 52 21 53 27 53
-	200 3 93 92 78 27 52 21 52 21 53
-	200 3 93 78 82 27 52 21 53 27 53
-	200 3 94 93 82 27 52 21 52 21 53
-	200 3 94 82 88 27 52 21 53 27 53
-	200 3 95 94 88 27 52 21 52 21 53
-	200 3 95 88 83 27 52 21 53 27 53
-	200 3 89 96 85 27 52 21 52 21 53
-	200 3 89 85 80 27 52 21 53 27 53
-	200 3 97 95 83 27 52 21 52 21 53
-	200 3 97 83 86 27 52 21 53 27 53
-	200 3 96 98 79 27 52 21 52 21 53
-	200 3 96 79 85 27 52 21 53 27 53
-	200 3 99 97 86 27 52 21 52 21 53
-	200 3 99 86 84 27 52 21 53 27 53
-	200 3 112 111 102 27 52 21 52 21 53
-	200 3 112 102 109 27 52 21 53 27 53
-	200 3 114 113 103 27 52 21 52 21 53
-	200 3 114 103 100 27 52 21 53 27 53
-	200 3 115 114 100 27 52 21 52 21 53
-	200 3 115 100 104 27 52 21 53 27 53
-	200 3 116 115 104 27 52 21 52 21 53
-	200 3 116 104 110 27 52 21 53 27 53
-	200 3 117 116 110 27 52 21 52 21 53
-	200 3 117 110 105 27 52 21 53 27 53
-	200 3 111 118 107 27 52 21 52 21 53
-	200 3 111 107 102 27 52 21 53 27 53
-	200 3 119 117 105 27 52 21 52 21 53
-	200 3 119 105 108 27 52 21 53 27 53
-	200 3 118 120 101 27 52 21 52 21 53
-	200 3 118 101 107 27 52 21 53 27 53
-	200 3 121 119 108 27 52 21 52 21 53
-	200 3 121 108 106 27 52 21 53 27 53
-	200 3 121 120 118 156 173 156 160 154 159
-	200 3 121 118 119 156 173 154 159 154 174
-	200 3 112 119 118 150 161 154 174 154 159
-	200 3 112 118 111 150 161 154 159 152 160
-	200 3 114 119 112 147 167 154 174 150 161
-	200 3 114 112 113 147 167 150 161 148 164
-	200 3 99 98 96 156 173 156 160 154 159
-	200 3 99 96 97 156 173 154 159 154 174
-	200 3 90 97 96 150 161 154 174 154 159
-	200 3 90 96 89 150 161 154 159 152 160
-	200 3 92 97 90 147 167 154 174 150 161
-	200 3 92 90 91 147 167 150 161 148 164
-	200 3 115 116 117 148 170 150 172 152 173
-	200 3 115 117 119 148 170 152 173 154 174
-	200 3 115 119 114 148 170 154 174 147 167
-	200 3 93 94 95 148 170 150 172 152 173
-	200 3 93 95 97 148 170 152 173 154 174
-	200 3 93 97 92 148 170 154 174 147 167
-	200 3 77 76 74 156 173 156 160 154 159
-	200 3 77 74 75 156 173 154 159 154 174
-	200 3 68 75 74 150 161 154 174 154 159
-	200 3 68 74 67 150 161 154 159 152 160
-	200 3 70 75 68 147 167 154 174 150 161
-	200 3 70 68 69 147 167 150 161 148 164
-	200 3 71 72 73 148 170 150 172 152 173
-	200 3 71 73 75 148 170 152 173 154 174
-	200 3 71 75 70 148 170 154 174 147 167
-	200 3 83 88 87 152 173 150 172 150 161
-	200 3 83 87 80 152 173 150 161 152 160
-	200 3 87 88 82 150 161 150 172 148 170
-	200 3 87 82 78 150 161 148 170 147 167
-	200 3 87 78 81 150 161 147 167 148 164
-	200 3 105 110 102 152 173 150 172 152 160
-	200 3 105 102 107 152 173 152 160 154 159
-	200 3 102 110 103 152 160 150 172 148 164
-	200 3 102 103 109 152 160 148 164 150 161
-	200 3 103 110 104 148 164 150 172 148 170
-	200 3 103 104 100 148 164 148 170 147 167
-	200 3 125 130 131 12 224 12 187 1 187
-	200 3 125 131 126 12 224 1 187 1 224
-	200 3 126 131 130 1 224 1 187 12 187
-	200 3 126 130 125 1 224 12 187 12 224
-	200 3 127 124 132 12 211 1 211 1 220
-	200 3 127 132 133 12 211 1 220 12 220
-	200 3 133 132 124 12 220 1 220 1 211
-	200 3 133 124 127 12 220 1 211 12 211
-	200 3 123 125 133 1 224 12 224 12 220
-	200 3 123 133 132 1 224 12 220 1 220
-	200 3 132 133 125 1 220 12 220 12 224
-	200 3 132 125 123 1 220 12 224 1 224
-	200 3 128 123 122 1 187 1 224 12 224
-	200 3 128 122 129 1 187 12 224 12 187
-	200 3 129 122 123 12 187 12 224 1 224
-	200 3 129 123 128 12 187 1 224 1 187
-	200 3 123 128 130 1 224 1 187 12 187
-	200 3 123 130 125 1 224 12 187 12 224
-	200 3 125 130 128 12 224 12 187 1 187
-	200 3 125 128 123 12 224 1 187 1 224
-	200 3 132 124 122 12 220 12 211 8 210
-	200 3 132 122 123 12 220 8 210 6 223
-	200 3 123 122 124 6 223 8 210 12 211
-	200 3 123 124 132 6 223 12 211 12 220
-	200 3 133 125 126 12 220 6 223 8 210
-	200 3 133 126 127 12 220 8 210 12 211
-	200 3 127 126 125 12 211 8 210 6 223
-	200 3 127 125 133 12 211 6 223 12 220
-	200 3 130 23 24 12 196 12 223 1 223
-	200 3 130 24 131 12 196 1 223 1 196
-	200 3 131 24 23 1 196 1 223 12 223
-	200 3 131 23 130 1 196 12 223 12 196
-	200 3 128 22 23 1 196 1 223 12 223
-	200 3 128 23 130 1 196 12 223 12 196
-	200 3 130 23 22 12 196 12 223 1 223
-	200 3 130 22 128 12 196 1 223 1 196
-	200 3 129 25 22 12 196 12 223 1 223
-	200 3 129 22 128 12 196 1 223 1 196
-	200 3 128 22 25 1 196 1 223 12 223
-	200 3 128 25 129 1 196 12 223 12 196
-	200 3 65 66 60 150 161 150 172 148 170
-	200 3 65 60 56 150 161 148 170 147 167
-	200 3 65 56 59 150 161 147 167 148 164
-	200 3 65 58 61 150 161 152 160 152 173
-	200 3 65 61 66 150 161 152 173 150 172
-	200 3 36 35 29 150 172 150 161 148 164
-	200 3 36 29 26 150 172 148 164 147 167
-	200 3 36 26 30 150 172 147 167 148 170
-	200 3 35 36 31 150 161 150 172 152 173
-	200 3 35 31 28 150 161 152 173 152 160
-	200 3 9 10 4 150 161 150 172 148 170
-	200 3 9 4 0 150 161 148 170 147 167
-	200 3 9 0 3 150 161 147 167 148 164
-	200 3 9 2 5 150 161 152 160 152 173
-	200 3 9 5 10 150 161 152 173 150 172
\ No newline at end of file
diff --git a/components/weapons/cy_can.pie b/components/weapons/cy_can.pie
deleted file mode 100644
index 4599720..0000000
--- a/components/weapons/cy_can.pie
+++ /dev/null
@@ -1,47 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 16 
-	-6 -6 -6 
-	-6 6 -6 
-	-7 9 9 
-	-7 -9 9 
-	6 9 -15 
-	6 12 10 
-	6 -12 10 
-	6 -9 -15 
-	4 0 -36 
-	0 5 -36 
-	-4 0 -36 
-	0 -4 -36 
-	4 0 -15 
-	0 5 -11 
-	-4 0 -8 
-	0 -4 -11
-POLYGONS 22
-	200 3 3 2 1 16 19 2 19 4 0
-	200 3 3 1 0 16 19 4 0 13 0
-	200 3 1 2 5 5 21 24 20 25 27
-	200 3 1 5 4 5 21 25 27 0 27
-	200 3 7 4 5 2 19 14 19 16 0
-	200 3 7 5 6 2 19 16 0 0 0
-	200 3 0 1 4 4 29 14 29 16 37
-	200 3 0 4 7 4 29 16 37 2 37
-	200 3 2 3 6 2 38 16 38 18 47
-	200 3 2 6 5 2 38 18 47 0 47
-	200 3 3 0 7 24 20 5 21 0 27
-	200 3 3 7 6 24 20 0 27 25 27
-	200 3 11 10 9 12 60 16 60 16 64
-	200 3 11 9 8 12 60 16 64 12 64
-	200 3 8 9 13 13 59 18 59 18 49
-	200 3 8 13 12 13 59 18 49 13 50
-	200 3 9 10 14 13 59 18 59 18 48
-	200 3 9 14 13 13 59 18 48 13 49
-	200 3 10 11 15 13 59 18 59 18 49
-	200 3 10 15 14 13 59 18 49 13 48
-	200 3 11 8 12 13 59 18 59 18 50
-	200 3 11 12 15 13 59 18 50 13 49
-CONNECTORS 1
-	0 -37 0
diff --git a/components/weapons/cy_con.pie b/components/weapons/cy_con.pie
deleted file mode 100644
index bcd68c4..0000000
--- a/components/weapons/cy_con.pie
+++ /dev/null
@@ -1,29 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 10 
-	21 0 -40 
-	29 7 -18 
-	29 -7 -25 
-	40 0 -29 
-	29 3 17 
-	0 7 -18 
-	8 0 -40 
-	0 -7 -25 
-	-10 0 -29 
-	0 3 17
-POLYGONS 12
-	200 3 2 1 0 87 250 87 256 71 253
-	200 3 3 0 1 93 240 102 248 93 248
-	200 3 1 4 3 102 256 87 256 87 250
-	200 3 2 3 4 75 51 74 40 86 51
-	200 3 2 0 3 86 48 75 48 75 41
-	200 3 1 2 4 80 242 72 244 91 250
-	200 3 7 6 5 87 250 71 253 87 256
-	200 3 8 5 6 93 240 93 248 102 248
-	200 3 5 8 9 102 256 87 250 87 256
-	200 3 7 9 8 75 51 86 51 74 40
-	200 3 7 8 6 86 48 75 41 75 48
-	200 3 5 9 7 80 242 91 250 72 244
\ No newline at end of file
diff --git a/components/weapons/cy_flame.pie b/components/weapons/cy_flame.pie
deleted file mode 100644
index df93cd3..0000000
--- a/components/weapons/cy_flame.pie
+++ /dev/null
@@ -1,47 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 16 
-	-3 -9 -12 
-	0 -13 -12 
-	0 -13 -21 
-	-3 -9 -21 
-	3 -9 -12 
-	3 -9 -21 
-	0 -6 -12 
-	0 -6 -21 
-	-4 6 -12 
-	-4 -14 -12 
-	2 -14 -12 
-	2 6 -12 
-	2 6 5 
-	-4 6 5 
-	-4 -14 5 
-	2 -14 5
-POLYGONS 22
-	200 3 3 2 1 125 61 125 67 116 67
-	200 3 3 1 0 125 61 116 67 116 61
-	200 3 2 5 4 125 67 125 73 116 73
-	200 3 2 4 1 125 67 116 73 116 67
-	200 3 5 7 6 125 73 125 67 116 67
-	200 3 5 6 4 125 73 116 67 116 73
-	200 3 7 3 0 125 67 125 61 116 61
-	200 3 7 0 6 125 67 116 61 116 67
-	200 3 2 3 7 102 70 105 68 107 70
-	200 3 2 7 5 102 70 107 70 105 72
-	200 3 11 10 9 118 240 104 240 104 234
-	200 3 11 9 8 118 240 104 234 118 234
-	200 3 11 8 13 128 9 128 0 143 0
-	200 3 11 13 12 128 9 143 0 143 9
-	200 3 9 10 15 128 0 128 9 143 9
-	200 3 9 15 14 128 0 143 9 143 0
-	200 3 8 9 14 128 0 128 17 143 17
-	200 3 8 14 13 128 0 143 17 143 0
-	200 3 14 15 12 104 234 104 240 118 240
-	200 3 14 12 13 104 234 118 240 118 234
-	200 3 10 11 12 128 17 128 0 143 0
-	200 3 10 12 15 128 17 143 0 143 17
-CONNECTORS 1
-	0 -22 -9
diff --git a/components/weapons/cy_gren.pie b/components/weapons/cy_gren.pie
deleted file mode 100644
index c3646f6..0000000
--- a/components/weapons/cy_gren.pie
+++ /dev/null
@@ -1,41 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 12 
-	4 3 6 
-	-1 6 6 
-	-1 6 -17 
-	4 3 -17 
-	-7 3 6 
-	-7 3 -17 
-	-7 -3 6 
-	-7 -3 -17 
-	-1 -6 6 
-	-1 -6 -17 
-	4 -3 6 
-	4 -3 -17
-POLYGONS 20
-	200 3 3 2 1 127 70 127 68 142 68
-	200 3 3 1 0 127 70 142 68 142 70
-	200 3 2 5 4 127 68 127 70 142 70
-	200 3 2 4 1 127 68 142 70 142 68
-	200 3 5 7 6 127 70 127 73 142 73
-	200 3 5 6 4 127 70 142 73 142 70
-	200 3 7 9 8 127 73 127 75 142 75
-	200 3 7 8 6 127 73 142 75 142 73
-	200 3 9 11 10 127 75 127 73 142 73
-	200 3 9 10 8 127 75 142 73 142 75
-	200 3 11 3 0 127 73 127 70 142 70
-	200 3 11 0 10 127 73 142 70 142 73
-	200 3 7 3 11 158 31 164 35 164 31
-	200 3 7 11 9 158 31 164 31 161 29
-	200 3 7 5 2 158 31 158 35 161 37
-	200 3 7 2 3 158 31 161 37 164 35
-	200 3 0 6 8 47 188 56 183 51 181
-	200 3 0 8 10 47 188 51 181 47 183
-	200 3 0 1 4 47 188 51 191 56 188
-	200 3 0 4 6 47 188 56 188 56 183
-CONNECTORS 1
-	-1 -18 0
diff --git a/components/weapons/cy_gun.pie b/components/weapons/cy_gun.pie
deleted file mode 100644
index c406dad..0000000
--- a/components/weapons/cy_gun.pie
+++ /dev/null
@@ -1,25 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-14-droid-hubs.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 8 
-	-2 -14 5 
-	-2 -14 -25 
-	-2 6 -25 
-	-2 6 5 
-	-4 -2 -23 
-	4 -2 -23 
-	4 -2 0 
-	-4 -2 0
-POLYGONS 8
-	200 3 0 1 2 155 210 140 210 140 200
-	200 3 0 2 3 155 210 140 200 155 200
-	200 3 3 2 1 155 200 140 200 140 210
-	200 3 3 1 0 155 200 140 210 155 210
-	200 3 4 5 6 156 200 156 205 170 205
-	200 3 4 6 7 156 200 170 205 170 200
-	200 3 7 6 5 170 200 170 205 156 205
-	200 3 7 5 4 170 200 156 205 156 200
-CONNECTORS 1
-	-2 -26 2
diff --git a/components/weapons/cy_las.pie b/components/weapons/cy_las.pie
deleted file mode 100644
index 553c97e..0000000
--- a/components/weapons/cy_las.pie
+++ /dev/null
@@ -1,42 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 14 
-	-3 0 -7 
-	5 -4 -15 
-	5 -4 -31 
-	-3 0 -31 
-	5 5 -15 
-	5 5 -31 
-	-3 -4 -6 
-	-3 4 -6 
-	-3 8 6 
-	-3 -7 6 
-	6 7 -15 
-	6 10 7 
-	6 -9 7 
-	6 -6 -15
-POLYGONS 19
-	200 3 3 2 1 200 98 218 98 218 110
-	200 3 3 1 0 200 98 218 110 200 110
-	200 3 2 5 4 200 98 218 98 218 110
-	200 3 2 4 1 200 98 218 110 200 110
-	200 3 5 3 0 200 98 218 98 218 110
-	200 3 5 0 4 200 98 218 110 200 110
-	200 3 2 3 5 157 26 167 33 157 40
-	200 3 9 8 7 16 19 2 19 4 0
-	200 3 9 7 6 16 19 4 0 13 0
-	200 3 7 8 11 5 21 24 20 25 27
-	200 3 7 11 10 5 21 25 27 0 27
-	200 3 13 10 11 2 19 14 19 16 0
-	200 3 13 11 12 2 19 16 0 0 0
-	200 3 6 7 10 4 29 14 29 16 37
-	200 3 6 10 13 4 29 16 37 2 37
-	200 3 8 9 12 2 38 16 38 18 47
-	200 3 8 12 11 2 38 18 47 0 47
-	200 3 9 6 13 24 20 5 21 0 27
-	200 3 9 13 12 24 20 0 27 25 27
-CONNECTORS 1
-	1 -36 0
diff --git a/components/weapons/cy_miss.pie b/components/weapons/cy_miss.pie
deleted file mode 100644
index c7162c1..0000000
--- a/components/weapons/cy_miss.pie
+++ /dev/null
@@ -1,31 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 8 
-	5 -3 17 
-	-3 -3 17 
-	-3 4 17 
-	5 4 17 
-	5 -3 -26 
-	5 4 -26 
-	-3 4 -26 
-	-3 -3 -26
-POLYGONS 14
-	200 3 3 2 1 252 117 252 113 256 113
-	200 3 3 1 0 252 117 256 113 256 117
-	200 3 7 6 5 252 113 256 113 256 117
-	200 3 7 5 4 252 113 256 117 252 117
-	200 3 4 5 3 252 116 256 116 256 140
-	200 3 4 3 0 252 116 256 140 252 140
-	200 3 6 7 1 252 116 256 116 256 140
-	200 3 6 1 2 252 116 256 140 252 140
-	200 3 7 4 0 196 172 220 172 220 176
-	200 3 7 0 1 196 172 220 176 196 176
-	200 3 5 6 2 220 176 220 172 196 172
-	200 3 5 2 3 220 176 196 172 196 176
-	200 3 7 4 0 220 172 220 176 196 176
-	200 3 7 0 1 220 172 196 176 196 172
-CONNECTORS 1
-	0 -30 0
diff --git a/components/weapons/cy_rail.pie b/components/weapons/cy_rail.pie
deleted file mode 100644
index d22b637..0000000
--- a/components/weapons/cy_rail.pie
+++ /dev/null
@@ -1,45 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 14 
-	4 0 -40 
-	-1 -3 -40 
-	-1 -3 -10 
-	4 0 -14 
-	0 3 -40 
-	0 3 -10 
-	-2 -6 -9 
-	-2 6 -9 
-	-3 9 6 
-	-3 -9 6 
-	6 9 -15 
-	6 12 7 
-	6 -12 7 
-	6 -9 -15
-POLYGONS 24
-	200 3 0 1 2 158 49 152 49 152 67
-	200 3 0 2 3 158 49 152 67 158 64
-	200 3 3 2 1 158 64 152 67 152 49
-	200 3 3 1 0 158 64 152 49 158 49
-	200 3 1 4 5 158 49 152 49 152 67
-	200 3 1 5 2 158 49 152 67 158 67
-	200 3 2 5 4 158 67 152 67 152 49
-	200 3 2 4 1 158 67 152 49 158 49
-	200 3 4 0 3 158 49 152 49 152 64
-	200 3 4 3 5 158 49 152 64 158 67
-	200 3 5 3 0 158 67 152 64 152 49
-	200 3 5 0 4 158 67 152 49 158 49
-	200 3 9 8 7 16 19 2 19 4 0
-	200 3 9 7 6 16 19 4 0 13 0
-	200 3 7 8 11 5 21 24 20 25 27
-	200 3 7 11 10 5 21 25 27 0 27
-	200 3 13 10 11 2 19 14 19 16 0
-	200 3 13 11 12 2 19 16 0 0 0
-	200 3 6 7 10 4 29 14 29 16 37
-	200 3 6 10 13 4 29 16 37 2 37
-	200 3 8 9 12 2 38 16 38 18 47
-	200 3 8 12 11 2 38 18 47 0 47
-	200 3 9 6 13 24 20 5 21 0 27
-	200 3 9 13 12 24 20 0 27 25 27
\ No newline at end of file
diff --git a/components/weapons/cy_rep.pie b/components/weapons/cy_rep.pie
deleted file mode 100644
index ddcf741..0000000
--- a/components/weapons/cy_rep.pie
+++ /dev/null
@@ -1,88 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 29 
-	0 7 -4 
-	-3 0 -9 
-	-3 8 -19 
-	0 12 -15 
-	3 0 -9 
-	3 8 -19 
-	0 1 -32 
-	0 12 -24 
-	-3 8 -20 
-	3 8 -20 
-	-3 13 -25 
-	-3 18 -19 
-	-3 13 -15 
-	4 13 -25 
-	4 8 -20 
-	4 13 -15 
-	4 18 -19 
-	-5 -7 4 
-	-5 -7 -4 
-	-5 0 -8 
-	-5 0 8 
-	-5 7 -4 
-	-5 7 4 
-	4 -7 -4 
-	4 -7 4 
-	4 0 8 
-	4 0 -8 
-	4 7 4 
-	4 7 -4
-POLYGONS 50
-	200 3 0 1 2 36 187 31 187 31 181
-	200 3 0 2 3 36 187 31 181 36 181
-	200 3 3 2 1 36 181 31 181 31 187
-	200 3 3 1 0 36 181 31 187 36 187
-	200 3 1 4 5 31 187 31 187 31 181
-	200 3 1 5 2 31 187 31 181 31 181
-	200 3 2 5 4 31 181 31 181 31 187
-	200 3 2 4 1 31 181 31 187 31 187
-	200 3 4 0 3 31 187 36 187 36 181
-	200 3 4 3 5 31 187 36 181 31 181
-	200 3 5 3 0 31 181 36 181 36 187
-	200 3 5 0 4 31 181 36 187 31 187
-	200 3 6 7 8 34 181 36 187 31 187
-	200 3 8 7 6 31 187 36 187 34 181
-	200 3 6 8 9 34 181 31 187 31 187
-	200 3 9 8 6 31 187 31 187 34 181
-	200 3 6 9 7 34 181 31 187 36 187
-	200 3 7 9 6 36 187 31 187 34 181
-	200 3 8 12 11 202 234 202 224 192 224
-	200 3 8 11 10 202 234 192 224 192 234
-	200 3 16 15 14 192 224 202 224 202 234
-	200 3 16 14 13 192 224 202 234 192 234
-	200 3 13 14 8 2 177 0 177 0 191
-	200 3 13 8 10 2 177 0 191 2 191
-	200 3 14 15 12 0 177 4 177 4 191
-	200 3 14 12 8 0 177 4 191 0 191
-	200 3 15 16 11 4 177 6 177 6 191
-	200 3 15 11 12 4 177 6 191 4 191
-	200 3 16 13 10 6 177 2 177 2 191
-	200 3 16 10 11 6 177 2 191 6 191
-	200 3 20 19 18 202 229 192 229 195 234
-	200 3 20 18 17 202 229 195 234 199 234
-	200 3 20 22 21 202 229 199 224 195 224
-	200 3 20 21 19 202 229 195 224 192 229
-	200 3 26 25 24 192 229 202 229 199 234
-	200 3 26 24 23 192 229 199 234 195 234
-	200 3 25 26 28 202 229 192 229 195 224
-	200 3 25 28 27 202 229 195 224 199 224
-	200 3 25 27 22 3 177 6 177 6 191
-	200 3 25 22 20 3 177 6 191 3 191
-	200 3 27 28 21 6 177 6 177 6 191
-	200 3 27 21 22 6 177 6 191 6 191
-	200 3 28 26 19 6 177 3 177 3 191
-	200 3 28 19 21 6 177 3 191 6 191
-	200 3 26 23 18 3 177 0 177 0 191
-	200 3 26 18 19 3 177 0 191 3 191
-	200 3 23 24 17 0 177 0 177 0 191
-	200 3 23 17 18 0 177 0 191 0 191
-	200 3 24 25 20 0 177 3 177 3 191
-	200 3 24 20 17 0 177 3 191 0 191
-CONNECTORS 1
-	0 -33 1
diff --git a/components/weapons/cy_rkt.pie b/components/weapons/cy_rkt.pie
deleted file mode 100644
index 3de1c6d..0000000
--- a/components/weapons/cy_rkt.pie
+++ /dev/null
@@ -1,29 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-14-droid-hubs.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 8 
-	6 -11 10 
-	6 11 10 
-	6 11 -22 
-	6 -11 -22 
-	-6 -11 10 
-	-6 11 10 
-	-6 -11 -22 
-	-6 11 -22
-POLYGONS 12
-	200 3 3 2 1 106 186 102 186 102 199
-	200 3 3 1 0 106 186 102 199 106 199
-	200 3 5 4 0 112 186 112 197 118 197
-	200 3 5 0 1 112 186 118 197 118 186
-	200 3 4 6 3 102 199 102 186 106 186
-	200 3 4 3 0 102 199 106 186 106 199
-	200 3 6 7 2 106 197 106 186 112 186
-	200 3 6 2 3 106 197 112 186 112 197
-	200 3 5 7 6 90 198 90 186 94 186
-	200 3 5 6 4 90 198 94 186 94 198
-	200 3 7 5 1 90 186 90 198 94 198
-	200 3 7 1 2 90 186 94 198 94 186
-CONNECTORS 1
-	0 -24 6
diff --git a/components/weapons/cy_therm.pie b/components/weapons/cy_therm.pie
deleted file mode 100644
index b3991d0..0000000
--- a/components/weapons/cy_therm.pie
+++ /dev/null
@@ -1,47 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 16 
-	-5 -5 -12 
-	0 -10 -12 
-	0 -10 -22 
-	-5 -5 -22 
-	3 -5 -12 
-	3 -5 -22 
-	0 -1 -12 
-	0 -1 -22 
-	-5 6 -12 
-	-5 -14 -12 
-	3 -14 -12 
-	3 6 -12 
-	3 6 5 
-	-5 6 5 
-	-5 -14 5 
-	3 -14 5
-POLYGONS 22
-	200 3 3 2 1 237 173 233 173 233 165
-	200 3 3 1 0 237 173 233 165 237 165
-	200 3 2 5 4 233 173 229 173 229 165
-	200 3 2 4 1 233 173 229 165 233 165
-	200 3 5 7 6 229 173 233 173 233 165
-	200 3 5 6 4 229 173 233 165 229 165
-	200 3 7 3 0 233 173 237 173 237 165
-	200 3 7 0 6 233 173 237 165 233 165
-	200 3 2 3 7 102 70 105 68 107 70
-	200 3 2 7 5 102 70 107 70 105 72
-	200 3 11 10 9 0 192 0 176 8 176
-	200 3 11 9 8 0 192 8 176 8 192
-	200 3 11 8 13 0 184 0 176 16 176
-	200 3 11 13 12 0 184 16 176 16 184
-	200 3 9 10 15 0 176 0 184 16 184
-	200 3 9 15 14 0 176 16 184 16 176
-	200 3 8 9 14 232 237 252 237 252 249
-	200 3 8 14 13 232 237 252 249 232 249
-	200 3 14 15 12 8 176 0 176 0 192
-	200 3 14 12 13 8 176 0 192 8 192
-	200 3 10 11 12 252 237 232 237 232 249
-	200 3 10 12 15 252 237 232 249 252 249
-CONNECTORS 1
-	-1 -22 -6
diff --git a/components/weapons/cybody.pie b/components/weapons/cybody.pie
deleted file mode 100644
index 156e55b..0000000
--- a/components/weapons/cybody.pie
+++ /dev/null
@@ -1,47 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-14-droid-hubs.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 24 
-	18 -10 8 
-	-18 -10 8 
-	-18 22 4 
-	18 22 4 
-	-18 -10 -2 
-	18 -10 -2 
-	18 22 -6 
-	-18 22 -6 
-	10 -6 -8 
-	10 -6 8 
-	6 22 8 
-	6 22 -8 
-	-8 20 -8 
-	8 20 -8 
-	8 20 6 
-	-8 20 6 
-	14 -7 -12 
-	14 -10 5 
-	14 9 8 
-	14 12 -9 
-	-10 -6 8 
-	-10 -6 -8 
-	-6 22 -8 
-	-6 22 8
-POLYGONS 14
-	200 3 3 2 1 19 246 1 246 1 230
-	200 3 3 1 0 19 246 1 230 19 230
-	200 3 7 6 5 1 215 19 215 19 231
-	200 3 7 5 4 1 215 19 231 1 231
-	200 3 11 10 9 57 200 66 200 66 214
-	200 3 11 9 8 57 200 66 214 57 214
-	200 3 15 14 13 9 246 9 255 0 255
-	200 3 15 13 12 9 246 0 255 0 246
-	200 3 16 17 18 130 210 139 210 139 200
-	200 3 16 18 19 130 210 139 200 130 200
-	200 3 19 18 17 130 200 139 200 139 210
-	200 3 19 17 16 130 200 139 210 130 210
-	200 3 23 22 21 66 200 57 200 57 214
-	200 3 23 21 20 66 200 57 214 66 214
-CONNECTORS 1
-	-16 4 8
diff --git a/components/weapons/cybodyjp.pie b/components/weapons/cybodyjp.pie
deleted file mode 100644
index 70adae6..0000000
--- a/components/weapons/cybodyjp.pie
+++ /dev/null
@@ -1,47 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-14-droid-hubs.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 24 
-	18 -9 9 
-	-18 -9 9 
-	-18 32 4 
-	18 32 4 
-	-18 -9 -3 
-	18 -9 -3 
-	18 32 -8 
-	-18 32 -8 
-	10 -4 -11 
-	10 -4 9 
-	6 32 9 
-	6 32 -11 
-	-8 30 -11 
-	8 30 -11 
-	8 30 7 
-	-8 30 7 
-	14 -6 -17 
-	14 -10 5 
-	14 15 10 
-	14 19 -12 
-	-10 -4 9 
-	-10 -4 -11 
-	-6 32 -11 
-	-6 32 9
-POLYGONS 14
-	200 3 3 2 1 188 246 170 246 170 230
-	200 3 3 1 0 188 246 170 230 188 230
-	200 3 7 6 5 170 215 188 215 188 231
-	200 3 7 5 4 170 215 188 231 170 231
-	200 3 11 10 9 160 232 169 232 169 246
-	200 3 11 9 8 160 232 169 246 160 246
-	200 3 15 14 13 178 246 178 255 169 255
-	200 3 15 13 12 178 246 169 255 169 246
-	200 3 16 17 18 130 210 139 210 139 200
-	200 3 16 18 19 130 210 139 200 130 200
-	200 3 19 18 17 130 200 139 200 139 210
-	200 3 19 17 16 130 200 139 210 130 210
-	200 3 23 22 21 169 232 160 232 160 246
-	200 3 23 21 20 169 232 160 246 169 246
-CONNECTORS 1
-	-16 4 8
diff --git a/components/weapons/exturret.pie b/components/weapons/exturret.pie
deleted file mode 100644
index ffb764e..0000000
--- a/components/weapons/exturret.pie
+++ /dev/null
@@ -1,27 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-7-barbarians-arizona.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 8 
-	9 0 12 
-	-9 0 12 
-	-4 7 6 
-	4 7 6 
-	-9 0 -12 
-	9 0 -12 
-	4 10 -6 
-	-4 10 -6
-POLYGONS 12
-	200 3 3 2 1 115 109 120 109 123 116
-	200 3 3 1 0 115 109 123 116 112 116
-	200 3 7 6 5 122 81 115 81 112 90
-	200 3 7 5 4 122 81 112 90 125 90
-	200 3 2 3 6 114 98 121 98 121 105
-	200 3 2 6 7 114 98 121 105 114 105
-	200 3 2 7 4 122 92 115 90 112 97
-	200 3 2 4 1 122 92 112 97 125 97
-	200 3 6 3 0 115 90 122 92 125 97
-	200 3 6 0 5 115 90 125 97 112 97
-	200 3 5 0 1 112 121 123 121 123 113
-	200 3 5 1 4 112 121 123 113 112 113
\ No newline at end of file
diff --git a/components/weapons/gnhaalas.pie b/components/weapons/gnhaalas.pie
deleted file mode 100644
index 67bbd4c..0000000
--- a/components/weapons/gnhaalas.pie
+++ /dev/null
@@ -1,61 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 24 
-	4 6 -29 
-	4 16 -29 
-	12 11 -29 
-	4 6 -42 
-	12 11 -42 
-	4 16 -42 
-	10 11 -14 
-	5 14 -12 
-	5 14 -29 
-	10 11 -29 
-	5 8 -16 
-	5 8 -29 
-	-4 16 -29 
-	-4 6 -29 
-	-12 11 -29 
-	-4 16 -42 
-	-12 11 -42 
-	-4 6 -42 
-	-10 11 -14 
-	-5 8 -16 
-	-5 8 -29 
-	-10 11 -29 
-	-5 14 -12 
-	-5 14 -29
-POLYGONS 28
-	200 3 2 1 0 46 185 56 179 56 191
-	200 3 5 4 3 157 26 167 33 157 40
-	200 3 9 8 7 33 177 46 177 46 192
-	200 3 9 7 6 33 177 46 192 33 192
-	200 3 8 11 10 33 177 46 177 46 192
-	200 3 8 10 7 33 177 46 192 33 192
-	200 3 11 9 6 33 177 46 177 46 192
-	200 3 11 6 10 33 177 46 192 33 192
-	200 3 4 5 1 242 25 251 25 251 37
-	200 3 4 1 2 242 25 251 37 242 37
-	200 3 5 3 0 242 25 251 25 251 37
-	200 3 5 0 1 242 25 251 37 242 37
-	200 3 3 4 2 242 25 251 25 251 37
-	200 3 3 2 0 242 25 251 37 242 37
-	200 3 14 13 12 46 185 56 179 56 191
-	200 3 17 16 15 157 26 167 33 157 40
-	200 3 16 17 13 242 25 251 25 251 37
-	200 3 16 13 14 242 25 251 37 242 37
-	200 3 17 15 12 242 25 251 25 251 37
-	200 3 17 12 13 242 25 251 37 242 37
-	200 3 15 16 14 242 25 251 25 251 37
-	200 3 15 14 12 242 25 251 37 242 37
-	200 3 21 20 19 33 177 46 177 46 192
-	200 3 21 19 18 33 177 46 192 33 192
-	200 3 20 23 22 33 177 46 177 46 192
-	200 3 20 22 19 33 177 46 192 33 192
-	200 3 23 21 18 33 177 46 177 46 192
-	200 3 23 18 22 33 177 46 192 33 192
-CONNECTORS 1
-	0 -44 10
diff --git a/components/weapons/gnhair.pie b/components/weapons/gnhair.pie
deleted file mode 100644
index 39241bb..0000000
--- a/components/weapons/gnhair.pie
+++ /dev/null
@@ -1,81 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 32 
-	-8 0 -56 
-	-5 4 -56 
-	-8 7 -56 
-	-11 4 -56 
-	-8 0 -22 
-	-5 4 -22 
-	-8 7 -22 
-	-11 4 -22 
-	-8 10 -43 
-	-5 14 -43 
-	-8 17 -43 
-	-11 14 -43 
-	-8 10 -16 
-	-5 14 -16 
-	-8 17 -16 
-	-11 14 -16 
-	8 10 -16 
-	11 14 -16 
-	11 14 -43 
-	8 10 -43 
-	8 17 -16 
-	8 17 -43 
-	5 14 -16 
-	5 14 -43 
-	8 0 -56 
-	11 4 -56 
-	8 7 -56 
-	5 4 -56 
-	8 0 -22 
-	11 4 -22 
-	8 7 -22 
-	5 4 -22
-POLYGONS 40
-	200 3 3 2 1 164 36 157 36 157 28
-	200 3 3 1 0 164 36 157 28 164 28
-	200 3 0 1 5 196 19 191 19 191 0
-	200 3 0 5 4 196 19 191 0 196 0
-	200 3 1 2 6 196 19 191 19 191 0
-	200 3 1 6 5 196 19 191 0 196 0
-	200 3 2 3 7 196 19 191 19 191 0
-	200 3 2 7 6 196 19 191 0 196 0
-	200 3 3 0 4 196 19 191 19 191 0
-	200 3 3 4 7 196 19 191 0 196 0
-	200 3 11 10 9 164 36 157 36 157 28
-	200 3 11 9 8 164 36 157 28 164 28
-	200 3 8 9 13 196 19 191 19 191 0
-	200 3 8 13 12 196 19 191 0 196 0
-	200 3 9 10 14 196 19 191 19 191 0
-	200 3 9 14 13 196 19 191 0 196 0
-	200 3 10 11 15 196 19 191 19 191 0
-	200 3 10 15 14 196 19 191 0 196 0
-	200 3 11 8 12 196 19 191 19 191 0
-	200 3 11 12 15 196 19 191 0 196 0
-	200 3 19 18 17 196 19 191 19 191 0
-	200 3 19 17 16 196 19 191 0 196 0
-	200 3 18 21 20 196 19 191 19 191 0
-	200 3 18 20 17 196 19 191 0 196 0
-	200 3 21 23 22 196 19 191 19 191 0
-	200 3 21 22 20 196 19 191 0 196 0
-	200 3 23 19 16 196 19 191 19 191 0
-	200 3 23 16 22 196 19 191 0 196 0
-	200 3 23 21 18 164 36 157 36 157 28
-	200 3 23 18 19 164 36 157 28 164 28
-	200 3 27 26 25 164 36 157 36 157 28
-	200 3 27 25 24 164 36 157 28 164 28
-	200 3 24 25 29 196 19 191 19 191 0
-	200 3 24 29 28 196 19 191 0 196 0
-	200 3 25 26 30 196 19 191 19 191 0
-	200 3 25 30 29 196 19 191 0 196 0
-	200 3 26 27 31 196 19 191 19 191 0
-	200 3 26 31 30 196 19 191 0 196 0
-	200 3 27 24 28 196 19 191 19 191 0
-	200 3 27 28 31 196 19 191 0 196 0
-CONNECTORS 1
-	0 -44 14
diff --git a/components/weapons/gnhair2.pie b/components/weapons/gnhair2.pie
deleted file mode 100644
index 8da108c..0000000
--- a/components/weapons/gnhair2.pie
+++ /dev/null
@@ -1,66 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 25 
-	-7 2 -22 
-	-1 8 -22 
-	-1 8 -54 
-	-7 2 -54 
-	-7 14 -22 
-	-7 14 -54 
-	-14 8 -22 
-	-14 8 -54 
-	-15 2 -21 
-	0 2 -21 
-	0 15 -21 
-	-15 15 -21 
-	0 15 -12 
-	-15 15 -12 
-	7 2 -22 
-	14 8 -22 
-	14 8 -54 
-	7 2 -54 
-	7 14 -22 
-	7 14 -54 
-	1 8 -22 
-	1 8 -54 
-	15 2 -21 
-	15 15 -21 
-	15 15 -12
-POLYGONS 32
-	200 3 3 2 1 44 48 47 48 47 60
-	200 3 3 1 0 44 48 47 60 44 60
-	200 3 2 5 4 44 48 47 48 47 60
-	200 3 2 4 1 44 48 47 60 44 60
-	200 3 5 7 6 44 48 47 48 47 60
-	200 3 5 6 4 44 48 47 60 44 60
-	200 3 7 3 0 44 48 47 48 47 60
-	200 3 7 0 6 44 48 47 60 44 60
-	200 3 7 5 2 65 66 70 61 76 67
-	200 3 7 2 3 65 66 76 67 71 72
-	200 3 11 10 9 9 190 0 190 0 182
-	200 3 11 9 8 9 190 0 182 9 182
-	200 3 12 9 10 0 182 9 190 0 190
-	200 3 10 11 13 9 190 0 190 0 182
-	200 3 10 13 12 9 190 0 182 9 182
-	200 3 13 11 8 9 182 9 190 0 190
-	200 3 17 16 15 44 48 47 48 47 60
-	200 3 17 15 14 44 48 47 60 44 60
-	200 3 16 19 18 44 48 47 48 47 60
-	200 3 16 18 15 44 48 47 60 44 60
-	200 3 19 21 20 44 48 47 48 47 60
-	200 3 19 20 18 44 48 47 60 44 60
-	200 3 21 17 14 44 48 47 48 47 60
-	200 3 21 14 20 44 48 47 60 44 60
-	200 3 21 19 16 65 66 70 61 76 67
-	200 3 21 16 17 65 66 76 67 71 72
-	200 3 10 23 22 9 190 0 190 0 182
-	200 3 10 22 9 9 190 0 182 9 182
-	200 3 24 22 23 0 182 9 190 0 190
-	200 3 23 10 12 9 190 0 190 0 182
-	200 3 23 12 24 9 190 0 182 9 182
-	200 3 12 10 9 9 182 9 190 0 190
-CONNECTORS 1
-	0 -55 8
diff --git a/components/weapons/gnhblas.pie b/components/weapons/gnhblas.pie
deleted file mode 100644
index 33bc6d6..0000000
--- a/components/weapons/gnhblas.pie
+++ /dev/null
@@ -1,109 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 20 
-	0 13 -65 
-	1 13 -14 
-	11 13 -22 
-	5 13 -60 
-	5 11 -60 
-	0 11 -65 
-	1 11 -14 
-	11 10 -22 
-	-1 13 -14 
-	-1 23 -22 
-	0 17 -60 
-	1 23 -22 
-	-1 11 -14 
-	-11 10 -22 
-	-5 11 -60 
-	-5 13 -60 
-	-11 13 -22 
-	1 1 -22 
-	0 6 -60 
-	-1 1 -22
-POLYGONS 80
-	200 3 0 1 2 207 29 234 29 229 24
-	200 3 0 2 3 207 29 229 24 209 25
-	200 3 3 2 1 209 25 229 24 234 29
-	200 3 3 1 0 209 25 234 29 207 29
-	200 3 4 5 0 209 25 207 29 207 29
-	200 3 4 0 3 209 25 207 29 209 25
-	200 3 3 0 5 209 25 207 29 207 29
-	200 3 3 5 4 209 25 207 29 209 25
-	200 3 6 7 2 234 29 229 24 229 24
-	200 3 6 2 1 234 29 229 24 234 29
-	200 3 1 2 7 234 29 229 24 229 24
-	200 3 1 7 6 234 29 229 24 234 29
-	200 3 7 4 3 229 24 209 25 209 25
-	200 3 7 3 2 229 24 209 25 229 24
-	200 3 2 3 4 229 24 209 25 209 25
-	200 3 2 4 7 229 24 209 25 229 24
-	200 3 5 6 7 207 29 234 29 229 24
-	200 3 5 7 4 207 29 229 24 209 25
-	200 3 4 7 6 209 25 229 24 234 29
-	200 3 4 6 5 209 25 234 29 207 29
-	200 3 0 8 9 207 29 234 29 229 24
-	200 3 0 9 10 207 29 229 24 209 25
-	200 3 10 9 8 209 25 229 24 234 29
-	200 3 10 8 0 209 25 234 29 207 29
-	200 3 10 0 0 209 25 207 29 207 29
-	200 3 10 0 10 209 25 207 29 209 25
-	200 3 10 0 0 209 25 207 29 207 29
-	200 3 10 0 10 209 25 207 29 209 25
-	200 3 1 11 9 234 29 229 24 229 24
-	200 3 1 9 8 234 29 229 24 234 29
-	200 3 8 9 11 234 29 229 24 229 24
-	200 3 8 11 1 234 29 229 24 234 29
-	200 3 11 10 10 229 24 209 25 209 25
-	200 3 11 10 9 229 24 209 25 229 24
-	200 3 9 10 10 229 24 209 25 209 25
-	200 3 9 10 11 229 24 209 25 229 24
-	200 3 0 1 11 207 29 234 29 229 24
-	200 3 0 11 10 207 29 229 24 209 25
-	200 3 10 11 1 209 25 229 24 234 29
-	200 3 10 1 0 209 25 234 29 207 29
-	200 3 5 12 13 207 29 234 29 229 24
-	200 3 5 13 14 207 29 229 24 209 25
-	200 3 14 13 12 209 25 229 24 234 29
-	200 3 14 12 5 209 25 234 29 207 29
-	200 3 15 0 5 209 25 207 29 207 29
-	200 3 15 5 14 209 25 207 29 209 25
-	200 3 14 5 0 209 25 207 29 207 29
-	200 3 14 0 15 209 25 207 29 209 25
-	200 3 8 16 13 234 29 229 24 229 24
-	200 3 8 13 12 234 29 229 24 234 29
-	200 3 12 13 16 234 29 229 24 229 24
-	200 3 12 16 8 234 29 229 24 234 29
-	200 3 16 15 14 229 24 209 25 209 25
-	200 3 16 14 13 229 24 209 25 229 24
-	200 3 13 14 15 229 24 209 25 209 25
-	200 3 13 15 16 229 24 209 25 229 24
-	200 3 0 8 16 207 29 234 29 229 24
-	200 3 0 16 15 207 29 229 24 209 25
-	200 3 15 16 8 209 25 229 24 234 29
-	200 3 15 8 0 209 25 234 29 207 29
-	200 3 5 6 17 207 29 234 29 229 24
-	200 3 5 17 18 207 29 229 24 209 25
-	200 3 18 17 6 209 25 229 24 234 29
-	200 3 18 6 5 209 25 234 29 207 29
-	200 3 18 5 5 209 25 207 29 207 29
-	200 3 18 5 18 209 25 207 29 209 25
-	200 3 18 5 5 209 25 207 29 207 29
-	200 3 18 5 18 209 25 207 29 209 25
-	200 3 12 19 17 234 29 229 24 229 24
-	200 3 12 17 6 234 29 229 24 234 29
-	200 3 6 17 19 234 29 229 24 229 24
-	200 3 6 19 12 234 29 229 24 234 29
-	200 3 19 18 18 229 24 209 25 209 25
-	200 3 19 18 17 229 24 209 25 229 24
-	200 3 17 18 18 229 24 209 25 209 25
-	200 3 17 18 19 229 24 209 25 229 24
-	200 3 5 12 19 207 29 234 29 229 24
-	200 3 5 19 18 207 29 229 24 209 25
-	200 3 18 19 12 209 25 229 24 234 29
-	200 3 18 12 5 209 25 234 29 207 29
-CONNECTORS 1
-	0 -66 12
diff --git a/components/weapons/gnhcan.pie b/components/weapons/gnhcan.pie
deleted file mode 100644
index 0305d18..0000000
--- a/components/weapons/gnhcan.pie
+++ /dev/null
@@ -1,27 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 8 
-	0 2 -77 
-	5 7 -77 
-	0 12 -77 
-	-5 7 -77 
-	0 2 -22 
-	5 7 -16 
-	0 12 -11 
-	-5 7 -16
-POLYGONS 10
-	200 3 3 2 1 15 63 13 63 13 61
-	200 3 3 1 0 15 63 13 61 15 61
-	200 3 0 1 5 5 72 1 72 1 50
-	200 3 0 5 4 5 72 1 50 5 52
-	200 3 1 2 6 5 72 1 72 1 48
-	200 3 1 6 5 5 72 1 48 5 50
-	200 3 2 3 7 5 72 1 72 1 50
-	200 3 2 7 6 5 72 1 50 5 48
-	200 3 3 0 4 5 72 1 72 1 52
-	200 3 3 4 7 5 72 1 52 5 50
-CONNECTORS 1
-	0 -77 7
diff --git a/components/weapons/gnhecm3.pie b/components/weapons/gnhecm3.pie
deleted file mode 100644
index a8b59de..0000000
--- a/components/weapons/gnhecm3.pie
+++ /dev/null
@@ -1,43 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 14 
-	11 15 14 
-	-11 15 14 
-	-7 41 26 
-	7 41 26 
-	0 15 -8 
-	0 41 11 
-	0 6 -24 
-	21 6 19 
-	-20 6 19 
-	0 52 37 
-	0 41 -38 
-	16 6 9 
-	-15 6 9 
-	6 41 24
-POLYGONS 20
-	200 3 9 2 3 222 77 210 74 210 74
-	200 3 2 9 10 210 74 222 77 210 57
-	200 3 10 9 3 210 57 222 77 210 74
-	200 3 3 5 10 210 74 210 70 210 57
-	200 3 10 5 2 210 57 210 70 210 74
-	200 3 3 0 4 222 52 220 82 210 82
-	200 3 3 4 13 222 52 210 82 221 52
-	200 3 6 4 0 142 151 151 140 165 140
-	200 3 6 0 11 142 151 165 140 162 151
-	200 3 4 6 12 151 140 142 151 162 151
-	200 3 4 12 1 151 140 162 151 165 140
-	200 3 2 5 4 222 52 215 52 210 82
-	200 3 2 4 1 222 52 210 82 220 82
-	200 3 5 13 4 215 52 221 52 210 82
-	200 3 3 2 1 238 71 236 71 236 102
-	200 3 3 1 0 238 71 236 102 238 102
-	200 3 8 1 12 168 151 165 140 162 151
-	200 3 7 11 0 168 151 162 151 165 140
-	200 3 0 1 8 165 140 165 140 168 151
-	200 3 0 8 7 165 140 168 151 168 151
-CONNECTORS 1
-	0 -40 41
diff --git a/components/weapons/gnhemp.pie b/components/weapons/gnhemp.pie
deleted file mode 100644
index 63db7b9..0000000
--- a/components/weapons/gnhemp.pie
+++ /dev/null
@@ -1,20 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 6 
-	-4 11 -37 
-	4 11 -37 
-	0 19 -37 
-	-6 11 -27 
-	6 11 -27 
-	0 23 10
-POLYGONS 7
-	200 3 2 1 0 53 187 49 185 49 189
-	200 3 4 3 0 53 180 49 180 50 184
-	200 3 4 0 1 53 180 50 184 52 184
-	200 3 5 4 1 236 24 213 28 207 28
-	200 3 5 1 2 236 24 207 28 207 24
-	200 3 3 5 2 213 28 236 24 207 24
-	200 3 3 2 0 213 28 207 24 207 28
\ No newline at end of file
diff --git a/components/weapons/gnhgss.pie b/components/weapons/gnhgss.pie
deleted file mode 100644
index 1142573..0000000
--- a/components/weapons/gnhgss.pie
+++ /dev/null
@@ -1,33 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 10 
-	0 8 -20 
-	5 14 -15 
-	5 14 -69 
-	0 8 -69 
-	-6 14 -15 
-	-6 14 -69 
-	5 14 4 
-	0 20 4 
-	0 20 -69 
-	-6 14 4
-POLYGONS 16
-	200 3 0 1 2 152 61 158 63 158 40
-	200 3 0 2 3 152 61 158 40 152 40
-	200 3 3 2 1 152 40 158 40 158 63
-	200 3 3 1 0 152 40 158 63 152 61
-	200 3 4 0 3 152 63 158 61 158 40
-	200 3 4 3 5 152 63 158 40 152 40
-	200 3 5 3 0 152 40 158 40 158 61
-	200 3 5 0 4 152 40 158 61 152 63
-	200 3 6 7 8 152 72 158 72 158 40
-	200 3 6 8 2 152 72 158 40 152 40
-	200 3 2 8 7 152 40 158 40 158 72
-	200 3 2 7 6 152 40 158 72 152 72
-	200 3 7 9 5 152 72 158 72 158 40
-	200 3 7 5 8 152 72 158 40 152 40
-	200 3 8 5 9 152 40 158 40 158 72
-	200 3 8 9 7 152 40 158 72 152 72
\ No newline at end of file
diff --git a/components/weapons/gnhhowt.pie b/components/weapons/gnhhowt.pie
deleted file mode 100644
index 81ec1c4..0000000
--- a/components/weapons/gnhhowt.pie
+++ /dev/null
@@ -1,65 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 24 
-	0 14 -75 
-	4 18 -75 
-	0 23 -75 
-	-4 18 -75 
-	0 14 -19 
-	-4 18 -19 
-	0 23 -19 
-	4 18 -19 
-	-6 24 -16 
-	-6 27 -14 
-	-6 28 -4 
-	-6 24 -2 
-	6 24 -16 
-	6 24 -2 
-	6 28 -4 
-	6 27 -14 
-	-10 11 -18 
-	-10 24 -18 
-	-10 24 0 
-	-10 11 0 
-	10 11 -18 
-	10 11 0 
-	10 24 0 
-	10 24 -18
-POLYGONS 32
-	200 3 3 2 1 160 74 160 62 172 62
-	200 3 3 1 0 160 74 172 62 172 74
-	200 3 7 6 5 225 155 221 155 225 155
-	200 3 7 5 4 225 155 225 155 228 155
-	200 3 0 1 7 228 173 225 173 225 155
-	200 3 0 7 4 228 173 225 155 228 155
-	200 3 1 2 6 225 173 221 173 221 155
-	200 3 1 6 7 225 173 221 155 225 155
-	200 3 2 3 5 221 173 225 173 225 155
-	200 3 2 5 6 221 173 225 155 221 155
-	200 3 3 0 4 225 173 228 173 228 155
-	200 3 3 4 5 225 173 228 155 225 155
-	200 3 11 10 9 61 48 60 48 51 48
-	200 3 11 9 8 61 48 51 48 49 48
-	200 3 15 14 13 51 57 60 57 61 57
-	200 3 15 13 12 51 57 61 57 49 57
-	200 3 13 14 10 61 57 60 57 60 48
-	200 3 13 10 11 61 57 60 48 61 48
-	200 3 14 15 9 60 57 51 57 51 48
-	200 3 14 9 10 60 57 51 48 60 48
-	200 3 15 12 8 51 57 49 57 49 48
-	200 3 15 8 9 51 57 49 48 51 48
-	200 3 19 18 17 77 71 77 61 90 61
-	200 3 19 17 16 77 71 90 61 90 71
-	200 3 23 22 21 77 61 90 61 90 71
-	200 3 23 21 20 77 61 90 71 77 71
-	200 3 21 22 18 77 71 77 61 90 61
-	200 3 21 18 19 77 71 90 61 90 71
-	200 3 22 23 17 90 61 90 71 77 71
-	200 3 22 17 18 90 61 77 71 77 61
-	200 3 23 20 16 90 61 90 71 77 71
-	200 3 23 16 17 90 61 77 71 77 61
-CONNECTORS 1
-	0 -75 18
diff --git a/components/weapons/gnhhowt2.pie b/components/weapons/gnhhowt2.pie
deleted file mode 100644
index f3494f2..0000000
--- a/components/weapons/gnhhowt2.pie
+++ /dev/null
@@ -1,87 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 32 
-	-6 11 -60 
-	-2 15 -60 
-	-6 18 -60 
-	-9 15 -60 
-	-6 11 -16 
-	-9 15 -16 
-	-6 18 -16 
-	-2 15 -16 
-	6 11 -16 
-	2 15 -16 
-	6 18 -16 
-	9 15 -16 
-	9 15 -60 
-	6 11 -60 
-	6 18 -60 
-	2 15 -60 
-	-9 10 -16 
-	-9 30 -16 
-	-9 30 0 
-	-9 10 0 
-	9 10 -16 
-	9 10 0 
-	9 30 0 
-	9 30 -16 
-	0 22 -60 
-	3 25 -60 
-	0 29 -60 
-	-3 25 -60 
-	0 22 -16 
-	-3 25 -16 
-	0 29 -16 
-	3 25 -16
-POLYGONS 46
-	200 3 3 2 1 160 74 160 62 172 62
-	200 3 3 1 0 160 74 172 62 172 74
-	200 3 7 6 5 225 155 221 155 225 155
-	200 3 7 5 4 225 155 225 155 228 155
-	200 3 0 1 7 228 173 225 173 225 155
-	200 3 0 7 4 228 173 225 155 228 155
-	200 3 1 2 6 225 173 221 173 221 155
-	200 3 1 6 7 225 173 221 155 225 155
-	200 3 2 3 5 221 173 225 173 225 155
-	200 3 2 5 6 221 173 225 155 221 155
-	200 3 3 0 4 225 173 228 173 228 155
-	200 3 3 4 5 225 173 228 155 225 155
-	200 3 11 10 9 225 155 221 155 225 155
-	200 3 11 9 8 225 155 225 155 228 155
-	200 3 13 12 11 228 173 225 173 225 155
-	200 3 13 11 8 228 173 225 155 228 155
-	200 3 12 14 10 225 173 221 173 221 155
-	200 3 12 10 11 225 173 221 155 225 155
-	200 3 14 15 9 221 173 225 173 225 155
-	200 3 14 9 10 221 173 225 155 221 155
-	200 3 15 13 8 225 173 228 173 228 155
-	200 3 15 8 9 225 173 228 155 225 155
-	200 3 19 18 17 77 71 77 61 90 61
-	200 3 19 17 16 77 71 90 61 90 71
-	200 3 23 22 21 77 61 90 61 90 71
-	200 3 23 21 20 77 61 90 71 77 71
-	200 3 21 22 18 77 71 77 61 90 61
-	200 3 21 18 19 77 71 90 61 90 71
-	200 3 22 23 17 90 61 90 71 77 71
-	200 3 22 17 18 90 61 77 71 77 61
-	200 3 23 20 16 90 61 90 71 77 71
-	200 3 23 16 17 90 61 77 71 77 61
-	200 3 15 14 12 160 74 160 62 172 62
-	200 3 15 12 13 160 74 172 62 172 74
-	200 3 27 26 25 160 74 160 62 172 62
-	200 3 27 25 24 160 74 172 62 172 74
-	200 3 31 30 29 225 155 221 155 225 155
-	200 3 31 29 28 225 155 225 155 228 155
-	200 3 24 25 31 228 173 225 173 225 155
-	200 3 24 31 28 228 173 225 155 228 155
-	200 3 25 26 30 225 173 221 173 221 155
-	200 3 25 30 31 225 173 221 155 225 155
-	200 3 26 27 29 221 173 225 173 225 155
-	200 3 26 29 30 221 173 225 155 221 155
-	200 3 27 24 28 225 173 228 173 228 155
-	200 3 27 28 29 225 173 228 155 225 155
-CONNECTORS 1
-	0 -61 20
diff --git a/components/weapons/gnhlas.pie b/components/weapons/gnhlas.pie
deleted file mode 100644
index 6aa72b7..0000000
--- a/components/weapons/gnhlas.pie
+++ /dev/null
@@ -1,43 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 15 
-	0 4 -31 
-	6 15 -31 
-	6 15 -45 
-	0 4 -45 
-	-6 15 -31 
-	-6 15 -45 
-	0 4 -20 
-	6 15 -13 
-	-6 15 -13 
-	4 15 -25 
-	0 22 -20 
-	-4 15 -25 
-	0 22 -8 
-	-4 15 -13 
-	4 15 -13
-POLYGONS 19
-	200 3 3 2 1 242 25 251 25 251 37
-	200 3 3 1 0 242 25 251 37 242 37
-	200 3 2 5 4 242 25 251 25 251 37
-	200 3 2 4 1 242 25 251 37 242 37
-	200 3 5 3 0 242 25 251 25 251 37
-	200 3 5 0 4 242 25 251 37 242 37
-	200 3 2 3 5 157 26 167 33 157 40
-	200 3 0 1 7 33 192 46 192 46 177
-	200 3 0 7 6 33 192 46 177 33 177
-	200 3 1 4 8 33 192 46 192 46 177
-	200 3 1 8 7 33 192 46 177 33 177
-	200 3 4 0 6 33 192 46 192 46 177
-	200 3 4 6 8 33 192 46 177 33 177
-	200 3 11 10 9 157 26 167 33 157 40
-	200 3 10 11 13 209 60 216 60 216 81
-	200 3 10 13 12 209 60 216 81 209 81
-	200 3 9 10 12 216 60 209 60 209 81
-	200 3 9 12 14 216 60 209 81 216 81
-	200 3 13 14 12 157 26 167 33 157 40
-CONNECTORS 1
-	0 -48 9
diff --git a/components/weapons/gnhmg1.pie b/components/weapons/gnhmg1.pie
deleted file mode 100644
index 2c2bf93..0000000
--- a/components/weapons/gnhmg1.pie
+++ /dev/null
@@ -1,95 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 36 
-	6 1 -51 
-	12 7 -51 
-	6 14 -51 
-	0 7 -51 
-	-12 2 -29 
-	12 2 -29 
-	12 14 -29 
-	-12 14 -29 
-	12 14 -22 
-	-12 14 -22 
-	-15 19 -21 
-	-20 13 -21 
-	-16 13 -28 
-	-12 19 -29 
-	-17 7 -16 
-	-14 7 -23 
-	-8 15 -22 
-	-8 15 -31 
-	-6 1 -29 
-	0 7 -29 
-	-6 1 -51 
-	-6 14 -29 
-	-6 14 -51 
-	-12 7 -29 
-	-12 7 -51 
-	15 19 -21 
-	20 13 -21 
-	16 13 -28 
-	12 19 -29 
-	17 7 -16 
-	14 7 -23 
-	8 15 -22 
-	8 15 -31 
-	6 1 -29 
-	12 7 -29 
-	6 14 -29
-POLYGONS 50
-	200 3 3 2 1 150 129 161 129 161 140
-	200 3 3 1 0 150 129 161 140 150 140
-	200 3 7 6 5 128 126 140 126 140 128
-	200 3 7 5 4 128 126 140 128 128 128
-	200 3 5 6 8 128 126 140 126 140 128
-	200 3 6 7 9 128 126 140 126 140 128
-	200 3 6 9 8 128 126 140 128 128 128
-	200 3 9 7 4 128 128 128 126 140 126
-	200 3 10 11 12 208 23 211 23 211 20
-	200 3 10 12 13 208 23 211 20 208 20
-	200 3 13 12 11 208 20 211 20 211 23
-	200 3 13 11 10 208 20 211 23 208 23
-	200 3 11 14 15 213 23 218 23 218 20
-	200 3 11 15 12 213 23 218 20 213 20
-	200 3 12 15 14 213 20 218 20 218 23
-	200 3 12 14 11 213 20 218 23 213 23
-	200 3 16 10 13 213 23 218 23 218 20
-	200 3 16 13 17 213 23 218 20 213 20
-	200 3 17 13 10 213 20 218 20 218 23
-	200 3 17 10 16 213 20 218 23 213 23
-	200 3 20 3 19 147 128 150 128 150 140
-	200 3 20 19 18 147 128 150 140 147 140
-	200 3 3 22 21 147 128 150 128 150 140
-	200 3 3 21 19 147 128 150 140 147 140
-	200 3 22 24 23 147 128 150 128 150 140
-	200 3 22 23 21 147 128 150 140 147 140
-	200 3 24 20 18 147 128 150 128 150 140
-	200 3 24 18 23 147 128 150 140 147 140
-	200 3 24 22 3 150 129 161 129 161 140
-	200 3 24 3 20 150 129 161 140 150 140
-	200 3 25 26 27 208 23 211 23 211 20
-	200 3 25 27 28 208 23 211 20 208 20
-	200 3 28 27 26 208 20 211 20 211 23
-	200 3 28 26 25 208 20 211 23 208 23
-	200 3 26 29 30 213 23 218 23 218 20
-	200 3 26 30 27 213 23 218 20 213 20
-	200 3 27 30 29 213 20 218 20 218 23
-	200 3 27 29 26 213 20 218 23 213 23
-	200 3 31 25 28 213 23 218 23 218 20
-	200 3 31 28 32 213 23 218 20 213 20
-	200 3 32 28 25 213 20 218 20 218 23
-	200 3 32 25 31 213 20 218 23 213 23
-	200 3 0 1 34 147 128 150 128 150 140
-	200 3 0 34 33 147 128 150 140 147 140
-	200 3 1 2 35 147 128 150 128 150 140
-	200 3 1 35 34 147 128 150 140 147 140
-	200 3 2 3 19 147 128 150 128 150 140
-	200 3 2 19 35 147 128 150 140 147 140
-	200 3 3 0 33 147 128 150 128 150 140
-	200 3 3 33 19 147 128 150 140 147 140
-CONNECTORS 1
-	0 -54 7
diff --git a/components/weapons/gnhmort.pie b/components/weapons/gnhmort.pie
deleted file mode 100644
index a5aa1da..0000000
--- a/components/weapons/gnhmort.pie
+++ /dev/null
@@ -1,80 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 39 
-	-7 9 -26 
-	0 2 -26 
-	7 9 -26 
-	0 16 -26 
-	0 0 -26 
-	6 -6 -26 
-	13 0 -26 
-	6 8 -26 
-	1 0 -6 
-	6 -4 -6 
-	6 -4 -26 
-	1 0 -26 
-	12 0 -6 
-	12 0 -26 
-	6 6 -6 
-	6 6 -26 
-	-12 0 -6 
-	-6 -4 -6 
-	-6 -4 -26 
-	-12 0 -26 
-	-1 0 -6 
-	-1 0 -26 
-	-6 6 -6 
-	-6 6 -26 
-	-14 0 -26 
-	-6 -6 -26 
-	-6 8 -26 
-	-10 16 -6 
-	-15 -7 -6 
-	15 -7 -6 
-	10 16 -6 
-	-5 9 -6 
-	0 3 -6 
-	0 3 -26 
-	-5 9 -26 
-	5 9 -6 
-	5 9 -26 
-	0 14 -6 
-	0 14 -26
-POLYGONS 32
-	200 3 3 2 1 165 37 156 37 156 28
-	200 3 3 1 0 165 37 156 28 165 28
-	200 3 7 6 5 165 37 156 37 156 28
-	200 3 7 5 4 165 37 156 28 165 28
-	200 3 11 10 9 126 72 126 76 142 76
-	200 3 11 9 8 126 72 142 76 142 72
-	200 3 10 13 12 126 76 126 72 142 72
-	200 3 10 12 9 126 76 142 72 142 76
-	200 3 13 15 14 126 72 126 68 142 68
-	200 3 13 14 12 126 72 142 68 142 72
-	200 3 15 11 8 126 68 126 72 142 72
-	200 3 15 8 14 126 68 142 72 142 68
-	200 3 19 18 17 126 72 126 76 142 76
-	200 3 19 17 16 126 72 142 76 142 72
-	200 3 18 21 20 126 76 126 72 142 72
-	200 3 18 20 17 126 76 142 72 142 76
-	200 3 21 23 22 126 72 126 68 142 68
-	200 3 21 22 20 126 72 142 68 142 72
-	200 3 23 19 16 126 68 126 72 142 72
-	200 3 23 16 22 126 68 142 72 142 68
-	200 3 26 4 25 165 37 156 37 156 28
-	200 3 26 25 24 165 37 156 28 165 28
-	200 3 30 29 28 193 176 196 156 177 156
-	200 3 30 28 27 193 176 177 156 180 176
-	200 3 34 33 32 126 72 126 76 142 76
-	200 3 34 32 31 126 72 142 76 142 72
-	200 3 33 36 35 126 76 126 72 142 72
-	200 3 33 35 32 126 76 142 72 142 76
-	200 3 36 38 37 126 72 126 68 142 68
-	200 3 36 37 35 126 72 142 68 142 72
-	200 3 38 34 31 126 68 126 72 142 72
-	200 3 38 31 37 126 68 142 72 142 68
-CONNECTORS 1
-	0 -28 9
diff --git a/components/weapons/gnhmort2.pie b/components/weapons/gnhmort2.pie
deleted file mode 100644
index 3172dcf..0000000
--- a/components/weapons/gnhmort2.pie
+++ /dev/null
@@ -1,76 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 21 
-	-5 15 -2 
-	-5 15 -26 
-	-3 23 -23 
-	-3 24 -2 
-	5 15 -2 
-	3 24 -2 
-	3 23 -23 
-	5 15 -26 
-	0 4 -34 
-	6 -7 -34 
-	12 4 -34 
-	6 15 -34 
-	-6 15 -34 
-	-12 4 -34 
-	-6 -7 -34 
-	12 4 -4 
-	6 15 -4 
-	-6 15 -4 
-	-12 4 -4 
-	-6 -7 -4 
-	6 -7 -4
-POLYGONS 46
-	200 3 0 1 2 104 140 104 153 111 151
-	200 3 0 2 3 104 140 111 151 111 140
-	200 3 3 2 1 111 140 111 151 104 153
-	200 3 3 1 0 111 140 104 153 104 140
-	200 3 4 5 6 111 140 104 140 104 151
-	200 3 4 6 7 111 140 104 151 111 153
-	200 3 7 6 5 111 153 104 151 104 140
-	200 3 7 5 4 111 153 104 140 111 140
-	200 3 0 3 5 104 153 111 153 111 140
-	200 3 0 5 4 104 153 111 140 104 140
-	200 3 4 5 3 104 140 111 140 111 153
-	200 3 4 3 0 104 140 111 153 104 153
-	200 3 3 2 6 104 153 110 153 110 140
-	200 3 3 6 5 104 153 110 140 104 140
-	200 3 5 6 2 104 140 110 140 110 153
-	200 3 5 2 3 104 140 110 153 104 153
-	200 3 2 1 7 104 153 111 153 111 140
-	200 3 2 7 6 104 153 111 140 104 140
-	200 3 6 7 1 104 140 111 140 111 153
-	200 3 6 1 2 104 140 111 153 104 153
-	200 3 1 0 4 104 153 111 153 111 140
-	200 3 1 4 7 104 153 111 140 104 140
-	200 3 7 4 0 104 140 111 140 111 153
-	200 3 7 0 1 104 140 111 153 104 153
-	200 3 11 10 9 159 29 157 33 159 37
-	200 3 11 9 8 159 29 159 37 161 33
-	200 3 13 12 11 165 33 163 29 159 29
-	200 3 13 11 8 165 33 159 29 161 33
-	200 3 9 14 13 159 37 163 37 165 33
-	200 3 9 13 8 159 37 165 33 161 33
-	200 3 10 11 16 127 72 127 68 142 68
-	200 3 10 16 15 127 72 142 68 142 72
-	200 3 11 12 17 127 68 127 68 142 68
-	200 3 11 17 16 127 68 142 68 142 68
-	200 3 12 13 18 127 68 127 72 142 72
-	200 3 12 18 17 127 68 142 72 142 68
-	200 3 13 14 19 127 72 127 75 142 75
-	200 3 13 19 18 127 72 142 75 142 72
-	200 3 14 9 20 127 75 127 75 142 75
-	200 3 14 20 19 127 75 142 75 142 75
-	200 3 9 10 15 127 75 127 72 142 72
-	200 3 9 15 20 127 75 142 72 142 75
-	200 3 15 18 19 130 76 128 76 129 77
-	200 3 15 19 20 130 76 129 77 129 77
-	200 3 15 16 17 130 76 129 75 129 75
-	200 3 15 17 18 130 76 129 75 128 76
-CONNECTORS 1
-	0 -35 4
diff --git a/components/weapons/gnhmorte.pie b/components/weapons/gnhmorte.pie
deleted file mode 100644
index 853c5fc..0000000
--- a/components/weapons/gnhmorte.pie
+++ /dev/null
@@ -1,61 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 22 
-	-9 13 -11 
-	-6 16 -30 
-	-13 19 -39 
-	-16 21 -18 
-	-5 19 -11 
-	-4 4 -30 
-	4 4 -30 
-	8 12 -30 
-	-8 12 -30 
-	4 19 -30 
-	-4 19 -30 
-	10 12 0 
-	5 21 0 
-	-5 21 0 
-	-10 12 0 
-	-5 2 0 
-	5 2 0 
-	6 16 -30 
-	9 13 -11 
-	16 21 -18 
-	13 19 -39 
-	5 19 -11
-POLYGONS 30
-	200 3 3 2 1 209 71 210 54 223 51
-	200 3 3 1 0 209 71 223 51 223 71
-	200 3 1 2 3 223 51 210 54 209 71
-	200 3 1 3 4 223 51 209 71 223 71
-	200 3 0 4 3 223 71 223 71 209 71
-	200 3 8 7 6 157 33 164 33 162 36
-	200 3 8 6 5 157 33 162 36 159 36
-	200 3 8 10 9 157 33 159 29 162 29
-	200 3 8 9 7 157 33 162 29 164 33
-	200 3 7 9 12 207 26 207 24 236 24
-	200 3 7 12 11 207 26 236 24 236 26
-	200 3 9 10 13 207 24 207 24 236 24
-	200 3 9 13 12 207 24 236 24 236 24
-	200 3 10 8 14 207 24 207 26 236 26
-	200 3 10 14 13 207 24 236 26 236 24
-	200 3 8 5 15 207 26 207 28 236 28
-	200 3 8 15 14 207 26 236 28 236 26
-	200 3 5 6 16 207 28 207 28 236 28
-	200 3 5 16 15 207 28 236 28 236 28
-	200 3 6 7 11 207 28 207 26 236 26
-	200 3 6 11 16 207 28 236 26 236 28
-	200 3 11 14 15 53 182 49 182 50 180
-	200 3 11 15 16 53 182 50 180 52 180
-	200 3 11 12 13 53 182 52 184 50 184
-	200 3 11 13 14 53 182 50 184 49 182
-	200 3 20 19 18 210 54 209 71 223 71
-	200 3 20 18 17 210 54 223 71 223 51
-	200 3 20 17 21 210 54 223 51 223 71
-	200 3 20 21 19 210 54 223 71 209 71
-	200 3 18 19 21 223 71 209 71 223 71
-CONNECTORS 1
-	0 -31 12
diff --git a/components/weapons/gnhmsl.pie b/components/weapons/gnhmsl.pie
deleted file mode 100644
index b17c2c8..0000000
--- a/components/weapons/gnhmsl.pie
+++ /dev/null
@@ -1,27 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 6 
-	-8 19 -91 
-	-8 5 0 
-	-8 3 -1 
-	7 3 -1 
-	7 5 0 
-	7 19 -91
-POLYGONS 12
-	200 3 2 1 0 240 71 240 76 256 98
-	200 3 5 4 3 256 98 240 76 240 71
-	200 3 1 0 5 246 40 246 69 236 69
-	200 3 1 5 4 246 40 236 69 236 40
-	200 3 4 5 0 236 40 236 69 246 69
-	200 3 4 0 1 236 40 246 69 246 40
-	200 3 3 2 1 236 40 246 40 246 40
-	200 3 3 1 4 236 40 246 40 236 40
-	200 3 4 1 2 236 40 246 40 246 40
-	200 3 4 2 3 236 40 246 40 236 40
-	200 3 0 5 3 15 192 2 192 1 208
-	200 3 0 3 2 15 192 1 208 14 208
-CONNECTORS 1
-	0 3 14
diff --git a/components/weapons/gnhmslab.pie b/components/weapons/gnhmslab.pie
deleted file mode 100644
index ca0f22b..0000000
--- a/components/weapons/gnhmslab.pie
+++ /dev/null
@@ -1,42 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 12 
-	-7 24 -64 
-	21 24 -64 
-	21 48 -59 
-	-7 48 -59 
-	-22 24 -64 
-	-22 48 -59 
-	-22 5 29 
-	21 5 29 
-	21 29 33 
-	-22 29 33 
-	-7 5 29 
-	-7 29 33
-POLYGONS 16
-	200 3 3 2 1 174 75 158 75 158 61
-	200 3 3 1 0 174 75 158 61 174 61
-	200 3 5 3 0 174 75 166 75 166 61
-	200 3 5 0 4 174 75 166 61 174 61
-	200 3 1 7 6 251 209 252 255 233 255
-	200 3 1 6 4 251 209 233 255 233 209
-	200 3 9 8 2 251 255 233 255 233 209
-	200 3 9 2 5 251 255 233 209 252 209
-	200 3 2 8 7 251 209 251 255 233 255
-	200 3 2 7 1 251 209 233 255 233 209
-	200 3 9 5 4 233 255 233 209 251 209
-	200 3 9 4 6 233 255 251 209 251 255
-	200 3 11 9 6 166 59 158 59 158 45
-	200 3 11 6 10 166 59 158 45 166 45
-	200 3 8 11 10 174 59 158 59 158 45
-	200 3 8 10 7 174 59 158 45 174 45
-CONNECTORS 6
-	-15 -60 43
-	2 -60 43
-	14 -60 43
-	-15 -63 31
-	2 -63 31
-	14 -63 31
diff --git a/components/weapons/gnhmsli.pie b/components/weapons/gnhmsli.pie
deleted file mode 100644
index b3bb9ef..0000000
--- a/components/weapons/gnhmsli.pie
+++ /dev/null
@@ -1,29 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 8 
-	-14 24 -92 
-	-14 5 1 
-	15 5 1 
-	15 24 -92 
-	-14 48 -87 
-	15 48 -87 
-	15 29 5 
-	-14 29 5
-POLYGONS 12
-	200 3 3 2 1 251 209 252 255 233 255
-	200 3 3 1 0 251 209 233 255 233 209
-	200 3 7 6 5 251 255 233 255 233 209
-	200 3 7 5 4 251 255 233 209 252 209
-	200 3 4 5 3 174 75 158 75 158 61
-	200 3 4 3 0 174 75 158 61 174 61
-	200 3 5 6 2 251 209 251 255 233 255
-	200 3 5 2 3 251 209 233 255 233 209
-	200 3 6 7 1 174 59 158 59 158 45
-	200 3 6 1 2 174 59 158 45 174 45
-	200 3 7 4 0 233 255 233 209 251 209
-	200 3 7 0 1 233 255 251 209 251 255
-CONNECTORS 1
-	0 -93 37
diff --git a/components/weapons/gnhmslsa.pie b/components/weapons/gnhmslsa.pie
deleted file mode 100644
index bf80264..0000000
--- a/components/weapons/gnhmslsa.pie
+++ /dev/null
@@ -1,92 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 32 
-	12 22 16 
-	18 16 16 
-	18 16 -17 
-	12 22 -17 
-	24 22 16 
-	24 22 -17 
-	18 28 16 
-	18 28 -17 
-	-18 16 16 
-	-24 22 16 
-	-18 28 16 
-	-12 22 16 
-	-18 16 -17 
-	-12 22 -17 
-	-18 28 -17 
-	-24 22 -17 
-	12 9 16 
-	18 15 16 
-	24 9 16 
-	18 3 16 
-	12 9 -17 
-	18 3 -17 
-	24 9 -17 
-	18 15 -17 
-	-18 3 16 
-	-12 9 16 
-	-12 9 -17 
-	-18 3 -17 
-	-18 15 16 
-	-18 15 -17 
-	-24 9 16 
-	-24 9 -17
-POLYGONS 48
-	200 3 3 2 1 3 176 0 176 0 192
-	200 3 3 1 0 3 176 0 192 3 192
-	200 3 2 5 4 0 176 3 176 3 192
-	200 3 2 4 1 0 176 3 192 0 192
-	200 3 5 7 6 3 176 6 176 6 192
-	200 3 5 6 4 3 176 6 192 3 192
-	200 3 7 3 0 6 176 3 176 3 192
-	200 3 7 0 6 6 176 3 192 6 192
-	200 3 1 4 6 252 248 252 244 256 244
-	200 3 1 6 0 252 248 256 244 256 248
-	200 3 7 5 2 252 244 256 244 256 248
-	200 3 7 2 3 252 244 256 248 252 248
-	200 3 11 10 9 252 248 252 244 256 244
-	200 3 11 9 8 252 248 256 244 256 248
-	200 3 15 14 13 252 244 256 244 256 248
-	200 3 15 13 12 252 244 256 248 252 248
-	200 3 12 13 11 0 176 3 176 3 192
-	200 3 12 11 8 0 176 3 192 0 192
-	200 3 13 14 10 3 176 6 176 6 192
-	200 3 13 10 11 3 176 6 192 3 192
-	200 3 14 15 9 6 176 3 176 3 192
-	200 3 14 9 10 6 176 3 192 6 192
-	200 3 15 12 8 3 176 0 176 0 192
-	200 3 15 8 9 3 176 0 192 3 192
-	200 3 19 18 17 252 248 252 244 256 244
-	200 3 19 17 16 252 248 256 244 256 248
-	200 3 23 22 21 252 244 256 244 256 248
-	200 3 23 21 20 252 244 256 248 252 248
-	200 3 20 21 19 3 176 0 176 0 192
-	200 3 20 19 16 3 176 0 192 3 192
-	200 3 21 22 18 0 176 3 176 3 192
-	200 3 21 18 19 0 176 3 192 0 192
-	200 3 22 23 17 3 176 6 176 6 192
-	200 3 22 17 18 3 176 6 192 3 192
-	200 3 23 20 16 6 176 3 176 3 192
-	200 3 23 16 17 6 176 3 192 6 192
-	200 3 27 26 25 0 176 3 176 3 192
-	200 3 27 25 24 0 176 3 192 0 192
-	200 3 26 29 28 3 176 6 176 6 192
-	200 3 26 28 25 3 176 6 192 3 192
-	200 3 29 31 30 6 176 3 176 3 192
-	200 3 29 30 28 6 176 3 192 6 192
-	200 3 31 27 24 3 176 0 176 0 192
-	200 3 31 24 30 3 176 0 192 3 192
-	200 3 25 28 30 252 248 252 244 256 244
-	200 3 25 30 24 252 248 256 244 256 248
-	200 3 31 29 26 252 244 256 244 256 248
-	200 3 31 26 27 252 244 256 248 252 248
-CONNECTORS 4
-	-18 -17 22
-	18 -17 22
-	-18 -17 9
-	18 -17 9
diff --git a/components/weapons/gnhplasm.pie b/components/weapons/gnhplasm.pie
deleted file mode 100644
index 1ee7e3a..0000000
--- a/components/weapons/gnhplasm.pie
+++ /dev/null
@@ -1,50 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 17 
-	16 14 -24 
-	10 19 -20 
-	10 19 -63 
-	16 14 -66 
-	-11 19 -20 
-	-11 19 -63 
-	-16 14 -24 
-	-16 14 -66 
-	-16 6 -28 
-	-16 6 -70 
-	-11 1 -32 
-	-11 1 -73 
-	10 1 -32 
-	10 1 -73 
-	16 6 -28 
-	16 6 -70 
-	0 10 -68
-POLYGONS 24
-	200 3 3 2 1 240 23 245 23 245 1
-	200 3 3 1 0 240 23 245 1 240 1
-	200 3 2 5 4 229 23 242 23 242 1
-	200 3 2 4 1 229 23 242 1 229 1
-	200 3 5 7 6 226 23 231 23 231 1
-	200 3 5 6 4 226 23 231 1 226 1
-	200 3 7 9 8 231 23 240 23 240 1
-	200 3 7 8 6 231 23 240 1 231 1
-	200 3 9 11 10 240 23 245 23 245 1
-	200 3 9 10 8 240 23 245 1 240 1
-	200 3 11 13 12 229 23 242 23 242 1
-	200 3 11 12 10 229 23 242 1 229 1
-	200 3 13 15 14 226 23 231 23 231 1
-	200 3 13 14 12 226 23 231 1 226 1
-	200 3 15 3 0 231 23 240 23 240 1
-	200 3 15 0 14 231 23 240 1 231 1
-	200 3 2 3 15 240 23 237 27 237 33
-	200 3 2 15 16 240 23 237 33 246 30
-	200 3 7 5 2 256 27 253 23 240 23
-	200 3 7 2 16 256 27 240 23 246 30
-	200 3 11 9 7 253 37 256 33 256 27
-	200 3 11 7 16 253 37 256 27 246 30
-	200 3 15 13 11 237 33 240 37 253 37
-	200 3 15 11 16 237 33 253 37 246 30
-CONNECTORS 1
-	0 -69 11
diff --git a/components/weapons/gnhplsma.pie b/components/weapons/gnhplsma.pie
deleted file mode 100644
index d5853c4..0000000
--- a/components/weapons/gnhplsma.pie
+++ /dev/null
@@ -1,59 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 22 
-	5 1 -59 
-	8 5 -57 
-	-8 5 -57 
-	-6 1 -59 
-	8 10 -54 
-	-8 10 -54 
-	5 14 -52 
-	-6 14 -52 
-	11 10 -16 
-	7 14 -14 
-	-8 14 -14 
-	-11 10 -16 
-	-11 5 -19 
-	-8 1 -22 
-	7 1 -22 
-	11 5 -19 
-	5 15 -30 
-	0 22 -17 
-	-5 15 -30 
-	0 24 -2 
-	-5 17 0 
-	5 17 0
-POLYGONS 28
-	200 3 3 2 1 253 37 256 33 237 33
-	200 3 3 1 0 253 37 237 33 240 37
-	200 3 5 4 1 256 27 237 27 237 33
-	200 3 5 1 2 256 27 237 33 256 33
-	200 3 5 7 6 256 27 253 23 240 23
-	200 3 5 6 4 256 27 240 23 237 27
-	200 3 4 6 9 240 23 245 23 245 1
-	200 3 4 9 8 240 23 245 1 240 1
-	200 3 6 7 10 229 23 242 23 242 1
-	200 3 6 10 9 229 23 242 1 229 1
-	200 3 7 5 11 226 23 231 23 231 1
-	200 3 7 11 10 226 23 231 1 226 1
-	200 3 5 2 12 231 23 240 23 240 1
-	200 3 5 12 11 231 23 240 1 231 1
-	200 3 2 3 13 240 23 245 23 245 1
-	200 3 2 13 12 240 23 245 1 240 1
-	200 3 3 0 14 229 23 242 23 242 1
-	200 3 3 14 13 229 23 242 1 229 1
-	200 3 0 1 15 226 23 231 23 231 1
-	200 3 0 15 14 226 23 231 1 226 1
-	200 3 1 4 8 231 23 240 23 240 1
-	200 3 1 8 15 231 23 240 1 231 1
-	200 3 18 17 16 157 26 167 33 157 40
-	200 3 17 18 20 209 60 216 60 216 81
-	200 3 17 20 19 209 60 216 81 209 81
-	200 3 16 17 19 216 60 209 60 209 81
-	200 3 16 19 21 216 60 209 81 216 81
-	200 3 20 21 19 157 26 157 40 167 33
-CONNECTORS 1
-	0 -60 7
diff --git a/components/weapons/gnhrckt.pie b/components/weapons/gnhrckt.pie
deleted file mode 100644
index 9a198eb..0000000
--- a/components/weapons/gnhrckt.pie
+++ /dev/null
@@ -1,48 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 12 
-	-19 36 2 
-	19 36 2 
-	19 27 44 
-	-19 27 44 
-	19 13 -1 
-	19 5 40 
-	-19 5 40 
-	-19 13 -1 
-	-19 22 -43 
-	-19 44 -38 
-	19 22 -43 
-	19 44 -38
-POLYGONS 20
-	200 3 3 2 1 0 102 22 102 22 82
-	200 3 3 1 0 0 102 22 82 0 82
-	200 3 1 2 5 6 102 26 102 26 114
-	200 3 1 5 4 6 102 26 114 6 114
-	200 3 2 3 6 0 164 22 164 22 176
-	200 3 2 6 5 0 164 22 176 0 176
-	200 3 0 9 8 26 102 0 102 0 114
-	200 3 0 8 7 26 102 0 114 26 114
-	200 3 10 4 7 120 126 120 114 131 114
-	200 3 10 7 8 120 126 131 114 131 126
-	200 3 0 1 11 0 102 22 102 22 76
-	200 3 0 11 9 0 102 22 76 0 76
-	200 3 9 11 10 0 152 22 152 22 164
-	200 3 9 10 8 0 152 22 164 0 164
-	200 3 11 1 4 0 102 26 102 26 114
-	200 3 11 4 10 0 102 26 114 0 114
-	200 3 3 0 7 25 102 5 102 5 114
-	200 3 3 7 6 25 102 5 114 25 114
-	200 3 4 5 6 131 124 131 115 120 115
-	200 3 4 6 7 131 124 120 115 120 124
-CONNECTORS 8
-	-12 -40 39
-	-4 -40 39
-	4 -40 39
-	12 -40 39
-	-12 -42 29
-	-4 -42 29
-	4 -42 29
-	12 -42 29
diff --git a/components/weapons/gnhrepar.pie b/components/weapons/gnhrepar.pie
deleted file mode 100644
index 636a0e0..0000000
--- a/components/weapons/gnhrepar.pie
+++ /dev/null
@@ -1,100 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 40 
-	0 -22 -66 
-	0 4 -71 
-	-6 3 -59 
-	6 3 -59 
-	-8 7 44 
-	8 7 44 
-	8 7 15 
-	-8 7 15 
-	0 26 44 
-	0 26 15 
-	14 3 69 
-	14 32 69 
-	14 32 45 
-	14 3 45 
-	-13 3 69 
-	-13 3 45 
-	-13 32 45 
-	-13 32 69 
-	-8 7 -15 
-	8 7 -15 
-	8 7 -54 
-	-8 7 -54 
-	0 26 -15 
-	0 26 -54 
-	14 0 15 
-	4 31 15 
-	4 31 -14 
-	14 0 -14 
-	-13 0 15 
-	-13 0 -14 
-	-4 31 -14 
-	-4 31 15 
-	10 4 -54 
-	3 27 -54 
-	3 27 -77 
-	10 4 -77 
-	-10 4 -54 
-	-10 4 -77 
-	-3 27 -77 
-	-3 27 -54
-POLYGONS 51
-	200 3 2 1 0 31 177 45 177 39 191
-	200 3 3 2 0 31 177 45 177 38 191
-	200 3 1 3 0 31 177 45 177 37 191
-	200 3 7 6 5 182 66 199 66 199 83
-	200 3 7 5 4 182 66 199 83 182 83
-	200 3 6 9 8 182 66 199 66 199 83
-	200 3 6 8 5 182 66 199 83 182 83
-	200 3 9 7 4 182 66 199 66 199 83
-	200 3 9 4 8 182 66 199 83 182 83
-	200 3 13 12 11 26 101 26 77 48 77
-	200 3 13 11 10 26 101 48 77 48 101
-	200 3 17 16 15 26 77 48 77 48 101
-	200 3 17 15 14 26 77 48 101 26 101
-	200 3 14 15 13 26 77 48 77 48 101
-	200 3 14 13 10 26 77 48 101 26 101
-	200 3 15 16 12 26 77 48 77 48 101
-	200 3 15 12 13 26 77 48 101 26 101
-	200 3 16 17 11 26 77 48 77 48 101
-	200 3 16 11 12 26 77 48 101 26 101
-	200 3 17 14 10 26 77 48 77 48 101
-	200 3 17 10 11 26 77 48 101 26 101
-	200 3 21 20 19 182 62 199 62 199 87
-	200 3 21 19 18 182 62 199 87 182 87
-	200 3 20 23 22 182 62 199 62 199 87
-	200 3 20 22 19 182 62 199 87 182 87
-	200 3 23 21 18 182 62 199 62 199 87
-	200 3 23 18 22 182 62 199 87 182 87
-	200 3 27 26 25 0 140 0 129 16 129
-	200 3 27 25 24 0 140 16 129 16 140
-	200 3 31 30 29 0 129 16 129 16 140
-	200 3 31 29 28 0 129 16 140 0 140
-	200 3 28 29 27 0 129 16 129 16 140
-	200 3 28 27 24 0 129 16 140 0 140
-	200 3 29 30 26 0 129 16 129 16 140
-	200 3 29 26 27 0 129 16 140 0 140
-	200 3 30 31 25 0 129 16 129 16 140
-	200 3 30 25 26 0 129 16 140 0 140
-	200 3 31 28 24 0 129 16 129 16 140
-	200 3 31 24 25 0 129 16 140 0 140
-	200 3 35 34 33 0 194 0 178 14 178
-	200 3 35 33 32 0 194 14 178 14 194
-	200 3 39 38 37 0 178 14 178 14 194
-	200 3 39 37 36 0 178 14 194 0 194
-	200 3 36 37 35 0 178 14 178 14 194
-	200 3 36 35 32 0 178 14 194 0 194
-	200 3 37 38 34 0 178 14 178 14 194
-	200 3 37 34 35 0 178 14 194 0 194
-	200 3 38 39 33 0 178 14 178 14 194
-	200 3 38 33 34 0 178 14 194 0 194
-	200 3 39 36 32 0 178 14 178 14 194
-	200 3 39 32 33 0 178 14 194 0 194
-CONNECTORS 1
-	-3 -66 -22
diff --git a/components/weapons/gnhsnsr3.pie b/components/weapons/gnhsnsr3.pie
deleted file mode 100644
index d8a12d9..0000000
--- a/components/weapons/gnhsnsr3.pie
+++ /dev/null
@@ -1,105 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 36 
-	-7 51 16 
-	-10 58 16 
-	9 58 16 
-	7 51 16 
-	-7 57 9 
-	7 57 9 
-	-18 38 2 
-	-24 42 0 
-	-18 44 -3 
-	24 42 0 
-	18 38 2 
-	18 44 -3 
-	9 24 -17 
-	7 25 -9 
-	7 32 -16 
-	-10 24 -17 
-	-7 25 -9 
-	-7 32 -16 
-	31 39 0 
-	25 42 -4 
-	10 16 -4 
-	12 8 0 
-	25 42 4 
-	10 16 4 
-	-25 42 4 
-	-31 39 0 
-	-25 42 -4 
-	-10 16 -4 
-	-13 8 0 
-	-10 16 4 
-	-5 8 0 
-	16 16 0 
-	-6 32 -16 
-	12 28 -12 
-	12 54 12 
-	7 31 -15
-POLYGONS 62
-	200 3 28 25 26 123 159 123 140 142 140
-	200 3 28 26 27 123 159 142 140 142 159
-	200 3 28 27 30 123 159 142 159 123 153
-	200 3 26 25 24 50 77 36 89 50 102
-	200 3 27 26 24 85 140 104 140 104 159
-	200 3 27 24 29 85 140 104 159 85 159
-	200 3 20 21 30 142 140 123 140 123 153
-	200 3 20 30 27 142 140 123 153 142 159
-	200 3 21 20 31 123 159 142 159 123 154
-	200 3 27 29 23 85 140 85 159 104 159
-	200 3 27 23 20 85 140 104 159 104 140
-	200 3 19 22 18 50 77 50 102 36 89
-	200 3 19 18 31 142 140 123 140 123 154
-	200 3 19 31 20 142 140 123 154 142 159
-	200 3 20 23 22 85 140 85 159 104 159
-	200 3 20 22 19 85 140 104 159 104 140
-	200 3 17 16 32 38 102 38 77 38 102
-	200 3 8 6 16 38 102 38 77 48 77
-	200 3 8 16 17 38 102 48 77 48 102
-	200 3 4 0 6 66 102 66 77 76 77
-	200 3 4 6 8 66 102 76 77 76 102
-	200 3 12 14 33 50 77 64 80 50 83
-	200 3 13 14 32 48 77 48 102 38 102
-	200 3 13 32 16 48 77 38 102 38 77
-	200 3 2 3 34 36 102 38 77 39 102
-	200 3 5 3 0 80 102 80 77 90 77
-	200 3 5 0 4 80 102 90 77 90 102
-	200 3 10 9 34 48 77 50 102 39 102
-	200 3 10 34 3 48 77 39 102 38 77
-	200 3 11 10 3 66 102 66 77 76 77
-	200 3 11 3 5 66 102 76 77 76 102
-	200 3 13 10 11 38 77 48 77 48 102
-	200 3 13 11 35 38 77 48 102 38 99
-	200 3 11 9 33 64 99 50 102 50 83
-	200 3 11 33 14 64 99 50 83 64 80
-	200 3 14 35 11 38 102 38 99 48 102
-	200 3 13 12 9 64 80 78 77 78 102
-	200 3 13 9 10 64 80 78 102 64 99
-	200 3 16 15 12 80 102 78 77 92 77
-	200 3 16 12 13 80 102 92 77 90 102
-	200 3 1 4 8 64 102 50 99 50 80
-	200 3 1 8 7 64 102 50 80 64 77
-	200 3 6 7 15 66 102 64 77 78 77
-	200 3 6 15 16 66 102 78 77 76 102
-	200 3 9 11 5 50 102 52 77 62 77
-	200 3 9 5 2 50 102 62 77 64 102
-	200 3 0 1 7 50 99 36 102 36 77
-	200 3 0 7 6 50 99 36 77 50 80
-	200 3 7 8 17 64 77 62 102 52 102
-	200 3 7 17 15 64 77 52 102 50 77
-	200 3 15 17 14 78 77 76 102 66 102
-	200 3 15 14 12 78 77 66 102 64 77
-	200 3 23 21 18 142 159 123 159 123 140
-	200 3 23 18 22 142 159 123 140 142 140
-	200 3 2 5 4 36 102 38 77 48 77
-	200 3 2 4 1 36 102 48 77 50 102
-	200 3 29 28 21 142 159 123 159 123 140
-	200 3 29 21 23 142 159 123 140 142 140
-	200 3 3 2 1 34 77 36 101 22 101
-	200 3 3 1 0 34 77 22 101 24 77
-	200 3 29 24 25 142 159 142 140 123 140
-	200 3 29 25 28 142 159 123 140 123 159
\ No newline at end of file
diff --git a/components/weapons/gnhsnsr4.pie b/components/weapons/gnhsnsr4.pie
deleted file mode 100644
index 19db62e..0000000
--- a/components/weapons/gnhsnsr4.pie
+++ /dev/null
@@ -1,66 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 23 
-	13 6 -1 
-	-13 6 -1 
-	-11 40 17 
-	11 40 17 
-	10 41 15 
-	29 47 2 
-	29 26 -7 
-	-11 41 15 
-	-29 47 2 
-	-29 26 -7 
-	-2 19 -22 
-	-7 9 0 
-	0 6 -1 
-	7 9 0 
-	2 19 -22 
-	6 28 -19 
-	-6 28 -19 
-	-9 6 16 
-	-5 23 8 
-	5 23 8 
-	9 6 16 
-	-12 6 -1 
-	12 6 -1
-POLYGONS 36
-	200 3 3 2 1 78 76 65 76 64 101
-	200 3 3 1 0 78 76 64 101 79 101
-	200 3 0 4 5 181 154 181 141 170 141
-	200 3 0 5 6 181 154 170 141 170 154
-	200 3 6 5 4 170 154 170 141 181 141
-	200 3 6 4 0 170 154 181 141 181 154
-	200 3 1 7 8 181 154 181 141 170 141
-	200 3 1 8 9 181 154 170 141 170 154
-	200 3 9 8 7 170 154 170 141 181 141
-	200 3 9 7 1 170 154 181 141 181 154
-	200 3 12 11 10 50 101 50 76 65 95
-	200 3 13 11 12 79 76 79 101 64 89
-	200 3 13 14 10 22 76 37 83 37 94
-	200 3 13 10 11 22 76 37 94 22 101
-	200 3 14 13 12 50 95 65 76 65 101
-	200 3 10 14 12 74 95 74 84 89 90
-	200 3 3 0 4 65 77 50 100 50 77
-	200 3 1 2 7 65 100 50 77 65 77
-	200 3 7 2 3 36 75 51 75 51 102
-	200 3 7 3 4 36 75 51 102 36 102
-	200 3 1 7 4 208 95 208 84 223 84
-	200 3 1 4 0 208 95 223 84 223 95
-	200 3 7 1 1 222 84 222 95 222 95
-	200 3 7 1 7 222 84 222 95 222 84
-	200 3 7 1 1 222 84 222 95 222 95
-	200 3 7 1 7 222 84 222 95 222 84
-	200 3 7 1 1 222 84 222 95 222 95
-	200 3 7 1 7 222 84 222 95 222 84
-	200 3 10 14 15 209 81 212 81 212 59
-	200 3 10 15 16 209 81 212 59 209 59
-	200 3 16 15 14 209 59 212 59 212 81
-	200 3 16 14 10 209 59 212 81 209 81
-	200 3 20 19 18 212 81 211 59 210 59
-	200 3 20 18 17 212 81 210 59 209 81
-	200 3 21 17 18 219 81 209 81 209 59
-	200 3 19 20 22 209 59 209 81 219 81
\ No newline at end of file
diff --git a/components/weapons/gnhsuper.pie b/components/weapons/gnhsuper.pie
deleted file mode 100644
index dee08d3..0000000
--- a/components/weapons/gnhsuper.pie
+++ /dev/null
@@ -1,81 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 32 
-	-11 4 -29 
-	-5 10 -24 
-	-5 10 -65 
-	-11 4 -65 
-	-11 16 -19 
-	-11 16 -65 
-	-17 10 -24 
-	-17 10 -65 
-	-11 0 -65 
-	-21 10 -65 
-	-11 20 -65 
-	-1 10 -65 
-	-11 20 -95 
-	-1 10 -95 
-	-21 10 -95 
-	-11 0 -95 
-	13 0 -65 
-	3 10 -65 
-	13 20 -65 
-	22 10 -65 
-	13 20 -95 
-	22 10 -95 
-	3 10 -95 
-	13 0 -95 
-	13 4 -29 
-	19 10 -24 
-	19 10 -65 
-	13 4 -65 
-	13 16 -19 
-	13 16 -65 
-	6 10 -24 
-	6 10 -65
-POLYGONS 40
-	200 3 3 2 1 202 52 209 52 209 73
-	200 3 3 1 0 202 52 209 73 202 73
-	200 3 2 5 4 202 52 209 52 209 73
-	200 3 2 4 1 202 52 209 73 202 73
-	200 3 5 7 6 202 52 209 52 209 73
-	200 3 5 6 4 202 52 209 73 202 73
-	200 3 7 3 0 202 52 209 52 209 73
-	200 3 7 0 6 202 52 209 73 202 73
-	200 3 11 10 9 202 97 202 74 209 74
-	200 3 11 9 8 202 97 209 74 209 97
-	200 3 13 12 10 202 74 209 74 209 97
-	200 3 13 10 11 202 74 209 97 202 97
-	200 3 12 14 9 202 74 209 74 209 97
-	200 3 12 9 10 202 74 209 97 202 97
-	200 3 14 15 8 202 74 209 74 209 97
-	200 3 14 8 9 202 74 209 97 202 97
-	200 3 15 13 11 202 74 209 74 209 97
-	200 3 15 11 8 202 74 209 97 202 97
-	200 3 14 12 13 157 28 165 28 165 36
-	200 3 14 13 15 157 28 165 36 157 36
-	200 3 19 18 17 202 97 202 74 209 74
-	200 3 19 17 16 202 97 209 74 209 97
-	200 3 21 20 18 202 74 209 74 209 97
-	200 3 21 18 19 202 74 209 97 202 97
-	200 3 20 22 17 202 74 209 74 209 97
-	200 3 20 17 18 202 74 209 97 202 97
-	200 3 22 23 16 202 74 209 74 209 97
-	200 3 22 16 17 202 74 209 97 202 97
-	200 3 23 21 19 202 74 209 74 209 97
-	200 3 23 19 16 202 74 209 97 202 97
-	200 3 22 20 21 157 28 165 28 165 36
-	200 3 22 21 23 157 28 165 36 157 36
-	200 3 27 26 25 202 52 209 52 209 73
-	200 3 27 25 24 202 52 209 73 202 73
-	200 3 26 29 28 202 52 209 52 209 73
-	200 3 26 28 25 202 52 209 73 202 73
-	200 3 29 31 30 202 52 209 52 209 73
-	200 3 29 30 28 202 52 209 73 202 73
-	200 3 31 27 24 202 52 209 52 209 73
-	200 3 31 24 30 202 52 209 73 202 73
-CONNECTORS 1
-	0 -95 10
diff --git a/components/weapons/gnhvcan.pie b/components/weapons/gnhvcan.pie
deleted file mode 100644
index f7be7ad..0000000
--- a/components/weapons/gnhvcan.pie
+++ /dev/null
@@ -1,39 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 14 
-	0 2 -28 
-	6 8 -28 
-	6 8 -64 
-	0 2 -64 
-	0 14 -28 
-	0 14 -64 
-	-6 8 -28 
-	-6 8 -64 
-	-7 2 -28 
-	7 2 -28 
-	7 15 -28 
-	-7 15 -28 
-	7 15 -18 
-	-7 15 -18
-POLYGONS 16
-	200 3 3 2 1 44 48 47 48 47 60
-	200 3 3 1 0 44 48 47 60 44 60
-	200 3 2 5 4 44 48 47 48 47 60
-	200 3 2 4 1 44 48 47 60 44 60
-	200 3 5 7 6 44 48 47 48 47 60
-	200 3 5 6 4 44 48 47 60 44 60
-	200 3 7 3 0 44 48 47 48 47 60
-	200 3 7 0 6 44 48 47 60 44 60
-	200 3 7 5 2 65 66 70 61 76 67
-	200 3 7 2 3 65 66 76 67 71 72
-	200 3 11 10 9 9 190 0 190 0 182
-	200 3 11 9 8 9 190 0 182 9 182
-	200 3 12 9 10 0 182 9 190 0 190
-	200 3 10 11 13 9 190 0 190 0 182
-	200 3 10 13 12 9 190 0 182 9 182
-	200 3 13 11 8 9 182 9 190 0 190
-CONNECTORS 1
-	0 -66 8
diff --git a/components/weapons/gnhvcan2.pie b/components/weapons/gnhvcan2.pie
deleted file mode 100644
index 7fca191..0000000
--- a/components/weapons/gnhvcan2.pie
+++ /dev/null
@@ -1,57 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 22 
-	-7 2 -65 
-	-1 8 -65 
-	-7 14 -65 
-	-14 8 -65 
-	7 2 -29 
-	13 8 -29 
-	13 8 -65 
-	7 2 -65 
-	7 14 -29 
-	7 14 -65 
-	1 8 -29 
-	1 8 -65 
-	-7 2 -29 
-	-1 8 -29 
-	-7 14 -29 
-	-14 8 -29 
-	-15 2 -29 
-	14 2 -29 
-	13 15 -29 
-	-13 15 -29 
-	13 15 -21 
-	-13 15 -21
-POLYGONS 26
-	200 3 3 2 1 65 66 70 61 76 67
-	200 3 3 1 0 65 66 76 67 71 72
-	200 3 7 6 5 44 48 47 48 47 60
-	200 3 7 5 4 44 48 47 60 44 60
-	200 3 6 9 8 44 48 47 48 47 60
-	200 3 6 8 5 44 48 47 60 44 60
-	200 3 9 11 10 44 48 47 48 47 60
-	200 3 9 10 8 44 48 47 60 44 60
-	200 3 11 7 4 44 48 47 48 47 60
-	200 3 11 4 10 44 48 47 60 44 60
-	200 3 11 9 6 65 66 70 61 76 67
-	200 3 11 6 7 65 66 76 67 71 72
-	200 3 0 1 13 44 48 47 48 47 60
-	200 3 0 13 12 44 48 47 60 44 60
-	200 3 1 2 14 44 48 47 48 47 60
-	200 3 1 14 13 44 48 47 60 44 60
-	200 3 2 3 15 44 48 47 48 47 60
-	200 3 2 15 14 44 48 47 60 44 60
-	200 3 3 0 12 44 48 47 48 47 60
-	200 3 3 12 15 44 48 47 60 44 60
-	200 3 19 18 17 0 182 0 189 9 190
-	200 3 19 17 16 0 182 9 190 9 182
-	200 3 20 17 18 0 190 9 182 0 182
-	200 3 18 19 21 9 182 0 182 0 190
-	200 3 18 21 20 9 182 0 190 9 190
-	200 3 21 19 16 9 190 9 182 0 182
-CONNECTORS 1
-	0 -67 8
diff --git a/components/weapons/gnlacan.pie b/components/weapons/gnlacan.pie
deleted file mode 100644
index 443b742..0000000
--- a/components/weapons/gnlacan.pie
+++ /dev/null
@@ -1,27 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 8 
-	0 0 -16 
-	4 4 -12 
-	4 4 -41 
-	0 0 -41 
-	0 9 -9 
-	0 9 -41 
-	-4 4 -12 
-	-4 4 -41
-POLYGONS 10
-	200 3 3 2 1 96 62 102 62 102 72
-	200 3 3 1 0 96 62 102 72 96 71
-	200 3 2 5 4 96 62 102 62 102 73
-	200 3 2 4 1 96 62 102 73 96 72
-	200 3 5 7 6 96 62 102 62 102 72
-	200 3 5 6 4 96 62 102 72 96 73
-	200 3 7 3 0 96 62 102 62 102 71
-	200 3 7 0 6 96 62 102 71 96 72
-	200 3 7 5 2 12 60 16 60 16 64
-	200 3 7 2 3 12 60 16 64 12 64
-CONNECTORS 1
-	0 -43 5
diff --git a/components/weapons/gnlair.pie b/components/weapons/gnlair.pie
deleted file mode 100644
index 1aec5d0..0000000
--- a/components/weapons/gnlair.pie
+++ /dev/null
@@ -1,117 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 48 
-	-5 12 -27 
-	-6 14 -27 
-	-8 12 -27 
-	-6 9 -27 
-	8 12 -27 
-	6 14 -27 
-	5 12 -27 
-	6 9 -27 
-	8 12 -18 
-	6 14 -17 
-	5 12 -18 
-	6 9 -20 
-	-5 12 -18 
-	-6 14 -17 
-	-8 12 -18 
-	-6 9 -20 
-	-5 4 -23 
-	-6 6 -22 
-	-6 6 -32 
-	-5 4 -32 
-	-8 4 -23 
-	-8 4 -32 
-	-6 1 -25 
-	-6 1 -32 
-	-5 0 -26 
-	-5 0 -16 
-	-5 15 -7 
-	-5 15 -16 
-	-8 0 -26 
-	-8 15 -16 
-	-8 15 -7 
-	-8 0 -16 
-	8 4 -23 
-	6 6 -22 
-	6 6 -32 
-	8 4 -32 
-	5 4 -23 
-	5 4 -32 
-	6 1 -25 
-	6 1 -32 
-	8 0 -26 
-	8 0 -16 
-	8 15 -7 
-	8 15 -16 
-	5 0 -26 
-	5 15 -16 
-	5 15 -7 
-	5 0 -16
-POLYGONS 60
-	200 3 3 2 1 13 61 17 61 17 65
-	200 3 3 1 0 13 61 17 65 13 65
-	200 3 7 6 5 13 61 17 61 17 65
-	200 3 7 5 4 13 61 17 65 13 65
-	200 3 4 5 9 6 66 11 66 11 75
-	200 3 4 9 8 6 66 11 75 6 74
-	200 3 5 6 10 6 66 11 66 11 76
-	200 3 5 10 9 6 66 11 76 6 75
-	200 3 6 7 11 6 66 11 66 11 75
-	200 3 6 11 10 6 66 11 75 6 76
-	200 3 7 4 8 6 66 11 66 11 74
-	200 3 7 8 11 6 66 11 74 6 75
-	200 3 0 1 13 6 66 11 66 11 75
-	200 3 0 13 12 6 66 11 75 6 74
-	200 3 1 2 14 6 66 11 66 11 76
-	200 3 1 14 13 6 66 11 76 6 75
-	200 3 2 3 15 6 66 11 66 11 75
-	200 3 2 15 14 6 66 11 75 6 76
-	200 3 3 0 12 6 66 11 66 11 74
-	200 3 3 12 15 6 66 11 74 6 75
-	200 3 19 18 17 6 66 11 66 11 75
-	200 3 19 17 16 6 66 11 75 6 74
-	200 3 18 21 20 6 66 11 66 11 76
-	200 3 18 20 17 6 66 11 76 6 75
-	200 3 21 23 22 6 66 11 66 11 75
-	200 3 21 22 20 6 66 11 75 6 76
-	200 3 23 19 16 6 66 11 66 11 74
-	200 3 23 16 22 6 66 11 74 6 75
-	200 3 27 26 25 13 65 13 70 20 70
-	200 3 27 25 24 13 65 20 70 20 65
-	200 3 31 30 29 20 72 13 72 13 66
-	200 3 31 29 28 20 72 13 66 20 66
-	200 3 28 29 27 20 66 13 66 13 65
-	200 3 28 27 24 20 66 13 65 20 65
-	200 3 29 30 26 13 66 13 72 13 70
-	200 3 29 26 27 13 66 13 70 13 65
-	200 3 31 28 24 20 72 20 66 20 65
-	200 3 31 24 25 20 72 20 65 20 70
-	200 3 35 34 33 6 66 11 66 11 75
-	200 3 35 33 32 6 66 11 75 6 74
-	200 3 34 37 36 6 66 11 66 11 76
-	200 3 34 36 33 6 66 11 76 6 75
-	200 3 37 39 38 6 66 11 66 11 75
-	200 3 37 38 36 6 66 11 75 6 76
-	200 3 39 35 32 6 66 11 66 11 74
-	200 3 39 32 38 6 66 11 74 6 75
-	200 3 43 42 41 13 65 13 70 20 70
-	200 3 43 41 40 13 65 20 70 20 65
-	200 3 47 46 45 20 72 13 72 13 66
-	200 3 47 45 44 20 72 13 66 20 66
-	200 3 44 45 43 20 66 13 66 13 65
-	200 3 44 43 40 20 66 13 65 20 65
-	200 3 45 46 42 13 66 13 72 13 70
-	200 3 45 42 43 13 66 13 70 13 65
-	200 3 47 44 40 20 72 20 66 20 65
-	200 3 47 40 41 20 72 20 65 20 70
-	200 3 39 37 34 13 61 17 61 17 65
-	200 3 39 34 35 13 61 17 65 13 65
-	200 3 23 21 18 13 61 17 61 17 65
-	200 3 23 18 19 13 61 17 65 13 65
-CONNECTORS 1
-	0 -33 8
diff --git a/components/weapons/gnlassat.pie b/components/weapons/gnlassat.pie
deleted file mode 100644
index 03159db..0000000
--- a/components/weapons/gnlassat.pie
+++ /dev/null
@@ -1,31 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-7-barbarians-arizona.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 8 
-	-7 44 -7 
-	7 44 -7 
-	9 239 -9 
-	-9 239 -9 
-	7 44 7 
-	9 239 9 
-	-7 44 7 
-	-9 239 9
-POLYGONS 16
-	200 3 0 1 2 179 194 190 194 194 245
-	200 3 0 2 3 179 194 194 245 175 245
-	200 3 3 2 1 175 245 194 245 190 194
-	200 3 3 1 0 175 245 190 194 179 194
-	200 3 1 4 5 202 194 213 194 217 245
-	200 3 1 5 2 202 194 217 245 198 245
-	200 3 2 5 4 198 245 217 245 213 194
-	200 3 2 4 1 198 245 213 194 202 194
-	200 3 4 6 7 179 194 190 194 194 245
-	200 3 4 7 5 179 194 194 245 175 245
-	200 3 5 7 6 175 245 194 245 190 194
-	200 3 5 6 4 175 245 190 194 179 194
-	200 3 6 0 3 202 194 213 194 217 245
-	200 3 6 3 7 202 194 217 245 198 245
-	200 3 7 3 0 198 245 217 245 213 194
-	200 3 7 0 6 198 245 213 194 202 194
\ No newline at end of file
diff --git a/components/weapons/gnlcan.pie b/components/weapons/gnlcan.pie
deleted file mode 100644
index 24d796d..0000000
--- a/components/weapons/gnlcan.pie
+++ /dev/null
@@ -1,27 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 8 
-	0 0 -43 
-	4 4 -43 
-	0 9 -43 
-	-4 4 -43 
-	0 0 -17 
-	4 4 -14 
-	0 9 -10 
-	-4 4 -14
-POLYGONS 10
-	200 3 3 2 1 12 60 16 60 16 64
-	200 3 3 1 0 12 60 16 64 12 64
-	200 3 0 1 5 13 59 18 59 18 49
-	200 3 0 5 4 13 59 18 49 13 50
-	200 3 1 2 6 13 59 18 59 18 48
-	200 3 1 6 5 13 59 18 48 13 49
-	200 3 2 3 7 13 59 18 59 18 49
-	200 3 2 7 6 13 59 18 49 13 48
-	200 3 3 0 4 13 59 18 59 18 50
-	200 3 3 4 7 13 59 18 50 13 49
-CONNECTORS 1
-	0 -44 4
diff --git a/components/weapons/gnlcmd1.pie b/components/weapons/gnlcmd1.pie
deleted file mode 100644
index 799e256..0000000
--- a/components/weapons/gnlcmd1.pie
+++ /dev/null
@@ -1,35 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 10 
-	-19 41 21 
-	-13 18 2 
-	-5 26 0 
-	-2 26 6 
-	-10 18 12 
-	18 41 21 
-	4 26 0 
-	12 18 2 
-	9 18 12 
-	1 26 6
-POLYGONS 16
-	200 3 0 1 2 230 48 237 96 224 96
-	200 3 0 2 3 230 48 224 96 224 96
-	200 3 3 2 1 224 96 224 96 237 96
-	200 3 3 1 0 224 96 237 96 230 48
-	200 3 0 3 4 230 48 237 96 224 96
-	200 3 0 4 1 230 48 224 96 224 96
-	200 3 1 4 3 224 96 224 96 237 96
-	200 3 1 3 0 224 96 237 96 230 48
-	200 3 5 6 7 230 48 237 96 224 96
-	200 3 5 7 8 230 48 224 96 224 96
-	200 3 8 7 6 224 96 224 96 237 96
-	200 3 8 6 5 224 96 237 96 230 48
-	200 3 5 8 9 230 48 237 96 224 96
-	200 3 5 9 6 230 48 224 96 224 96
-	200 3 6 9 8 224 96 224 96 237 96
-	200 3 6 8 5 224 96 237 96 230 48
-CONNECTORS 1
-	0 12 37
diff --git a/components/weapons/gnlflmr.pie b/components/weapons/gnlflmr.pie
deleted file mode 100644
index e999502..0000000
--- a/components/weapons/gnlflmr.pie
+++ /dev/null
@@ -1,49 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 16 
-	-1 1 -12 
-	1 1 -12 
-	1 1 -28 
-	-1 1 -28 
-	1 4 -11 
-	1 4 -28 
-	-1 4 -11 
-	-1 4 -28 
-	0 0 -37 
-	3 3 -37 
-	0 6 -37 
-	-3 3 -37 
-	0 6 -28 
-	-3 3 -28 
-	0 0 -28 
-	3 3 -28
-POLYGONS 24
-	200 3 3 2 1 108 73 108 73 116 73
-	200 3 3 1 0 108 73 116 73 116 73
-	200 3 2 5 4 108 73 108 69 116 69
-	200 3 2 4 1 108 73 116 69 116 73
-	200 3 5 7 6 108 69 108 69 116 69
-	200 3 5 6 4 108 69 116 69 116 69
-	200 3 7 3 0 108 69 108 73 116 73
-	200 3 7 0 6 108 69 116 73 116 69
-	200 3 6 0 1 116 69 116 73 116 73
-	200 3 6 1 4 116 69 116 73 116 69
-	200 3 2 3 7 108 73 108 73 108 69
-	200 3 2 7 5 108 73 108 69 108 69
-	200 3 11 10 9 102 70 105 68 107 70
-	200 3 11 9 8 102 70 107 70 105 72
-	200 3 10 11 13 125 61 125 67 116 67
-	200 3 10 13 12 125 61 116 67 116 61
-	200 3 11 8 14 125 67 125 73 116 73
-	200 3 11 14 13 125 67 116 73 116 67
-	200 3 8 9 15 125 73 125 67 116 67
-	200 3 8 15 14 125 73 116 67 116 73
-	200 3 9 10 12 125 67 125 61 116 61
-	200 3 9 12 15 125 67 116 61 116 67
-	200 3 15 12 13 116 67 116 61 116 67
-	200 3 15 13 14 116 67 116 67 116 73
-CONNECTORS 1
-	0 -38 3
diff --git a/components/weapons/gnlgss.pie b/components/weapons/gnlgss.pie
deleted file mode 100644
index 0542339..0000000
--- a/components/weapons/gnlgss.pie
+++ /dev/null
@@ -1,25 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 6 
-	-10 4 -32 
-	-5 7 -32 
-	-5 7 17 
-	-10 4 8 
-	-5 1 -32 
-	-5 1 17
-POLYGONS 12
-	200 3 0 1 2 158 49 152 49 152 67
-	200 3 0 2 3 158 49 152 67 158 64
-	200 3 3 2 1 158 64 152 67 152 49
-	200 3 3 1 0 158 64 152 49 158 49
-	200 3 1 4 5 158 49 152 49 152 67
-	200 3 1 5 2 158 49 152 67 158 67
-	200 3 2 5 4 158 67 152 67 152 49
-	200 3 2 4 1 158 67 152 49 158 49
-	200 3 4 0 3 158 49 152 49 152 64
-	200 3 4 3 5 158 49 152 64 158 67
-	200 3 5 3 0 158 67 152 64 152 49
-	200 3 5 0 4 158 67 152 49 158 49
\ No newline at end of file
diff --git a/components/weapons/gnlmg1.pie b/components/weapons/gnlmg1.pie
deleted file mode 100644
index f7b194f..0000000
--- a/components/weapons/gnlmg1.pie
+++ /dev/null
@@ -1,47 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 16 
-	-3 2 -21 
-	-3 2 -15 
-	3 2 -15 
-	3 2 -21 
-	-3 5 -19 
-	3 5 -19 
-	3 5 -12 
-	-3 5 -12 
-	0 2 -21 
-	2 4 -20 
-	2 4 -27 
-	0 2 -27 
-	0 5 -20 
-	0 5 -27 
-	-2 4 -20 
-	-2 4 -27
-POLYGONS 22
-	200 3 3 2 1 12 64 12 70 19 70
-	200 3 3 1 0 12 64 19 70 19 64
-	200 3 7 6 5 19 72 12 72 12 66
-	200 3 7 5 4 19 72 12 66 19 66
-	200 3 4 5 3 19 66 12 66 12 64
-	200 3 4 3 0 19 66 12 64 19 64
-	200 3 5 6 2 12 66 12 72 12 70
-	200 3 5 2 3 12 66 12 70 12 64
-	200 3 6 7 1 12 72 19 72 19 70
-	200 3 6 1 2 12 72 19 70 12 70
-	200 3 7 4 0 19 72 19 66 19 64
-	200 3 7 0 1 19 72 19 64 19 70
-	200 3 11 10 9 6 66 11 66 11 75
-	200 3 11 9 8 6 66 11 75 6 74
-	200 3 10 13 12 6 66 11 66 11 76
-	200 3 10 12 9 6 66 11 76 6 75
-	200 3 13 15 14 6 66 11 66 11 75
-	200 3 13 14 12 6 66 11 75 6 76
-	200 3 15 11 8 6 66 11 66 11 74
-	200 3 15 8 14 6 66 11 74 6 75
-	200 3 15 13 10 12 60 16 60 16 64
-	200 3 15 10 11 12 60 16 64 12 64
-CONNECTORS 1
-	0 -28 4
diff --git a/components/weapons/gnlmg2.pie b/components/weapons/gnlmg2.pie
deleted file mode 100644
index 8766a5b..0000000
--- a/components/weapons/gnlmg2.pie
+++ /dev/null
@@ -1,63 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 24 
-	-5 2 -22 
-	-2 4 -21 
-	-2 4 -28 
-	-5 2 -28 
-	-5 5 -20 
-	-5 5 -28 
-	-7 4 -21 
-	-7 4 -28 
-	5 2 -22 
-	7 4 -21 
-	7 4 -28 
-	5 2 -28 
-	5 5 -20 
-	5 5 -28 
-	2 4 -21 
-	2 4 -28 
-	-8 2 -22 
-	-8 2 -15 
-	8 2 -15 
-	8 2 -22 
-	-8 5 -20 
-	8 5 -20 
-	8 5 -13 
-	-8 5 -13
-POLYGONS 30
-	200 3 3 2 1 6 66 11 66 11 75
-	200 3 3 1 0 6 66 11 75 6 74
-	200 3 2 5 4 6 66 11 66 11 76
-	200 3 2 4 1 6 66 11 76 6 75
-	200 3 5 7 6 6 66 11 66 11 75
-	200 3 5 6 4 6 66 11 75 6 76
-	200 3 7 3 0 6 66 11 66 11 74
-	200 3 7 0 6 6 66 11 74 6 75
-	200 3 7 5 2 12 60 16 60 16 64
-	200 3 7 2 3 12 60 16 64 12 64
-	200 3 11 10 9 6 66 11 66 11 75
-	200 3 11 9 8 6 66 11 75 6 74
-	200 3 10 13 12 6 66 11 66 11 76
-	200 3 10 12 9 6 66 11 76 6 75
-	200 3 13 15 14 6 66 11 66 11 75
-	200 3 13 14 12 6 66 11 75 6 76
-	200 3 15 11 8 6 66 11 66 11 74
-	200 3 15 8 14 6 66 11 74 6 75
-	200 3 15 13 10 12 60 16 60 16 64
-	200 3 15 10 11 12 60 16 64 12 64
-	200 3 19 18 17 209 53 202 53 202 61
-	200 3 19 17 16 209 53 202 61 209 61
-	200 3 23 22 21 209 61 209 53 202 53
-	200 3 23 21 20 209 61 202 53 202 61
-	200 3 21 22 18 201 70 208 70 208 74
-	200 3 21 18 19 201 70 208 74 201 74
-	200 3 23 20 16 201 70 208 70 208 74
-	200 3 23 16 17 201 70 208 74 201 74
-	200 3 20 21 19 205 53 205 61 202 61
-	200 3 20 19 16 205 53 202 61 202 53
-CONNECTORS 1
-	0 -30 4
diff --git a/components/weapons/gnlmsl.pie b/components/weapons/gnlmsl.pie
deleted file mode 100644
index bd1c931..0000000
--- a/components/weapons/gnlmsl.pie
+++ /dev/null
@@ -1,69 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 28 
-	17 15 14 
-	10 7 15 
-	10 7 -14 
-	17 15 -18 
-	13 4 15 
-	13 4 -14 
-	20 12 -18 
-	20 12 14 
-	13 11 -4 
-	13 11 5 
-	8 12 5 
-	8 12 -4 
-	10 7 -4 
-	10 7 5 
-	-14 4 -14 
-	-11 7 -14 
-	-17 15 -18 
-	-21 12 -18 
-	-17 15 14 
-	-21 12 14 
-	-8 12 5 
-	-14 11 5 
-	-14 11 -4 
-	-8 12 -4 
-	-10 7 -4 
-	-10 7 5 
-	-14 4 15 
-	-11 7 15
-POLYGONS 32
-	200 3 3 2 1 256 140 248 140 248 156
-	200 3 3 1 0 256 140 248 156 256 156
-	200 3 2 5 4 256 208 252 208 252 224
-	200 3 2 4 1 256 208 252 224 256 224
-	200 3 3 6 5 256 240 252 240 252 248
-	200 3 3 5 2 256 240 252 248 256 248
-	200 3 0 1 4 252 240 252 248 256 248
-	200 3 0 4 7 252 240 256 248 256 240
-	200 3 5 6 7 256 142 248 140 248 155
-	200 3 5 7 4 256 142 248 155 256 156
-	200 3 6 3 0 256 224 252 224 252 241
-	200 3 6 0 7 256 224 252 241 256 241
-	200 3 11 10 9 252 256 252 249 256 249
-	200 3 11 9 8 252 256 256 249 256 256
-	200 3 11 8 12 252 256 256 256 254 256
-	200 3 9 10 13 256 249 252 249 254 249
-	200 3 17 16 15 252 240 256 240 256 248
-	200 3 17 15 14 252 240 256 248 252 248
-	200 3 16 17 19 252 224 256 224 256 241
-	200 3 16 19 18 252 224 256 241 252 241
-	200 3 23 22 21 252 256 256 256 256 249
-	200 3 23 21 20 252 256 256 249 252 249
-	200 3 23 24 22 252 256 254 256 256 256
-	200 3 21 25 20 256 249 254 249 252 249
-	200 3 27 18 19 252 248 252 240 256 240
-	200 3 27 19 26 252 248 256 240 256 248
-	200 3 15 16 18 248 140 256 140 256 156
-	200 3 15 18 27 248 140 256 156 248 156
-	200 3 17 14 26 248 140 256 142 256 156
-	200 3 17 26 19 248 140 256 156 248 155
-	200 3 14 15 27 252 208 256 208 256 224
-	200 3 14 27 26 252 208 256 224 252 224
-CONNECTORS 1
-	-15 -20 9
diff --git a/components/weapons/gnlrckt.pie b/components/weapons/gnlrckt.pie
deleted file mode 100644
index bd1c931..0000000
--- a/components/weapons/gnlrckt.pie
+++ /dev/null
@@ -1,69 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 28 
-	17 15 14 
-	10 7 15 
-	10 7 -14 
-	17 15 -18 
-	13 4 15 
-	13 4 -14 
-	20 12 -18 
-	20 12 14 
-	13 11 -4 
-	13 11 5 
-	8 12 5 
-	8 12 -4 
-	10 7 -4 
-	10 7 5 
-	-14 4 -14 
-	-11 7 -14 
-	-17 15 -18 
-	-21 12 -18 
-	-17 15 14 
-	-21 12 14 
-	-8 12 5 
-	-14 11 5 
-	-14 11 -4 
-	-8 12 -4 
-	-10 7 -4 
-	-10 7 5 
-	-14 4 15 
-	-11 7 15
-POLYGONS 32
-	200 3 3 2 1 256 140 248 140 248 156
-	200 3 3 1 0 256 140 248 156 256 156
-	200 3 2 5 4 256 208 252 208 252 224
-	200 3 2 4 1 256 208 252 224 256 224
-	200 3 3 6 5 256 240 252 240 252 248
-	200 3 3 5 2 256 240 252 248 256 248
-	200 3 0 1 4 252 240 252 248 256 248
-	200 3 0 4 7 252 240 256 248 256 240
-	200 3 5 6 7 256 142 248 140 248 155
-	200 3 5 7 4 256 142 248 155 256 156
-	200 3 6 3 0 256 224 252 224 252 241
-	200 3 6 0 7 256 224 252 241 256 241
-	200 3 11 10 9 252 256 252 249 256 249
-	200 3 11 9 8 252 256 256 249 256 256
-	200 3 11 8 12 252 256 256 256 254 256
-	200 3 9 10 13 256 249 252 249 254 249
-	200 3 17 16 15 252 240 256 240 256 248
-	200 3 17 15 14 252 240 256 248 252 248
-	200 3 16 17 19 252 224 256 224 256 241
-	200 3 16 19 18 252 224 256 241 252 241
-	200 3 23 22 21 252 256 256 256 256 249
-	200 3 23 21 20 252 256 256 249 252 249
-	200 3 23 24 22 252 256 254 256 256 256
-	200 3 21 25 20 256 249 254 249 252 249
-	200 3 27 18 19 252 248 252 240 256 240
-	200 3 27 19 26 252 248 256 240 256 248
-	200 3 15 16 18 248 140 256 140 256 156
-	200 3 15 18 27 248 140 256 156 248 156
-	200 3 17 14 26 248 140 256 142 256 156
-	200 3 17 26 19 248 140 256 156 248 155
-	200 3 14 15 27 252 208 256 208 256 224
-	200 3 14 27 26 252 208 256 224 252 224
-CONNECTORS 1
-	-15 -20 9
diff --git a/components/weapons/gnlrcktp.pie b/components/weapons/gnlrcktp.pie
deleted file mode 100644
index 2c8cc6a..0000000
--- a/components/weapons/gnlrcktp.pie
+++ /dev/null
@@ -1,60 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 15 
-	0 15 11 
-	-3 21 11 
-	3 21 11 
-	7 15 11 
-	-3 8 11 
-	-6 15 11 
-	3 8 11 
-	3 21 -10 
-	7 15 -10 
-	-3 21 -10 
-	-6 15 -10 
-	-3 8 -10 
-	3 8 -10 
-	0 15 -16 
-	-7 15 -10
-POLYGONS 36
-	200 3 3 2 1 180 64 179 72 176 72
-	200 3 3 1 0 180 64 176 72 177 64
-	200 3 1 5 4 176 72 174 64 176 56
-	200 3 1 4 0 176 72 176 56 177 64
-	200 3 4 6 3 176 56 179 56 180 64
-	200 3 4 3 0 176 56 180 64 177 64
-	200 3 8 7 2 252 156 256 156 256 172
-	200 3 8 2 3 252 156 256 172 252 172
-	200 3 7 9 1 176 56 179 56 179 72
-	200 3 7 1 2 176 56 179 72 176 72
-	200 3 9 10 5 248 156 252 156 252 172
-	200 3 9 5 1 248 156 252 172 248 172
-	200 3 10 11 4 252 156 256 156 256 172
-	200 3 10 4 5 252 156 256 172 252 172
-	200 3 11 12 6 176 56 179 56 179 72
-	200 3 11 6 4 176 56 179 72 176 72
-	200 3 12 8 3 248 156 252 156 252 172
-	200 3 12 3 6 248 156 252 172 248 172
-	200 3 13 13 7 28 55 28 55 31 60
-	200 3 13 7 8 28 55 31 60 28 60
-	200 3 13 13 9 28 55 28 55 29 60
-	200 3 13 9 7 28 55 29 60 24 60
-	200 3 13 13 14 28 55 28 55 28 60
-	200 3 13 14 9 28 55 28 60 24 60
-	200 3 13 13 11 28 55 28 55 31 60
-	200 3 13 11 14 28 55 31 60 28 60
-	200 3 13 13 12 28 55 28 55 29 60
-	200 3 13 12 11 28 55 29 60 31 60
-	200 3 13 13 8 28 55 28 55 28 60
-	200 3 13 8 12 28 55 28 60 31 60
-	200 3 13 13 13 28 55 28 55 28 55
-	200 3 13 13 13 28 55 28 55 28 55
-	200 3 13 13 13 28 55 28 55 28 55
-	200 3 13 13 13 28 55 28 55 28 55
-	200 3 13 13 13 28 55 28 55 28 55
-	200 3 13 13 13 28 55 28 55 28 55
-CONNECTORS 1
-	0 -17 15
diff --git a/components/weapons/gnlsnsr1.pie b/components/weapons/gnlsnsr1.pie
deleted file mode 100644
index aa08066..0000000
--- a/components/weapons/gnlsnsr1.pie
+++ /dev/null
@@ -1,89 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 28 
-	0 21 0 
-	-10 33 -5 
-	0 37 -4 
-	-15 23 -8 
-	-10 12 -11 
-	0 8 -12 
-	10 33 -5 
-	15 23 -8 
-	10 12 -11 
-	0 21 -3 
-	-6 7 8 
-	-6 7 -7 
-	-4 22 0 
-	7 7 8 
-	4 22 0 
-	7 7 -7 
-	-1 7 -7 
-	0 22 0 
-	-4 19 1 
-	-6 7 -4 
-	-4 20 0 
-	-4 16 0 
-	0 15 -3 
-	0 20 0 
-	0 19 -1 
-	0 19 0 
-	-3 21 -1 
-	-3 24 -1
-POLYGONS 54
-	200 3 0 0 0 175 216 174 216 174 216
-	200 3 0 0 0 29 103 30 103 30 103
-	200 3 0 0 0 29 103 30 103 29 103
-	200 3 23 25 23 30 103 29 103 29 103
-	200 3 23 23 0 30 103 29 103 29 103
-	200 3 23 0 0 30 103 29 103 29 103
-	200 3 23 0 0 30 103 29 103 30 103
-	200 3 27 26 0 173 217 173 216 174 216
-	200 3 27 0 0 173 217 174 216 174 216
-	200 3 7 6 0 168 216 170 222 175 216
-	200 3 0 0 0 30 103 29 103 30 103
-	200 3 0 0 0 30 103 30 103 29 103
-	200 3 7 9 6 104 216 111 216 106 210
-	200 3 8 9 7 106 222 111 216 104 216
-	200 3 2 9 1 111 208 111 216 106 210
-	200 3 5 9 8 111 224 111 216 106 222
-	200 3 1 9 3 106 210 111 216 104 216
-	200 3 6 9 2 106 210 111 216 111 208
-	200 3 3 9 4 104 216 111 216 106 222
-	200 3 4 9 5 106 222 111 216 111 224
-	200 3 1 3 26 170 222 168 216 173 216
-	200 3 1 26 27 170 222 173 216 173 217
-	200 3 4 5 0 170 210 175 208 175 216
-	200 3 24 23 25 29 104 29 103 29 103
-	200 3 5 8 0 175 208 170 210 175 216
-	200 3 22 24 23 30 107 29 104 30 103
-	200 3 3 4 0 168 216 170 210 175 216
-	200 3 20 21 19 110 225 108 227 112 234
-	200 3 20 19 11 110 225 112 234 115 234
-	200 3 11 19 21 115 234 112 234 108 227
-	200 3 11 21 20 115 234 108 227 110 225
-	200 3 20 16 11 28 104 30 114 27 114
-	200 3 16 20 0 30 114 28 104 29 103
-	200 3 16 0 22 30 114 29 103 30 107
-	200 3 6 2 0 170 222 175 224 175 216
-	200 3 0 0 0 31 103 30 103 30 103
-	200 3 2 1 0 175 224 170 222 175 216
-	200 3 12 18 17 29 103 28 105 32 103
-	200 3 21 20 12 108 227 110 225 110 224
-	200 3 21 12 18 108 227 110 224 108 225
-	200 3 18 12 20 108 225 110 224 110 225
-	200 3 18 20 21 108 225 110 225 108 227
-	200 3 12 17 0 29 103 32 103 31 103
-	200 3 12 0 20 29 103 31 103 28 104
-	200 3 8 7 0 170 210 168 216 175 216
-	200 3 14 10 13 34 103 27 114 36 114
-	200 3 14 17 18 34 103 32 103 28 105
-	200 3 14 18 10 34 103 28 105 27 114
-	200 3 13 14 15 104 234 110 224 115 234
-	200 3 15 14 13 115 234 110 224 104 234
-	200 3 14 15 16 34 103 36 114 30 114
-	200 3 14 16 17 34 103 30 114 32 103
-	200 3 19 18 10 112 234 108 225 104 234
-	200 3 10 18 19 104 234 108 225 112 234
\ No newline at end of file
diff --git a/components/weapons/gnmacan.pie b/components/weapons/gnmacan.pie
deleted file mode 100644
index d93f200..0000000
--- a/components/weapons/gnmacan.pie
+++ /dev/null
@@ -1,27 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 8 
-	0 0 -24 
-	6 7 -19 
-	6 7 -61 
-	0 0 -61 
-	0 13 -14 
-	0 13 -61 
-	-6 7 -19 
-	-6 7 -61
-POLYGONS 10
-	200 3 3 2 1 96 73 102 73 102 63
-	200 3 3 1 0 96 73 102 63 96 64
-	200 3 2 5 4 96 73 102 73 102 62
-	200 3 2 4 1 96 73 102 62 96 63
-	200 3 5 7 6 96 73 102 73 102 63
-	200 3 5 6 4 96 73 102 63 96 62
-	200 3 7 3 0 96 73 102 73 102 64
-	200 3 7 0 6 96 73 102 64 96 63
-	200 3 7 5 2 12 60 16 60 16 64
-	200 3 7 2 3 12 60 16 64 12 64
-CONNECTORS 1
-	0 -63 7
diff --git a/components/weapons/gnmair.pie b/components/weapons/gnmair.pie
deleted file mode 100644
index e75b225..0000000
--- a/components/weapons/gnmair.pie
+++ /dev/null
@@ -1,45 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 16 
-	-6 0 -18 
-	-3 3 -18 
-	-3 3 -44 
-	-6 0 -44 
-	-6 6 -18 
-	-6 6 -44 
-	-9 3 -18 
-	-9 3 -44 
-	6 0 -44 
-	9 3 -44 
-	6 6 -44 
-	4 3 -44 
-	6 0 -18 
-	9 3 -18 
-	6 6 -18 
-	4 3 -18
-POLYGONS 20
-	200 3 3 2 1 196 19 191 19 191 0
-	200 3 3 1 0 196 19 191 0 196 0
-	200 3 2 5 4 196 19 191 19 191 0
-	200 3 2 4 1 196 19 191 0 196 0
-	200 3 5 7 6 196 19 191 19 191 0
-	200 3 5 6 4 196 19 191 0 196 0
-	200 3 7 3 0 196 19 191 19 191 0
-	200 3 7 0 6 196 19 191 0 196 0
-	200 3 7 5 2 164 36 157 36 157 28
-	200 3 7 2 3 164 36 157 28 164 28
-	200 3 11 10 9 164 36 157 36 157 28
-	200 3 11 9 8 164 36 157 28 164 28
-	200 3 8 9 13 196 19 191 19 191 0
-	200 3 8 13 12 196 19 191 0 196 0
-	200 3 9 10 14 196 19 191 19 191 0
-	200 3 9 14 13 196 19 191 0 196 0
-	200 3 10 11 15 196 19 191 19 191 0
-	200 3 10 15 14 196 19 191 0 196 0
-	200 3 11 8 12 196 19 191 19 191 0
-	200 3 11 12 15 196 19 191 0 196 0
-CONNECTORS 1
-	0 -44 3
diff --git a/components/weapons/gnmair2.pie b/components/weapons/gnmair2.pie
deleted file mode 100644
index c5b3526..0000000
--- a/components/weapons/gnmair2.pie
+++ /dev/null
@@ -1,64 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 24 
-	-9 3 0 
-	-9 3 -6 
-	9 11 7 
-	9 12 -6 
-	7 8 -6 
-	4 4 -6 
-	4 11 -6 
-	1 8 -6 
-	1 8 -44 
-	7 8 -44 
-	-7 8 -6 
-	-4 11 -6 
-	-4 4 -6 
-	-1 8 -6 
-	-1 8 -44 
-	-4 11 -44 
-	-4 6 -44 
-	9 3 0 
-	9 3 -6 
-	-9 11 7 
-	-9 12 -6 
-	4 6 -44 
-	4 11 -44 
-	-7 8 -44
-POLYGONS 30
-	200 3 19 0 20 142 65 142 56 134 57
-	200 3 0 1 20 142 56 138 53 134 57
-	200 3 0 17 1 9 191 9 177 14 191
-	200 3 17 18 1 9 177 14 177 14 191
-	200 3 2 3 17 142 65 134 57 142 56
-	200 3 3 18 17 134 57 138 53 142 56
-	200 3 2 19 3 1 177 1 191 9 177
-	200 3 19 20 3 1 191 9 191 9 177
-	200 3 20 1 3 9 191 14 191 9 177
-	200 3 1 18 3 14 191 14 177 9 177
-	200 3 7 8 6 191 0 191 17 193 0
-	200 3 8 22 6 191 17 193 17 193 0
-	200 3 5 21 7 193 0 193 17 191 0
-	200 3 21 8 7 193 17 191 17 191 0
-	200 3 4 6 9 194 0 193 0 194 17
-	200 3 6 22 9 193 0 193 17 194 17
-	200 3 5 4 21 193 0 194 0 193 17
-	200 3 4 9 21 194 0 194 17 193 17
-	200 3 8 21 22 144 39 144 43 148 39
-	200 3 21 9 22 144 43 148 43 148 39
-	200 3 13 11 14 194 0 193 0 194 17
-	200 3 11 15 14 193 0 193 17 194 17
-	200 3 12 13 16 193 0 194 0 193 17
-	200 3 13 14 16 194 0 194 17 193 17
-	200 3 10 23 11 191 0 191 17 193 0
-	200 3 23 15 11 191 17 193 17 193 0
-	200 3 12 16 10 193 0 193 17 191 0
-	200 3 16 23 10 193 17 191 17 191 0
-	200 3 14 15 16 148 43 148 39 144 43
-	200 3 15 23 16 148 39 144 39 144 43
-CONNECTORS 2
-	3 -43 8
-	-3 -43 8
diff --git a/components/weapons/gnmair3.pie b/components/weapons/gnmair3.pie
deleted file mode 100644
index abbaeb6..0000000
--- a/components/weapons/gnmair3.pie
+++ /dev/null
@@ -1,56 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 16 
-	29 11 12 
-	-29 11 -12 
-	-10 5 -12 
-	10 11 -12 
-	29 11 -12 
-	29 5 -12 
-	29 5 12 
-	10 11 12 
-	10 5 12 
-	10 5 -12 
-	-29 5 -12 
-	-10 11 12 
-	-10 5 12 
-	-10 11 -12 
-	-29 11 12 
-	-29 5 12
-POLYGONS 24
-	200 3 7 3 8 24 102 2 102 24 107
-	200 3 8 3 9 24 107 2 102 2 107
-	200 3 3 4 9 0 152 21 152 0 159
-	200 3 9 4 5 0 159 21 152 21 159
-	200 3 4 0 5 2 102 24 102 2 107
-	200 3 5 0 6 2 107 24 102 24 107
-	200 3 0 7 6 0 164 21 164 0 170
-	200 3 6 7 8 0 170 21 164 21 170
-	200 3 3 7 4 0 78 0 101 22 78
-	200 3 7 0 4 0 101 22 101 22 78
-	200 3 8 9 6 0 101 0 78 22 101
-	200 3 6 9 5 22 101 0 78 22 78
-	200 3 14 1 15 24 102 2 102 24 107
-	200 3 15 1 10 24 107 2 102 2 107
-	200 3 1 13 10 0 152 21 152 0 159
-	200 3 10 13 2 0 159 21 152 21 159
-	200 3 13 11 2 2 102 24 102 2 107
-	200 3 2 11 12 2 107 24 102 24 107
-	200 3 11 14 12 0 164 21 164 0 170
-	200 3 12 14 15 0 170 21 164 21 170
-	200 3 1 14 13 0 78 0 101 22 78
-	200 3 13 14 11 22 78 0 101 22 101
-	200 3 15 10 12 0 101 0 78 22 101
-	200 3 12 10 2 22 101 0 78 22 78
-CONNECTORS 8
-	13 -12 8
-	-13 -12 8
-	18 -12 8
-	-17 -12 8
-	22 -12 8
-	-21 -12 8
-	27 -12 8
-	-26 -12 8
diff --git a/components/weapons/gnmcan.pie b/components/weapons/gnmcan.pie
deleted file mode 100644
index 84b385f..0000000
--- a/components/weapons/gnmcan.pie
+++ /dev/null
@@ -1,27 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 8 
-	0 2 -61 
-	5 7 -61 
-	0 12 -61 
-	-5 7 -61 
-	0 2 -25 
-	5 7 -20 
-	0 12 -15 
-	-5 7 -20
-POLYGONS 10
-	200 3 3 2 1 16 64 12 64 12 60
-	200 3 3 1 0 16 64 12 60 16 60
-	200 3 0 1 5 6 66 12 66 12 51
-	200 3 0 5 4 6 66 12 51 6 53
-	200 3 1 2 6 6 66 12 66 12 49
-	200 3 1 6 5 6 66 12 49 6 51
-	200 3 2 3 7 6 66 12 66 12 51
-	200 3 2 7 6 6 66 12 51 6 49
-	200 3 3 0 4 6 66 12 66 12 53
-	200 3 3 4 7 6 66 12 53 6 51
-CONNECTORS 1
-	0 -61 7
diff --git a/components/weapons/gnmecm1.pie b/components/weapons/gnmecm1.pie
deleted file mode 100644
index ed73cc7..0000000
--- a/components/weapons/gnmecm1.pie
+++ /dev/null
@@ -1,83 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 32 
-	-7 45 3 
-	-7 45 -3 
-	-7 51 -7 
-	-7 51 7 
-	-7 57 -3 
-	-7 57 3 
-	7 45 -3 
-	7 45 3 
-	7 51 7 
-	7 51 -7 
-	7 57 -3 
-	7 57 3 
-	-10 7 -10 
-	11 7 -10 
-	3 71 -3 
-	-3 71 -3 
-	11 7 10 
-	3 71 3 
-	-10 7 10 
-	-3 71 3 
-	5 17 10 
-	-4 17 10 
-	-9 25 10 
-	10 25 10 
-	-4 34 10 
-	5 34 10 
-	-4 17 -10 
-	5 17 -10 
-	10 25 -10 
-	-9 25 -10 
-	5 34 -10 
-	-4 34 -10
-POLYGONS 42
-	200 3 0 1 2 127 114 119 114 115 106
-	200 3 0 2 3 127 114 115 106 131 106
-	200 3 3 2 1 131 106 115 106 119 114
-	200 3 3 1 0 131 106 119 114 127 114
-	200 3 2 4 5 115 106 119 98 127 98
-	200 3 2 5 3 115 106 127 98 131 106
-	200 3 3 5 4 131 106 127 98 119 98
-	200 3 3 4 2 131 106 119 98 115 106
-	200 3 6 7 8 119 114 127 114 131 106
-	200 3 6 8 9 119 114 131 106 115 106
-	200 3 9 8 7 115 106 131 106 127 114
-	200 3 9 7 6 115 106 127 114 119 114
-	200 3 10 9 8 119 98 115 106 131 106
-	200 3 10 8 11 119 98 131 106 127 98
-	200 3 11 8 9 127 98 131 106 115 106
-	200 3 11 9 10 127 98 115 106 119 98
-	200 3 15 14 13 209 110 214 110 218 160
-	200 3 15 13 12 209 110 218 160 205 160
-	200 3 14 17 16 209 110 214 110 218 160
-	200 3 14 16 13 209 110 218 160 205 160
-	200 3 17 19 18 209 110 214 110 218 160
-	200 3 17 18 16 209 110 218 160 205 160
-	200 3 19 15 12 209 110 214 110 218 160
-	200 3 19 12 18 209 110 218 160 205 160
-	200 3 17 14 15 209 143 209 127 214 127
-	200 3 17 15 19 209 143 214 127 214 143
-	200 3 20 21 22 127 114 119 114 115 106
-	200 3 20 22 23 127 114 115 106 131 106
-	200 3 23 22 21 131 106 115 106 119 114
-	200 3 23 21 20 131 106 119 114 127 114
-	200 3 22 24 25 115 106 119 98 127 98
-	200 3 22 25 23 115 106 127 98 131 106
-	200 3 23 25 24 131 106 127 98 119 98
-	200 3 23 24 22 131 106 119 98 115 106
-	200 3 26 27 28 127 114 119 114 115 106
-	200 3 26 28 29 127 114 115 106 131 106
-	200 3 29 28 27 131 106 115 106 119 114
-	200 3 29 27 26 131 106 119 114 127 114
-	200 3 28 30 31 115 106 119 98 127 98
-	200 3 28 31 29 115 106 127 98 131 106
-	200 3 29 31 30 131 106 127 98 119 98
-	200 3 29 30 28 131 106 119 98 115 106
-CONNECTORS 1
-	0 0 71
diff --git a/components/weapons/gnmecm2.pie b/components/weapons/gnmecm2.pie
deleted file mode 100644
index 75b46fd..0000000
--- a/components/weapons/gnmecm2.pie
+++ /dev/null
@@ -1,119 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 48 
-	-2 13 13 
-	-7 13 5 
-	-9 21 0 
-	0 21 17 
-	-7 30 5 
-	-2 30 13 
-	2 13 -13 
-	7 13 -4 
-	9 21 0 
-	0 21 -17 
-	7 30 -4 
-	2 30 -13 
-	0 6 -16 
-	8 6 -1 
-	3 70 -4 
-	0 70 -11 
-	-9 6 -1 
-	-3 70 -4 
-	0 6 16 
-	-9 6 0 
-	-3 70 4 
-	0 70 10 
-	8 6 0 
-	3 70 4 
-	-1 53 10 
-	-4 53 5 
-	-5 58 3 
-	0 58 13 
-	-1 63 10 
-	-4 63 5 
-	1 53 -10 
-	4 53 -5 
-	5 58 -3 
-	0 58 -13 
-	1 63 -10 
-	4 63 -5 
-	-6 35 -5 
-	-2 35 -11 
-	0 42 -14 
-	-8 42 -2 
-	-6 48 -5 
-	-2 48 -11 
-	4 35 5 
-	1 35 11 
-	0 42 14 
-	6 42 2 
-	4 48 5 
-	1 48 11
-POLYGONS 62
-	200 3 0 1 2 228 244 220 244 216 236
-	200 3 0 2 3 228 244 216 236 232 236
-	200 3 3 2 1 232 236 216 236 220 244
-	200 3 3 1 0 232 236 220 244 228 244
-	200 3 2 4 5 216 236 220 228 228 228
-	200 3 2 5 3 216 236 228 228 232 236
-	200 3 3 5 4 232 236 228 228 220 228
-	200 3 3 4 2 232 236 220 228 216 236
-	200 3 6 7 8 228 244 220 244 216 236
-	200 3 6 8 9 228 244 216 236 232 236
-	200 3 9 8 7 232 236 216 236 220 244
-	200 3 9 7 6 232 236 220 244 228 244
-	200 3 8 10 11 216 236 220 228 228 228
-	200 3 8 11 9 216 236 228 228 232 236
-	200 3 9 11 10 232 236 228 228 220 228
-	200 3 9 10 8 232 236 220 228 216 236
-	200 3 15 14 13 227 51 232 51 236 97
-	200 3 15 13 12 227 51 236 97 223 97
-	200 3 14 17 16 227 51 232 51 236 97
-	200 3 14 16 13 227 51 236 97 223 97
-	200 3 17 15 12 227 51 232 51 236 97
-	200 3 17 12 16 227 51 236 97 223 97
-	200 3 15 17 14 227 74 232 65 232 83
-	200 3 21 20 19 227 51 232 51 236 97
-	200 3 21 19 18 227 51 236 97 223 97
-	200 3 20 23 22 227 51 232 51 236 97
-	200 3 20 22 19 227 51 236 97 223 97
-	200 3 23 21 18 227 51 232 51 236 97
-	200 3 23 18 22 227 51 236 97 223 97
-	200 3 21 23 20 227 74 232 65 232 83
-	200 3 24 25 26 220 244 228 244 232 236
-	200 3 24 26 27 220 244 232 236 216 236
-	200 3 27 26 25 216 236 232 236 228 244
-	200 3 27 25 24 216 236 228 244 220 244
-	200 3 28 27 26 220 228 216 236 232 236
-	200 3 28 26 29 220 228 232 236 228 228
-	200 3 29 26 27 228 228 232 236 216 236
-	200 3 29 27 28 228 228 216 236 220 228
-	200 3 30 31 32 220 244 228 244 232 236
-	200 3 30 32 33 220 244 232 236 216 236
-	200 3 33 32 31 216 236 232 236 228 244
-	200 3 33 31 30 216 236 228 244 220 244
-	200 3 34 33 32 220 228 216 236 232 236
-	200 3 34 32 35 220 228 232 236 228 228
-	200 3 35 32 33 228 228 232 236 216 236
-	200 3 35 33 34 228 228 216 236 220 228
-	200 3 36 37 38 220 244 228 244 232 236
-	200 3 36 38 39 220 244 232 236 216 236
-	200 3 39 38 37 216 236 232 236 228 244
-	200 3 39 37 36 216 236 228 244 220 244
-	200 3 40 39 38 220 228 216 236 232 236
-	200 3 40 38 41 220 228 232 236 228 228
-	200 3 41 38 39 228 228 232 236 216 236
-	200 3 41 39 40 228 228 216 236 220 228
-	200 3 42 43 44 220 244 228 244 232 236
-	200 3 42 44 45 220 244 232 236 216 236
-	200 3 45 44 43 216 236 232 236 228 244
-	200 3 45 43 42 216 236 228 244 220 244
-	200 3 46 45 44 220 228 216 236 232 236
-	200 3 46 44 47 220 228 232 236 228 228
-	200 3 47 44 45 228 228 232 236 216 236
-	200 3 47 45 46 228 228 216 236 220 228
-CONNECTORS 1
-	0 0 69
diff --git a/components/weapons/gnmflmr.pie b/components/weapons/gnmflmr.pie
deleted file mode 100644
index 5f74a82..0000000
--- a/components/weapons/gnmflmr.pie
+++ /dev/null
@@ -1,89 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 32 
-	-8 1 -15 
-	-4 1 -15 
-	-4 1 -32 
-	-8 1 -32 
-	-4 4 -14 
-	-4 4 -32 
-	-8 4 -14 
-	-8 4 -32 
-	-6 0 -42 
-	-2 3 -42 
-	-6 7 -42 
-	-10 3 -42 
-	-6 7 -32 
-	-10 3 -32 
-	-6 0 -32 
-	-2 3 -32 
-	6 0 -42 
-	10 3 -42 
-	6 7 -42 
-	2 3 -42 
-	6 7 -32 
-	2 3 -32 
-	6 0 -32 
-	10 3 -32 
-	4 1 -15 
-	8 1 -15 
-	8 1 -32 
-	4 1 -32 
-	8 4 -14 
-	8 4 -32 
-	4 4 -14 
-	4 4 -32
-POLYGONS 48
-	200 3 3 2 1 108 73 108 73 116 73
-	200 3 3 1 0 108 73 116 73 116 73
-	200 3 2 5 4 108 73 108 69 116 69
-	200 3 2 4 1 108 73 116 69 116 73
-	200 3 5 7 6 108 69 108 69 116 69
-	200 3 5 6 4 108 69 116 69 116 69
-	200 3 7 3 0 108 69 108 73 116 73
-	200 3 7 0 6 108 69 116 73 116 69
-	200 3 6 0 1 116 69 116 73 116 73
-	200 3 6 1 4 116 69 116 73 116 69
-	200 3 2 3 7 108 73 108 73 108 69
-	200 3 2 7 5 108 73 108 69 108 69
-	200 3 11 10 9 102 70 105 68 107 70
-	200 3 11 9 8 102 70 107 70 105 72
-	200 3 10 11 13 125 61 125 67 116 67
-	200 3 10 13 12 125 61 116 67 116 61
-	200 3 11 8 14 125 67 125 73 116 73
-	200 3 11 14 13 125 67 116 73 116 67
-	200 3 8 9 15 125 73 125 67 116 67
-	200 3 8 15 14 125 73 116 67 116 73
-	200 3 9 10 12 125 67 125 61 116 61
-	200 3 9 12 15 125 67 116 61 116 67
-	200 3 15 12 13 116 67 116 61 116 67
-	200 3 15 13 14 116 67 116 67 116 73
-	200 3 19 18 17 102 70 105 68 107 70
-	200 3 19 17 16 102 70 107 70 105 72
-	200 3 18 19 21 125 61 125 67 116 67
-	200 3 18 21 20 125 61 116 67 116 61
-	200 3 19 16 22 125 67 125 73 116 73
-	200 3 19 22 21 125 67 116 73 116 67
-	200 3 16 17 23 125 73 125 67 116 67
-	200 3 16 23 22 125 73 116 67 116 73
-	200 3 17 18 20 125 67 125 61 116 61
-	200 3 17 20 23 125 67 116 61 116 67
-	200 3 23 20 21 116 67 116 61 116 67
-	200 3 23 21 22 116 67 116 67 116 73
-	200 3 27 26 25 108 73 108 73 116 73
-	200 3 27 25 24 108 73 116 73 116 73
-	200 3 26 29 28 108 73 108 69 116 69
-	200 3 26 28 25 108 73 116 69 116 73
-	200 3 29 31 30 108 69 108 69 116 69
-	200 3 29 30 28 108 69 116 69 116 69
-	200 3 31 27 24 108 69 108 73 116 73
-	200 3 31 24 30 108 69 116 73 116 69
-	200 3 30 24 25 116 69 116 73 116 73
-	200 3 30 25 28 116 69 116 73 116 69
-	200 3 26 27 31 108 73 108 73 108 69
-	200 3 26 31 29 108 73 108 69 108 69
-CONNECTORS 1
-	0 -42 3
diff --git a/components/weapons/gnmflmrp.pie b/components/weapons/gnmflmrp.pie
deleted file mode 100644
index 2b3b237..0000000
--- a/components/weapons/gnmflmrp.pie
+++ /dev/null
@@ -1,31 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 12 
-	0 11 -13 
-	-2 7 -15 
-	-2 7 -27 
-	0 11 -27 
-	2 7 -15 
-	2 7 -27 
-	-2 7 -39 
-	2 7 -39 
-	0 12 -39 
-	6 5 -27 
-	-7 5 -27 
-	0 17 -27
-POLYGONS 12
-	200 3 3 2 1 108 68 108 73 116 73
-	200 3 3 1 0 108 68 116 73 116 68
-	200 3 5 3 0 116 73 116 68 108 68
-	200 3 5 0 4 116 73 108 68 108 73
-	200 3 8 7 6 105 70 103 71 103 69
-	200 3 11 10 9 107 70 102 68 102 72
-	200 3 8 6 10 125 61 125 73 116 73
-	200 3 8 10 11 125 61 116 73 116 61
-	200 3 6 7 9 125 61 125 73 116 73
-	200 3 6 9 10 125 61 116 73 116 61
-	200 3 7 8 11 116 73 116 61 125 61
-	200 3 7 11 9 116 73 125 61 125 73
\ No newline at end of file
diff --git a/components/weapons/gnmgss.pie b/components/weapons/gnmgss.pie
deleted file mode 100644
index cdd9619..0000000
--- a/components/weapons/gnmgss.pie
+++ /dev/null
@@ -1,25 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 6 
-	-16 6 -49 
-	-8 10 -49 
-	-8 10 4 
-	-16 6 4 
-	-9 1 -49 
-	-9 1 4
-POLYGONS 12
-	200 3 0 1 2 158 45 152 45 152 71
-	200 3 0 2 3 158 45 152 71 158 71
-	200 3 3 2 1 158 71 152 71 152 45
-	200 3 3 1 0 158 71 152 45 158 45
-	200 3 1 4 5 158 45 152 45 152 71
-	200 3 1 5 2 158 45 152 71 158 71
-	200 3 2 5 4 158 71 152 71 152 45
-	200 3 2 4 1 158 71 152 45 158 45
-	200 3 4 0 3 158 45 152 45 152 71
-	200 3 4 3 5 158 45 152 71 158 71
-	200 3 5 3 0 158 71 152 71 152 45
-	200 3 5 0 4 158 71 152 45 158 45
\ No newline at end of file
diff --git a/components/weapons/gnmhowt.pie b/components/weapons/gnmhowt.pie
deleted file mode 100644
index bc2939c..0000000
--- a/components/weapons/gnmhowt.pie
+++ /dev/null
@@ -1,47 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 16 
-	0 15 -67 
-	4 19 -67 
-	0 23 -67 
-	-4 19 -67 
-	0 15 -15 
-	-4 19 -15 
-	0 23 -15 
-	4 19 -15 
-	-5 12 -14 
-	-5 24 -14 
-	-5 24 2 
-	-5 12 2 
-	5 12 -14 
-	5 12 2 
-	5 24 2 
-	5 24 -14
-POLYGONS 22
-	200 3 3 2 1 160 74 160 62 172 62
-	200 3 3 1 0 160 74 172 62 172 74
-	200 3 7 6 5 225 155 221 155 225 155
-	200 3 7 5 4 225 155 225 155 228 155
-	200 3 0 1 7 228 173 225 173 225 155
-	200 3 0 7 4 228 173 225 155 228 155
-	200 3 1 2 6 225 173 221 173 221 155
-	200 3 1 6 7 225 173 221 155 225 155
-	200 3 2 3 5 221 173 225 173 225 155
-	200 3 2 5 6 221 173 225 155 221 155
-	200 3 3 0 4 225 173 228 173 228 155
-	200 3 3 4 5 225 173 228 155 225 155
-	200 3 11 10 9 77 71 77 61 90 61
-	200 3 11 9 8 77 71 90 61 90 71
-	200 3 15 14 13 77 61 90 61 90 71
-	200 3 15 13 12 77 61 90 71 77 71
-	200 3 13 14 10 77 71 77 61 90 61
-	200 3 13 10 11 77 71 90 61 90 71
-	200 3 14 15 9 90 61 90 71 77 71
-	200 3 14 9 10 90 61 77 71 77 61
-	200 3 15 12 8 90 61 90 71 77 71
-	200 3 15 8 9 90 61 77 71 77 61
-CONNECTORS 1
-	0 -67 19
diff --git a/components/weapons/gnmhowti.pie b/components/weapons/gnmhowti.pie
deleted file mode 100644
index 3fd8192..0000000
--- a/components/weapons/gnmhowti.pie
+++ /dev/null
@@ -1,65 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 26 
-	3 26 -15 
-	0 30 -13 
-	0 32 -38 
-	3 28 -39 
-	-3 26 -15 
-	-3 28 -39 
-	0 15 -31 
-	-2 26 -15 
-	-2 29 -13 
-	-2 30 -2 
-	-2 26 0 
-	2 26 -15 
-	2 26 0 
-	2 30 -2 
-	2 29 -13 
-	-6 12 -17 
-	-6 26 -17 
-	-6 26 3 
-	-6 12 3 
-	6 12 -17 
-	6 12 3 
-	6 26 3 
-	6 26 -17 
-	-3 26 -18 
-	0 16 -17 
-	3 26 -18
-POLYGONS 30
-	200 3 3 2 1 149 48 152 48 153 66
-	200 3 3 1 0 149 48 153 66 149 62
-	200 3 2 5 4 147 48 151 48 150 62
-	200 3 2 4 1 147 48 150 62 147 66
-	200 3 6 5 2 177 59 171 75 160 76
-	200 3 6 2 3 177 59 160 76 161 65
-	200 3 10 9 8 61 48 60 48 51 48
-	200 3 10 8 7 61 48 51 48 49 48
-	200 3 14 13 12 51 57 60 57 61 57
-	200 3 14 12 11 51 57 61 57 49 57
-	200 3 12 13 9 61 57 60 57 60 48
-	200 3 12 9 10 61 57 60 48 61 48
-	200 3 13 14 8 60 57 51 57 51 48
-	200 3 13 8 9 60 57 51 48 60 48
-	200 3 14 11 7 51 57 49 57 49 48
-	200 3 14 7 8 51 57 49 48 51 48
-	200 3 18 17 16 77 71 77 61 90 61
-	200 3 18 16 15 77 71 90 61 90 71
-	200 3 22 21 20 77 61 90 61 90 71
-	200 3 22 20 19 77 61 90 71 77 71
-	200 3 20 21 17 77 71 77 61 90 61
-	200 3 20 17 18 77 71 90 61 90 71
-	200 3 21 22 16 90 61 90 71 77 71
-	200 3 21 16 17 90 61 77 71 77 61
-	200 3 22 19 15 90 61 90 71 77 71
-	200 3 22 15 16 90 61 77 71 77 61
-	200 3 6 24 23 152 69 152 76 146 76
-	200 3 6 23 5 152 69 146 76 146 65
-	200 3 24 6 3 152 76 152 69 146 65
-	200 3 24 3 25 152 76 146 65 146 76
-CONNECTORS 1
-	0 -39 26
diff --git a/components/weapons/gnmlas.pie b/components/weapons/gnmlas.pie
deleted file mode 100644
index beb3c09..0000000
--- a/components/weapons/gnmlas.pie
+++ /dev/null
@@ -1,35 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 12 
-	0 13 -30 
-	-4 5 -30 
-	-4 5 -38 
-	0 13 -38 
-	4 5 -30 
-	4 5 -38 
-	0 11 -11 
-	-2 6 -11 
-	-2 6 -30 
-	0 11 -30 
-	2 6 -11 
-	2 6 -30
-POLYGONS 14
-	200 3 3 2 1 242 25 251 25 251 37
-	200 3 3 1 0 242 25 251 37 242 37
-	200 3 2 5 4 242 25 251 25 251 37
-	200 3 2 4 1 242 25 251 37 242 37
-	200 3 5 3 0 242 25 251 25 251 37
-	200 3 5 0 4 242 25 251 37 242 37
-	200 3 2 3 5 157 26 167 33 157 40
-	200 3 0 1 4 46 185 56 179 56 191
-	200 3 9 8 7 33 177 46 177 46 192
-	200 3 9 7 6 33 177 46 192 33 192
-	200 3 8 11 10 33 177 46 177 46 192
-	200 3 8 10 7 33 177 46 192 33 192
-	200 3 11 9 6 33 177 46 177 46 192
-	200 3 11 6 10 33 177 46 192 33 192
-CONNECTORS 1
-	0 -40 9
diff --git a/components/weapons/gnmmg1.pie b/components/weapons/gnmmg1.pie
deleted file mode 100644
index 866dd9f..0000000
--- a/components/weapons/gnmmg1.pie
+++ /dev/null
@@ -1,47 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 16 
-	0 0 -20 
-	-5 5 -18 
-	0 10 -15 
-	5 5 -18 
-	0 0 -35 
-	5 5 -35 
-	0 10 -35 
-	-5 5 -35 
-	0 4 -40 
-	-2 7 -40 
-	-2 7 -36 
-	0 4 -36 
-	2 7 -40 
-	2 7 -36 
-	0 9 -36 
-	0 9 -40
-POLYGONS 22
-	200 3 3 2 1 83 69 89 70 83 69
-	200 3 3 1 0 83 69 83 69 76 68
-	200 3 7 6 5 83 61 89 61 83 61
-	200 3 7 5 4 83 61 83 61 76 61
-	200 3 4 5 3 76 61 83 61 83 69
-	200 3 4 3 0 76 61 83 69 76 68
-	200 3 5 6 2 83 61 89 61 89 70
-	200 3 5 2 3 83 61 89 70 83 69
-	200 3 6 7 1 89 61 83 61 83 69
-	200 3 6 1 2 89 61 83 69 89 70
-	200 3 7 4 0 83 61 76 61 76 68
-	200 3 7 0 1 83 61 76 68 83 69
-	200 3 11 10 9 39 70 33 70 33 71
-	200 3 11 9 8 39 70 33 71 39 71
-	200 3 15 14 13 39 71 39 70 45 70
-	200 3 15 13 12 39 71 45 70 45 71
-	200 3 12 13 11 45 71 45 70 39 70
-	200 3 12 11 8 45 71 39 70 39 71
-	200 3 14 15 9 39 70 39 71 33 71
-	200 3 14 9 10 39 70 33 71 33 70
-	200 3 15 12 8 38 71 36 71 33 71
-	200 3 15 8 9 38 71 33 71 36 70
-CONNECTORS 1
-	0 -40 7
diff --git a/components/weapons/gnmmg2.pie b/components/weapons/gnmmg2.pie
deleted file mode 100644
index aa3ca9c..0000000
--- a/components/weapons/gnmmg2.pie
+++ /dev/null
@@ -1,65 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 24 
-	-5 0 -17 
-	6 0 -17 
-	6 11 -17 
-	-5 11 -17 
-	-5 0 -10 
-	6 0 -10 
-	6 11 -10 
-	-5 11 -10 
-	0 0 -18 
-	6 5 -18 
-	6 5 -39 
-	0 0 -39 
-	0 11 -18 
-	0 11 -39 
-	-6 5 -18 
-	-6 5 -39 
-	-5 16 -10 
-	-9 12 -10 
-	-9 12 -18 
-	-5 16 -18 
-	-7 5 -10 
-	-7 5 -18 
-	1 13 -10 
-	1 13 -18
-POLYGONS 32
-	200 3 3 2 1 129 126 140 126 140 128
-	200 3 3 1 0 129 126 140 128 129 128
-	200 3 0 1 5 129 126 140 126 140 128
-	200 3 0 5 4 129 126 140 128 129 128
-	200 3 1 2 6 129 126 140 126 140 128
-	200 3 1 6 5 129 126 140 128 129 128
-	200 3 2 3 7 129 126 140 126 140 128
-	200 3 2 7 6 129 126 140 128 129 128
-	200 3 3 0 4 129 126 140 126 140 128
-	200 3 3 4 7 129 126 140 128 129 128
-	200 3 11 10 9 147 129 150 129 150 140
-	200 3 11 9 8 147 129 150 140 147 140
-	200 3 10 13 12 147 129 150 129 150 140
-	200 3 10 12 9 147 129 150 140 147 140
-	200 3 13 15 14 147 129 150 129 150 140
-	200 3 13 14 12 147 129 150 140 147 140
-	200 3 15 11 8 147 129 150 129 150 140
-	200 3 15 8 14 147 129 150 140 147 140
-	200 3 16 17 18 208 24 211 24 211 19
-	200 3 16 18 19 208 24 211 19 208 19
-	200 3 19 18 17 208 19 211 19 211 24
-	200 3 19 17 16 208 19 211 24 208 24
-	200 3 17 20 21 213 24 218 24 218 19
-	200 3 17 21 18 213 24 218 19 213 19
-	200 3 18 21 20 213 19 218 19 218 24
-	200 3 18 20 17 213 19 218 24 213 24
-	200 3 22 16 19 213 24 218 24 218 19
-	200 3 22 19 23 213 24 218 19 213 19
-	200 3 23 19 16 213 19 218 19 218 24
-	200 3 23 16 22 213 19 218 24 213 24
-	200 3 15 13 10 150 129 161 129 161 140
-	200 3 15 10 11 150 129 161 140 150 140
-CONNECTORS 1
-	0 -43 5
diff --git a/components/weapons/gnmmort.pie b/components/weapons/gnmmort.pie
deleted file mode 100644
index e4ac506..0000000
--- a/components/weapons/gnmmort.pie
+++ /dev/null
@@ -1,73 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 20 
-	6 9 1 
-	3 15 1 
-	3 15 -21 
-	6 9 -21 
-	-3 15 1 
-	-3 15 -21 
-	-6 9 1 
-	-6 9 -21 
-	-3 4 1 
-	-3 4 -21 
-	3 4 1 
-	3 4 -21 
-	-2 15 2 
-	-2 15 -11 
-	-1 20 -8 
-	-1 20 2 
-	2 15 2 
-	1 20 2 
-	1 20 -8 
-	2 15 -11
-POLYGONS 44
-	200 3 3 2 1 127 72 127 68 142 68
-	200 3 3 1 0 127 72 142 68 142 72
-	200 3 2 5 4 127 68 127 68 142 68
-	200 3 2 4 1 127 68 142 68 142 68
-	200 3 5 7 6 127 68 127 72 142 72
-	200 3 5 6 4 127 68 142 72 142 68
-	200 3 7 9 8 127 72 127 75 142 75
-	200 3 7 8 6 127 72 142 75 142 72
-	200 3 9 11 10 127 75 127 75 142 75
-	200 3 9 10 8 127 75 142 75 142 75
-	200 3 11 3 0 127 75 127 72 142 72
-	200 3 11 0 10 127 75 142 72 142 75
-	200 3 7 3 11 157 33 165 33 163 29
-	200 3 7 11 9 157 33 163 29 159 29
-	200 3 7 5 2 157 33 159 37 163 37
-	200 3 7 2 3 157 33 163 37 165 33
-	200 3 12 13 14 104 140 104 153 111 151
-	200 3 12 14 15 104 140 111 151 111 140
-	200 3 15 14 13 111 140 111 151 104 153
-	200 3 15 13 12 111 140 104 153 104 140
-	200 3 16 17 18 111 140 104 140 104 151
-	200 3 16 18 19 111 140 104 151 111 153
-	200 3 19 18 17 111 153 104 151 104 140
-	200 3 19 17 16 111 153 104 140 111 140
-	200 3 12 15 17 104 153 111 153 111 140
-	200 3 12 17 16 104 153 111 140 104 140
-	200 3 16 17 15 104 140 111 140 111 153
-	200 3 16 15 12 104 140 111 153 104 153
-	200 3 15 14 18 104 153 110 153 110 140
-	200 3 15 18 17 104 153 110 140 104 140
-	200 3 17 18 14 104 140 110 140 110 153
-	200 3 17 14 15 104 140 110 153 104 153
-	200 3 14 13 19 104 153 111 153 111 140
-	200 3 14 19 18 104 153 111 140 104 140
-	200 3 18 19 13 104 140 111 140 111 153
-	200 3 18 13 14 104 140 111 153 104 153
-	200 3 13 12 16 104 153 111 153 111 140
-	200 3 13 16 19 104 153 111 140 104 140
-	200 3 19 16 12 104 140 111 140 111 153
-	200 3 19 12 13 104 140 111 153 104 153
-	200 3 0 6 8 239 255 237 255 238 256
-	200 3 0 8 10 239 255 238 256 238 256
-	200 3 0 1 4 239 255 238 254 238 254
-	200 3 0 4 6 239 255 238 254 237 255
-CONNECTORS 1
-	0 -22 9
diff --git a/components/weapons/gnmmorti.pie b/components/weapons/gnmmorti.pie
deleted file mode 100644
index 597f4d4..0000000
--- a/components/weapons/gnmmorti.pie
+++ /dev/null
@@ -1,61 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 20 
-	-3 4 -21 
-	3 4 -21 
-	6 9 -21 
-	-6 9 -21 
-	3 15 -21 
-	-3 15 -21 
-	-2 15 2 
-	-2 15 -11 
-	-1 20 -8 
-	-1 20 2 
-	2 15 2 
-	1 20 2 
-	1 20 -8 
-	2 15 -11 
-	3 4 1 
-	-3 4 1 
-	-6 9 1 
-	6 9 1 
-	-3 15 1 
-	3 15 1
-POLYGONS 32
-	200 3 3 2 1 157 33 165 33 163 29
-	200 3 3 1 0 157 33 163 29 159 29
-	200 3 3 5 4 157 33 159 37 163 37
-	200 3 3 4 2 157 33 163 37 165 33
-	200 3 9 8 7 49 48 59 48 61 57
-	200 3 9 7 6 49 48 61 57 49 57
-	200 3 13 12 11 49 57 51 48 61 48
-	200 3 13 11 10 49 57 61 48 61 57
-	200 3 10 11 9 49 48 61 49 61 56
-	200 3 10 9 6 49 48 61 56 49 57
-	200 3 11 12 8 49 49 59 49 59 56
-	200 3 11 8 9 49 49 59 56 49 56
-	200 3 12 13 7 50 49 61 48 61 57
-	200 3 12 7 8 50 49 61 57 50 56
-	200 3 13 10 6 49 48 61 48 61 57
-	200 3 13 6 7 49 48 61 57 49 57
-	200 3 17 16 15 239 255 237 255 238 256
-	200 3 17 15 14 239 255 238 256 238 256
-	200 3 17 19 18 239 255 238 254 238 254
-	200 3 17 18 16 239 255 238 254 237 255
-	200 3 2 4 19 149 49 151 49 151 66
-	200 3 2 19 17 149 49 151 66 149 66
-	200 3 4 5 18 151 49 151 49 151 66
-	200 3 4 18 19 151 49 151 66 151 66
-	200 3 5 3 16 151 49 149 49 149 66
-	200 3 5 16 18 151 49 149 66 151 66
-	200 3 3 0 15 149 49 147 49 147 66
-	200 3 3 15 16 149 49 147 66 149 66
-	200 3 0 1 14 147 49 147 49 147 66
-	200 3 0 14 15 147 49 147 66 147 66
-	200 3 1 2 17 147 49 149 49 149 66
-	200 3 1 17 14 147 49 149 66 147 66
-CONNECTORS 1
-	0 -22 9
diff --git a/components/weapons/gnmmsl.pie b/components/weapons/gnmmsl.pie
deleted file mode 100644
index ae2b607..0000000
--- a/components/weapons/gnmmsl.pie
+++ /dev/null
@@ -1,29 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 8 
-	-14 4 -21 
-	-14 4 8 
-	14 4 8 
-	14 4 -21 
-	12 18 -21 
-	-12 18 -21 
-	12 18 8 
-	-12 18 8
-POLYGONS 12
-	200 3 3 2 1 120 126 120 114 131 114
-	200 3 3 1 0 120 126 131 114 131 126
-	200 3 5 4 3 0 152 22 152 22 164
-	200 3 5 3 0 0 152 22 164 0 164
-	200 3 4 6 2 0 102 26 102 26 114
-	200 3 4 2 3 0 102 26 114 0 114
-	200 3 6 7 1 0 164 22 164 22 176
-	200 3 6 1 2 0 164 22 176 0 176
-	200 3 7 5 0 26 102 0 102 0 114
-	200 3 7 0 1 26 102 0 114 26 114
-	200 3 7 6 4 0 102 22 102 22 76
-	200 3 7 4 5 0 102 22 76 0 76
-CONNECTORS 1
-	0 -23 12
diff --git a/components/weapons/gnmmsla.pie b/components/weapons/gnmmsla.pie
deleted file mode 100644
index cd10971..0000000
--- a/components/weapons/gnmmsla.pie
+++ /dev/null
@@ -1,73 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 16 
-	14 7 -21 
-	21 7 -21 
-	21 22 -21 
-	14 22 -21 
-	14 7 16 
-	21 7 16 
-	21 22 16 
-	14 22 16 
-	-21 7 -21 
-	-14 7 -21 
-	-14 22 -21 
-	-21 22 -21 
-	-21 7 16 
-	-14 7 16 
-	-14 22 16 
-	-21 22 16
-POLYGONS 48
-	200 3 0 1 2 252 116 256 116 256 106
-	200 3 0 2 3 252 116 256 106 252 106
-	200 3 3 2 1 252 106 256 106 256 116
-	200 3 3 1 0 252 106 256 116 252 116
-	200 3 0 4 5 252 116 252 140 256 140
-	200 3 0 5 1 252 116 256 140 256 116
-	200 3 1 5 4 256 116 256 140 252 140
-	200 3 1 4 0 256 116 252 140 252 116
-	200 3 3 2 6 256 116 252 116 252 140
-	200 3 3 6 7 256 116 252 140 256 140
-	200 3 7 6 2 256 140 252 140 252 116
-	200 3 7 2 3 256 140 252 116 256 116
-	200 3 1 5 6 196 176 220 176 220 165
-	200 3 1 6 2 196 176 220 165 196 165
-	200 3 2 6 5 196 165 220 165 220 176
-	200 3 2 5 1 196 165 220 176 196 176
-	200 3 5 4 7 252 116 256 116 256 106
-	200 3 5 7 6 252 116 256 106 252 106
-	200 3 6 7 4 252 106 256 106 256 116
-	200 3 6 4 5 252 106 256 116 252 116
-	200 3 4 0 3 196 176 220 176 220 165
-	200 3 4 3 7 196 176 220 165 196 165
-	200 3 7 3 0 196 165 220 165 220 176
-	200 3 7 0 4 196 165 220 176 196 176
-	200 3 8 9 10 252 116 256 116 256 106
-	200 3 8 10 11 252 116 256 106 252 106
-	200 3 11 10 9 252 106 256 106 256 116
-	200 3 11 9 8 252 106 256 116 252 116
-	200 3 8 12 13 252 116 252 140 256 140
-	200 3 8 13 9 252 116 256 140 256 116
-	200 3 9 13 12 256 116 256 140 252 140
-	200 3 9 12 8 256 116 252 140 252 116
-	200 3 11 10 14 256 116 252 116 252 140
-	200 3 11 14 15 256 116 252 140 256 140
-	200 3 15 14 10 256 140 252 140 252 116
-	200 3 15 10 11 256 140 252 116 256 116
-	200 3 9 13 14 196 176 220 176 220 165
-	200 3 9 14 10 196 176 220 165 196 165
-	200 3 10 14 13 196 165 220 165 220 176
-	200 3 10 13 9 196 165 220 176 196 176
-	200 3 13 12 15 252 116 256 116 256 106
-	200 3 13 15 14 252 116 256 106 252 106
-	200 3 14 15 12 252 106 256 106 256 116
-	200 3 14 12 13 252 106 256 116 252 116
-	200 3 12 8 11 196 176 220 176 220 165
-	200 3 12 11 15 196 176 220 165 196 165
-	200 3 15 11 8 196 165 220 165 220 176
-	200 3 15 8 12 196 165 220 176 196 176
-CONNECTORS 1
-	-17 -21 15
diff --git a/components/weapons/gnmmslaa.pie b/components/weapons/gnmmslaa.pie
deleted file mode 100644
index 3e50c86..0000000
--- a/components/weapons/gnmmslaa.pie
+++ /dev/null
@@ -1,66 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 24 
-	-11 0 -3 
-	-11 16 -9 
-	-11 20 2 
-	-11 5 8 
-	12 0 -3 
-	12 5 8 
-	12 20 2 
-	12 16 -9 
-	-11 0 10 
-	-11 16 4 
-	-11 20 16 
-	-11 5 22 
-	12 0 10 
-	12 5 22 
-	12 20 16 
-	12 16 4 
-	-11 0 -17 
-	-11 16 -23 
-	-11 20 -11 
-	-11 5 -5 
-	12 0 -17 
-	12 5 -5 
-	12 20 -11 
-	12 16 -23
-POLYGONS 28
-	200 3 3 2 1 238 236 238 209 246 209
-	200 3 3 1 0 238 236 246 209 246 236
-	200 3 7 6 5 238 209 246 209 246 236
-	200 3 7 5 4 238 209 246 236 238 236
-	200 3 5 6 2 233 236 233 209 251 209
-	200 3 5 2 3 233 236 251 209 251 236
-	200 3 6 7 1 166 75 159 75 159 61
-	200 3 6 1 2 166 75 159 61 166 61
-	200 3 7 4 0 251 209 251 236 233 236
-	200 3 7 0 1 251 209 233 236 233 209
-	200 3 11 10 9 238 236 238 209 246 209
-	200 3 11 9 8 238 236 246 209 246 236
-	200 3 15 14 13 238 209 246 209 246 236
-	200 3 15 13 12 238 209 246 236 238 236
-	200 3 14 15 9 166 75 159 75 159 61
-	200 3 14 9 10 166 75 159 61 166 61
-	200 3 15 12 8 251 209 251 236 233 236
-	200 3 15 8 9 251 209 233 236 233 209
-	200 3 19 18 17 238 236 238 209 246 209
-	200 3 19 17 16 238 236 246 209 246 236
-	200 3 23 22 21 238 209 246 209 246 236
-	200 3 23 21 20 238 209 246 236 238 236
-	200 3 21 22 18 233 236 233 209 251 209
-	200 3 21 18 19 233 236 251 209 251 236
-	200 3 22 23 17 166 75 159 75 159 61
-	200 3 22 17 18 166 75 159 61 166 61
-	200 3 23 20 16 251 209 251 236 233 236
-	200 3 23 16 17 251 209 233 236 233 209
-CONNECTORS 6
-	-6 -17 18
-	6 -17 18
-	-6 -4 18
-	6 -4 18
-	-6 10 18
-	6 10 18
diff --git a/components/weapons/gnmmslat.pie b/components/weapons/gnmmslat.pie
deleted file mode 100644
index 55cad61..0000000
--- a/components/weapons/gnmmslat.pie
+++ /dev/null
@@ -1,49 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 16 
-	-25 9 22 
-	-25 19 22 
-	-17 19 22 
-	-17 9 22 
-	-25 9 -21 
-	-17 9 -21 
-	-17 19 -21 
-	-25 19 -21 
-	17 9 22 
-	17 19 22 
-	25 19 22 
-	25 9 22 
-	17 9 -21 
-	25 9 -21 
-	25 19 -21 
-	17 19 -21
-POLYGONS 24
-	200 3 3 2 1 252 116 252 113 256 113
-	200 3 3 1 0 252 116 256 113 256 116
-	200 3 7 6 5 252 113 256 113 256 116
-	200 3 7 5 4 252 113 256 116 252 116
-	200 3 4 5 3 252 116 256 116 256 140
-	200 3 4 3 0 252 116 256 140 252 140
-	200 3 6 7 1 252 116 256 116 256 140
-	200 3 6 1 2 252 116 256 140 252 140
-	200 3 5 6 2 220 176 220 172 196 172
-	200 3 5 2 3 220 176 196 172 196 176
-	200 3 7 4 0 220 172 220 176 196 176
-	200 3 7 0 1 220 172 196 176 196 172
-	200 3 11 10 9 252 116 252 113 256 113
-	200 3 11 9 8 252 116 256 113 256 116
-	200 3 15 14 13 252 113 256 113 256 116
-	200 3 15 13 12 252 113 256 116 252 116
-	200 3 12 13 11 252 116 256 116 256 140
-	200 3 12 11 8 252 116 256 140 252 140
-	200 3 14 15 9 252 116 256 116 256 140
-	200 3 14 9 10 252 116 256 140 252 140
-	200 3 13 14 10 220 176 220 172 196 172
-	200 3 13 10 11 220 176 196 172 196 176
-	200 3 15 12 8 220 172 220 176 196 176
-	200 3 15 8 9 220 172 196 176 196 172
-CONNECTORS 1
-	0 -25 15
diff --git a/components/weapons/gnmmslbb.pie b/components/weapons/gnmmslbb.pie
deleted file mode 100644
index 4614416..0000000
--- a/components/weapons/gnmmslbb.pie
+++ /dev/null
@@ -1,41 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 12 
-	3 9 -28 
-	8 6 -28 
-	12 9 -28 
-	12 14 -28 
-	8 17 -28 
-	3 14 -28 
-	8 6 23 
-	12 9 23 
-	12 14 23 
-	8 17 23 
-	3 14 23 
-	3 9 23
-POLYGONS 20
-	200 3 3 2 1 165 30 165 35 161 37
-	200 3 3 1 0 165 30 161 37 156 35
-	200 3 0 5 4 156 35 156 30 161 28
-	200 3 0 4 3 156 35 161 28 165 30
-	200 3 1 2 7 218 102 221 102 221 148
-	200 3 1 7 6 218 102 221 148 218 148
-	200 3 2 3 8 221 102 228 102 228 148
-	200 3 2 8 7 221 102 228 148 221 148
-	200 3 3 4 9 228 102 231 102 231 148
-	200 3 3 9 8 228 102 231 148 228 148
-	200 3 4 5 10 231 102 228 102 228 148
-	200 3 4 10 9 231 102 228 148 231 148
-	200 3 5 0 11 228 102 221 102 221 148
-	200 3 5 11 10 228 102 221 148 228 148
-	200 3 0 1 6 221 102 218 102 218 148
-	200 3 0 6 11 221 102 218 148 221 148
-	200 3 7 8 11 165 35 165 30 156 35
-	200 3 7 11 6 165 35 156 35 161 37
-	200 3 11 8 9 156 35 165 30 161 28
-	200 3 11 9 10 156 35 161 28 156 30
-CONNECTORS 1
-	8 -29 12
diff --git a/components/weapons/gnmmslsa.pie b/components/weapons/gnmmslsa.pie
deleted file mode 100644
index f64e079..0000000
--- a/components/weapons/gnmmslsa.pie
+++ /dev/null
@@ -1,50 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 16 
-	10 13 16 
-	15 7 16 
-	15 7 -17 
-	10 13 -17 
-	21 13 16 
-	21 13 -17 
-	15 18 16 
-	15 18 -17 
-	-15 7 16 
-	-21 13 16 
-	-15 18 16 
-	-10 13 16 
-	-15 7 -17 
-	-10 13 -17 
-	-15 18 -17 
-	-21 13 -17
-POLYGONS 24
-	200 3 3 2 1 3 176 0 176 0 192
-	200 3 3 1 0 3 176 0 192 3 192
-	200 3 2 5 4 0 176 3 176 3 192
-	200 3 2 4 1 0 176 3 192 0 192
-	200 3 5 7 6 3 176 6 176 6 192
-	200 3 5 6 4 3 176 6 192 3 192
-	200 3 7 3 0 6 176 3 176 3 192
-	200 3 7 0 6 6 176 3 192 6 192
-	200 3 1 4 6 252 248 252 244 256 244
-	200 3 1 6 0 252 248 256 244 256 248
-	200 3 7 5 2 252 244 256 244 256 248
-	200 3 7 2 3 252 244 256 248 252 248
-	200 3 11 10 9 252 248 252 244 256 244
-	200 3 11 9 8 252 248 256 244 256 248
-	200 3 15 14 13 252 244 256 244 256 248
-	200 3 15 13 12 252 244 256 248 252 248
-	200 3 12 13 11 0 176 3 176 3 192
-	200 3 12 11 8 0 176 3 192 0 192
-	200 3 13 14 10 3 176 6 176 6 192
-	200 3 13 10 11 3 176 6 192 3 192
-	200 3 14 15 9 6 176 3 176 3 192
-	200 3 14 9 10 6 176 3 192 6 192
-	200 3 15 12 8 3 176 0 176 0 192
-	200 3 15 8 9 3 176 0 192 3 192
-CONNECTORS 2
-	-15 -17 13
-	15 -17 13
diff --git a/components/weapons/gnmrckt.pie b/components/weapons/gnmrckt.pie
deleted file mode 100644
index e513995..0000000
--- a/components/weapons/gnmrckt.pie
+++ /dev/null
@@ -1,36 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 8 
-	-12 13 -14 
-	-12 13 14 
-	12 13 14 
-	12 13 -14 
-	-10 27 -14 
-	10 27 -14 
-	10 27 14 
-	-10 27 14
-POLYGONS 12
-	200 3 3 2 1 120 126 120 114 131 114
-	200 3 3 1 0 120 126 131 114 131 126
-	200 3 7 6 5 0 102 22 102 22 76
-	200 3 7 5 4 0 102 22 76 0 76
-	200 3 4 5 3 0 152 22 152 22 164
-	200 3 4 3 0 0 152 22 164 0 164
-	200 3 5 6 2 0 102 26 102 26 114
-	200 3 5 2 3 0 102 26 114 0 114
-	200 3 6 7 1 0 164 22 164 22 176
-	200 3 6 1 2 0 164 22 176 0 176
-	200 3 7 4 0 26 102 0 102 0 114
-	200 3 7 0 1 26 102 0 114 26 114
-CONNECTORS 8
-	-8 -14 24
-	-3 -14 24
-	3 -14 24
-	8 -14 24
-	-9 -14 17
-	-3 -14 17
-	3 -14 17
-	9 -14 17
diff --git a/components/weapons/gnmrckta.pie b/components/weapons/gnmrckta.pie
deleted file mode 100644
index d565ebc..0000000
--- a/components/weapons/gnmrckta.pie
+++ /dev/null
@@ -1,69 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 28 
-	20 17 16 
-	12 8 18 
-	12 8 -17 
-	20 17 -21 
-	16 5 18 
-	16 5 -17 
-	24 14 -21 
-	24 14 16 
-	16 13 -5 
-	16 13 6 
-	9 14 6 
-	9 14 -5 
-	12 8 -5 
-	12 8 6 
-	-16 5 -17 
-	-12 8 -17 
-	-21 17 -21 
-	-25 14 -21 
-	-21 17 16 
-	-25 14 16 
-	-10 14 6 
-	-17 13 6 
-	-17 13 -5 
-	-10 14 -5 
-	-12 8 -5 
-	-12 8 6 
-	-16 5 18 
-	-12 8 18
-POLYGONS 32
-	200 3 3 2 1 256 140 248 140 248 156
-	200 3 3 1 0 256 140 248 156 256 156
-	200 3 2 5 4 256 208 252 208 252 224
-	200 3 2 4 1 256 208 252 224 256 224
-	200 3 3 6 5 256 240 252 240 252 248
-	200 3 3 5 2 256 240 252 248 256 248
-	200 3 0 1 4 252 240 252 248 256 248
-	200 3 0 4 7 252 240 256 248 256 240
-	200 3 5 6 7 256 142 248 140 248 155
-	200 3 5 7 4 256 142 248 155 256 156
-	200 3 6 3 0 256 224 252 224 252 241
-	200 3 6 0 7 256 224 252 241 256 241
-	200 3 11 10 9 252 256 252 249 256 249
-	200 3 11 9 8 252 256 256 249 256 256
-	200 3 11 8 12 252 256 256 256 254 256
-	200 3 9 10 13 256 249 252 249 254 249
-	200 3 17 16 15 252 240 256 240 256 248
-	200 3 17 15 14 252 240 256 248 252 248
-	200 3 16 17 19 252 224 256 224 256 241
-	200 3 16 19 18 252 224 256 241 252 241
-	200 3 23 22 21 252 256 256 256 256 249
-	200 3 23 21 20 252 256 256 249 252 249
-	200 3 23 24 22 252 256 254 256 256 256
-	200 3 21 25 20 256 249 254 249 252 249
-	200 3 27 18 19 252 248 252 240 256 240
-	200 3 27 19 26 252 248 256 240 256 248
-	200 3 15 16 18 248 140 256 140 256 156
-	200 3 15 18 27 248 140 256 156 248 156
-	200 3 17 14 26 248 140 256 142 256 156
-	200 3 17 26 19 248 140 256 156 248 155
-	200 3 14 15 27 252 208 256 208 256 224
-	200 3 14 27 26 252 208 256 224 252 224
-CONNECTORS 1
-	0 -23 11
diff --git a/components/weapons/gnmrcktb.pie b/components/weapons/gnmrcktb.pie
deleted file mode 100644
index d68834e..0000000
--- a/components/weapons/gnmrcktb.pie
+++ /dev/null
@@ -1,61 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 24 
-	14 7 -17 
-	20 3 -17 
-	28 16 -21 
-	22 20 -21 
-	14 7 22 
-	20 3 22 
-	28 16 18 
-	22 20 18 
-	-19 3 -17 
-	-14 7 -17 
-	-22 20 -21 
-	-28 16 -21 
-	-19 3 22 
-	-14 7 22 
-	-22 20 18 
-	-28 16 18 
-	-12 15 0 
-	-13 8 8 
-	-20 17 0 
-	-13 8 -7 
-	13 8 8 
-	12 15 0 
-	20 17 0 
-	13 8 -7
-POLYGONS 28
-	200 3 3 2 1 256 106 256 106 256 116
-	200 3 3 1 0 256 106 256 116 252 116
-	200 3 1 5 4 256 116 256 140 252 140
-	200 3 1 4 0 256 116 252 140 252 116
-	200 3 7 6 2 256 140 252 140 252 116
-	200 3 7 2 3 256 140 252 116 256 116
-	200 3 2 6 5 196 165 220 165 220 176
-	200 3 2 5 1 196 165 220 176 196 176
-	200 3 6 7 4 252 106 256 106 256 116
-	200 3 6 4 5 252 106 256 116 252 116
-	200 3 7 3 0 196 165 220 165 220 176
-	200 3 7 0 4 196 165 220 176 196 176
-	200 3 11 10 9 256 106 256 106 256 116
-	200 3 11 9 8 256 106 256 116 252 116
-	200 3 9 13 12 256 116 256 140 252 140
-	200 3 9 12 8 256 116 252 140 252 116
-	200 3 15 14 10 256 140 252 140 252 116
-	200 3 15 10 11 256 140 252 116 256 116
-	200 3 10 14 13 196 165 220 165 220 176
-	200 3 10 13 9 196 165 220 176 196 176
-	200 3 14 15 12 252 106 256 106 256 116
-	200 3 14 12 13 252 106 256 116 252 116
-	200 3 15 11 8 196 165 220 165 220 176
-	200 3 15 8 12 196 165 220 176 196 176
-	200 3 18 17 16 252 249 255 256 256 249
-	200 3 16 19 18 256 249 255 256 252 249
-	200 3 22 21 20 252 249 256 249 255 256
-	200 3 21 22 23 256 249 252 249 255 256
-CONNECTORS 1
-	0 -23 14
diff --git a/components/weapons/gnmrepar.pie b/components/weapons/gnmrepar.pie
deleted file mode 100644
index d8be876..0000000
--- a/components/weapons/gnmrepar.pie
+++ /dev/null
@@ -1,106 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 41 
-	5 14 8 
-	7 6 14 
-	7 6 4 
-	5 14 -8 
-	7 6 -14 
-	7 6 -4 
-	-5 14 -8 
-	-7 6 -14 
-	-7 6 -4 
-	-5 14 8 
-	-7 6 14 
-	-7 6 4 
-	0 21 -4 
-	-3 14 -9 
-	-3 22 -19 
-	0 26 -15 
-	3 14 -9 
-	3 22 -19 
-	-11 6 4 
-	-11 6 -4 
-	-11 14 -8 
-	-11 14 8 
-	-11 21 -4 
-	-11 21 4 
-	11 6 -4 
-	11 6 4 
-	11 14 8 
-	11 14 -8 
-	11 21 4 
-	11 21 -4 
-	0 15 -32 
-	0 26 -24 
-	-3 22 -20 
-	3 22 -20 
-	-3 27 -25 
-	-3 32 -19 
-	-3 27 -15 
-	4 27 -25 
-	4 22 -20 
-	4 27 -15 
-	4 32 -19
-POLYGONS 56
-	200 3 0 1 2 133 224 128 234 137 234
-	200 3 2 1 0 137 234 128 234 133 224
-	200 3 3 4 5 133 224 128 234 137 234
-	200 3 5 4 3 137 234 128 234 133 224
-	200 3 6 7 8 133 224 128 234 137 234
-	200 3 8 7 6 137 234 128 234 133 224
-	200 3 9 10 11 133 224 128 234 137 234
-	200 3 11 10 9 137 234 128 234 133 224
-	200 3 12 13 14 36 187 31 187 31 181
-	200 3 12 14 15 36 187 31 181 36 181
-	200 3 15 14 13 36 181 31 181 31 187
-	200 3 15 13 12 36 181 31 187 36 187
-	200 3 13 16 17 31 187 31 187 31 181
-	200 3 13 17 14 31 187 31 181 31 181
-	200 3 14 17 16 31 181 31 181 31 187
-	200 3 14 16 13 31 181 31 187 31 187
-	200 3 16 12 15 31 187 36 187 36 181
-	200 3 16 15 17 31 187 36 181 31 181
-	200 3 17 15 12 31 181 36 181 36 187
-	200 3 17 12 16 31 181 36 187 31 187
-	200 3 21 20 19 202 229 192 229 195 234
-	200 3 21 19 18 202 229 195 234 199 234
-	200 3 21 23 22 202 229 199 224 195 224
-	200 3 21 22 20 202 229 195 224 192 229
-	200 3 27 26 25 192 229 202 229 199 234
-	200 3 27 25 24 192 229 199 234 195 234
-	200 3 26 27 29 202 229 192 229 195 224
-	200 3 26 29 28 202 229 195 224 199 224
-	200 3 26 28 23 3 177 6 177 6 191
-	200 3 26 23 21 3 177 6 191 3 191
-	200 3 28 29 22 6 177 6 177 6 191
-	200 3 28 22 23 6 177 6 191 6 191
-	200 3 29 27 20 6 177 3 177 3 191
-	200 3 29 20 22 6 177 3 191 6 191
-	200 3 27 24 19 3 177 0 177 0 191
-	200 3 27 19 20 3 177 0 191 3 191
-	200 3 25 26 21 0 177 3 177 3 191
-	200 3 25 21 18 0 177 3 191 0 191
-	200 3 30 31 32 34 181 36 187 31 187
-	200 3 32 31 30 31 187 36 187 34 181
-	200 3 30 32 33 34 181 31 187 31 187
-	200 3 33 32 30 31 187 31 187 34 181
-	200 3 30 33 31 34 181 31 187 36 187
-	200 3 31 33 30 36 187 31 187 34 181
-	200 3 32 36 35 202 234 202 224 192 224
-	200 3 32 35 34 202 234 192 224 192 234
-	200 3 40 39 38 192 224 202 224 202 234
-	200 3 40 38 37 192 224 202 234 192 234
-	200 3 37 38 32 2 177 0 177 0 191
-	200 3 37 32 34 2 177 0 191 2 191
-	200 3 38 39 36 0 177 4 177 4 191
-	200 3 38 36 32 0 177 4 191 0 191
-	200 3 39 40 35 4 177 6 177 6 191
-	200 3 39 35 36 4 177 6 191 4 191
-	200 3 40 37 34 6 177 2 177 2 191
-	200 3 40 34 35 6 177 2 191 6 191
-CONNECTORS 1
-	0 -33 15
diff --git a/components/weapons/gnmrepr2.pie b/components/weapons/gnmrepr2.pie
deleted file mode 100644
index 9cda83c..0000000
--- a/components/weapons/gnmrepr2.pie
+++ /dev/null
@@ -1,78 +0,0 @@
-PIE 3
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 0 0
-LEVELS 1
-LEVEL 1
-POINTS 30
-	12 0 -14
-	7 26 -8
-	7 26 8
-	12 0 15
-	-7 26 8
-	-7 26 -8
-	-12 0 -14
-	-12 0 15
-	7 22 9
-	-7 22 9
-	-3 22 38
-	4 22 38
-	0 4 14
-	0 8 31
-	4 22 -41
-	-4 22 -41
-	-7 22 -9
-	7 22 -9
-	0 11 -44
-	0 4 -13
-	4 14 -54
-	4 11 -44
-	-4 11 -44
-	-4 14 -54
-	4 25 -51
-	-4 25 -51
-	0 3 -51
-	0 13 -52
-	-3 12 -46
-	2 12 -46
-POLYGONS 39
-	200 3 0 1 2 0 0.546875 0 0.503906 0.0625 0.503906
-	200 3 0 2 3 0 0.546875 0.0625 0.503906 0.0625 0.546875
-	200 3 4 5 6 0 0.503906 0.0625 0.503906 0.0625 0.546875
-	200 3 4 6 7 0 0.503906 0.0625 0.546875 0 0.546875
-	200 3 6 5 1 0 0.503906 0.0625 0.503906 0.0625 0.546875
-	200 3 6 1 0 0 0.503906 0.0625 0.546875 0 0.546875
-	200 3 5 4 2 0 0.503906 0.0625 0.503906 0.0625 0.546875
-	200 3 5 2 1 0 0.503906 0.0625 0.546875 0 0.546875
-	200 3 4 7 3 0 0.503906 0.0625 0.503906 0.0625 0.546875
-	200 3 4 3 2 0 0.503906 0.0625 0.546875 0 0.546875
-	200 3 8 9 10 0.777344 0.257812 0.710938 0.257812 0.710938 0.324219
-	200 3 8 10 11 0.777344 0.257812 0.710938 0.324219 0.777344 0.324219
-	200 3 12 8 11 0.777344 0.257812 0.710938 0.257812 0.710938 0.324219
-	200 3 12 11 13 0.777344 0.257812 0.710938 0.324219 0.777344 0.324219
-	200 3 9 12 13 0.777344 0.257812 0.710938 0.257812 0.710938 0.324219
-	200 3 9 13 10 0.777344 0.257812 0.710938 0.324219 0.777344 0.324219
-	200 3 13 11 10 0.710938 0.304688 0.742188 0.402344 0.675781 0.402344
-	200 3 14 15 16 0.777344 0.242188 0.710938 0.242188 0.710938 0.339844
-	200 3 14 16 17 0.777344 0.242188 0.710938 0.339844 0.777344 0.339844
-	200 3 18 14 17 0.777344 0.242188 0.710938 0.242188 0.710938 0.339844
-	200 3 18 17 19 0.777344 0.242188 0.710938 0.339844 0.777344 0.339844
-	200 3 15 18 19 0.777344 0.242188 0.710938 0.242188 0.710938 0.339844
-	200 3 15 19 16 0.777344 0.242188 0.710938 0.339844 0.777344 0.339844
-	200 3 20 21 22 0.0078125 0.691406 0 0.691406 0 0.746094
-	200 3 20 22 23 0.0078125 0.691406 0 0.746094 0.0078125 0.746094
-	200 3 21 14 15 0 0.691406 0.015625 0.691406 0.015625 0.746094
-	200 3 21 15 22 0 0.691406 0.015625 0.746094 0 0.746094
-	200 3 14 24 25 0.015625 0.691406 0.0234375 0.691406 0.0234375 0.746094
-	200 3 14 25 15 0.015625 0.691406 0.0234375 0.746094 0.015625 0.746094
-	200 3 24 20 23 0.0234375 0.691406 0.0078125 0.691406 0.0078125 0.746094
-	200 3 24 23 25 0.0234375 0.691406 0.0078125 0.746094 0.0234375 0.746094
-	200 3 22 15 25 0.0234375 0.746094 0.0234375 0.691406 0 0.691406
-	200 3 22 25 23 0.0234375 0.746094 0 0.691406 0 0.746094
-	200 3 24 14 21 0 0.691406 0.0234375 0.691406 0.0234375 0.746094
-	200 3 24 21 20 0 0.691406 0.0234375 0.746094 0 0.746094
-	200 3 26 27 28 0.132812 0.707031 0.140625 0.730469 0.121094 0.730469
-	200 3 28 27 26 0.121094 0.730469 0.140625 0.730469 0.132812 0.707031
-	200 3 26 29 27 0.132812 0.707031 0.121094 0.730469 0.140625 0.730469
-	200 3 27 29 26 0.140625 0.730469 0.121094 0.730469 0.132812 0.707031
-CONNECTORS 1
-	0 -51 3
diff --git a/components/weapons/gnmrktbb.pie b/components/weapons/gnmrktbb.pie
deleted file mode 100644
index 4614416..0000000
--- a/components/weapons/gnmrktbb.pie
+++ /dev/null
@@ -1,41 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 12 
-	3 9 -28 
-	8 6 -28 
-	12 9 -28 
-	12 14 -28 
-	8 17 -28 
-	3 14 -28 
-	8 6 23 
-	12 9 23 
-	12 14 23 
-	8 17 23 
-	3 14 23 
-	3 9 23
-POLYGONS 20
-	200 3 3 2 1 165 30 165 35 161 37
-	200 3 3 1 0 165 30 161 37 156 35
-	200 3 0 5 4 156 35 156 30 161 28
-	200 3 0 4 3 156 35 161 28 165 30
-	200 3 1 2 7 218 102 221 102 221 148
-	200 3 1 7 6 218 102 221 148 218 148
-	200 3 2 3 8 221 102 228 102 228 148
-	200 3 2 8 7 221 102 228 148 221 148
-	200 3 3 4 9 228 102 231 102 231 148
-	200 3 3 9 8 228 102 231 148 228 148
-	200 3 4 5 10 231 102 228 102 228 148
-	200 3 4 10 9 231 102 228 148 231 148
-	200 3 5 0 11 228 102 221 102 221 148
-	200 3 5 11 10 228 102 221 148 228 148
-	200 3 0 1 6 221 102 218 102 218 148
-	200 3 0 6 11 221 102 218 148 221 148
-	200 3 7 8 11 165 35 165 30 156 35
-	200 3 7 11 6 165 35 156 35 161 37
-	200 3 11 8 9 156 35 165 30 161 28
-	200 3 11 9 10 156 35 161 28 156 30
-CONNECTORS 1
-	8 -29 12
diff --git a/components/weapons/gnmrlas.pie b/components/weapons/gnmrlas.pie
deleted file mode 100644
index 257d99b..0000000
--- a/components/weapons/gnmrlas.pie
+++ /dev/null
@@ -1,22 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 6 
-	0 13 -10 
-	-4 6 -10 
-	-4 6 -26 
-	0 13 -26 
-	3 6 -10 
-	3 6 -26
-POLYGONS 7
-	200 3 3 2 1 200 98 218 98 218 110
-	200 3 3 1 0 200 98 218 110 200 110
-	200 3 2 5 4 200 98 218 98 218 110
-	200 3 2 4 1 200 98 218 110 200 110
-	200 3 5 3 0 200 98 218 98 218 110
-	200 3 5 0 4 200 98 218 110 200 110
-	200 3 2 3 5 157 26 167 33 157 40
-CONNECTORS 1
-	0 -31 9
diff --git a/components/weapons/gnmsnsr2.pie b/components/weapons/gnmsnsr2.pie
deleted file mode 100644
index ec70a33..0000000
--- a/components/weapons/gnmsnsr2.pie
+++ /dev/null
@@ -1,83 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 24 
-	4 12 15 
-	3 28 9 
-	6 13 9 
-	9 6 9 
-	-4 12 15 
-	-9 6 9 
-	-6 13 9 
-	-3 28 9 
-	3 6 -10 
-	6 9 4 
-	-6 9 4 
-	-3 6 -10 
-	28 33 -11 
-	28 20 -11 
-	14 13 8 
-	14 40 8 
-	-14 13 8 
-	-14 40 8 
-	-27 20 -11 
-	-27 33 -11 
-	0 28 7 
-	-3 23 7 
-	0 24 -6 
-	3 23 7
-POLYGONS 52
-	200 3 0 1 2 118 155 104 155 117 159
-	200 3 0 2 3 118 155 117 159 123 157
-	200 3 3 2 1 123 157 117 159 104 155
-	200 3 3 1 0 123 157 104 155 118 155
-	200 3 4 5 6 118 144 123 142 117 140
-	200 3 4 6 7 118 144 117 140 104 144
-	200 3 7 6 5 104 144 117 140 123 142
-	200 3 7 5 4 104 144 123 142 118 144
-	200 3 4 5 3 137 144 142 142 142 157
-	200 3 4 3 0 137 144 142 157 137 155
-	200 3 8 9 10 85 155 96 159 96 140
-	200 3 8 10 11 85 155 96 140 85 144
-	200 3 11 10 9 85 144 96 140 96 159
-	200 3 11 9 8 85 144 96 159 85 155
-	200 3 9 2 6 115 159 119 159 119 140
-	200 3 9 6 10 115 159 119 140 115 140
-	200 3 10 6 2 115 140 119 140 119 159
-	200 3 10 2 9 115 140 119 159 115 159
-	200 3 1 0 4 85 155 99 155 99 144
-	200 3 1 4 7 85 155 99 144 85 144
-	200 3 7 4 0 85 144 99 144 99 155
-	200 3 7 0 1 85 144 99 155 85 155
-	200 3 15 14 13 22 140 43 140 38 159
-	200 3 15 13 12 22 140 38 159 27 159
-	200 3 17 16 14 48 159 48 140 59 140
-	200 3 17 14 15 48 159 59 140 59 159
-	200 3 19 18 16 80 159 69 159 64 140
-	200 3 19 16 17 80 159 64 140 85 140
-	200 3 17 16 18 43 140 22 140 27 159
-	200 3 17 18 19 43 140 27 159 38 159
-	200 3 15 14 16 48 140 48 159 59 159
-	200 3 15 16 17 48 140 59 159 59 140
-	200 3 12 13 14 69 159 80 159 85 140
-	200 3 12 14 15 69 159 85 140 64 140
-	200 3 22 22 21 130 224 130 224 126 234
-	200 3 22 21 20 130 224 126 234 137 234
-	200 3 22 22 23 130 224 130 224 126 234
-	200 3 22 23 21 130 224 126 234 126 234
-	200 3 22 22 20 130 224 130 224 137 234
-	200 3 22 20 23 130 224 137 234 126 234
-	200 3 22 22 22 130 224 130 224 130 224
-	200 3 22 22 22 130 224 130 224 130 224
-	200 3 22 22 22 130 224 130 224 130 224
-	200 3 22 22 22 130 224 130 224 130 224
-	200 3 3 2 9 123 140 123 159 128 148
-	200 3 3 9 8 123 140 128 148 142 140
-	200 3 8 9 2 142 140 128 148 123 159
-	200 3 8 2 3 142 140 123 159 123 140
-	200 3 5 11 10 142 140 123 140 137 148
-	200 3 5 10 6 142 140 137 148 142 159
-	200 3 6 10 11 142 159 137 148 123 140
-	200 3 6 11 5 142 159 123 140 142 140
\ No newline at end of file
diff --git a/components/weapons/gnmvcan.pie b/components/weapons/gnmvcan.pie
deleted file mode 100644
index 067b946..0000000
--- a/components/weapons/gnmvcan.pie
+++ /dev/null
@@ -1,39 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 14 
-	0 4 -20 
-	4 8 -20 
-	4 8 -45 
-	0 4 -45 
-	0 13 -20 
-	0 13 -45 
-	-4 8 -20 
-	-4 8 -45 
-	-5 3 -20 
-	5 3 -20 
-	5 13 -20 
-	-5 13 -20 
-	5 13 -12 
-	-5 13 -12
-POLYGONS 16
-	200 3 3 2 1 44 48 47 48 47 60
-	200 3 3 1 0 44 48 47 60 44 60
-	200 3 2 5 4 44 48 47 48 47 60
-	200 3 2 4 1 44 48 47 60 44 60
-	200 3 5 7 6 44 48 47 48 47 60
-	200 3 5 6 4 44 48 47 60 44 60
-	200 3 7 3 0 44 48 47 48 47 60
-	200 3 7 0 6 44 48 47 60 44 60
-	200 3 7 5 2 65 66 70 61 76 67
-	200 3 7 2 3 65 66 76 67 71 72
-	200 3 11 10 9 9 190 0 190 0 182
-	200 3 11 9 8 9 190 0 182 9 182
-	200 3 12 9 10 0 182 9 190 0 190
-	200 3 10 11 13 9 190 0 190 0 182
-	200 3 10 13 12 9 190 0 182 9 182
-	200 3 13 11 8 9 182 9 190 0 190
-CONNECTORS 1
-	0 -47 8
diff --git a/components/weapons/gnnavbig.pie b/components/weapons/gnnavbig.pie
deleted file mode 100644
index 59ffd53..0000000
--- a/components/weapons/gnnavbig.pie
+++ /dev/null
@@ -1,45 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 16 
-	-16 -3 -97 
-	-9 -3 -97 
-	-9 3 -97 
-	-16 3 -97 
-	-17 -4 -7 
-	-7 -4 -7 
-	-7 5 -3 
-	-17 5 -3 
-	9 -3 -97 
-	16 -3 -97 
-	16 3 -97 
-	9 3 -97 
-	7 -4 -7 
-	17 -4 -7 
-	17 5 -3 
-	7 5 -3
-POLYGONS 20
-	200 3 3 2 1 12 64 16 64 16 60
-	200 3 3 1 0 12 64 16 60 12 60
-	200 3 0 1 5 0 73 5 73 5 48
-	200 3 0 5 4 0 73 5 48 0 48
-	200 3 1 2 6 0 73 5 73 5 48
-	200 3 1 6 5 0 73 5 48 0 48
-	200 3 2 3 7 0 73 5 73 5 48
-	200 3 2 7 6 0 73 5 48 0 48
-	200 3 3 0 4 0 73 5 73 5 48
-	200 3 3 4 7 0 73 5 48 0 48
-	200 3 11 10 9 12 64 16 64 16 60
-	200 3 11 9 8 12 64 16 60 12 60
-	200 3 8 9 13 0 73 5 73 5 48
-	200 3 8 13 12 0 73 5 48 0 48
-	200 3 9 10 14 0 73 5 73 5 48
-	200 3 9 14 13 0 73 5 48 0 48
-	200 3 10 11 15 0 73 5 73 5 48
-	200 3 10 15 14 0 73 5 48 0 48
-	200 3 11 8 12 0 73 5 73 5 48
-	200 3 11 12 15 0 73 5 48 0 48
-CONNECTORS 1
-	-12 -97 0
diff --git a/components/weapons/gnwpfcan.pie b/components/weapons/gnwpfcan.pie
deleted file mode 100644
index 6ff1475..0000000
--- a/components/weapons/gnwpfcan.pie
+++ /dev/null
@@ -1,32 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 10 
-	0 51 -30 
-	-21 35 -38 
-	-21 35 -150 
-	0 51 -150 
-	-13 10 -49 
-	-13 10 -150 
-	13 10 -49 
-	13 10 -150 
-	21 35 -38 
-	21 35 -150
-POLYGONS 13
-	200 3 3 2 1 209 97 206 97 206 53
-	200 3 3 1 0 209 97 206 53 209 53
-	200 3 2 5 4 206 97 202 97 202 53
-	200 3 2 4 1 206 97 202 53 206 53
-	200 3 5 7 6 202 97 202 97 202 53
-	200 3 5 6 4 202 97 202 53 202 53
-	200 3 7 9 8 202 97 206 97 206 53
-	200 3 7 8 6 202 97 206 53 202 53
-	200 3 9 3 0 206 97 209 97 209 53
-	200 3 9 0 8 206 97 209 53 206 53
-	200 3 3 9 7 165 33 162 37 156 35
-	200 3 3 7 5 165 33 156 35 156 30
-	200 3 2 3 5 162 28 165 33 156 30
-CONNECTORS 1
-	0 -153 31
diff --git a/components/weapons/gnwpfgss.pie b/components/weapons/gnwpfgss.pie
deleted file mode 100644
index 00d96de..0000000
--- a/components/weapons/gnwpfgss.pie
+++ /dev/null
@@ -1,40 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 10 
-	-9 10 -49 
-	17 10 -49 
-	25 35 -38 
-	4 51 -30 
-	-17 35 -38 
-	-17 35 -150 
-	4 51 -150 
-	-9 10 -150 
-	17 10 -150 
-	25 35 -150
-POLYGONS 23
-	200 3 3 2 1 216 104 211 108 202 106
-	200 3 3 1 0 216 104 202 106 202 101
-	200 3 4 3 0 211 99 216 104 202 101
-	200 3 3 4 5 158 40 152 40 152 70
-	200 3 3 5 6 158 40 152 70 158 70
-	200 3 6 5 4 158 70 152 70 152 40
-	200 3 6 4 3 158 70 152 40 158 40
-	200 3 4 0 7 158 40 152 40 152 70
-	200 3 4 7 5 158 40 152 70 158 70
-	200 3 5 7 0 158 70 152 70 152 40
-	200 3 5 0 4 158 70 152 40 158 40
-	200 3 0 1 8 152 40 158 40 158 70
-	200 3 0 8 7 152 40 158 70 152 70
-	200 3 7 8 1 152 70 158 70 158 40
-	200 3 7 1 0 152 70 158 40 152 40
-	200 3 1 2 9 152 40 158 40 158 70
-	200 3 1 9 8 152 40 158 70 152 70
-	200 3 8 9 2 152 70 158 70 158 40
-	200 3 8 2 1 152 70 158 40 152 40
-	200 3 2 3 6 152 40 158 40 158 70
-	200 3 2 6 9 152 40 158 70 152 70
-	200 3 9 6 3 152 70 158 70 158 40
-	200 3 9 3 2 152 70 158 40 152 40
diff --git a/components/weapons/gnwpfmsl.pie b/components/weapons/gnwpfmsl.pie
deleted file mode 100644
index 468e16a..0000000
--- a/components/weapons/gnwpfmsl.pie
+++ /dev/null
@@ -1,121 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 48 
-	36 52 12 
-	36 39 12 
-	-36 39 12 
-	-36 52 12 
-	36 52 -13 
-	-36 52 -13 
-	-36 39 -13 
-	36 39 -13 
-	33 51 44 
-	30 77 38 
-	30 77 -38 
-	33 51 -44 
-	7 77 38 
-	4 51 44 
-	4 51 -44 
-	7 77 -38 
-	4 39 44 
-	7 12 38 
-	7 12 -38 
-	4 39 -44 
-	30 12 38 
-	33 39 44 
-	33 39 -44 
-	30 12 -38 
-	-3 51 44 
-	-6 77 38 
-	-6 77 -38 
-	-3 51 -44 
-	-30 77 38 
-	-33 51 44 
-	-33 51 -44 
-	-30 77 -38 
-	-33 39 44 
-	-30 12 38 
-	-30 12 -38 
-	-33 39 -44 
-	-6 12 38 
-	-3 39 44 
-	-3 39 -44 
-	-6 12 -38 
-	36 13 -30 
-	36 13 31 
-	36 75 31 
-	36 75 -30 
-	-36 13 -30 
-	-36 13 31 
-	-36 75 31 
-	-36 75 -30
-POLYGONS 64
-	200 3 3 2 1 232 49 228 49 224 99
-	200 3 3 1 0 232 49 224 99 235 99
-	200 3 7 6 5 224 99 228 49 232 49
-	200 3 7 5 4 224 99 232 49 235 99
-	200 3 4 5 3 199 91 199 58 179 58
-	200 3 4 3 0 199 91 179 58 179 91
-	200 3 6 7 1 179 58 179 91 199 91
-	200 3 6 1 2 179 58 199 91 199 58
-	200 3 11 10 9 247 208 237 208 237 238
-	200 3 11 9 8 247 208 237 238 247 238
-	200 3 15 14 13 237 208 247 208 247 238
-	200 3 15 13 12 237 208 247 238 237 238
-	200 3 14 11 8 237 208 247 208 247 238
-	200 3 14 8 13 237 208 247 238 237 238
-	200 3 10 15 12 247 208 237 208 237 238
-	200 3 10 12 9 247 208 237 238 247 238
-	200 3 8 9 12 166 52 166 45 159 45
-	200 3 8 12 13 166 52 159 45 159 52
-	200 3 15 10 11 166 61 159 61 159 68
-	200 3 15 11 14 166 61 159 68 166 68
-	200 3 19 18 17 247 208 237 208 237 238
-	200 3 19 17 16 247 208 237 238 247 238
-	200 3 23 22 21 237 208 247 208 247 238
-	200 3 23 21 20 237 208 247 238 237 238
-	200 3 22 19 16 237 208 247 208 247 238
-	200 3 22 16 21 237 208 247 238 237 238
-	200 3 18 23 20 247 208 237 208 237 238
-	200 3 18 20 17 247 208 237 238 247 238
-	200 3 16 17 20 166 52 166 45 159 45
-	200 3 16 20 21 166 52 159 45 159 52
-	200 3 23 18 19 166 61 159 61 159 68
-	200 3 23 19 22 166 61 159 68 166 68
-	200 3 27 26 25 247 208 237 208 237 238
-	200 3 27 25 24 247 208 237 238 247 238
-	200 3 31 30 29 237 208 247 208 247 238
-	200 3 31 29 28 237 208 247 238 237 238
-	200 3 30 27 24 237 208 247 208 247 238
-	200 3 30 24 29 237 208 247 238 237 238
-	200 3 26 31 28 247 208 237 208 237 238
-	200 3 26 28 25 247 208 237 238 247 238
-	200 3 24 25 28 166 52 166 45 159 45
-	200 3 24 28 29 166 52 159 45 159 52
-	200 3 31 26 27 166 61 159 61 159 68
-	200 3 31 27 30 166 61 159 68 166 68
-	200 3 35 34 33 247 208 237 208 237 238
-	200 3 35 33 32 247 208 237 238 247 238
-	200 3 39 38 37 237 208 247 208 247 238
-	200 3 39 37 36 237 208 247 238 237 238
-	200 3 38 35 32 237 208 247 208 247 238
-	200 3 38 32 37 237 208 247 238 237 238
-	200 3 34 39 36 247 208 237 208 237 238
-	200 3 34 36 33 247 208 237 238 247 238
-	200 3 32 33 36 166 52 166 45 159 45
-	200 3 32 36 37 166 52 159 45 159 52
-	200 3 39 34 35 166 61 159 61 159 68
-	200 3 39 35 38 166 61 159 68 166 68
-	200 3 40 41 42 176 176 196 176 196 156
-	200 3 40 42 43 176 176 196 156 176 156
-	200 3 43 42 41 176 156 196 156 196 176
-	200 3 43 41 40 176 156 196 176 176 176
-	200 3 44 45 46 176 176 196 176 196 156
-	200 3 44 46 47 176 176 196 156 176 156
-	200 3 47 46 45 176 156 196 156 196 176
-	200 3 47 45 44 176 156 196 176 176 176
-CONNECTORS 1
-	0 -51 45
diff --git a/components/weapons/gnwpfrkt.pie b/components/weapons/gnwpfrkt.pie
deleted file mode 100644
index 5cab80c..0000000
--- a/components/weapons/gnwpfrkt.pie
+++ /dev/null
@@ -1,121 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 48 
-	36 52 12 
-	36 39 12 
-	-36 39 12 
-	-36 52 12 
-	36 52 -13 
-	-36 52 -13 
-	-36 39 -13 
-	36 39 -13 
-	36 13 -30 
-	36 13 31 
-	36 75 31 
-	36 75 -30 
-	-36 13 -30 
-	-36 13 31 
-	-36 75 31 
-	-36 75 -30 
-	34 49 44 
-	31 76 38 
-	31 76 -38 
-	34 49 -44 
-	8 76 38 
-	5 49 44 
-	5 49 -44 
-	8 76 -38 
-	31 10 38 
-	34 37 44 
-	34 37 -44 
-	31 10 -38 
-	5 37 44 
-	8 10 38 
-	8 10 -38 
-	5 37 -44 
-	-5 49 44 
-	-8 76 38 
-	-8 76 -38 
-	-5 49 -44 
-	-31 76 38 
-	-34 49 44 
-	-34 49 -44 
-	-31 76 -38 
-	-8 10 38 
-	-5 37 44 
-	-5 37 -44 
-	-8 10 -38 
-	-34 37 44 
-	-31 10 38 
-	-31 10 -38 
-	-34 37 -44
-POLYGONS 64
-	200 3 3 2 1 232 49 228 49 224 99
-	200 3 3 1 0 232 49 224 99 235 99
-	200 3 7 6 5 224 99 228 49 232 49
-	200 3 7 5 4 224 99 232 49 235 99
-	200 3 4 5 3 199 91 199 58 179 58
-	200 3 4 3 0 199 91 179 58 179 91
-	200 3 6 7 1 179 58 179 91 199 91
-	200 3 6 1 2 179 58 199 91 199 58
-	200 3 8 9 10 176 176 196 176 196 156
-	200 3 8 10 11 176 176 196 156 176 156
-	200 3 11 10 9 176 156 196 156 196 176
-	200 3 11 9 8 176 156 196 176 176 176
-	200 3 12 13 14 176 176 196 176 196 156
-	200 3 12 14 15 176 176 196 156 176 156
-	200 3 15 14 13 176 156 196 156 196 176
-	200 3 15 13 12 176 156 196 176 176 176
-	200 3 19 18 17 220 169 220 165 196 165
-	200 3 19 17 16 220 169 196 165 196 169
-	200 3 23 22 21 220 165 220 169 196 169
-	200 3 23 21 20 220 165 196 169 196 165
-	200 3 22 19 16 252 116 256 116 256 140
-	200 3 22 16 21 252 116 256 140 252 140
-	200 3 18 23 20 256 116 252 116 252 140
-	200 3 18 20 17 256 116 252 140 256 140
-	200 3 16 17 20 252 183 252 173 242 173
-	200 3 16 20 21 252 183 242 173 242 183
-	200 3 23 18 19 166 61 159 61 159 68
-	200 3 23 19 22 166 61 159 68 166 68
-	200 3 27 26 25 220 169 220 165 196 165
-	200 3 27 25 24 220 169 196 165 196 169
-	200 3 31 30 29 220 165 220 169 196 169
-	200 3 31 29 28 220 165 196 169 196 165
-	200 3 30 27 24 252 116 256 116 256 140
-	200 3 30 24 29 252 116 256 140 252 140
-	200 3 26 31 28 256 116 252 116 252 140
-	200 3 26 28 25 256 116 252 140 256 140
-	200 3 24 25 28 252 183 252 173 242 173
-	200 3 24 28 29 252 183 242 173 242 183
-	200 3 31 26 27 166 61 159 61 159 68
-	200 3 31 27 30 166 61 159 68 166 68
-	200 3 35 34 33 220 169 220 165 196 165
-	200 3 35 33 32 220 169 196 165 196 169
-	200 3 39 38 37 220 165 220 169 196 169
-	200 3 39 37 36 220 165 196 169 196 165
-	200 3 38 35 32 252 116 256 116 256 140
-	200 3 38 32 37 252 116 256 140 252 140
-	200 3 34 39 36 256 116 252 116 252 140
-	200 3 34 36 33 256 116 252 140 256 140
-	200 3 32 33 36 252 183 252 173 242 173
-	200 3 32 36 37 252 183 242 173 242 183
-	200 3 39 34 35 166 61 159 61 159 68
-	200 3 39 35 38 166 61 159 68 166 68
-	200 3 43 42 41 220 169 220 165 196 165
-	200 3 43 41 40 220 169 196 165 196 169
-	200 3 47 46 45 220 165 220 169 196 169
-	200 3 47 45 44 220 165 196 169 196 165
-	200 3 46 43 40 252 116 256 116 256 140
-	200 3 46 40 45 252 116 256 140 252 140
-	200 3 42 47 44 256 116 252 116 252 140
-	200 3 42 44 41 256 116 252 140 256 140
-	200 3 40 41 44 252 183 252 173 242 173
-	200 3 40 44 45 252 183 242 173 242 183
-	200 3 47 42 43 166 61 159 61 159 68
-	200 3 47 43 46 166 61 159 68 166 68
-CONNECTORS 1
-	0 -46 42
diff --git a/components/weapons/mibnkgun.pie b/components/weapons/mibnkgun.pie
deleted file mode 100644
index 007eb88..0000000
--- a/components/weapons/mibnkgun.pie
+++ /dev/null
@@ -1,57 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 18 
-	-1 9 -40 
-	0 10 -40 
-	0 11 -8 
-	-2 10 -8 
-	-2 8 -40 
-	-2 8 -8 
-	0 6 -40 
-	-1 6 -40 
-	-2 5 -8 
-	0 5 -8 
-	1 9 -40 
-	1 10 -8 
-	1 8 -40 
-	2 8 -8 
-	0 8 -40 
-	1 6 -40 
-	0 8 -8 
-	1 5 -8
-POLYGONS 32
-	200 3 3 2 1 227 222 225 222 225 220
-	200 3 3 1 0 227 222 225 220 227 220
-	200 3 5 3 0 231 222 231 220 229 220
-	200 3 5 0 4 231 222 229 220 229 222
-	200 3 9 8 7 221 222 223 222 223 220
-	200 3 9 7 6 221 222 223 220 221 220
-	200 3 2 11 10 231 222 229 222 229 220
-	200 3 2 10 1 231 222 229 220 231 220
-	200 3 11 13 12 239 220 239 222 237 222
-	200 3 11 12 10 239 220 237 222 237 220
-	200 3 4 0 1 239 221 239 220 238 220
-	200 3 4 1 14 239 221 238 220 238 221
-	200 3 1 10 12 238 220 237 220 237 221
-	200 3 1 12 14 238 220 237 221 238 221
-	200 3 12 15 6 237 221 237 222 238 222
-	200 3 12 6 14 237 221 238 222 238 221
-	200 3 6 7 4 238 222 239 222 239 221
-	200 3 6 4 14 238 222 239 221 238 221
-	200 3 3 5 8 223 220 223 221 223 222
-	200 3 3 8 16 223 220 223 222 222 221
-	200 3 11 2 3 221 220 222 220 223 220
-	200 3 11 3 16 221 220 223 220 222 221
-	200 3 17 13 11 221 222 221 221 221 220
-	200 3 17 11 16 221 222 221 220 222 221
-	200 3 8 9 17 223 222 222 222 221 222
-	200 3 8 17 16 223 222 221 222 222 221
-	200 3 17 9 6 237 222 239 222 239 220
-	200 3 17 6 15 237 222 239 220 237 220
-	200 3 13 17 15 239 220 239 222 237 222
-	200 3 13 15 12 239 220 237 222 237 220
-	200 3 8 5 4 231 222 231 220 229 220
-	200 3 8 4 7 231 222 229 220 229 222
\ No newline at end of file
diff --git a/components/weapons/mibnktur.pie b/components/weapons/mibnktur.pie
deleted file mode 100644
index 1b0c661..0000000
--- a/components/weapons/mibnktur.pie
+++ /dev/null
@@ -1,135 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 48 
-	0 1 2 
-	-6 1 8 
-	-8 1 2 
-	-6 1 -3 
-	0 1 -6 
-	5 1 -3 
-	8 1 2 
-	5 1 8 
-	0 1 11 
-	-5 11 -9 
-	-6 14 -4 
-	-10 2 -13 
-	-8 2 -19 
-	-11 0 -10 
-	-5 15 5 
-	-12 0 15 
-	5 11 -9 
-	8 2 -19 
-	10 2 -13 
-	6 14 -4 
-	10 0 -10 
-	12 0 15 
-	5 15 5 
-	0 14 -4 
-	0 15 5 
-	0 2 -22 
-	0 11 -9 
-	0 0 17 
-	0 2 -13 
-	0 0 -10 
-	-1 9 -40 
-	0 10 -40 
-	0 11 -8 
-	-2 10 -8 
-	-2 8 -40 
-	-2 8 -8 
-	0 6 -40 
-	-1 6 -40 
-	-2 5 -8 
-	0 5 -8 
-	1 9 -40 
-	1 10 -8 
-	1 8 -40 
-	2 8 -8 
-	0 8 -40 
-	1 6 -40 
-	0 8 -8 
-	1 5 -8
-POLYGONS 80
-	200 3 3 2 1 235 220 235 221 235 222
-	200 3 3 1 0 235 220 235 222 234 221
-	200 3 5 4 3 233 220 234 220 235 220
-	200 3 5 3 0 233 220 235 220 234 221
-	200 3 7 6 5 233 222 233 221 233 220
-	200 3 7 5 0 233 222 233 220 234 221
-	200 3 1 8 7 235 222 234 222 233 222
-	200 3 1 7 0 235 222 233 222 234 221
-	200 3 12 11 10 225 222 225 222 226 220
-	200 3 12 10 9 225 222 226 220 225 220
-	200 3 15 14 10 227 222 227 220 226 220
-	200 3 15 10 13 227 222 226 220 225 222
-	200 3 13 10 9 225 222 226 220 225 220
-	200 3 13 9 11 225 222 225 220 225 222
-	200 3 19 18 17 226 220 225 222 225 222
-	200 3 19 17 16 226 220 225 222 225 220
-	200 3 19 22 21 226 220 227 220 227 222
-	200 3 19 21 20 226 220 227 222 225 222
-	200 3 16 19 20 225 220 226 220 225 222
-	200 3 16 20 18 225 220 225 222 225 222
-	200 3 24 23 10 222 222 222 220 223 220
-	200 3 24 10 14 222 222 223 220 223 222
-	200 3 22 19 23 221 222 221 220 222 220
-	200 3 22 23 24 221 222 222 220 222 222
-	200 3 26 25 12 222 222 222 220 223 220
-	200 3 26 12 9 222 222 223 220 223 222
-	200 3 16 17 25 221 222 221 220 222 220
-	200 3 16 25 26 221 222 222 220 222 222
-	200 3 23 26 9 218 222 218 220 219 220
-	200 3 23 9 10 218 222 219 220 219 222
-	200 3 19 16 26 217 222 217 220 218 220
-	200 3 19 26 23 217 222 218 220 218 222
-	200 3 27 24 14 238 222 238 220 237 220
-	200 3 27 14 15 238 222 237 220 237 222
-	200 3 21 22 24 239 222 239 220 238 220
-	200 3 21 24 27 239 222 238 220 238 222
-	200 3 25 28 11 234 220 234 220 235 220
-	200 3 25 11 12 234 220 235 220 235 220
-	200 3 28 29 13 234 220 234 220 235 220
-	200 3 28 13 11 234 220 235 220 235 220
-	200 3 29 27 15 234 220 234 222 235 222
-	200 3 29 15 13 234 220 235 222 235 220
-	200 3 17 18 28 233 220 233 220 234 220
-	200 3 17 28 25 233 220 234 220 234 220
-	200 3 18 20 29 233 220 233 220 234 220
-	200 3 18 29 28 233 220 234 220 234 220
-	200 3 20 21 27 233 220 233 222 234 222
-	200 3 20 27 29 233 220 234 222 234 220
-	200 3 33 32 31 227 222 225 222 225 220
-	200 3 33 31 30 227 222 225 220 227 220
-	200 3 35 33 30 231 222 231 220 229 220
-	200 3 35 30 34 231 222 229 220 229 222
-	200 3 39 38 37 221 222 223 222 223 220
-	200 3 39 37 36 221 222 223 220 221 220
-	200 3 32 41 40 231 222 229 222 229 220
-	200 3 32 40 31 231 222 229 220 231 220
-	200 3 41 43 42 239 220 239 222 237 222
-	200 3 41 42 40 239 220 237 222 237 220
-	200 3 34 30 31 239 221 239 220 238 220
-	200 3 34 31 44 239 221 238 220 238 221
-	200 3 31 40 42 238 220 237 220 237 221
-	200 3 31 42 44 238 220 237 221 238 221
-	200 3 42 45 36 237 221 237 222 238 222
-	200 3 42 36 44 237 221 238 222 238 221
-	200 3 36 37 34 238 222 239 222 239 221
-	200 3 36 34 44 238 222 239 221 238 221
-	200 3 33 35 38 223 220 223 221 223 222
-	200 3 33 38 46 223 220 223 222 222 221
-	200 3 41 32 33 221 220 222 220 223 220
-	200 3 41 33 46 221 220 223 220 222 221
-	200 3 47 43 41 221 222 221 221 221 220
-	200 3 47 41 46 221 222 221 220 222 221
-	200 3 38 39 47 223 222 222 222 221 222
-	200 3 38 47 46 223 222 221 222 222 221
-	200 3 47 39 36 237 222 239 222 239 220
-	200 3 47 36 45 237 222 239 220 237 220
-	200 3 43 47 45 239 220 239 222 237 222
-	200 3 43 45 42 239 220 237 222 237 220
-	200 3 38 35 34 231 222 231 220 229 220
-	200 3 38 34 37 231 222 229 220 229 222
\ No newline at end of file
diff --git a/components/weapons/misensor.pie b/components/weapons/misensor.pie
deleted file mode 100644
index 920bce5..0000000
--- a/components/weapons/misensor.pie
+++ /dev/null
@@ -1,47 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 16 
-	0 31 -3 
-	-23 59 -14 
-	0 69 -11 
-	-33 36 -20 
-	-23 13 -26 
-	0 3 -29 
-	23 59 -14 
-	33 36 -20 
-	23 13 -26 
-	0 32 -6 
-	-15 0 18 
-	-15 0 -17 
-	-9 33 0 
-	15 0 18 
-	9 33 0 
-	15 0 -17
-POLYGONS 24
-	200 3 2 1 0 175 224 170 222 175 216
-	200 3 1 3 0 170 222 168 216 175 216
-	200 3 3 4 0 168 216 170 210 175 216
-	200 3 4 5 0 170 210 175 208 175 216
-	200 3 7 6 0 168 216 170 222 175 216
-	200 3 6 2 0 170 222 175 224 175 216
-	200 3 5 8 0 175 208 170 210 175 216
-	200 3 8 7 0 170 210 168 216 175 216
-	200 3 2 9 1 111 208 111 216 106 210
-	200 3 1 9 3 106 210 111 216 104 216
-	200 3 3 9 4 104 216 111 216 106 222
-	200 3 4 9 5 106 222 111 216 111 224
-	200 3 7 9 6 104 216 111 216 106 210
-	200 3 6 9 2 106 210 111 216 111 208
-	200 3 5 9 8 111 224 111 216 106 222
-	200 3 8 9 7 106 222 111 216 104 216
-	200 3 10 11 12 104 234 115 234 110 224
-	200 3 12 11 10 110 224 115 234 104 234
-	200 3 13 14 15 104 234 110 224 115 234
-	200 3 15 14 13 115 234 110 224 104 234
-	200 3 13 14 12 36 114 34 103 29 103
-	200 3 13 12 10 36 114 29 103 27 114
-	200 3 14 15 11 34 103 36 114 27 114
-	200 3 14 11 12 34 103 27 114 29 103
\ No newline at end of file
diff --git a/components/weapons/sc_asscn.pie b/components/weapons/sc_asscn.pie
deleted file mode 100644
index 2bd52b9..0000000
--- a/components/weapons/sc_asscn.pie
+++ /dev/null
@@ -1,87 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 34 
-	55 -21 3 
-	39 -6 15 
-	33 2 -4 
-	48 -11 -16 
-	39 5 -5 
-	32 -2 -5 
-	38 -10 7 
-	46 -3 7 
-	50 -22 0 
-	57 -16 0 
-	45 -4 7 
-	2 0 -14 
-	-4 6 -9 
-	-4 6 -41 
-	2 0 -41 
-	-11 0 -4 
-	-11 0 -41 
-	-4 -6 -9 
-	-4 -6 -41 
-	-6 26 5 
-	-13 24 7 
-	-12 22 -5 
-	-5 25 -7 
-	-10 7 -6 
-	1 11 -9 
-	-11 10 9 
-	1 13 6 
-	1 -17 21 
-	1 -13 -13 
-	-10 -9 -6 
-	-11 -14 20 
-	1 15 21 
-	1 11 -13 
-	-11 12 20
-POLYGONS 44
-	200 3 0 1 2 133 255 149 255 149 240
-	200 3 0 2 3 133 255 149 240 133 240
-	200 3 3 2 1 133 240 149 240 149 255
-	200 3 3 1 0 133 240 149 255 133 255
-	200 3 4 5 6 115 76 108 76 108 89
-	200 3 4 6 7 115 76 108 89 115 89
-	200 3 7 6 5 115 89 108 89 108 76
-	200 3 7 5 4 115 89 108 76 115 76
-	200 3 6 8 9 16 142 2 142 2 148
-	200 3 6 9 10 16 142 2 148 16 148
-	200 3 10 9 8 16 148 2 148 2 142
-	200 3 10 8 6 16 148 2 142 16 142
-	200 3 14 13 12 96 73 102 73 102 63
-	200 3 14 12 11 96 73 102 63 96 64
-	200 3 13 16 15 96 73 102 73 102 62
-	200 3 13 15 12 96 73 102 62 96 63
-	200 3 16 18 17 96 73 102 73 102 63
-	200 3 16 17 15 96 73 102 63 96 62
-	200 3 18 14 11 96 73 102 73 102 64
-	200 3 18 11 17 96 73 102 64 96 63
-	200 3 18 16 13 12 60 16 60 16 64
-	200 3 18 13 14 12 60 16 64 12 64
-	200 3 22 21 20 5 46 8 41 18 40
-	200 3 22 20 19 5 46 18 40 17 46
-	200 3 21 22 24 2 30 0 35 16 37
-	200 3 21 24 23 2 30 16 37 17 29
-	200 3 20 21 23 2 208 1 196 15 193
-	200 3 20 23 25 2 208 15 193 16 205
-	200 3 22 19 26 18 45 17 39 0 40
-	200 3 22 26 24 18 45 0 40 2 47
-	200 3 19 20 25 17 45 16 40 0 38
-	200 3 19 25 26 17 45 0 38 0 47
-	200 3 30 29 28 24 20 24 20 25 27
-	200 3 30 28 27 24 20 25 27 0 27
-	200 3 28 32 31 14 19 2 19 0 0
-	200 3 28 31 27 14 19 0 0 16 0
-	200 3 29 23 32 14 29 4 29 2 37
-	200 3 29 32 28 14 29 2 37 16 37
-	200 3 33 30 27 16 38 2 38 0 47
-	200 3 33 27 31 16 38 0 47 18 47
-	200 3 23 33 31 5 21 24 20 25 27
-	200 3 23 31 32 5 21 25 27 0 27
-	200 3 30 33 23 2 19 16 19 13 0
-	200 3 30 23 29 2 19 13 0 4 0
-CONNECTORS 1
-	-4 -43 0
diff --git a/components/weapons/sc_atm.pie b/components/weapons/sc_atm.pie
deleted file mode 100644
index f8cf014..0000000
--- a/components/weapons/sc_atm.pie
+++ /dev/null
@@ -1,54 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 19 
-	55 -21 3 
-	39 -6 15 
-	33 2 -4 
-	48 -11 -16 
-	39 5 -5 
-	32 -2 -5 
-	38 -10 7 
-	46 -3 7 
-	50 -22 0 
-	57 -16 0 
-	45 -4 7 
-	-12 -6 28 
-	-12 7 28 
-	1 7 28 
-	1 -6 28 
-	-12 -6 -30 
-	1 -6 -30 
-	1 7 -30 
-	-12 7 -30
-POLYGONS 26
-	200 3 0 1 2 133 255 149 255 149 240
-	200 3 0 2 3 133 255 149 240 133 240
-	200 3 3 2 1 133 240 149 240 149 255
-	200 3 3 1 0 133 240 149 255 133 255
-	200 3 4 5 6 115 76 108 76 108 89
-	200 3 4 6 7 115 76 108 89 115 89
-	200 3 7 6 5 115 89 108 89 108 76
-	200 3 7 5 4 115 89 108 76 115 76
-	200 3 6 8 9 16 142 2 142 2 148
-	200 3 6 9 10 16 142 2 148 16 148
-	200 3 10 9 8 16 148 2 148 2 142
-	200 3 10 8 6 16 148 2 142 16 142
-	200 3 14 13 12 252 117 252 113 256 113
-	200 3 14 12 11 252 117 256 113 256 117
-	200 3 18 17 16 252 113 256 113 256 117
-	200 3 18 16 15 252 113 256 117 252 117
-	200 3 15 16 14 252 116 256 116 256 140
-	200 3 15 14 11 252 116 256 140 252 140
-	200 3 17 18 12 252 116 256 116 256 140
-	200 3 17 12 13 252 116 256 140 252 140
-	200 3 18 15 11 196 172 220 172 220 176
-	200 3 18 11 12 196 172 220 176 196 176
-	200 3 16 17 13 220 176 220 172 196 172
-	200 3 16 13 14 220 176 196 172 196 176
-	200 3 18 15 11 220 172 220 176 196 176
-	200 3 18 11 12 220 172 196 176 196 172
-CONNECTORS 1
-	-5 -34 1
diff --git a/components/weapons/sc_can.pie b/components/weapons/sc_can.pie
deleted file mode 100644
index a3c8392..0000000
--- a/components/weapons/sc_can.pie
+++ /dev/null
@@ -1,70 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 27 
-	-11 -5 -2 
-	-11 5 -2 
-	-13 8 15 
-	-13 -9 15 
-	2 12 -12 
-	2 16 18 
-	2 -16 18 
-	2 -12 -12 
-	0 0 -48 
-	-5 5 -48 
-	-10 0 -48 
-	-5 -5 -48 
-	0 0 -12 
-	-5 5 -7 
-	-10 0 -2 
-	-5 -5 -7 
-	51 -20 -10 
-	45 -12 11 
-	33 4 1 
-	39 -4 -20 
-	39 6 0 
-	30 0 0 
-	39 -12 3 
-	48 -6 3 
-	44 -20 -12 
-	52 -14 -12 
-	47 -7 3
-POLYGONS 34
-	200 3 3 2 1 16 19 2 19 4 0
-	200 3 3 1 0 16 19 4 0 13 0
-	200 3 1 2 5 5 21 24 20 25 27
-	200 3 1 5 4 5 21 25 27 0 27
-	200 3 7 4 5 2 19 14 19 16 0
-	200 3 7 5 6 2 19 16 0 0 0
-	200 3 0 1 4 4 29 14 29 16 37
-	200 3 0 4 7 4 29 16 37 2 37
-	200 3 2 3 6 2 38 16 38 18 47
-	200 3 2 6 5 2 38 18 47 0 47
-	200 3 3 0 7 24 20 5 21 0 27
-	200 3 3 7 6 24 20 0 27 25 27
-	200 3 11 10 9 16 64 12 64 12 60
-	200 3 11 9 8 16 64 12 60 16 60
-	200 3 8 9 13 6 66 12 66 12 51
-	200 3 8 13 12 6 66 12 51 6 53
-	200 3 9 10 14 6 66 12 66 12 49
-	200 3 9 14 13 6 66 12 49 6 51
-	200 3 10 11 15 6 66 12 66 12 51
-	200 3 10 15 14 6 66 12 51 6 49
-	200 3 11 8 12 6 66 12 66 12 53
-	200 3 11 12 15 6 66 12 53 6 51
-	200 3 16 17 18 133 255 149 255 149 240
-	200 3 16 18 19 133 255 149 240 133 240
-	200 3 19 18 17 133 240 149 240 149 255
-	200 3 19 17 16 133 240 149 255 133 255
-	200 3 20 21 22 115 76 108 76 108 89
-	200 3 20 22 23 115 76 108 89 115 89
-	200 3 23 22 21 115 89 108 89 108 76
-	200 3 23 21 20 115 89 108 76 115 76
-	200 3 22 24 25 16 142 2 142 2 148
-	200 3 22 25 26 16 142 2 148 16 148
-	200 3 26 25 24 16 148 2 148 2 142
-	200 3 26 24 22 16 148 2 142 16 142
-CONNECTORS 1
-	-5 -48 0
diff --git a/components/weapons/sc_hpvcn.pie b/components/weapons/sc_hpvcn.pie
deleted file mode 100644
index 2d8cefd..0000000
--- a/components/weapons/sc_hpvcn.pie
+++ /dev/null
@@ -1,87 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 34 
-	46 -24 -6 
-	41 -11 13 
-	35 6 0 
-	40 -6 -19 
-	41 6 -2 
-	31 2 -2 
-	36 -11 4 
-	46 -7 4 
-	40 -22 -9 
-	49 -19 -9 
-	45 -8 4 
-	2 0 -11 
-	-2 4 -7 
-	-2 4 -31 
-	2 0 -31 
-	-6 0 -4 
-	-6 0 -31 
-	-2 -4 -7 
-	-2 -4 -31 
-	-2 19 5 
-	-7 17 7 
-	-7 16 -3 
-	-2 18 -5 
-	-5 5 -4 
-	2 8 -6 
-	-6 7 8 
-	2 9 6 
-	2 -12 18 
-	2 -10 -10 
-	-5 -7 -4 
-	-6 -10 17 
-	2 11 18 
-	2 8 -10 
-	-6 8 17
-POLYGONS 44
-	200 3 0 1 2 133 255 149 255 149 240
-	200 3 0 2 3 133 255 149 240 133 240
-	200 3 3 2 1 133 240 149 240 149 255
-	200 3 3 1 0 133 240 149 255 133 255
-	200 3 4 5 6 115 76 108 76 108 89
-	200 3 4 6 7 115 76 108 89 115 89
-	200 3 7 6 5 115 89 108 89 108 76
-	200 3 7 5 4 115 89 108 76 115 76
-	200 3 6 8 9 16 142 2 142 2 148
-	200 3 6 9 10 16 142 2 148 16 148
-	200 3 10 9 8 16 148 2 148 2 142
-	200 3 10 8 6 16 148 2 142 16 142
-	200 3 14 13 12 96 73 102 73 102 63
-	200 3 14 12 11 96 73 102 63 96 64
-	200 3 13 16 15 96 73 102 73 102 62
-	200 3 13 15 12 96 73 102 62 96 63
-	200 3 16 18 17 96 73 102 73 102 63
-	200 3 16 17 15 96 73 102 63 96 62
-	200 3 18 14 11 96 73 102 73 102 64
-	200 3 18 11 17 96 73 102 64 96 63
-	200 3 18 16 13 12 60 16 60 16 64
-	200 3 18 13 14 12 60 16 64 12 64
-	200 3 22 21 20 5 46 8 41 18 40
-	200 3 22 20 19 5 46 18 40 17 46
-	200 3 21 22 24 2 30 0 35 16 37
-	200 3 21 24 23 2 30 16 37 17 29
-	200 3 20 21 23 2 208 1 196 15 193
-	200 3 20 23 25 2 208 15 193 16 205
-	200 3 22 19 26 18 45 17 39 0 40
-	200 3 22 26 24 18 45 0 40 2 47
-	200 3 19 20 25 17 45 16 40 0 38
-	200 3 19 25 26 17 45 0 38 0 47
-	200 3 30 29 28 24 20 24 20 25 27
-	200 3 30 28 27 24 20 25 27 0 27
-	200 3 28 32 31 14 19 2 19 0 0
-	200 3 28 31 27 14 19 0 0 16 0
-	200 3 29 23 32 14 29 4 29 2 37
-	200 3 29 32 28 14 29 2 37 16 37
-	200 3 33 30 27 16 38 2 38 0 47
-	200 3 33 27 31 16 38 0 47 18 47
-	200 3 23 33 31 5 21 24 20 25 27
-	200 3 23 31 32 5 21 25 27 0 27
-	200 3 30 33 23 2 19 16 19 13 0
-	200 3 30 23 29 2 19 13 0 4 0
-CONNECTORS 1
-	-2 -33 0
diff --git a/components/weapons/sc_pulse.pie b/components/weapons/sc_pulse.pie
deleted file mode 100644
index 3fe66b9..0000000
--- a/components/weapons/sc_pulse.pie
+++ /dev/null
@@ -1,78 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 31 
-	45 -25 -1 
-	42 -8 15 
-	35 6 -1 
-	38 -11 -17 
-	41 5 -4 
-	31 2 -2 
-	37 -10 7 
-	47 -6 5 
-	39 -24 -4 
-	48 -21 -5 
-	45 -7 5 
-	-10 0 -29 
-	-1 -4 -29 
-	-1 -4 -37 
-	-10 0 -37 
-	-1 4 -29 
-	-1 4 -37 
-	-7 0 -10 
-	-2 -2 -10 
-	-2 -2 -29 
-	-7 0 -29 
-	-2 2 -10 
-	-2 2 -29 
-	2 -18 8 
-	2 -8 -15 
-	-9 -5 -9 
-	-13 -14 11 
-	-9 5 -9 
-	-13 14 11 
-	2 8 -15 
-	2 18 8
-POLYGONS 38
-	200 3 0 1 2 133 255 149 255 149 240
-	200 3 0 2 3 133 255 149 240 133 240
-	200 3 3 2 1 133 240 149 240 149 255
-	200 3 3 1 0 133 240 149 255 133 255
-	200 3 4 5 6 115 76 108 76 108 89
-	200 3 4 6 7 115 76 108 89 115 89
-	200 3 7 6 5 115 89 108 89 108 76
-	200 3 7 5 4 115 89 108 76 115 76
-	200 3 6 8 9 16 142 2 142 2 148
-	200 3 6 9 10 16 142 2 148 16 148
-	200 3 10 9 8 16 148 2 148 2 142
-	200 3 10 8 6 16 148 2 142 16 142
-	200 3 14 13 12 242 25 251 25 251 37
-	200 3 14 12 11 242 25 251 37 242 37
-	200 3 13 16 15 242 25 251 25 251 37
-	200 3 13 15 12 242 25 251 37 242 37
-	200 3 16 14 11 242 25 251 25 251 37
-	200 3 16 11 15 242 25 251 37 242 37
-	200 3 13 14 16 157 26 167 33 157 40
-	200 3 11 12 15 46 185 56 179 56 191
-	200 3 20 19 18 33 177 46 177 46 192
-	200 3 20 18 17 33 177 46 192 33 192
-	200 3 19 22 21 33 177 46 177 46 192
-	200 3 19 21 18 33 177 46 192 33 192
-	200 3 22 20 17 33 177 46 177 46 192
-	200 3 22 17 21 33 177 46 192 33 192
-	200 3 26 25 24 0 20 19 22 25 27
-	200 3 26 24 23 0 20 25 27 2 27
-	200 3 26 28 27 14 19 2 19 5 4
-	200 3 26 27 25 14 19 5 4 11 4
-	200 3 25 27 29 6 30 12 30 13 37
-	200 3 25 29 24 6 30 13 37 5 37
-	200 3 27 28 30 19 22 0 20 2 27
-	200 3 27 30 29 19 22 2 27 25 27
-	200 3 28 26 23 2 38 16 38 18 47
-	200 3 28 23 30 2 38 18 47 0 47
-	200 3 29 30 23 12 19 16 0 0 0
-	200 3 29 23 24 12 19 0 0 4 19
-CONNECTORS 1
-	-5 -39 0
diff --git a/components/weapons/sc_rail2.pie b/components/weapons/sc_rail2.pie
deleted file mode 100644
index 8d4a93a..0000000
--- a/components/weapons/sc_rail2.pie
+++ /dev/null
@@ -1,78 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 29 
-	45 -25 -1 
-	42 -8 15 
-	35 6 -1 
-	38 -11 -17 
-	41 5 -4 
-	31 2 -2 
-	37 -10 7 
-	47 -6 5 
-	39 -24 -4 
-	48 -21 -5 
-	45 -7 5 
-	1 -8 13 
-	1 17 13 
-	1 12 -12 
-	1 -8 -20 
-	-9 8 26 
-	-9 4 -2 
-	1 -8 4 
-	-9 -7 -6 
-	-9 -7 4 
-	-9 -7 26 
-	-4 -17 13 
-	-4 -17 4 
-	-4 -16 -49 
-	-8 -8 -49 
-	-8 -8 4 
-	-4 -16 4 
-	0 -9 -49 
-	0 -9 4
-POLYGONS 42
-	200 3 0 1 2 133 255 149 255 149 240
-	200 3 0 2 3 133 255 149 240 133 240
-	200 3 3 2 1 133 240 149 240 149 255
-	200 3 3 1 0 133 240 149 255 133 255
-	200 3 4 5 6 115 76 108 76 108 89
-	200 3 4 6 7 115 76 108 89 115 89
-	200 3 7 6 5 115 89 108 89 108 76
-	200 3 7 5 4 115 89 108 76 115 76
-	200 3 6 8 9 16 142 2 142 2 148
-	200 3 6 9 10 16 142 2 148 16 148
-	200 3 10 9 8 16 148 2 148 2 142
-	200 3 10 8 6 16 148 2 142 16 142
-	200 3 13 12 11 14 19 16 0 0 0
-	200 3 11 14 13 0 0 2 19 14 19
-	200 3 16 15 12 0 27 25 26 18 20
-	200 3 16 12 13 0 27 18 20 4 20
-	200 3 19 18 14 25 26 0 27 4 20
-	200 3 19 14 17 25 26 4 20 18 20
-	200 3 20 15 16 12 19 4 19 5 0
-	200 3 20 16 18 12 19 5 0 11 0
-	200 3 18 16 13 5 131 11 131 14 140
-	200 3 18 13 14 5 131 14 140 2 140
-	200 3 15 20 11 4 41 14 41 18 47
-	200 3 15 11 12 4 41 18 47 0 47
-	200 3 22 17 11 0 20 22 20 22 23
-	200 3 22 11 21 0 20 22 23 0 23
-	200 3 19 22 21 0 0 16 0 16 8
-	200 3 19 21 20 0 0 16 8 1 19
-	200 3 22 19 17 16 134 0 140 2 128
-	200 3 20 21 11 17 47 0 43 16 38
-	200 3 23 24 25 158 45 152 45 152 71
-	200 3 23 25 26 158 45 152 71 158 71
-	200 3 26 25 24 158 71 152 71 152 45
-	200 3 26 24 23 158 71 152 45 158 45
-	200 3 24 27 28 158 45 152 45 152 71
-	200 3 24 28 25 158 45 152 71 158 71
-	200 3 25 28 27 158 71 152 71 152 45
-	200 3 25 27 24 158 71 152 45 158 45
-	200 3 27 23 26 158 45 152 45 152 71
-	200 3 27 26 28 158 45 152 71 158 71
-	200 3 28 26 23 158 71 152 71 152 45
-	200 3 28 23 27 158 71 152 45 158 45
diff --git a/components/weapons/sc_tk.pie b/components/weapons/sc_tk.pie
deleted file mode 100644
index abb7442..0000000
--- a/components/weapons/sc_tk.pie
+++ /dev/null
@@ -1,58 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 23 
-	51 -20 -10 
-	45 -12 11 
-	33 4 1 
-	39 -4 -20 
-	39 6 0 
-	30 0 0 
-	39 -12 3 
-	48 -6 3 
-	44 -20 -12 
-	52 -14 -12 
-	47 -7 3 
-	4 1 0 
-	2 -8 8 
-	-6 5 0 
-	2 -8 -7 
-	-5 -15 -17 
-	2 -9 -17 
-	-10 9 -21 
-	-18 3 -21 
-	-5 -15 22 
-	2 -9 22 
-	-10 9 18 
-	-18 3 18
-POLYGONS 26
-	200 3 0 1 2 133 255 149 255 149 240
-	200 3 0 2 3 133 255 149 240 133 240
-	200 3 3 2 1 133 240 149 240 149 255
-	200 3 3 1 0 133 240 149 255 133 255
-	200 3 4 5 6 115 76 108 76 108 89
-	200 3 4 6 7 115 76 108 89 115 89
-	200 3 7 6 5 115 89 108 89 108 76
-	200 3 7 5 4 115 89 108 76 115 76
-	200 3 6 8 9 16 142 2 142 2 148
-	200 3 6 9 10 16 142 2 148 16 148
-	200 3 10 9 8 16 148 2 148 2 142
-	200 3 10 8 6 16 148 2 142 16 142
-	200 3 13 12 11 252 249 255 256 256 249
-	200 3 11 14 13 256 249 255 256 252 249
-	200 3 18 17 16 252 107 256 107 256 115
-	200 3 18 16 15 252 107 256 115 252 115
-	200 3 16 20 19 256 117 256 139 252 139
-	200 3 16 19 15 256 117 252 139 252 117
-	200 3 22 21 17 256 139 252 139 252 117
-	200 3 22 17 18 256 139 252 117 256 117
-	200 3 17 21 20 197 165 219 165 219 176
-	200 3 17 20 16 197 165 219 176 197 176
-	200 3 21 22 19 252 106 256 106 256 116
-	200 3 21 19 20 252 106 256 116 252 116
-	200 3 22 18 15 197 165 219 165 219 176
-	200 3 22 15 19 197 165 219 176 197 176
-CONNECTORS 1
-	-7 -23 -3
diff --git a/components/weapons/scavmra.pie b/components/weapons/scavmra.pie
deleted file mode 100644
index 517a02b..0000000
--- a/components/weapons/scavmra.pie
+++ /dev/null
@@ -1,27 +0,0 @@
-PIE 3
-TYPE 200
-TEXTURE 0 page-7-barbarians-arizona.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 8
-	11 11.3794 -14.1687
-	11 5.37938 10.8313
-	-10 5.37938 10.8313
-	-10 11.3794 -14.1687
-	-10 16.3794 13.8313
-	11 16.3794 13.8313
-	11 23.3794 -11.1687
-	-10 23.3794 -11.1687
-POLYGONS 12
-	200 3 0 1 2 0 0.445312 0 0.492188 0.082031 0.492188
-	200 3 0 2 3 0 0.445312 0.082031 0.492188 0.082031 0.445312
-	200 3 4 5 6 0 0.507812 0.082031 0.507812 0.082031 0.410156
-	200 3 4 6 7 0 0.507812 0.082031 0.410156 0 0.410156
-	200 3 7 6 0 0.867188 0.695312 0.945312 0.695312 0.945312 0.742188
-	200 3 7 0 3 0.867188 0.695312 0.945312 0.742188 0.867188 0.742188
-	200 3 6 5 1 0 0.515625 0.078125 0.515625 0.078125 0.558594
-	200 3 6 1 0 0 0.515625 0.078125 0.558594 0 0.558594
-	200 3 5 4 2 0.863281 0.746094 0.949219 0.746094 0.949219 0.773438
-	200 3 5 2 1 0.863281 0.746094 0.949219 0.773438 0.863281 0.773438
-	200 3 4 7 3 0.074219 0.496094 0 0.496094 0 0.554688
-	200 3 4 3 2 0.074219 0.496094 0 0.554688 0.074219 0.554688
diff --git a/components/weapons/scbody.pie b/components/weapons/scbody.pie
deleted file mode 100644
index 349e258..0000000
--- a/components/weapons/scbody.pie
+++ /dev/null
@@ -1,41 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-14-droid-hubs.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 14 
-	-16 24 -6 
-	-16 8 -14 
-	16 8 -14 
-	16 24 -6 
-	-8 -8 -14 
-	8 -8 -14 
-	-16 24 10 
-	-16 8 10 
-	-8 -8 2 
-	16 24 10 
-	16 8 10 
-	8 -8 2 
-	-16 24 -14 
-	16 24 -14
-POLYGONS 18
-	200 3 3 2 1 66 167 74 167 74 185
-	200 3 3 1 0 66 167 74 185 66 185
-	200 3 5 4 1 82 172 82 180 74 185
-	200 3 5 1 2 82 172 74 185 74 167
-	200 3 0 1 7 66 163 74 167 74 155
-	200 3 0 7 6 66 163 74 155 66 155
-	200 3 4 8 7 82 167 82 159 74 155
-	200 3 4 7 1 82 167 74 155 74 167
-	200 3 6 7 10 29 155 37 155 37 137
-	200 3 6 10 9 29 155 37 137 29 137
-	200 3 11 10 7 45 142 37 137 37 155
-	200 3 11 7 8 45 142 37 155 45 150
-	200 3 9 13 12 169 155 157 155 157 137
-	200 3 9 12 6 169 155 157 137 169 137
-	200 3 9 10 2 66 155 74 155 74 167
-	200 3 9 2 3 66 155 74 167 66 163
-	200 3 11 5 2 82 159 82 167 74 167
-	200 3 11 2 10 82 159 74 167 74 155
-CONNECTORS 1
-	-18 -4 16
diff --git a/components/weapons/trhair.pie b/components/weapons/trhair.pie
deleted file mode 100644
index 0b99d3d..0000000
--- a/components/weapons/trhair.pie
+++ /dev/null
@@ -1,31 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 10 
-	15 0 29 
-	15 23 18 
-	15 17 -10 
-	15 0 -22 
-	15 23 28 
-	-15 0 29 
-	-15 0 -22 
-	-15 17 -10 
-	-15 23 18 
-	-15 23 28
-POLYGONS 14
-	200 3 3 2 1 0 27 6 22 20 20
-	200 3 3 1 0 0 27 20 20 25 27
-	200 3 0 1 4 25 27 20 20 24 20
-	200 3 8 7 6 20 20 6 22 0 27
-	200 3 8 6 5 20 20 0 27 25 27
-	200 3 8 5 9 20 20 25 27 24 20
-	200 3 6 7 2 175 17 175 6 190 6
-	200 3 6 2 3 175 17 190 6 190 17
-	200 3 7 8 1 175 6 175 0 190 0
-	200 3 7 1 2 175 6 190 0 190 6
-	200 3 9 5 0 1 38 1 47 17 47
-	200 3 9 0 4 1 38 17 47 17 38
-	200 3 8 9 4 0 19 0 0 16 0
-	200 3 8 4 1 0 19 16 0 16 19
\ No newline at end of file
diff --git a/components/weapons/trhcan.pie b/components/weapons/trhcan.pie
deleted file mode 100644
index 618f91d..0000000
--- a/components/weapons/trhcan.pie
+++ /dev/null
@@ -1,27 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 8 
-	15 0 -23 
-	20 0 22 
-	10 18 19 
-	6 15 -12 
-	-8 15 -12 
-	-12 18 19 
-	-18 0 -23 
-	-23 0 22
-POLYGONS 12
-	200 3 3 2 1 5 21 24 20 25 27
-	200 3 3 1 0 5 21 25 27 0 27
-	200 3 5 2 3 14 18 2 18 4 4
-	200 3 5 3 4 14 18 4 4 12 4
-	200 3 4 3 0 4 29 14 29 16 37
-	200 3 4 0 6 4 29 16 37 2 37
-	200 3 2 5 7 2 38 16 38 18 47
-	200 3 2 7 1 2 38 18 47 0 47
-	200 3 5 4 6 24 20 5 21 0 27
-	200 3 5 6 7 24 20 0 27 25 27
-	200 3 6 0 1 2 19 14 19 16 0
-	200 3 6 1 7 2 19 16 0 0 0
\ No newline at end of file
diff --git a/components/weapons/trhcon.pie b/components/weapons/trhcon.pie
deleted file mode 100644
index d8d4168..0000000
--- a/components/weapons/trhcon.pie
+++ /dev/null
@@ -1,53 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 18 
-	-20 12 45 
-	-20 1 22 
-	20 1 22 
-	20 12 45 
-	-19 25 45 
-	-23 25 45 
-	-23 25 -19 
-	-19 25 -11 
-	24 25 -19 
-	20 25 -11 
-	24 25 45 
-	20 25 45 
-	-20 25 45 
-	-19 1 -38 
-	-20 25 -11 
-	20 1 -38 
-	-20 18 -18 
-	20 18 -18
-POLYGONS 28
-	200 3 3 2 1 106 256 106 247 121 247
-	200 3 3 1 0 106 256 121 247 121 256
-	200 3 7 6 5 121 234 123 231 123 256
-	200 3 7 5 4 121 234 123 256 121 256
-	200 3 9 8 6 106 234 104 231 123 231
-	200 3 9 6 7 106 234 123 231 121 234
-	200 3 11 10 8 106 256 104 256 104 231
-	200 3 11 8 9 106 256 104 231 106 234
-	200 3 2 3 0 64 62 64 52 86 52
-	200 3 2 0 1 64 62 86 52 86 62
-	200 3 14 13 1 148 104 136 104 136 123
-	200 3 14 1 12 148 104 136 123 148 136
-	200 3 1 0 12 136 123 142 136 148 136
-	200 3 2 15 9 136 123 136 104 148 104
-	200 3 2 9 11 136 123 148 104 148 136
-	200 3 3 2 11 142 136 136 123 148 136
-	200 3 9 15 13 64 51 64 63 86 63
-	200 3 9 13 14 64 51 86 63 86 51
-	200 3 14 12 1 148 71 148 104 136 91
-	200 3 14 1 13 148 71 136 91 136 71
-	200 3 1 12 0 136 91 148 104 142 104
-	200 3 15 2 11 136 71 136 91 148 104
-	200 3 15 11 9 136 71 148 104 148 71
-	200 3 3 11 2 142 104 148 104 136 91
-	200 3 15 9 14 64 51 64 40 86 40
-	200 3 15 14 13 64 51 86 40 86 51
-	200 3 2 17 16 106 247 106 234 121 234
-	200 3 2 16 1 106 247 121 234 121 247
\ No newline at end of file
diff --git a/components/weapons/trhecm3.pie b/components/weapons/trhecm3.pie
deleted file mode 100644
index 112b972..0000000
--- a/components/weapons/trhecm3.pie
+++ /dev/null
@@ -1,25 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 6 
-	21 7 19 
-	0 7 -23 
-	0 0 -23 
-	21 0 19 
-	-20 7 19 
-	-20 0 19
-POLYGONS 12
-	200 3 0 1 2 16 14 0 14 0 5
-	200 3 0 2 3 16 14 0 5 16 5
-	200 3 3 2 1 16 5 0 5 0 14
-	200 3 3 1 0 16 5 0 14 16 14
-	200 3 4 0 3 18 40 0 40 0 45
-	200 3 4 3 5 18 40 0 45 18 45
-	200 3 5 3 0 18 45 0 45 0 40
-	200 3 5 0 4 18 45 0 40 18 40
-	200 3 1 4 5 16 14 0 14 0 5
-	200 3 1 5 2 16 14 0 5 16 5
-	200 3 2 5 4 16 5 0 5 0 14
-	200 3 2 4 1 16 5 0 14 16 14
\ No newline at end of file
diff --git a/components/weapons/trhemp.pie b/components/weapons/trhemp.pie
deleted file mode 100644
index fadbab1..0000000
--- a/components/weapons/trhemp.pie
+++ /dev/null
@@ -1,37 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 12 
-	-6 11 -28 
-	6 11 -28 
-	14 26 23 
-	-14 26 23 
-	-8 0 -21 
-	8 0 -21 
-	18 0 13 
-	-18 0 13 
-	32 0 -4 
-	32 21 4 
-	-32 21 4 
-	-32 0 -4
-POLYGONS 18
-	200 3 3 2 1 0 0 16 0 11 19
-	200 3 3 1 0 0 0 11 19 5 19
-	200 3 0 1 5 11 256 2 256 0 240
-	200 3 0 5 4 11 256 0 240 13 240
-	200 3 1 2 6 6 22 25 20 23 27
-	200 3 1 6 5 6 22 23 27 0 27
-	200 3 2 3 7 2 38 16 38 18 47
-	200 3 2 7 6 2 38 18 47 0 47
-	200 3 3 0 4 25 20 6 22 0 27
-	200 3 3 4 7 25 20 0 27 23 27
-	200 3 2 6 8 209 51 209 71 223 71
-	200 3 2 8 9 209 51 223 71 223 51
-	200 3 9 8 6 223 51 223 71 209 71
-	200 3 9 6 2 223 51 209 71 209 51
-	200 3 7 3 10 223 71 223 51 209 51
-	200 3 7 10 11 223 71 209 51 209 71
-	200 3 11 10 3 209 71 209 51 223 51
-	200 3 11 3 7 209 71 223 51 223 71
\ No newline at end of file
diff --git a/components/weapons/trhgss.pie b/components/weapons/trhgss.pie
deleted file mode 100644
index 5c6d4f4..0000000
--- a/components/weapons/trhgss.pie
+++ /dev/null
@@ -1,34 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 12 
-	17 0 -26 
-	23 0 16 
-	11 14 32 
-	7 14 -15 
-	-23 0 16 
-	-17 0 -26 
-	-7 14 -15 
-	-11 14 32 
-	-9 14 4 
-	9 14 4 
-	0 23 5 
-	0 14 30
-POLYGONS 15
-	200 3 3 2 1 0 27 25 26 18 20
-	200 3 3 1 0 0 27 18 20 4 20
-	200 3 7 6 5 25 26 0 27 4 20
-	200 3 7 5 4 25 26 4 20 18 20
-	200 3 7 2 3 12 19 4 19 5 0
-	200 3 7 3 6 12 19 5 0 11 0
-	200 3 2 7 4 4 41 14 41 18 47
-	200 3 2 4 1 4 41 18 47 0 47
-	200 3 0 1 4 14 19 16 0 0 0
-	200 3 4 5 0 0 0 2 19 14 19
-	200 3 10 9 8 18 38 18 47 0 38
-	200 3 11 10 8 134 208 128 197 144 197
-	200 3 10 11 9 144 197 137 208 128 197
-	200 3 6 3 0 133 200 139 200 142 208
-	200 3 6 0 5 133 200 142 208 130 208
\ No newline at end of file
diff --git a/components/weapons/trhhow2.pie b/components/weapons/trhhow2.pie
deleted file mode 100644
index 8761384..0000000
--- a/components/weapons/trhhow2.pie
+++ /dev/null
@@ -1,79 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 24 
-	12 1 -21 
-	12 1 8 
-	12 12 11 
-	12 12 -15 
-	12 1 29 
-	12 12 26 
-	7 22 6 
-	7 22 -9 
-	-13 1 29 
-	-13 12 26 
-	-13 1 -21 
-	-13 1 8 
-	-13 12 -15 
-	-13 12 11 
-	-8 22 -9 
-	-8 22 6 
-	-13 13 -18 
-	-10 33 -6 
-	-18 33 -6 
-	-24 1 -24 
-	25 1 -25 
-	13 13 -18 
-	18 33 -6 
-	10 33 -6
-POLYGONS 48
-	200 3 0 1 2 0 139 9 139 11 132
-	200 3 0 2 3 0 139 11 132 2 132
-	200 3 3 2 1 2 132 11 132 9 139
-	200 3 3 1 0 2 132 9 139 0 139
-	200 3 1 4 5 9 139 16 139 15 132
-	200 3 1 5 2 9 139 15 132 11 132
-	200 3 2 5 4 11 132 15 132 16 139
-	200 3 2 4 1 11 132 16 139 9 139
-	200 3 3 2 6 2 132 11 132 9 126
-	200 3 3 6 7 2 132 9 126 4 126
-	200 3 7 6 2 4 126 9 126 11 132
-	200 3 7 2 3 4 126 11 132 2 132
-	200 3 8 9 5 0 47 0 39 18 39
-	200 3 8 5 4 0 47 18 39 18 47
-	200 3 4 5 9 18 47 18 39 0 39
-	200 3 4 9 8 18 47 0 39 0 47
-	200 3 10 11 1 0 192 0 201 16 201
-	200 3 10 1 0 0 192 16 201 16 192
-	200 3 0 1 11 16 192 16 201 0 201
-	200 3 0 11 10 16 192 0 201 0 192
-	200 3 11 8 4 0 201 0 208 16 208
-	200 3 11 4 1 0 201 16 208 16 201
-	200 3 1 4 8 16 201 16 208 0 208
-	200 3 1 8 11 16 201 0 208 0 201
-	200 3 10 12 13 0 139 2 132 10 132
-	200 3 10 13 11 0 139 10 132 9 139
-	200 3 11 13 12 9 139 10 132 2 132
-	200 3 11 12 10 9 139 2 132 0 139
-	200 3 11 13 9 9 139 10 132 15 132
-	200 3 11 9 8 9 139 15 132 16 139
-	200 3 8 9 13 16 139 15 132 10 132
-	200 3 8 13 11 16 139 10 132 9 139
-	200 3 12 14 15 2 132 4 126 9 126
-	200 3 12 15 13 2 132 9 126 10 132
-	200 3 13 15 14 10 132 9 126 4 126
-	200 3 13 14 12 10 132 4 126 2 132
-	200 3 16 17 18 132 202 133 193 130 193
-	200 3 16 18 19 132 202 130 193 128 207
-	200 3 19 18 17 128 207 130 193 133 193
-	200 3 19 17 16 128 207 133 193 132 202
-	200 3 16 19 20 132 202 128 207 144 207
-	200 3 16 20 21 132 202 144 207 140 202
-	200 3 21 20 19 140 202 144 207 128 207
-	200 3 21 19 16 140 202 128 207 132 202
-	200 3 21 20 22 140 202 144 207 142 193
-	200 3 21 22 23 140 202 142 193 139 193
-	200 3 23 22 20 139 193 142 193 144 207
-	200 3 23 20 21 139 193 144 207 140 202
\ No newline at end of file
diff --git a/components/weapons/trhhowt.pie b/components/weapons/trhhowt.pie
deleted file mode 100644
index a84c872..0000000
--- a/components/weapons/trhhowt.pie
+++ /dev/null
@@ -1,79 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 24 
-	-5 10 -17 
-	-5 31 -5 
-	-18 31 -5 
-	-24 0 -23 
-	25 0 -23 
-	6 10 -17 
-	18 31 -5 
-	6 31 -5 
-	12 0 -21 
-	12 0 8 
-	12 11 11 
-	12 11 -15 
-	12 0 28 
-	12 11 25 
-	7 21 6 
-	7 21 -9 
-	-13 0 28 
-	-13 11 25 
-	-13 0 -21 
-	-13 0 8 
-	-13 11 -15 
-	-13 11 11 
-	-8 21 -9 
-	-8 21 6
-POLYGONS 48
-	200 3 0 1 2 132 202 133 193 130 193
-	200 3 0 2 3 132 202 130 193 128 207
-	200 3 3 2 1 128 207 130 193 133 193
-	200 3 3 1 0 128 207 133 193 132 202
-	200 3 0 3 4 132 202 128 207 144 207
-	200 3 0 4 5 132 202 144 207 140 202
-	200 3 5 4 3 140 202 144 207 128 207
-	200 3 5 3 0 140 202 128 207 132 202
-	200 3 5 4 6 140 202 144 207 142 193
-	200 3 5 6 7 140 202 142 193 139 193
-	200 3 7 6 4 139 193 142 193 144 207
-	200 3 7 4 5 139 193 144 207 140 202
-	200 3 8 9 10 0 139 9 139 11 132
-	200 3 8 10 11 0 139 11 132 2 132
-	200 3 11 10 9 2 132 11 132 9 139
-	200 3 11 9 8 2 132 9 139 0 139
-	200 3 9 12 13 9 139 16 139 15 132
-	200 3 9 13 10 9 139 15 132 11 132
-	200 3 10 13 12 11 132 15 132 16 139
-	200 3 10 12 9 11 132 16 139 9 139
-	200 3 11 10 14 2 132 11 132 9 126
-	200 3 11 14 15 2 132 9 126 4 126
-	200 3 15 14 10 4 126 9 126 11 132
-	200 3 15 10 11 4 126 11 132 2 132
-	200 3 16 17 13 0 47 0 39 18 39
-	200 3 16 13 12 0 47 18 39 18 47
-	200 3 12 13 17 18 47 18 39 0 39
-	200 3 12 17 16 18 47 0 39 0 47
-	200 3 18 19 9 0 192 0 201 16 201
-	200 3 18 9 8 0 192 16 201 16 192
-	200 3 8 9 19 16 192 16 201 0 201
-	200 3 8 19 18 16 192 0 201 0 192
-	200 3 19 16 12 0 201 0 208 16 208
-	200 3 19 12 9 0 201 16 208 16 201
-	200 3 9 12 16 16 201 16 208 0 208
-	200 3 9 16 19 16 201 0 208 0 201
-	200 3 18 20 21 0 139 2 132 10 132
-	200 3 18 21 19 0 139 10 132 9 139
-	200 3 19 21 20 9 139 10 132 2 132
-	200 3 19 20 18 9 139 2 132 0 139
-	200 3 19 21 17 9 139 10 132 15 132
-	200 3 19 17 16 9 139 15 132 16 139
-	200 3 16 17 21 16 139 15 132 10 132
-	200 3 16 21 19 16 139 10 132 9 139
-	200 3 20 22 23 2 132 4 126 9 126
-	200 3 20 23 21 2 132 9 126 10 132
-	200 3 21 23 22 10 132 9 126 4 126
-	200 3 21 22 20 10 132 4 126 2 132
\ No newline at end of file
diff --git a/components/weapons/trhlas.pie b/components/weapons/trhlas.pie
deleted file mode 100644
index 461b981..0000000
--- a/components/weapons/trhlas.pie
+++ /dev/null
@@ -1,27 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 8 
-	-9 15 -12 
-	9 15 -12 
-	22 21 23 
-	-22 21 23 
-	-13 0 -21 
-	13 0 -21 
-	28 0 13 
-	-28 0 13
-POLYGONS 12
-	200 3 3 2 1 14 19 2 19 5 4
-	200 3 3 1 0 14 19 5 4 11 4
-	200 3 0 1 5 6 30 12 30 13 37
-	200 3 0 5 4 6 30 13 37 5 37
-	200 3 1 2 6 19 22 0 20 2 27
-	200 3 1 6 5 19 22 2 27 25 27
-	200 3 2 3 7 2 38 16 38 18 47
-	200 3 2 7 6 2 38 18 47 0 47
-	200 3 5 6 7 12 19 16 0 0 0
-	200 3 5 7 4 12 19 0 0 4 19
-	200 3 3 0 4 0 20 19 22 25 27
-	200 3 3 4 7 0 20 25 27 2 27
\ No newline at end of file
diff --git a/components/weapons/trhmg.pie b/components/weapons/trhmg.pie
deleted file mode 100644
index c34f885..0000000
--- a/components/weapons/trhmg.pie
+++ /dev/null
@@ -1,39 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 12 
-	-9 15 -18 
-	9 15 -18 
-	17 19 -1 
-	-17 19 -1 
-	12 10 20 
-	-11 10 20 
-	-15 0 20 
-	15 0 20 
-	21 0 -1 
-	-21 0 -1 
-	13 0 -29 
-	-13 0 -29
-POLYGONS 20
-	200 3 3 2 1 16 8 0 8 2 0
-	200 3 3 1 0 16 8 2 0 14 0
-	200 3 3 5 4 16 8 12 19 4 19
-	200 3 3 4 2 16 8 4 19 0 8
-	200 3 9 8 7 0 9 16 9 13 0
-	200 3 9 7 6 0 9 13 0 3 0
-	200 3 9 11 10 0 9 3 19 13 19
-	200 3 9 10 8 0 9 13 19 16 9
-	200 3 4 7 8 0 23 0 27 11 27
-	200 3 4 8 2 0 23 11 27 11 20
-	200 3 4 5 6 4 42 14 42 15 47
-	200 3 4 6 7 4 42 15 47 3 47
-	200 3 0 1 10 6 30 12 30 15 37
-	200 3 0 10 11 6 30 15 37 3 37
-	200 3 2 8 10 11 20 11 27 25 27
-	200 3 2 10 1 11 20 25 27 20 21
-	200 3 5 3 9 0 23 11 20 11 27
-	200 3 5 9 6 0 23 11 27 0 27
-	200 3 3 0 11 11 20 20 21 25 27
-	200 3 3 11 9 11 20 25 27 11 27
\ No newline at end of file
diff --git a/components/weapons/trhmsl.pie b/components/weapons/trhmsl.pie
deleted file mode 100644
index f21d839..0000000
--- a/components/weapons/trhmsl.pie
+++ /dev/null
@@ -1,106 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 39 
-	-8 21 9 
-	-16 0 0 
-	17 0 0 
-	9 21 9 
-	-3 16 27 
-	4 16 27 
-	-16 0 25 
-	17 0 25 
-	-7 17 -89 
-	-12 0 -57 
-	13 0 -57 
-	8 17 -89 
-	-7 2 1 
-	8 2 1 
-	-17 0 0 
-	5 36 16 
-	0 30 18 
-	7 31 14 
-	0 38 16 
-	5 26 12 
-	0 24 11 
-	-5 36 16 
-	-7 31 14 
-	-5 26 12 
-	0 20 14 
-	3 19 20 
-	0 31 18 
-	-3 19 20 
-	19 17 -85 
-	19 2 1 
-	8 17 -85 
-	24 28 -83 
-	24 13 3 
-	-19 17 -85 
-	-19 2 1 
-	-8 2 1 
-	-8 17 -85 
-	-23 28 -83 
-	-23 13 3
-POLYGONS 60
-	200 3 3 2 1 0 238 13 241 13 228
-	200 3 3 1 0 0 238 13 228 0 231
-	200 3 5 3 0 132 192 128 208 144 208
-	200 3 5 0 4 132 192 144 208 140 192
-	200 3 7 5 4 0 38 7 28 11 28
-	200 3 7 4 6 0 38 11 28 18 38
-	200 3 11 10 9 223 29 219 48 236 49
-	200 3 11 9 8 223 29 236 49 232 30
-	200 3 13 11 8 246 40 246 73 256 73
-	200 3 13 8 12 246 40 256 73 256 40
-	200 3 14 12 8 252 75 248 74 242 97
-	200 3 14 8 9 252 75 242 97 256 89
-	200 3 11 13 2 242 97 248 74 252 75
-	200 3 11 2 10 242 97 252 75 256 89
-	200 3 6 4 0 3 256 12 254 13 242
-	200 3 6 0 1 3 256 13 242 0 241
-	200 3 3 5 7 13 242 12 254 3 256
-	200 3 3 7 2 13 242 3 256 0 241
-	200 3 17 16 15 104 216 111 216 106 210
-	200 3 15 16 18 106 210 111 216 111 208
-	200 3 20 16 19 111 224 111 216 106 222
-	200 3 19 16 17 106 222 111 216 104 216
-	200 3 18 21 16 175 224 170 222 175 216
-	200 3 21 22 16 170 222 168 216 175 216
-	200 3 22 23 16 168 216 170 210 175 216
-	200 3 23 20 16 170 210 175 208 175 216
-	200 3 17 15 16 168 216 170 222 175 216
-	200 3 15 18 16 170 222 175 224 175 216
-	200 3 20 19 16 175 208 170 210 175 216
-	200 3 19 17 16 170 210 168 216 175 216
-	200 3 18 16 21 111 208 111 216 106 210
-	200 3 21 16 22 106 210 111 216 104 216
-	200 3 22 16 23 104 216 111 216 106 222
-	200 3 23 16 20 106 222 111 216 111 224
-	200 3 26 26 25 110 224 110 224 115 232
-	200 3 26 25 24 110 224 115 232 110 232
-	200 3 26 26 27 110 224 110 224 115 232
-	200 3 26 27 25 110 224 115 232 104 232
-	200 3 26 26 24 110 224 110 224 115 232
-	200 3 26 24 27 110 224 115 232 115 232
-	200 3 26 26 26 110 224 110 224 110 224
-	200 3 26 26 26 110 224 110 224 110 224
-	200 3 26 26 26 110 224 110 224 110 224
-	200 3 26 26 26 110 224 110 224 110 224
-	200 3 28 29 13 0 114 26 114 26 102
-	200 3 28 13 30 0 114 26 102 0 102
-	200 3 30 13 29 0 102 26 102 26 114
-	200 3 30 29 28 0 102 26 114 0 114
-	200 3 28 31 32 0 76 22 76 22 102
-	200 3 28 32 29 0 76 22 102 0 102
-	200 3 29 32 31 0 102 22 102 22 76
-	200 3 29 31 28 0 102 22 76 0 76
-	200 3 33 34 35 0 102 26 102 26 114
-	200 3 33 35 36 0 102 26 114 0 114
-	200 3 36 35 34 0 114 26 114 26 102
-	200 3 36 34 33 0 114 26 102 0 102
-	200 3 33 37 38 0 76 22 76 22 102
-	200 3 33 38 34 0 76 22 102 0 102
-	200 3 34 38 37 0 102 22 102 22 76
-	200 3 34 37 33 0 102 22 76 0 76
\ No newline at end of file
diff --git a/components/weapons/trhmslab.pie b/components/weapons/trhmslab.pie
deleted file mode 100644
index 7be5fa5..0000000
--- a/components/weapons/trhmslab.pie
+++ /dev/null
@@ -1,27 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 8 
-	-19 4 29 
-	-21 23 -64 
-	21 23 -64 
-	20 4 29 
-	-24 0 -42 
-	-17 0 27 
-	24 0 -42 
-	17 0 27
-POLYGONS 12
-	200 3 0 1 2 1 192 0 208 16 208
-	200 3 0 2 3 1 192 16 208 15 192
-	200 3 3 2 1 15 192 16 208 0 208
-	200 3 3 1 0 15 192 0 208 1 192
-	200 3 5 0 1 24 20 25 22 0 28
-	200 3 5 1 4 24 20 0 28 6 20
-	200 3 2 3 7 0 28 25 22 24 20
-	200 3 2 7 6 0 28 24 20 6 20
-	200 3 0 5 7 25 22 24 20 24 20
-	200 3 0 7 3 25 22 24 20 25 22
-	200 3 2 6 4 4 39 0 47 18 47
-	200 3 2 4 1 4 39 18 47 14 39
\ No newline at end of file
diff --git a/components/weapons/trhmsli.pie b/components/weapons/trhmsli.pie
deleted file mode 100644
index e2e08ff..0000000
--- a/components/weapons/trhmsli.pie
+++ /dev/null
@@ -1,27 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 8 
-	-13 4 1 
-	-14 23 -92 
-	15 23 -92 
-	14 4 1 
-	-24 0 -70 
-	-17 0 0 
-	24 0 -70 
-	17 0 0
-POLYGONS 12
-	200 3 0 1 2 1 192 0 208 16 208
-	200 3 0 2 3 1 192 16 208 15 192
-	200 3 3 2 1 15 192 16 208 0 208
-	200 3 3 1 0 15 192 0 208 1 192
-	200 3 5 0 1 24 20 25 22 0 28
-	200 3 5 1 4 24 20 0 28 6 20
-	200 3 2 3 7 0 28 25 22 24 20
-	200 3 2 7 6 0 28 24 20 6 20
-	200 3 0 5 7 25 22 24 20 24 20
-	200 3 0 7 3 25 22 24 20 25 22
-	200 3 2 6 4 4 39 0 47 18 47
-	200 3 2 4 1 4 39 18 47 14 39
\ No newline at end of file
diff --git a/components/weapons/trhmslsa.pie b/components/weapons/trhmslsa.pie
deleted file mode 100644
index 579096e..0000000
--- a/components/weapons/trhmslsa.pie
+++ /dev/null
@@ -1,64 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 23 
-	8 14 -19 
-	0 18 -14 
-	8 24 -17 
-	0 10 -20 
-	0 28 -15 
-	-8 14 -19 
-	-8 24 -17 
-	-5 30 -12 
-	5 30 -12 
-	12 30 -5 
-	12 30 5 
-	5 30 12 
-	-12 30 -5 
-	-5 30 12 
-	-12 30 5 
-	14 0 5 
-	5 0 14 
-	-5 0 14 
-	-13 0 5 
-	-13 0 -5 
-	-5 0 -13 
-	5 0 -13 
-	14 0 -5
-POLYGONS 34
-	200 3 12 7 20 139 192 144 192 144 207
-	200 3 12 20 19 139 192 144 207 139 207
-	200 3 14 12 19 133 192 139 192 139 207
-	200 3 14 19 18 133 192 139 207 133 207
-	200 3 8 9 22 144 192 139 192 139 207
-	200 3 8 22 21 144 192 139 207 144 207
-	200 3 13 14 18 128 192 133 192 133 207
-	200 3 13 18 17 128 192 133 207 128 207
-	200 3 9 10 15 139 192 133 192 133 207
-	200 3 9 15 22 139 192 133 207 139 207
-	200 3 10 11 16 133 192 128 192 128 207
-	200 3 10 16 15 133 192 128 207 133 207
-	200 3 7 8 21 0 114 15 114 15 119
-	200 3 7 21 20 0 114 15 119 0 119
-	200 3 4 2 1 112 208 105 212 112 216
-	200 3 4 1 2 176 224 176 216 168 220
-	200 3 6 4 1 105 212 112 208 112 216
-	200 3 6 1 4 168 220 176 216 176 224
-	200 3 5 6 1 105 220 105 212 112 216
-	200 3 5 1 6 168 212 176 216 168 220
-	200 3 3 1 5 176 208 176 216 168 212
-	200 3 3 5 1 112 224 105 220 112 216
-	200 3 0 1 3 168 212 176 216 176 208
-	200 3 0 3 1 105 220 112 224 112 216
-	200 3 2 1 0 168 220 176 216 168 212
-	200 3 2 0 1 105 212 105 220 112 216
-	200 3 12 14 13 29 103 34 103 37 106
-	200 3 12 13 11 29 103 37 106 37 111
-	200 3 12 11 10 29 103 37 111 34 114
-	200 3 12 10 7 29 103 34 114 26 106
-	200 3 10 9 8 34 114 29 114 26 111
-	200 3 10 8 7 34 114 26 111 26 106
-	200 3 11 13 17 0 241 13 241 13 256
-	200 3 11 17 16 0 241 13 256 0 256
\ No newline at end of file
diff --git a/components/weapons/trhplasm.pie b/components/weapons/trhplasm.pie
deleted file mode 100644
index bf71eed..0000000
--- a/components/weapons/trhplasm.pie
+++ /dev/null
@@ -1,27 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 8 
-	22 0 -28 
-	26 0 25 
-	15 25 20 
-	15 24 -12 
-	-17 24 -12 
-	-17 25 20 
-	-24 0 -28 
-	-27 0 25
-POLYGONS 12
-	200 3 3 2 1 5 21 24 20 25 27
-	200 3 3 1 0 5 21 25 27 0 27
-	200 3 5 2 3 14 18 2 18 4 4
-	200 3 5 3 4 14 18 4 4 12 4
-	200 3 4 3 0 4 29 14 29 16 37
-	200 3 4 0 6 4 29 16 37 2 37
-	200 3 2 5 7 2 38 16 38 18 47
-	200 3 2 7 1 2 38 18 47 0 47
-	200 3 5 4 6 24 20 5 21 0 27
-	200 3 5 6 7 24 20 0 27 25 27
-	200 3 6 0 1 2 19 14 19 16 0
-	200 3 6 1 7 2 19 16 0 0 0
\ No newline at end of file
diff --git a/components/weapons/trhrckt.pie b/components/weapons/trhrckt.pie
deleted file mode 100644
index f0c8398..0000000
--- a/components/weapons/trhrckt.pie
+++ /dev/null
@@ -1,25 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 8 
-	-19 4 40 
-	-19 21 -43 
-	19 21 -43 
-	19 4 40 
-	-24 0 -30 
-	-21 0 39 
-	24 0 -30 
-	21 0 39
-POLYGONS 10
-	200 3 3 2 1 15 192 16 208 0 208
-	200 3 3 1 0 15 192 0 208 1 192
-	200 3 5 0 1 24 20 25 22 0 28
-	200 3 5 1 4 24 20 0 28 6 20
-	200 3 2 3 7 0 28 25 22 24 20
-	200 3 2 7 6 0 28 24 20 6 20
-	200 3 0 5 7 25 22 24 20 24 20
-	200 3 0 7 3 25 22 24 20 25 22
-	200 3 2 6 4 4 39 0 47 18 47
-	200 3 2 4 1 4 39 18 47 14 39
\ No newline at end of file
diff --git a/components/weapons/trhrmort.pie b/components/weapons/trhrmort.pie
deleted file mode 100644
index 774d546..0000000
--- a/components/weapons/trhrmort.pie
+++ /dev/null
@@ -1,49 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 12 
-	-22 0 -17 
-	22 0 -17 
-	19 6 -14 
-	-19 6 -14 
-	16 0 18 
-	14 19 13 
-	-16 0 18 
-	-14 19 13 
-	15 6 -10 
-	11 16 11 
-	-15 6 -10 
-	-11 16 11
-POLYGONS 30
-	200 3 4 1 0 2 208 0 192 15 192
-	200 3 4 0 6 2 208 15 192 13 208
-	200 3 4 6 7 2 140 14 140 13 132
-	200 3 4 7 5 2 140 13 132 3 132
-	200 3 5 7 6 3 132 13 132 14 140
-	200 3 5 6 4 3 132 14 140 2 140
-	200 3 5 7 11 14 132 2 132 3 132
-	200 3 5 11 9 14 132 3 132 13 132
-	200 3 9 11 7 13 132 3 132 2 132
-	200 3 9 7 5 13 132 2 132 14 132
-	200 3 9 5 2 13 2 14 0 17 19
-	200 3 9 2 8 13 2 17 19 15 16
-	200 3 3 2 8 0 140 16 140 14 139
-	200 3 3 8 10 0 140 14 139 2 139
-	200 3 10 8 2 2 139 14 139 16 140
-	200 3 10 2 3 2 139 16 140 0 140
-	200 3 11 10 3 4 2 2 16 0 19
-	200 3 11 3 7 4 2 0 19 3 0
-	200 3 1 4 5 0 140 16 140 14 132
-	200 3 1 5 2 0 140 14 132 1 138
-	200 3 2 5 4 1 138 14 132 16 140
-	200 3 2 4 1 1 138 16 140 0 140
-	200 3 6 0 3 0 140 16 140 15 138
-	200 3 6 3 7 0 140 15 138 2 132
-	200 3 7 3 0 2 132 15 138 16 140
-	200 3 7 0 6 2 132 16 140 0 140
-	200 3 0 1 2 0 140 16 140 15 138
-	200 3 0 2 3 0 140 15 138 1 138
-	200 3 3 2 1 1 138 15 138 16 140
-	200 3 3 1 0 1 138 16 140 0 140
\ No newline at end of file
diff --git a/components/weapons/trhsnsr3.pie b/components/weapons/trhsnsr3.pie
deleted file mode 100644
index 5c5e425..0000000
--- a/components/weapons/trhsnsr3.pie
+++ /dev/null
@@ -1,35 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 12 
-	-10 0 18 
-	-20 0 0 
-	-19 6 0 
-	-9 6 16 
-	-10 0 -18 
-	-9 6 -16 
-	21 0 0 
-	10 0 18 
-	9 6 16 
-	19 6 0 
-	10 0 -18 
-	9 6 -16
-POLYGONS 16
-	200 3 3 2 1 24 20 13 20 13 28
-	200 3 3 1 0 24 20 13 28 25 28
-	200 3 2 5 4 13 20 1 20 0 28
-	200 3 2 4 1 13 20 0 28 13 28
-	200 3 9 8 7 12 20 25 20 25 28
-	200 3 9 7 6 12 20 25 28 12 28
-	200 3 8 3 0 4 38 13 38 13 47
-	200 3 8 0 7 4 38 13 47 4 47
-	200 3 5 11 10 5 28 14 28 14 37
-	200 3 5 10 4 5 28 14 37 5 37
-	200 3 11 9 6 0 20 12 20 12 28
-	200 3 11 6 10 0 20 12 28 0 28
-	200 3 2 9 11 40 168 22 168 27 159
-	200 3 2 11 5 40 168 27 159 36 159
-	200 3 3 8 9 36 176 27 176 22 168
-	200 3 3 9 2 36 176 22 168 40 168
\ No newline at end of file
diff --git a/components/weapons/trhsuper.pie b/components/weapons/trhsuper.pie
deleted file mode 100644
index 8282c53..0000000
--- a/components/weapons/trhsuper.pie
+++ /dev/null
@@ -1,45 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 16 
-	30 0 -28 
-	28 0 29 
-	16 22 21 
-	17 19 -16 
-	-30 0 29 
-	-18 22 21 
-	-30 0 -28 
-	-18 19 -16 
-	-16 0 30 
-	-16 29 40 
-	14 29 40 
-	14 0 30 
-	-16 29 25 
-	14 29 25 
-	-16 20 9 
-	14 20 9
-POLYGONS 22
-	200 3 3 2 1 5 21 24 20 25 28
-	200 3 3 1 0 5 21 25 28 0 28
-	200 3 2 5 4 2 38 16 38 18 47
-	200 3 2 4 1 2 38 18 47 0 47
-	200 3 5 7 6 24 20 5 21 0 28
-	200 3 5 6 4 24 20 0 28 25 28
-	200 3 6 0 1 2 19 14 19 16 0
-	200 3 6 1 4 2 19 16 0 0 0
-	200 3 7 3 0 177 0 187 0 190 19
-	200 3 7 0 6 177 0 190 19 174 19
-	200 3 5 2 3 0 0 16 0 16 19
-	200 3 5 3 7 0 0 16 19 0 19
-	200 3 11 10 9 0 209 13 209 13 231
-	200 3 11 9 8 0 209 13 231 0 231
-	200 3 10 13 12 0 209 8 209 8 231
-	200 3 10 12 9 0 209 8 231 0 231
-	200 3 13 15 14 8 209 13 209 13 231
-	200 3 13 14 12 8 209 13 231 8 231
-	200 3 14 8 9 13 216 3 231 0 209
-	200 3 14 9 12 13 216 0 209 8 209
-	200 3 10 11 15 13 209 10 231 0 216
-	200 3 10 15 13 13 209 0 216 5 209
\ No newline at end of file
diff --git a/components/weapons/trhvcan.pie b/components/weapons/trhvcan.pie
deleted file mode 100644
index 6208e86..0000000
--- a/components/weapons/trhvcan.pie
+++ /dev/null
@@ -1,58 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 22 
-	-19 0 21 
-	20 0 21 
-	15 0 -25 
-	-14 0 -25 
-	-23 18 -13 
-	-25 19 3 
-	-29 9 0 
-	-27 9 -17 
-	-14 0 -19 
-	-5 17 -14 
-	-7 18 5 
-	-17 0 1 
-	6 17 -14 
-	10 19 18 
-	-9 19 18 
-	-14 0 -21 
-	-9 18 18 
-	-5 16 -14 
-	-16 0 1 
-	-7 18 6 
-	-14 0 -18 
-	-16 0 -3
-POLYGONS 29
-	200 3 8 21 20 2 47 0 41 2 46
-	200 3 17 15 18 4 21 1 27 13 27
-	200 3 17 18 19 4 21 13 27 17 20
-	200 3 7 20 21 18 45 2 46 0 41
-	200 3 7 21 11 18 45 0 41 0 40
-	200 3 7 11 6 18 45 0 40 17 39
-	200 3 5 6 11 16 40 17 45 0 47
-	200 3 5 11 10 16 40 0 47 0 38
-	200 3 0 16 19 25 27 24 20 17 20
-	200 3 0 19 18 25 27 17 20 13 27
-	200 3 4 5 10 1 196 2 208 16 205
-	200 3 4 10 9 1 196 16 205 15 193
-	200 3 14 9 17 24 20 5 21 4 21
-	200 3 14 17 16 24 20 4 21 24 20
-	200 3 14 13 12 16 19 2 19 4 0
-	200 3 14 12 9 16 19 4 0 13 0
-	200 3 7 4 9 0 35 2 30 17 29
-	200 3 7 9 8 0 35 17 29 16 37
-	200 3 3 15 9 0 27 1 27 5 21
-	200 3 12 13 1 5 21 24 20 25 27
-	200 3 12 1 2 5 21 25 27 0 27
-	200 3 7 6 5 5 46 17 46 18 40
-	200 3 7 5 4 5 46 18 40 8 41
-	200 3 9 12 2 4 29 14 29 16 37
-	200 3 9 2 3 4 29 16 37 2 37
-	200 3 3 2 1 2 37 16 37 18 28
-	200 3 3 1 0 2 37 18 28 0 28
-	200 3 13 14 0 2 38 16 38 18 47
-	200 3 13 0 1 2 38 18 47 0 47
\ No newline at end of file
diff --git a/components/weapons/trhvcan2.pie b/components/weapons/trhvcan2.pie
deleted file mode 100644
index d760652..0000000
--- a/components/weapons/trhvcan2.pie
+++ /dev/null
@@ -1,57 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 20 
-	-19 1 -29 
-	19 1 -29 
-	12 19 -18 
-	-12 19 -18 
-	25 1 24 
-	-25 1 24 
-	-15 22 21 
-	15 22 21 
-	-13 20 2 
-	-22 1 -2 
-	-29 21 -15 
-	-32 22 0 
-	-37 11 -2 
-	-34 10 -19 
-	13 20 2 
-	22 1 -2 
-	37 11 -2 
-	32 22 0 
-	29 21 -15 
-	34 10 -19
-POLYGONS 30
-	200 3 3 2 1 4 29 14 29 16 37
-	200 3 3 1 0 4 29 16 37 2 37
-	200 3 7 6 5 2 38 16 38 18 47
-	200 3 7 5 4 2 38 18 47 0 47
-	200 3 9 5 6 13 27 25 27 24 20
-	200 3 9 6 8 13 27 24 20 15 20
-	200 3 13 12 11 5 46 17 46 18 40
-	200 3 13 11 10 5 46 18 40 8 41
-	200 3 13 10 3 0 35 2 30 17 29
-	200 3 13 3 0 0 35 17 29 16 37
-	200 3 10 11 8 1 196 2 208 16 205
-	200 3 10 8 3 1 196 16 205 15 193
-	200 3 12 13 0 17 39 18 45 2 47
-	200 3 12 0 9 17 39 2 47 0 40
-	200 3 11 12 9 16 40 17 45 0 47
-	200 3 11 9 8 16 40 0 47 0 38
-	200 3 4 15 14 25 27 13 27 15 20
-	200 3 4 14 7 25 27 15 20 24 20
-	200 3 19 18 17 5 46 8 41 18 40
-	200 3 19 17 16 5 46 18 40 17 46
-	200 3 18 19 1 2 30 0 35 16 37
-	200 3 18 1 2 2 30 16 37 17 29
-	200 3 17 18 2 2 208 1 196 15 193
-	200 3 17 2 14 2 208 15 193 16 205
-	200 3 19 16 15 18 45 17 39 0 40
-	200 3 19 15 1 18 45 0 40 2 47
-	200 3 16 17 14 17 45 16 40 0 38
-	200 3 16 14 15 17 45 0 38 0 47
-	200 3 6 7 2 16 19 2 19 4 0
-	200 3 6 2 3 16 19 4 0 13 0
\ No newline at end of file
diff --git a/components/weapons/trlacan.pie b/components/weapons/trlacan.pie
deleted file mode 100644
index 98491fb..0000000
--- a/components/weapons/trlacan.pie
+++ /dev/null
@@ -1,58 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 21 
-	-17 10 -8 
-	-18 10 2 
-	-20 5 0 
-	-19 5 -10 
-	-9 0 -11 
-	-6 8 -9 
-	-8 9 3 
-	-11 0 1 
-	8 0 -15 
-	11 0 13 
-	9 9 12 
-	5 8 -9 
-	-12 0 13 
-	-9 0 -15 
-	-10 9 12 
-	5 0 -15 
-	-18 8 1 
-	-8 8 2 
-	-17 8 -8 
-	-10 0 1 
-	-6 8 -7
-POLYGONS 30
-	200 3 19 17 20 14 27 15 20 5 20
-	200 3 19 20 4 14 27 5 20 3 27
-	200 3 2 3 4 17 39 18 45 2 47
-	200 3 2 4 7 17 39 2 47 0 40
-	200 3 4 3 18 16 37 0 35 1 31
-	200 3 4 18 5 16 37 1 31 17 29
-	200 3 5 13 4 5 21 0 27 3 27
-	200 3 5 4 20 5 21 3 27 5 20
-	200 3 2 7 17 17 45 0 47 0 38
-	200 3 2 17 16 17 45 0 38 16 41
-	200 3 12 14 17 25 27 24 20 15 20
-	200 3 12 17 19 25 27 15 20 14 27
-	200 3 13 5 11 2 37 4 29 14 29
-	200 3 13 11 15 2 37 14 29 13 37
-	200 3 14 10 11 16 19 2 19 4 0
-	200 3 14 11 5 16 19 4 0 13 0
-	200 3 0 1 6 1 196 2 208 16 205
-	200 3 0 6 5 1 196 16 205 15 193
-	200 3 6 1 16 0 38 16 40 16 41
-	200 3 6 16 17 0 38 16 41 0 38
-	200 3 0 5 18 2 30 17 29 1 31
-	200 3 11 10 9 5 21 24 20 25 27
-	200 3 11 9 8 5 21 25 27 0 27
-	200 3 8 15 11 16 37 13 37 14 29
-	200 3 13 8 9 2 19 14 19 16 0
-	200 3 13 9 12 2 19 16 0 0 0
-	200 3 3 2 1 5 46 17 46 18 40
-	200 3 3 1 0 5 46 18 40 8 41
-	200 3 10 14 12 2 38 16 38 18 47
-	200 3 10 12 9 2 38 18 47 0 47
\ No newline at end of file
diff --git a/components/weapons/trlassat.pie b/components/weapons/trlassat.pie
deleted file mode 100644
index 32cb64a..0000000
--- a/components/weapons/trlassat.pie
+++ /dev/null
@@ -1,131 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-12-player-buildings.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 60 
-	6 283 -5 
-	9 239 -9 
-	-9 239 9 
-	-6 283 6 
-	9 239 9 
-	-9 239 -9 
-	6 283 6 
-	-6 283 -6 
-	0 286 2 
-	0 281 2 
-	0 281 -2 
-	0 286 -2 
-	-2 285 1 
-	-2 282 -1 
-	2 282 -1 
-	2 285 1 
-	-2 285 -1 
-	-2 282 1 
-	2 282 1 
-	2 285 -1 
-	44 51 0 
-	28 2 0 
-	7 44 0 
-	31 61 0 
-	38 56 -5 
-	16 25 -15 
-	16 25 15 
-	38 56 6 
-	0 51 -45 
-	0 2 -28 
-	0 44 -7 
-	0 61 -31 
-	-6 56 -38 
-	-15 25 -16 
-	15 25 -16 
-	6 56 -38 
-	-45 51 0 
-	-29 2 0 
-	-7 44 0 
-	-31 61 0 
-	-38 56 5 
-	-17 25 15 
-	-17 25 -15 
-	-38 56 -6 
-	0 51 45 
-	0 2 28 
-	0 44 7 
-	0 61 31 
-	5 56 38 
-	15 25 16 
-	-15 25 16 
-	-6 56 38 
-	28 2 28 
-	-29 2 28 
-	-7 44 7 
-	7 44 7 
-	28 2 -28 
-	7 44 -7 
-	-29 2 -28 
-	-7 44 -7
-POLYGONS 64
-	200 3 0 1 2 219 162 246 162 246 147
-	200 3 0 2 3 219 162 246 147 219 147
-	200 3 3 2 1 219 147 246 147 246 162
-	200 3 3 1 0 219 147 246 162 219 162
-	200 3 1 4 2 255 203 255 174 226 174
-	200 3 1 2 5 255 203 226 174 226 203
-	200 3 5 2 4 226 203 226 174 255 174
-	200 3 5 4 1 226 203 255 174 255 203
-	200 3 6 4 5 219 162 246 162 246 147
-	200 3 6 5 7 219 162 246 147 219 147
-	200 3 7 5 4 219 147 246 147 246 162
-	200 3 7 4 6 219 147 246 162 219 162
-	4200 3 8 9 10 2 1 5 5 0 187 5 187 5 182
-	4200 3 8 10 11 2 1 5 5 0 187 5 182 0 182
-	4200 3 11 10 9 2 1 5 5 0 182 5 182 5 187
-	4200 3 11 9 8 2 1 5 5 0 182 5 187 0 187
-	4200 3 12 13 14 2 1 5 5 0 187 5 187 5 182
-	4200 3 12 14 15 2 1 5 5 0 187 5 182 0 182
-	4200 3 15 14 13 2 1 5 5 0 182 5 182 5 187
-	4200 3 15 13 12 2 1 5 5 0 182 5 187 0 187
-	4200 3 16 17 18 2 1 5 5 0 187 5 187 5 182
-	4200 3 16 18 19 2 1 5 5 0 187 5 182 0 182
-	4200 3 19 18 17 2 1 5 5 0 182 5 182 5 187
-	4200 3 19 17 16 2 1 5 5 0 182 5 187 0 187
-	200 3 20 21 22 219 162 246 162 246 147
-	200 3 20 22 23 219 162 246 147 219 147
-	200 3 23 22 21 219 147 246 147 246 162
-	200 3 23 21 20 219 147 246 162 219 162
-	200 3 24 25 26 219 162 246 162 246 147
-	200 3 24 26 27 219 162 246 147 219 147
-	200 3 27 26 25 219 147 246 147 246 162
-	200 3 27 25 24 219 147 246 162 219 162
-	200 3 28 29 30 219 162 246 162 246 147
-	200 3 28 30 31 219 162 246 147 219 147
-	200 3 31 30 29 219 147 246 147 246 162
-	200 3 31 29 28 219 147 246 162 219 162
-	200 3 32 33 34 219 162 246 162 246 147
-	200 3 32 34 35 219 162 246 147 219 147
-	200 3 35 34 33 219 147 246 147 246 162
-	200 3 35 33 32 219 147 246 162 219 162
-	200 3 36 37 38 219 162 246 162 246 147
-	200 3 36 38 39 219 162 246 147 219 147
-	200 3 39 38 37 219 147 246 147 246 162
-	200 3 39 37 36 219 147 246 162 219 162
-	200 3 40 41 42 219 162 246 162 246 147
-	200 3 40 42 43 219 162 246 147 219 147
-	200 3 43 42 41 219 147 246 147 246 162
-	200 3 43 41 40 219 147 246 162 219 162
-	200 3 44 45 46 219 162 246 162 246 147
-	200 3 44 46 47 219 162 246 147 219 147
-	200 3 47 46 45 219 147 246 147 246 162
-	200 3 47 45 44 219 147 246 162 219 162
-	200 3 48 49 50 219 162 246 162 246 147
-	200 3 48 50 51 219 162 246 147 219 147
-	200 3 51 50 49 219 147 246 147 246 162
-	200 3 51 49 48 219 147 246 162 219 162
-	200 3 55 54 53 248 102 248 135 219 135
-	200 3 55 53 52 248 102 219 135 219 102
-	200 3 57 55 52 248 102 248 135 219 135
-	200 3 57 52 56 248 102 219 135 219 102
-	200 3 59 58 53 248 102 219 102 219 135
-	200 3 59 53 54 248 102 219 135 248 135
-	200 3 57 56 58 248 102 219 102 219 135
-	200 3 57 58 59 248 102 219 135 248 135
\ No newline at end of file
diff --git a/components/weapons/trlcan.pie b/components/weapons/trlcan.pie
deleted file mode 100644
index fdf975d..0000000
--- a/components/weapons/trlcan.pie
+++ /dev/null
@@ -1,27 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 8 
-	-6 8 -9 
-	5 8 -9 
-	9 9 12 
-	-10 9 12 
-	8 0 -15 
-	11 0 13 
-	-12 0 13 
-	-9 0 -15
-POLYGONS 12
-	200 3 3 2 1 16 19 2 19 4 0
-	200 3 3 1 0 16 19 4 0 13 0
-	200 3 1 2 5 5 21 24 20 25 27
-	200 3 1 5 4 5 21 25 27 0 27
-	200 3 7 4 5 2 19 14 19 16 0
-	200 3 7 5 6 2 19 16 0 0 0
-	200 3 0 1 4 4 29 14 29 16 37
-	200 3 0 4 7 4 29 16 37 2 37
-	200 3 2 3 6 2 38 16 38 18 47
-	200 3 2 6 5 2 38 18 47 0 47
-	200 3 3 0 7 24 20 5 21 0 27
-	200 3 3 7 6 24 20 0 27 25 27
\ No newline at end of file
diff --git a/components/weapons/trlcmd1.pie b/components/weapons/trlcmd1.pie
deleted file mode 100644
index 8aa1d66..0000000
--- a/components/weapons/trlcmd1.pie
+++ /dev/null
@@ -1,37 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 12 
-	-13 18 -16 
-	-13 1 -22 
-	13 1 -22 
-	13 18 -16 
-	-5 26 -12 
-	5 26 -12 
-	-13 18 12 
-	13 18 12 
-	13 1 12 
-	-13 1 12 
-	-5 26 5 
-	5 26 5
-POLYGONS 18
-	200 3 3 2 1 132 213 132 224 112 224
-	200 3 3 1 0 132 213 112 224 112 213
-	200 3 5 3 0 126 208 132 213 112 213
-	200 3 5 0 4 126 208 112 213 118 208
-	200 3 9 8 7 56 38 70 38 70 31
-	200 3 9 7 6 56 38 70 31 56 31
-	200 3 6 7 11 56 31 70 31 66 27
-	200 3 6 11 10 56 31 66 27 61 27
-	200 3 2 3 7 0 179 8 179 8 192
-	200 3 2 7 8 0 179 8 192 0 192
-	200 3 3 5 11 8 179 12 179 12 188
-	200 3 3 11 7 8 179 12 188 8 192
-	200 3 10 4 0 12 188 12 179 8 179
-	200 3 10 0 6 12 188 8 179 8 192
-	200 3 0 1 9 8 179 0 179 0 192
-	200 3 0 9 6 8 179 0 192 8 192
-	200 3 5 4 10 70 38 56 38 56 27
-	200 3 5 10 11 70 38 56 27 70 27
\ No newline at end of file
diff --git a/components/weapons/trlcon.pie b/components/weapons/trlcon.pie
deleted file mode 100644
index 8e587ba..0000000
--- a/components/weapons/trlcon.pie
+++ /dev/null
@@ -1,71 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 26 
-	-19 9 38 
-	-19 0 17 
-	18 0 17 
-	18 9 38 
-	-19 20 38 
-	-22 20 38 
-	-22 20 -23 
-	-19 20 -17 
-	22 20 -23 
-	18 20 -17 
-	22 20 38 
-	18 20 38 
-	-19 13 -20 
-	18 13 -20 
-	-19 0 -26 
-	18 0 -26 
-	-19 18 -18 
-	-11 10 -40 
-	-19 3 -25 
-	-30 10 -29 
-	-19 13 17 
-	11 10 -40 
-	19 18 -18 
-	19 3 -25 
-	30 10 -29 
-	19 13 17
-POLYGONS 38
-	200 3 3 2 1 106 256 106 247 121 247
-	200 3 3 1 0 106 256 121 247 121 256
-	200 3 7 6 5 121 234 122 231 122 256
-	200 3 7 5 4 121 234 122 256 121 256
-	200 3 9 8 6 106 234 105 231 122 231
-	200 3 9 6 7 106 234 122 231 121 234
-	200 3 11 10 8 106 256 105 256 105 231
-	200 3 11 8 9 106 256 105 231 106 234
-	200 3 2 13 12 106 247 106 234 121 234
-	200 3 2 12 1 106 247 121 234 121 247
-	200 3 9 15 14 86 51 86 63 64 63
-	200 3 9 14 7 86 51 64 63 64 51
-	200 3 7 4 1 148 71 148 104 136 91
-	200 3 7 1 14 148 71 136 91 136 71
-	200 3 1 4 0 136 91 148 104 142 104
-	200 3 15 2 11 136 71 136 91 148 104
-	200 3 15 11 9 136 71 148 104 148 71
-	200 3 3 11 2 142 104 148 104 136 91
-	200 3 2 3 0 65 62 65 52 85 52
-	200 3 2 0 1 65 62 85 52 85 62
-	200 3 7 14 1 148 104 136 104 136 123
-	200 3 7 1 4 148 104 136 123 148 136
-	200 3 1 0 4 136 123 142 136 148 136
-	200 3 2 15 9 136 123 136 104 148 104
-	200 3 2 9 11 136 123 148 104 148 136
-	200 3 3 2 11 142 136 136 123 148 136
-	200 3 13 9 7 86 51 86 40 64 40
-	200 3 13 7 12 86 51 64 40 64 51
-	200 3 18 17 16 87 250 71 253 87 256
-	200 3 19 16 17 93 240 93 248 102 248
-	200 3 16 19 20 102 256 87 250 87 256
-	200 3 18 20 19 75 51 86 51 74 40
-	200 3 18 19 17 86 48 75 41 75 48
-	200 3 23 22 21 87 250 87 256 71 253
-	200 3 24 21 22 93 240 102 248 93 248
-	200 3 22 25 24 102 256 87 256 87 250
-	200 3 23 24 25 75 51 74 40 86 51
-	200 3 23 21 24 86 48 75 48 75 41
\ No newline at end of file
diff --git a/components/weapons/trlflmr.pie b/components/weapons/trlflmr.pie
deleted file mode 100644
index 73f612c..0000000
--- a/components/weapons/trlflmr.pie
+++ /dev/null
@@ -1,45 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 16 
-	11 0 12 
-	-11 0 12 
-	-9 5 11 
-	8 5 11 
-	10 12 11 
-	-10 12 11 
-	-10 12 -6 
-	10 12 -6 
-	-10 5 -6 
-	10 5 -6 
-	10 5 11 
-	-10 5 11 
-	-8 0 -14 
-	8 0 -14 
-	5 4 -8 
-	-5 4 -8
-POLYGONS 22
-	200 3 3 2 1 1 120 13 120 14 125
-	200 3 3 1 0 1 120 14 125 0 125
-	200 3 7 6 5 128 0 128 17 143 17
-	200 3 7 5 4 128 0 143 17 143 0
-	200 3 9 8 6 118 240 104 240 104 234
-	200 3 9 6 7 118 240 104 234 118 234
-	200 3 5 11 10 104 234 104 240 118 240
-	200 3 5 10 4 104 234 118 240 118 234
-	200 3 9 7 4 128 9 128 0 143 0
-	200 3 9 4 10 128 9 143 0 143 9
-	200 3 6 8 11 128 0 128 9 143 9
-	200 3 6 11 5 128 0 143 9 143 0
-	200 3 15 14 13 13 127 3 127 0 132
-	200 3 15 13 12 13 127 0 132 16 132
-	200 3 12 13 0 2 119 13 119 15 114
-	200 3 12 0 1 2 119 15 114 0 114
-	200 3 2 3 14 14 114 14 114 3 115
-	200 3 2 14 15 14 114 3 115 3 115
-	200 3 14 3 0 3 115 14 114 15 119
-	200 3 14 0 13 3 115 15 119 0 119
-	200 3 2 15 12 14 114 3 115 0 119
-	200 3 2 12 1 14 114 0 119 15 119
\ No newline at end of file
diff --git a/components/weapons/trlgss.pie b/components/weapons/trlgss.pie
deleted file mode 100644
index a8270fd..0000000
--- a/components/weapons/trlgss.pie
+++ /dev/null
@@ -1,27 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 8 
-	-5 7 -3 
-	5 7 0 
-	7 7 17 
-	-5 7 17 
-	-5 0 -14 
-	10 0 -9 
-	13 0 9 
-	-5 0 9
-POLYGONS 12
-	200 3 3 2 1 12 19 4 19 5 0
-	200 3 3 1 0 12 19 5 0 11 0
-	200 3 0 1 5 5 131 11 131 14 140
-	200 3 0 5 4 5 131 14 140 2 140
-	200 3 2 3 7 4 41 14 41 18 47
-	200 3 2 7 6 4 41 18 47 0 47
-	200 3 1 2 6 0 27 25 26 18 20
-	200 3 1 6 5 0 27 18 20 4 20
-	200 3 3 0 4 25 26 0 27 4 20
-	200 3 3 4 7 25 26 4 20 18 20
-	200 3 5 6 7 14 19 16 0 0 0
-	200 3 7 4 5 0 0 2 19 14 19
\ No newline at end of file
diff --git a/components/weapons/trlmg1.pie b/components/weapons/trlmg1.pie
deleted file mode 100644
index 81e1e68..0000000
--- a/components/weapons/trlmg1.pie
+++ /dev/null
@@ -1,39 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 12 
-	-4 7 -9 
-	4 7 -9 
-	8 9 0 
-	-8 9 0 
-	5 4 12 
-	-5 4 12 
-	10 0 0 
-	7 0 12 
-	-7 0 12 
-	-6 0 -15 
-	6 0 -15 
-	-10 0 0
-POLYGONS 20
-	200 3 3 2 1 16 8 0 8 2 0
-	200 3 3 1 0 16 8 2 0 14 0
-	200 3 3 5 4 16 8 12 19 4 19
-	200 3 3 4 2 16 8 4 19 0 8
-	200 3 4 7 6 25 23 25 27 14 27
-	200 3 4 6 2 25 23 14 27 14 20
-	200 3 4 5 8 4 42 14 42 15 47
-	200 3 4 8 7 4 42 15 47 3 47
-	200 3 0 1 10 6 30 12 30 15 37
-	200 3 0 10 9 6 30 15 37 3 37
-	200 3 2 6 10 14 20 14 27 0 27
-	200 3 2 10 1 14 20 0 27 5 21
-	200 3 11 6 7 0 9 16 9 14 0
-	200 3 11 7 8 0 9 14 0 2 0
-	200 3 11 9 10 0 9 3 19 13 19
-	200 3 11 10 6 0 9 13 19 16 9
-	200 3 5 3 11 25 23 14 20 14 27
-	200 3 5 11 8 25 23 14 27 25 27
-	200 3 3 0 9 14 20 5 21 0 27
-	200 3 3 9 11 14 20 0 27 14 27
\ No newline at end of file
diff --git a/components/weapons/trlmg2.pie b/components/weapons/trlmg2.pie
deleted file mode 100644
index 1ba5786..0000000
--- a/components/weapons/trlmg2.pie
+++ /dev/null
@@ -1,39 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 12 
-	-6 7 -9 
-	6 7 -9 
-	9 9 0 
-	-9 9 0 
-	5 4 12 
-	-5 4 12 
-	11 0 0 
-	7 0 12 
-	-6 0 12 
-	-9 0 -15 
-	8 0 -15 
-	-12 0 0
-POLYGONS 20
-	200 3 3 2 1 16 8 0 8 2 0
-	200 3 3 1 0 16 8 2 0 14 0
-	200 3 3 5 4 16 8 12 19 4 19
-	200 3 3 4 2 16 8 4 19 0 8
-	200 3 4 7 6 25 23 25 27 14 27
-	200 3 4 6 2 25 23 14 27 14 20
-	200 3 4 5 8 4 42 14 42 15 47
-	200 3 4 8 7 4 42 15 47 3 47
-	200 3 0 1 10 6 30 12 30 15 37
-	200 3 0 10 9 6 30 15 37 3 37
-	200 3 2 6 10 14 20 14 27 0 27
-	200 3 2 10 1 14 20 0 27 5 21
-	200 3 11 6 7 0 9 16 9 14 0
-	200 3 11 7 8 0 9 14 0 2 0
-	200 3 11 9 10 0 9 3 19 13 19
-	200 3 11 10 6 0 9 13 19 16 9
-	200 3 5 3 11 25 23 14 20 14 27
-	200 3 5 11 8 25 23 14 27 25 27
-	200 3 3 0 9 14 20 5 21 0 27
-	200 3 3 9 11 14 20 0 27 14 27
\ No newline at end of file
diff --git a/components/weapons/trlmsl.pie b/components/weapons/trlmsl.pie
deleted file mode 100644
index 2ce2182..0000000
--- a/components/weapons/trlmsl.pie
+++ /dev/null
@@ -1,84 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 28 
-	0 7 9 
-	-2 7 11 
-	2 7 11 
-	0 7 7 
-	0 13 9 
-	8 12 3 
-	7 7 4 
-	-7 7 4 
-	-8 12 3 
-	-4 10 -9 
-	4 10 -9 
-	5 6 12 
-	-5 6 12 
-	-11 0 13 
-	10 0 13 
-	-11 0 -14 
-	-11 0 3 
-	10 0 -14 
-	10 0 3 
-	-3 18 8 
-	0 14 9 
-	0 20 9 
-	-5 15 7 
-	-3 11 5 
-	0 9 5 
-	3 18 8 
-	5 15 7 
-	3 11 5
-POLYGONS 49
-	200 3 3 2 1 115 229 104 234 104 224
-	200 3 3 1 0 115 229 104 224 108 229
-	200 3 1 3 0 104 224 115 229 108 229
-	200 3 4 4 2 110 224 110 224 115 234
-	200 3 4 2 3 110 224 115 234 110 234
-	200 3 4 4 1 110 224 110 224 115 234
-	200 3 4 1 2 110 224 115 234 104 234
-	200 3 4 4 3 110 224 110 224 115 234
-	200 3 4 3 1 110 224 115 234 115 234
-	200 3 4 4 4 110 224 110 224 110 224
-	200 3 4 4 4 110 224 110 224 110 224
-	200 3 4 4 4 110 224 110 224 110 224
-	200 3 4 4 4 110 224 110 224 110 224
-	200 3 8 7 6 14 3 14 16 2 16
-	200 3 8 6 5 14 3 2 16 2 3
-	200 3 5 10 9 16 16 12 6 4 6
-	200 3 5 9 8 16 16 4 6 0 16
-	200 3 7 12 11 15 14 13 5 3 5
-	200 3 7 11 6 15 14 3 5 1 14
-	200 3 14 11 12 18 47 14 38 4 38
-	200 3 14 12 13 18 47 4 38 0 47
-	200 3 16 8 9 9 27 9 20 21 21
-	200 3 16 9 15 9 27 21 21 25 27
-	200 3 13 12 7 0 27 2 23 8 23
-	200 3 13 7 16 0 27 8 23 9 27
-	200 3 10 5 18 21 21 9 20 9 27
-	200 3 10 18 17 21 21 9 27 25 27
-	200 3 5 6 18 9 20 8 23 9 27
-	200 3 8 16 7 9 20 9 27 8 23
-	200 3 6 11 14 8 23 2 23 0 27
-	200 3 6 14 18 8 23 0 27 9 27
-	200 3 10 17 15 13 30 18 37 0 37
-	200 3 10 15 9 13 30 0 37 5 30
-	200 3 21 20 19 111 208 111 216 106 210
-	200 3 19 20 22 106 210 111 216 104 216
-	200 3 22 20 23 104 216 111 216 106 222
-	200 3 23 20 24 106 222 111 216 111 224
-	200 3 26 25 20 168 216 170 222 175 216
-	200 3 25 21 20 170 222 175 224 175 216
-	200 3 24 27 20 175 208 170 210 175 216
-	200 3 27 26 20 170 210 168 216 175 216
-	200 3 21 19 20 175 224 170 222 175 216
-	200 3 19 22 20 170 222 168 216 175 216
-	200 3 22 23 20 168 216 170 210 175 216
-	200 3 23 24 20 170 210 175 208 175 216
-	200 3 26 20 25 104 216 111 216 106 210
-	200 3 25 20 21 106 210 111 216 111 208
-	200 3 24 20 27 111 224 111 216 106 222
-	200 3 27 20 26 106 222 111 216 104 216
\ No newline at end of file
diff --git a/components/weapons/trlrckt.pie b/components/weapons/trlrckt.pie
deleted file mode 100644
index 3812710..0000000
--- a/components/weapons/trlrckt.pie
+++ /dev/null
@@ -1,37 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 12 
-	-12 0 12 
-	-8 5 9 
-	8 5 9 
-	12 0 12 
-	-12 0 -12 
-	12 0 -12 
-	8 5 -9 
-	-8 5 -9 
-	-4 15 7 
-	4 15 7 
-	4 15 -7 
-	-4 15 -7
-POLYGONS 18
-	200 3 3 2 1 0 48 4 43 14 43
-	200 3 3 1 0 0 48 14 43 18 48
-	200 3 7 6 5 4 43 14 43 18 48
-	200 3 7 5 4 4 43 18 48 0 48
-	200 3 0 1 7 25 27 25 24 0 24
-	200 3 0 7 4 25 27 0 24 0 27
-	200 3 2 9 8 2 32 6 28 12 28
-	200 3 2 8 1 2 32 12 28 16 32
-	200 3 11 10 6 6 28 12 28 16 32
-	200 3 11 6 7 6 28 16 32 2 32
-	200 3 10 11 8 5 16 11 16 11 3
-	200 3 10 8 9 5 16 11 3 5 3
-	200 3 11 7 1 4 20 0 23 25 23
-	200 3 11 1 8 4 20 25 23 21 20
-	200 3 6 10 9 3 25 5 20 20 20
-	200 3 6 9 2 3 25 20 20 22 25
-	200 3 6 2 3 3 25 22 25 25 27
-	200 3 6 3 5 3 25 25 27 0 27
\ No newline at end of file
diff --git a/components/weapons/trlrcktp.pie b/components/weapons/trlrcktp.pie
deleted file mode 100644
index d3c2762..0000000
--- a/components/weapons/trlrcktp.pie
+++ /dev/null
@@ -1,49 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 18 
-	16 0 2 
-	8 0 14 
-	8 5 13 
-	15 5 2 
-	-8 0 14 
-	-7 5 13 
-	-6 0 -14 
-	7 0 -14 
-	6 5 -13 
-	-6 5 -13 
-	-16 0 2 
-	-14 5 2 
-	-12 5 5 
-	-8 17 0 
-	-10 5 -5 
-	10 5 -5 
-	12 5 5 
-	9 17 0
-POLYGONS 24
-	200 3 3 2 1 12 20 25 20 25 28
-	200 3 3 1 0 12 20 25 28 12 28
-	200 3 2 5 4 4 38 13 38 13 47
-	200 3 2 4 1 4 38 13 47 4 47
-	200 3 9 8 7 5 28 14 28 14 37
-	200 3 9 7 6 5 28 14 37 5 37
-	200 3 8 3 0 0 20 12 20 12 28
-	200 3 8 0 7 0 20 12 28 0 28
-	200 3 5 11 10 24 20 13 20 13 28
-	200 3 5 10 4 24 20 13 28 25 28
-	200 3 11 9 6 13 20 1 20 0 28
-	200 3 11 6 10 13 20 0 28 13 28
-	200 3 12 13 14 115 234 110 224 104 234
-	200 3 14 13 12 104 234 110 224 115 234
-	200 3 15 16 17 104 234 115 234 110 224
-	200 3 17 16 15 110 224 115 234 104 234
-	200 3 1 6 7 35 159 27 176 35 176
-	200 3 1 7 0 35 159 35 176 40 168
-	200 3 1 4 6 35 159 27 159 27 176
-	200 3 10 6 4 22 168 27 176 27 159
-	200 3 11 3 8 40 168 22 168 27 159
-	200 3 11 8 9 40 168 27 159 36 159
-	200 3 5 2 3 36 176 27 176 22 168
-	200 3 5 3 11 36 176 22 168 40 168
\ No newline at end of file
diff --git a/components/weapons/trlsnsr1.pie b/components/weapons/trlsnsr1.pie
deleted file mode 100644
index 4f80eef..0000000
--- a/components/weapons/trlsnsr1.pie
+++ /dev/null
@@ -1,35 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 12 
-	-9 0 15 
-	-18 0 0 
-	-15 6 0 
-	-8 6 13 
-	-9 0 -15 
-	-8 6 -13 
-	18 0 0 
-	9 0 15 
-	7 6 13 
-	14 6 0 
-	9 0 -15 
-	7 6 -13
-POLYGONS 16
-	200 3 3 2 1 24 21 13 21 13 27
-	200 3 3 1 0 24 21 13 27 24 27
-	200 3 2 5 4 13 21 1 21 1 27
-	200 3 2 4 1 13 21 1 27 13 27
-	200 3 9 8 7 12 21 24 21 24 27
-	200 3 9 7 6 12 21 24 27 12 27
-	200 3 8 3 0 5 39 13 39 13 46
-	200 3 8 0 7 5 39 13 46 5 46
-	200 3 5 11 10 5 29 13 29 13 36
-	200 3 5 10 4 5 29 13 36 5 36
-	200 3 11 9 6 1 21 12 21 12 27
-	200 3 11 6 10 1 21 12 27 1 27
-	200 3 2 9 11 23 168 39 168 35 175
-	200 3 2 11 5 23 168 35 175 27 175
-	200 3 3 8 9 27 160 35 160 39 168
-	200 3 3 9 2 27 160 39 168 23 168
\ No newline at end of file
diff --git a/components/weapons/trlvtlem.pie b/components/weapons/trlvtlem.pie
deleted file mode 100644
index a5cfbb9..0000000
--- a/components/weapons/trlvtlem.pie
+++ /dev/null
@@ -1,47 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 16 
-	-12 0 -4 
-	-11 12 0 
-	-30 10 4 
-	-34 1 0 
-	-27 8 16 
-	-14 8 20 
-	-15 0 23 
-	-28 0 19 
-	37 1 0 
-	33 10 4 
-	14 12 0 
-	14 0 -4 
-	16 8 20 
-	29 8 16 
-	30 0 19 
-	17 0 23
-POLYGONS 24
-	200 3 3 2 1 218 110 218 97 199 97
-	200 3 3 1 0 218 110 199 97 199 110
-	200 3 7 6 5 158 76 174 76 174 60
-	200 3 7 5 4 158 76 174 60 158 60
-	200 3 4 5 1 174 44 158 44 158 60
-	200 3 4 1 2 174 44 158 60 174 60
-	200 3 7 4 2 244 15 244 1 226 1
-	200 3 7 2 3 244 15 226 1 226 15
-	200 3 6 7 3 244 15 226 15 226 1
-	200 3 6 3 0 244 15 226 1 244 1
-	200 3 5 6 0 244 1 226 1 226 15
-	200 3 5 0 1 244 1 226 15 244 15
-	200 3 11 10 9 199 110 199 97 218 97
-	200 3 11 9 8 199 110 218 97 218 110
-	200 3 15 14 13 174 76 158 76 158 60
-	200 3 15 13 12 174 76 158 60 174 60
-	200 3 12 13 9 158 44 174 44 174 60
-	200 3 12 9 10 158 44 174 60 158 60
-	200 3 15 12 10 226 1 244 1 244 15
-	200 3 15 10 11 226 1 244 15 226 15
-	200 3 14 15 11 226 15 244 15 244 1
-	200 3 14 11 8 226 15 244 1 226 1
-	200 3 13 14 8 244 1 244 15 226 15
-	200 3 13 8 9 244 1 226 15 226 1
diff --git a/components/weapons/trlvtlhe.pie b/components/weapons/trlvtlhe.pie
deleted file mode 100644
index 44673ad..0000000
--- a/components/weapons/trlvtlhe.pie
+++ /dev/null
@@ -1,47 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 16 
-	-12 0 -4 
-	-11 12 0 
-	-30 10 4 
-	-34 1 0 
-	-27 8 16 
-	-14 8 20 
-	-15 0 23 
-	-28 0 19 
-	37 1 0 
-	33 10 4 
-	14 12 0 
-	14 0 -4 
-	16 8 20 
-	29 8 16 
-	30 0 19 
-	17 0 23
-POLYGONS 24
-	200 3 3 2 1 22 176 22 164 0 164
-	200 3 3 1 0 22 176 0 164 0 176
-	200 3 7 6 5 0 208 16 208 16 192
-	200 3 7 5 4 0 208 16 192 0 192
-	200 3 4 5 1 22 152 0 152 0 164
-	200 3 4 1 2 22 152 0 164 22 164
-	200 3 7 4 2 26 114 26 102 0 102
-	200 3 7 2 3 26 114 0 102 0 114
-	200 3 6 7 3 22 102 0 102 0 76
-	200 3 6 3 0 22 102 0 76 22 76
-	200 3 5 6 0 131 114 120 114 120 126
-	200 3 5 0 1 131 114 120 126 131 126
-	200 3 11 10 9 0 176 0 164 22 164
-	200 3 11 9 8 0 176 22 164 22 176
-	200 3 15 14 13 16 208 0 208 0 192
-	200 3 15 13 12 16 208 0 192 16 192
-	200 3 12 13 9 0 152 22 152 22 164
-	200 3 12 9 10 0 152 22 164 0 164
-	200 3 15 12 10 120 114 131 114 131 126
-	200 3 15 10 11 120 114 131 126 120 126
-	200 3 14 15 11 0 102 22 102 22 76
-	200 3 14 11 8 0 102 22 76 0 76
-	200 3 13 14 8 26 102 26 114 0 114
-	200 3 13 8 9 26 102 0 114 0 102
\ No newline at end of file
diff --git a/components/weapons/trlvtlin.pie b/components/weapons/trlvtlin.pie
deleted file mode 100644
index 06431c4..0000000
--- a/components/weapons/trlvtlin.pie
+++ /dev/null
@@ -1,29 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 10 
-	-22 8 1 
-	-22 0 37 
-	-31 -1 1 
-	-14 -1 1 
-	-22 2 -12 
-	23 8 1 
-	23 0 37 
-	14 -1 1 
-	31 -1 1 
-	23 2 -12
-POLYGONS 12
-	200 3 2 1 0 128 9 143 8 128 0
-	200 3 3 0 1 128 9 128 0 143 7
-	200 3 2 0 4 128 9 128 0 143 6
-	200 3 3 2 4 128 0 128 9 143 4
-	200 3 0 3 4 128 0 128 9 143 5
-	200 3 1 2 3 143 4 128 0 128 9
-	200 3 7 6 5 128 9 143 8 128 0
-	200 3 8 5 6 128 9 128 0 143 7
-	200 3 7 5 9 128 9 128 0 143 6
-	200 3 8 7 9 128 0 128 9 143 4
-	200 3 5 8 9 128 0 128 9 143 5
-	200 3 6 7 8 143 4 128 0 128 9
\ No newline at end of file
diff --git a/components/weapons/trlvtlpl.pie b/components/weapons/trlvtlpl.pie
deleted file mode 100644
index 110e363..0000000
--- a/components/weapons/trlvtlpl.pie
+++ /dev/null
@@ -1,29 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 10 
-	-22 8 1 
-	-22 0 37 
-	-31 -1 1 
-	-14 -1 1 
-	-22 2 -12 
-	23 8 1 
-	23 0 37 
-	14 -1 1 
-	31 -1 1 
-	23 2 -12
-POLYGONS 12
-	200 3 2 1 0 202 228 204 239 215 228
-	200 3 3 0 1 202 228 215 228 204 239
-	200 3 2 0 4 202 228 215 228 206 239
-	200 3 3 2 4 215 228 202 228 208 239
-	200 3 0 3 4 215 228 202 228 208 239
-	200 3 1 2 3 208 239 215 228 202 228
-	200 3 7 6 5 202 228 204 239 215 228
-	200 3 8 5 6 202 228 215 228 204 239
-	200 3 7 5 9 202 228 215 228 206 239
-	200 3 8 7 9 215 228 202 228 208 239
-	200 3 5 8 9 215 228 202 228 208 239
-	200 3 6 7 8 208 239 215 228 202 228
\ No newline at end of file
diff --git a/components/weapons/trmacan.pie b/components/weapons/trmacan.pie
deleted file mode 100644
index cbb62f6..0000000
--- a/components/weapons/trmacan.pie
+++ /dev/null
@@ -1,62 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 23 
-	-25 15 -12 
-	-28 16 3 
-	-31 8 0 
-	-29 8 -15 
-	-14 0 -17 
-	-10 13 -13 
-	-12 13 5 
-	-16 0 1 
-	12 0 -23 
-	17 0 20 
-	13 14 18 
-	8 13 -13 
-	-18 0 20 
-	-14 0 -23 
-	-15 14 18 
-	9 0 -23 
-	-25 15 -11 
-	-25 13 -12 
-	-15 13 18 
-	-16 0 0 
-	-13 13 5 
-	-10 13 -11 
-	-15 0 -3
-POLYGONS 32
-	200 3 7 19 22 0 40 0 39 0 41
-	200 3 19 20 21 13 27 16 20 5 20
-	200 3 19 21 4 13 27 5 20 3 27
-	200 3 4 22 19 2 47 0 41 0 39
-	200 3 4 19 2 2 47 0 39 17 39
-	200 3 4 2 3 2 47 17 39 18 45
-	200 3 4 3 17 16 37 0 35 1 31
-	200 3 4 17 5 16 37 1 31 17 29
-	200 3 5 13 4 5 21 0 27 3 27
-	200 3 5 4 21 5 21 3 27 5 20
-	200 3 1 2 7 16 40 17 45 0 47
-	200 3 1 7 6 16 40 0 47 0 38
-	200 3 12 18 20 25 27 24 20 16 20
-	200 3 12 20 19 25 27 16 20 13 27
-	200 3 1 6 5 2 208 16 205 15 193
-	200 3 1 5 16 2 208 15 193 1 196
-	200 3 14 5 18 24 20 5 21 24 20
-	200 3 14 10 11 16 19 2 19 4 0
-	200 3 14 11 5 16 19 4 0 13 0
-	200 3 13 5 11 2 37 4 29 14 29
-	200 3 13 11 15 2 37 14 29 14 37
-	200 3 0 16 5 1 196 1 196 15 193
-	200 3 0 5 17 2 30 17 29 1 31
-	200 3 11 10 9 5 21 24 20 25 27
-	200 3 11 9 8 5 21 25 27 0 27
-	200 3 8 15 11 16 37 14 37 14 29
-	200 3 13 8 9 2 19 14 19 16 0
-	200 3 13 9 12 2 19 16 0 0 0
-	200 3 3 2 1 5 46 17 46 18 40
-	200 3 3 1 0 5 46 18 40 8 41
-	200 3 10 14 12 2 38 16 38 18 47
-	200 3 10 12 9 2 38 18 47 0 47
\ No newline at end of file
diff --git a/components/weapons/trmair.pie b/components/weapons/trmair.pie
deleted file mode 100644
index 5f56977..0000000
--- a/components/weapons/trmair.pie
+++ /dev/null
@@ -1,31 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 10 
-	12 0 19 
-	12 18 11 
-	12 13 -10 
-	12 0 -20 
-	12 18 19 
-	-12 0 19 
-	-12 0 -20 
-	-12 13 -10 
-	-12 18 11 
-	-12 18 19
-POLYGONS 14
-	200 3 3 2 1 0 27 4 22 13 20
-	200 3 3 1 0 0 27 13 20 25 27
-	200 3 0 1 4 25 27 13 20 21 20
-	200 3 8 7 6 13 20 4 22 0 27
-	200 3 8 6 5 13 20 0 27 25 27
-	200 3 8 5 9 13 20 25 27 21 20
-	200 3 6 7 2 175 17 175 6 190 6
-	200 3 6 2 3 175 17 190 6 190 17
-	200 3 7 8 1 175 6 175 0 190 0
-	200 3 7 1 2 175 6 190 0 190 6
-	200 3 9 5 0 0 38 0 47 18 47
-	200 3 9 0 4 0 38 18 47 18 38
-	200 3 8 9 4 0 19 0 0 16 0
-	200 3 8 4 1 0 19 16 0 16 19
\ No newline at end of file
diff --git a/components/weapons/trmair2.pie b/components/weapons/trmair2.pie
deleted file mode 100644
index 3ac2f69..0000000
--- a/components/weapons/trmair2.pie
+++ /dev/null
@@ -1,88 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 32
-	-12 1 -7
-	-12 12 -3
-	11 12 1
-	11 0 -19
-	14 0 15
-	13 2 2
-	12 9 18
-	16 30 23
-	17 5 15
-	16 4 17
-	11 6 -3
-	-12 6 -3
-	11 1 -7
-	11 3 -14
-	-12 3 -14
-	-12 12 1
-	-12 12 10
-	11 12 -3
-	-15 0 18
-	-15 0 -1
-	14 0 -1
-	-12 0 -19
-	14 0 18
-	-12 12 20
-	12 12 20
-	12 12 5
-	22 11 3
-	19 9 16
-	21 1 14
-	24 4 2
-	14 4 16
-	12 12 10
-POLYGONS 49
-	200 3 12 10 13 174 217 171 218 175 221
-	200 3 13 10 17 175 221 171 218 170 221
-	200 3 0 14 11 174 217 175 221 171 218
-	200 3 11 14 1 171 218 175 221 170 221
-	200 3 2 10 15 35 176 42 176 35 191
-	200 3 15 10 11 35 191 42 176 42 191
-	200 3 0 11 12 45 191 42 191 45 176
-	200 3 12 11 10 45 176 42 191 42 176
-	200 3 13 0 12 129 204 143 201 129 201
-	200 3 0 13 14 143 201 129 204 143 204
-	200 3 1 14 19 9 20 3 24 10 27
-	200 3 19 14 21 10 27 3 24 0 27
-	200 3 1 19 15 9 20 10 27 13 20
-	200 3 15 19 16 13 20 10 27 19 20
-	200 3 13 3 14 129 204 129 207 143 204
-	200 3 14 3 21 143 204 129 207 143 207
-	200 3 10 2 17 171 218 168 218 170 221
-	200 3 1 15 11 170 221 168 218 171 218
-	200 3 15 16 2 35 191 30 191 35 176
-	200 3 2 16 31 35 176 30 191 30 176
-	200 3 17 20 13 9 20 10 27 3 24
-	200 3 13 20 3 3 24 10 27 0 27
-	200 3 17 2 20 9 20 13 20 10 27
-	200 3 20 2 31 10 27 13 20 19 20
-	200 3 18 23 19 23 27 24 20 10 27
-	200 3 3 20 21 26 174 24 168 35 174
-	200 3 18 19 22 37 160 37 168 24 160
-	200 3 22 19 20 24 160 37 168 24 168
-	200 3 19 21 20 37 168 35 174 24 168
-	200 3 20 24 22 10 27 24 20 23 27
-	200 3 22 24 18 0 47 2 38 17 47
-	200 3 18 24 23 17 47 2 38 16 38
-	200 3 4 5 28 10 131 0 131 9 137
-	200 3 28 5 29 9 137 0 131 0 139
-	200 3 25 26 5 4 28 13 30 4 37
-	200 3 5 26 29 4 37 13 30 13 36
-	200 3 6 27 25 10 131 9 137 0 131
-	200 3 25 27 26 0 131 9 137 0 139
-	200 3 6 4 27 4 14 4 3 11 12
-	200 3 27 4 28 11 12 4 3 11 3
-	200 3 28 29 27 6 120 5 126 0 120
-	200 3 27 29 26 0 120 5 126 0 126
-	200 3 7 8 30 97 72 96 61 101 61
-	200 3 7 30 9 97 72 96 61 99 61
-	200 3 7 9 8 97 72 99 61 101 61
-	200 3 31 23 24 12 211 8 223 8 211
-	200 3 20 31 24 10 27 19 20 24 20
-	200 3 16 23 31 12 223 8 223 12 211
-	200 3 16 19 23 19 20 10 27 24 20
\ No newline at end of file
diff --git a/components/weapons/trmair3.pie b/components/weapons/trmair3.pie
deleted file mode 100644
index f55e936..0000000
--- a/components/weapons/trmair3.pie
+++ /dev/null
@@ -1,39 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 12
-	-10 13 6
-	-10 0 6
-	-10 13 -6
-	0 0 12
-	10 0 6
-	10 0 -6
-	10 13 6
-	10 13 -6
-	-10 0 -6
-	0 0 -12
-	0 13 -12
-	0 13 12
-POLYGONS 20
-	200 3 0 2 1 129 192 143 192 129 207
-	200 3 1 2 8 129 207 143 192 143 207
-	200 3 11 0 3 6 241 12 241 6 254
-	200 3 3 0 1 6 254 12 241 12 254
-	200 3 6 11 4 0 241 6 241 0 254
-	200 3 4 11 3 0 254 6 241 6 254
-	200 3 7 6 5 129 192 143 192 129 207
-	200 3 5 6 4 129 207 143 192 143 207
-	200 3 10 7 9 8 0 15 0 8 18
-	200 3 9 7 5 8 18 15 0 15 18
-	200 3 2 10 8 0 0 8 0 0 18
-	200 3 8 10 9 0 18 8 0 8 18
-	200 3 8 9 3 34 104 36 108 26 108
-	200 3 8 3 1 34 104 26 108 28 104
-	200 3 3 9 4 26 108 36 108 28 112
-	200 3 4 9 5 28 112 36 108 34 112
-	200 3 2 0 10 34 104 28 104 36 108
-	200 3 0 11 10 28 104 26 108 36 108
-	200 3 6 7 11 28 112 34 112 26 108
-	200 3 7 10 11 34 112 36 108 26 108
\ No newline at end of file
diff --git a/components/weapons/trmcan.pie b/components/weapons/trmcan.pie
deleted file mode 100644
index 7e31f82..0000000
--- a/components/weapons/trmcan.pie
+++ /dev/null
@@ -1,27 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 8 
-	-5 13 -12 
-	5 13 -12 
-	8 15 15 
-	-9 15 15 
-	12 0 -22 
-	16 0 18 
-	-16 0 18 
-	-12 0 -22
-POLYGONS 12
-	200 3 3 2 1 16 19 2 19 4 0
-	200 3 3 1 0 16 19 4 0 13 0
-	200 3 1 2 5 5 21 24 20 25 27
-	200 3 1 5 4 5 21 25 27 0 27
-	200 3 7 4 5 2 19 14 19 16 0
-	200 3 7 5 6 2 19 16 0 0 0
-	200 3 0 1 4 4 29 14 29 16 37
-	200 3 0 4 7 4 29 16 37 2 37
-	200 3 2 3 6 2 38 16 38 18 47
-	200 3 2 6 5 2 38 18 47 0 47
-	200 3 3 0 7 24 20 5 21 0 27
-	200 3 3 7 6 24 20 0 27 25 27
\ No newline at end of file
diff --git a/components/weapons/trmcon.pie b/components/weapons/trmcon.pie
deleted file mode 100644
index 02c04e7..0000000
--- a/components/weapons/trmcon.pie
+++ /dev/null
@@ -1,49 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-16-droid-drives.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 16 
-	-18 0 16 
-	-18 12 -18 
-	17 12 -18 
-	17 0 16 
-	-18 19 -12 
-	-18 0 -33 
-	17 0 -33 
-	17 19 -12 
-	-18 8 36 
-	17 8 36 
-	-18 19 36 
-	-21 19 36 
-	-21 19 -18 
-	21 19 -18 
-	21 19 36 
-	17 19 36
-POLYGONS 26
-	200 3 6 3 15 137 73 137 90 147 102
-	200 3 6 15 7 137 73 147 102 147 73
-	200 3 9 15 3 142 102 147 102 137 90
-	200 3 3 6 7 137 123 137 105 147 105
-	200 3 3 7 15 137 123 147 105 147 135
-	200 3 9 3 15 142 135 137 123 147 135
-	200 3 4 10 0 147 73 147 102 137 90
-	200 3 4 0 5 147 73 137 90 137 73
-	200 3 0 10 8 137 90 147 102 142 102
-	200 3 4 5 0 147 105 137 105 137 123
-	200 3 4 0 10 147 105 137 123 147 135
-	200 3 0 8 10 137 123 142 135 147 135
-	200 3 3 2 1 106 247 106 234 121 234
-	200 3 3 1 0 106 247 121 234 121 247
-	200 3 7 6 5 85 52 85 62 65 62
-	200 3 7 5 4 85 52 65 62 65 52
-	200 3 15 14 13 106 255 105 255 105 232
-	200 3 15 13 7 106 255 105 232 106 234
-	200 3 7 13 12 106 234 105 232 122 232
-	200 3 7 12 4 106 234 122 232 121 234
-	200 3 4 12 11 121 234 122 232 122 255
-	200 3 4 11 10 121 234 122 255 121 255
-	200 3 3 9 8 65 61 65 52 85 52
-	200 3 3 8 0 65 61 85 52 85 61
-	200 3 9 3 0 106 255 106 247 121 247
-	200 3 9 0 8 106 255 121 247 121 255
\ No newline at end of file
diff --git a/components/weapons/trmecm1.pie b/components/weapons/trmecm1.pie
deleted file mode 100644
index 9b30c62..0000000
--- a/components/weapons/trmecm1.pie
+++ /dev/null
@@ -1,51 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 12 
-	-9 0 15 
-	-18 0 0 
-	-17 6 0 
-	-8 6 14 
-	-9 0 -15 
-	-8 6 -14 
-	18 0 0 
-	9 0 15 
-	8 6 14 
-	17 6 0 
-	9 0 -15 
-	8 6 -14
-POLYGONS 32
-	200 3 3 2 1 24 20 13 20 13 28
-	200 3 3 1 0 24 20 13 28 25 28
-	200 3 3 2 1 24 21 13 21 13 27
-	200 3 3 1 0 24 21 13 27 24 27
-	200 3 8 3 0 5 39 13 39 13 46
-	200 3 8 0 7 5 39 13 46 5 46
-	200 3 8 3 0 4 38 13 38 13 47
-	200 3 8 0 7 4 38 13 47 4 47
-	200 3 11 9 6 0 20 12 20 12 28
-	200 3 11 6 10 0 20 12 28 0 28
-	200 3 11 9 6 1 21 12 21 12 27
-	200 3 11 6 10 1 21 12 27 1 27
-	200 3 9 8 7 12 21 24 21 24 27
-	200 3 9 7 6 12 21 24 27 12 27
-	200 3 9 8 7 12 20 25 20 25 28
-	200 3 9 7 6 12 20 25 28 12 28
-	200 3 5 11 10 5 28 14 28 14 37
-	200 3 5 10 4 5 28 14 37 5 37
-	200 3 5 11 10 5 29 13 29 13 36
-	200 3 5 10 4 5 29 13 36 5 36
-	200 3 2 5 4 13 21 1 21 1 27
-	200 3 2 4 1 13 21 1 27 13 27
-	200 3 2 5 4 13 20 1 20 0 28
-	200 3 2 4 1 13 20 0 28 13 28
-	200 3 2 9 11 40 168 22 168 27 159
-	200 3 2 11 5 40 168 27 159 36 159
-	200 3 3 8 9 36 176 27 176 22 168
-	200 3 3 9 2 36 176 22 168 40 168
-	200 3 2 9 11 23 168 39 168 35 175
-	200 3 2 11 5 23 168 35 175 27 175
-	200 3 3 8 9 27 160 35 160 39 168
-	200 3 3 9 2 27 160 39 168 23 168
\ No newline at end of file
diff --git a/components/weapons/trmecm2.pie b/components/weapons/trmecm2.pie
deleted file mode 100644
index 45172f7..0000000
--- a/components/weapons/trmecm2.pie
+++ /dev/null
@@ -1,35 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 12 
-	18 0 0 
-	9 0 15 
-	9 5 14 
-	17 5 0 
-	-8 0 15 
-	-8 5 14 
-	-8 0 -15 
-	9 0 -15 
-	9 5 -14 
-	-8 5 -14 
-	-16 5 0 
-	-17 0 0
-POLYGONS 16
-	200 3 3 2 1 12 20 25 20 25 28
-	200 3 3 1 0 12 20 25 28 12 28
-	200 3 8 3 0 0 20 12 20 12 28
-	200 3 8 0 7 0 20 12 28 0 28
-	200 3 10 3 8 40 168 22 168 27 159
-	200 3 10 8 9 40 168 27 159 36 159
-	200 3 5 2 3 36 176 27 176 22 168
-	200 3 5 3 10 36 176 22 168 40 168
-	200 3 9 8 7 5 28 14 28 14 37
-	200 3 9 7 6 5 28 14 37 5 37
-	200 3 10 9 6 13 20 1 20 0 28
-	200 3 10 6 11 13 20 0 28 13 28
-	200 3 2 5 4 4 38 13 38 13 47
-	200 3 2 4 1 4 38 13 47 4 47
-	200 3 5 10 11 24 20 13 20 13 28
-	200 3 5 11 4 24 20 13 28 25 28
\ No newline at end of file
diff --git a/components/weapons/trmflmr.pie b/components/weapons/trmflmr.pie
deleted file mode 100644
index c9d181c..0000000
--- a/components/weapons/trmflmr.pie
+++ /dev/null
@@ -1,73 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 32 
-	-14 0 -26 
-	14 0 -26 
-	9 6 -12 
-	-9 6 -12 
-	18 0 19 
-	-18 0 19 
-	-15 6 16 
-	15 6 16 
-	17 18 16 
-	-17 18 16 
-	-17 18 -12 
-	17 18 -12 
-	-17 6 -12 
-	17 6 -12 
-	17 6 16 
-	-17 6 16 
-	29 2 16 
-	29 14 16 
-	29 14 -8 
-	29 2 -8 
-	17 14 16 
-	17 14 -8 
-	17 2 -8 
-	17 2 16 
-	-18 14 16 
-	-30 14 16 
-	-30 14 -8 
-	-18 14 -8 
-	-30 2 16 
-	-30 2 -8 
-	-18 2 -8 
-	-18 2 16
-POLYGONS 34
-	200 3 3 2 1 13 127 3 127 0 132
-	200 3 3 1 0 13 127 0 132 16 132
-	200 3 7 6 5 1 120 13 120 14 125
-	200 3 7 5 4 1 120 14 125 0 125
-	200 3 2 7 4 3 115 14 114 15 119
-	200 3 2 4 1 3 115 15 119 0 119
-	200 3 6 3 0 14 114 3 115 0 119
-	200 3 6 0 5 14 114 0 119 15 119
-	200 3 11 10 9 128 17 128 0 143 0
-	200 3 11 9 8 128 17 143 0 143 17
-	200 3 13 12 10 118 240 104 240 104 234
-	200 3 13 10 11 118 240 104 234 118 234
-	200 3 9 15 14 104 234 104 240 118 240
-	200 3 9 14 8 104 234 118 240 118 234
-	200 3 13 11 8 128 9 128 0 143 0
-	200 3 13 8 14 128 9 143 0 143 9
-	200 3 10 12 15 128 0 128 9 143 9
-	200 3 10 15 9 128 0 143 9 143 0
-	200 3 19 18 17 128 8 128 1 143 1
-	200 3 19 17 16 128 8 143 1 143 8
-	200 3 18 21 20 128 9 128 0 143 0
-	200 3 18 20 17 128 9 143 0 143 9
-	200 3 19 22 21 112 240 104 240 104 234
-	200 3 19 21 18 112 240 104 234 112 234
-	200 3 20 23 16 118 235 118 239 111 239
-	200 3 20 16 17 118 235 111 239 111 235
-	200 3 27 26 25 128 9 128 0 143 0
-	200 3 27 25 24 128 9 143 0 143 9
-	200 3 26 29 28 128 0 128 9 143 9
-	200 3 26 28 25 128 0 143 9 143 0
-	200 3 30 29 26 112 239 105 239 105 235
-	200 3 30 26 27 112 239 105 235 112 235
-	200 3 25 28 31 118 235 118 239 111 239
-	200 3 25 31 24 118 235 111 239 111 235
\ No newline at end of file
diff --git a/components/weapons/trmgss.pie b/components/weapons/trmgss.pie
deleted file mode 100644
index 1bed274..0000000
--- a/components/weapons/trmgss.pie
+++ /dev/null
@@ -1,37 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 12 
-	-8 0 13 
-	17 0 13 
-	12 0 -12 
-	-8 0 -20 
-	8 11 26 
-	4 11 -2 
-	-8 0 4 
-	-7 11 -6 
-	-7 11 4 
-	-7 11 26 
-	-17 6 13 
-	-17 6 4
-POLYGONS 18
-	200 3 2 1 0 14 19 16 0 0 0
-	200 3 0 3 2 0 0 2 19 14 19
-	200 3 5 4 1 0 27 25 26 18 20
-	200 3 5 1 2 0 27 18 20 4 20
-	200 3 8 7 3 25 26 0 27 4 20
-	200 3 8 3 6 25 26 4 20 18 20
-	200 3 9 4 5 12 19 4 19 5 0
-	200 3 9 5 7 12 19 5 0 11 0
-	200 3 7 5 2 5 131 11 131 14 140
-	200 3 7 2 3 5 131 14 140 2 140
-	200 3 4 9 0 4 41 14 41 18 47
-	200 3 4 0 1 4 41 18 47 0 47
-	200 3 11 6 0 0 20 22 20 22 23
-	200 3 11 0 10 0 20 22 23 0 23
-	200 3 8 11 10 0 0 16 0 16 8
-	200 3 8 10 9 0 0 16 8 1 19
-	200 3 11 8 6 16 134 0 140 2 128
-	200 3 9 10 0 17 47 0 43 16 38
\ No newline at end of file
diff --git a/components/weapons/trmhowt.pie b/components/weapons/trmhowt.pie
deleted file mode 100644
index 95b588f..0000000
--- a/components/weapons/trmhowt.pie
+++ /dev/null
@@ -1,79 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 24 
-	11 0 -18 
-	11 0 8 
-	11 10 11 
-	11 10 -12 
-	11 0 26 
-	11 10 23 
-	6 18 6 
-	6 18 -7 
-	-11 0 26 
-	-11 10 23 
-	-11 0 -18 
-	-11 0 8 
-	-11 10 -12 
-	-11 10 11 
-	-7 18 -7 
-	-7 18 6 
-	-5 9 -14 
-	-5 27 -4 
-	-15 27 -4 
-	-21 0 -19 
-	22 0 -19 
-	5 9 -14 
-	16 27 -4 
-	5 27 -4
-POLYGONS 48
-	200 3 0 1 2 0 139 9 139 11 132
-	200 3 0 2 3 0 139 11 132 2 132
-	200 3 3 2 1 2 132 11 132 9 139
-	200 3 3 1 0 2 132 9 139 0 139
-	200 3 1 4 5 9 139 16 139 15 132
-	200 3 1 5 2 9 139 15 132 11 132
-	200 3 2 5 4 11 132 15 132 16 139
-	200 3 2 4 1 11 132 16 139 9 139
-	200 3 3 2 6 2 132 11 132 9 126
-	200 3 3 6 7 2 132 9 126 4 126
-	200 3 7 6 2 4 126 9 126 11 132
-	200 3 7 2 3 4 126 11 132 2 132
-	200 3 8 9 5 0 47 0 39 18 39
-	200 3 8 5 4 0 47 18 39 18 47
-	200 3 4 5 9 18 47 18 39 0 39
-	200 3 4 9 8 18 47 0 39 0 47
-	200 3 10 11 1 0 192 0 201 16 201
-	200 3 10 1 0 0 192 16 201 16 192
-	200 3 0 1 11 16 192 16 201 0 201
-	200 3 0 11 10 16 192 0 201 0 192
-	200 3 11 8 4 0 201 0 208 16 208
-	200 3 11 4 1 0 201 16 208 16 201
-	200 3 1 4 8 16 201 16 208 0 208
-	200 3 1 8 11 16 201 0 208 0 201
-	200 3 10 12 13 0 139 2 132 10 132
-	200 3 10 13 11 0 139 10 132 9 139
-	200 3 11 13 12 9 139 10 132 2 132
-	200 3 11 12 10 9 139 2 132 0 139
-	200 3 11 13 9 9 139 10 132 15 132
-	200 3 11 9 8 9 139 15 132 16 139
-	200 3 8 9 13 16 139 15 132 10 132
-	200 3 8 13 11 16 139 10 132 9 139
-	200 3 12 14 15 2 132 4 126 9 126
-	200 3 12 15 13 2 132 9 126 10 132
-	200 3 13 15 14 10 132 9 126 4 126
-	200 3 13 14 12 10 132 4 126 2 132
-	200 3 16 17 18 132 202 133 193 130 193
-	200 3 16 18 19 132 202 130 193 128 207
-	200 3 19 18 17 128 207 130 193 133 193
-	200 3 19 17 16 128 207 133 193 132 202
-	200 3 16 19 20 132 202 128 207 144 207
-	200 3 16 20 21 132 202 144 207 140 202
-	200 3 21 20 19 140 202 144 207 128 207
-	200 3 21 19 16 140 202 128 207 132 202
-	200 3 21 20 22 140 202 144 207 142 193
-	200 3 21 22 23 140 202 142 193 139 193
-	200 3 23 22 20 139 193 142 193 144 207
-	200 3 23 20 21 139 193 144 207 140 202
\ No newline at end of file
diff --git a/components/weapons/trmlas.pie b/components/weapons/trmlas.pie
deleted file mode 100644
index ab04bc8..0000000
--- a/components/weapons/trmlas.pie
+++ /dev/null
@@ -1,27 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 8 
-	-21 0 12 
-	-10 0 -16 
-	-7 11 -9 
-	-17 15 15 
-	7 11 -9 
-	17 15 15 
-	10 0 -16 
-	21 0 12
-POLYGONS 12
-	200 3 3 2 1 0 20 19 22 25 27
-	200 3 3 1 0 0 20 25 27 2 27
-	200 3 3 5 4 14 19 2 19 5 4
-	200 3 3 4 2 14 19 5 4 11 4
-	200 3 2 4 6 6 30 12 30 13 37
-	200 3 2 6 1 6 30 13 37 5 37
-	200 3 4 5 7 19 22 0 20 2 27
-	200 3 4 7 6 19 22 2 27 25 27
-	200 3 5 3 0 2 38 16 38 18 47
-	200 3 5 0 7 2 38 18 47 0 47
-	200 3 6 7 0 12 19 16 0 0 0
-	200 3 6 0 1 12 19 0 0 4 19
\ No newline at end of file
diff --git a/components/weapons/trmmg.pie b/components/weapons/trmmg.pie
deleted file mode 100644
index 6332d4b..0000000
--- a/components/weapons/trmmg.pie
+++ /dev/null
@@ -1,39 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 12 
-	-10 0 16 
-	10 0 16 
-	15 0 0 
-	-15 0 0 
-	9 0 -19 
-	-9 0 -19 
-	12 13 0 
-	8 6 16 
-	-12 13 0 
-	-8 6 16 
-	-6 10 -12 
-	6 10 -12
-POLYGONS 20
-	200 3 3 2 1 0 9 16 9 14 0
-	200 3 3 1 0 0 9 14 0 2 0
-	200 3 3 5 4 0 9 3 19 13 19
-	200 3 3 4 2 0 9 13 19 16 9
-	200 3 7 1 2 25 23 25 27 14 27
-	200 3 7 2 6 25 23 14 27 14 20
-	200 3 9 8 3 25 23 14 20 14 27
-	200 3 9 3 0 25 23 14 27 25 27
-	200 3 8 10 5 14 20 5 21 0 27
-	200 3 8 5 3 14 20 0 27 14 27
-	200 3 6 2 4 14 20 14 27 0 27
-	200 3 6 4 11 14 20 0 27 5 21
-	200 3 10 11 4 4 28 14 28 16 37
-	200 3 10 4 5 4 28 16 37 2 37
-	200 3 8 6 11 16 8 0 8 2 0
-	200 3 8 11 10 16 8 2 0 14 0
-	200 3 8 9 7 16 8 12 19 4 19
-	200 3 8 7 6 16 8 4 19 0 8
-	200 3 7 9 0 16 38 2 38 0 47
-	200 3 7 0 1 16 38 0 47 18 47
\ No newline at end of file
diff --git a/components/weapons/trmmort.pie b/components/weapons/trmmort.pie
deleted file mode 100644
index c9e47fc..0000000
--- a/components/weapons/trmmort.pie
+++ /dev/null
@@ -1,69 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 24 
-	7 15 -3 
-	9 15 -3 
-	9 15 3 
-	7 15 3 
-	7 2 -8 
-	9 2 -8 
-	9 2 8 
-	7 2 8 
-	-13 0 18 
-	-13 0 -18 
-	13 0 -18 
-	13 0 18 
-	-10 15 -3 
-	-7 15 -3 
-	-7 15 3 
-	-10 15 3 
-	-10 2 -8 
-	-7 2 -8 
-	-7 2 8 
-	-10 2 8 
-	11 8 -13 
-	-11 8 -13 
-	11 8 13 
-	-11 8 13
-POLYGONS 38
-	200 3 11 10 9 0 208 16 208 16 192
-	200 3 11 9 8 0 208 16 192 0 192
-	200 3 3 0 4 113 243 109 243 105 252
-	200 3 3 4 7 113 243 105 252 116 252
-	200 3 13 14 18 109 243 113 243 116 252
-	200 3 13 18 17 109 243 116 252 105 252
-	200 3 2 3 7 113 243 113 243 116 252
-	200 3 2 7 6 113 243 116 252 116 252
-	200 3 14 15 19 113 243 113 243 116 252
-	200 3 14 19 18 113 243 116 252 116 252
-	200 3 12 13 17 109 243 109 243 105 252
-	200 3 12 17 16 109 243 105 252 105 252
-	200 3 0 1 5 109 243 109 243 105 252
-	200 3 0 5 4 109 243 105 252 105 252
-	200 3 15 12 16 113 243 109 243 105 252
-	200 3 15 16 19 113 243 105 252 116 252
-	200 3 8 9 21 0 140 16 140 14 132
-	200 3 8 21 23 0 140 14 132 2 132
-	200 3 23 21 9 2 132 14 132 16 140
-	200 3 23 9 8 2 132 16 140 0 140
-	200 3 1 2 6 109 243 113 243 116 252
-	200 3 1 6 5 109 243 116 252 105 252
-	200 3 9 10 20 0 140 16 140 15 132
-	200 3 9 20 21 0 140 15 132 1 132
-	200 3 21 20 10 1 132 15 132 16 140
-	200 3 21 10 9 1 132 16 140 0 140
-	200 3 10 11 22 0 140 16 140 14 132
-	200 3 10 22 20 0 140 14 132 2 132
-	200 3 20 22 11 2 132 14 132 16 140
-	200 3 20 11 10 2 132 16 140 0 140
-	200 3 15 14 13 113 243 113 243 109 243
-	200 3 15 13 12 113 243 109 243 109 243
-	200 3 3 2 1 113 243 113 243 109 243
-	200 3 3 1 0 113 243 109 243 109 243
-	200 3 11 8 23 0 140 16 140 15 132
-	200 3 11 23 22 0 140 15 132 1 132
-	200 3 22 23 8 1 132 15 132 16 140
-	200 3 22 8 11 1 132 16 140 0 140
\ No newline at end of file
diff --git a/components/weapons/trmmsl.pie b/components/weapons/trmmsl.pie
deleted file mode 100644
index 7792054..0000000
--- a/components/weapons/trmmsl.pie
+++ /dev/null
@@ -1,81 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 27 
-	-5 26 11 
-	0 19 13 
-	0 28 12 
-	-7 21 9 
-	-5 15 7 
-	0 13 7 
-	5 26 11 
-	7 21 9 
-	5 15 7 
-	0 9 13 
-	-3 9 15 
-	3 9 15 
-	0 9 9 
-	-13 4 -18 
-	-15 0 -21 
-	15 0 -21 
-	12 4 -18 
-	11 17 4 
-	10 9 6 
-	-10 9 6 
-	-11 17 4 
-	7 9 16 
-	-7 9 16 
-	-15 0 19 
-	15 0 19 
-	-15 0 4 
-	15 0 4
-POLYGONS 47
-	200 3 2 1 0 111 208 111 216 106 210
-	200 3 0 1 3 106 210 111 216 104 216
-	200 3 3 1 4 104 216 111 216 106 222
-	200 3 4 1 5 106 222 111 216 111 224
-	200 3 7 6 1 168 216 170 222 175 216
-	200 3 6 2 1 170 222 175 224 175 216
-	200 3 5 8 1 175 208 170 210 175 216
-	200 3 8 7 1 170 210 168 216 175 216
-	200 3 2 0 1 175 224 170 222 175 216
-	200 3 0 3 1 170 222 168 216 175 216
-	200 3 3 4 1 168 216 170 210 175 216
-	200 3 4 5 1 170 210 175 208 175 216
-	200 3 7 1 6 104 216 111 216 106 210
-	200 3 6 1 2 106 210 111 216 111 208
-	200 3 5 1 8 111 224 111 216 106 222
-	200 3 8 1 7 106 222 111 216 104 216
-	200 3 12 11 10 104 229 115 224 115 234
-	200 3 12 10 9 104 229 115 234 111 229
-	200 3 10 12 9 115 234 104 229 111 229
-	200 3 1 1 11 110 224 110 224 115 234
-	200 3 1 11 12 110 224 115 234 110 234
-	200 3 1 1 10 110 224 110 224 115 234
-	200 3 1 10 11 110 224 115 234 115 234
-	200 3 1 1 12 110 224 110 224 115 234
-	200 3 1 12 10 110 224 115 234 104 234
-	200 3 1 1 1 110 224 110 224 110 224
-	200 3 1 1 1 110 224 110 224 110 224
-	200 3 1 1 1 110 224 110 224 110 224
-	200 3 1 1 1 110 224 110 224 110 224
-	200 3 16 15 14 174 224 176 208 168 208
-	200 3 16 14 13 174 224 168 208 170 224
-	200 3 20 19 18 14 3 14 16 2 16
-	200 3 20 18 17 14 3 2 16 2 3
-	200 3 19 22 21 15 14 13 5 3 5
-	200 3 19 21 18 15 14 3 5 1 14
-	200 3 24 21 22 18 48 14 38 4 38
-	200 3 24 22 23 18 48 4 38 0 48
-	200 3 25 20 13 16 28 16 20 4 21
-	200 3 25 13 14 16 28 4 21 0 28
-	200 3 23 22 19 25 28 23 24 17 24
-	200 3 23 19 25 25 28 17 24 16 28
-	200 3 16 17 26 4 21 16 20 16 28
-	200 3 16 26 15 4 21 16 28 0 28
-	200 3 17 18 26 16 20 17 24 16 28
-	200 3 20 25 19 16 20 16 28 17 24
-	200 3 18 21 24 17 24 23 24 25 28
-	200 3 18 24 26 17 24 25 28 16 28
\ No newline at end of file
diff --git a/components/weapons/trmmsla.pie b/components/weapons/trmmsla.pie
deleted file mode 100644
index b7bae08..0000000
--- a/components/weapons/trmmsla.pie
+++ /dev/null
@@ -1,83 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 27 
-	0 18 11 
-	5 24 9 
-	7 19 8 
-	0 26 10 
-	5 15 6 
-	0 13 5 
-	0 9 11 
-	-2 9 13 
-	3 9 13 
-	0 9 8 
-	-4 24 9 
-	-6 19 8 
-	-4 15 6 
-	-11 16 2 
-	-6 14 -14 
-	5 14 -14 
-	11 16 2 
-	10 9 4 
-	7 9 14 
-	-7 9 14 
-	-10 9 4 
-	-14 0 16 
-	14 0 16 
-	-14 0 -20 
-	-14 0 2 
-	14 0 -20 
-	14 0 2
-POLYGONS 49
-	200 3 2 1 0 168 216 170 222 175 216
-	200 3 1 3 0 170 222 175 224 175 216
-	200 3 5 4 0 175 208 170 210 175 216
-	200 3 4 2 0 170 210 168 216 175 216
-	200 3 9 8 7 115 229 104 234 104 224
-	200 3 9 7 6 115 229 104 224 108 229
-	200 3 7 9 6 104 224 115 229 108 229
-	200 3 0 0 8 109 234 109 234 104 225
-	200 3 0 8 9 109 234 104 225 110 225
-	200 3 0 0 7 109 234 109 234 104 225
-	200 3 0 7 8 109 234 104 225 104 225
-	200 3 0 0 9 109 234 109 234 104 225
-	200 3 0 9 7 109 234 104 225 115 225
-	200 3 0 0 0 109 234 109 234 109 234
-	200 3 0 0 0 109 234 109 234 109 234
-	200 3 0 0 0 109 234 109 234 109 234
-	200 3 0 0 0 109 234 109 234 109 234
-	200 3 3 10 0 175 224 170 222 175 216
-	200 3 10 11 0 170 222 168 216 175 216
-	200 3 11 12 0 168 216 170 210 175 216
-	200 3 12 5 0 170 210 175 208 175 216
-	200 3 2 0 1 104 216 111 216 106 210
-	200 3 1 0 3 106 210 111 216 111 208
-	200 3 5 0 4 111 224 111 216 106 222
-	200 3 4 0 2 106 222 111 216 104 216
-	200 3 3 0 10 111 208 111 216 106 210
-	200 3 10 0 11 106 210 111 216 104 216
-	200 3 11 0 12 104 216 111 216 106 222
-	200 3 12 0 5 106 222 111 216 111 224
-	200 3 16 15 14 16 16 12 6 4 6
-	200 3 16 14 13 16 16 4 6 0 16
-	200 3 20 19 18 15 14 13 5 3 5
-	200 3 20 18 17 15 14 3 5 1 14
-	200 3 22 18 19 18 48 14 38 4 38
-	200 3 22 19 21 18 48 4 38 0 48
-	200 3 13 14 23 16 20 4 21 0 28
-	200 3 23 24 13 0 28 16 28 16 20
-	200 3 21 19 20 25 28 23 24 17 24
-	200 3 21 20 24 25 28 17 24 16 28
-	200 3 16 26 25 16 20 16 28 0 28
-	200 3 25 15 16 0 28 4 21 16 20
-	200 3 16 17 26 16 20 17 24 16 28
-	200 3 13 24 20 16 20 16 28 17 24
-	200 3 17 18 22 17 24 23 24 25 28
-	200 3 17 22 26 17 24 25 28 16 28
-	200 3 13 20 17 14 3 14 16 2 16
-	200 3 13 17 16 14 3 2 16 2 3
-	200 3 15 25 23 13 30 18 37 0 37
-	200 3 15 23 14 13 30 0 37 5 30
\ No newline at end of file
diff --git a/components/weapons/trmmslaa.pie b/components/weapons/trmmslaa.pie
deleted file mode 100644
index 4ffb4a5..0000000
--- a/components/weapons/trmmslaa.pie
+++ /dev/null
@@ -1,53 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 20 
-	-17 0 -26 
-	17 0 -26 
-	15 6 -22 
-	-14 6 -22 
-	17 0 24 
-	15 24 19 
-	15 9 5 
-	-17 0 24 
-	-14 24 19 
-	-14 9 5 
-	13 7 6 
-	12 19 16 
-	-13 5 -20 
-	-12 7 6 
-	-12 19 16 
-	13 5 -20 
-	-17 0 -7 
-	-9 19 16 
-	-6 24 19 
-	16 11 21
-POLYGONS 26
-	200 3 7 8 9 0 140 2 132 8 135
-	200 3 7 9 16 0 140 8 135 10 140
-	200 3 13 9 8 3 9 1 9 2 0
-	200 3 13 8 14 3 9 2 0 3 1
-	200 3 0 16 9 16 140 10 140 8 135
-	200 3 9 13 12 1 9 3 9 2 16
-	200 3 9 12 3 1 9 2 16 0 19
-	200 3 1 2 6 0 140 1 138 8 135
-	200 3 6 4 1 8 135 16 140 0 140
-	200 3 4 6 19 16 140 8 135 15 136
-	200 3 2 10 6 16 19 13 9 15 10
-	200 3 12 15 2 2 139 14 139 16 140
-	200 3 12 2 3 2 139 16 140 0 140
-	200 3 15 10 2 14 16 13 9 16 19
-	200 3 5 11 17 14 132 13 132 4 132
-	200 3 5 17 18 14 132 4 132 5 132
-	200 3 6 10 11 15 10 13 9 13 1
-	200 3 6 11 5 15 10 13 1 14 0
-	200 3 5 19 6 14 132 15 136 8 135
-	200 3 9 3 0 8 135 15 138 16 140
-	200 3 14 8 18 3 132 2 132 5 132
-	200 3 14 18 17 3 132 5 132 4 132
-	200 3 3 2 1 1 138 15 138 16 140
-	200 3 3 1 0 1 138 16 140 0 140
-	200 3 5 8 7 3 132 13 132 14 140
-	200 3 5 7 4 3 132 14 140 2 140
\ No newline at end of file
diff --git a/components/weapons/trmmslat.pie b/components/weapons/trmmslat.pie
deleted file mode 100644
index 3a99bef..0000000
--- a/components/weapons/trmmslat.pie
+++ /dev/null
@@ -1,43 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 14 
-	14 21 5 
-	12 12 8 
-	-13 12 8 
-	-14 21 5 
-	-8 18 -16 
-	7 18 -16 
-	9 11 20 
-	-9 11 20 
-	-19 0 23 
-	18 0 23 
-	-19 0 -24 
-	-19 0 5 
-	18 0 -24 
-	18 0 5
-POLYGONS 22
-	200 3 3 2 1 14 3 14 16 2 16
-	200 3 3 1 0 14 3 2 16 2 3
-	200 3 0 5 4 16 16 12 6 4 6
-	200 3 0 4 3 16 16 4 6 0 16
-	200 3 2 7 6 15 14 13 5 3 5
-	200 3 2 6 1 15 14 3 5 1 14
-	200 3 9 6 7 18 47 14 38 4 38
-	200 3 9 7 8 18 47 4 38 0 47
-	200 3 11 3 4 9 27 9 20 21 21
-	200 3 11 4 10 9 27 21 21 25 27
-	200 3 8 7 2 0 27 2 23 8 23
-	200 3 8 2 11 0 27 8 23 9 27
-	200 3 5 0 13 21 21 9 20 9 27
-	200 3 5 13 12 21 21 9 27 25 27
-	200 3 0 1 13 9 20 8 23 9 27
-	200 3 3 11 2 9 20 9 27 8 23
-	200 3 1 6 9 8 23 2 23 0 27
-	200 3 1 9 13 8 23 0 27 9 27
-	200 3 12 9 8 16 19 16 0 0 0
-	200 3 12 8 10 16 19 0 0 0 19
-	200 3 5 12 10 13 30 18 37 0 37
-	200 3 5 10 4 13 30 0 37 5 30
\ No newline at end of file
diff --git a/components/weapons/trmmslbb.pie b/components/weapons/trmmslbb.pie
deleted file mode 100644
index 0cb9fcf..0000000
--- a/components/weapons/trmmslbb.pie
+++ /dev/null
@@ -1,37 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 12 
-	-13 0 12 
-	-8 6 8 
-	1 6 8 
-	14 0 12 
-	-13 0 -14 
-	14 0 -14 
-	1 6 -7 
-	-8 6 -7 
-	-4 18 6 
-	1 18 6 
-	1 16 -5 
-	-4 16 -5
-POLYGONS 18
-	200 3 3 2 1 0 139 3 133 13 133
-	200 3 3 1 0 0 139 13 133 16 139
-	200 3 7 6 5 4 33 14 33 18 37
-	200 3 7 5 4 4 33 18 37 0 37
-	200 3 0 1 7 0 28 0 24 25 24
-	200 3 0 7 4 0 28 25 24 25 28
-	200 3 2 9 8 2 132 5 126 11 126
-	200 3 2 8 1 2 132 11 126 14 132
-	200 3 11 10 6 6 28 12 28 16 32
-	200 3 11 6 7 6 28 16 32 2 32
-	200 3 10 11 8 5 3 11 3 11 16
-	200 3 10 8 9 5 3 11 16 5 16
-	200 3 11 7 1 21 20 25 24 0 24
-	200 3 11 1 8 21 20 0 24 4 20
-	200 3 6 10 9 22 25 20 20 5 20
-	200 3 6 9 2 22 25 5 20 3 25
-	200 3 6 2 3 22 25 3 25 0 28
-	200 3 6 3 5 22 25 0 28 25 28
\ No newline at end of file
diff --git a/components/weapons/trmmslsa.pie b/components/weapons/trmmslsa.pie
deleted file mode 100644
index 889272e..0000000
--- a/components/weapons/trmmslsa.pie
+++ /dev/null
@@ -1,41 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 16 
-	7 0 11 
-	-6 0 11 
-	-5 25 9 
-	5 25 9 
-	-6 0 -11 
-	7 0 -11 
-	5 25 -9 
-	-5 25 -9 
-	11 25 0 
-	-11 25 0 
-	13 0 0 
-	-13 0 0 
-	-6 3 -14 
-	6 3 -14 
-	7 21 -11 
-	-7 21 -11
-POLYGONS 18
-	200 3 8 3 0 136 192 144 192 144 207
-	200 3 8 0 10 136 192 144 207 136 207
-	200 3 2 9 11 128 192 136 192 136 207
-	200 3 2 11 1 128 192 136 207 128 207
-	200 3 9 2 3 26 109 29 103 34 103
-	200 3 9 3 8 26 109 34 103 37 109
-	200 3 9 8 6 26 109 37 109 34 114
-	200 3 9 6 7 26 109 34 114 29 114
-	200 3 6 8 10 128 192 136 192 136 207
-	200 3 6 10 5 128 192 136 207 128 207
-	200 3 7 6 5 1 114 14 114 15 119
-	200 3 7 5 4 1 114 15 119 0 119
-	200 3 9 7 4 136 192 144 192 144 207
-	200 3 9 4 11 136 192 144 207 136 207
-	200 3 3 2 1 12 256 1 256 0 241
-	200 3 3 1 0 12 256 0 241 13 241
-	200 3 15 14 13 44 159 44 140 75 140
-	200 3 15 13 12 44 159 75 140 75 159
\ No newline at end of file
diff --git a/components/weapons/trmrckt.pie b/components/weapons/trmrckt.pie
deleted file mode 100644
index d603917..0000000
--- a/components/weapons/trmrckt.pie
+++ /dev/null
@@ -1,49 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 18 
-	20 0 0 
-	10 0 17 
-	9 7 16 
-	19 7 0 
-	-9 0 17 
-	-9 7 16 
-	-9 0 -17 
-	10 0 -17 
-	9 7 -16 
-	-9 7 -16 
-	-19 0 0 
-	-18 7 0 
-	-14 7 7 
-	-12 21 0 
-	-13 7 -6 
-	14 7 -6 
-	15 7 7 
-	13 21 0
-POLYGONS 24
-	200 3 3 2 1 12 20 25 20 25 28
-	200 3 3 1 0 12 20 25 28 12 28
-	200 3 2 5 4 4 38 13 38 13 47
-	200 3 2 4 1 4 38 13 47 4 47
-	200 3 9 8 7 5 28 14 28 14 37
-	200 3 9 7 6 5 28 14 37 5 37
-	200 3 8 3 0 0 20 12 20 12 28
-	200 3 8 0 7 0 20 12 28 0 28
-	200 3 5 11 10 24 20 13 20 13 28
-	200 3 5 10 4 24 20 13 28 25 28
-	200 3 11 9 6 13 20 1 20 0 28
-	200 3 11 6 10 13 20 0 28 13 28
-	200 3 12 13 14 115 234 110 224 104 234
-	200 3 14 13 12 104 234 110 224 115 234
-	200 3 15 16 17 104 234 115 234 110 224
-	200 3 17 16 15 110 224 115 234 104 234
-	200 3 1 6 7 35 159 27 176 35 176
-	200 3 1 7 0 35 159 35 176 40 168
-	200 3 1 4 6 35 159 27 159 27 176
-	200 3 10 6 4 22 168 27 176 27 159
-	200 3 11 3 8 40 168 22 168 27 159
-	200 3 11 8 9 40 168 27 159 36 159
-	200 3 5 2 3 36 176 27 176 22 168
-	200 3 5 3 11 36 176 22 168 40 168
\ No newline at end of file
diff --git a/components/weapons/trmrckta.pie b/components/weapons/trmrckta.pie
deleted file mode 100644
index afabddd..0000000
--- a/components/weapons/trmrckta.pie
+++ /dev/null
@@ -1,39 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 12 
-	-9 6 11 
-	-5 17 8 
-	5 17 8 
-	9 6 11 
-	-9 6 -11 
-	9 6 -11 
-	5 17 -8 
-	-5 17 -8 
-	14 0 -14 
-	14 0 15 
-	-14 0 15 
-	-14 0 -14
-POLYGONS 20
-	200 3 3 2 1 2 32 6 28 12 28
-	200 3 3 1 0 2 32 12 28 16 32
-	200 3 7 6 5 6 28 12 28 16 32
-	200 3 7 5 4 6 28 16 32 2 32
-	200 3 6 7 1 5 16 11 16 11 3
-	200 3 6 1 2 5 16 11 3 5 3
-	200 3 7 4 0 4 20 0 23 25 23
-	200 3 7 0 1 4 20 25 23 21 20
-	200 3 5 6 2 3 25 5 20 20 20
-	200 3 5 2 3 3 25 20 20 22 25
-	200 3 5 3 9 3 25 22 25 25 27
-	200 3 5 9 8 3 25 25 27 0 27
-	200 3 9 3 0 0 48 4 43 14 43
-	200 3 9 0 10 0 48 14 43 18 48
-	200 3 4 5 8 4 43 14 43 18 48
-	200 3 4 8 11 4 43 18 48 0 48
-	200 3 10 0 4 25 27 25 24 0 24
-	200 3 10 4 11 25 27 0 24 0 27
-	200 3 8 9 10 16 0 16 19 0 19
-	200 3 8 10 11 16 0 0 19 0 0
\ No newline at end of file
diff --git a/components/weapons/trmrcktb.pie b/components/weapons/trmrcktb.pie
deleted file mode 100644
index 67e7b13..0000000
--- a/components/weapons/trmrcktb.pie
+++ /dev/null
@@ -1,27 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 8 
-	-12 15 -12 
-	12 15 -12 
-	12 15 17 
-	-12 15 17 
-	-14 0 -19 
-	14 0 -19 
-	14 0 19 
-	-14 0 19
-POLYGONS 12
-	200 3 3 2 1 0 0 16 0 16 19
-	200 3 3 1 0 0 0 16 19 0 19
-	200 3 0 1 5 0 114 15 114 15 120
-	200 3 0 5 4 0 114 15 120 0 120
-	200 3 1 2 6 0 126 16 126 16 131
-	200 3 1 6 5 0 126 16 131 0 131
-	200 3 2 3 7 0 120 14 120 14 126
-	200 3 2 7 6 0 120 14 126 0 126
-	200 3 3 0 4 0 126 16 126 16 131
-	200 3 3 4 7 0 126 16 131 0 131
-	200 3 4 5 6 0 19 16 19 16 0
-	200 3 4 6 7 0 19 16 0 0 0
\ No newline at end of file
diff --git a/components/weapons/trmrktbb.pie b/components/weapons/trmrktbb.pie
deleted file mode 100644
index 9229c30..0000000
--- a/components/weapons/trmrktbb.pie
+++ /dev/null
@@ -1,39 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 12 
-	-8 6 8 
-	-4 18 6 
-	1 18 6 
-	1 6 8 
-	-8 6 -7 
-	1 6 -7 
-	1 16 -5 
-	-4 16 -5 
-	14 0 -14 
-	14 0 12 
-	-13 0 12 
-	-13 0 -14
-POLYGONS 20
-	200 3 3 2 1 2 132 5 126 11 126
-	200 3 3 1 0 2 132 11 126 14 132
-	200 3 7 6 5 6 28 12 28 16 32
-	200 3 7 5 4 6 28 16 32 2 32
-	200 3 6 7 1 5 3 11 3 11 16
-	200 3 6 1 2 5 3 11 16 5 16
-	200 3 7 4 0 21 20 25 24 0 24
-	200 3 7 0 1 21 20 0 24 4 20
-	200 3 5 6 2 22 25 20 20 5 20
-	200 3 5 2 3 22 25 5 20 3 25
-	200 3 5 3 9 22 25 3 25 0 28
-	200 3 5 9 8 22 25 0 28 25 28
-	200 3 9 3 0 0 139 3 133 13 133
-	200 3 9 0 10 0 139 13 133 16 139
-	200 3 4 5 8 4 33 14 33 18 37
-	200 3 4 8 11 4 33 18 37 0 37
-	200 3 10 0 4 0 28 0 24 25 24
-	200 3 10 4 11 0 28 25 24 25 28
-	200 3 8 9 10 16 19 16 0 0 0
-	200 3 8 10 11 16 19 0 0 0 19
\ No newline at end of file
diff --git a/components/weapons/trmsnsr2.pie b/components/weapons/trmsnsr2.pie
deleted file mode 100644
index acd6ae1..0000000
--- a/components/weapons/trmsnsr2.pie
+++ /dev/null
@@ -1,35 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 12 
-	-9 0 15 
-	-18 0 0 
-	-15 6 0 
-	-8 6 13 
-	-9 0 -15 
-	-8 6 -13 
-	18 0 0 
-	9 0 15 
-	7 6 13 
-	14 6 0 
-	9 0 -15 
-	7 6 -13
-POLYGONS 16
-	200 3 3 2 1 24 20 13 20 13 28
-	200 3 3 1 0 24 20 13 28 25 28
-	200 3 2 5 4 13 20 1 20 0 28
-	200 3 2 4 1 13 20 0 28 13 28
-	200 3 9 8 7 12 20 25 20 25 28
-	200 3 9 7 6 12 20 25 28 12 28
-	200 3 8 3 0 4 38 13 38 13 47
-	200 3 8 0 7 4 38 13 47 4 47
-	200 3 5 11 10 5 28 14 28 14 37
-	200 3 5 10 4 5 28 14 37 5 37
-	200 3 11 9 6 0 20 12 20 12 28
-	200 3 11 6 10 0 20 12 28 0 28
-	200 3 2 9 11 40 168 22 168 27 159
-	200 3 2 11 5 40 168 27 159 36 159
-	200 3 3 8 9 36 176 27 176 22 168
-	200 3 3 9 2 36 176 22 168 40 168
\ No newline at end of file
diff --git a/components/weapons/trmvcan.pie b/components/weapons/trmvcan.pie
deleted file mode 100644
index 983abff..0000000
--- a/components/weapons/trmvcan.pie
+++ /dev/null
@@ -1,58 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 22 
-	-15 0 16 
-	16 0 16 
-	12 0 -20 
-	-12 0 -20 
-	-18 14 -11 
-	-20 14 1 
-	-23 7 0 
-	-21 6 -14 
-	-12 0 -15 
-	-4 13 -12 
-	-6 13 3 
-	-14 0 0 
-	5 13 -12 
-	7 14 14 
-	-7 14 14 
-	-12 0 -16 
-	-17 13 -11 
-	-7 13 14 
-	-13 0 0 
-	-5 13 2 
-	-12 0 -14 
-	-13 0 -6
-POLYGONS 29
-	200 3 8 21 20 2 47 0 43 2 46
-	200 3 9 15 18 5 21 2 27 13 27
-	200 3 9 18 19 5 21 13 27 15 20
-	200 3 7 20 21 18 45 2 46 0 43
-	200 3 7 21 11 18 45 0 43 0 40
-	200 3 7 11 6 18 45 0 40 17 39
-	200 3 5 6 11 16 40 17 45 0 47
-	200 3 5 11 10 16 40 0 47 0 38
-	200 3 0 17 19 25 27 24 20 15 20
-	200 3 0 19 18 25 27 15 20 13 27
-	200 3 10 9 16 16 205 15 193 1 195
-	200 3 10 16 5 16 205 1 195 2 208
-	200 3 14 9 17 24 20 5 21 24 20
-	200 3 14 13 12 16 19 2 19 4 0
-	200 3 14 12 9 16 19 4 0 13 0
-	200 3 7 6 5 5 46 17 46 18 40
-	200 3 7 5 4 5 46 18 40 8 41
-	200 3 4 5 16 1 196 2 208 1 195
-	200 3 7 4 9 0 35 2 30 17 29
-	200 3 7 9 8 0 35 17 29 16 37
-	200 3 3 15 9 0 27 2 27 5 21
-	200 3 9 12 2 4 29 14 29 16 37
-	200 3 9 2 3 4 29 16 37 2 37
-	200 3 13 14 0 2 38 16 38 18 47
-	200 3 13 0 1 2 38 18 47 0 47
-	200 3 3 2 1 2 37 16 37 18 28
-	200 3 3 1 0 2 37 18 28 0 28
-	200 3 12 13 1 5 21 24 20 25 27
-	200 3 12 1 2 5 21 25 27 0 27
\ No newline at end of file
diff --git a/components/weapons/trmvtlem.pie b/components/weapons/trmvtlem.pie
deleted file mode 100644
index 653fbda..0000000
--- a/components/weapons/trmvtlem.pie
+++ /dev/null
@@ -1,47 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 16 
-	46 -3 0 
-	41 4 4 
-	19 6 -5 
-	20 -4 -10 
-	21 2 21 
-	38 2 16 
-	40 -3 24 
-	23 -5 29 
-	-19 -4 -10 
-	-19 6 -5 
-	-41 4 4 
-	-45 -3 0 
-	-38 2 16 
-	-21 2 21 
-	-22 -5 29 
-	-39 -3 24
-POLYGONS 24
-	200 3 3 2 1 199 110 199 97 218 97
-	200 3 3 1 0 199 110 218 97 218 110
-	200 3 7 6 5 174 76 158 76 158 60
-	200 3 7 5 4 174 76 158 60 174 60
-	200 3 4 5 1 158 44 174 44 174 60
-	200 3 4 1 2 158 44 174 60 158 60
-	200 3 7 4 2 226 1 244 1 244 15
-	200 3 7 2 3 226 1 244 15 226 15
-	200 3 6 7 3 226 15 244 15 244 1
-	200 3 6 3 0 226 15 244 1 226 1
-	200 3 5 6 0 244 1 244 15 226 15
-	200 3 5 0 1 244 1 226 15 226 1
-	200 3 11 10 9 218 110 218 97 199 97
-	200 3 11 9 8 218 110 199 97 199 110
-	200 3 15 14 13 158 76 174 76 174 60
-	200 3 15 13 12 158 76 174 60 158 60
-	200 3 12 13 9 174 44 158 44 158 60
-	200 3 12 9 10 174 44 158 60 174 60
-	200 3 15 12 10 244 15 244 1 226 1
-	200 3 15 10 11 244 15 226 1 226 15
-	200 3 14 15 11 244 15 226 15 226 1
-	200 3 14 11 8 244 15 226 1 244 1
-	200 3 13 14 8 244 1 226 1 226 15
-	200 3 13 8 9 244 1 226 15 244 15
diff --git a/components/weapons/trmvtlhe.pie b/components/weapons/trmvtlhe.pie
deleted file mode 100644
index 026a9fb..0000000
--- a/components/weapons/trmvtlhe.pie
+++ /dev/null
@@ -1,47 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 16 
-	46 -3 0 
-	41 4 4 
-	19 6 -5 
-	20 -4 -10 
-	21 2 21 
-	38 2 16 
-	40 -3 24 
-	23 -5 29 
-	-19 -4 -10 
-	-19 6 -5 
-	-41 4 4 
-	-45 -3 0 
-	-38 2 16 
-	-21 2 21 
-	-22 -5 29 
-	-39 -3 24
-POLYGONS 24
-	200 3 3 2 1 0 176 0 164 22 164
-	200 3 3 1 0 0 176 22 164 22 176
-	200 3 7 6 5 16 208 0 208 0 192
-	200 3 7 5 4 16 208 0 192 16 192
-	200 3 4 5 1 0 152 22 152 22 164
-	200 3 4 1 2 0 152 22 164 0 164
-	200 3 7 4 2 120 114 131 114 131 126
-	200 3 7 2 3 120 114 131 126 120 126
-	200 3 6 7 3 0 102 22 102 22 76
-	200 3 6 3 0 0 102 22 76 0 76
-	200 3 5 6 0 26 102 26 114 0 114
-	200 3 5 0 1 26 102 0 114 0 102
-	200 3 11 10 9 22 176 22 164 0 164
-	200 3 11 9 8 22 176 0 164 0 176
-	200 3 15 14 13 0 208 16 208 16 192
-	200 3 15 13 12 0 208 16 192 0 192
-	200 3 12 13 9 22 152 0 152 0 164
-	200 3 12 9 10 22 152 0 164 22 164
-	200 3 15 12 10 26 114 26 102 0 102
-	200 3 15 10 11 26 114 0 102 0 114
-	200 3 14 15 11 22 102 0 102 0 76
-	200 3 14 11 8 22 102 0 76 22 76
-	200 3 13 14 8 131 114 120 114 120 126
-	200 3 13 8 9 131 114 120 126 131 126
\ No newline at end of file
diff --git a/components/weapons/trmvtlin.pie b/components/weapons/trmvtlin.pie
deleted file mode 100644
index 14dc33c..0000000
--- a/components/weapons/trmvtlin.pie
+++ /dev/null
@@ -1,39 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 16 
-	-34 1 5 
-	-25 -2 42 
-	-36 2 44 
-	-31 8 0 
-	-22 -2 51 
-	-36 -9 5 
-	-15 0 0 
-	-26 1 -19 
-	25 -2 42 
-	34 1 5 
-	36 2 44 
-	22 -2 51 
-	31 8 0 
-	36 -9 5 
-	15 0 0 
-	26 1 -19
-POLYGONS 16
-	200 3 0 1 2 143 8 128 9 128 0
-	200 3 2 1 0 128 0 128 9 143 8
-	200 3 5 4 3 128 9 143 8 128 0
-	200 3 6 3 4 128 8 128 0 143 9
-	200 3 5 3 7 128 9 128 0 143 6
-	200 3 6 5 7 129 0 128 9 143 4
-	200 3 3 6 7 128 9 128 0 143 6
-	200 3 4 5 6 143 4 128 0 128 9
-	200 3 8 9 10 128 9 143 8 128 0
-	200 3 10 9 8 128 0 143 8 128 9
-	200 3 13 12 11 128 9 128 0 143 8
-	200 3 14 11 12 128 8 143 9 128 0
-	200 3 13 15 12 128 9 143 6 128 0
-	200 3 14 15 13 129 0 143 4 128 9
-	200 3 12 15 14 128 9 143 6 128 0
-	200 3 11 14 13 143 4 128 9 128 0
\ No newline at end of file
diff --git a/components/weapons/trmvtlpl.pie b/components/weapons/trmvtlpl.pie
deleted file mode 100644
index ec41503..0000000
--- a/components/weapons/trmvtlpl.pie
+++ /dev/null
@@ -1,37 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 16 
-	-34 1 5 
-	-25 -2 42 
-	-36 2 44 
-	-31 8 0 
-	-22 -2 51 
-	-36 -9 5 
-	-15 0 0 
-	-26 1 -19 
-	25 -2 42 
-	34 1 5 
-	36 2 44 
-	22 -2 51 
-	31 8 0 
-	36 -9 5 
-	15 0 0 
-	26 1 -19
-POLYGONS 14
-	200 3 2 1 0 215 228 202 228 204 239
-	200 3 5 4 3 202 228 204 239 215 228
-	200 3 6 3 4 204 228 215 228 202 239
-	200 3 5 3 7 202 228 215 228 206 239
-	200 3 6 5 7 215 229 202 228 209 239
-	200 3 3 6 7 202 228 215 228 206 239
-	200 3 4 5 6 208 239 215 228 202 228
-	200 3 10 9 8 215 228 204 239 202 228
-	200 3 13 12 11 202 228 215 228 204 239
-	200 3 14 11 12 204 228 202 239 215 228
-	200 3 13 15 12 202 228 206 239 215 228
-	200 3 14 15 13 215 229 209 239 202 228
-	200 3 12 15 14 202 228 206 239 215 228
-	200 3 11 14 13 208 239 202 228 215 228
\ No newline at end of file
diff --git a/components/weapons/trwpfcan.pie b/components/weapons/trwpfcan.pie
deleted file mode 100644
index d707173..0000000
--- a/components/weapons/trwpfcan.pie
+++ /dev/null
@@ -1,45 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 16 
-	21 53 -26 
-	50 38 -22 
-	57 55 41 
-	26 67 51 
-	24 1 -52 
-	56 1 -39 
-	65 1 32 
-	26 1 45 
-	-25 53 -26 
-	-28 1 -52 
-	-26 67 51 
-	-26 1 45 
-	-57 55 41 
-	-54 38 -22 
-	-65 1 32 
-	-60 1 -39
-POLYGONS 22
-	200 3 3 2 1 144 208 144 192 128 192
-	200 3 3 1 0 144 208 128 192 128 208
-	200 3 0 1 5 168 224 176 224 176 208
-	200 3 0 5 4 168 224 176 208 168 208
-	200 3 1 2 6 128 192 144 192 144 208
-	200 3 1 6 5 128 192 144 208 128 208
-	200 3 2 3 7 176 224 168 224 168 208
-	200 3 2 7 6 176 224 168 208 176 208
-	200 3 9 8 0 0 255 1 240 12 240
-	200 3 9 0 4 0 255 12 240 13 255
-	200 3 8 10 3 0 255 0 240 13 240
-	200 3 8 3 0 0 255 13 240 12 255
-	200 3 11 7 3 176 208 168 208 168 224
-	200 3 11 3 10 176 208 168 224 176 224
-	200 3 8 13 12 144 208 144 192 128 192
-	200 3 8 12 10 144 208 128 192 128 208
-	200 3 10 12 14 168 224 176 224 176 208
-	200 3 10 14 11 168 224 176 208 168 208
-	200 3 12 13 15 128 192 144 192 144 208
-	200 3 12 15 14 128 192 144 208 128 208
-	200 3 13 8 9 176 224 168 224 168 208
-	200 3 13 9 15 176 224 168 208 176 208
\ No newline at end of file
diff --git a/components/weapons/trwpfgss.pie b/components/weapons/trwpfgss.pie
deleted file mode 100644
index b58a3ab..0000000
--- a/components/weapons/trwpfgss.pie
+++ /dev/null
@@ -1,45 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 16 
-	-15 67 70 
-	-48 55 59 
-	-60 38 -22 
-	-21 53 -26 
-	-12 1 45 
-	-37 1 32 
-	-51 1 -39 
-	-24 1 -52 
-	25 53 -26 
-	64 38 -22 
-	48 55 59 
-	15 67 70 
-	28 1 -52 
-	55 1 -39 
-	37 1 32 
-	9 1 45
-POLYGONS 22
-	200 3 3 2 1 144 208 144 192 128 192
-	200 3 3 1 0 144 208 128 192 128 208
-	200 3 0 1 5 168 224 176 224 176 208
-	200 3 0 5 4 168 224 176 208 168 208
-	200 3 1 2 6 128 192 144 192 144 208
-	200 3 1 6 5 128 192 144 208 128 208
-	200 3 2 3 7 176 224 168 224 168 208
-	200 3 2 7 6 176 224 168 208 176 208
-	200 3 11 10 9 144 208 144 192 128 192
-	200 3 11 9 8 144 208 128 192 128 208
-	200 3 8 9 13 168 224 176 224 176 208
-	200 3 8 13 12 168 224 176 208 168 208
-	200 3 9 10 14 128 192 144 192 144 208
-	200 3 9 14 13 128 192 144 208 128 208
-	200 3 10 11 15 176 224 168 224 168 208
-	200 3 10 15 14 176 224 168 208 176 208
-	200 3 7 3 8 0 255 1 240 12 240
-	200 3 7 8 12 0 255 12 240 13 255
-	200 3 3 0 11 0 255 0 240 13 240
-	200 3 3 11 8 0 255 13 240 12 255
-	200 3 4 15 11 176 208 168 208 168 224
-	200 3 4 11 0 176 208 168 224 176 224
\ No newline at end of file
diff --git a/components/weapons/trwpfmsl.pie b/components/weapons/trwpfmsl.pie
deleted file mode 100644
index 40cc659..0000000
--- a/components/weapons/trwpfmsl.pie
+++ /dev/null
@@ -1,57 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 22 
-	-52 65 -13 
-	-52 65 12 
-	-65 0 12 
-	-65 0 -39 
-	65 0 -39 
-	65 0 12 
-	52 65 12 
-	52 65 -13 
-	-39 65 -13 
-	-39 5 -39 
-	39 5 -39 
-	-39 65 12 
-	-39 5 12 
-	39 5 12 
-	38 65 12 
-	38 65 -13 
-	51 65 -13 
-	51 65 12 
-	38 5 12 
-	38 5 -39 
-	64 0 -39 
-	64 0 12
-POLYGONS 28
-	200 3 3 2 1 0 47 14 47 14 29
-	200 3 3 1 0 0 47 14 29 5 29
-	200 3 7 6 5 5 29 14 29 14 47
-	200 3 7 5 4 5 29 14 47 0 47
-	200 3 9 3 0 198 84 190 86 190 59
-	200 3 9 0 8 198 84 190 59 198 59
-	200 3 10 4 3 193 64 195 59 195 86
-	200 3 10 3 9 193 64 195 86 193 81
-	200 3 0 1 11 5 47 5 39 12 39
-	200 3 0 11 8 5 47 12 39 12 47
-	200 3 8 11 12 31 175 40 175 40 161
-	200 3 8 12 9 31 175 40 161 22 161
-	200 3 2 12 11 0 227 13 226 13 209
-	200 3 2 11 1 0 227 13 209 7 209
-	200 3 5 13 12 7 209 6 213 6 223
-	200 3 5 12 2 7 209 6 223 7 227
-	200 3 9 12 13 22 161 22 175 40 175
-	200 3 9 13 10 22 161 40 175 40 161
-	200 3 4 5 2 78 161 78 162 77 162
-	200 3 4 2 3 78 161 77 162 77 161
-	200 3 17 16 15 5 39 5 47 12 47
-	200 3 17 15 14 5 39 12 47 12 39
-	200 3 14 15 19 40 175 31 175 22 161
-	200 3 14 19 18 40 175 22 161 40 161
-	200 3 20 19 15 190 86 198 84 198 59
-	200 3 20 15 16 190 86 198 59 190 59
-	200 3 18 21 17 13 226 0 227 7 209
-	200 3 18 17 14 13 226 7 209 13 209
\ No newline at end of file
diff --git a/components/weapons/trwpfrkt.pie b/components/weapons/trwpfrkt.pie
deleted file mode 100644
index 40cc659..0000000
--- a/components/weapons/trwpfrkt.pie
+++ /dev/null
@@ -1,57 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-17-droid-weapons.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 22 
-	-52 65 -13 
-	-52 65 12 
-	-65 0 12 
-	-65 0 -39 
-	65 0 -39 
-	65 0 12 
-	52 65 12 
-	52 65 -13 
-	-39 65 -13 
-	-39 5 -39 
-	39 5 -39 
-	-39 65 12 
-	-39 5 12 
-	39 5 12 
-	38 65 12 
-	38 65 -13 
-	51 65 -13 
-	51 65 12 
-	38 5 12 
-	38 5 -39 
-	64 0 -39 
-	64 0 12
-POLYGONS 28
-	200 3 3 2 1 0 47 14 47 14 29
-	200 3 3 1 0 0 47 14 29 5 29
-	200 3 7 6 5 5 29 14 29 14 47
-	200 3 7 5 4 5 29 14 47 0 47
-	200 3 9 3 0 198 84 190 86 190 59
-	200 3 9 0 8 198 84 190 59 198 59
-	200 3 10 4 3 193 64 195 59 195 86
-	200 3 10 3 9 193 64 195 86 193 81
-	200 3 0 1 11 5 47 5 39 12 39
-	200 3 0 11 8 5 47 12 39 12 47
-	200 3 8 11 12 31 175 40 175 40 161
-	200 3 8 12 9 31 175 40 161 22 161
-	200 3 2 12 11 0 227 13 226 13 209
-	200 3 2 11 1 0 227 13 209 7 209
-	200 3 5 13 12 7 209 6 213 6 223
-	200 3 5 12 2 7 209 6 223 7 227
-	200 3 9 12 13 22 161 22 175 40 175
-	200 3 9 13 10 22 161 40 175 40 161
-	200 3 4 5 2 78 161 78 162 77 162
-	200 3 4 2 3 78 161 77 162 77 161
-	200 3 17 16 15 5 39 5 47 12 47
-	200 3 17 15 14 5 39 12 47 12 39
-	200 3 14 15 19 40 175 31 175 22 161
-	200 3 14 19 18 40 175 22 161 40 161
-	200 3 20 19 15 190 86 198 84 198 59
-	200 3 20 15 16 190 86 198 59 190 59
-	200 3 18 21 17 13 226 0 227 7 209
-	200 3 18 17 14 13 226 7 209 13 209
\ No newline at end of file

From 70ceca181af441b3b578728694086df3d660ba12 Mon Sep 17 00:00:00 2001
From: Dylan <28832631+DARwins1@users.noreply.github.com>
Date: Thu, 11 Nov 2021 02:53:34 -0600
Subject: [PATCH 05/10] Add files via upload

---
 components/bodies/scbd_run.pie  | 196 ++++++++++++++++++++++++++++++++
 components/bodies/scbd_std.pie  | 106 +++++++++++++++++
 components/weapons/cy_con.pie   |  29 +++++
 components/weapons/cy_gren.pie  |  41 +++++++
 components/weapons/cy_rep.pie   |  78 +++++++++++++
 components/weapons/cy_therm.pie |  47 ++++++++
 components/weapons/gnmflmrp.pie |  33 ++++++
 components/weapons/gnmrepr2.pie |  78 +++++++++++++
 components/weapons/sc_asscn.pie |  87 ++++++++++++++
 components/weapons/sc_atm.pie   |  54 +++++++++
 components/weapons/sc_can.pie   |  70 ++++++++++++
 components/weapons/sc_hpvcn.pie |  87 ++++++++++++++
 components/weapons/sc_pulse.pie |  78 +++++++++++++
 components/weapons/sc_rail2.pie |  80 +++++++++++++
 components/weapons/sc_tk.pie    |  58 ++++++++++
 components/weapons/scbody.pie   |  41 +++++++
 16 files changed, 1163 insertions(+)
 create mode 100644 components/bodies/scbd_run.pie
 create mode 100644 components/bodies/scbd_std.pie
 create mode 100644 components/weapons/cy_con.pie
 create mode 100644 components/weapons/cy_gren.pie
 create mode 100644 components/weapons/cy_rep.pie
 create mode 100644 components/weapons/cy_therm.pie
 create mode 100644 components/weapons/gnmflmrp.pie
 create mode 100644 components/weapons/gnmrepr2.pie
 create mode 100644 components/weapons/sc_asscn.pie
 create mode 100644 components/weapons/sc_atm.pie
 create mode 100644 components/weapons/sc_can.pie
 create mode 100644 components/weapons/sc_hpvcn.pie
 create mode 100644 components/weapons/sc_pulse.pie
 create mode 100644 components/weapons/sc_rail2.pie
 create mode 100644 components/weapons/sc_tk.pie
 create mode 100644 components/weapons/scbody.pie

diff --git a/components/bodies/scbd_run.pie b/components/bodies/scbd_run.pie
new file mode 100644
index 0000000..817f894
--- /dev/null
+++ b/components/bodies/scbd_run.pie
@@ -0,0 +1,196 @@
+PIE 2
+TYPE 200
+TEXTURE 0 page-14-droid-hubs.png 256 256
+LEVELS 6
+LEVEL 1
+POINTS 8 
+	-1 14 -12 
+	20 17 -15 
+	19 35 0 
+	-2 32 3 
+	10 24 -23 
+	14 8 -5 
+	12 26 11 
+	7 42 -6
+POLYGONS 8
+	200 3 0 1 2 188 212 180 212 180 200
+	200 3 0 2 3 188 212 180 200 188 200
+	200 3 3 2 1 188 200 180 200 180 212
+	200 3 3 1 0 188 200 180 212 188 212
+	200 3 4 5 6 171 212 179 212 179 200
+	200 3 4 6 7 171 212 179 200 171 200
+	200 3 7 6 5 171 200 179 200 179 212
+	200 3 7 5 4 171 200 179 212 171 212
+ANIMOBJECT 125 0 12
+	  0	      0       0       0       0       0       0    1.0     1.0    1.0
+	  1	   -714   -8165   -1355  -16390     580   -3905    1.0     1.0    1.0
+	  2	  -1744   -7453   -2027  -15079    3125   -3354    1.0     1.0    1.0
+	  3	  -3609    4551    2870    9450    7260    3275    1.0     1.0    1.0
+	  4	  -5345   18190   14007   40900    5066   11365    1.0     1.0    1.0
+	  5	  -4557   17791   10195   39328    3913   10398    1.0     1.0    1.0
+	  6	  -3293   20365    7244   45218      46    9700    1.0     1.0    1.0
+	  7	  -1567   24268    8671   55849   -4754    7202    1.0     1.0    1.0
+	  8	  -1358   27834   15171   70938   -9037    5927    1.0     1.0    1.0
+	  9	   1387   18232    7141   37833   -5305    2155    1.0     1.0    1.0
+	 10	   1451      27    5639     -31   -3055   -2368    1.0     1.0    1.0
+	 11	   1189   -6440    2231  -12520   -2894   -1638    1.0     1.0    1.0
+LEVEL 2
+POINTS 8 
+	3 2 -19 
+	21 4 -20 
+	20 22 -11 
+	2 20 -9 
+	11 8 -28 
+	14 0 -11 
+	13 16 -1 
+	10 26 -19
+POLYGONS 8
+	200 3 0 1 2 165 199 159 199 159 189
+	200 3 0 2 3 165 199 159 189 165 189
+	200 3 3 2 1 165 189 159 189 159 199
+	200 3 3 1 0 165 189 159 199 165 199
+	200 3 4 5 6 152 199 158 199 158 189
+	200 3 4 6 7 152 199 158 189 152 189
+	200 3 7 6 5 152 189 158 189 158 199
+	200 3 7 5 4 152 189 158 199 152 199
+ANIMOBJECT 125 0 12
+	  0	      0       0       0       0       0       0    1.0    1.0    1.0
+	  1	  -3342    4103    8894   26830    -199    7249    1.0    1.0    1.0
+	  2	  -5223    6358   14534   45014    -478   11311    1.0    1.0    1.0
+	  3	  -5500   10789   16307   49841    2347   12367    1.0    1.0    1.0
+	  4	  -5326   18152   13852   40476    5137   11279    1.0    1.0    1.0
+	  5	  -5858   18134   19627   64345   -1164   14567    1.0    1.0    1.0
+	  6	  -6103   17064   22002   85713   -9517   14325    1.0    1.0    1.0
+	  7	  -5517   17714   22887   98385  -15562    9959    1.0    1.0    1.0
+	  8	  -4130   22852   23301   96734  -15826    6829    1.0    1.0    1.0
+	  9	  -3400   17040   22066   78629  -14411    8147    1.0    1.0    1.0
+	 10	  -3578    9276   22168   51683   -8710   10000    1.0    1.0    1.0
+	 11	   -930    1868    8070   14301   -2851    5524    1.0    1.0    1.0
+LEVEL 3
+POINTS 8 
+	3 4 -33 
+	23 8 -32 
+	23 3 -6 
+	3 0 -7 
+	13 4 -33 
+	13 0 -7 
+	12 7 -5 
+	12 12 -31
+POLYGONS 8
+	200 3 0 1 2 156 213 156 206 165 206
+	200 3 0 2 3 156 213 165 206 165 213
+	200 3 3 2 1 165 213 165 206 156 206
+	200 3 3 1 0 165 213 156 206 156 213
+	200 3 4 5 6 166 199 175 199 175 195
+	200 3 4 6 7 166 199 175 195 166 195
+	200 3 7 6 5 166 195 175 195 175 199
+	200 3 7 5 4 166 195 175 199 166 199
+ANIMOBJECT 125 0 12
+	  0	      0       0       0       0       0       0    1.0    1.0    1.0
+	  1	  -1136    5405    1452    3144    2914    -205    1.0    1.0    1.0
+	  2	  -2194   10817    2579    5590    5186    -255    1.0    1.0    1.0
+	  3	  -2908   16335    3701    8045    7457    -207    1.0    1.0    1.0
+	  4	  -2931   21957    5128   11227   10372       0    1.0    1.0    1.0
+	  5	  -2651   27621    5945   15586    4460      73    1.0    1.0    1.0
+	  6	  -1880   33148    6846   20720   -2507    -419    1.0    1.0    1.0
+	  7	   -432   35431   15077   41718   -2009   -1131    1.0    1.0    1.0
+	  8	   1058   35103   21457   62702   -1288   -1617    1.0    1.0    1.0
+	  9	   1941   25881   19407   52959    -425   -1150    1.0    1.0    1.0
+	 10	    744   14989   15534   24860     538    -356    1.0    1.0    1.0
+	 11	    880    2837    7378   10419     812    -143    1.0    1.0    1.0
+LEVEL 4
+POINTS 8 
+	-20 10 2 
+	2 10 2 
+	1 34 0 
+	-20 34 0 
+	-12 12 14 
+	-12 8 -9 
+	-10 32 -12 
+	-10 36 11
+POLYGONS 8
+	200 3 0 1 2 180 212 188 212 188 200
+	200 3 0 2 3 180 212 188 200 180 200
+	200 3 3 2 1 180 200 188 200 188 212
+	200 3 3 1 0 180 200 188 212 180 212
+	200 3 4 5 6 179 212 171 212 171 200
+	200 3 4 6 7 179 212 171 200 179 200
+	200 3 7 6 5 179 200 171 200 171 212
+	200 3 7 5 4 179 200 171 212 179 212
+ANIMOBJECT 125 0 12
+	  0	      0       0       0       0       0       0    1.0    1.0    1.0
+	  1	  -1304    3662   -2676    6797    2433    2555    1.0    1.0    1.0
+	  2	  -2292    9685   -2225   18615    3987    3365    1.0    1.0    1.0
+	  3	  -2155   -6678    1771  -13022    6739    8069    1.0    1.0    1.0
+	  4	    192  -22105   15193  -47988   10957    9498    1.0    1.0    1.0
+	  5	    113  -25227   16055  -57707   12197    7323    1.0    1.0    1.0
+	  6	   -807  -24497   10272  -54886   10990    5388    1.0    1.0    1.0
+	  7	   1351  -28384   15866  -72431   12260    6534    1.0    1.0    1.0
+	  8	   1663  -27868   14498  -69706    8975    6853    1.0    1.0    1.0
+	  9	   1263  -20154    9092  -42806     686    4610    1.0    1.0    1.0
+	 10	   1439   -4874    6647   -9144   -3192    -899    1.0    1.0    1.0
+	 11	    786   -5917    2534  -11342   -1697     119    1.0    1.0    1.0
+LEVEL 5
+POINTS 8 
+	-18 4 17 
+	0 3 15 
+	-2 16 0 
+	-20 17 1 
+	-9 12 22 
+	-11 -3 10 
+	-13 9 -5 
+	-10 24 6
+POLYGONS 8
+	200 3 0 1 2 159 199 165 199 165 189
+	200 3 0 2 3 159 199 165 189 159 189
+	200 3 3 2 1 159 189 165 189 165 199
+	200 3 3 1 0 159 189 165 199 159 199
+	200 3 4 5 6 158 199 152 199 152 189
+	200 3 4 6 7 158 199 152 189 158 189
+	200 3 7 6 5 158 189 152 189 152 199
+	200 3 7 5 4 158 189 152 199 158 199
+ANIMOBJECT 125 0 12
+	  0	      0       0       0       0       0       0    1.0    1.0    1.0
+	  1	  -1373    5449   -2417   14614    2710    1280    1.0    1.0    1.0
+	  2	  -2262    9152   -2368   16234    3857    3743    1.0    1.0    1.0
+	  3	  -2654   -3315    1292    1689    6561    5581    1.0    1.0    1.0
+	  4	  -1104  -17588   11643  -22708    8593    5913    1.0    1.0    1.0
+	  5	    157  -25306   16200  -58439   12300    7393    1.0    1.0    1.0
+	  6	    892  -26386   16282  -83211   15341    7240    1.0    1.0    1.0
+	  7	    426  -26804   12189  -54730    9643    5117    1.0    1.0    1.0
+	  8	    416  -23402    8069  -35022    4539    3213    1.0    1.0    1.0
+	  9	   1070  -17758    7174  -29382    -571    2782    1.0    1.0    1.0
+	 10	   1541  -10944    9705  -39296   -1301    3631    1.0    1.0    1.0
+	 11	    785   -5683    2479  -10290   -1725     -51    1.0    1.0    1.0
+LEVEL 6
+POINTS 8 
+	-21 4 0 
+	-1 0 0 
+	-1 4 26 
+	-21 8 26 
+	-11 4 26 
+	-11 0 0 
+	-9 7 0 
+	-9 12 25
+POLYGONS 8
+	200 3 0 1 2 156 206 156 213 165 213
+	200 3 0 2 3 156 206 165 213 165 206
+	200 3 3 2 1 165 206 165 213 156 213
+	200 3 3 1 0 165 206 156 213 156 206
+	200 3 4 5 6 175 199 166 199 166 195
+	200 3 4 6 7 175 199 166 195 175 195
+	200 3 7 6 5 175 195 166 195 166 199
+	200 3 7 5 4 175 195 166 199 175 199
+ANIMOBJECT 125 0 12
+	  0	      0       0       0       0       0       0    1.0    1.0    1.0
+	  1	  -1210    6421   -3442   21363    -130    -116    1.0    1.0    1.0
+	  2	  -2368   14099   -6253   42726    -208    -272    1.0    1.0    1.0
+	  3	  -3058    1070   -4128   32853   -1147    -389    1.0    1.0    1.0
+	  4	  -2362  -16919    6113    4279   -2380    -151    1.0    1.0    1.0
+	  5	  -2940  -29324    6227  -10418   -2690     176    1.0    1.0    1.0
+	  6	  -3096  -35736    5550  -21375   -2490     509    1.0    1.0    1.0
+	  7	  -1763  -30007    4996  -18155   -5426     580    1.0    1.0    1.0
+	  8	   -375  -24118    4554  -15641   -7710     521    1.0    1.0    1.0
+	  9	    740  -18057    4104  -13108   -9989     360    1.0    1.0    1.0
+	 10	   1252  -11832    3516   -9812  -12905       0    1.0    1.0    1.0
+	 11	   1100   -5401    1905   -5446   -6747    -237    1.0    1.0    1.0
diff --git a/components/bodies/scbd_std.pie b/components/bodies/scbd_std.pie
new file mode 100644
index 0000000..83676cf
--- /dev/null
+++ b/components/bodies/scbd_std.pie
@@ -0,0 +1,106 @@
+PIE 2
+TYPE 200
+TEXTURE 0 page-14-droid-hubs.png 256 256
+EVENT 1 scbd_run.pie
+LEVELS 1
+LEVEL 1
+POINTS 48 
+	-1 16 -5 
+	20 17 -8 
+	20 40 0 
+	-2 39 1 
+	10 20 -18 
+	13 13 4 
+	11 36 12 
+	8 43 -10 
+	2 2 -9 
+	20 3 -12 
+	20 23 -6 
+	2 22 -4 
+	11 6 -20 
+	13 0 -1 
+	13 20 4 
+	10 25 -15 
+	3 4 -24 
+	23 8 -23 
+	22 3 2 
+	2 0 0 
+	13 4 -24 
+	12 0 1 
+	11 7 2 
+	12 12 -23 
+	-20 16 0 
+	1 15 0 
+	1 40 0 
+	-20 40 0 
+	-13 16 12 
+	-12 15 -12 
+	-9 40 -12 
+	-10 40 11 
+	-20 3 7 
+	-2 3 6 
+	-2 22 -1 
+	-20 22 0 
+	-12 7 16 
+	-12 0 -2 
+	-12 18 -10 
+	-12 26 8 
+	-22 4 -8 
+	-2 0 -7 
+	-3 4 18 
+	-23 8 17 
+	-13 4 18 
+	-12 0 -7 
+	-11 7 -8 
+	-12 12 17
+POLYGONS 48
+	200 3 0 1 2 188 212 180 212 180 200
+	200 3 0 2 3 188 212 180 200 188 200
+	200 3 3 2 1 188 200 180 200 180 212
+	200 3 3 1 0 188 200 180 212 188 212
+	200 3 4 5 6 171 212 179 212 179 200
+	200 3 4 6 7 171 212 179 200 171 200
+	200 3 7 6 5 171 200 179 200 179 212
+	200 3 7 5 4 171 200 179 212 171 212
+	200 3 8 9 10 165 199 159 199 159 189
+	200 3 8 10 11 165 199 159 189 165 189
+	200 3 11 10 9 165 189 159 189 159 199
+	200 3 11 9 8 165 189 159 199 165 199
+	200 3 12 13 14 152 199 158 199 158 189
+	200 3 12 14 15 152 199 158 189 152 189
+	200 3 15 14 13 152 189 158 189 158 199
+	200 3 15 13 12 152 189 158 199 152 199
+	200 3 16 17 18 156 213 156 206 165 206
+	200 3 16 18 19 156 213 165 206 165 213
+	200 3 19 18 17 165 213 165 206 156 206
+	200 3 19 17 16 165 213 156 206 156 213
+	200 3 20 21 22 166 199 175 199 175 195
+	200 3 20 22 23 166 199 175 195 166 195
+	200 3 23 22 21 166 195 175 195 175 199
+	200 3 23 21 20 166 195 175 199 166 199
+	200 3 24 25 26 180 212 188 212 188 200
+	200 3 24 26 27 180 212 188 200 180 200
+	200 3 27 26 25 180 200 188 200 188 212
+	200 3 27 25 24 180 200 188 212 180 212
+	200 3 28 29 30 179 212 171 212 171 200
+	200 3 28 30 31 179 212 171 200 179 200
+	200 3 31 30 29 179 200 171 200 171 212
+	200 3 31 29 28 179 200 171 212 179 212
+	200 3 32 33 34 159 199 165 199 165 189
+	200 3 32 34 35 159 199 165 189 159 189
+	200 3 35 34 33 159 189 165 189 165 199
+	200 3 35 33 32 159 189 165 199 159 199
+	200 3 36 37 38 158 199 152 199 152 189
+	200 3 36 38 39 158 199 152 189 158 189
+	200 3 39 38 37 158 189 152 189 152 199
+	200 3 39 37 36 158 189 152 199 158 199
+	200 3 40 41 42 156 206 156 213 165 213
+	200 3 40 42 43 156 206 165 213 165 206
+	200 3 43 42 41 165 206 165 213 156 213
+	200 3 43 41 40 165 206 156 213 156 206
+	200 3 44 45 46 175 199 166 199 166 195
+	200 3 44 46 47 175 199 166 195 175 195
+	200 3 47 46 45 175 195 166 195 166 199
+	200 3 47 45 44 175 195 166 199 175 199
+CONNECTORS 1
+	0 0 36
diff --git a/components/weapons/cy_con.pie b/components/weapons/cy_con.pie
new file mode 100644
index 0000000..7619d70
--- /dev/null
+++ b/components/weapons/cy_con.pie
@@ -0,0 +1,29 @@
+PIE 2
+TYPE 200
+TEXTURE 0 page-16-droid-drives.png 256 256
+LEVELS 1
+LEVEL 1
+POINTS 10
+	21 0 -40
+	29 7 -18
+	29 -7 -25
+	40 0 -29
+	29 3 17
+	0 7 -18
+	8 0 -40
+	0 -7 -25
+	-10 0 -29
+	0 3 17
+POLYGONS 12
+	200 3 2 1 0 87 250 87 256 71 253
+	200 3 3 0 1 93 240 102 248 93 248
+	200 3 1 4 3 102 256 87 256 87 250
+	200 3 2 3 4 75 51 74 40 86 51
+	200 3 2 0 3 86 48 75 48 75 41
+	200 3 1 2 4 80 242 72 244 91 250
+	200 3 7 6 5 87 250 71 253 87 256
+	200 3 8 5 6 93 240 93 248 102 248
+	200 3 5 8 9 102 256 87 250 87 256
+	200 3 7 9 8 75 51 86 51 74 40
+	200 3 7 8 6 86 48 75 41 75 48
+	200 3 5 9 7 80 242 91 250 72 244
diff --git a/components/weapons/cy_gren.pie b/components/weapons/cy_gren.pie
new file mode 100644
index 0000000..624d431
--- /dev/null
+++ b/components/weapons/cy_gren.pie
@@ -0,0 +1,41 @@
+PIE 2
+TYPE 200
+TEXTURE 0 page-17-droid-weapons.png 256 256
+LEVELS 1
+LEVEL 1
+POINTS 12
+	4 3 6
+	-1 6 6
+	-1 6 -17
+	4 3 -17
+	-7 3 6
+	-7 3 -17
+	-7 -3 6
+	-7 -3 -17
+	-1 -6 6
+	-1 -6 -17
+	4 -3 6
+	4 -3 -17
+POLYGONS 20
+	200 3 3 2 1 127 70 127 68 142 68
+	200 3 3 1 0 127 70 142 68 142 70
+	200 3 2 5 4 127 68 127 70 142 70
+	200 3 2 4 1 127 68 142 70 142 68
+	200 3 5 7 6 127 70 127 73 142 73
+	200 3 5 6 4 127 70 142 73 142 70
+	200 3 7 9 8 127 73 127 75 142 75
+	200 3 7 8 6 127 73 142 75 142 73
+	200 3 9 11 10 127 75 127 73 142 73
+	200 3 9 10 8 127 75 142 73 142 75
+	200 3 11 3 0 127 73 127 70 142 70
+	200 3 11 0 10 127 73 142 70 142 73
+	200 3 7 3 11 158 31 164 35 164 31
+	200 3 7 11 9 158 31 164 31 161 29
+	200 3 7 5 2 158 31 158 35 161 37
+	200 3 7 2 3 158 31 161 37 164 35
+	200 3 0 6 8 47 188 56 183 51 181
+	200 3 0 8 10 47 188 51 181 47 183
+	200 3 0 1 4 47 188 51 191 56 188
+	200 3 0 4 6 47 188 56 188 56 183
+CONNECTORS 1
+	-1 -18 0
diff --git a/components/weapons/cy_rep.pie b/components/weapons/cy_rep.pie
new file mode 100644
index 0000000..29e489a
--- /dev/null
+++ b/components/weapons/cy_rep.pie
@@ -0,0 +1,78 @@
+PIE 3
+TYPE 200
+TEXTURE 0 page-17-droid-weapons.png 0 0
+LEVELS 1
+LEVEL 1
+POINTS 29
+	0 7 -4
+	-3 0 -9
+	-3 8 -19
+	0 12 -15
+	3 0 -9
+	3 8 -19
+	0 1 -32
+	0 12 -24
+	-3 8 -20
+	3 8 -20
+	-3 13 -15
+	-3 18 -19
+	-3 13 -25
+	4 18 -19
+	4 13 -15
+	4 8 -20
+	4 13 -25
+	-5 0 8
+	-5 0 -8
+	-5 -7 -4
+	-5 -7 4
+	-5 7 4
+	-5 7 -4
+	4 0 -8
+	4 0 8
+	4 -7 4
+	4 -7 -4
+	4 7 -4
+	4 7 4
+POLYGONS 40
+	200 3 0 1 2 0.140625 0.730469 0.121094 0.730469 0.121094 0.707031
+	200 3 0 2 3 0.140625 0.730469 0.121094 0.707031 0.140625 0.707031
+	200 3 3 2 1 0.140625 0.707031 0.121094 0.707031 0.121094 0.730469
+	200 3 3 1 0 0.140625 0.707031 0.121094 0.730469 0.140625 0.730469
+	200 3 4 0 3 0.121094 0.730469 0.140625 0.730469 0.140625 0.707031
+	200 3 4 3 5 0.121094 0.730469 0.140625 0.707031 0.121094 0.707031
+	200 3 5 3 0 0.121094 0.707031 0.140625 0.707031 0.140625 0.730469
+	200 3 5 0 4 0.121094 0.707031 0.140625 0.730469 0.121094 0.730469
+	200 3 6 7 8 0.132812 0.707031 0.140625 0.730469 0.121094 0.730469
+	200 3 8 7 6 0.121094 0.730469 0.140625 0.730469 0.132812 0.707031
+	200 3 6 9 7 0.132812 0.707031 0.121094 0.730469 0.140625 0.730469
+	200 3 7 9 6 0.140625 0.730469 0.121094 0.730469 0.132812 0.707031
+	200 3 8 10 11 0.789062 0.914062 0.789062 0.875 0.75 0.875
+	200 3 8 11 12 0.789062 0.914062 0.75 0.875 0.75 0.914062
+	200 3 13 14 15 0.75 0.875 0.789062 0.875 0.789062 0.914062
+	200 3 13 15 16 0.75 0.875 0.789062 0.914062 0.75 0.914062
+	200 3 16 15 8 0.0078125 0.691406 0 0.691406 0 0.746094
+	200 3 16 8 12 0.0078125 0.691406 0 0.746094 0.0078125 0.746094
+	200 3 15 14 10 0 0.691406 0.015625 0.691406 0.015625 0.746094
+	200 3 15 10 8 0 0.691406 0.015625 0.746094 0 0.746094
+	200 3 14 13 11 0.015625 0.691406 0.0234375 0.691406 0.0234375 0.746094
+	200 3 14 11 10 0.015625 0.691406 0.0234375 0.746094 0.015625 0.746094
+	200 3 13 16 12 0.0234375 0.691406 0.0078125 0.691406 0.0078125 0.746094
+	200 3 13 12 11 0.0234375 0.691406 0.0078125 0.746094 0.0234375 0.746094
+	200 3 17 18 19 0.789062 0.894531 0.75 0.894531 0.761719 0.914062
+	200 3 17 19 20 0.789062 0.894531 0.761719 0.914062 0.777344 0.914062
+	200 3 17 21 22 0.789062 0.894531 0.777344 0.875 0.761719 0.875
+	200 3 17 22 18 0.789062 0.894531 0.761719 0.875 0.75 0.894531
+	200 3 23 24 25 0.75 0.894531 0.789062 0.894531 0.777344 0.914062
+	200 3 23 25 26 0.75 0.894531 0.777344 0.914062 0.761719 0.914062
+	200 3 24 23 27 0.789062 0.894531 0.75 0.894531 0.761719 0.875
+	200 3 24 27 28 0.789062 0.894531 0.761719 0.875 0.777344 0.875
+	200 3 24 28 21 0.0117188 0.691406 0.0234375 0.691406 0.0234375 0.746094
+	200 3 24 21 17 0.0117188 0.691406 0.0234375 0.746094 0.0117188 0.746094
+	200 3 27 23 18 0.0234375 0.691406 0.0117188 0.691406 0.0117188 0.746094
+	200 3 27 18 22 0.0234375 0.691406 0.0117188 0.746094 0.0234375 0.746094
+	200 3 23 26 19 0.0117188 0.691406 0 0.691406 0 0.746094
+	200 3 23 19 18 0.0117188 0.691406 0 0.746094 0.0117188 0.746094
+	200 3 25 24 17 0 0.691406 0.0117188 0.691406 0.0117188 0.746094
+	200 3 25 17 20 0 0.691406 0.0117188 0.746094 0 0.746094
+CONNECTORS 1
+	0 -32 1
diff --git a/components/weapons/cy_therm.pie b/components/weapons/cy_therm.pie
new file mode 100644
index 0000000..0579b32
--- /dev/null
+++ b/components/weapons/cy_therm.pie
@@ -0,0 +1,47 @@
+PIE 3
+TYPE 200
+TEXTURE 0 page-17-droid-weapons.png 0 0
+LEVELS 1
+LEVEL 1
+POINTS 16
+	-5 -5 -22
+	0 -10 -22
+	0 -10 -12
+	-5 -5 -12
+	3 -5 -22
+	3 -5 -12
+	0 -1 -22
+	0 -1 -12
+	3 6 -12
+	3 -14 -12
+	-5 -14 -12
+	-5 6 -12
+	-5 6 5
+	3 6 5
+	3 -14 5
+	-5 -14 5
+POLYGONS 22
+	200 3 0 1 2 0.925781 0.675781 0.910156 0.675781 0.910156 0.644531
+	200 3 0 2 3 0.925781 0.675781 0.910156 0.644531 0.925781 0.644531
+	200 3 1 4 5 0.910156 0.675781 0.894531 0.675781 0.894531 0.644531
+	200 3 1 5 2 0.910156 0.675781 0.894531 0.644531 0.910156 0.644531
+	200 3 4 6 7 0.894531 0.675781 0.910156 0.675781 0.910156 0.644531
+	200 3 4 7 5 0.894531 0.675781 0.910156 0.644531 0.894531 0.644531
+	200 3 6 0 3 0.910156 0.675781 0.925781 0.675781 0.925781 0.644531
+	200 3 6 3 7 0.910156 0.675781 0.925781 0.644531 0.910156 0.644531
+	200 3 1 0 6 0.398438 0.273438 0.410156 0.265625 0.417969 0.273438
+	200 3 1 6 4 0.398438 0.273438 0.417969 0.273438 0.410156 0.28125
+	200 3 8 9 10 0 0.75 0 0.6875 0.03125 0.6875
+	200 3 8 10 11 0 0.75 0.03125 0.6875 0.03125 0.75
+	200 3 8 11 12 0 0.71875 0 0.6875 0.0625 0.6875
+	200 3 8 12 13 0 0.71875 0.0625 0.6875 0.0625 0.71875
+	200 3 10 9 14 0 0.6875 0 0.71875 0.0625 0.71875
+	200 3 10 14 15 0 0.6875 0.0625 0.71875 0.0625 0.6875
+	200 3 11 10 15 0.90625 0.925781 0.984375 0.925781 0.984375 0.972656
+	200 3 11 15 12 0.90625 0.925781 0.984375 0.972656 0.90625 0.972656
+	200 3 15 14 13 0.03125 0.6875 0 0.6875 0 0.75
+	200 3 15 13 12 0.03125 0.6875 0 0.75 0.03125 0.75
+	200 3 9 8 13 0.984375 0.925781 0.90625 0.925781 0.90625 0.972656
+	200 3 9 13 14 0.984375 0.925781 0.90625 0.972656 0.984375 0.972656
+CONNECTORS 1
+	-1 -22 -5
diff --git a/components/weapons/gnmflmrp.pie b/components/weapons/gnmflmrp.pie
new file mode 100644
index 0000000..7dc07e0
--- /dev/null
+++ b/components/weapons/gnmflmrp.pie
@@ -0,0 +1,33 @@
+PIE 3
+TYPE 200
+TEXTURE 0 page-17-droid-weapons.png 0 0
+LEVELS 1
+LEVEL 1
+POINTS 12
+	0 11 -27
+	-2 7 -27
+	-2 7 -15
+	0 11 -13
+	2 7 -27
+	2 7 -15
+	0 12 -39
+	2 7 -39
+	-2 7 -39
+	0 17 -27
+	-7 5 -27
+	6 5 -27
+POLYGONS 12
+	200 3 0 1 2 0.421875 0.265625 0.421875 0.285156 0.453125 0.285156
+	200 3 0 2 3 0.421875 0.265625 0.453125 0.285156 0.453125 0.265625
+	200 3 4 0 3 0.453125 0.285156 0.453125 0.265625 0.421875 0.265625
+	200 3 4 3 5 0.453125 0.285156 0.421875 0.265625 0.421875 0.285156
+	200 3 6 7 8 0.410156 0.273438 0.402344 0.277344 0.402344 0.269531
+	200 3 9 10 11 0.417969 0.273438 0.398438 0.265625 0.398438 0.28125
+	200 3 6 8 10 0.488281 0.238281 0.488281 0.285156 0.453125 0.285156
+	200 3 6 10 9 0.488281 0.238281 0.453125 0.285156 0.453125 0.238281
+	200 3 8 7 11 0.488281 0.238281 0.488281 0.285156 0.453125 0.285156
+	200 3 8 11 10 0.488281 0.238281 0.453125 0.285156 0.453125 0.238281
+	200 3 7 6 9 0.453125 0.285156 0.453125 0.238281 0.488281 0.238281
+	200 3 7 9 11 0.453125 0.285156 0.488281 0.238281 0.488281 0.285156
+CONNECTORS 1
+	-0 -39 9
diff --git a/components/weapons/gnmrepr2.pie b/components/weapons/gnmrepr2.pie
new file mode 100644
index 0000000..9cda83c
--- /dev/null
+++ b/components/weapons/gnmrepr2.pie
@@ -0,0 +1,78 @@
+PIE 3
+TYPE 10200
+TEXTURE 0 page-17-droid-weapons.png 0 0
+LEVELS 1
+LEVEL 1
+POINTS 30
+	12 0 -14
+	7 26 -8
+	7 26 8
+	12 0 15
+	-7 26 8
+	-7 26 -8
+	-12 0 -14
+	-12 0 15
+	7 22 9
+	-7 22 9
+	-3 22 38
+	4 22 38
+	0 4 14
+	0 8 31
+	4 22 -41
+	-4 22 -41
+	-7 22 -9
+	7 22 -9
+	0 11 -44
+	0 4 -13
+	4 14 -54
+	4 11 -44
+	-4 11 -44
+	-4 14 -54
+	4 25 -51
+	-4 25 -51
+	0 3 -51
+	0 13 -52
+	-3 12 -46
+	2 12 -46
+POLYGONS 39
+	200 3 0 1 2 0 0.546875 0 0.503906 0.0625 0.503906
+	200 3 0 2 3 0 0.546875 0.0625 0.503906 0.0625 0.546875
+	200 3 4 5 6 0 0.503906 0.0625 0.503906 0.0625 0.546875
+	200 3 4 6 7 0 0.503906 0.0625 0.546875 0 0.546875
+	200 3 6 5 1 0 0.503906 0.0625 0.503906 0.0625 0.546875
+	200 3 6 1 0 0 0.503906 0.0625 0.546875 0 0.546875
+	200 3 5 4 2 0 0.503906 0.0625 0.503906 0.0625 0.546875
+	200 3 5 2 1 0 0.503906 0.0625 0.546875 0 0.546875
+	200 3 4 7 3 0 0.503906 0.0625 0.503906 0.0625 0.546875
+	200 3 4 3 2 0 0.503906 0.0625 0.546875 0 0.546875
+	200 3 8 9 10 0.777344 0.257812 0.710938 0.257812 0.710938 0.324219
+	200 3 8 10 11 0.777344 0.257812 0.710938 0.324219 0.777344 0.324219
+	200 3 12 8 11 0.777344 0.257812 0.710938 0.257812 0.710938 0.324219
+	200 3 12 11 13 0.777344 0.257812 0.710938 0.324219 0.777344 0.324219
+	200 3 9 12 13 0.777344 0.257812 0.710938 0.257812 0.710938 0.324219
+	200 3 9 13 10 0.777344 0.257812 0.710938 0.324219 0.777344 0.324219
+	200 3 13 11 10 0.710938 0.304688 0.742188 0.402344 0.675781 0.402344
+	200 3 14 15 16 0.777344 0.242188 0.710938 0.242188 0.710938 0.339844
+	200 3 14 16 17 0.777344 0.242188 0.710938 0.339844 0.777344 0.339844
+	200 3 18 14 17 0.777344 0.242188 0.710938 0.242188 0.710938 0.339844
+	200 3 18 17 19 0.777344 0.242188 0.710938 0.339844 0.777344 0.339844
+	200 3 15 18 19 0.777344 0.242188 0.710938 0.242188 0.710938 0.339844
+	200 3 15 19 16 0.777344 0.242188 0.710938 0.339844 0.777344 0.339844
+	200 3 20 21 22 0.0078125 0.691406 0 0.691406 0 0.746094
+	200 3 20 22 23 0.0078125 0.691406 0 0.746094 0.0078125 0.746094
+	200 3 21 14 15 0 0.691406 0.015625 0.691406 0.015625 0.746094
+	200 3 21 15 22 0 0.691406 0.015625 0.746094 0 0.746094
+	200 3 14 24 25 0.015625 0.691406 0.0234375 0.691406 0.0234375 0.746094
+	200 3 14 25 15 0.015625 0.691406 0.0234375 0.746094 0.015625 0.746094
+	200 3 24 20 23 0.0234375 0.691406 0.0078125 0.691406 0.0078125 0.746094
+	200 3 24 23 25 0.0234375 0.691406 0.0078125 0.746094 0.0234375 0.746094
+	200 3 22 15 25 0.0234375 0.746094 0.0234375 0.691406 0 0.691406
+	200 3 22 25 23 0.0234375 0.746094 0 0.691406 0 0.746094
+	200 3 24 14 21 0 0.691406 0.0234375 0.691406 0.0234375 0.746094
+	200 3 24 21 20 0 0.691406 0.0234375 0.746094 0 0.746094
+	200 3 26 27 28 0.132812 0.707031 0.140625 0.730469 0.121094 0.730469
+	200 3 28 27 26 0.121094 0.730469 0.140625 0.730469 0.132812 0.707031
+	200 3 26 29 27 0.132812 0.707031 0.121094 0.730469 0.140625 0.730469
+	200 3 27 29 26 0.140625 0.730469 0.121094 0.730469 0.132812 0.707031
+CONNECTORS 1
+	0 -51 3
diff --git a/components/weapons/sc_asscn.pie b/components/weapons/sc_asscn.pie
new file mode 100644
index 0000000..447cab7
--- /dev/null
+++ b/components/weapons/sc_asscn.pie
@@ -0,0 +1,87 @@
+PIE 2
+TYPE 10200
+TEXTURE 0 page-17-droid-weapons.png 256 256
+LEVELS 1
+LEVEL 1
+POINTS 34
+	55 -21 3
+	39 -6 15
+	33 2 -4
+	48 -11 -16
+	39 5 -5
+	32 -2 -5
+	38 -10 7
+	46 -3 7
+	50 -22 0
+	57 -16 0
+	45 -4 7
+	2 0 -14
+	-4 6 -9
+	-4 6 -41
+	2 0 -41
+	-11 0 -4
+	-11 0 -41
+	-4 -6 -9
+	-4 -6 -41
+	-6 26 5
+	-13 24 7
+	-12 22 -5
+	-5 25 -7
+	-10 7 -6
+	1 11 -9
+	-11 10 9
+	1 13 6
+	1 -17 21
+	1 -13 -13
+	-10 -9 -6
+	-11 -14 20
+	1 15 21
+	1 11 -13
+	-11 12 20
+POLYGONS 44
+	200 3 0 1 2 133 255 149 255 149 240
+	200 3 0 2 3 133 255 149 240 133 240
+	200 3 3 2 1 133 240 149 240 149 255
+	200 3 3 1 0 133 240 149 255 133 255
+	200 3 4 5 6 115 76 108 76 108 89
+	200 3 4 6 7 115 76 108 89 115 89
+	200 3 7 6 5 115 89 108 89 108 76
+	200 3 7 5 4 115 89 108 76 115 76
+	200 3 6 8 9 16 142 2 142 2 148
+	200 3 6 9 10 16 142 2 148 16 148
+	200 3 10 9 8 16 148 2 148 2 142
+	200 3 10 8 6 16 148 2 142 16 142
+	200 3 14 13 12 96 73 102 73 102 63
+	200 3 14 12 11 96 73 102 63 96 64
+	200 3 13 16 15 96 73 102 73 102 62
+	200 3 13 15 12 96 73 102 62 96 63
+	200 3 16 18 17 96 73 102 73 102 63
+	200 3 16 17 15 96 73 102 63 96 62
+	200 3 18 14 11 96 73 102 73 102 64
+	200 3 18 11 17 96 73 102 64 96 63
+	200 3 18 16 13 12 60 16 60 16 64
+	200 3 18 13 14 12 60 16 64 12 64
+	200 3 22 21 20 5 46 8 41 18 40
+	200 3 22 20 19 5 46 18 40 17 46
+	200 3 21 22 24 2 30 0 35 16 37
+	200 3 21 24 23 2 30 16 37 17 29
+	200 3 20 21 23 2 208 1 196 15 193
+	200 3 20 23 25 2 208 15 193 16 205
+	200 3 22 19 26 18 45 17 39 0 40
+	200 3 22 26 24 18 45 0 40 2 47
+	200 3 19 20 25 17 45 16 40 0 38
+	200 3 19 25 26 17 45 0 38 0 47
+	200 3 30 29 28 24 20 24 20 25 27
+	200 3 30 28 27 24 20 25 27 0 27
+	200 3 28 32 31 14 19 2 19 0 0
+	200 3 28 31 27 14 19 0 0 16 0
+	200 3 29 23 32 14 29 4 29 2 37
+	200 3 29 32 28 14 29 2 37 16 37
+	200 3 33 30 27 16 38 2 38 0 47
+	200 3 33 27 31 16 38 0 47 18 47
+	200 3 23 33 31 5 21 24 20 25 27
+	200 3 23 31 32 5 21 25 27 0 27
+	200 3 30 33 23 2 19 16 19 13 0
+	200 3 30 23 29 2 19 13 0 4 0
+CONNECTORS 1
+	-4 -43 0
diff --git a/components/weapons/sc_atm.pie b/components/weapons/sc_atm.pie
new file mode 100644
index 0000000..4e2cfcf
--- /dev/null
+++ b/components/weapons/sc_atm.pie
@@ -0,0 +1,54 @@
+PIE 2
+TYPE 200
+TEXTURE 0 page-17-droid-weapons.png 256 256
+LEVELS 1
+LEVEL 1
+POINTS 19
+	55 -21 3
+	39 -6 15
+	33 2 -4
+	48 -11 -16
+	39 5 -5
+	32 -2 -5
+	38 -10 7
+	46 -3 7
+	50 -22 0
+	57 -16 0
+	45 -4 7
+	-12 -6 28
+	-12 7 28
+	1 7 28
+	1 -6 28
+	-12 -6 -30
+	1 -6 -30
+	1 7 -30
+	-12 7 -30
+POLYGONS 26
+	200 3 0 1 2 133 255 149 255 149 240
+	200 3 0 2 3 133 255 149 240 133 240
+	200 3 3 2 1 133 240 149 240 149 255
+	200 3 3 1 0 133 240 149 255 133 255
+	200 3 4 5 6 115 76 108 76 108 89
+	200 3 4 6 7 115 76 108 89 115 89
+	200 3 7 6 5 115 89 108 89 108 76
+	200 3 7 5 4 115 89 108 76 115 76
+	200 3 6 8 9 16 142 2 142 2 148
+	200 3 6 9 10 16 142 2 148 16 148
+	200 3 10 9 8 16 148 2 148 2 142
+	200 3 10 8 6 16 148 2 142 16 142
+	200 3 14 13 12 252 117 252 113 256 113
+	200 3 14 12 11 252 117 256 113 256 117
+	200 3 18 17 16 252 113 256 113 256 117
+	200 3 18 16 15 252 113 256 117 252 117
+	200 3 15 16 14 252 116 256 116 256 140
+	200 3 15 14 11 252 116 256 140 252 140
+	200 3 17 18 12 252 116 256 116 256 140
+	200 3 17 12 13 252 116 256 140 252 140
+	200 3 18 15 11 196 172 220 172 220 176
+	200 3 18 11 12 196 172 220 176 196 176
+	200 3 16 17 13 220 176 220 172 196 172
+	200 3 16 13 14 220 176 196 172 196 176
+	200 3 18 15 11 220 172 220 176 196 176
+	200 3 18 11 12 220 172 196 176 196 172
+CONNECTORS 1
+	-5 -34 1
diff --git a/components/weapons/sc_can.pie b/components/weapons/sc_can.pie
new file mode 100644
index 0000000..b67d8dd
--- /dev/null
+++ b/components/weapons/sc_can.pie
@@ -0,0 +1,70 @@
+PIE 3
+TYPE 10200
+TEXTURE 0 page-17-droid-weapons.png 0 0
+LEVELS 1
+LEVEL 1
+POINTS 27
+	-13 -9 15
+	-13 8 15
+	-11 5 -2
+	-11 -5 -2
+	2 16 18
+	2 12 -12
+	2 -12 -12
+	2 -16 18
+	-5 -5 -48
+	-10 0 -48
+	-5 5 -48
+	0 0 -48
+	-5 5 -7
+	0 0 -12
+	-10 0 -2
+	-5 -5 -7
+	51 -20 -10
+	45 -12 11
+	33 4 1
+	39 -4 -20
+	39 6 0
+	30 0 0
+	39 -12 3
+	48 -6 3
+	44 -20 -12
+	52 -14 -12
+	47 -7 3
+POLYGONS 34
+	200 3 0 1 2 0.0625 0.0742188 0.0078125 0.0742188 0.015625 0
+	200 3 0 2 3 0.0625 0.0742188 0.015625 0 0.0507812 0
+	200 3 2 1 4 0.0195312 0.0820312 0.09375 0.078125 0.0976562 0.105469
+	200 3 2 4 5 0.0195312 0.0820312 0.0976562 0.105469 0 0.105469
+	200 3 6 5 4 0.0078125 0.0742188 0.0546875 0.0742188 0.0625 0
+	200 3 6 4 7 0.0078125 0.0742188 0.0625 0 0 0
+	200 3 3 2 5 0.015625 0.113281 0.0546875 0.113281 0.0625 0.144531
+	200 3 3 5 6 0.015625 0.113281 0.0625 0.144531 0.0078125 0.144531
+	200 3 1 0 7 0.0078125 0.148438 0.0625 0.148438 0.0703125 0.183594
+	200 3 1 7 4 0.0078125 0.148438 0.0703125 0.183594 0 0.183594
+	200 3 0 3 6 0.09375 0.078125 0.0195312 0.0820312 0 0.105469
+	200 3 0 6 7 0.09375 0.078125 0 0.105469 0.0976562 0.105469
+	200 3 8 9 10 0.0625 0.25 0.046875 0.25 0.046875 0.234375
+	200 3 8 10 11 0.0625 0.25 0.046875 0.234375 0.0625 0.234375
+	200 3 11 10 12 0.0234375 0.257812 0.046875 0.257812 0.046875 0.199219
+	200 3 11 12 13 0.0234375 0.257812 0.046875 0.199219 0.0234375 0.207031
+	200 3 10 9 14 0.0234375 0.257812 0.046875 0.257812 0.046875 0.191406
+	200 3 10 14 12 0.0234375 0.257812 0.046875 0.191406 0.0234375 0.199219
+	200 3 9 8 15 0.0234375 0.257812 0.046875 0.257812 0.046875 0.199219
+	200 3 9 15 14 0.0234375 0.257812 0.046875 0.199219 0.0234375 0.191406
+	200 3 8 11 13 0.0234375 0.257812 0.046875 0.257812 0.046875 0.207031
+	200 3 8 13 15 0.0234375 0.257812 0.046875 0.207031 0.0234375 0.199219
+	200 3 16 17 18 0.519531 0.996094 0.582031 0.996094 0.582031 0.9375
+	200 3 16 18 19 0.519531 0.996094 0.582031 0.9375 0.519531 0.9375
+	200 3 19 18 17 0.519531 0.9375 0.582031 0.9375 0.582031 0.996094
+	200 3 19 17 16 0.519531 0.9375 0.582031 0.996094 0.519531 0.996094
+	200 3 20 21 22 0.449219 0.296875 0.421875 0.296875 0.421875 0.347656
+	200 3 20 22 23 0.449219 0.296875 0.421875 0.347656 0.449219 0.347656
+	200 3 23 22 21 0.449219 0.347656 0.421875 0.347656 0.421875 0.296875
+	200 3 23 21 20 0.449219 0.347656 0.421875 0.296875 0.449219 0.296875
+	200 3 22 24 25 0.0625 0.554688 0.0078125 0.554688 0.0078125 0.578125
+	200 3 22 25 26 0.0625 0.554688 0.0078125 0.578125 0.0625 0.578125
+	200 3 26 25 24 0.0625 0.578125 0.0078125 0.578125 0.0078125 0.554688
+	200 3 26 24 22 0.0625 0.578125 0.0078125 0.554688 0.0625 0.554688
+CONNECTORS 1
+	-5 -49 0
diff --git a/components/weapons/sc_hpvcn.pie b/components/weapons/sc_hpvcn.pie
new file mode 100644
index 0000000..e42e60c
--- /dev/null
+++ b/components/weapons/sc_hpvcn.pie
@@ -0,0 +1,87 @@
+PIE 2
+TYPE 10200
+TEXTURE 0 page-17-droid-weapons.png 256 256
+LEVELS 1
+LEVEL 1
+POINTS 34
+	46 -24 -6
+	41 -11 13
+	35 6 0
+	40 -6 -19
+	41 6 -2
+	31 2 -2
+	36 -11 4
+	46 -7 4
+	40 -22 -9
+	49 -19 -9
+	45 -8 4
+	2 0 -11
+	-2 4 -7
+	-2 4 -31
+	2 0 -31
+	-6 0 -4
+	-6 0 -31
+	-2 -4 -7
+	-2 -4 -31
+	-2 19 5
+	-7 17 7
+	-7 16 -3
+	-2 18 -5
+	-5 5 -4
+	2 8 -6
+	-6 7 8
+	2 9 6
+	2 -12 18
+	2 -10 -10
+	-5 -7 -4
+	-6 -10 17
+	2 11 18
+	2 8 -10
+	-6 8 17
+POLYGONS 44
+	200 3 0 1 2 133 255 149 255 149 240
+	200 3 0 2 3 133 255 149 240 133 240
+	200 3 3 2 1 133 240 149 240 149 255
+	200 3 3 1 0 133 240 149 255 133 255
+	200 3 4 5 6 115 76 108 76 108 89
+	200 3 4 6 7 115 76 108 89 115 89
+	200 3 7 6 5 115 89 108 89 108 76
+	200 3 7 5 4 115 89 108 76 115 76
+	200 3 6 8 9 16 142 2 142 2 148
+	200 3 6 9 10 16 142 2 148 16 148
+	200 3 10 9 8 16 148 2 148 2 142
+	200 3 10 8 6 16 148 2 142 16 142
+	200 3 14 13 12 96 73 102 73 102 63
+	200 3 14 12 11 96 73 102 63 96 64
+	200 3 13 16 15 96 73 102 73 102 62
+	200 3 13 15 12 96 73 102 62 96 63
+	200 3 16 18 17 96 73 102 73 102 63
+	200 3 16 17 15 96 73 102 63 96 62
+	200 3 18 14 11 96 73 102 73 102 64
+	200 3 18 11 17 96 73 102 64 96 63
+	200 3 18 16 13 12 60 16 60 16 64
+	200 3 18 13 14 12 60 16 64 12 64
+	200 3 22 21 20 5 46 8 41 18 40
+	200 3 22 20 19 5 46 18 40 17 46
+	200 3 21 22 24 2 30 0 35 16 37
+	200 3 21 24 23 2 30 16 37 17 29
+	200 3 20 21 23 2 208 1 196 15 193
+	200 3 20 23 25 2 208 15 193 16 205
+	200 3 22 19 26 18 45 17 39 0 40
+	200 3 22 26 24 18 45 0 40 2 47
+	200 3 19 20 25 17 45 16 40 0 38
+	200 3 19 25 26 17 45 0 38 0 47
+	200 3 30 29 28 24 20 24 20 25 27
+	200 3 30 28 27 24 20 25 27 0 27
+	200 3 28 32 31 14 19 2 19 0 0
+	200 3 28 31 27 14 19 0 0 16 0
+	200 3 29 23 32 14 29 4 29 2 37
+	200 3 29 32 28 14 29 2 37 16 37
+	200 3 33 30 27 16 38 2 38 0 47
+	200 3 33 27 31 16 38 0 47 18 47
+	200 3 23 33 31 5 21 24 20 25 27
+	200 3 23 31 32 5 21 25 27 0 27
+	200 3 30 33 23 2 19 16 19 13 0
+	200 3 30 23 29 2 19 13 0 4 0
+CONNECTORS 1
+	-2 -33 0
diff --git a/components/weapons/sc_pulse.pie b/components/weapons/sc_pulse.pie
new file mode 100644
index 0000000..ed4b8bb
--- /dev/null
+++ b/components/weapons/sc_pulse.pie
@@ -0,0 +1,78 @@
+PIE 3
+TYPE 10200
+TEXTURE 0 page-17-droid-weapons.png 0 0
+LEVELS 1
+LEVEL 1
+POINTS 31
+	45 -25 -1
+	42 -8 15
+	35 6 -1
+	38 -11 -17
+	41 5 -4
+	31 2 -2
+	37 -10 7
+	47 -6 5
+	39 -24 -4
+	48 -21 -5
+	45 -7 5
+	-10 0 -37
+	-1 -4 -37
+	-1 -4 -29
+	-10 0 -29
+	-1 4 -37
+	-1 4 -29
+	-7 0 -29
+	-2 -2 -29
+	-2 -2 -10
+	-7 0 -10
+	-2 2 -29
+	-2 2 -10
+	-13 -14 11
+	-9 -5 -9
+	2 -8 -15
+	2 -18 8
+	-13 14 11
+	-9 5 -9
+	2 8 -15
+	2 18 8
+POLYGONS 38
+	200 3 0 1 2 0.519531 0.996094 0.582031 0.996094 0.582031 0.9375
+	200 3 0 2 3 0.519531 0.996094 0.582031 0.9375 0.519531 0.9375
+	200 3 3 2 1 0.519531 0.9375 0.582031 0.9375 0.582031 0.996094
+	200 3 3 1 0 0.519531 0.9375 0.582031 0.996094 0.519531 0.996094
+	200 3 4 5 6 0.449219 0.296875 0.421875 0.296875 0.421875 0.347656
+	200 3 4 6 7 0.449219 0.296875 0.421875 0.347656 0.449219 0.347656
+	200 3 7 6 5 0.449219 0.347656 0.421875 0.347656 0.421875 0.296875
+	200 3 7 5 4 0.449219 0.347656 0.421875 0.296875 0.449219 0.296875
+	200 3 6 8 9 0.0625 0.554688 0.0078125 0.554688 0.0078125 0.578125
+	200 3 6 9 10 0.0625 0.554688 0.0078125 0.578125 0.0625 0.578125
+	200 3 10 9 8 0.0625 0.578125 0.0078125 0.578125 0.0078125 0.554688
+	200 3 10 8 6 0.0625 0.578125 0.0078125 0.554688 0.0625 0.554688
+	200 3 11 12 13 0.945312 0.0976562 0.980469 0.0976562 0.980469 0.144531
+	200 3 11 13 14 0.945312 0.0976562 0.980469 0.144531 0.945312 0.144531
+	200 3 12 15 16 0.945312 0.0976562 0.980469 0.0976562 0.980469 0.144531
+	200 3 12 16 13 0.945312 0.0976562 0.980469 0.144531 0.945312 0.144531
+	200 3 15 11 14 0.945312 0.0976562 0.980469 0.0976562 0.980469 0.144531
+	200 3 15 14 16 0.945312 0.0976562 0.980469 0.144531 0.945312 0.144531
+	200 3 12 11 15 0.613281 0.101562 0.652344 0.128906 0.613281 0.15625
+	200 3 14 13 16 0.179688 0.722656 0.21875 0.699219 0.21875 0.746094
+	200 3 17 18 19 0.128906 0.691406 0.179688 0.691406 0.179688 0.75
+	200 3 17 19 20 0.128906 0.691406 0.179688 0.75 0.128906 0.75
+	200 3 18 21 22 0.128906 0.691406 0.179688 0.691406 0.179688 0.75
+	200 3 18 22 19 0.128906 0.691406 0.179688 0.75 0.128906 0.75
+	200 3 21 17 20 0.128906 0.691406 0.179688 0.691406 0.179688 0.75
+	200 3 21 20 22 0.128906 0.691406 0.179688 0.75 0.128906 0.75
+	200 3 23 24 25 0 0.078125 0.0742188 0.0859375 0.0976562 0.105469
+	200 3 23 25 26 0 0.078125 0.0976562 0.105469 0.0078125 0.105469
+	200 3 23 27 28 0.0546875 0.0742188 0.0078125 0.0742188 0.0195312 0.015625
+	200 3 23 28 24 0.0546875 0.0742188 0.0195312 0.015625 0.0429688 0.015625
+	200 3 24 28 29 0.0234375 0.117188 0.046875 0.117188 0.0507812 0.144531
+	200 3 24 29 25 0.0234375 0.117188 0.0507812 0.144531 0.0195312 0.144531
+	200 3 28 27 30 0.0742188 0.0859375 0 0.078125 0.0078125 0.105469
+	200 3 28 30 29 0.0742188 0.0859375 0.0078125 0.105469 0.0976562 0.105469
+	200 3 27 23 26 0.0078125 0.148438 0.0625 0.148438 0.0703125 0.183594
+	200 3 27 26 30 0.0078125 0.148438 0.0703125 0.183594 0 0.183594
+	200 3 29 30 26 0.046875 0.0742188 0.0625 0 0 0
+	200 3 29 26 25 0.046875 0.0742188 0 0 0.015625 0.0742188
+CONNECTORS 1
+	-4 -38 0
diff --git a/components/weapons/sc_rail2.pie b/components/weapons/sc_rail2.pie
new file mode 100644
index 0000000..2dd8321
--- /dev/null
+++ b/components/weapons/sc_rail2.pie
@@ -0,0 +1,80 @@
+PIE 3
+TYPE 10200
+TEXTURE 0 page-17-droid-weapons.png 0 0
+LEVELS 1
+LEVEL 1
+POINTS 29
+	45 -25 -1
+	42 -8 15
+	35 6 -1
+	38 -11 -17
+	41 5 -4
+	31 2 -2
+	37 -10 7
+	47 -6 5
+	39 -24 -4
+	48 -21 -5
+	45 -7 5
+	1 12 -12
+	1 17 13
+	1 -8 13
+	1 -8 -20
+	-9 4 -2
+	-9 8 26
+	-9 -7 4
+	-9 -7 -6
+	1 -8 4
+	-9 -7 26
+	-4 -17 4
+	-4 -17 13
+	-4 -16 -49
+	-8 -8 -49
+	-8 -8 4
+	-4 -16 4
+	0 -9 -49
+	0 -9 4
+POLYGONS 42
+	200 3 0 1 2 0.519531 0.996094 0.582031 0.996094 0.582031 0.9375
+	200 3 0 2 3 0.519531 0.996094 0.582031 0.9375 0.519531 0.9375
+	200 3 3 2 1 0.519531 0.9375 0.582031 0.9375 0.582031 0.996094
+	200 3 3 1 0 0.519531 0.9375 0.582031 0.996094 0.519531 0.996094
+	200 3 4 5 6 0.449219 0.296875 0.421875 0.296875 0.421875 0.347656
+	200 3 4 6 7 0.449219 0.296875 0.421875 0.347656 0.449219 0.347656
+	200 3 7 6 5 0.449219 0.347656 0.421875 0.347656 0.421875 0.296875
+	200 3 7 5 4 0.449219 0.347656 0.421875 0.296875 0.449219 0.296875
+	200 3 6 8 9 0.0625 0.554688 0.0078125 0.554688 0.0078125 0.578125
+	200 3 6 9 10 0.0625 0.554688 0.0078125 0.578125 0.0625 0.578125
+	200 3 10 9 8 0.0625 0.578125 0.0078125 0.578125 0.0078125 0.554688
+	200 3 10 8 6 0.0625 0.578125 0.0078125 0.554688 0.0625 0.554688
+	200 3 11 12 13 0.0546875 0.0742188 0.0625 0 0 0
+	200 3 13 14 11 0 0 0.0078125 0.0742188 0.0546875 0.0742188
+	200 3 15 16 12 0 0.105469 0.0976562 0.101562 0.0703125 0.078125
+	200 3 15 12 11 0 0.105469 0.0703125 0.078125 0.015625 0.078125
+	200 3 17 18 14 0.0976562 0.101562 0 0.105469 0.015625 0.078125
+	200 3 17 14 19 0.0976562 0.101562 0.015625 0.078125 0.0703125 0.078125
+	200 3 20 16 15 0.046875 0.0742188 0.015625 0.0742188 0.0195312 0
+	200 3 20 15 18 0.046875 0.0742188 0.0195312 0 0.0429688 0
+	200 3 18 15 11 0.0195312 0.511719 0.0429688 0.511719 0.0546875 0.546875
+	200 3 18 11 14 0.0195312 0.511719 0.0546875 0.546875 0.0078125 0.546875
+	200 3 16 20 13 0.015625 0.160156 0.0546875 0.160156 0.0703125 0.183594
+	200 3 16 13 12 0.015625 0.160156 0.0703125 0.183594 0 0.183594
+	200 3 21 19 13 0 0.078125 0.0859375 0.078125 0.0859375 0.0898438
+	200 3 21 13 22 0 0.078125 0.0859375 0.0898438 0 0.0898438
+	200 3 17 21 22 0 0 0.0625 0 0.0625 0.03125
+	200 3 17 22 20 0 0 0.0625 0.03125 0.00390625 0.0742188
+	200 3 21 17 19 0.0625 0.523438 0 0.546875 0.0078125 0.5
+	200 3 20 22 13 0.0664062 0.183594 0 0.167969 0.0625 0.148438
+	200 3 23 24 25 0.617188 0.175781 0.59375 0.175781 0.59375 0.277344
+	200 3 23 25 26 0.617188 0.175781 0.59375 0.277344 0.617188 0.277344
+	200 3 26 25 24 0.617188 0.277344 0.59375 0.277344 0.59375 0.175781
+	200 3 26 24 23 0.617188 0.277344 0.59375 0.175781 0.617188 0.175781
+	200 3 24 27 28 0.617188 0.175781 0.59375 0.175781 0.59375 0.277344
+	200 3 24 28 25 0.617188 0.175781 0.59375 0.277344 0.617188 0.277344
+	200 3 25 28 27 0.617188 0.277344 0.59375 0.277344 0.59375 0.175781
+	200 3 25 27 24 0.617188 0.277344 0.59375 0.175781 0.617188 0.175781
+	200 3 27 23 26 0.617188 0.175781 0.59375 0.175781 0.59375 0.277344
+	200 3 27 26 28 0.617188 0.175781 0.59375 0.277344 0.617188 0.277344
+	200 3 28 26 23 0.617188 0.277344 0.59375 0.277344 0.59375 0.175781
+	200 3 28 23 27 0.617188 0.277344 0.59375 0.175781 0.617188 0.175781
+CONNECTORS 1
+	-4 0 -12
diff --git a/components/weapons/sc_tk.pie b/components/weapons/sc_tk.pie
new file mode 100644
index 0000000..d8806a4
--- /dev/null
+++ b/components/weapons/sc_tk.pie
@@ -0,0 +1,58 @@
+PIE 2
+TYPE 200
+TEXTURE 0 page-17-droid-weapons.png 256 256
+LEVELS 1
+LEVEL 1
+POINTS 23
+	51 -20 -10
+	45 -12 11
+	33 4 1
+	39 -4 -20
+	39 6 0
+	30 0 0
+	39 -12 3
+	48 -6 3
+	44 -20 -12
+	52 -14 -12
+	47 -7 3
+	4 1 0
+	2 -8 8
+	-6 5 0
+	2 -8 -7
+	-5 -15 -17
+	2 -9 -17
+	-10 9 -21
+	-18 3 -21
+	-5 -15 22
+	2 -9 22
+	-10 9 18
+	-18 3 18
+POLYGONS 26
+	200 3 0 1 2 133 255 149 255 149 240
+	200 3 0 2 3 133 255 149 240 133 240
+	200 3 3 2 1 133 240 149 240 149 255
+	200 3 3 1 0 133 240 149 255 133 255
+	200 3 4 5 6 115 76 108 76 108 89
+	200 3 4 6 7 115 76 108 89 115 89
+	200 3 7 6 5 115 89 108 89 108 76
+	200 3 7 5 4 115 89 108 76 115 76
+	200 3 6 8 9 16 142 2 142 2 148
+	200 3 6 9 10 16 142 2 148 16 148
+	200 3 10 9 8 16 148 2 148 2 142
+	200 3 10 8 6 16 148 2 142 16 142
+	200 3 13 12 11 252 249 255 256 256 249
+	200 3 11 14 13 256 249 255 256 252 249
+	200 3 18 17 16 252 107 256 107 256 115
+	200 3 18 16 15 252 107 256 115 252 115
+	200 3 16 20 19 256 117 256 139 252 139
+	200 3 16 19 15 256 117 252 139 252 117
+	200 3 22 21 17 256 139 252 139 252 117
+	200 3 22 17 18 256 139 252 117 256 117
+	200 3 17 21 20 197 165 219 165 219 176
+	200 3 17 20 16 197 165 219 176 197 176
+	200 3 21 22 19 252 106 256 106 256 116
+	200 3 21 19 20 252 106 256 116 252 116
+	200 3 22 18 15 197 165 219 165 219 176
+	200 3 22 15 19 197 165 219 176 197 176
+CONNECTORS 1
+	-7 -23 -3
diff --git a/components/weapons/scbody.pie b/components/weapons/scbody.pie
new file mode 100644
index 0000000..14a0561
--- /dev/null
+++ b/components/weapons/scbody.pie
@@ -0,0 +1,41 @@
+PIE 2
+TYPE 10200
+TEXTURE 0 page-14-droid-hubs.png 256 256
+LEVELS 1
+LEVEL 1
+POINTS 14
+	-16 24 -6
+	-16 8 -14
+	16 8 -14
+	16 24 -6
+	-8 -8 -14
+	8 -8 -14
+	-16 24 10
+	-16 8 10
+	-8 -8 2
+	16 24 10
+	16 8 10
+	8 -8 2
+	-16 24 -14
+	16 24 -14
+POLYGONS 18
+	200 3 3 2 1 66 167 74 167 74 185
+	200 3 3 1 0 66 167 74 185 66 185
+	200 3 5 4 1 82 172 82 180 74 185
+	200 3 5 1 2 82 172 74 185 74 167
+	200 3 0 1 7 66 163 74 167 74 155
+	200 3 0 7 6 66 163 74 155 66 155
+	200 3 4 8 7 82 167 82 159 74 155
+	200 3 4 7 1 82 167 74 155 74 167
+	200 3 6 7 10 29 155 37 155 37 137
+	200 3 6 10 9 29 155 37 137 29 137
+	200 3 11 10 7 45 142 37 137 37 155
+	200 3 11 7 8 45 142 37 155 45 150
+	200 3 9 13 12 169 155 157 155 157 137
+	200 3 9 12 6 169 155 157 137 169 137
+	200 3 9 10 2 66 155 74 155 74 167
+	200 3 9 2 3 66 155 74 167 66 163
+	200 3 11 5 2 82 159 82 167 74 167
+	200 3 11 2 10 82 159 74 167 74 155
+CONNECTORS 1
+	-18 -4 16

From 1c341b1f52002f015a085a62eba6f6cbeba2f0d0 Mon Sep 17 00:00:00 2001
From: Dylan <28832631+DARwins1@users.noreply.github.com>
Date: Thu, 11 Nov 2021 02:53:55 -0600
Subject: [PATCH 06/10] Delete milasbas.pie

---
 structs/milasbas.pie | 63 --------------------------------------------
 1 file changed, 63 deletions(-)
 delete mode 100644 structs/milasbas.pie

diff --git a/structs/milasbas.pie b/structs/milasbas.pie
deleted file mode 100644
index 3784493..0000000
--- a/structs/milasbas.pie
+++ /dev/null
@@ -1,63 +0,0 @@
-PIE 2
-TYPE 200
-TEXTURE 0 page-10-laboratories.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 24 
-	-40 127 -38 
-	-105 127 -38 
-	-105 127 -102 
-	-40 127 -102 
-	-40 0 -38 
-	-119 0 -38 
-	-119 0 -131 
-	-40 0 -131 
-	65 75 114 
-	-65 75 114 
-	-65 75 -38 
-	65 75 -38 
-	78 0 130 
-	-78 0 130 
-	-78 0 -38 
-	78 0 -38 
-	101 127 -38 
-	36 127 -38 
-	36 127 -102 
-	101 127 -102 
-	115 0 -38 
-	36 0 -38 
-	36 0 -131 
-	115 0 -131
-POLYGONS 30
-	200 3 3 2 1 51 70 93 70 93 112
-	200 3 3 1 0 51 70 93 112 51 112
-	200 3 0 1 5 193 50 244 50 244 104
-	200 3 0 5 4 193 50 244 104 193 104
-	200 3 1 2 6 193 50 244 50 244 104
-	200 3 1 6 5 193 50 244 104 193 104
-	200 3 2 3 7 193 50 244 50 244 104
-	200 3 2 7 6 193 50 244 104 193 104
-	200 3 3 0 4 193 50 244 50 244 104
-	200 3 3 4 7 193 50 244 104 193 104
-	200 3 11 10 9 4 174 43 174 43 216
-	200 3 11 9 8 4 174 43 216 4 216
-	200 3 8 9 13 4 102 47 102 51 133
-	200 3 8 13 12 4 102 51 133 0 133
-	200 3 9 10 14 5 102 51 102 51 133
-	200 3 9 14 13 5 102 51 133 0 133
-	200 3 10 11 15 4 102 47 102 51 133
-	200 3 10 15 14 4 102 51 133 0 133
-	200 3 11 8 12 0 102 46 102 51 133
-	200 3 11 12 15 0 102 51 133 0 133
-	200 3 19 18 17 51 70 93 70 93 112
-	200 3 19 17 16 51 70 93 112 51 112
-	200 3 16 17 21 193 50 244 50 244 104
-	200 3 16 21 20 193 50 244 104 193 104
-	200 3 17 18 22 193 50 244 50 244 104
-	200 3 17 22 21 193 50 244 104 193 104
-	200 3 18 19 23 193 50 244 50 244 104
-	200 3 18 23 22 193 50 244 104 193 104
-	200 3 19 16 20 193 50 244 50 244 104
-	200 3 19 20 23 193 50 244 104 193 104
-CONNECTORS 1
-	0 45 78

From 9e2b82cb2f94cc21fb98fec031e90cfe8f753496 Mon Sep 17 00:00:00 2001
From: Dylan <28832631+DARwins1@users.noreply.github.com>
Date: Thu, 11 Nov 2021 02:54:01 -0600
Subject: [PATCH 07/10] Delete stwpfcan.pie

---
 structs/stwpfcan.pie | 161 -------------------------------------------
 1 file changed, 161 deletions(-)
 delete mode 100644 structs/stwpfcan.pie

diff --git a/structs/stwpfcan.pie b/structs/stwpfcan.pie
deleted file mode 100644
index bd53bc6..0000000
--- a/structs/stwpfcan.pie
+++ /dev/null
@@ -1,161 +0,0 @@
-PIE 2
-TYPE 10200
-TEXTURE 0 page-12-player-buildings.png 256 256
-LEVELS 1
-LEVEL 1
-POINTS 66 
-	-38 0 128 
-	-88 0 128 
-	-77 77 128 
-	-50 77 128 
-	-128 77 50 
-	-89 101 37 
-	-89 101 91 
-	-128 77 76 
-	-36 101 91 
-	-89 0 91 
-	-36 0 91 
-	-128 0 38 
-	-89 0 37 
-	-128 0 89 
-	-88 0 -129 
-	-38 0 -129 
-	-50 77 -129 
-	-77 77 -129 
-	-128 77 -78 
-	-89 101 -91 
-	-89 101 -37 
-	-128 77 -52 
-	-37 101 -91 
-	-128 0 -90 
-	-89 0 -91 
-	-89 0 -37 
-	-128 0 -39 
-	-37 0 -91 
-	40 0 -129 
-	90 0 -129 
-	78 77 -129 
-	51 77 -129 
-	129 0 -90 
-	129 0 -39 
-	129 77 -51 
-	129 77 -78 
-	91 101 -91 
-	39 101 -91 
-	91 101 -37 
-	91 0 -37 
-	91 0 -91 
-	39 0 -91 
-	90 0 128 
-	40 0 128 
-	51 77 128 
-	78 77 128 
-	129 0 38 
-	129 0 89 
-	129 77 76 
-	129 77 50 
-	91 101 91 
-	91 101 37 
-	39 101 91 
-	39 0 91 
-	91 0 91 
-	91 0 37 
-	40 101 91 
-	40 0 91 
-	0 101 -91 
-	91 101 0 
-	-89 101 0 
-	0 101 91 
-	0 127 -80 
-	-77 127 0 
-	78 127 0 
-	0 127 77
-POLYGONS 86
-	200 3 3 2 1 100 172 121 172 130 208
-	200 3 3 1 0 100 172 130 208 90 208
-	200 3 7 6 5 12 225 44 225 44 238
-	200 3 7 5 4 12 225 44 238 12 238
-	200 3 3 8 6 12 225 44 225 44 238
-	200 3 3 6 2 12 225 44 238 12 238
-	200 3 2 6 9 90 172 130 172 111 208
-	200 3 2 9 1 90 172 111 208 90 208
-	200 3 8 3 0 90 172 130 172 130 208
-	200 3 8 0 10 90 172 130 208 110 208
-	200 3 5 12 11 130 172 111 208 90 208
-	200 3 11 4 5 90 208 90 172 130 172
-	200 3 6 7 13 90 172 130 172 130 208
-	200 3 6 13 9 90 172 130 208 110 208
-	200 3 7 4 11 100 172 121 172 130 208
-	200 3 7 11 13 100 172 130 208 90 208
-	200 3 17 16 15 100 172 121 172 130 208
-	200 3 17 15 14 100 172 130 208 90 208
-	200 3 21 20 19 12 225 44 225 44 238
-	200 3 21 19 18 12 225 44 238 12 238
-	200 3 17 19 22 12 225 44 225 44 238
-	200 3 17 22 16 12 225 44 238 12 238
-	200 3 19 24 23 130 172 111 208 90 208
-	200 3 23 18 19 90 208 90 172 130 172
-	200 3 20 21 26 90 172 130 172 130 208
-	200 3 20 26 25 90 172 130 208 110 208
-	200 3 21 18 23 100 172 121 172 130 208
-	200 3 21 23 26 100 172 130 208 90 208
-	200 3 22 27 15 130 172 111 208 90 208
-	200 3 15 16 22 90 208 90 172 130 172
-	200 3 19 17 14 90 172 130 172 130 208
-	200 3 19 14 24 90 172 130 208 110 208
-	200 3 31 30 29 100 172 121 172 130 208
-	200 3 31 29 28 100 172 130 208 90 208
-	200 3 35 34 33 100 172 121 172 130 208
-	200 3 35 33 32 100 172 130 208 90 208
-	200 3 31 37 36 12 225 44 225 44 238
-	200 3 31 36 30 12 225 44 238 12 238
-	200 3 35 36 38 12 225 44 225 44 238
-	200 3 35 38 34 12 225 44 238 12 238
-	200 3 34 38 39 90 172 130 172 111 208
-	200 3 34 39 33 90 172 111 208 90 208
-	200 3 36 35 32 90 172 130 172 130 208
-	200 3 36 32 40 90 172 130 208 110 208
-	200 3 36 40 29 130 172 111 208 90 208
-	200 3 29 30 36 90 208 90 172 130 172
-	200 3 37 31 28 90 172 130 172 130 208
-	200 3 37 28 41 90 172 130 208 110 208
-	200 3 45 44 43 100 172 121 172 130 208
-	200 3 45 43 42 100 172 130 208 90 208
-	200 3 49 48 47 100 172 121 172 130 208
-	200 3 49 47 46 100 172 130 208 90 208
-	200 3 49 51 50 12 225 44 225 44 238
-	200 3 49 50 48 12 225 44 238 12 238
-	200 3 45 50 52 12 225 44 225 44 238
-	200 3 45 52 44 12 225 44 238 12 238
-	200 3 44 52 53 90 172 130 172 111 208
-	200 3 44 53 43 90 172 111 208 90 208
-	200 3 50 45 42 90 172 130 172 130 208
-	200 3 50 42 54 90 172 130 208 110 208
-	200 3 48 50 54 90 172 130 172 111 208
-	200 3 48 54 47 90 172 111 208 90 208
-	200 3 51 49 46 90 172 130 172 130 208
-	200 3 51 46 55 90 172 130 208 110 208
-	200 3 37 41 27 130 171 130 208 90 208
-	200 3 37 27 22 130 171 90 208 90 171
-	200 3 20 25 12 130 171 130 208 90 208
-	200 3 20 12 5 130 171 90 208 90 171
-	200 3 51 55 39 130 171 130 208 90 208
-	200 3 51 39 38 130 171 90 208 90 171
-	200 3 57 56 8 90 208 90 171 130 171
-	200 3 57 8 10 90 208 130 171 130 208
-	200 3 59 36 58 130 172 130 208 90 208
-	200 3 60 58 19 90 172 130 208 90 208
-	200 3 6 61 60 90 172 130 172 90 208
-	200 3 59 61 50 130 208 90 172 130 172
-	200 3 63 62 58 0 224 56 224 56 239
-	200 3 63 58 60 0 224 56 239 0 239
-	200 3 62 64 59 56 224 0 224 0 239
-	200 3 62 59 58 56 224 0 239 56 239
-	200 3 64 65 61 56 224 0 224 0 239
-	200 3 64 61 59 56 224 0 239 56 239
-	200 3 65 63 60 0 224 56 224 56 239
-	200 3 65 60 61 0 224 56 239 0 239
-	200 3 65 64 62 64 0 127 50 63 100
-	200 3 65 62 63 64 0 63 100 0 50
-CONNECTORS 1
-	0 0 129

From 0c8cd49dbcfacb8f0dcc66bdc70fcae590c94cc6 Mon Sep 17 00:00:00 2001
From: Dylan <28832631+DARwins1@users.noreply.github.com>
Date: Thu, 11 Nov 2021 02:54:35 -0600
Subject: [PATCH 08/10] Add files via upload


From 4efb816f75867329e7032f444aa669bcba118cd8 Mon Sep 17 00:00:00 2001
From: Dylan <28832631+DARwins1@users.noreply.github.com>
Date: Thu, 11 Nov 2021 02:55:17 -0600
Subject: [PATCH 09/10] Add files via upload

---
 wrf/cam1/sub1-5/labels.json |   14 +-
 wrf/cam1/sub1-5/struct.bjo  |  Bin 15492 -> 15612 bytes
 wrf/cam1/sub1-5/struct.ini  | 1025 +++++++++++++++++
 wrf/cam1/sub1-d/struct.bjo  |  Bin 30492 -> 31692 bytes
 wrf/cam1/sub1-d/struct.ini  | 2100 ++++++++++++++++++++++++++++++++++
 wrf/cam3/cam3-4/struct.bjo  |  Bin 0 -> 34332 bytes
 wrf/cam3/cam3-4/struct.ini  | 2144 +++++++++++++++++++++++++++++++++++
 wrf/cam3/cam3b/struct.bjo   |  Bin 12372 -> 12612 bytes
 wrf/cam3/cam3b/struct.ini   |  830 ++++++++++++++
 wrf/cam3/cam3c/struct.bjo   |  Bin 20172 -> 20172 bytes
 wrf/cam3/cam3c/struct.ini   | 1272 +++++++++++++++++++++
 wrf/cam3/cam3d/struct.bjo   |  Bin 0 -> 16332 bytes
 wrf/cam3/cam3d/struct.ini   | 1040 +++++++++++++++++
 13 files changed, 8421 insertions(+), 4 deletions(-)
 create mode 100644 wrf/cam1/sub1-5/struct.ini
 create mode 100644 wrf/cam1/sub1-d/struct.ini
 create mode 100644 wrf/cam3/cam3-4/struct.bjo
 create mode 100644 wrf/cam3/cam3-4/struct.ini
 create mode 100644 wrf/cam3/cam3b/struct.ini
 create mode 100644 wrf/cam3/cam3c/struct.ini
 create mode 100644 wrf/cam3/cam3d/struct.bjo
 create mode 100644 wrf/cam3/cam3d/struct.ini

diff --git a/wrf/cam1/sub1-5/labels.json b/wrf/cam1/sub1-5/labels.json
index 710cde9..fa67ca5 100644
--- a/wrf/cam1/sub1-5/labels.json
+++ b/wrf/cam1/sub1-5/labels.json
@@ -77,6 +77,12 @@
 		"pos1": [3776, 5568],
 		"pos2": [4800, 6080]
 	},
+	"area_8": {
+		"label": "NPLZTriggerEast",
+		"subscriber": 0,
+		"pos1": [6976, 4928],
+		"pos2": [7616, 5312]
+	},
 
 	"object_0": {
 		"label": "NPLeftFactory",
@@ -142,25 +148,25 @@
 	"radius_0": {
 		"label": "NorthScavFactoryTrigger",
 		"subscriber": 0,
-		"pos": [3200, 900],
+		"pos": [3200, 896],
 		"radius": 1280
 	},
 	"radius_1": {
 		"label": "SouthWestScavFactoryTrigger",
 		"subscriber": 0,
-		"pos": [4200, 7500],
+		"pos": [4224, 7424],
 		"radius": 1024
 	},
 	"radius_2": {
 		"label": "SouthEastScavFactoryTrigger",
 		"subscriber": 0,
-		"pos": [5600, 7500],
+		"pos": [5504, 7424],
 		"radius": 1024
 	},
 	"radius_3": {
 		"label": "NPLZTrigger",
 		"subscriber": 0,
 		"pos": [4288, 4160],
-		"radius": 1100
+		"radius": 1088
 	}
 }
diff --git a/wrf/cam1/sub1-5/struct.bjo b/wrf/cam1/sub1-5/struct.bjo
index 2ba42a74e60e9274381c90d328e6078ad500fcb1..ee004379f1710d468b3e1a9ee615969ec3766cd3 100644
GIT binary patch
delta 359
zcmZpv{8PzUTvAlZ!N9=KG?BA&G8f|{-p`B-3=Tp-%*VhWFxikXoA(n)1juvXXJFvi
ztjJ`{IQb2u#^gJeoGgMsof93MH=kiX!37fBJV#)G$mT7o3%CSba|?13lT&k3^GbAm
zgM4%gCU4XhXZ$hQR@Hy=8G{!bAmzMYKt=-%Il#lf5CSv^yDr|ZKxGF+fLMTmL2fc5
z3odovK*j;pfn56vw{hP=#sQ6T;AUVrh}$^EpOb410w@0CnS97niuV`DY@oRZfT6%J
f`6EjpNR;vS<hzz|C4XQ_fM$b~xNg?73S$BQV0COX

delta 242
zcmexU*;2__TvAlZ!N9=KIFYk+@-IdyULGLFL6Cvr0FV(fxsWGt@-1emiEAo&`JfUG
zybKJQlMNZOdHI1N2Y^Z)fKn`z8CkL?i!hy-{Dx73R|KS12qGgexlz-3a|rVZF0hm_
zND8RI0jQe;Xnr=YDNF=t6a!GidEy@pUJIz;0gxqN+bm%s0#K37E_@3_7y~A+)%D-J
rM+s>B9wiONU6bEh1aAJP`;23<jim<T$H{js11HN_t8G4GWxxagq!K#h

diff --git a/wrf/cam1/sub1-5/struct.ini b/wrf/cam1/sub1-5/struct.ini
new file mode 100644
index 0000000..b813a64
--- /dev/null
+++ b/wrf/cam1/sub1-5/struct.ini
@@ -0,0 +1,1025 @@
+[structure_8]
+id = 8
+startpos = 1
+name = A0LightFactory
+position = 5568, 2496, 0
+rotation = 0, 0, 0
+modules = 2
+
+[structure_13]
+id = 13
+startpos = 1
+name = A0HardcreteMk1CWall
+position = 4416, 3136, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_499]
+id = 499
+startpos = 1
+name = WallTower02
+position = 4672, 3648, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_498]
+id = 498
+startpos = 1
+name = WallTower02
+position = 3648, 3904, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_16]
+id = 16
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 4800, 3648, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_19]
+id = 19
+startpos = 1
+name = A0HardcreteMk1CWall
+position = 4928, 3648, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_497]
+id = 497
+startpos = 1
+name = WallTower02
+position = 3648, 4416, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_25]
+id = 25
+startpos = 1
+name = Sys-SensoTower01
+position = 4288, 2752, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_26]
+id = 26
+startpos = 1
+name = A0HardcreteMk1CWall
+position = 5312, 4928, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_27]
+id = 27
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 5312, 4544, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_28]
+id = 28
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 5312, 4672, 0
+rotation = 49152, 0, 0
+modules = 0
+
+[structure_29]
+id = 29
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 5312, 4800, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_30]
+id = 30
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 5184, 4928, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_31]
+id = 31
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 5056, 4928, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_32]
+id = 32
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 4928, 4928, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_33]
+id = 33
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 4800, 4928, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_34]
+id = 34
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 4672, 4928, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_35]
+id = 35
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 4544, 4928, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_36]
+id = 36
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 4416, 4928, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_38]
+id = 38
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 4288, 4928, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_39]
+id = 39
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 4160, 4928, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_40]
+id = 40
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 4032, 4928, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_42]
+id = 42
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 3776, 4928, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_43]
+id = 43
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 3648, 4800, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_44]
+id = 44
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 3648, 3008, 0
+rotation = 49152, 0, 0
+modules = 0
+
+[structure_45]
+id = 45
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 3648, 3136, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_46]
+id = 46
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 3648, 3264, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_48]
+id = 48
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 3648, 3520, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_49]
+id = 49
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 3648, 3648, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_50]
+id = 50
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 3648, 3776, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_59]
+id = 59
+startpos = 1
+name = WallTower02
+position = 3648, 3392, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_77]
+id = 77
+startpos = 7
+name = A0BaBaBunker
+position = 1728, 4032, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_78]
+id = 78
+startpos = 7
+name = A0CannonTower
+position = 1856, 3648, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_85]
+id = 85
+startpos = 7
+name = A0BaBaGunTower
+position = 5440, 7232, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_86]
+id = 86
+startpos = 7
+name = A0BaBaGunTower
+position = 5952, 7232, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_89]
+id = 89
+startpos = 7
+name = A0BaBaHorizontalWall
+position = 5568, 7232, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_90]
+id = 90
+startpos = 7
+name = A0BaBaHorizontalWall
+position = 5824, 7232, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_91]
+id = 91
+startpos = 7
+name = A0CannonTower
+position = 5696, 6976, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_92]
+id = 92
+startpos = 7
+name = A0BaBaHorizontalWall
+position = 5440, 7360, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_93]
+id = 93
+startpos = 7
+name = A0BaBaHorizontalWall
+position = 5952, 7360, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_94]
+id = 94
+startpos = 7
+name = A0BabaCornerWall
+position = 5440, 7488, 0
+rotation = 49152, 0, 0
+modules = 0
+
+[structure_109]
+id = 109
+startpos = 7
+name = A0BaBaRocketPit
+position = 3776, 7232, 0
+rotation = 32768, 0, 0
+modules = 0
+
+[structure_110]
+id = 110
+startpos = 7
+name = A0BaBaHorizontalWall
+position = 4032, 7360, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_111]
+id = 111
+startpos = 7
+name = A0BaBaHorizontalWall
+position = 4160, 7360, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_112]
+id = 112
+startpos = 7
+name = A0BaBaHorizontalWall
+position = 4288, 7360, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_113]
+id = 113
+startpos = 7
+name = A0BaBaHorizontalWall
+position = 4416, 7360, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_115]
+id = 115
+startpos = 7
+name = A0BaBaGunTower
+position = 4544, 7360, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_116]
+id = 116
+startpos = 7
+name = A0BabaCornerWall
+position = 4544, 7616, 0
+rotation = 32768, 0, 0
+modules = 0
+
+[structure_128]
+id = 128
+startpos = 7
+name = A0BaBaGunTower
+position = 3776, 7360, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_145]
+id = 145
+startpos = 7
+name = A0BaBaHorizontalWall
+position = 5696, 7232, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_200]
+id = 200
+startpos = 1
+name = A0ComDroidControl
+position = 5888, 2048, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_207]
+id = 207
+startpos = 7
+name = A0BaBaGunTower
+position = 2752, 1088, 0
+rotation = 32768, 0, 0
+modules = 0
+
+[structure_208]
+id = 208
+startpos = 7
+name = A0BaBaGunTower
+position = 3520, 1088, 0
+rotation = 49152, 0, 0
+modules = 0
+
+[structure_209]
+id = 209
+startpos = 7
+name = A0BaBaHorizontalWall
+position = 3392, 1088, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_210]
+id = 210
+startpos = 7
+name = A0BaBaHorizontalWall
+position = 3264, 1088, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_211]
+id = 211
+startpos = 7
+name = A0BaBaHorizontalWall
+position = 3008, 1088, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_212]
+id = 212
+startpos = 7
+name = A0BaBaHorizontalWall
+position = 2880, 1088, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_216]
+id = 216
+startpos = 1
+name = A0CommandCentreNP
+position = 5248, 2048, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_222]
+id = 222
+startpos = 7
+name = A0BaBaHorizontalWall
+position = 2880, 576, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_223]
+id = 223
+startpos = 7
+name = A0BaBaFactory
+position = 3200, 448, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_229]
+id = 229
+startpos = 7
+name = A0BaBaPowerGenerator
+position = 3520, 448, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_243]
+id = 243
+startpos = 1
+name = WallTower02
+position = 3648, 4928, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_251]
+id = 251
+startpos = 7
+name = LookOutTower
+position = 3136, 4416, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_267]
+id = 267
+startpos = 7
+name = A0BaBaHorizontalWall
+position = 3904, 7360, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_278]
+id = 278
+startpos = 7
+name = A0BaBaPowerGenerator
+position = 5568, 7744, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_279]
+id = 279
+startpos = 7
+name = A0BaBaFactory
+position = 5760, 7360, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_280]
+id = 280
+startpos = 7
+name = A0BaBaFactory
+position = 4096, 7744, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_281]
+id = 281
+startpos = 7
+name = A0BaBaPowerGenerator
+position = 3904, 7744, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_289]
+id = 289
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 3648, 4672, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_290]
+id = 290
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 3904, 4928, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_291]
+id = 291
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 3648, 4544, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_331]
+id = 331
+startpos = 1
+name = GuardTower5
+position = 5312, 3904, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_332]
+id = 332
+startpos = 1
+name = GuardTower5
+position = 6464, 3648, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_333]
+id = 333
+startpos = 1
+name = GuardTower5
+position = 6848, 3136, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_337]
+id = 337
+startpos = 1
+name = GuardTower4
+position = 4672, 4288, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_339]
+id = 339
+startpos = 1
+name = GuardTower4
+position = 5056, 4672, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_360]
+id = 360
+startpos = 1
+name = PillBox1
+position = 3904, 4288, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_361]
+id = 361
+startpos = 1
+name = PillBox1
+position = 3904, 4032, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_368]
+id = 368
+startpos = 7
+name = A0BaBaHorizontalWall
+position = 2752, 960, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_369]
+id = 369
+startpos = 7
+name = A0BaBaHorizontalWall
+position = 2880, 704, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_372]
+id = 372
+startpos = 7
+name = A0BaBaHorizontalWall
+position = 3520, 960, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_373]
+id = 373
+startpos = 7
+name = A0BaBaHorizontalWall
+position = 3520, 832, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_374]
+id = 374
+startpos = 7
+name = A0BaBaHorizontalWall
+position = 3520, 704, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_376]
+id = 376
+startpos = 7
+name = A0BabaCornerWall
+position = 3520, 576, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_377]
+id = 377
+startpos = 7
+name = A0BaBaHorizontalWall
+position = 3648, 576, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_388]
+id = 388
+startpos = 7
+name = A0CannonTower
+position = 3264, 960, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_389]
+id = 389
+startpos = 7
+name = A0BaBaRocketPit
+position = 3648, 1088, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_390]
+id = 390
+startpos = 7
+name = A0BaBaRocketPit
+position = 2624, 704, 0
+rotation = 49152, 0, 0
+modules = 0
+
+[structure_407]
+id = 407
+startpos = 1
+name = A0CyborgFactory
+position = 4288, 4224, 0
+rotation = 32768, 0, 0
+modules = 0
+
+[structure_426]
+id = 426
+startpos = 1
+name = GuardTower4
+position = 4032, 4544, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_427]
+id = 427
+startpos = 1
+name = PillBox1
+position = 4928, 3392, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_428]
+id = 428
+startpos = 1
+name = PillBox1
+position = 4672, 3136, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_434]
+id = 434
+startpos = 7
+name = A0BaBaHorizontalWall
+position = 4544, 7488, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_437]
+id = 437
+startpos = 7
+name = A0BaBaBunker
+position = 1216, 448, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_438]
+id = 438
+startpos = 7
+name = A0BaBaBunker
+position = 1600, 832, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_439]
+id = 439
+startpos = 1
+name = Sys-SensoTower01
+position = 6464, 4032, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_440]
+id = 440
+startpos = 1
+name = GuardTower4
+position = 6592, 4288, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_504]
+id = 504
+startpos = 1
+name = Emplacement-MRL-pit
+position = 3648, 2624, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_468]
+id = 468
+startpos = 7
+name = A0BaBaGunTowerEND
+position = 4672, 7616, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_470]
+id = 470
+startpos = 7
+name = A0BaBaGunTowerEND
+position = 3776, 7488, 0
+rotation = 49152, 0, 0
+modules = 0
+
+[structure_472]
+id = 472
+startpos = 7
+name = A0BaBaGunTowerEND
+position = 5312, 7488, 0
+rotation = 32768, 0, 0
+modules = 0
+
+[structure_474]
+id = 474
+startpos = 7
+name = A0BaBaGunTowerEND
+position = 6080, 7488, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_476]
+id = 476
+startpos = 7
+name = A0BabaCornerWall
+position = 5952, 7488, 0
+rotation = 32768, 0, 0
+modules = 0
+
+[structure_477]
+id = 477
+startpos = 7
+name = A0BaBaMortarPit
+position = 4288, 7488, 0
+rotation = 32768, 0, 0
+modules = 0
+
+[structure_478]
+id = 478
+startpos = 7
+name = A0BaBaMortarPit
+position = 5568, 7360, 0
+rotation = 32768, 0, 0
+modules = 0
+
+[structure_479]
+id = 479
+startpos = 7
+name = A0BaBaMortarPit
+position = 3648, 704, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_480]
+id = 480
+startpos = 7
+name = A0BaBaBunker
+position = 2496, 1088, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_484]
+id = 484
+startpos = 1
+name = A0ResearchFacility
+position = 5504, 3200, 0
+rotation = 0, 0, 0
+modules = 1
+
+[structure_486]
+id = 486
+startpos = 1
+name = A0RepairCentre3
+position = 3904, 3776, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_487]
+id = 487
+startpos = 1
+name = WallTower02
+position = 5952, 2368, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_488]
+id = 488
+startpos = 1
+name = WallTower02
+position = 6464, 2368, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_489]
+id = 489
+startpos = 1
+name = WallTower02
+position = 6464, 2880, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_490]
+id = 490
+startpos = 1
+name = WallTower02
+position = 5952, 2880, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_491]
+id = 491
+startpos = 7
+name = A0BaBaGunTowerEND
+position = 3776, 576, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_492]
+id = 492
+startpos = 7
+name = A0BaBaGunTowerEND
+position = 2880, 448, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_493]
+id = 493
+startpos = 7
+name = A0BaBaBunker
+position = 3648, 7744, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_494]
+id = 494
+startpos = 1
+name = A0LightFactory
+position = 5056, 2496, 0
+rotation = 0, 0, 0
+modules = 2
+
+[structure_500]
+id = 500
+startpos = 1
+name = WallTower02
+position = 4416, 3264, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_501]
+id = 501
+startpos = 1
+name = Emplacement-MRL-pit
+position = 5312, 4288, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_502]
+id = 502
+startpos = 1
+name = Emplacement-MRL-pit
+position = 5184, 3648, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_503]
+id = 503
+startpos = 1
+name = Emplacement-MRL-pit
+position = 4288, 2880, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_505]
+id = 505
+startpos = 1
+name = Emplacement-MRL-pit
+position = 6464, 3264, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_506]
+id = 506
+startpos = 1
+name = A0HardcreteMk1Gate
+position = 3648, 4032, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_507]
+id = 507
+startpos = 1
+name = A0HardcreteMk1Gate
+position = 3648, 4160, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_508]
+id = 508
+startpos = 1
+name = A0HardcreteMk1Gate
+position = 3648, 4288, 0
+rotation = 16384, 0, 0
+modules = 0
+
diff --git a/wrf/cam1/sub1-d/struct.bjo b/wrf/cam1/sub1-d/struct.bjo
index 2a0521fa5a2f5cf66e37e3f8b7e056830ba71fa6..b859979cf1c7bcf283ee6e63f9c8dbbb033e8106 100644
GIT binary patch
delta 468
zcmXwzzfZzY5XbMe6icCsR3$M;2#eKV43lv%AyE>H0}c+3jwZ!eunL0<gBuRbEt=?{
zlY@(?ZXFsY2LA;91mlmWAu1B@J#n~~_dfUe-o3LY_RwY8o>SXb0YGK0cF8{QoR!_4
z>0Y<7wcNl*X0kUtmdbQ%cpYgwj-8B&sp7il8}TVJv0|u7VFKV8nPGXAd?|ssl{Wez
zQ+byF0(7M{uTm_@=x0rRfe^QYX@ESwW-V`Hb!*tmZQ4on4O9Q*{ZZ<Z)8-S|7w#Bk
zY}qFJ#wEMXdU!|Y56)HVdY{{IswBWEUetCY!PwvY9#%`Xs?#F|aEmupOJXvnYX`a{
z6XY8xcf=dIOe9DUrD_Ti;v__524GSUg{Ks%EWn5$;eiv31KiU#OCK6I0eM|PR8FEa
zYaSpaQW2iwyA}cZ!qK>sp)vsug%kZJvj8W8#5hS)GR#x_&pMw&e<^4HFW7V}&vCA#
EU!tjj^8f$<

delta 277
zcmX@}opH`PM$Y1rqEZe928Mr=4Oz7(np8|yVLUPMj|S^ECI$wF$&Lk)lV34qO}@jV
z!T4ozFOxq|YI6;<gTUl9A{vu(3^`a2h%qqS-~3THSQaG2_<gc(e);Anh8{wbMVJC6
zzhTsvtmATG@*d%e%{i_f%#(A9bU9=h7!L3;Fsz^aP&s>Zh-U)d<UK4JtY3i^9+*6l
z$$PR+gvRDO;U3~ZyBI%D&NcL(+*6>z_;a#tK{@X)kh6q<7-;R)$rtkrCL0zOGya*p
zw6L7%FVkec;xgWUAcJ^;N_ZF;woKkwn9u1T1K~ZJTv(dT#K=7Po`>J$m||THDWFPq
R28NW$h61je|5co00suH&VcGxy

diff --git a/wrf/cam1/sub1-d/struct.ini b/wrf/cam1/sub1-d/struct.ini
new file mode 100644
index 0000000..d305c01
--- /dev/null
+++ b/wrf/cam1/sub1-d/struct.ini
@@ -0,0 +1,2100 @@
+[structure_4]
+id = 4
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 5056, 5696, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_757]
+id = 757
+startpos = 1
+name = WallTower06
+position = 4416, 5696, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_34]
+id = 34
+startpos = 1
+name = WallTower06
+position = 3776, 3264, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_35]
+id = 35
+startpos = 1
+name = WallTower06
+position = 3776, 3776, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_551]
+id = 551
+startpos = 1
+name = GuardTower4
+position = 4416, 5568, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_755]
+id = 755
+startpos = 1
+name = A0HardcreteMk1CWall
+position = 4160, 5696, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_42]
+id = 42
+startpos = 1
+name = A0HardcreteMk1CWall
+position = 5184, 5696, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_44]
+id = 44
+startpos = 1
+name = WallTower06
+position = 8384, 1600, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_45]
+id = 45
+startpos = 1
+name = WallTower06
+position = 8768, 2880, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_46]
+id = 46
+startpos = 1
+name = WallTower06
+position = 7872, 1600, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_47]
+id = 47
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 8768, 2112, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_48]
+id = 48
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 8768, 2240, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_49]
+id = 49
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 8768, 2368, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_50]
+id = 50
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 8768, 2496, 0
+rotation = 49152, 0, 0
+modules = 0
+
+[structure_51]
+id = 51
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 8768, 2624, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_52]
+id = 52
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 8768, 2752, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_53]
+id = 53
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 8256, 1600, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_54]
+id = 54
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 8128, 1600, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_55]
+id = 55
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 8000, 1600, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_56]
+id = 56
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 8640, 2880, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_57]
+id = 57
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 8512, 2880, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_58]
+id = 58
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 8384, 2880, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_59]
+id = 59
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 8256, 2880, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_60]
+id = 60
+startpos = 1
+name = WallTower06
+position = 8128, 2880, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_61]
+id = 61
+startpos = 1
+name = WallTower06
+position = 7872, 2368, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_62]
+id = 62
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 7872, 1728, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_63]
+id = 63
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 7872, 1856, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_64]
+id = 64
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 7872, 1984, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_65]
+id = 65
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 7872, 2112, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_66]
+id = 66
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 7872, 2240, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_129]
+id = 129
+startpos = 1
+name = Sys-SensoTower01
+position = 3904, 6592, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_138]
+id = 138
+startpos = 1
+name = WallTower06
+position = 7744, 6208, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_139]
+id = 139
+startpos = 1
+name = WallTower06
+position = 7744, 5696, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_140]
+id = 140
+startpos = 1
+name = WallTower06
+position = 7232, 5696, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_141]
+id = 141
+startpos = 1
+name = WallTower06
+position = 7232, 6208, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_156]
+id = 156
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 8000, 2368, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_157]
+id = 157
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 8128, 2752, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_158]
+id = 158
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 8128, 2624, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_159]
+id = 159
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 8128, 2496, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_160]
+id = 160
+startpos = 1
+name = A0HardcreteMk1CWall
+position = 8128, 2368, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_162]
+id = 162
+startpos = 1
+name = A0CommandCentreNP
+position = 8320, 2560, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_266]
+id = 266
+startpos = 1
+name = Sys-SensoTower01
+position = 7616, 6336, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_554]
+id = 554
+startpos = 1
+name = GuardTower5
+position = 4288, 5568, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_268]
+id = 268
+startpos = 1
+name = PillBox1
+position = 5824, 7232, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_269]
+id = 269
+startpos = 1
+name = PillBox1
+position = 5824, 6976, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_270]
+id = 270
+startpos = 1
+name = PillBox1
+position = 6080, 7232, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_271]
+id = 271
+startpos = 1
+name = PillBox1
+position = 6080, 6976, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_280]
+id = 280
+startpos = 1
+name = PillBox1
+position = 5056, 8128, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_281]
+id = 281
+startpos = 1
+name = PillBox1
+position = 5056, 8384, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_290]
+id = 290
+startpos = 1
+name = A0LightFactory
+position = 4672, 2624, 0
+rotation = 0, 0, 0
+modules = 2
+
+[structure_292]
+id = 292
+startpos = 1
+name = A0LightFactory
+position = 5184, 2624, 0
+rotation = 0, 0, 0
+modules = 2
+
+[structure_297]
+id = 297
+startpos = 1
+name = Sys-SensoTower01
+position = 3648, 1600, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_298]
+id = 298
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 5184, 4416, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_299]
+id = 299
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 5184, 4288, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_303]
+id = 303
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 4544, 4032, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_304]
+id = 304
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 4544, 4160, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_305]
+id = 305
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 4544, 4288, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_306]
+id = 306
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 4544, 4416, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_307]
+id = 307
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 4672, 4544, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_308]
+id = 308
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 4800, 4544, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_309]
+id = 309
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 4928, 4544, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_310]
+id = 310
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 5056, 4544, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_312]
+id = 312
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 5184, 4160, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_313]
+id = 313
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 5184, 4032, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_315]
+id = 315
+startpos = 1
+name = A0HardcreteMk1CWall
+position = 5056, 3904, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_316]
+id = 316
+startpos = 1
+name = A0HardcreteMk1CWall
+position = 4672, 3904, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_321]
+id = 321
+startpos = 1
+name = A0RepairCentre3
+position = 6464, 9280, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_322]
+id = 322
+startpos = 1
+name = A0RepairCentre3
+position = 5056, 3264, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_324]
+id = 324
+startpos = 1
+name = A0CyborgFactory
+position = 8640, 2560, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_331]
+id = 331
+startpos = 1
+name = Sys-SensoTower01
+position = 3776, 14400, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_332]
+id = 332
+startpos = 1
+name = GuardTower5
+position = 4416, 14912, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_333]
+id = 333
+startpos = 1
+name = GuardTower5
+position = 4928, 14144, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_334]
+id = 334
+startpos = 1
+name = GuardTower5
+position = 5184, 13888, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_335]
+id = 335
+startpos = 1
+name = GuardTower5
+position = 4160, 13888, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_336]
+id = 336
+startpos = 1
+name = GuardTower5
+position = 4416, 13632, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_337]
+id = 337
+startpos = 1
+name = A0TankTrap
+position = 5056, 14656, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_339]
+id = 339
+startpos = 1
+name = A0TankTrap
+position = 5312, 14656, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_340]
+id = 340
+startpos = 1
+name = A0TankTrap
+position = 5440, 14656, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_342]
+id = 342
+startpos = 1
+name = A0TankTrap
+position = 4800, 14912, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_343]
+id = 343
+startpos = 1
+name = A0TankTrap
+position = 4800, 15168, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_344]
+id = 344
+startpos = 1
+name = A0TankTrap
+position = 4800, 15296, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_345]
+id = 345
+startpos = 1
+name = A0TankTrap
+position = 4800, 15424, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_346]
+id = 346
+startpos = 1
+name = A0TankTrap
+position = 4800, 15552, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_379]
+id = 379
+startpos = 1
+name = Sys-SensoTower01
+position = 2368, 8256, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_380]
+id = 380
+startpos = 1
+name = Sys-SensoTower01
+position = 2368, 10176, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_381]
+id = 381
+startpos = 1
+name = Sys-SensoTower01
+position = 2496, 12096, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_384]
+id = 384
+startpos = 1
+name = A0TankTrap
+position = 7232, 7488, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_385]
+id = 385
+startpos = 1
+name = A0TankTrap
+position = 7360, 7488, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_386]
+id = 386
+startpos = 1
+name = A0TankTrap
+position = 7488, 7488, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_387]
+id = 387
+startpos = 1
+name = A0TankTrap
+position = 8000, 6336, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_388]
+id = 388
+startpos = 1
+name = A0TankTrap
+position = 8128, 6336, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_389]
+id = 389
+startpos = 1
+name = A0TankTrap
+position = 8256, 6336, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_390]
+id = 390
+startpos = 1
+name = A0TankTrap
+position = 8384, 6336, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_391]
+id = 391
+startpos = 1
+name = A0TankTrap
+position = 4416, 13248, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_392]
+id = 392
+startpos = 1
+name = A0TankTrap
+position = 4416, 13120, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_413]
+id = 413
+startpos = 1
+name = A0CyborgFactory
+position = 4032, 4096, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_414]
+id = 414
+startpos = 1
+name = A0CyborgFactory
+position = 5696, 4352, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_446]
+id = 446
+startpos = 1
+name = A0TankTrap
+position = 2368, 3264, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_447]
+id = 447
+startpos = 1
+name = A0TankTrap
+position = 2368, 3776, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_449]
+id = 449
+startpos = 1
+name = A0TankTrap
+position = 2368, 3904, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_450]
+id = 450
+startpos = 1
+name = A0TankTrap
+position = 2368, 3392, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_462]
+id = 462
+startpos = 1
+name = A0TankTrap
+position = 2752, 5952, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_463]
+id = 463
+startpos = 1
+name = A0TankTrap
+position = 2624, 5952, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_464]
+id = 464
+startpos = 1
+name = A0TankTrap
+position = 2496, 5952, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_465]
+id = 465
+startpos = 1
+name = A0TankTrap
+position = 2368, 5952, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_760]
+id = 760
+startpos = 1
+name = WallTower06
+position = 4928, 5696, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_485]
+id = 485
+startpos = 1
+name = PillBox1
+position = 2880, 3264, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_486]
+id = 486
+startpos = 1
+name = PillBox1
+position = 2880, 3776, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_487]
+id = 487
+startpos = 1
+name = PillBox1
+position = 2496, 3392, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_488]
+id = 488
+startpos = 1
+name = PillBox1
+position = 2496, 3648, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_490]
+id = 490
+startpos = 1
+name = PillBox1
+position = 2368, 4416, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_491]
+id = 491
+startpos = 1
+name = PillBox3
+position = 2880, 4032, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_492]
+id = 492
+startpos = 1
+name = PillBox2
+position = 3136, 4032, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_493]
+id = 493
+startpos = 1
+name = PillBox2
+position = 3136, 4544, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_496]
+id = 496
+startpos = 1
+name = PillBox2
+position = 3264, 6080, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_497]
+id = 497
+startpos = 1
+name = PillBox2
+position = 3136, 3008, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_498]
+id = 498
+startpos = 1
+name = PillBox2
+position = 3392, 2240, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_499]
+id = 499
+startpos = 1
+name = PillBox2
+position = 3392, 1856, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_500]
+id = 500
+startpos = 1
+name = PillBox2
+position = 4032, 1472, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_501]
+id = 501
+startpos = 1
+name = PillBox2
+position = 4416, 1600, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_502]
+id = 502
+startpos = 1
+name = PillBox3
+position = 4416, 1344, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_503]
+id = 503
+startpos = 1
+name = PillBox3
+position = 3136, 1728, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_506]
+id = 506
+startpos = 1
+name = PillBox4
+position = 3648, 10048, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_507]
+id = 507
+startpos = 1
+name = PillBox4
+position = 3648, 10432, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_508]
+id = 508
+startpos = 1
+name = PillBox4
+position = 3776, 10048, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_509]
+id = 509
+startpos = 1
+name = PillBox4
+position = 3776, 10432, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_514]
+id = 514
+startpos = 1
+name = Sys-SensoTower01
+position = 3776, 10176, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_515]
+id = 515
+startpos = 1
+name = A0ResearchFacility
+position = 3968, 4736, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_516]
+id = 516
+startpos = 1
+name = PillBox2
+position = 5312, 8768, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_517]
+id = 517
+startpos = 1
+name = PillBox2
+position = 5952, 9408, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_518]
+id = 518
+startpos = 1
+name = GuardTower5
+position = 6080, 9152, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_519]
+id = 519
+startpos = 1
+name = GuardTower5
+position = 5824, 8768, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_520]
+id = 520
+startpos = 1
+name = GuardTower5
+position = 5312, 8512, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_532]
+id = 532
+startpos = 1
+name = A0TankTrap
+position = 5312, 1600, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_533]
+id = 533
+startpos = 1
+name = A0TankTrap
+position = 5312, 1472, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_534]
+id = 534
+startpos = 1
+name = A0TankTrap
+position = 5312, 1344, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_535]
+id = 535
+startpos = 1
+name = A0TankTrap
+position = 5312, 1216, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_536]
+id = 536
+startpos = 1
+name = GuardTower2
+position = 5568, 1472, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_537]
+id = 537
+startpos = 1
+name = GuardTower2
+position = 5824, 1344, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_538]
+id = 538
+startpos = 1
+name = PillBox4
+position = 8256, 3136, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_539]
+id = 539
+startpos = 1
+name = PillBox4
+position = 7872, 2880, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_540]
+id = 540
+startpos = 1
+name = PillBox4
+position = 8256, 3392, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_541]
+id = 541
+startpos = 1
+name = PillBox4
+position = 7616, 2880, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_545]
+id = 545
+startpos = 1
+name = GuardTower2
+position = 5056, 4032, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_546]
+id = 546
+startpos = 1
+name = GuardTower2
+position = 4672, 4032, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_552]
+id = 552
+startpos = 1
+name = GuardTower4
+position = 4928, 5568, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_553]
+id = 553
+startpos = 1
+name = GuardTower5
+position = 5056, 5568, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_756]
+id = 756
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 4288, 5696, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_556]
+id = 556
+startpos = 1
+name = A0TankTrap
+position = 5696, 10304, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_557]
+id = 557
+startpos = 1
+name = A0TankTrap
+position = 5824, 10304, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_559]
+id = 559
+startpos = 1
+name = A0TankTrap
+position = 5952, 10176, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_561]
+id = 561
+startpos = 1
+name = A0TankTrap
+position = 6592, 10304, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_563]
+id = 563
+startpos = 1
+name = A0TankTrap
+position = 6464, 10176, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_565]
+id = 565
+startpos = 1
+name = A0TankTrap
+position = 6720, 10304, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_566]
+id = 566
+startpos = 1
+name = A0TankTrap
+position = 6848, 10304, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_567]
+id = 567
+startpos = 1
+name = A0TankTrap
+position = 5696, 10176, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_568]
+id = 568
+startpos = 1
+name = A0TankTrap
+position = 5568, 10176, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_569]
+id = 569
+startpos = 1
+name = A0TankTrap
+position = 6848, 10176, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_570]
+id = 570
+startpos = 1
+name = A0TankTrap
+position = 6848, 10048, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_571]
+id = 571
+startpos = 1
+name = GuardTower6
+position = 6976, 11456, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_572]
+id = 572
+startpos = 1
+name = GuardTower6
+position = 5184, 10944, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_583]
+id = 583
+startpos = 1
+name = GuardTower4
+position = 5824, 10176, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_584]
+id = 584
+startpos = 1
+name = GuardTower4
+position = 6592, 10176, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_585]
+id = 585
+startpos = 1
+name = GuardTower5
+position = 5184, 11200, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_586]
+id = 586
+startpos = 1
+name = GuardTower5
+position = 5184, 10688, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_587]
+id = 587
+startpos = 1
+name = GuardTower5
+position = 6976, 11584, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_588]
+id = 588
+startpos = 1
+name = GuardTower5
+position = 6976, 11328, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_598]
+id = 598
+startpos = 1
+name = A0TankTrap
+position = 6976, 3392, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_599]
+id = 599
+startpos = 1
+name = A0TankTrap
+position = 6976, 3520, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_600]
+id = 600
+startpos = 1
+name = A0TankTrap
+position = 6976, 3776, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_601]
+id = 601
+startpos = 1
+name = PillBox5
+position = 6848, 3392, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_602]
+id = 602
+startpos = 1
+name = PillBox5
+position = 6848, 3776, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_603]
+id = 603
+startpos = 1
+name = GuardTower5
+position = 7104, 3392, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_604]
+id = 604
+startpos = 1
+name = GuardTower5
+position = 7104, 3776, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_605]
+id = 605
+startpos = 1
+name = GuardTower5
+position = 8384, 3136, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_606]
+id = 606
+startpos = 1
+name = GuardTower5
+position = 8384, 3392, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_607]
+id = 607
+startpos = 1
+name = GuardTower5
+position = 7872, 2624, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_608]
+id = 608
+startpos = 1
+name = GuardTower5
+position = 7616, 2624, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_609]
+id = 609
+startpos = 1
+name = PillBox4
+position = 5696, 15168, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_610]
+id = 610
+startpos = 1
+name = PillBox4
+position = 5440, 15552, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_611]
+id = 611
+startpos = 1
+name = GuardTower5
+position = 5056, 15552, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_612]
+id = 612
+startpos = 1
+name = GuardTower5
+position = 5056, 15808, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_613]
+id = 613
+startpos = 1
+name = GuardTower5
+position = 5824, 14912, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_614]
+id = 614
+startpos = 1
+name = GuardTower5
+position = 5824, 14656, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_615]
+id = 615
+startpos = 1
+name = GuardTower6
+position = 5824, 14784, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_616]
+id = 616
+startpos = 1
+name = GuardTower6
+position = 5056, 15680, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_617]
+id = 617
+startpos = 1
+name = PillBox5
+position = 5184, 14656, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_623]
+id = 623
+startpos = 1
+name = WallTower03
+position = 5184, 4544, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_624]
+id = 624
+startpos = 1
+name = WallTower03
+position = 4544, 4544, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_625]
+id = 625
+startpos = 1
+name = WallTower03
+position = 4544, 3904, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_626]
+id = 626
+startpos = 1
+name = WallTower03
+position = 5184, 3904, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_627]
+id = 627
+startpos = 1
+name = WallTower03
+position = 8768, 1984, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_628]
+id = 628
+startpos = 1
+name = GuardTower6
+position = 6720, 12352, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_629]
+id = 629
+startpos = 1
+name = GuardTower6
+position = 4544, 12096, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_630]
+id = 630
+startpos = 1
+name = GuardTower5
+position = 4672, 11968, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_631]
+id = 631
+startpos = 1
+name = GuardTower5
+position = 6848, 12224, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_632]
+id = 632
+startpos = 1
+name = PillBox5
+position = 6208, 4288, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_633]
+id = 633
+startpos = 1
+name = PillBox5
+position = 6592, 4160, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_634]
+id = 634
+startpos = 1
+name = GuardTower5
+position = 5952, 4288, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_635]
+id = 635
+startpos = 1
+name = GuardTower5
+position = 6720, 3904, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_642]
+id = 642
+startpos = 1
+name = PillBox4
+position = 5952, 10048, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_643]
+id = 643
+startpos = 1
+name = PillBox4
+position = 6464, 10048, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_644]
+id = 644
+startpos = 1
+name = PillBox4
+position = 5952, 10304, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_645]
+id = 645
+startpos = 1
+name = PillBox4
+position = 6464, 10304, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_655]
+id = 655
+startpos = 1
+name = PillBox6
+position = 4800, 7616, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_656]
+id = 656
+startpos = 1
+name = PillBox4
+position = 4416, 8000, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_657]
+id = 657
+startpos = 1
+name = PillBox4
+position = 4544, 8896, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_658]
+id = 658
+startpos = 1
+name = PillBox4
+position = 6976, 7488, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_659]
+id = 659
+startpos = 1
+name = PillBox4
+position = 4032, 3648, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_660]
+id = 660
+startpos = 1
+name = PillBox4
+position = 4032, 3392, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_661]
+id = 661
+startpos = 1
+name = A0LightFactory
+position = 8128, 1856, 0
+rotation = 0, 0, 0
+modules = 2
+
+[structure_664]
+id = 664
+startpos = 1
+name = Emplacement-MortarPit01
+position = 8128, 3648, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_665]
+id = 665
+startpos = 1
+name = Emplacement-MortarPit01
+position = 7232, 4032, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_666]
+id = 666
+startpos = 1
+name = Emplacement-MortarPit01
+position = 6976, 3136, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_667]
+id = 667
+startpos = 1
+name = Emplacement-MortarPit01
+position = 6592, 3008, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_668]
+id = 668
+startpos = 1
+name = PillBox4
+position = 8000, 3776, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_669]
+id = 669
+startpos = 1
+name = PillBox4
+position = 7488, 4032, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_672]
+id = 672
+startpos = 1
+name = A0ComDroidControl
+position = 3712, 4352, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_673]
+id = 673
+startpos = 1
+name = PillBox4
+position = 5824, 11456, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_674]
+id = 674
+startpos = 1
+name = PillBox4
+position = 6080, 11968, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_675]
+id = 675
+startpos = 1
+name = PillBox4
+position = 6464, 10688, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_728]
+id = 728
+startpos = 1
+name = A0PowerGenerator
+position = 4864, 4224, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_729]
+id = 729
+startpos = 1
+name = PillBox4
+position = 8000, 10304, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_730]
+id = 730
+startpos = 1
+name = PillBox4
+position = 8128, 10560, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_731]
+id = 731
+startpos = 1
+name = PillBox4
+position = 8000, 10816, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_732]
+id = 732
+startpos = 1
+name = PillBox4
+position = 3904, 6848, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_733]
+id = 733
+startpos = 1
+name = PillBox4
+position = 3008, 5824, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_734]
+id = 734
+startpos = 1
+name = PillBox4
+position = 3008, 6080, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_735]
+id = 735
+startpos = 1
+name = PillBox4
+position = 2880, 4544, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_736]
+id = 736
+startpos = 1
+name = PillBox4
+position = 3008, 4288, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_737]
+id = 737
+startpos = 1
+name = PillBox4
+position = 2880, 3008, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_738]
+id = 738
+startpos = 1
+name = PillBox4
+position = 3136, 2240, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_739]
+id = 739
+startpos = 1
+name = PillBox4
+position = 3648, 9792, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_740]
+id = 740
+startpos = 1
+name = PillBox4
+position = 4160, 10176, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_741]
+id = 741
+startpos = 1
+name = PillBox4
+position = 3520, 10688, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_742]
+id = 742
+startpos = 1
+name = PillBox4
+position = 3776, 10688, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_743]
+id = 743
+startpos = 1
+name = PillBox4
+position = 3264, 10304, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_761]
+id = 761
+startpos = 1
+name = PillBox1
+position = 4416, 5824, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_762]
+id = 762
+startpos = 1
+name = PillBox1
+position = 4928, 5824, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_763]
+id = 763
+startpos = 1
+name = A0HardcreteMk1Gate
+position = 4544, 5696, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_764]
+id = 764
+startpos = 1
+name = A0HardcreteMk1Gate
+position = 4672, 5696, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_765]
+id = 765
+startpos = 1
+name = A0HardcreteMk1Gate
+position = 4800, 5696, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_766]
+id = 766
+startpos = 1
+name = Emplacement-MRL-pit
+position = 4160, 5952, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_767]
+id = 767
+startpos = 1
+name = Emplacement-MRL-pit
+position = 5312, 5696, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_768]
+id = 768
+startpos = 1
+name = Emplacement-MRL-pit
+position = 3520, 3136, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_769]
+id = 769
+startpos = 1
+name = Emplacement-MRL-pit
+position = 3520, 3904, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_770]
+id = 770
+startpos = 1
+name = Emplacement-MRL-pit
+position = 4416, 4288, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_771]
+id = 771
+startpos = 1
+name = Emplacement-MRL-pit
+position = 4800, 4672, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_772]
+id = 772
+startpos = 1
+name = Emplacement-MRL-pit
+position = 1216, 10560, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_773]
+id = 773
+startpos = 1
+name = Emplacement-MRL-pit
+position = 1344, 8768, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_774]
+id = 774
+startpos = 1
+name = Emplacement-MRL-pit
+position = 1216, 5568, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_775]
+id = 775
+startpos = 1
+name = Emplacement-MRL-pit
+position = 1344, 1472, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_776]
+id = 776
+startpos = 1
+name = Emplacement-MRL-pit
+position = 2880, 12224, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_777]
+id = 777
+startpos = 1
+name = Emplacement-MRL-pit
+position = 4800, 14656, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_778]
+id = 778
+startpos = 1
+name = Emplacement-MRL-pit
+position = 8256, 10304, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_779]
+id = 779
+startpos = 1
+name = Emplacement-MRL-pit
+position = 8256, 10816, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_780]
+id = 780
+startpos = 1
+name = Emplacement-MRL-pit
+position = 7744, 1728, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_781]
+id = 781
+startpos = 1
+name = Emplacement-MRL-pit
+position = 8896, 2624, 0
+rotation = 0, 0, 0
+modules = 0
+
diff --git a/wrf/cam3/cam3-4/struct.bjo b/wrf/cam3/cam3-4/struct.bjo
new file mode 100644
index 0000000000000000000000000000000000000000..8711207ab636787952a88d2aa749162fa9540f08
GIT binary patch
literal 34332
zcmc(o3yfT46~`~7KxrxXh=2v!-O>UDMz_2bsk6I0Ozf7m+m@wNVd#!!>FiE3yG<V;
z9UehYQ2`~U7K|oF1&l8w#s>@!6CQ$CYFbK5h!R>#ORYwHH~xQj?zC*#ojK$lzTV{9
zo!R34{Gadp&iT%{=gtlcmX?l*qG;j)Q8ep<?zvr;<O&77uXl~tKUT(RjE<s>dOcs`
zz<vG)2TWMC&re2vYvo?3Uy(gX+^JF2rvJZOA-K!L$-Y-Z+(_I|dY32M%9JSDt=FNr
zUxfP}*?D3Vjg{U9^ge{0?}2;pUasB-;a1?Ds&P^jjSjf39)){ymCL%~3SsA`#Hmcy
z(3)NxQ^RoAij{5BI3kJ`=ylrl+_hpLGpjq(mG2)YmgW?f<x7c}eZH;N`^x*PdjIEO
z=hl{)y^F3IyfC+Luvl8L59}>(H^4n!dJm7HCz79snBPre#dg*n_OP?nKW|2FbJfmp
zxzgxuZJ9S%EOh32s=sQ)uUqsl*$Eoj!`HgZuZ_DE?y=#y+u$DK$!#z8onI>U_OuuK
z2TR3~;{SGW%Zk5c`N{KL>@03yuD_=}FKm9+1^WHNT|4x{G7Bl=#$9n`v9zes27W`x
z$|$i<@#4<T59D*Dg;$B(Tj(7e!FTLLug+HG6T@=<0$1_3JS{ADSB>kYx7{?qZ!*7H
zS6=gL^^-?x?^MQW|LR<a&*VzuC#~G0#LXTiw$8EZ#7rB1t=yv%F6U<#Zg++(C64%+
z*}2}rX|W04_T`h<IXTB3qSsuh>}=%DM6b?Pl}Q46aE*CcN5aiERk^9>*Qj@{xE0TH
zyOBE&uHsQGPm$^%^V^-+nSDfF#uZ{+U7B$58zH&#YusiD)oZRadOKS(t*u?XgZWHX
zYsUzC7sh39$7r136OXLi1#qcvC?53$)ca|%Du;;ebiT6c{S4eg#Z@lqajvs+FNe$g
zI&qZ?R%1fzoQ~ds0hZ9P*A+Fc)>XS+bER3&R&Gu#)>T&Ps?(F(xwJ5lpP3s;@e1@F
zC$83&M}D+NZv*a1xa4Jlx!1rwQbXrh553m)yh_}x>|AluYvq>Fdz2q{&-^ynN7pBI
zcAwt{+#BE?t)YFiSg%9v-y7koCh9f6Ry*GeSNUL8=gI2=>ixV}ar~8LVqz#e--2G%
z2+`|wZa2k+Tj45S$Tmr7K)qi`xSS`QxTgH*Hn@tt?B9^wFT+($#fxk8lV5?Wn80{M
zlDR^}{oBRmjDz2Bva@MD-vL)OQAe(6U40EZYksMHZ;P#*+Ri5K*Wsd9Tx#H4Dd*S3
zy$d@xiK{xlN8MX-!NmOrTxsP#&dOMAI=$9?v<9wnQ0@_WaIN=o?iIK4L2*^X+O5}I
zA?Ei!xSZP+gEv;OLAdwVxT<l4<o>Y6RZS-(_h)cr<BI0j$xoX0(F1U)BL(LEQe65O
zIAev>`z!QPuhST%*IX(0ktrTMn&_p*;iT8ZeGG1*HzfCQ?992{Z(UXOHpsi5fQw#n
zm*_Q@%ltOrJ_%PKxOY2nt#RQgvEn>MjY%GH;ex&;h1|k?pYBR#I!nC+BUM(OMlbVA
zLzIJFEBAMB@f(4;&tPZGEt);zf>rOc=!L5_9g_QdxSZQnX9zjJ&%x#V?8LR6>(;_$
z|H{rDdac~&#m$PFb>dpr)jGKNNvHU0<^B<_VxU(Xv~t%ccBWQHUmsVRxM1aOfXlf~
zT#t2S?Y~;9-i?^6dmACSFTz!>PtLy@BkM|IXZ1nNDHf7$mFd;rH{91P;>LA;aXsqZ
zR_<1~s>h<&himJv+ku_OYG^Nc#06{KJry6R+GIt(qdS?1H1liao&dMWk!$QLm?kc@
zSU0^!?#XbQ9l6H3N(*+@TCS+aZk&UkjQeETNkxa-wR?Xy1HI~TgX`h1toIk%YI;@Y
zKhHt0_1xZ$Uh2T=q4dZ@t=uy>v(pze#mCOAEw;YCGsP`4RDW*svNL;WW^e!EITv5D
zcO?yd^-(e7d_m_)kNf+voekV`;c~uGEDXv0n7GtcsPlW=-?!>L4=%$=uXX><z|O=$
zopY{sSXWl=$I+^@Gdba_o?LqR>YQ`h&?_cvSG^6m?QqGv#dh+~d+U>J`CQ)!g@%i;
zv+jq!D}8QtxHI9BhbkV8_L*Ok-VW@1YLy$(&a-NI)x!~zdof(%{=30tO`kqA9@O4-
zV(0z9{S;izSAq4;hO3x>e|DeWI(F`YtMv?bjKe;%)>Y<+o7Md?;;%<uX64R>E1v<^
zqyB8=&cn{+DNcHa<YjgI<Rx&4N7_qQILz-5Zk=`2op9O1?%X<hFJ*qoy>;LDrNo)&
zC_m(SN6-JhH7~2foe!6sAu#tc><oL1Bzn(p9lZ<S>inG52pNAbM{ASV%8}gr8S3c0
z0&cUonqPNroqd#p%lUaq6m3mbvD<pC!@UwNeFft3Y%Es@?n1coSLDATxjhM&etr+G
zH7;BYmwrOUh2;+W*UDWCS8Ew=IUu(nF8!0-KMJY04=!~TaXs`}>pA_{`F$GV(mU$9
zkLviVB6{%~+QS~}c}U!^!(9SbOrF_r;_6mTrn8V6=*wj~dk3o~eB0L&b{3O+lOFXe
zYh831dKG)=Wemw(4p(~Ndeo7u&r7aI>`d<MrnhnVIa-<MWq#2+Un?M0JTlh#uSw>&
zwysih-+G>`6MwHwxNdefazB^YIW%__T*g$Vb!F6BhDklvk8A4tx?WuBz??T+_HTCv
zKiRRgFxcB#8sr(XVZG%I=q3I-oi`L0Oxzpc5`V?@$oG@@+ujyi`)%Q1&kt_K&f;cO
zTk$w=Sh=^rRs6+obUDQRggbA}#WOSQZ9Gf3N8*qdx58CCs`)GaF_oV*&hMAtl6Px<
zXFKS%uB+SNN+4XGF;A`67#F?@SLf$SlZfJ`jtfTa?c&D!SNB6b`ebD1s=p!@O^?kt
z?3X*>N^4f%3(0?xa$T9YcVg$sVta9yE-dI{PG;xh4@eqTYW%~y#4F3jWj!~sMn6eA
zzwO0hp|^ig18*gkxN)D%_$d0OgPpD1yRozM(zh9sdrzX58s+MMdcT$E_2OFlzP^p#
zL#k_<&l}-NvyZI#{=MiW9_jl-RcsLMedtv@;;geVAou=+i><c=<o*ad!<MZ*>ao`O
z{V`lEB)Gc*>ir2^@=)#He>=oqtKOg1xbjyXef8FJ-2*i{tL`0get!;^d_mtsavu~g
z&W~_X0q6G@a25Bn>dV~~ko#-wteOh>!Ycvy(QnYJ8X@;$J>sBsA3X$DO!5T}ZoH2S
z{Z|jem5sgZY~>RF&>Ncj2wbgY_U~g3>&mM4QMmfNk*spF=K^vcgDZc9y+itq#}mEu
zaCp=ito!J<;%1vPoVeEf_eu1^*6^^imHTwU^_pKR_ZhUxS7p_obAUr!uyUV8FMh+R
zFUY#Co<pyCC@Shh_LyHQ_YdgRT88V<XKp=Tt%XZmQ0(_O*IDQHdF-rp<rN35+;!-6
z<XY{#zBa#_<A=4hxYFdIR_+Guto|$FZ@<I-wQ^rTuVNteXSaTD!{>W%L@(!9^?uzM
zQ16RyRnMW8lwecMuXR0d!p>sG{<*rWf^av(rG6#0ra8XStY@pAd>K2_*Vi0H-*cE>
zEB8-uo2uLg19D%%&TthMx&v}wMKArLn%}<#<ZeN)v}QFzuB)wZ*+))X?cZv>y}{?#
zy@s6=Zer%N``5(X2A96vz<OVY%l`G|HuyY>?Qq2m&D{Z)xZtGM>aTW+8~f+OqUgI-
z_nc~7S-F3O+bqqx=Y5j{ch5d*aKG&D*jYBtDhRC!$bGZM)pr*zwH(9qq5lw%`K_of
z>hj#Nk^4`$nqM!j^*s46xT-zVr&>E;g*b2g2d>V}Xx^GQ=rmmG-!b{GxWwPAa$t|T
zij}(?F7YTZcNDdDxXQgl>OBxHej_k<G+gpBaXtEEtn+&i+zH|J9t@ZDEWIU{ePsK)
z9%JBY!<MzKJ^Y5XZ}V`tP4XLxgA0V7uaU-YSh+{QRsQSs+(hD^8~$CbW8jX}IMnAk
z+}4&)<VrmYOZmZk$KvT1<p%RI;4s&*H9I@SK`Zw-xEk~`c&sZccOpzBM)X3xl-MK9
zy0UU7p;vQDT=3{awsM=`Qh!z*DWsj7;Yur?AN%KkcAi}0DmILA@sqZFbiBB6T~u6;
z=gX|~I|c4I4SnAzJE!)ON&jTNr(RcX6itPz=S1j{_2^fr)$1B@Pe}CgIYpm!m|rXR
zM7Z*i_^clU<emgq4vM~@?+4^ggNvUWufJIukbAPY^aFF2T@a9a3S8{0obbAU+%w>6
zZpq6$`;Z&$qYU$_UQwR&@;E<R_tA&YOTM6-urHvUKMa?1ySV&K6E02nkn0^jXB|IB
z(8$g$*jaIqbNi%#-05(om1p>81>~NFotwl}56AArx*_a*I$ZUu@HcW^4ygA`xD4eC
zA@}cDViNc1-|)Qe+-N<YjaHo{@f$M&+W8!~AJ9-9>XZNKGax&PJ#`)-h*$5q(#RRs
z>+cS?w%EAO6MLnVXC{5l?KbW@aVz_Q`vQ6u14G++6I|A__R(qwe`THD&DeQAa9@K<
zoltsx>V&p+wGBJ#Y!#aOI$Y{zf%R_3&aR*1YP0hj=pCz}Gv&sB>v<=7UAeW-fs~V8
zTF8&&r_YkFDl-(1Jo;qze*R>A?%6Pv4~FKRQ{(Dv7gFy>YIYXar+#Hy&)*T3+?Vr}
S$MZ*4|9q+rt#Kae#Qi_8zZ2L1

literal 0
HcmV?d00001

diff --git a/wrf/cam3/cam3-4/struct.ini b/wrf/cam3/cam3-4/struct.ini
new file mode 100644
index 0000000..6a6df81
--- /dev/null
+++ b/wrf/cam3/cam3-4/struct.ini
@@ -0,0 +1,2144 @@
+[structure_13]
+id = 13
+startpos = 3
+name = NEXUSWall
+position = 3008, 1216, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_70]
+id = 70
+startpos = 3
+name = NEXUSWall
+position = 1344, 9664, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_119]
+id = 119
+startpos = 3
+name = NEXUSWall
+position = 4416, 9536, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_120]
+id = 120
+startpos = 3
+name = NEXUSWall
+position = 4416, 9408, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_139]
+id = 139
+startpos = 3
+name = NEXUSWall
+position = 4160, 7872, 0
+rotation = 32768, 0, 0
+modules = 0
+
+[structure_158]
+id = 158
+startpos = 3
+name = NEXUSWall
+position = 1600, 7872, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_192]
+id = 192
+startpos = 3
+name = NEXUSWall
+position = 11328, 10304, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_194]
+id = 194
+startpos = 3
+name = NEXUSWall
+position = 10816, 10304, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_202]
+id = 202
+startpos = 3
+name = NEXUSWall
+position = 8896, 4544, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_210]
+id = 210
+startpos = 3
+name = NEXUSWall
+position = 8256, 3904, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_215]
+id = 215
+startpos = 3
+name = Sys-NX-SensorTower
+position = 5056, 4544, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_216]
+id = 216
+startpos = 3
+name = A0LightFactory
+position = 9152, 3648, 0
+rotation = 0, 0, 0
+modules = 2
+
+[structure_220]
+id = 220
+startpos = 3
+name = NEXUSWall
+position = 8256, 4160, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_221]
+id = 221
+startpos = 3
+name = NEXUSWall
+position = 8640, 4544, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_231]
+id = 231
+startpos = 3
+name = A0VtolPad
+position = 6720, 11328, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_232]
+id = 232
+startpos = 3
+name = A0VtolPad
+position = 7232, 11328, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_234]
+id = 234
+startpos = 3
+name = A0VtolPad
+position = 6976, 11328, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_236]
+id = 236
+startpos = 3
+name = A0ComDroidControl
+position = 1408, 10368, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_237]
+id = 237
+startpos = 3
+name = A0CommandCentreNE
+position = 896, 11520, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_238]
+id = 238
+startpos = 3
+name = A0CyborgFactory
+position = 704, 11136, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_239]
+id = 239
+startpos = 3
+name = A0ResearchFacility
+position = 1152, 10112, 0
+rotation = 0, 0, 0
+modules = 1
+
+[structure_240]
+id = 240
+startpos = 3
+name = A0ResearchFacility
+position = 1664, 10624, 0
+rotation = 0, 0, 0
+modules = 1
+
+[structure_241]
+id = 241
+startpos = 3
+name = A0ResearchFacility
+position = 1664, 10112, 0
+rotation = 0, 0, 0
+modules = 1
+
+[structure_246]
+id = 246
+startpos = 3
+name = A0CyborgFactory
+position = 960, 11136, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_278]
+id = 278
+startpos = 3
+name = NEXUSWall
+position = 2752, 9280, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_279]
+id = 279
+startpos = 3
+name = NEXUSWall
+position = 3136, 9664, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_280]
+id = 280
+startpos = 3
+name = NEXUSWall
+position = 3136, 9536, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_331]
+id = 331
+startpos = 3
+name = NX-WallTower-Rail2
+position = 4288, 7872, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_332]
+id = 332
+startpos = 3
+name = NX-WallTower-Rail2
+position = 4416, 8128, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_333]
+id = 333
+startpos = 3
+name = NEXUSWall
+position = 4416, 8256, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_341]
+id = 341
+startpos = 3
+name = NX-WallTower-Rail2
+position = 1728, 7872, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_342]
+id = 342
+startpos = 3
+name = NX-WallTower-Rail2
+position = 1472, 7872, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_344]
+id = 344
+startpos = 3
+name = NX-WallTower-Rail2
+position = 4416, 9664, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_345]
+id = 345
+startpos = 3
+name = NX-WallTower-Rail2
+position = 4416, 9280, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_346]
+id = 346
+startpos = 3
+name = NX-WallTower-Rail2
+position = 4416, 8512, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_347]
+id = 347
+startpos = 3
+name = P0-AASite-SAM2
+position = 2112, 9792, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_348]
+id = 348
+startpos = 3
+name = P0-AASite-SAM2
+position = 2880, 10176, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_349]
+id = 349
+startpos = 3
+name = P0-AASite-SAM2
+position = 1984, 10304, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_350]
+id = 350
+startpos = 3
+name = P0-AASite-SAM2
+position = 2496, 10816, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_351]
+id = 351
+startpos = 3
+name = P0-AASite-SAM2
+position = 2240, 10816, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_352]
+id = 352
+startpos = 3
+name = NX-Tower-ATMiss
+position = 2240, 9792, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_353]
+id = 353
+startpos = 3
+name = NX-Tower-ATMiss
+position = 2880, 10048, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_377]
+id = 377
+startpos = 3
+name = NX-Tower-PulseLas
+position = 7616, 10304, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_378]
+id = 378
+startpos = 3
+name = NX-Tower-PulseLas
+position = 6848, 10304, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_379]
+id = 379
+startpos = 3
+name = NX-Tower-PulseLas
+position = 5824, 10688, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_383]
+id = 383
+startpos = 3
+name = P0-AASite-SAM2
+position = 7488, 10432, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_384]
+id = 384
+startpos = 3
+name = P0-AASite-SAM2
+position = 6080, 10432, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_385]
+id = 385
+startpos = 3
+name = NX-Tower-ATMiss
+position = 5824, 10304, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_386]
+id = 386
+startpos = 3
+name = NX-Tower-ATMiss
+position = 6336, 10176, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_387]
+id = 387
+startpos = 3
+name = NX-Tower-ATMiss
+position = 7872, 10432, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_390]
+id = 390
+startpos = 3
+name = NX-Tower-ATMiss
+position = 1216, 8000, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_391]
+id = 391
+startpos = 3
+name = NX-Tower-ATMiss
+position = 2112, 7744, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_392]
+id = 392
+startpos = 3
+name = NX-Tower-ATMiss
+position = 4032, 8000, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_393]
+id = 393
+startpos = 3
+name = NX-Tower-ATMiss
+position = 4288, 8256, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_394]
+id = 394
+startpos = 3
+name = NX-Tower-ATMiss
+position = 4288, 9664, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_397]
+id = 397
+startpos = 3
+name = NX-WallTower-Rail2
+position = 10944, 10304, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_398]
+id = 398
+startpos = 3
+name = NX-WallTower-Rail2
+position = 11200, 10304, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_399]
+id = 399
+startpos = 3
+name = P0-AASite-SAM2
+position = 10688, 10688, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_401]
+id = 401
+startpos = 3
+name = NX-Tower-ATMiss
+position = 10816, 10432, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_402]
+id = 402
+startpos = 3
+name = NX-Tower-ATMiss
+position = 11328, 10432, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_404]
+id = 404
+startpos = 3
+name = NX-WallTower-Rail2
+position = 11200, 9152, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_405]
+id = 405
+startpos = 3
+name = NX-WallTower-Rail2
+position = 11456, 9152, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_406]
+id = 406
+startpos = 3
+name = NX-WallTower-Rail2
+position = 8256, 3776, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_408]
+id = 408
+startpos = 3
+name = NX-WallTower-Rail2
+position = 9024, 4544, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_412]
+id = 412
+startpos = 3
+name = P0-AASite-SAM2
+position = 9280, 4160, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_426]
+id = 426
+startpos = 3
+name = Sys-NX-SensorTower
+position = 6592, 3136, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_427]
+id = 427
+startpos = 3
+name = NX-WallTower-Rail2
+position = 3008, 1088, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_428]
+id = 428
+startpos = 3
+name = NX-WallTower-Rail2
+position = 3008, 1344, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_429]
+id = 429
+startpos = 3
+name = NX-WallTower-Rail2
+position = 3008, 1600, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_435]
+id = 435
+startpos = 3
+name = NX-WallTower-Rail2
+position = 1216, 3264, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_436]
+id = 436
+startpos = 3
+name = NX-WallTower-Rail2
+position = 1472, 3264, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_442]
+id = 442
+startpos = 3
+name = NX-WallTower-Rail2
+position = 1344, 2112, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_443]
+id = 443
+startpos = 3
+name = NX-WallTower-Rail2
+position = 1728, 1728, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_450]
+id = 450
+startpos = 3
+name = NX-Tower-ATMiss
+position = 1344, 1984, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_451]
+id = 451
+startpos = 3
+name = NX-Tower-ATMiss
+position = 1600, 1728, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_452]
+id = 452
+startpos = 3
+name = NX-Tower-ATMiss
+position = 1216, 3136, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_456]
+id = 456
+startpos = 3
+name = NX-Tower-PulseLas
+position = 1728, 3264, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_457]
+id = 457
+startpos = 3
+name = NX-Tower-PulseLas
+position = 960, 3264, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_458]
+id = 458
+startpos = 3
+name = Sys-NX-SensorTower
+position = 2112, 3392, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_459]
+id = 459
+startpos = 3
+name = Emplacement-PrisLas
+position = 1216, 3392, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_460]
+id = 460
+startpos = 3
+name = Emplacement-PrisLas
+position = 1472, 3392, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_461]
+id = 461
+startpos = 3
+name = Emplacement-PrisLas
+position = 3136, 1216, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_462]
+id = 462
+startpos = 3
+name = Emplacement-PrisLas
+position = 3264, 1728, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_463]
+id = 463
+startpos = 3
+name = Emplacement-PrisLas
+position = 10944, 10176, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_464]
+id = 464
+startpos = 3
+name = Emplacement-PrisLas
+position = 11200, 10176, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_466]
+id = 466
+startpos = 3
+name = P0-AASite-SAM2
+position = 960, 1728, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_467]
+id = 467
+startpos = 3
+name = P0-AASite-SAM2
+position = 832, 1600, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_468]
+id = 468
+startpos = 3
+name = Emplacement-PrisLas
+position = 1600, 2240, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_469]
+id = 469
+startpos = 3
+name = Emplacement-PrisLas
+position = 1856, 1984, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_471]
+id = 471
+startpos = 3
+name = Emplacement-PrisLas
+position = 832, 6080, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_472]
+id = 472
+startpos = 3
+name = Emplacement-PrisLas
+position = 1088, 6080, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_722]
+id = 722
+startpos = 3
+name = A0LightFactory
+position = 1088, 2496, 0
+rotation = 0, 0, 0
+modules = 2
+
+[structure_731]
+id = 731
+startpos = 3
+name = A0LightFactory
+position = 10304, 10816, 0
+rotation = 0, 0, 0
+modules = 2
+
+[structure_743]
+id = 743
+startpos = 3
+name = A0VTolFactory1
+position = 7616, 10816, 0
+rotation = 0, 0, 0
+modules = 2
+
+[structure_744]
+id = 744
+startpos = 3
+name = A0VTolFactory1
+position = 6336, 10816, 0
+rotation = 0, 0, 0
+modules = 2
+
+[structure_749]
+id = 749
+startpos = 3
+name = A0LightFactory
+position = 2624, 1856, 0
+rotation = 0, 0, 0
+modules = 2
+
+[structure_805]
+id = 805
+startpos = 3
+name = NX-WallTower-Rail2
+position = 8128, 1728, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_806]
+id = 806
+startpos = 3
+name = NX-WallTower-Rail2
+position = 8384, 1728, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_809]
+id = 809
+startpos = 3
+name = NEXUSWall
+position = 8000, 1728, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_810]
+id = 810
+startpos = 3
+name = NEXUSWall
+position = 8512, 1728, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_816]
+id = 816
+startpos = 3
+name = NX-WallTower-Rail2
+position = 10944, 7104, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_830]
+id = 830
+startpos = 3
+name = NEXUSCWall
+position = 11584, 7104, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_834]
+id = 834
+startpos = 3
+name = NX-Tower-ATMiss
+position = 10944, 7872, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_835]
+id = 835
+startpos = 3
+name = Sys-NX-SensorTower
+position = 11072, 7232, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1076]
+id = 1076
+startpos = 3
+name = Sys-NX-SensorTower
+position = 4160, 9408, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1077]
+id = 1077
+startpos = 3
+name = A0ResearchFacility
+position = 1152, 10624, 0
+rotation = 0, 0, 0
+modules = 1
+
+[structure_1082]
+id = 1082
+startpos = 3
+name = Sys-NEXUSLinkTOW
+position = 1472, 10048, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1083]
+id = 1083
+startpos = 3
+name = Sys-NEXUSLinkTOW
+position = 1728, 10432, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1084]
+id = 1084
+startpos = 3
+name = Sys-NEXUSLinkTOW
+position = 1344, 10688, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1085]
+id = 1085
+startpos = 3
+name = Sys-NEXUSLinkTOW
+position = 1088, 10304, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1086]
+id = 1086
+startpos = 3
+name = NX-Tower-ATMiss
+position = 2752, 2368, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1087]
+id = 1087
+startpos = 3
+name = NX-Tower-ATMiss
+position = 2112, 3136, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1090]
+id = 1090
+startpos = 3
+name = NX-Tower-Rail1
+position = 3264, 2112, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1091]
+id = 1091
+startpos = 3
+name = NX-Tower-Rail1
+position = 1472, 3136, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1095]
+id = 1095
+startpos = 3
+name = NX-WallTower-BeamLas
+position = 3904, 7872, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1100]
+id = 1100
+startpos = 3
+name = NX-WallTower-BeamLas
+position = 11072, 7104, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1101]
+id = 1101
+startpos = 3
+name = NX-WallTower-BeamLas
+position = 11456, 7104, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1102]
+id = 1102
+startpos = 3
+name = NX-WallTower-BeamLas
+position = 11072, 7616, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1103]
+id = 1103
+startpos = 3
+name = NX-WallTower-BeamLas
+position = 11584, 7616, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1104]
+id = 1104
+startpos = 3
+name = NX-WallTower-Rail3
+position = 11712, 7616, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1105]
+id = 1105
+startpos = 3
+name = NX-WallTower-Rail3
+position = 10944, 7616, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1106]
+id = 1106
+startpos = 3
+name = NX-WallTower-Rail3
+position = 10688, 10304, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1107]
+id = 1107
+startpos = 3
+name = NX-WallTower-Rail3
+position = 11456, 10304, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1108]
+id = 1108
+startpos = 3
+name = P0-AASite-SAM2
+position = 6464, 10432, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1109]
+id = 1109
+startpos = 3
+name = P0-AASite-SAM2
+position = 6976, 10432, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1110]
+id = 1110
+startpos = 3
+name = P0-AASite-SAM2
+position = 8128, 10432, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1111]
+id = 1111
+startpos = 3
+name = NX-WallTower-BeamLas
+position = 3264, 11584, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1112]
+id = 1112
+startpos = 3
+name = NX-WallTower-Rail3
+position = 3264, 11712, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1113]
+id = 1113
+startpos = 3
+name = NX-WallTower-BeamLas
+position = 576, 4416, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1114]
+id = 1114
+startpos = 3
+name = NX-WallTower-BeamLas
+position = 832, 4416, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1115]
+id = 1115
+startpos = 3
+name = NX-WallTower-BeamLas
+position = 1216, 2112, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1116]
+id = 1116
+startpos = 3
+name = NX-WallTower-BeamLas
+position = 1728, 1600, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1119]
+id = 1119
+startpos = 3
+name = NX-WallTower-BeamLas
+position = 8256, 4288, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1120]
+id = 1120
+startpos = 3
+name = NX-WallTower-BeamLas
+position = 8512, 4544, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1121]
+id = 1121
+startpos = 3
+name = NX-WallTower-Rail3
+position = 2624, 9280, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1122]
+id = 1122
+startpos = 3
+name = NX-WallTower-Rail3
+position = 2880, 9280, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1123]
+id = 1123
+startpos = 3
+name = NX-WallTower-Rail3
+position = 3136, 9408, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1124]
+id = 1124
+startpos = 3
+name = NX-WallTower-Rail3
+position = 3136, 9792, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1130]
+id = 1130
+startpos = 3
+name = P0-AASite-SAM2
+position = 3904, 10304, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1131]
+id = 1131
+startpos = 3
+name = P0-AASite-SAM2
+position = 4416, 10304, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1132]
+id = 1132
+startpos = 3
+name = P0-AASite-SAM2
+position = 4032, 10176, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1133]
+id = 1133
+startpos = 3
+name = P0-AASite-SAM2
+position = 4288, 10176, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1134]
+id = 1134
+startpos = 3
+name = Sys-NX-SensorTower
+position = 4672, 10048, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1135]
+id = 1135
+startpos = 3
+name = NX-WallTower-BeamLas
+position = 2752, 2880, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1136]
+id = 1136
+startpos = 3
+name = NX-WallTower-BeamLas
+position = 3008, 2496, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1138]
+id = 1138
+startpos = 3
+name = NX-Emp-Plasma-Pit
+position = 2368, 11200, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1143]
+id = 1143
+startpos = 3
+name = NEXUSCWall
+position = 2240, 11328, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1144]
+id = 1144
+startpos = 3
+name = NEXUSCWall
+position = 2496, 11328, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1145]
+id = 1145
+startpos = 3
+name = NEXUSWall
+position = 2368, 11072, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1146]
+id = 1146
+startpos = 3
+name = NEXUSWall
+position = 2496, 11200, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_1147]
+id = 1147
+startpos = 3
+name = NEXUSWall
+position = 2240, 11200, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_1148]
+id = 1148
+startpos = 3
+name = NX-WallTower-Rail3
+position = 2240, 11072, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1149]
+id = 1149
+startpos = 3
+name = NX-WallTower-Rail3
+position = 2496, 11072, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1151]
+id = 1151
+startpos = 3
+name = NX-WallTower-Rail3
+position = 1216, 9664, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1152]
+id = 1152
+startpos = 3
+name = NX-WallTower-Rail3
+position = 1472, 9664, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1153]
+id = 1153
+startpos = 3
+name = NX-Tower-ATMiss
+position = 1344, 9792, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1154]
+id = 1154
+startpos = 3
+name = NX-Emp-MultiArtMiss-Pit
+position = 4032, 10432, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1155]
+id = 1155
+startpos = 3
+name = NX-Emp-MultiArtMiss-Pit
+position = 4288, 10432, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1158]
+id = 1158
+startpos = 3
+name = Sys-NX-CBTower
+position = 4160, 10560, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1160]
+id = 1160
+startpos = 3
+name = Sys-NX-CBTower
+position = 2624, 11200, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1161]
+id = 1161
+startpos = 3
+name = Sys-NX-VTOL-CB-Tow
+position = 2112, 11200, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1164]
+id = 1164
+startpos = 3
+name = NX-Emp-MultiArtMiss-Pit
+position = 576, 10304, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1165]
+id = 1165
+startpos = 3
+name = NX-Emp-MultiArtMiss-Pit
+position = 832, 10304, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1168]
+id = 1168
+startpos = 3
+name = NEXUSWall
+position = 4416, 8384, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_1169]
+id = 1169
+startpos = 3
+name = NEXUSWall
+position = 4032, 7872, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1170]
+id = 1170
+startpos = 3
+name = NX-Tower-Rail1
+position = 8384, 1088, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1171]
+id = 1171
+startpos = 3
+name = NX-Tower-Rail1
+position = 8768, 1216, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1174]
+id = 1174
+startpos = 3
+name = NuclearReactor
+position = 7808, 3712, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_1180]
+id = 1180
+startpos = 3
+name = CoolingTower
+position = 7616, 3392, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1181]
+id = 1181
+startpos = 3
+name = CoolingTower
+position = 7744, 3392, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1182]
+id = 1182
+startpos = 3
+name = CoolingTower
+position = 7616, 3264, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1183]
+id = 1183
+startpos = 3
+name = CoolingTower
+position = 7744, 3264, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1185]
+id = 1185
+startpos = 3
+name = A0LightFactory
+position = 1984, 8768, 0
+rotation = 0, 0, 0
+modules = 2
+
+[structure_1194]
+id = 1194
+startpos = 3
+name = P0-AASite-SAM2
+position = 2624, 1216, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1195]
+id = 1195
+startpos = 3
+name = P0-AASite-SAM2
+position = 2240, 1344, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1196]
+id = 1196
+startpos = 3
+name = P0-AASite-SAM2
+position = 2240, 1984, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1199]
+id = 1199
+startpos = 3
+name = P0-AASite-SAM2
+position = 1088, 2752, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1200]
+id = 1200
+startpos = 3
+name = P0-AASite-SAM2
+position = 832, 2752, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1201]
+id = 1201
+startpos = 3
+name = P0-AASite-SAM2
+position = 2368, 3136, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1202]
+id = 1202
+startpos = 3
+name = P0-AASite-SAM2
+position = 2368, 3392, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1204]
+id = 1204
+startpos = 3
+name = Sys-NX-CBTower
+position = 832, 1728, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1205]
+id = 1205
+startpos = 3
+name = P0-AASite-SAM2
+position = 1344, 1088, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1206]
+id = 1206
+startpos = 3
+name = P0-AASite-SAM2
+position = 1472, 960, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1208]
+id = 1208
+startpos = 3
+name = P0-AASite-SAM2
+position = 8896, 5952, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1212]
+id = 1212
+startpos = 3
+name = P0-AASite-SAM2
+position = 11328, 10560, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1213]
+id = 1213
+startpos = 3
+name = P0-AASite-SAM2
+position = 10176, 11456, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1214]
+id = 1214
+startpos = 3
+name = P0-AASite-SAM2
+position = 11456, 11200, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1215]
+id = 1215
+startpos = 3
+name = Sys-NEXUSLinkTOW
+position = 10688, 10560, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1216]
+id = 1216
+startpos = 3
+name = Sys-NEXUSLinkTOW
+position = 11456, 10560, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1217]
+id = 1217
+startpos = 3
+name = Sys-NEXUSLinkTOW
+position = 6080, 1088, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1218]
+id = 1218
+startpos = 3
+name = Sys-NEXUSLinkTOW
+position = 5824, 576, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1219]
+id = 1219
+startpos = 3
+name = Sys-NEXUSLinkTOW
+position = 1472, 1216, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1220]
+id = 1220
+startpos = 3
+name = P0-AASite-SAM2
+position = 5824, 10944, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1221]
+id = 1221
+startpos = 3
+name = P0-AASite-SAM2
+position = 8256, 10816, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1225]
+id = 1225
+startpos = 3
+name = NX-Emp-MultiArtMiss-Pit
+position = 1216, 1088, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1227]
+id = 1227
+startpos = 3
+name = NX-Emp-MultiArtMiss-Pit
+position = 1216, 1216, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1229]
+id = 1229
+startpos = 3
+name = NX-Emp-MultiArtMiss-Pit
+position = 11072, 7488, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1230]
+id = 1230
+startpos = 3
+name = NX-Emp-MultiArtMiss-Pit
+position = 11456, 7488, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1232]
+id = 1232
+startpos = 3
+name = P0-AASite-SAM2
+position = 11584, 7360, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1233]
+id = 1233
+startpos = 3
+name = P0-AASite-SAM2
+position = 10944, 7360, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1234]
+id = 1234
+startpos = 3
+name = Sys-NX-CBTower
+position = 10688, 8768, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1235]
+id = 1235
+startpos = 3
+name = NX-Emp-MultiArtMiss-Pit
+position = 11072, 11200, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1236]
+id = 1236
+startpos = 3
+name = NX-Emp-MultiArtMiss-Pit
+position = 11200, 11200, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1239]
+id = 1239
+startpos = 3
+name = Sys-NX-CBTower
+position = 10944, 10944, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1240]
+id = 1240
+startpos = 3
+name = Sys-NX-CBTower
+position = 6976, 10560, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1241]
+id = 1241
+startpos = 3
+name = Sys-NX-CBTower
+position = 704, 10432, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1242]
+id = 1242
+startpos = 3
+name = Sys-NX-SensorTower
+position = 8768, 8000, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1243]
+id = 1243
+startpos = 3
+name = Sys-NX-CBTower
+position = 7744, 7616, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1244]
+id = 1244
+startpos = 3
+name = NX-Emp-MultiArtMiss-Pit
+position = 7616, 7488, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1245]
+id = 1245
+startpos = 3
+name = NX-Emp-MultiArtMiss-Pit
+position = 7872, 7488, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1248]
+id = 1248
+startpos = 3
+name = P0-AASite-SAM2
+position = 8000, 8640, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1250]
+id = 1250
+startpos = 3
+name = P0-AASite-SAM2
+position = 8256, 8640, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1252]
+id = 1252
+startpos = 3
+name = P0-AASite-SAM2
+position = 8384, 7360, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1254]
+id = 1254
+startpos = 3
+name = P0-AASite-SAM2
+position = 6464, 7616, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1255]
+id = 1255
+startpos = 3
+name = P0-AASite-SAM2
+position = 7360, 7232, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1256]
+id = 1256
+startpos = 3
+name = P0-AASite-SAM2
+position = 7616, 7232, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1257]
+id = 1257
+startpos = 3
+name = NX-Tower-ATMiss
+position = 7488, 7232, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1258]
+id = 1258
+startpos = 3
+name = NX-Tower-ATMiss
+position = 6976, 7360, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1259]
+id = 1259
+startpos = 3
+name = NX-Tower-ATMiss
+position = 8000, 7360, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1260]
+id = 1260
+startpos = 3
+name = NX-Tower-PulseLas
+position = 7232, 7360, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1261]
+id = 1261
+startpos = 3
+name = NX-Tower-PulseLas
+position = 7744, 7360, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1263]
+id = 1263
+startpos = 3
+name = P0-AASite-SAM2
+position = 7872, 3136, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1266]
+id = 1266
+startpos = 3
+name = P0-AASite-SAM2
+position = 8640, 3904, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1269]
+id = 1269
+startpos = 3
+name = NX-Tower-Rail1
+position = 7232, 832, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1270]
+id = 1270
+startpos = 3
+name = NX-Tower-Rail1
+position = 7232, 1088, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1271]
+id = 1271
+startpos = 3
+name = NEXUSCWall
+position = 7872, 1728, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1272]
+id = 1272
+startpos = 3
+name = NEXUSCWall
+position = 8640, 1728, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1273]
+id = 1273
+startpos = 3
+name = Sys-NX-CBTower
+position = 3520, 9408, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1275]
+id = 1275
+startpos = 3
+name = P0-AASite-SAM2
+position = 10688, 8640, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1276]
+id = 1276
+startpos = 3
+name = A0VtolPad
+position = 6464, 11328, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1278]
+id = 1278
+startpos = 3
+name = A0VtolPad
+position = 7488, 11328, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1282]
+id = 1282
+startpos = 3
+name = A0VtolPad
+position = 7488, 11584, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1283]
+id = 1283
+startpos = 3
+name = A0VtolPad
+position = 7232, 11584, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1284]
+id = 1284
+startpos = 3
+name = A0VtolPad
+position = 6976, 11584, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1285]
+id = 1285
+startpos = 3
+name = A0VtolPad
+position = 6720, 11584, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1286]
+id = 1286
+startpos = 3
+name = A0VtolPad
+position = 6464, 11584, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1288]
+id = 1288
+startpos = 3
+name = A0CyborgFactory
+position = 832, 1152, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1294]
+id = 1294
+startpos = 3
+name = NEXUSWall
+position = 8256, 4032, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_1295]
+id = 1295
+startpos = 3
+name = NEXUSWall
+position = 8768, 4544, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1307]
+id = 1307
+startpos = 3
+name = Sys-NX-SensorTower
+position = 2624, 2368, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1308]
+id = 1308
+startpos = 3
+name = A0HardcreteMk1Gate
+position = 8256, 1728, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1309]
+id = 1309
+startpos = 3
+name = A0HardcreteMk1Gate
+position = 1344, 3264, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1310]
+id = 1310
+startpos = 3
+name = A0HardcreteMk1Gate
+position = 704, 4416, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1311]
+id = 1311
+startpos = 3
+name = A0HardcreteMk1Gate
+position = 2368, 11328, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1312]
+id = 1312
+startpos = 3
+name = A0HardcreteMk1Gate
+position = 11072, 10304, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1313]
+id = 1313
+startpos = 3
+name = A0HardcreteMk1Gate
+position = 11328, 9152, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1314]
+id = 1314
+startpos = 3
+name = A0HardcreteMk1Gate
+position = 11328, 7104, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1315]
+id = 1315
+startpos = 3
+name = A0HardcreteMk1Gate
+position = 11200, 7104, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1316]
+id = 1316
+startpos = 3
+name = A0HardcreteMk1Gate
+position = 3008, 1472, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_1317]
+id = 1317
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 4800, 4288, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1318]
+id = 1318
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 3008, 1856, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1319]
+id = 1319
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 1728, 1344, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1320]
+id = 1320
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 960, 1984, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1321]
+id = 1321
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 704, 3392, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1322]
+id = 1322
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 2112, 7488, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1323]
+id = 1323
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 832, 7872, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1332]
+id = 1332
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 1856, 9408, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1325]
+id = 1325
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 3776, 10048, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1326]
+id = 1326
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 7232, 10560, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1327]
+id = 1327
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 6720, 10560, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1328]
+id = 1328
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 11456, 11584, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1329]
+id = 1329
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 10688, 8128, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1330]
+id = 1330
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 8256, 5824, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1331]
+id = 1331
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 5952, 6848, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1333]
+id = 1333
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 1344, 8768, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1334]
+id = 1334
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 3008, 10816, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1335]
+id = 1335
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 10304, 10048, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1336]
+id = 1336
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 5440, 1088, 0
+rotation = 0, 0, 0
+modules = 0
+
diff --git a/wrf/cam3/cam3b/struct.bjo b/wrf/cam3/cam3b/struct.bjo
index 51f2eca2f11a1a5239dbcc0a757e2dcb922c9fe7..3437b362161200b24262832dc40d9cbd67239910 100644
GIT binary patch
delta 169
zcmcbTa3qPdxTL6*gMon|b7G_RMw0~^lYKNb7^5erYK2b@(NtiJnOv%QeDWV%4c;g=
z1_lS9$^+~S4DOQ+8J#EVXlwAs0Ywi;1F;wb1J~q(?9L$lobe!0Mj)OXtNole7Nip>
z?;y^=aAb3!jxpn89$k&ee>4I>G;0J%da|ITH^>^s$jNJU{lSh%n0!~ue{+f614aP8
CKQBxG

delta 143
zcmX?-bR~haxTL6*gMon|ePW~bMw0~^lX-MCCa=*AnCzpe!5BHYRP#8P6*2j*M)>4C
zS_-^@Yzzzsn1EQAfx%|-Mh>^h@;a)VK~PbL$+6ncc|(9a2bh}8fjY*FlWnwgCok0V
c2GSb5(I9D{r3cs<7~CftGP-U~)4#_E01tX6A^-pY

diff --git a/wrf/cam3/cam3b/struct.ini b/wrf/cam3/cam3b/struct.ini
new file mode 100644
index 0000000..c28588f
--- /dev/null
+++ b/wrf/cam3/cam3b/struct.ini
@@ -0,0 +1,830 @@
+[structure_124]
+id = 124
+startpos = 3
+name = NEXUSWall
+position = 1088, 5696, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_125]
+id = 125
+startpos = 3
+name = NEXUSWall
+position = 576, 5696, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_126]
+id = 126
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 1984, 3264, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_127]
+id = 127
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 1472, 3264, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_128]
+id = 128
+startpos = 1
+name = A0HardcreteMk1CWall
+position = 704, 832, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_129]
+id = 129
+startpos = 1
+name = A0HardcreteMk1CWall
+position = 2752, 576, 0
+rotation = 49152, 0, 0
+modules = 0
+
+[structure_130]
+id = 130
+startpos = 1
+name = A0RepairCentre3
+position = 1344, 2624, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_131]
+id = 131
+startpos = 1
+name = A0RepairCentre3
+position = 2112, 2624, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_132]
+id = 132
+startpos = 1
+name = A0ComDroidControl
+position = 2432, 768, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_133]
+id = 133
+startpos = 1
+name = A0CommandCentre
+position = 2048, 1152, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_134]
+id = 134
+startpos = 1
+name = A0CyborgFactory
+position = 1472, 1024, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_136]
+id = 136
+startpos = 1
+name = A0ResearchFacility
+position = 2432, 1152, 0
+rotation = 0, 0, 0
+modules = 1
+
+[structure_137]
+id = 137
+startpos = 1
+name = A0PowerGenerator
+position = 2048, 768, 0
+rotation = 0, 0, 0
+modules = 1
+
+[structure_141]
+id = 141
+startpos = 1
+name = A0ResourceExtractor
+position = 1728, 704, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_284]
+id = 284
+startpos = 3
+name = P0-AASite-SAM1
+position = 4928, 3136, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_285]
+id = 285
+startpos = 3
+name = P0-AASite-SAM1
+position = 5440, 3136, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_286]
+id = 286
+startpos = 3
+name = P0-AASite-SAM1
+position = 6208, 7488, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_287]
+id = 287
+startpos = 3
+name = P0-AASite-SAM1
+position = 6464, 7616, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_292]
+id = 292
+startpos = 3
+name = NX-Tower-ATMiss
+position = 6720, 5312, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_293]
+id = 293
+startpos = 3
+name = NX-Tower-ATMiss
+position = 5952, 5312, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_301]
+id = 301
+startpos = 1
+name = GuardTower-BeamLas
+position = 1088, 3136, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_302]
+id = 302
+startpos = 1
+name = GuardTower-BeamLas
+position = 2368, 3136, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_305]
+id = 305
+startpos = 1
+name = AASite-QuadBof
+position = 832, 2368, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_306]
+id = 306
+startpos = 1
+name = AASite-QuadBof
+position = 2752, 2240, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_315]
+id = 315
+startpos = 1
+name = Sys-NEXUSLinkTOW
+position = 2112, 1472, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_316]
+id = 316
+startpos = 1
+name = Sys-NEXUSLinkTOW
+position = 1472, 1472, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_324]
+id = 324
+startpos = 3
+name = NX-Tower-ATMiss
+position = 1088, 5824, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_325]
+id = 325
+startpos = 3
+name = NX-Tower-ATMiss
+position = 576, 5824, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_430]
+id = 430
+startpos = 1
+name = A0LightFactory
+position = 1088, 960, 0
+rotation = 0, 0, 0
+modules = 2
+
+[structure_454]
+id = 454
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 704, 1344, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_455]
+id = 455
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 704, 1472, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_456]
+id = 456
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 704, 1088, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_457]
+id = 457
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 704, 960, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_458]
+id = 458
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 832, 1600, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_459]
+id = 459
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 960, 1600, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_461]
+id = 461
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 1216, 1600, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_462]
+id = 462
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 1344, 1600, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_463]
+id = 463
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 1472, 1600, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_464]
+id = 464
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 2112, 1600, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_465]
+id = 465
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 2240, 1600, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_467]
+id = 467
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 2496, 1600, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_468]
+id = 468
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 2624, 1600, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_469]
+id = 469
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 2752, 1472, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_470]
+id = 470
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 2752, 1344, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_471]
+id = 471
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 2752, 1216, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_472]
+id = 472
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 2752, 960, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_473]
+id = 473
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 2752, 832, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_474]
+id = 474
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 2752, 704, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_476]
+id = 476
+startpos = 1
+name = Sys-NEXUSLinkTOW
+position = 2368, 2624, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_941]
+id = 941
+startpos = 1
+name = Wall-RotMg
+position = 1088, 1600, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_960]
+id = 960
+startpos = 3
+name = NX-WallTower-Rail2
+position = 6080, 5056, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_961]
+id = 961
+startpos = 3
+name = NX-WallTower-Rail2
+position = 6592, 4928, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1099]
+id = 1099
+startpos = 3
+name = NX-WallTower-Rail2
+position = 704, 5696, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1100]
+id = 1100
+startpos = 3
+name = NX-WallTower-Rail2
+position = 960, 5696, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1127]
+id = 1127
+startpos = 3
+name = Sys-NX-SensorTower
+position = 7104, 5568, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1130]
+id = 1130
+startpos = 1
+name = WallTower04
+position = 704, 1600, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1131]
+id = 1131
+startpos = 1
+name = WallTower04
+position = 2752, 1600, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1132]
+id = 1132
+startpos = 1
+name = WallTower06
+position = 1600, 1600, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1133]
+id = 1133
+startpos = 1
+name = WallTower06
+position = 1984, 1600, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1134]
+id = 1134
+startpos = 1
+name = WallTower06
+position = 1856, 3264, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1135]
+id = 1135
+startpos = 1
+name = WallTower06
+position = 1600, 3264, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1136]
+id = 1136
+startpos = 1
+name = Wall-RotMg
+position = 2368, 1600, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1137]
+id = 1137
+startpos = 1
+name = WallTower06
+position = 2752, 1088, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1138]
+id = 1138
+startpos = 1
+name = A0HardcreteMk1Wall
+wall/type = 0
+position = 704, 1216, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_1139]
+id = 1139
+startpos = 1
+name = Pillbox-RotMG
+position = 1472, 3520, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1140]
+id = 1140
+startpos = 1
+name = Pillbox-RotMG
+position = 1984, 3520, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1141]
+id = 1141
+startpos = 1
+name = WallTower-Projector
+position = 2112, 3008, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1142]
+id = 1142
+startpos = 1
+name = WallTower-Projector
+position = 1344, 3008, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1143]
+id = 1143
+startpos = 1
+name = Sys-NEXUSLinkTOW
+position = 1088, 2368, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1149]
+id = 1149
+startpos = 1
+name = Sys-CB-Tower01
+position = 832, 1088, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1150]
+id = 1150
+startpos = 1
+name = Sys-CB-Tower01
+position = 1472, 2496, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1152]
+id = 1152
+startpos = 1
+name = Emplacement-RotMor
+position = 960, 1344, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1153]
+id = 1153
+startpos = 1
+name = Emplacement-RotMor
+position = 1088, 1344, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1154]
+id = 1154
+startpos = 1
+name = Emplacement-RotMor
+position = 1216, 1344, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1155]
+id = 1155
+startpos = 1
+name = Emplacement-RotMor
+position = 1344, 1344, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1156]
+id = 1156
+startpos = 1
+name = Sys-SensoTower02
+position = 832, 1344, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1168]
+id = 1168
+startpos = 3
+name = P0-AASite-SAM1
+position = 6720, 7488, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1169]
+id = 1169
+startpos = 3
+name = P0-AASite-SAM1
+position = 6976, 7616, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1180]
+id = 1180
+startpos = 3
+name = A0CommandCentreNE
+position = 768, 6912, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1181]
+id = 1181
+startpos = 3
+name = NX-WallTower-BeamLas
+position = 6464, 6336, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1182]
+id = 1182
+startpos = 3
+name = NX-WallTower-BeamLas
+position = 5952, 6336, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1183]
+id = 1183
+startpos = 3
+name = P0-AASite-SAM1
+position = 1344, 6848, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1184]
+id = 1184
+startpos = 3
+name = P0-AASite-SAM1
+position = 1344, 6464, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1195]
+id = 1195
+startpos = 1
+name = AASite-QuadRotMg
+position = 1472, 2880, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1196]
+id = 1196
+startpos = 1
+name = AASite-QuadRotMg
+position = 1984, 2880, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1197]
+id = 1197
+startpos = 1
+name = AASite-QuadRotMg
+position = 2112, 1728, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1200]
+id = 1200
+startpos = 1
+name = AASite-QuadRotMg
+position = 832, 1856, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1627]
+id = 1627
+startpos = 3
+name = NX-Emp-MultiArtMiss-Pit
+position = 6208, 1600, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1628]
+id = 1628
+startpos = 3
+name = NX-Emp-MultiArtMiss-Pit
+position = 6464, 1600, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1615]
+id = 1615
+startpos = 3
+name = Sys-NX-CBTower
+position = 6336, 1472, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1626]
+id = 1626
+startpos = 1
+name = Emplacement-RotHow
+position = 2112, 1984, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1630]
+id = 1630
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 7104, 5824, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1631]
+id = 1631
+startpos = 3
+name = NX-Emp-MultiArtMiss-Pit
+position = 448, 5056, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1619]
+id = 1619
+startpos = 3
+name = Sys-NX-CBTower
+position = 576, 4928, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1629]
+id = 1629
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 5696, 5952, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1621]
+id = 1621
+startpos = 1
+name = A0HardcreteMk1Gate
+position = 1728, 1600, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1622]
+id = 1622
+startpos = 1
+name = A0HardcreteMk1Gate
+position = 1856, 1600, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1623]
+id = 1623
+startpos = 1
+name = A0HardcreteMk1Gate
+position = 1728, 3264, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1624]
+id = 1624
+startpos = 3
+name = A0HardcreteMk1Gate
+position = 832, 5696, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1625]
+id = 1625
+startpos = 1
+name = Emplacement-RotHow
+position = 2368, 1984, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1632]
+id = 1632
+startpos = 3
+name = NX-Emp-MultiArtMiss-Pit
+position = 704, 5056, 0
+rotation = 0, 0, 0
+modules = 0
+
diff --git a/wrf/cam3/cam3c/struct.bjo b/wrf/cam3/cam3c/struct.bjo
index 3e7f91c20d6201704b2a4293903df2c8dc55cbb1..c66df4cd90d8ca5e30a2257cf215957198c2534f 100644
GIT binary patch
delta 221
zcmX>zm+{P8#tmnzcwN{S7!HU7aRdW{%H)G4*^^zYD|nrOq7Je^9LB(KdGbODx6S-E
zU)d+?cxo`(PCn~d&T9u!zz@VB3=Cb94H=y$_n2sGmT_IlG+EbEozZ&oU5|2B8<3*O
z4?Vmm*O+p!l;)IVPUbU};k5@@DGbC>3=Etg!zb69vcjbq9VY9#gu}VKjvzziAgb*!
VRC75&r5&Os^ZDg%-s2^}0s#ErJPQB-

delta 218
zcmX>zm+{P8#tmnzct5f*FdPtPU~q_HV6d2c&?I}Zi**I>XOO4_P&9^t!2l$>*~I1o
z`{Wu^4MyY1p`PKBc}x`;O(x&<@SogcqOn=VbtMy*V{m3ks%~IuV#;Ji9a&LpHlTJO
zJ`l^m(80(628@#@3fZ75v;ir?qR@77or@Zy?c}%a<*arf!zO=pFJ`o#tm{(F3o_V&
YABaO37`i4KGCEJ@@z&V9$4h_(0Ivr+5C8xG

diff --git a/wrf/cam3/cam3c/struct.ini b/wrf/cam3/cam3c/struct.ini
new file mode 100644
index 0000000..0d3016f
--- /dev/null
+++ b/wrf/cam3/cam3c/struct.ini
@@ -0,0 +1,1272 @@
+[structure_481]
+id = 481
+startpos = 3
+name = NEXUSWall
+position = 3776, 17856, 0
+rotation = 32768, 0, 0
+modules = 0
+
+[structure_482]
+id = 482
+startpos = 3
+name = NEXUSWall
+position = 4288, 17216, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_483]
+id = 483
+startpos = 3
+name = NEXUSWall
+position = 4288, 17088, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_484]
+id = 484
+startpos = 3
+name = NEXUSWall
+position = 4288, 17728, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_488]
+id = 488
+startpos = 3
+name = NEXUSWall
+position = 4160, 17856, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_490]
+id = 490
+startpos = 3
+name = NEXUSWall
+position = 4288, 17344, 0
+rotation = 49152, 0, 0
+modules = 0
+
+[structure_491]
+id = 491
+startpos = 3
+name = NEXUSWall
+position = 4288, 17600, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_492]
+id = 492
+startpos = 3
+name = NEXUSWall
+position = 3904, 17856, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_493]
+id = 493
+startpos = 3
+name = NEXUSWall
+position = 4032, 17856, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_494]
+id = 494
+startpos = 3
+name = NEXUSWall
+position = 3392, 21568, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_495]
+id = 495
+startpos = 3
+name = NEXUSWall
+position = 3904, 21312, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_496]
+id = 496
+startpos = 3
+name = NEXUSWall
+position = 3904, 21184, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_497]
+id = 497
+startpos = 3
+name = NEXUSWall
+position = 4032, 21056, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_498]
+id = 498
+startpos = 3
+name = NEXUSWall
+position = 4160, 21056, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_499]
+id = 499
+startpos = 3
+name = NEXUSWall
+position = 4288, 21056, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_501]
+id = 501
+startpos = 3
+name = NEXUSWall
+position = 4544, 21056, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_502]
+id = 502
+startpos = 3
+name = NEXUSWall
+position = 5056, 21184, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_503]
+id = 503
+startpos = 3
+name = NEXUSWall
+position = 5056, 21312, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_504]
+id = 504
+startpos = 3
+name = NEXUSWall
+position = 5056, 21440, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_505]
+id = 505
+startpos = 3
+name = NEXUSWall
+position = 5056, 21696, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_506]
+id = 506
+startpos = 3
+name = NEXUSWall
+position = 5056, 21824, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_507]
+id = 507
+startpos = 3
+name = NEXUSWall
+position = 5056, 21952, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_508]
+id = 508
+startpos = 3
+name = NEXUSWall
+position = 3520, 21696, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_509]
+id = 509
+startpos = 3
+name = NEXUSWall
+position = 3648, 21696, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_510]
+id = 510
+startpos = 3
+name = NEXUSWall
+position = 3776, 21696, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_511]
+id = 511
+startpos = 3
+name = NEXUSWall
+position = 3904, 21824, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_512]
+id = 512
+startpos = 3
+name = NEXUSWall
+position = 4032, 22080, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_513]
+id = 513
+startpos = 3
+name = NEXUSWall
+position = 4160, 22080, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_514]
+id = 514
+startpos = 3
+name = NEXUSWall
+position = 4288, 22080, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_515]
+id = 515
+startpos = 3
+name = NEXUSWall
+position = 4544, 22080, 0
+rotation = 32768, 0, 0
+modules = 0
+
+[structure_516]
+id = 516
+startpos = 3
+name = NEXUSWall
+position = 4672, 22080, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_517]
+id = 517
+startpos = 3
+name = NEXUSWall
+position = 4800, 22080, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_518]
+id = 518
+startpos = 3
+name = NEXUSWall
+position = 4928, 22080, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_519]
+id = 519
+startpos = 3
+name = NEXUSWall
+position = 4672, 21056, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_520]
+id = 520
+startpos = 3
+name = NEXUSWall
+position = 4800, 21056, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_521]
+id = 521
+startpos = 3
+name = NEXUSWall
+position = 4928, 21056, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_523]
+id = 523
+startpos = 3
+name = Sys-NX-SensorTower
+position = 5312, 20544, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_524]
+id = 524
+startpos = 3
+name = A0LightFactory
+position = 7360, 22848, 0
+rotation = 0, 0, 0
+modules = 2
+
+[structure_527]
+id = 527
+startpos = 3
+name = NEXUSWall
+position = 6336, 22208, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_528]
+id = 528
+startpos = 3
+name = NEXUSWall
+position = 6848, 22208, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_529]
+id = 529
+startpos = 3
+name = A0CyborgFactory
+position = 7104, 23296, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_542]
+id = 542
+startpos = 3
+name = A0VTolFactory1
+position = 4416, 21824, 0
+rotation = 0, 0, 0
+modules = 1
+
+[structure_543]
+id = 543
+startpos = 3
+name = A0VtolPad
+position = 4416, 21184, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_545]
+id = 545
+startpos = 3
+name = NX-WallTower-Rail2
+position = 3392, 21696, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_548]
+id = 548
+startpos = 3
+name = NX-WallTower-Rail2
+position = 3904, 21056, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_549]
+id = 549
+startpos = 3
+name = NX-WallTower-Rail2
+position = 5056, 22080, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_553]
+id = 553
+startpos = 3
+name = NX-WallTower-Rail2
+position = 3264, 17216, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_557]
+id = 557
+startpos = 3
+name = NX-WallTower-Rail2
+position = 3264, 17856, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_558]
+id = 558
+startpos = 3
+name = NX-WallTower-Rail2
+position = 3648, 17856, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_686]
+id = 686
+startpos = 3
+name = NX-Tower-ATMiss
+position = 4416, 22848, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_690]
+id = 690
+startpos = 3
+name = A0CyborgFactory
+position = 3776, 17024, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_726]
+id = 726
+startpos = 3
+name = NX-WallTower-Rail2
+position = 4288, 17856, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_730]
+id = 730
+startpos = 3
+name = NX-Tower-ATMiss
+position = 3904, 18752, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_731]
+id = 731
+startpos = 3
+name = NX-Tower-ATMiss
+position = 4672, 20416, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_775]
+id = 775
+startpos = 3
+name = NEXUSWall
+position = 4288, 16960, 0
+rotation = 49152, 0, 0
+modules = 0
+
+[structure_776]
+id = 776
+startpos = 3
+name = NEXUSWall
+position = 4288, 16832, 0
+rotation = 49152, 0, 0
+modules = 0
+
+[structure_830]
+id = 830
+startpos = 3
+name = NX-WallTower-Rail2
+position = 4288, 16704, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_833]
+id = 833
+startpos = 3
+name = Sys-NX-SensorTower
+position = 4032, 17216, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_834]
+id = 834
+startpos = 3
+name = Sys-NX-SensorTower
+position = 4672, 21696, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_836]
+id = 836
+startpos = 3
+name = NEXUSWall
+position = 3904, 21952, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_840]
+id = 840
+startpos = 1
+name = Tower-Projector
+position = 960, 22336, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_841]
+id = 841
+startpos = 1
+name = Tower-Projector
+position = 704, 22336, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_847]
+id = 847
+startpos = 1
+name = A0PowerGenerator
+position = 1280, 23680, 0
+rotation = 0, 0, 0
+modules = 1
+
+[structure_850]
+id = 850
+startpos = 1
+name = A0ResourceExtractor
+position = 1472, 23616, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_851]
+id = 851
+startpos = 1
+name = A0ResourceExtractor
+position = 1728, 23616, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_962]
+id = 962
+startpos = 3
+name = NX-WallTower-Rail2
+position = 3264, 16704, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_964]
+id = 964
+startpos = 3
+name = NX-WallTower-Rail2
+position = 4288, 17472, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_965]
+id = 965
+startpos = 3
+name = NX-WallTower-Rail3
+position = 6464, 22208, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_966]
+id = 966
+startpos = 3
+name = NX-WallTower-Rail3
+position = 6720, 22208, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1110]
+id = 1110
+startpos = 3
+name = NX-Tower-ATMiss
+position = 6336, 22336, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1111]
+id = 1111
+startpos = 3
+name = NX-Tower-ATMiss
+position = 6848, 22336, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1112]
+id = 1112
+startpos = 3
+name = NX-Tower-ATMiss
+position = 5824, 22208, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1113]
+id = 1113
+startpos = 3
+name = NX-Tower-ATMiss
+position = 5696, 22592, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1114]
+id = 1114
+startpos = 3
+name = NX-Tower-Rail1
+position = 4800, 22464, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1116]
+id = 1116
+startpos = 3
+name = NX-WallTower-BeamLas
+position = 3904, 21440, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1203]
+id = 1203
+startpos = 1
+name = A0ResourceExtractor
+position = 960, 23232, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1205]
+id = 1205
+startpos = 1
+name = A0ResourceExtractor
+position = 960, 23488, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1206]
+id = 1206
+startpos = 1
+name = A0LightFactory
+position = 1344, 22720, 0
+rotation = 0, 0, 0
+modules = 2
+
+[structure_1209]
+id = 1209
+startpos = 1
+name = A0ResearchFacility
+position = 1280, 23296, 0
+rotation = 0, 0, 0
+modules = 1
+
+[structure_1211]
+id = 1211
+startpos = 1
+name = A0VTolFactory1
+position = 1856, 22720, 0
+rotation = 0, 0, 0
+modules = 1
+
+[structure_1213]
+id = 1213
+startpos = 1
+name = A0CyborgFactory
+position = 2240, 23552, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1214]
+id = 1214
+startpos = 1
+name = A0VtolPad
+position = 1984, 23360, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1215]
+id = 1215
+startpos = 1
+name = A0VtolPad
+position = 1728, 23360, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1216]
+id = 1216
+startpos = 1
+name = A0VtolPad
+position = 1984, 23104, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1217]
+id = 1217
+startpos = 1
+name = A0VtolPad
+position = 1728, 23104, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1220]
+id = 1220
+startpos = 1
+name = Sys-SensoTower02
+position = 2112, 22080, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1221]
+id = 1221
+startpos = 1
+name = Emplacement-RotMor
+position = 2496, 23744, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1223]
+id = 1223
+startpos = 1
+name = Emplacement-RotMor
+position = 2368, 23488, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1224]
+id = 1224
+startpos = 1
+name = Emplacement-RotMor
+position = 1472, 23744, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1225]
+id = 1225
+startpos = 1
+name = Emplacement-RotMor
+position = 1600, 23744, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1226]
+id = 1226
+startpos = 1
+name = Emplacement-RotMor
+position = 1728, 23744, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1227]
+id = 1227
+startpos = 1
+name = Emplacement-RotMor
+position = 1728, 22464, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1228]
+id = 1228
+startpos = 1
+name = Emplacement-RotMor
+position = 1856, 22464, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1229]
+id = 1229
+startpos = 1
+name = Sys-CB-Tower01
+position = 2240, 23232, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1230]
+id = 1230
+startpos = 1
+name = Wall-RotMg
+position = 704, 22208, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1231]
+id = 1231
+startpos = 1
+name = Wall-RotMg
+position = 960, 22208, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1232]
+id = 1232
+startpos = 3
+name = P0-AASite-SAM2
+position = 5184, 20416, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1233]
+id = 1233
+startpos = 3
+name = P0-AASite-SAM2
+position = 5184, 20672, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1234]
+id = 1234
+startpos = 3
+name = P0-AASite-SAM2
+position = 5440, 20416, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1235]
+id = 1235
+startpos = 3
+name = P0-AASite-SAM2
+position = 5440, 20672, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1236]
+id = 1236
+startpos = 3
+name = NX-WallTower-Rail2
+position = 4416, 22080, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1237]
+id = 1237
+startpos = 3
+name = NX-WallTower-Rail2
+position = 4416, 21056, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1238]
+id = 1238
+startpos = 3
+name = NX-WallTower-Rail2
+position = 5056, 21568, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1239]
+id = 1239
+startpos = 3
+name = NX-WallTower-Rail2
+position = 5056, 21056, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1240]
+id = 1240
+startpos = 3
+name = NX-WallTower-Rail2
+position = 3904, 22080, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1241]
+id = 1241
+startpos = 3
+name = NX-WallTower-Rail2
+position = 3392, 21440, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1242]
+id = 1242
+startpos = 3
+name = NX-WallTower-BeamLas
+position = 3904, 21696, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1243]
+id = 1243
+startpos = 3
+name = A0VtolPad
+position = 4160, 21440, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1244]
+id = 1244
+startpos = 3
+name = A0VtolPad
+position = 4416, 21440, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1245]
+id = 1245
+startpos = 3
+name = A0VtolPad
+position = 4160, 21184, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1246]
+id = 1246
+startpos = 3
+name = A0VtolPad
+position = 4672, 21184, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1247]
+id = 1247
+startpos = 3
+name = A0VtolPad
+position = 4672, 21440, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1248]
+id = 1248
+startpos = 3
+name = Sys-NX-VTOL-CB-Tow
+position = 4928, 21568, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1249]
+id = 1249
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 4928, 21184, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1250]
+id = 1250
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 4928, 21952, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1251]
+id = 1251
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 4032, 21952, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1252]
+id = 1252
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 4032, 21184, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1253]
+id = 1253
+startpos = 3
+name = P0-AASite-SAM2
+position = 4032, 22336, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1254]
+id = 1254
+startpos = 3
+name = P0-AASite-SAM2
+position = 4288, 22336, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1255]
+id = 1255
+startpos = 3
+name = P0-AASite-SAM2
+position = 3648, 21952, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1256]
+id = 1256
+startpos = 3
+name = A0CommandCentreNE
+position = 6784, 23552, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1258]
+id = 1258
+startpos = 3
+name = A0ResourceExtractor
+position = 7616, 23232, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1260]
+id = 1260
+startpos = 3
+name = A0ResourceExtractor
+position = 6464, 23104, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1261]
+id = 1261
+startpos = 3
+name = A0PowerGenerator
+position = 6784, 22912, 0
+rotation = 0, 0, 0
+modules = 1
+
+[structure_1264]
+id = 1264
+startpos = 3
+name = Sys-NX-SensorTower
+position = 5952, 22720, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1604]
+id = 1604
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 6080, 22720, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1266]
+id = 1266
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 6208, 23360, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1603]
+id = 1603
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 7488, 22080, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1268]
+id = 1268
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 6976, 23616, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1270]
+id = 1270
+startpos = 3
+name = Sys-NX-CBTower
+position = 6720, 23104, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1271]
+id = 1271
+startpos = 3
+name = Sys-NX-CBTower
+position = 7488, 23104, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1272]
+id = 1272
+startpos = 3
+name = P0-AASite-SAM2
+position = 7616, 22464, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1273]
+id = 1273
+startpos = 3
+name = P0-AASite-SAM2
+position = 7744, 22848, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1274]
+id = 1274
+startpos = 3
+name = P0-AASite-SAM2
+position = 7360, 23872, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1275]
+id = 1275
+startpos = 3
+name = NEXUSWall
+position = 3264, 17728, 0
+rotation = 49152, 0, 0
+modules = 0
+
+[structure_1276]
+id = 1276
+startpos = 3
+name = NEXUSWall
+position = 3264, 17600, 0
+rotation = 49152, 0, 0
+modules = 0
+
+[structure_1277]
+id = 1277
+startpos = 3
+name = NEXUSWall
+position = 3264, 17472, 0
+rotation = 49152, 0, 0
+modules = 0
+
+[structure_1278]
+id = 1278
+startpos = 3
+name = NEXUSWall
+position = 3264, 17344, 0
+rotation = 49152, 0, 0
+modules = 0
+
+[structure_1279]
+id = 1279
+startpos = 3
+name = NEXUSWall
+position = 3264, 17088, 0
+rotation = 49152, 0, 0
+modules = 0
+
+[structure_1280]
+id = 1280
+startpos = 3
+name = NEXUSWall
+position = 3264, 16960, 0
+rotation = 49152, 0, 0
+modules = 0
+
+[structure_1281]
+id = 1281
+startpos = 3
+name = NEXUSWall
+position = 3264, 16832, 0
+rotation = 49152, 0, 0
+modules = 0
+
+[structure_1282]
+id = 1282
+startpos = 3
+name = P0-AASite-SAM2
+position = 4032, 16832, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1284]
+id = 1284
+startpos = 3
+name = P0-AASite-SAM2
+position = 4032, 17472, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1286]
+id = 1286
+startpos = 3
+name = P0-AASite-SAM2
+position = 3520, 16832, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1287]
+id = 1287
+startpos = 3
+name = P0-AASite-SAM2
+position = 3520, 17472, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1597]
+id = 1597
+startpos = 3
+name = A0HardcreteMk1Gate
+position = 6592, 22208, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1598]
+id = 1598
+startpos = 3
+name = A0HardcreteMk1Gate
+position = 3904, 21568, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_1589]
+id = 1589
+startpos = 3
+name = Sys-NX-VTOL-CB-Tow
+position = 5056, 23360, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1590]
+id = 1590
+startpos = 3
+name = Sys-NX-SensorTower
+position = 4928, 23360, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1591]
+id = 1591
+startpos = 3
+name = Sys-NEXUSLinkTOW
+position = 7104, 22592, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1592]
+id = 1592
+startpos = 3
+name = Sys-NEXUSLinkTOW
+position = 6336, 22720, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1593]
+id = 1593
+startpos = 1
+name = WallTower-HvATrocket
+position = 576, 22208, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1594]
+id = 1594
+startpos = 1
+name = WallTower-HvATrocket
+position = 1088, 22208, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1595]
+id = 1595
+startpos = 3
+name = A0HardcreteMk1Gate
+position = 3520, 17856, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1596]
+id = 1596
+startpos = 3
+name = A0HardcreteMk1Gate
+position = 3392, 17856, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1599]
+id = 1599
+startpos = 3
+name = NX-Emp-MultiArtMiss-Pit
+position = 5056, 23232, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1600]
+id = 1600
+startpos = 3
+name = NX-Emp-MultiArtMiss-Pit
+position = 4928, 23232, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1601]
+id = 1601
+startpos = 3
+name = NX-Emp-MultiArtMiss-Pit
+position = 7744, 23232, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1602]
+id = 1602
+startpos = 3
+name = NX-Emp-MultiArtMiss-Pit
+position = 7744, 23104, 0
+rotation = 0, 0, 0
+modules = 0
+
diff --git a/wrf/cam3/cam3d/struct.bjo b/wrf/cam3/cam3d/struct.bjo
new file mode 100644
index 0000000000000000000000000000000000000000..fa9a675e35aad3f007a890a704cffcda85a482fe
GIT binary patch
literal 16332
zcmc(m>u(fQ7{(9YK|}?)$W7u0V<aofMGdHNhoxM!Eel;r<F(V>p<TMW1GBTxA`zm-
zs4=1@#{a@U!Hm~0sPPh&L_hdhjUP-*{A7Hd?M&^q-JO^4_H>d%+sURsp7*@xy_|E}
z2!rM=#+cVJ`iC+_|Ew2eoMK<4(ZHMepW*9_iS9HeS2E_;B~zcde%42qtiLepP3Iq_
z+!1hd_|KA?JT|x`>Rmp?eJlp6a0|_9!|QcBS-MQ_(go0)!u4q9TlKhwY{qd0DxsGd
zaQe0<GdK5ZmE6r3Wn=zT@GB{|9&@8nyWEi6O&Ak8+=0nP25V`+t2g|hwUX!Bm~Y-D
zm;PMS;ZCpL6u-Je?#=LN-!AuEa#vzhjrlG%iH-I99=VK@r<A!V@%eplBdp)(tTEqf
z>P_K(K)ox#4UGBLBKITey&Gf1n13|6DgGQ$??wz)$DgI^_hag1+!(gY{e*fMpOxaI
zRPU$cLT`litC1I^+|Ls3X}jFd<N1xw*yVna=zY;H_fP7*9dkUQ!<FWvrAPv;JUDL5
z*B0Z(GIEz;C~=+aV9~GccT1rkOm?ZS)_@yvj?WqMszQC`WRH3czZsOgo{2DM;bSYd
zf7w9pjTqprP~i@SezoADOziq>B$uOU%sUpjo50N70B)$mo%ZLH{Cf|%H-S5;W9MmZ
zN*>%o8&fap*p&))mU8bU7yTgPq>f+Z{aVefm-Ajd47~oH4&L<uxMmdw{CU`--mRS9
z)fmvbOOu=8R~d5GPH~G0Tqg@V?+g4&Iq$>JKGOQU&x7DzL|u0g{;XkVCtKk5#sRPH
z1ukOcyimN{M($ns2L7zWmBq>Jv@`sQ{h*^@=jnBnGQT^?U59mqe5BDIIoaOI=vWvh
zq)t{gW;eO4+tH_J*jd`|9|Jd{-t%_3gXF@mY;%v3y9NVwolQFrkxPG8vU7jW(6NEz
zZnaaqNIcC0mvNGLP(!bjdxClwfjdgQoL|d&$EbG^xD|4_jx6gvNjoDC+UAavi+IJl
zo&NkZ938LPo~zt%clwKmup3+Cu58=ynfZfHF8z5%ofD^}>5nZ0_Y}GGE6d!|<Z^zs
zxWahVAQ%3uHorn{7;_W7*X&p1=F<aoGtsM*kEHSW47kxEtltUhWxWym)iv9BC_^Jp
zoz?C2+**etq|4;8zS7(G7ID9%o!8svenq{A8@Y;39V@LTH*;?T``$d4ysS{SOSxOf
zy#rj=n7<Ub(*2zK$mKo*)~`n2-KKZPbZVLN&HdoE_Me+N`-D>NR&ue=&vT7G6znYJ
zW@0YStu*$%(GUK=evi79Y6n|yOY|zOBPlmaF7x1+&bd`j?Nrq*c{S|jWC}s0(IHHl
z9po}T*LAq9d?d(&J7aE6D-X_`-!6G!S7K+SzPoLHyKo;$?5tI{3-vx6>s71Uh1^HL
zWnN(3*VwO<`txpbd7g4cCl5-wk0yF2jJXm=Z=~e5=W6-|X+Fxu^P9uH0*(DE>Au+!
za+w#D&i8SSBRbc3mRz2hArIO-*LaTeOKzycmD>4vayh_#MIrx6xi8Sp<YFCZ*tsoE
zcFDiPWI|`uu*-GH<<Q~^`_K}YEq}JmEmJG~*)rFoUiL_qxhKfwIh|$hDDAum+%f7U
zTT8Dn?^npwoZp$;E^%X=dckEL)ac8k@v2I_nBN8AcBv<8)XVjY{JUHyFQC-P^fjwt
z#R)>*fzA{vNIJ8g!|Z**<vE?kJqp-a#4V7^`33hi1-<b-sQlh8cSR|^K|6Cl2Yt%8
zMQ%vH;(nc8f7G(GSMD~uxCakA=Qd!VPx;-V-pRzDmHbLNzvsy1K%b%!H>7p@c`{Ky
z=TOIf6R$D2ciXcN{lZJ&^1dj!8vTOwUcnpS8u*n_(kq?cw`gbVt3<f(t)n+TIpPPS
zX$Sm2kc;)JcaK8G{gGVk18Z@m_eFmKw{`xj6tAS*E99<&=D?WWAe+y%tfLl}wR>-+
zK3+V0eCjvO{dYI>(Mk-ZbtL8PVSJ`u^ko|7`_g#zIJv7Zl;&5;eS+N87)tjjoa{k2
zD3<~+^!moPA8<Pz0XyU>p5sWld%<OVRy?;7<^4Rl%=_2}t}5jHq^?V=H}=ua@Mr3M
z*&?@xdT+xRG3FPG-2LPtZt%YM&lb4{$mM?Qu-e}(iu~#zxy(uE%aqP>MBGE<vQL3O
z+vGk;F8qpp$|Z~Q`xLl2oQHCsP~#j{x_*197xhLC`wSmi)Z0hBj90Mp--_I{{`UyE
zte=qwHTuEC&S~7Ev~$cot)SP*qJr)7%U%9tqE+;)MKKj|9iczc==Y`EJ>b&LTK8k6
o+-F!%E`r{ZjFGB(ao<}ozZby0i2g{cUugA%0`8mOYW9Qw0iD*9fdBvi

literal 0
HcmV?d00001

diff --git a/wrf/cam3/cam3d/struct.ini b/wrf/cam3/cam3d/struct.ini
new file mode 100644
index 0000000..990966d
--- /dev/null
+++ b/wrf/cam3/cam3d/struct.ini
@@ -0,0 +1,1040 @@
+[structure_608]
+id = 608
+startpos = 3
+name = NX-Tower-ATMiss
+position = 4544, 25408, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_610]
+id = 610
+startpos = 3
+name = NX-Tower-ATMiss
+position = 2112, 25408, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_611]
+id = 611
+startpos = 3
+name = NX-Tower-ATMiss
+position = 3264, 25408, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_612]
+id = 612
+startpos = 3
+name = NX-Tower-PulseLas
+position = 2496, 25408, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_613]
+id = 613
+startpos = 3
+name = NX-Tower-PulseLas
+position = 2880, 25408, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_620]
+id = 620
+startpos = 3
+name = P0-AASite-SAM1
+position = 7744, 25664, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_622]
+id = 622
+startpos = 3
+name = P0-AASite-SAM1
+position = 7744, 26560, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_628]
+id = 628
+startpos = 3
+name = P0-AASite-SAM1
+position = 7488, 30784, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_654]
+id = 654
+startpos = 3
+name = Sys-NX-SensorTower
+position = 3136, 27968, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_655]
+id = 655
+startpos = 3
+name = NX-Tower-PulseLas
+position = 1856, 28608, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_657]
+id = 657
+startpos = 3
+name = NX-Tower-PulseLas
+position = 4672, 27712, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_658]
+id = 658
+startpos = 3
+name = NX-Tower-PulseLas
+position = 4416, 28736, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_661]
+id = 661
+startpos = 3
+name = NX-Tower-ATMiss
+position = 3008, 30656, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_663]
+id = 663
+startpos = 3
+name = NX-Tower-ATMiss
+position = 3648, 29376, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_702]
+id = 702
+startpos = 3
+name = NX-Tower-ATMiss
+position = 6592, 25280, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_704]
+id = 704
+startpos = 3
+name = NX-Tower-PulseLas
+position = 7232, 24896, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_705]
+id = 705
+startpos = 3
+name = Sys-NX-SensorTower
+position = 7616, 24640, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_706]
+id = 706
+startpos = 3
+name = Sys-NX-SensorTower
+position = 7744, 26432, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_707]
+id = 707
+startpos = 3
+name = Sys-NX-SensorTower
+position = 7488, 27840, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_708]
+id = 708
+startpos = 3
+name = Sys-NX-SensorTower
+position = 7488, 29120, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_709]
+id = 709
+startpos = 3
+name = Sys-NX-SensorTower
+position = 7616, 30400, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_710]
+id = 710
+startpos = 3
+name = Sys-NX-SensorTower
+position = 7488, 31680, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_750]
+id = 750
+startpos = 3
+name = Sys-NX-SensorTower
+position = 4032, 25152, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_777]
+id = 777
+startpos = 3
+name = NX-Tower-PulseLas
+position = 3136, 27456, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_778]
+id = 778
+startpos = 3
+name = NX-Tower-PulseLas
+position = 2624, 27456, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_790]
+id = 790
+startpos = 3
+name = A0VTolFactory1
+position = 704, 31296, 0
+rotation = 0, 0, 0
+modules = 2
+
+[structure_795]
+id = 795
+startpos = 3
+name = A0ResourceExtractor
+position = 1472, 31424, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_796]
+id = 796
+startpos = 3
+name = A0VtolPad
+position = 960, 30144, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_797]
+id = 797
+startpos = 3
+name = A0VtolPad
+position = 1088, 29888, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_799]
+id = 799
+startpos = 3
+name = NX-Tower-ATMiss
+position = 1600, 31168, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_800]
+id = 800
+startpos = 3
+name = NX-Tower-PulseLas
+position = 1216, 30912, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_802]
+id = 802
+startpos = 3
+name = NX-Tower-PulseLas
+position = 2240, 30400, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_810]
+id = 810
+startpos = 3
+name = A0CommandCentreNE
+position = 4864, 31232, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_811]
+id = 811
+startpos = 3
+name = NX-Tower-PulseLas
+position = 5440, 30272, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_813]
+id = 813
+startpos = 3
+name = NX-Tower-ATMiss
+position = 5952, 30272, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_814]
+id = 814
+startpos = 3
+name = A0ComDroidControl
+position = 6528, 31104, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_815]
+id = 815
+startpos = 3
+name = A0PowerGenerator
+position = 5248, 30720, 0
+rotation = 0, 0, 0
+modules = 1
+
+[structure_817]
+id = 817
+startpos = 3
+name = A0ResourceExtractor
+position = 4928, 30784, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_819]
+id = 819
+startpos = 3
+name = NX-Tower-ATMiss
+position = 6208, 27584, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_825]
+id = 825
+startpos = 3
+name = A0LightFactory
+position = 6464, 30656, 0
+rotation = 0, 0, 0
+modules = 2
+
+[structure_853]
+id = 853
+startpos = 3
+name = P0-AASite-SAM1
+position = 6336, 31936, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_854]
+id = 854
+startpos = 3
+name = P0-AASite-SAM1
+position = 5312, 31936, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_855]
+id = 855
+startpos = 3
+name = P0-AASite-SAM1
+position = 5824, 31680, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_856]
+id = 856
+startpos = 3
+name = P0-AASite-SAM1
+position = 5056, 31808, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_869]
+id = 869
+startpos = 3
+name = NEXUSWall
+position = 5440, 31168, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_870]
+id = 870
+startpos = 3
+name = NEXUSWall
+position = 5568, 31168, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_871]
+id = 871
+startpos = 3
+name = NEXUSWall
+position = 5696, 31168, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_872]
+id = 872
+startpos = 3
+name = NEXUSWall
+position = 5824, 31168, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_873]
+id = 873
+startpos = 3
+name = NEXUSWall
+position = 5312, 31168, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_874]
+id = 874
+startpos = 3
+name = NEXUSWall
+position = 5952, 31168, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_875]
+id = 875
+startpos = 3
+name = NEXUSWall
+position = 6208, 31296, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_879]
+id = 879
+startpos = 1
+name = NX-ANTI-SATSite
+position = 5440, 31424, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_880]
+id = 880
+startpos = 1
+name = NX-ANTI-SATSite
+position = 5696, 31424, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_881]
+id = 881
+startpos = 1
+name = NX-ANTI-SATSite
+position = 5952, 31424, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_883]
+id = 883
+startpos = 3
+name = NEXUSWall
+position = 5184, 31296, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_884]
+id = 884
+startpos = 3
+name = NEXUSWall
+position = 5184, 31424, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_885]
+id = 885
+startpos = 3
+name = NEXUSCWall
+position = 5184, 31552, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_886]
+id = 886
+startpos = 3
+name = NEXUSWall
+position = 6080, 31168, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_888]
+id = 888
+startpos = 3
+name = NEXUSWall
+position = 6208, 31424, 0
+rotation = 16384, 0, 0
+modules = 0
+
+[structure_971]
+id = 971
+startpos = 3
+name = NX-WallTower-BeamLas
+position = 6464, 27840, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_972]
+id = 972
+startpos = 3
+name = NX-WallTower-BeamLas
+position = 6848, 27840, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_973]
+id = 973
+startpos = 3
+name = NX-WallTower-BeamLas
+position = 5696, 26944, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1310]
+id = 1310
+startpos = 3
+name = P0-AASite-SAM1
+position = 3776, 25408, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1312]
+id = 1312
+startpos = 3
+name = P0-AASite-SAM1
+position = 4288, 24896, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1318]
+id = 1318
+startpos = 3
+name = A0ResourceExtractor
+position = 1728, 31680, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1320]
+id = 1320
+startpos = 3
+name = P0-AASite-SAM2
+position = 7744, 30016, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1323]
+id = 1323
+startpos = 3
+name = P0-AASite-SAM2
+position = 7232, 29376, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1325]
+id = 1325
+startpos = 3
+name = P0-AASite-SAM2
+position = 7232, 27712, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1327]
+id = 1327
+startpos = 3
+name = NX-WallTower-Rail2
+position = 7232, 27072, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1328]
+id = 1328
+startpos = 3
+name = NX-WallTower-Rail2
+position = 5184, 26688, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1330]
+id = 1330
+startpos = 3
+name = Emplacement-PrisLas
+position = 6208, 28352, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1331]
+id = 1331
+startpos = 3
+name = NEXUSCWall
+position = 6208, 31552, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1332]
+id = 1332
+startpos = 3
+name = NX-WallTower-BeamLas
+position = 5184, 30528, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1333]
+id = 1333
+startpos = 3
+name = NX-WallTower-BeamLas
+position = 6208, 31168, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1334]
+id = 1334
+startpos = 3
+name = NX-WallTower-BeamLas
+position = 5184, 31168, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1335]
+id = 1335
+startpos = 3
+name = NX-WallTower-BeamLas
+position = 3776, 31424, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1337]
+id = 1337
+startpos = 3
+name = Emplacement-PrisLas
+position = 4032, 30272, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1339]
+id = 1339
+startpos = 3
+name = Emplacement-PrisLas
+position = 3776, 30912, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1344]
+id = 1344
+startpos = 3
+name = A0ResourceExtractor
+position = 5184, 28480, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1361]
+id = 1361
+startpos = 3
+name = NX-Tower-ATMiss
+position = 7232, 28864, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1372]
+id = 1372
+startpos = 3
+name = A0VtolPad
+position = 576, 30144, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1373]
+id = 1373
+startpos = 3
+name = A0VtolPad
+position = 704, 29888, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1374]
+id = 1374
+startpos = 3
+name = NX-Tower-ATMiss
+position = 1472, 29888, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1375]
+id = 1375
+startpos = 3
+name = NX-Tower-ATMiss
+position = 1344, 30400, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1376]
+id = 1376
+startpos = 3
+name = NX-WallTower-Rail2
+position = 448, 29632, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1377]
+id = 1377
+startpos = 3
+name = NX-WallTower-Rail2
+position = 1472, 29632, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1379]
+id = 1379
+startpos = 3
+name = NEXUSWall
+position = 576, 29632, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1380]
+id = 1380
+startpos = 3
+name = NEXUSWall
+position = 704, 29632, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1381]
+id = 1381
+startpos = 3
+name = NEXUSWall
+position = 832, 29632, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1382]
+id = 1382
+startpos = 3
+name = NEXUSWall
+position = 1088, 29632, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1383]
+id = 1383
+startpos = 3
+name = NEXUSWall
+position = 1216, 29632, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1384]
+id = 1384
+startpos = 3
+name = NEXUSWall
+position = 1344, 29632, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1385]
+id = 1385
+startpos = 3
+name = NX-WallTower-BeamLas
+position = 960, 29632, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1387]
+id = 1387
+startpos = 3
+name = NX-WallTower-Rail2
+position = 832, 28480, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1388]
+id = 1388
+startpos = 3
+name = NX-WallTower-Rail2
+position = 1216, 28480, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1389]
+id = 1389
+startpos = 3
+name = NX-WallTower-BeamLas
+position = 576, 28864, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1615]
+id = 1615
+startpos = 3
+name = NX-Emp-MultiArtMiss-Pit
+position = 704, 30784, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1616]
+id = 1616
+startpos = 3
+name = NX-Emp-MultiArtMiss-Pit
+position = 960, 30784, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1395]
+id = 1395
+startpos = 3
+name = Sys-NX-CBTower
+position = 6720, 31680, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1396]
+id = 1396
+startpos = 3
+name = Sys-NX-CBTower
+position = 6080, 31680, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1614]
+id = 1614
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 6976, 31040, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1401]
+id = 1401
+startpos = 3
+name = Sys-NX-CBTower
+position = 576, 30912, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1402]
+id = 1402
+startpos = 3
+name = Sys-NX-CBTower
+position = 1344, 31296, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1404]
+id = 1404
+startpos = 3
+name = A0ResourceExtractor
+position = 7232, 30016, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1406]
+id = 1406
+startpos = 3
+name = A0ResourceExtractor
+position = 6592, 30016, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1417]
+id = 1417
+startpos = 3
+name = A0PowerGenerator
+position = 6912, 29952, 0
+rotation = 0, 0, 0
+modules = 1
+
+[structure_1420]
+id = 1420
+startpos = 3
+name = Sys-NX-CBTower
+position = 5184, 28096, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1493]
+id = 1493
+startpos = 3
+name = A0CyborgFactory
+position = 5952, 30720, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1494]
+id = 1494
+startpos = 3
+name = A0CyborgFactory
+position = 5696, 30720, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1495]
+id = 1495
+startpos = 3
+name = Sys-NX-SensorTower
+position = 5568, 31680, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1496]
+id = 1496
+startpos = 3
+name = Sys-NX-SensorTower
+position = 6336, 29248, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1593]
+id = 1593
+startpos = 3
+name = Sys-NEXUSLinkTOW
+position = 4800, 30144, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1594]
+id = 1594
+startpos = 3
+name = Sys-NEXUSLinkTOW
+position = 6208, 30272, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1597]
+id = 1597
+startpos = 3
+name = A0ResourceExtractor
+position = 4928, 31552, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1599]
+id = 1599
+startpos = 3
+name = A0ResourceExtractor
+position = 5440, 31808, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1601]
+id = 1601
+startpos = 3
+name = A0HardcreteMk1Gate
+position = 6720, 27840, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1602]
+id = 1602
+startpos = 3
+name = A0HardcreteMk1Gate
+position = 6592, 27840, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1603]
+id = 1603
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 7104, 28224, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1604]
+id = 1604
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 6208, 27840, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1605]
+id = 1605
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 3520, 25280, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1606]
+id = 1606
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 4800, 25152, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1607]
+id = 1607
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 3776, 24768, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1608]
+id = 1608
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 1472, 28480, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1609]
+id = 1609
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 704, 28224, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1610]
+id = 1610
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 3520, 30784, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1611]
+id = 1611
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 4160, 29888, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1612]
+id = 1612
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 5824, 29504, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1613]
+id = 1613
+startpos = 3
+name = NX-Emp-MedArtMiss-Pit
+position = 6976, 30784, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1617]
+id = 1617
+startpos = 3
+name = NX-Emp-MultiArtMiss-Pit
+position = 6464, 31552, 0
+rotation = 0, 0, 0
+modules = 0
+
+[structure_1618]
+id = 1618
+startpos = 3
+name = NX-Emp-MultiArtMiss-Pit
+position = 6592, 31552, 0
+rotation = 0, 0, 0
+modules = 0
+

From c1c6e78d50017410d6eb49235687df7f0713008e Mon Sep 17 00:00:00 2001
From: Dylan <28832631+DARwins1@users.noreply.github.com>
Date: Thu, 11 Nov 2021 02:55:35 -0600
Subject: [PATCH 10/10] Add files via upload