From 0e8f027a407aaaf8d71dd0fceea5368af347dfd9 Mon Sep 17 00:00:00 2001 From: Reedux Date: Sat, 11 Jan 2020 15:04:12 +0000 Subject: [PATCH 01/13] Change ITV check to a datatable query for ease of adding future ITV vehicles --- .../game/datatables/item/itv_command_list.tab | 9 ++++ .../instant_travel_terminal_deed.java | 50 ++++--------------- 2 files changed, 20 insertions(+), 39 deletions(-) create mode 100644 sku.0/sys.server/compiled/game/datatables/item/itv_command_list.tab diff --git a/sku.0/sys.server/compiled/game/datatables/item/itv_command_list.tab b/sku.0/sys.server/compiled/game/datatables/item/itv_command_list.tab new file mode 100644 index 000000000..340e0a650 --- /dev/null +++ b/sku.0/sys.server/compiled/game/datatables/item/itv_command_list.tab @@ -0,0 +1,9 @@ +objVarName itvCommand +s s +privateerShip callforprivateerpickup +royalShip callforroyalpickup +junk callforrattletrappickup +tcg_itv_home callforsolarsailerpickup +tcg_itv_location callforg9riggerpickup +itv_snowspeeder callforsnowspeeder +itv_slave_1 callforslave1pickup diff --git a/sku.0/sys.server/compiled/game/script/systems/veteran_reward/instant_travel_terminal_deed.java b/sku.0/sys.server/compiled/game/script/systems/veteran_reward/instant_travel_terminal_deed.java index fad1ff20b..f19d0b627 100755 --- a/sku.0/sys.server/compiled/game/script/systems/veteran_reward/instant_travel_terminal_deed.java +++ b/sku.0/sys.server/compiled/game/script/systems/veteran_reward/instant_travel_terminal_deed.java @@ -10,6 +10,7 @@ public class instant_travel_terminal_deed extends script.base_script public instant_travel_terminal_deed() { } + private static final String ITV_COMMAND_TABLE = "datatables/item/itv_command_list.iff"; public static final string_id LEARN_ABILITY = new string_id("item_n", "instant_travel_terminal_learn"); public int OnObjectMenuRequest(obj_id self, obj_id player, menu_info mi) throws InterruptedException { @@ -27,47 +28,18 @@ public class instant_travel_terminal_deed extends script.base_script { if(getLevel(player) < minimumLevel){ sendSystemMessage(player, "Instant Travel vehicles may not be used until you have reached level " + minLevelSetting + ". Please use this deed again when you reach level " + minLevelSetting + " or higher.", null); + return SCRIPT_CONTINUE; } - else if (hasObjVar(self, "privateerShip")) - { - grantCommand(player, "callforprivateerpickup"); - destroyObject(self); - } - else if (hasObjVar(self, "royalShip")) - { - grantCommand(player, "callforroyalpickup"); - destroyObject(self); - } - else if (hasObjVar(self, "junk")) - { - grantCommand(player, "callforrattletrappickup"); - destroyObject(self); - } - else if (hasObjVar(self, "tcg_itv_home")) - { - grantCommand(player, "callforsolarsailerpickup"); - destroyObject(self); - } - else if (hasObjVar(self, "tcg_itv_location")) - { - grantCommand(player, "callforg9riggerpickup"); - destroyObject(self); - } - else if (hasObjVar(self, "itv_snowspeeder")) - { - grantCommand(player, "callforsnowspeeder"); - destroyObject(self); - } - else if (hasObjVar(self, "itv_slave_1")) - { - grantCommand(player, "callforslave1pickup"); - destroyObject(self); - } - else - { - grantCommand(player, "callforpickup"); - destroyObject(self); + int rows = dataTableGetNumRows(ITV_COMMAND_TABLE); + for (int i=0;i Date: Sat, 11 Jan 2020 15:25:37 +0000 Subject: [PATCH 02/13] Adjusted to check if ITV has already been learned Idea from tyrones PR https://github.com/SWG-Source/dsrc/pull/77 --- .../compiled/game/datatables/item/itv_command_list.tab | 1 + .../tangible/veteran_reward/instant_travel_terminal.tpf | 1 + .../veteran_reward/instant_travel_terminal_deed.java | 7 +++++-- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/sku.0/sys.server/compiled/game/datatables/item/itv_command_list.tab b/sku.0/sys.server/compiled/game/datatables/item/itv_command_list.tab index 340e0a650..e51e3c1a6 100644 --- a/sku.0/sys.server/compiled/game/datatables/item/itv_command_list.tab +++ b/sku.0/sys.server/compiled/game/datatables/item/itv_command_list.tab @@ -7,3 +7,4 @@ tcg_itv_home callforsolarsailerpickup tcg_itv_location callforg9riggerpickup itv_snowspeeder callforsnowspeeder itv_slave_1 callforslave1pickup +default_itv callforpickup diff --git a/sku.0/sys.server/compiled/game/object/tangible/veteran_reward/instant_travel_terminal.tpf b/sku.0/sys.server/compiled/game/object/tangible/veteran_reward/instant_travel_terminal.tpf index 4d5c9fd31..ccfb2fa77 100755 --- a/sku.0/sys.server/compiled/game/object/tangible/veteran_reward/instant_travel_terminal.tpf +++ b/sku.0/sys.server/compiled/game/object/tangible/veteran_reward/instant_travel_terminal.tpf @@ -7,3 +7,4 @@ sharedTemplate = "object/tangible/veteran_reward/shared_instant_travel_terminal.iff" scripts = ["systems.veteran_reward.instant_travel_terminal_deed", "item.special.nomove"] persistByDefault = true +objvars = +["default_itv" = 1] diff --git a/sku.0/sys.server/compiled/game/script/systems/veteran_reward/instant_travel_terminal_deed.java b/sku.0/sys.server/compiled/game/script/systems/veteran_reward/instant_travel_terminal_deed.java index f19d0b627..2862ad6ee 100755 --- a/sku.0/sys.server/compiled/game/script/systems/veteran_reward/instant_travel_terminal_deed.java +++ b/sku.0/sys.server/compiled/game/script/systems/veteran_reward/instant_travel_terminal_deed.java @@ -30,16 +30,19 @@ public class instant_travel_terminal_deed extends script.base_script sendSystemMessage(player, "Instant Travel vehicles may not be used until you have reached level " + minLevelSetting + ". Please use this deed again when you reach level " + minLevelSetting + " or higher.", null); return SCRIPT_CONTINUE; } + // Make sure the default_itv is always at the bottom of the table else you will get false hits int rows = dataTableGetNumRows(ITV_COMMAND_TABLE); for (int i=0;i Date: Fri, 17 Apr 2020 18:59:38 -0700 Subject: [PATCH 03/13] removed unneeded .gitignore entries (#103) * Update .gitignore base_script.java should not be ignored per cekis no *.class files should exist in dsrc.../scripts folders pre or post script compile * Update .gitignore * Delete .gitignore If it's empty, we don't need it Co-authored-by: Tekaoh <45337851+Tekaoh@users.noreply.github.com> --- sku.0/sys.server/compiled/game/script/.gitignore | 2 -- 1 file changed, 2 deletions(-) delete mode 100755 sku.0/sys.server/compiled/game/script/.gitignore diff --git a/sku.0/sys.server/compiled/game/script/.gitignore b/sku.0/sys.server/compiled/game/script/.gitignore deleted file mode 100755 index 7553a6411..000000000 --- a/sku.0/sys.server/compiled/game/script/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -base_script.java -*.class \ No newline at end of file From 48c8ea103fc85b9eefdde138608077ffdb3ae3be Mon Sep 17 00:00:00 2001 From: ristana Date: Fri, 17 Apr 2020 19:16:28 -0700 Subject: [PATCH 04/13] removed empty .gitignores (#105) these .gitignore files have no purpose Co-authored-by: Tekaoh <45337851+Tekaoh@users.noreply.github.com> --- sku.0/sys.server/compiled/game/script/ai/.gitignore | 1 - sku.0/sys.server/compiled/game/script/base/.gitignore | 1 - sku.0/sys.server/compiled/game/script/beta/.gitignore | 1 - sku.0/sys.server/compiled/game/script/city/.gitignore | 1 - sku.0/sys.server/compiled/game/script/content_tools/.gitignore | 1 - sku.0/sys.server/compiled/game/script/conversation/.gitignore | 1 - sku.0/sys.server/compiled/game/script/corpse/.gitignore | 1 - sku.0/sys.server/compiled/game/script/creature/.gitignore | 1 - .../sys.server/compiled/game/script/creature_spawner/.gitignore | 1 - sku.0/sys.server/compiled/game/script/csr/.gitignore | 1 - sku.0/sys.server/compiled/game/script/cureward/.gitignore | 1 - sku.0/sys.server/compiled/game/script/cybernetic/.gitignore | 1 - sku.0/sys.server/compiled/game/script/data_item/.gitignore | 1 - sku.0/sys.server/compiled/game/script/debug/.gitignore | 1 - sku.0/sys.server/compiled/game/script/demo/.gitignore | 1 - sku.0/sys.server/compiled/game/script/developer/.gitignore | 1 - sku.0/sys.server/compiled/game/script/e3demo/.gitignore | 1 - sku.0/sys.server/compiled/game/script/event/.gitignore | 1 - sku.0/sys.server/compiled/game/script/faction_perk/.gitignore | 1 - sku.0/sys.server/compiled/game/script/fishing/.gitignore | 1 - sku.0/sys.server/compiled/game/script/gambling/.gitignore | 1 - sku.0/sys.server/compiled/game/script/gm/.gitignore | 1 - sku.0/sys.server/compiled/game/script/grouping/.gitignore | 1 - sku.0/sys.server/compiled/game/script/guild/.gitignore | 1 - sku.0/sys.server/compiled/game/script/harvesting/.gitignore | 1 - sku.0/sys.server/compiled/game/script/holocron/.gitignore | 1 - sku.0/sys.server/compiled/game/script/item/.gitignore | 1 - sku.0/sys.server/compiled/game/script/library/.gitignore | 1 - sku.0/sys.server/compiled/game/script/money/.gitignore | 1 - sku.0/sys.server/compiled/game/script/name/.gitignore | 1 - sku.0/sys.server/compiled/game/script/npc/.gitignore | 1 - sku.0/sys.server/compiled/game/script/npe/.gitignore | 1 - sku.0/sys.server/compiled/game/script/object/.gitignore | 1 - sku.0/sys.server/compiled/game/script/planet/.gitignore | 1 - sku.0/sys.server/compiled/game/script/planet_map/.gitignore | 1 - sku.0/sys.server/compiled/game/script/player/.gitignore | 1 - sku.0/sys.server/compiled/game/script/poi/.gitignore | 1 - sku.0/sys.server/compiled/game/script/powerup/.gitignore | 1 - sku.0/sys.server/compiled/game/script/qa/.gitignore | 1 - sku.0/sys.server/compiled/game/script/quest/.gitignore | 1 - sku.0/sys.server/compiled/game/script/simulator/.gitignore | 1 - sku.0/sys.server/compiled/game/script/space/.gitignore | 1 - sku.0/sys.server/compiled/game/script/space_mining/.gitignore | 1 - sku.0/sys.server/compiled/game/script/structure/.gitignore | 1 - sku.0/sys.server/compiled/game/script/sui/.gitignore | 1 - sku.0/sys.server/compiled/game/script/systems/.gitignore | 1 - sku.0/sys.server/compiled/game/script/terminal/.gitignore | 1 - sku.0/sys.server/compiled/game/script/test/.gitignore | 1 - sku.0/sys.server/compiled/game/script/theme_park/.gitignore | 1 - sku.0/sys.server/compiled/game/script/turnstile/.gitignore | 1 - sku.0/sys.server/compiled/game/script/vendor/.gitignore | 1 - sku.0/sys.server/compiled/game/script/waypoint/.gitignore | 1 - 52 files changed, 52 deletions(-) delete mode 100755 sku.0/sys.server/compiled/game/script/ai/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/base/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/beta/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/city/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/content_tools/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/conversation/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/corpse/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/creature/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/creature_spawner/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/csr/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/cureward/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/cybernetic/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/data_item/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/debug/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/demo/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/developer/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/e3demo/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/event/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/faction_perk/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/fishing/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/gambling/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/gm/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/grouping/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/guild/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/harvesting/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/holocron/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/item/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/library/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/money/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/name/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/npc/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/npe/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/object/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/planet/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/planet_map/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/player/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/poi/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/powerup/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/qa/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/quest/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/simulator/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/space/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/space_mining/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/structure/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/sui/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/systems/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/terminal/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/test/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/theme_park/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/turnstile/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/vendor/.gitignore delete mode 100755 sku.0/sys.server/compiled/game/script/waypoint/.gitignore diff --git a/sku.0/sys.server/compiled/game/script/ai/.gitignore b/sku.0/sys.server/compiled/game/script/ai/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/ai/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/base/.gitignore b/sku.0/sys.server/compiled/game/script/base/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/base/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/beta/.gitignore b/sku.0/sys.server/compiled/game/script/beta/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/beta/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/city/.gitignore b/sku.0/sys.server/compiled/game/script/city/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/city/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/content_tools/.gitignore b/sku.0/sys.server/compiled/game/script/content_tools/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/content_tools/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/conversation/.gitignore b/sku.0/sys.server/compiled/game/script/conversation/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/conversation/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/corpse/.gitignore b/sku.0/sys.server/compiled/game/script/corpse/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/corpse/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/creature/.gitignore b/sku.0/sys.server/compiled/game/script/creature/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/creature/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/creature_spawner/.gitignore b/sku.0/sys.server/compiled/game/script/creature_spawner/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/creature_spawner/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/csr/.gitignore b/sku.0/sys.server/compiled/game/script/csr/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/csr/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/cureward/.gitignore b/sku.0/sys.server/compiled/game/script/cureward/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/cureward/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/cybernetic/.gitignore b/sku.0/sys.server/compiled/game/script/cybernetic/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/cybernetic/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/data_item/.gitignore b/sku.0/sys.server/compiled/game/script/data_item/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/data_item/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/debug/.gitignore b/sku.0/sys.server/compiled/game/script/debug/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/debug/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/demo/.gitignore b/sku.0/sys.server/compiled/game/script/demo/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/demo/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/developer/.gitignore b/sku.0/sys.server/compiled/game/script/developer/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/developer/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/e3demo/.gitignore b/sku.0/sys.server/compiled/game/script/e3demo/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/e3demo/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/event/.gitignore b/sku.0/sys.server/compiled/game/script/event/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/event/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/faction_perk/.gitignore b/sku.0/sys.server/compiled/game/script/faction_perk/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/faction_perk/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/fishing/.gitignore b/sku.0/sys.server/compiled/game/script/fishing/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/fishing/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/gambling/.gitignore b/sku.0/sys.server/compiled/game/script/gambling/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/gambling/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/gm/.gitignore b/sku.0/sys.server/compiled/game/script/gm/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/gm/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/grouping/.gitignore b/sku.0/sys.server/compiled/game/script/grouping/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/grouping/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/guild/.gitignore b/sku.0/sys.server/compiled/game/script/guild/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/guild/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/harvesting/.gitignore b/sku.0/sys.server/compiled/game/script/harvesting/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/harvesting/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/holocron/.gitignore b/sku.0/sys.server/compiled/game/script/holocron/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/holocron/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/item/.gitignore b/sku.0/sys.server/compiled/game/script/item/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/item/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/library/.gitignore b/sku.0/sys.server/compiled/game/script/library/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/library/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/money/.gitignore b/sku.0/sys.server/compiled/game/script/money/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/money/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/name/.gitignore b/sku.0/sys.server/compiled/game/script/name/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/name/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/npc/.gitignore b/sku.0/sys.server/compiled/game/script/npc/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/npc/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/npe/.gitignore b/sku.0/sys.server/compiled/game/script/npe/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/npe/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/object/.gitignore b/sku.0/sys.server/compiled/game/script/object/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/object/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/planet/.gitignore b/sku.0/sys.server/compiled/game/script/planet/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/planet/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/planet_map/.gitignore b/sku.0/sys.server/compiled/game/script/planet_map/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/planet_map/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/player/.gitignore b/sku.0/sys.server/compiled/game/script/player/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/player/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/poi/.gitignore b/sku.0/sys.server/compiled/game/script/poi/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/poi/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/powerup/.gitignore b/sku.0/sys.server/compiled/game/script/powerup/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/powerup/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/qa/.gitignore b/sku.0/sys.server/compiled/game/script/qa/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/qa/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/quest/.gitignore b/sku.0/sys.server/compiled/game/script/quest/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/quest/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/simulator/.gitignore b/sku.0/sys.server/compiled/game/script/simulator/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/simulator/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/space/.gitignore b/sku.0/sys.server/compiled/game/script/space/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/space/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/space_mining/.gitignore b/sku.0/sys.server/compiled/game/script/space_mining/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/space_mining/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/structure/.gitignore b/sku.0/sys.server/compiled/game/script/structure/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/structure/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/sui/.gitignore b/sku.0/sys.server/compiled/game/script/sui/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/sui/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/systems/.gitignore b/sku.0/sys.server/compiled/game/script/systems/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/systems/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/terminal/.gitignore b/sku.0/sys.server/compiled/game/script/terminal/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/terminal/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/test/.gitignore b/sku.0/sys.server/compiled/game/script/test/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/test/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/theme_park/.gitignore b/sku.0/sys.server/compiled/game/script/theme_park/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/theme_park/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/turnstile/.gitignore b/sku.0/sys.server/compiled/game/script/turnstile/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/turnstile/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/vendor/.gitignore b/sku.0/sys.server/compiled/game/script/vendor/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/vendor/.gitignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sku.0/sys.server/compiled/game/script/waypoint/.gitignore b/sku.0/sys.server/compiled/game/script/waypoint/.gitignore deleted file mode 100755 index d3f5a12fa..000000000 --- a/sku.0/sys.server/compiled/game/script/waypoint/.gitignore +++ /dev/null @@ -1 +0,0 @@ - From cfcafd252bbb33930474630938919f82917aedca Mon Sep 17 00:00:00 2001 From: IrishDarkshadow Date: Sun, 19 Apr 2020 09:23:57 +0100 Subject: [PATCH 05/13] fixes object placement at elevation inside the tree house...OMFG, how did this typo last for so long in dsrc without anyone noticing it! --- .../compiled/game/datatables/structure/cell_height.tab | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sku.0/sys.server/compiled/game/datatables/structure/cell_height.tab b/sku.0/sys.server/compiled/game/datatables/structure/cell_height.tab index 1e1462c6c..caaad4c8f 100755 --- a/sku.0/sys.server/compiled/game/datatables/structure/cell_height.tab +++ b/sku.0/sys.server/compiled/game/datatables/structure/cell_height.tab @@ -425,7 +425,7 @@ object/building/player/player_house_yt1300.iff hall4 100 0.1 object/building/player/player_house_yt1300.iff storage5 100 0.1 object/building/player/player_house_yt1300.iff storage6 100 0.1 object/building/player/player_house_yt1300.iff turretaccess 100 0.1 -object/buidling/player/player_house_tree_house_01.iff entry 100 0.1 +object/building/player/player_house_tree_house_01.iff entry 100 0.1 object/buidling/player/player_house_wod_ns_hut entry 100 0.1 object/buidling/player/player_house_wod_sm_hut entry 100 0.1 object/building/player/player_house_jabbas_sail_barge.iff interior 20 0.96 From 9920d15d1fa447c9686976b4402c5bb15c4ec824 Mon Sep 17 00:00:00 2001 From: IrishDarkshadow Date: Tue, 21 Apr 2020 08:34:34 -0400 Subject: [PATCH 06/13] adds static entries for the tree house deed and restores tree house 2 --- .../item/master_item/master_item.tab | 4 +- .../game/datatables/structure/cell_height.tab | 3 +- .../datatables/structure/player_structure.tab | 829 +++++++++--------- .../structure/player_structure_sign.tab | 1 + ...onstruction_player_house_tree_house_02.tpf | 11 + .../player/player_house_tree_house_02.tpf | 6 + .../player_house_deed/tree_house_02_deed.tpf | 13 + .../shared_player_house_tree_house_02.mif | 24 + ...onstruction_player_house_tree_house_02.tpf | 23 + .../shared_player_house_tree_house_02.tpf | 16 + .../shared_tree_house_02_deed.tpf | 14 + 11 files changed, 529 insertions(+), 415 deletions(-) create mode 100755 sku.0/sys.server/compiled/game/object/building/player/construction/construction_player_house_tree_house_02.tpf create mode 100755 sku.0/sys.server/compiled/game/object/building/player/player_house_tree_house_02.tpf create mode 100755 sku.0/sys.server/compiled/game/object/tangible/deed/player_house_deed/tree_house_02_deed.tpf create mode 100755 sku.0/sys.shared/compiled/game/footprint/building/player/shared_player_house_tree_house_02.mif create mode 100755 sku.0/sys.shared/compiled/game/object/building/player/construction/shared_construction_player_house_tree_house_02.tpf create mode 100755 sku.0/sys.shared/compiled/game/object/building/player/shared_player_house_tree_house_02.tpf create mode 100755 sku.0/sys.shared/compiled/game/object/tangible/deed/player_house_deed/shared_tree_house_02_deed.tpf diff --git a/sku.0/sys.server/compiled/game/datatables/item/master_item/master_item.tab b/sku.0/sys.server/compiled/game/datatables/item/master_item/master_item.tab index 5f56b8c9b..de64f22f9 100755 --- a/sku.0/sys.server/compiled/game/datatables/item/master_item/master_item.tab +++ b/sku.0/sys.server/compiled/game/datatables/item/master_item/master_item.tab @@ -8300,7 +8300,7 @@ item_schematic_gcw2_survey_tool_all object/tangible/loot/loot_schematic/generic_ rare_loot_chest_quality_1 object/tangible/item/rare_loot_chest_1.iff systems.loot.rare_loot_chest Rare Loot Chest Rare Loot Chest... Open it up! rare_loot_chest_quality_2 object/tangible/item/rare_loot_chest_2.iff systems.loot.rare_loot_chest Exceptional Loot Chest Exceptional Loot Chest... Open it up! rare_loot_chest_quality_3 object/tangible/item/rare_loot_chest_3.iff systems.loot.rare_loot_chest Legendary Loot Chest Legen-wait for it-dary Loot Chest... Open it up! -item_player_house_deed_jabbas_sail_barge object/tangible/deed/player_house_deed/jabbas_sail_barge_deed.iff 4 item.special.nomove,item.structure_deed.player_structure_deed cloud city house a cloud city house +item_player_house_deed_jabbas_sail_barge object/tangible/deed/player_house_deed/jabbas_sail_barge_deed.iff 4 item.special.nomove,item.structure_deed.player_structure_deed Replica Jabba's Sail Barge House a replica of Jabba's sail barge for use as a house. item_tcg_loot_reward_series8_glass_sculpture object/tangible/tcg/series8/decorative_bespin_glass_sculpture.iff 4 item.special.nomove Glass Helix Sculpture From the skilled artisans of the Cloud City, this showy piece beautifies your home, creating an opulent diffusion of light in even the most humble of dwellings. item_tcg_loot_reward_series8_bespin_lamp_off object/tangible/tcg/series8/combine_decorative_bespin_lamp_off.iff 4 item.special.nomove,systems.tcg.tcg_bespin_lights,systems.tcg.tcg_combine_tcg_items_generic Cloud City Lamp Build-An-Item Object #2: This elegant lamp is patterned after the decorative illumination units found in the Cloud city on Bespin. item_tcg_loot_reward_series8_bespin_lamp_on object/tangible/tcg/series8/combine_decorative_bespin_lamp_on.iff 4 item.special.nomove,systems.tcg.tcg_bespin_lights,systems.tcg.tcg_combine_tcg_items_generic Cloud City Lamp Build-An-Item Object #2: This elegant lamp is patterned after the decorative illumination units found in the Cloud city on Bespin. @@ -8538,3 +8538,5 @@ item_tcg_loot_reward_series9_ep9e object/tangible/tcg/series9/painting_posters_e item_power_crystal_04_21 object/tangible/component/weapon/lightsaber/lightsaber_module_force_crystal.iff 4 systems.jedi.jedi_saber_component 1 Power Crystal A Force Crystal, used by Jedi in their lightsabers.||This crystal must be tuned by a Jedi before use. Once tuned this crystal becomes a focusing crystal and can only be used in a lightsaber by the Jedi who tuned it. item_crystal_mauls_vengeance_01 object/tangible/component/weapon/lightsaber/lightsaber_module_force_crystal.iff 2 systems.jedi.jedi_saber_component 1 Maul's Vengeance A Force Color Crystal, used by Jedi in their lightsabers.||This color crystal must be tuned by a Jedi before use. Once tuned this color crystal becomes a focusing crystal and can only be used in a lightsaber by the Jedi who tuned it. item_crystal_quigons_devotion_01 object/tangible/component/weapon/lightsaber/lightsaber_module_force_crystal.iff 2 systems.jedi.jedi_saber_component 1 Qui-Gon's Devotion A Force Color Crystal, used by Jedi in their lightsabers.||This color crystal must be tuned by a Jedi before use. Once tuned this color crystal becomes a focusing crystal and can only be used in a lightsaber by the Jedi who tuned it. +item_player_house_deed_tree_house_01 object/tangible/deed/player_house_deed/tree_house_01_deed.iff 4 item.special.nomove,item.structure_deed.player_structure_deed Kashyyyk Tree House a kashyyyk tree house. +item_player_house_deed_tree_house_02 object/tangible/deed/player_house_deed/tree_house_02_deed.iff 4 item.special.nomove,item.structure_deed.player_structure_deed Kashyyyk Tree House (Tall) a tall kashyyyk tree house. diff --git a/sku.0/sys.server/compiled/game/datatables/structure/cell_height.tab b/sku.0/sys.server/compiled/game/datatables/structure/cell_height.tab index caaad4c8f..8c187170e 100755 --- a/sku.0/sys.server/compiled/game/datatables/structure/cell_height.tab +++ b/sku.0/sys.server/compiled/game/datatables/structure/cell_height.tab @@ -425,7 +425,7 @@ object/building/player/player_house_yt1300.iff hall4 100 0.1 object/building/player/player_house_yt1300.iff storage5 100 0.1 object/building/player/player_house_yt1300.iff storage6 100 0.1 object/building/player/player_house_yt1300.iff turretaccess 100 0.1 -object/building/player/player_house_tree_house_01.iff entry 100 0.1 +object/buidling/player/player_house_tree_house_01.iff entry 100 0.1 object/buidling/player/player_house_wod_ns_hut entry 100 0.1 object/buidling/player/player_house_wod_sm_hut entry 100 0.1 object/building/player/player_house_jabbas_sail_barge.iff interior 20 0.96 @@ -445,3 +445,4 @@ object/building/player/player_guildhall_tatooine_style_01.iff basement -2.01732 object/building/player/player_guildhall_tatooine_style_01.iff meeting2 -3.85144 -8.5 object/building/player/player_guildhall_tatooine_style_01.iff meeting4 -4.00956 -8.5 object/building/player/player_guildhall_tatooine_style_01.iff meeting5 -4.13606 -8.5 +object/building/player/player_house_tree_house_02.iff entry 100 0.1 diff --git a/sku.0/sys.server/compiled/game/datatables/structure/player_structure.tab b/sku.0/sys.server/compiled/game/datatables/structure/player_structure.tab index 56abc0f6d..b737bff81 100755 --- a/sku.0/sys.server/compiled/game/datatables/structure/player_structure.tab +++ b/sku.0/sys.server/compiled/game/datatables/structure/player_structure.tab @@ -1,413 +1,416 @@ -STRUCTURE TEMP_STRUCTURE FOOTPRINT_TEMPLATE NO_LOT_REQUIREMENT LOT_REDUCTION EJECT_RANGE CIVIC CITY_RANK CITY_COST SHUTTLEPORT CLONE_FACILITY GARAGE CAN_RECLAIM MAINT_RATE DECAY_RATE CONDITION REDEED_COST HAS_SIGN POWER_RATE SKILLMOD SKILLMODVALUE SKILLMOD_MESSAGE VERSION OBJECT X Y Z CELL HEADING COMMENTS -s s s i I f[0] I I I I I I b[1] i i i i[0] I[0] f[0] s i s i s f f f s f c -object/building/player/player_house_tcg_relaxation_pool.iff object/building/player/construction/construction_player_tcg_relaxation_pool.iff 0 32 9 4 5760 1700 1 4 - object/tangible/terminal/terminal_player_structure_nosnap.iff 7.25 4 0 entry -90 -object/building/player/player_house_jedi_meditation_room.iff object/building/player/construction/construction_player_jedi_meditation_room.iff 0 32 4 3 4320 800 1 4 - object/tangible/terminal/terminal_player_structure_nosnap.iff 8.2 4 -1.1 entry -91 -object/building/player/player_house_sith_meditation_room.iff object/building/player/construction/construction_player_sith_meditation_room.iff 0 32 4 3 4320 800 1 4 - object/tangible/terminal/terminal_player_structure_nosnap.iff 4 4 1.85 entry 180 -object/building/player/player_house_corellia_small_style_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 4 3 4320 800 1 4 - object/tangible/terminal/terminal_player_structure.iff -5 0.74 -2.76 entry -90 -object/building/player/player_house_corellia_small_style_01_floorplan_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 4 3 4320 800 1 4 - object/tangible/terminal/terminal_player_structure.iff -5 0.74 -1.81 entry -90 -object/building/player/player_house_corellia_small_style_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 4 3 4320 800 1 4 - object/tangible/terminal/terminal_player_structure.iff -6.5 0.63 3.77 entry 90 -object/building/player/player_house_corellia_small_style_02_floorplan_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 4 3 4320 800 1 4 - object/tangible/terminal/terminal_player_structure.iff -6.7 0.62 3.55 entry 90 -object/building/player/player_house_corellia_medium_style_01.iff object/building/player/construction/construction_player_house_tatooine_medium_style_01.iff -1 9 4 5760 1700 1 4 - object/tangible/terminal/terminal_player_structure.iff 3 0.62 6.4 public 180 -object/building/player/player_house_corellia_medium_style_02.iff object/building/player/construction/construction_player_house_tatooine_medium_style_01.iff -1 9 4 5760 1700 1 4 - object/tangible/terminal/terminal_player_structure.iff -7.15 0.88 5.59 middleroom 180 -object/building/player/player_house_corellia_large_style_01.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 13 5 7200 2500 1 4 - object/tangible/terminal/terminal_player_structure.iff 3.17 4.59 -4.4 mainhall1 0 -object/building/player/player_house_corellia_large_style_02.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 13 5 7200 2500 1 4 - object/tangible/terminal/terminal_player_structure.iff -6.22 4.71 -3.85 hallway 180 -object/building/player/player_house_generic_small_style_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 4 3 4320 800 1 4 - object/tangible/terminal/terminal_player_structure.iff -5 0.74 -2.76 entry -90 -object/building/player/player_house_generic_small_style_01_floorplan_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 4 3 4320 800 1 4 - object/tangible/terminal/terminal_player_structure.iff -5 0.74 -1.81 entry -90 -object/building/player/player_house_generic_small_style_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 4 3 4320 800 1 4 - object/tangible/terminal/terminal_player_structure.iff -6.5 0.63 3.77 entry 90 -object/building/player/player_house_generic_small_style_02_floorplan_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 4 3 4320 800 1 4 - object/tangible/terminal/terminal_player_structure.iff -6.69 0.62 3.55 entry 90 -object/building/player/player_house_generic_medium_style_01.iff object/building/player/construction/construction_player_house_tatooine_medium_style_01.iff -1 9 4 5760 1700 1 4 - object/tangible/terminal/terminal_player_structure.iff 3 0.62 6.4 public 180 -object/building/player/player_house_generic_medium_style_02.iff object/building/player/construction/construction_player_house_tatooine_medium_style_01.iff -1 9 4 5760 1700 1 4 - object/tangible/terminal/terminal_player_structure.iff -7.15 0.88 5.59 middleroom 180 -object/building/player/player_house_generic_large_style_01.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 13 5 7200 2500 1 4 - object/tangible/terminal/terminal_player_structure.iff 3.17 4.59 -4.4 mainhall1 0 -object/building/player/player_house_generic_large_style_02.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 13 5 7200 2500 1 4 - object/tangible/terminal/terminal_player_structure.iff -6.22 4.71 -3.85 hallway 180 -object/building/player/player_house_naboo_small_style_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 4 3 4320 800 1 4 - object/tangible/terminal/terminal_player_structure.iff 3.1 0.7 5.31 foyer -90 -object/building/player/player_house_naboo_small_style_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 4 3 4320 800 1 4 - object/tangible/terminal/terminal_player_structure.iff 0.6 0.7 6.15 hall 180 -object/building/player/player_house_naboo_medium_style_01.iff object/building/player/construction/construction_player_house_tatooine_medium_style_01.iff -1 9 4 5760 1700 1 4 - object/tangible/terminal/terminal_player_structure.iff 9.89 1.1 -10.75 foyerdown 0 -object/building/player/player_house_naboo_medium_style_02.iff object/building/player/construction/construction_player_house_tatooine_medium_style_01.iff -1 9 4 5760 1700 1 4 - object/tangible/terminal/terminal_player_structure.iff 5.62 1.06 7.98 foyer 180 -object/building/player/player_house_naboo_large_style_01.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 13 5 7200 2500 1 4 - object/tangible/terminal/terminal_player_structure.iff 14.85 4.7 -1.76 hall1 -90 -object/building/player/player_house_tatooine_small_style_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 4 3 4320 800 1 4 - object/tangible/terminal/terminal_player_structure.iff 3.79 1.06 6.02 foyer 180 -object/building/player/player_house_tatooine_small_style_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 4 3 4320 800 1 4 - object/tangible/terminal/terminal_player_structure.iff 3.79 1.06 6.02 foyer 180 -object/building/player/player_house_tatooine_medium_style_01.iff object/building/player/construction/construction_player_house_tatooine_medium_style_01.iff -1 9 4 5760 1700 1 4 - object/tangible/terminal/terminal_player_structure.iff 6.94 1.06 7.98 foyer 180 -object/building/player/player_house_tatooine_large_style_01.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 13 5 7200 2500 1 4 - object/tangible/terminal/terminal_player_structure.iff 8.16 1.06 11.24 public 180 -object/installation/manufacture/clothing_factory.iff object/installation/base/construction_installation_base.iff -1 13 6 1000 2500 50 4 -object/installation/manufacture/food_factory.iff object/installation/base/construction_installation_base.iff -1 13 6 1000 2500 50 4 -object/installation/manufacture/weapon_factory.iff object/installation/base/construction_installation_base.iff -1 13 6 1000 2500 50 4 -object/installation/manufacture/structure_factory.iff object/installation/base/construction_installation_base.iff 1 13 6 1000 2500 50 4 -object/installation/generators/power_generator_fusion_style_1.iff object/installation/base/construction_installation_base.iff -1 15 6 1000 3000 0 4 -object/installation/generators/power_generator_photo_bio_style_1.iff object/installation/base/construction_installation_base.iff -1 15 6 1000 3000 0 4 -object/installation/generators/power_generator_solar_style_1.iff object/installation/base/construction_installation_base.iff -1 15 6 1000 3000 0 4 -object/installation/generators/power_generator_geothermal_style_1.iff object/installation/base/construction_installation_base.iff -1 15 6 1000 3000 0 4 -object/installation/generators/power_generator_wind_style_1.iff object/installation/base/construction_installation_base.iff -1 15 6 1000 3000 0 4 -object/installation/mining_gas/mining_gas_harvester_style_1.iff object/installation/base/construction_installation_base.iff -1 8 6 1000 1500 25 4 -object/installation/mining_gas/mining_gas_harvester_style_2.iff object/installation/base/construction_installation_base.iff -1 15 6 1000 3000 50 4 -object/installation/mining_gas/mining_gas_harvester_style_3.iff object/installation/base/construction_installation_base.iff -1 23 6 1000 4500 75 4 -object/installation/mining_gas/mining_gas_harvester_style_4.iff object/installation/base/construction_installation_base.iff -3 63 6 1000 12375 206 4 -object/installation/mining_liquid/mining_liquid_harvester_style_1.iff object/installation/base/construction_installation_base.iff -1 8 6 1000 1500 25 4 -object/installation/mining_liquid/mining_liquid_harvester_style_2.iff object/installation/base/construction_installation_base.iff -1 15 6 1000 3000 50 4 -object/installation/mining_liquid/mining_liquid_harvester_style_3.iff object/installation/base/construction_installation_base.iff -1 23 6 1000 4500 75 4 -object/installation/mining_liquid/mining_liquid_harvester_style_4.iff object/installation/base/construction_installation_base.iff -3 63 6 1000 12375 206 4 -object/installation/mining_liquid/mining_liquid_moisture_harvester.iff object/installation/base/construction_installation_base.iff -1 8 6 1000 1500 25 4 -object/installation/mining_liquid/mining_liquid_moisture_harvester_medium.iff object/installation/base/construction_installation_base.iff -1 15 6 1000 3000 50 4 -object/installation/mining_liquid/mining_liquid_moisture_harvester_heavy.iff object/installation/base/construction_installation_base.iff -1 23 6 1000 4500 75 4 -object/installation/mining_liquid/mining_liquid_moisture_harvester_elite.iff object/installation/base/construction_installation_base.iff -3 63 6 1000 12375 206 4 -object/installation/mining_ore/mining_ore_harvester_style_1.iff object/installation/base/construction_installation_base.iff -1 8 6 1000 1500 25 20 4 -object/installation/mining_ore/mining_ore_harvester_style_2.iff object/installation/mining_ore/construction/construction_mining_ore_harvester_style_2.iff -1 15 6 1000 3000 50 4 -object/installation/mining_ore/mining_ore_harvester_heavy.iff object/installation/mining_ore/construction/construction_mining_ore_harvester_style_heavy.iff -1 23 6 1000 4500 75 10 4 -object/installation/mining_ore/mining_ore_harvester_elite.iff object/installation/mining_ore/construction/construction_mining_ore_harvester_style_heavy.iff -3 63 6 1000 12375 206 4 -object/installation/mining_organic/mining_organic_creature_farm.iff object/installation/base/construction_installation_base.iff 1 13 6 1000 2500 50 4 -object/installation/mining_organic/mining_organic_flora_farm.iff object/installation/base/construction_installation_base.iff -1 8 6 1000 1500 25 4 -object/installation/mining_organic/mining_organic_flora_farm_medium.iff object/installation/base/construction_installation_base.iff -1 15 6 1000 3000 50 4 -object/installation/mining_organic/mining_organic_flora_farm_heavy.iff object/installation/base/construction_installation_base.iff -1 23 6 1000 4500 75 4 -object/installation/mining_organic/mining_organic_flora_farm_elite.iff object/installation/base/construction_installation_base.iff -3 63 6 1000 12375 206 4 -object/building/player/player_guildhall_corellia_style_01.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 4 25 5 7200 5000 1 4 - object/tangible/terminal/terminal_player_structure.iff 17.88 2.25 10.45 closeta 90 -object/building/player/player_guildhall_generic_style_01.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 4 25 5 7200 5000 1 4 - object/tangible/terminal/terminal_player_structure.iff 17.88 2.25 10.45 closeta 90 -object/building/player/player_guildhall_naboo_style_01.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 4 25 5 7200 5000 1 4 - object/tangible/terminal/terminal_player_structure.iff 17.88 2.25 10.45 closeta 90 -object/building/player/player_guildhall_tatooine_style_01.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 4 25 5 7200 5000 1 4 - object/tangible/terminal/terminal_player_structure.iff 17.88 2.25 10.45 closeta 90 -object/building/player/player_guildhall_tatooine_style_02.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 2 25 5 7200 5000 1 4 - object/tangible/terminal/terminal_player_structure.iff 9.13 1 6.36 lobby 90 -object/installation/turret/turret_block_large.iff object/installation/base/construction_installation_base.iff 0 0 15 6 3000 -object/installation/turret/turret_block_med.iff object/installation/base/construction_installation_base.iff 0 0 10 6 2000 -object/installation/turret/turret_block_sm.iff object/installation/base/construction_installation_base.iff 0 0 5 6 1000 - -object/installation/faction_perk/covert_detector/detector_32m.iff object/installation/base/construction_installation_base.iff 1 0 0 8 6 10000 1500 4 -object/installation/faction_perk/turret/block_lg.iff object/installation/base/construction_installation_base.iff 1 0 0 15 6 300000 3000 4 -object/installation/faction_perk/turret/block_med.iff object/installation/base/construction_installation_base.iff 1 0 0 10 6 200000 2000 4 -object/installation/faction_perk/turret/block_sm.iff object/installation/base/construction_installation_base.iff 1 0 0 5 6 75000 1000 4 -object/installation/faction_perk/turret/dish_sm.iff object/installation/base/construction_installation_base.iff 1 0 0 5 6 75000 1000 4 -object/installation/faction_perk/turret/dish_lg.iff object/installation/base/construction_installation_base.iff 1 0 0 15 6 300000 3000 4 -object/installation/faction_perk/turret/tower_lg.iff object/installation/base/construction_installation_base.iff 1 0 0 15 6 300000 3000 4 -object/installation/faction_perk/turret/tower_med.iff object/installation/base/construction_installation_base.iff 1 0 0 10 6 200000 2000 4 -object/installation/faction_perk/turret/tower_sm.iff object/installation/base/construction_installation_base.iff 1 0 0 5 6 75000 1000 4 - 1 -object/installation/faction_perk/minefield/field_1x1.iff object/installation/base/construction_installation_base.iff -1 0 0 0 1000 4 - -object/building/faction_perk/hq/hq_s01_rebel.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s01_fp.iff 4 8 0 0 200 100000 1 4 - object/tangible/terminal/terminal_hq_rebel.iff 0 0 -6 mainhall 0 -object/building/faction_perk/hq/hq_s01_imp.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s01_fp.iff 4 8 0 0 200 100000 1 4 - object/tangible/terminal/terminal_hq_imperial.iff 0 0 -6 mainhall 0 -object/building/faction_perk/hq/hq_s02_rebel.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s02_fp.iff 4 8 0 0 200 100000 1 4 - object/tangible/terminal/terminal_hq_rebel.iff 0 0.25 1.86 hall1 0 -object/building/faction_perk/hq/hq_s02_imp.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s02_fp.iff 4 8 0 0 200 100000 1 4 - object/tangible/terminal/terminal_hq_imperial.iff 0 0.25 1.86 hall1 0 -object/building/faction_perk/hq/hq_s03_rebel.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s03_fp.iff 4 8 0 0 200 100000 1 4 - object/tangible/terminal/terminal_hq_rebel.iff 0 0.25 1.86 hall1 0 -object/building/faction_perk/hq/hq_s03_imp.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s03_fp.iff 4 8 0 0 200 100000 1 4 - object/tangible/terminal/terminal_hq_imperial.iff 0 0.25 1.86 hall1 0 -object/building/faction_perk/hq/hq_s04_rebel.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s04_fp.iff 4 8 0 0 200 100000 1 4 - object/tangible/terminal/terminal_hq_rebel.iff 0 0.25 1.86 hall1 0 -object/building/faction_perk/hq/hq_s04_imp.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s04_fp.iff 4 8 0 0 200 100000 1 4 - object/tangible/terminal/terminal_hq_imperial.iff 0 0.25 1.86 hall1 0 -object/building/faction_perk/hq/hq_s05_rebel.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s05_fp.iff 7 32 0 0 200 100000 1 4 - object/tangible/terminal/terminal_hq_rebel.iff 0 1 12.5 mainhall 180 -object/building/faction_perk/hq/hq_s05_imp.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s05_fp.iff 7 32 0 0 200 100000 1 4 - object/tangible/terminal/terminal_hq_imperial.iff 0 1 12.5 mainhall 180 -object/building/player/player_merchant_tent_style_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 3 3 4320 600 1 private_place_merchant_tent 100 place_merchant_tent 4 - object/tangible/terminal/terminal_player_structure.iff -0.15 0.27 -2.76 r1 0 -object/building/player/player_merchant_tent_style_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 3 3 4320 600 1 private_place_merchant_tent 100 place_merchant_tent 4 - object/tangible/terminal/terminal_player_structure.iff -0.15 0.27 -2.76 r1 0 -object/building/player/player_merchant_tent_style_03.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 3 3 4320 600 1 private_place_merchant_tent 100 place_merchant_tent 4 - object/tangible/terminal/terminal_player_structure.iff -0.15 0.27 -2.76 r1 0 -object/building/player/city/cityhall_tatooine.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 1 1 0 0 0 1000 1 private_place_cityhall 100 place_cityhall 4 - object/tangible/terminal/terminal_player_structure.iff -16.78 2 7.9 mayoroffice 180 - object/tangible/terminal/terminal_city_vote.iff 0.25 2 -9.65 grandhall 0 - object/tangible/terminal/terminal_city.iff 17.07 2 -8.7 library 0 -object/building/player/city/cityhall_naboo.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 1 1 0 0 0 1000 1 private_place_cityhall 100 place_cityhall 4 - object/tangible/terminal/terminal_player_structure.iff -16.78 2 7.9 mayoroffice 180 - object/tangible/terminal/terminal_city_vote.iff 0.25 2 -9.65 grandhall 0 - object/tangible/terminal/terminal_city.iff 17.07 2 -8.7 library 0 -object/building/player/city/cityhall_corellia.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 1 1 0 0 0 1000 1 private_place_cityhall 100 place_cityhall 4 - object/tangible/terminal/terminal_player_structure.iff -16.78 2 7.9 mayoroffice 180 - object/tangible/terminal/terminal_city_vote.iff 0.25 2 -9.65 grandhall 0 - object/tangible/terminal/terminal_city.iff 17.07 2 -8.7 library 0 -object/building/player/city/bank_tatooine.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 1 2 4 0 0 1000 1 private_place_bank 100 place_bank 4 - object/tangible/terminal/terminal_bank.iff -1 -0.25 0 WORLD_DELTA 90 - object/tangible/terminal/terminal_bank.iff 1 -0.25 0 WORLD_DELTA -90 - object/tangible/terminal/terminal_bank.iff 0 -0.25 -1 WORLD_DELTA 0 - object/tangible/terminal/terminal_player_structure_nosnap.iff 0 -0.25 1 WORLD_DELTA 180 -object/building/player/city/bank_naboo.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 1 2 4 0 0 1000 1 private_place_bank 100 place_bank 4 - object/tangible/terminal/terminal_bank.iff -1 -0.25 0 WORLD_DELTA 90 - object/tangible/terminal/terminal_bank.iff 1 -0.25 0 WORLD_DELTA -90 - object/tangible/terminal/terminal_bank.iff 0 -0.25 -1 WORLD_DELTA 0 - object/tangible/terminal/terminal_player_structure_nosnap.iff 0 -0.25 1 WORLD_DELTA 180 -object/building/player/city/bank_corellia.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 1 2 4 0 0 1000 1 private_place_bank 100 place_bank 4 - object/tangible/terminal/terminal_bank.iff -1 -0.25 0 WORLD_DELTA 90 - object/tangible/terminal/terminal_bank.iff 1 -0.25 0 WORLD_DELTA -90 - object/tangible/terminal/terminal_bank.iff 0 -0.25 -1 WORLD_DELTA 0 - object/tangible/terminal/terminal_player_structure_nosnap.iff 0 -0.25 1 WORLD_DELTA 180 -object/building/player/city/barn_no_planet_restriction.iff object/building/player/construction/construction_player_barn.iff 0 32 4 3 4320 800 1 4 - object/tangible/terminal/terminal_player_structure_nosnap.iff 3 1.8 3 entry 180 -object/building/player/city/cantina_tatooine.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 2 13 5 7200 2500 1 private_place_cantina 100 place_cantina 4 - object/tangible/terminal/terminal_player_structure.iff -4.1 2 6.19 cantina 157 -object/building/player/city/cantina_naboo.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 2 13 5 7200 2500 1 private_place_cantina 100 place_cantina 4 - object/tangible/terminal/terminal_player_structure.iff -4.1 2 6.19 cantina 157 -object/building/player/city/cantina_corellia.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 2 13 5 7200 2500 1 private_place_cantina 100 place_cantina 4 - object/tangible/terminal/terminal_player_structure.iff -4.1 2 6.19 cantina 157 -object/building/player/city/cloning_tatooine.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 -5 1 3 3 1 0 0 1000 1 private_place_cloning 100 place_cloning 4 - object/tangible/terminal/terminal_player_structure.iff -13.5 1 -6.4 cloninglab 90 - object/tangible/terminal/terminal_cloning.iff -14 1 3.1 cloninglab 90 - object/tangible/terminal/terminal_insurance.iff 6.3 1 -6.69 cloninglab -90 -object/building/player/city/cloning_corellia.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 1 3 3 1 0 0 1000 1 private_place_cloning 100 place_cloning 4 - object/tangible/terminal/terminal_player_structure.iff -13.5 1 -6.4 cloninglab 90 - object/tangible/terminal/terminal_cloning.iff -14 1 3.1 cloninglab 90 - object/tangible/terminal/terminal_insurance.iff 6.3 1 -6.69 cloninglab -90 -object/building/player/city/cloning_naboo.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 1 3 3 1 0 0 1000 1 private_place_cloning 100 place_cloning 4 - object/tangible/terminal/terminal_player_structure.iff -13.5 1 -6.4 cloninglab 90 - object/tangible/terminal/terminal_cloning.iff -14 1 3.1 cloninglab 90 - object/tangible/terminal/terminal_insurance.iff 6.3 1 -6.69 cloninglab -90 -object/building/player/city/diner_no_planet_restriction.iff object/building/player/construction/construction_player_diner.iff 1 32 4 3 4320 800 1 4 - object/tangible/terminal/terminal_player_structure_nosnap.iff 8.8 1.1 1.73 entry -91 -object/building/player/city/hospital_tatooine.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 0 3 13 5 7200 2500 1 private_place_hospital 100 place_hospital 4 - object/tangible/terminal/terminal_player_structure.iff 7.48 2 1.5 mainroom -90 -object/building/player/city/hospital_corellia.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 0 3 13 5 7200 2500 1 private_place_hospital 100 place_hospital 4 - object/tangible/terminal/terminal_player_structure.iff 7.48 2 1.5 mainroom -90 -object/building/player/city/hospital_naboo.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 0 3 13 5 7200 2500 1 private_place_hospital 100 place_hospital 4 - object/tangible/terminal/terminal_player_structure.iff 7.48 2 1.5 mainroom -90 -object/building/player/city/theater_tatooine.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 0 4 13 5 7200 2500 1 private_place_theater 100 place_theater 4 - object/tangible/terminal/terminal_player_structure.iff -7 2 -14.2 backstage 90 -object/building/player/city/theater_naboo.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 0 4 13 5 7200 2500 1 private_place_theater 100 place_theater 4 - object/tangible/terminal/terminal_player_structure.iff -7 2 -14.2 backstage 90 -object/building/player/city/theater_corellia.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 0 4 13 5 7200 2500 1 private_place_theater 100 place_theater 4 - object/tangible/terminal/terminal_player_structure.iff -7 2 -14.2 backstage 90 -object/building/player/city/shuttleport_tatooine.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 1 4 2 1 0 0 1000 1 private_place_shuttleport 100 place_shuttleport 4 - object/tangible/terminal/terminal_player_structure_nosnap.iff 8.4 -1 -14.5 WORLD_DELTA 90 -object/building/player/city/shuttleport_naboo.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 1 4 2 1 0 0 1000 1 private_place_shuttleport 100 place_shuttleport 4 - object/tangible/terminal/terminal_player_structure_nosnap.iff 8.4 -1 -14.5 WORLD_DELTA 90 -object/building/player/city/shuttleport_corellia.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 1 4 2 1 0 0 1000 1 private_place_shuttleport 100 place_shuttleport 4 - object/tangible/terminal/terminal_player_structure_nosnap.iff 8.4 -1 -14.5 WORLD_DELTA 90 -object/building/player/city/garden_corellia_lrg_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_large_garden 100 place_large_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 -object/building/player/city/garden_corellia_lrg_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_large_garden 100 place_large_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 -object/building/player/city/garden_corellia_lrg_03.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_large_garden 100 place_large_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 -object/building/player/city/garden_corellia_lrg_04.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_large_garden 100 place_large_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 -object/building/player/city/garden_corellia_lrg_05.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_large_garden 100 place_large_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 -object/building/player/city/garden_corellia_med_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_medium_garden 100 place_medium_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 -object/building/player/city/garden_corellia_med_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_medium_garden 100 place_medium_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 -object/building/player/city/garden_corellia_med_03.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_medium_garden 100 place_medium_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 -object/building/player/city/garden_corellia_med_04.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_medium_garden 100 place_medium_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 -object/building/player/city/garden_corellia_med_05.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_medium_garden 100 place_medium_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 -object/building/player/city/garden_corellia_sml_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 -object/building/player/city/garden_corellia_sml_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 -object/building/player/city/garden_corellia_sml_03.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 -object/building/player/city/garden_corellia_sml_04.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 -object/building/player/city/garden_corellia_sml_05.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 -object/building/player/city/garden_naboo_lrg_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_large_garden 100 place_large_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 -object/building/player/city/garden_naboo_lrg_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_large_garden 100 place_large_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 -object/building/player/city/garden_naboo_lrg_03.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_large_garden 100 place_large_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 -object/building/player/city/garden_naboo_lrg_04.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_large_garden 100 place_large_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 -object/building/player/city/garden_naboo_lrg_05.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_large_garden 100 place_large_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 -object/building/player/city/garden_naboo_med_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_medium_garden 100 place_medium_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 -object/building/player/city/garden_naboo_med_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_medium_garden 100 place_medium_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 -object/building/player/city/garden_naboo_med_03.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_medium_garden 100 place_medium_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 -object/building/player/city/garden_naboo_med_04.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_medium_garden 100 place_medium_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 -object/building/player/city/garden_naboo_med_05.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_medium_garden 100 place_medium_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 -object/building/player/city/garden_naboo_sml_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 -object/building/player/city/garden_naboo_sml_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 -object/building/player/city/garden_naboo_sml_03.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 -object/building/player/city/garden_naboo_sml_04.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 -object/building/player/city/garden_naboo_sml_05.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 -object/building/player/city/garden_tatooine_lrg_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_large_garden 100 place_large_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 -object/building/player/city/garden_tatooine_lrg_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_large_garden 100 place_large_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 -object/building/player/city/garden_tatooine_lrg_03.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_large_garden 100 place_large_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 -object/building/player/city/garden_tatooine_lrg_04.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_large_garden 100 place_large_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 -object/building/player/city/garden_tatooine_lrg_05.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_large_garden 100 place_large_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 -object/building/player/city/garden_tatooine_med_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_medium_garden 100 place_medium_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 -object/building/player/city/garden_tatooine_med_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_medium_garden 100 place_medium_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 -object/building/player/city/garden_tatooine_med_03.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_medium_garden 100 place_medium_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 -object/building/player/city/garden_tatooine_med_04.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_medium_garden 100 place_medium_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 -object/building/player/city/garden_tatooine_med_05.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_medium_garden 100 place_medium_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 -object/building/player/city/garden_tatooine_sml_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 -object/building/player/city/garden_tatooine_sml_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 -object/building/player/city/garden_tatooine_sml_03.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 -object/building/player/city/garden_tatooine_sml_04.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 -object/building/player/city/garden_tatooine_sml_05.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 -object/building/player/city/garden_dantooine_lrg_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_exotic_garden 100 place_exotic_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 -object/building/player/city/garden_dantooine_med_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_exotic_garden 100 place_exotic_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 -object/building/player/city/garden_dantooine_sml_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_exotic_garden 100 place_exotic_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 -object/building/player/city/garden_dathomir_lrg_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_exotic_garden 100 place_exotic_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 -object/building/player/city/garden_dathomir_med_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_exotic_garden 100 place_exotic_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 -object/building/player/city/garden_dathomir_sml_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_exotic_garden 100 place_exotic_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 -object/building/player/city/garden_endor_lrg_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_exotic_garden 100 place_exotic_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 -object/building/player/city/garden_endor_med_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_exotic_garden 100 place_exotic_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 -object/building/player/city/garden_endor_sml_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_exotic_garden 100 place_exotic_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 -object/building/player/player_garage_tatooine_style_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 1 0 0 1000 private_place_garage 100 place_garage 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff -3 -1 -3 WORLD_DELTA 0 -object/building/player/player_garage_naboo_style_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 1 0 0 1000 private_place_garage 100 place_garage 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff -3 -1 -3 WORLD_DELTA 0 -object/building/player/player_garage_corellia_style_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 1 0 0 1000 private_place_garage 100 place_garage 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff -3 -1 -3 WORLD_DELTA 0 -object/building/faction_perk/hq/hq_s01_rebel_pvp.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s01_fp.iff 4 8 0 0 200 100000 1 4 - object/tangible/terminal/terminal_hq_rebel.iff 0 0 -6 mainhall 0 -object/building/faction_perk/hq/hq_s01_imp_pvp.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s01_fp.iff 4 8 0 0 200 100000 1 4 - object/tangible/terminal/terminal_hq_imperial.iff 0 0 -6 mainhall 0 -object/building/faction_perk/hq/hq_s02_rebel_pvp.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s02_fp.iff 4 8 0 0 200 100000 1 4 - object/tangible/terminal/terminal_hq_rebel.iff 0 0.25 1.86 hall1 0 -object/building/faction_perk/hq/hq_s02_imp_pvp.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s02_fp.iff 4 8 0 0 200 100000 1 4 - object/tangible/terminal/terminal_hq_imperial.iff 0 0.25 1.86 hall1 0 -object/building/faction_perk/hq/hq_s03_rebel_pvp.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s03_fp.iff 4 8 0 0 200 100000 1 4 - object/tangible/terminal/terminal_hq_rebel.iff 0 0.25 1.86 hall1 0 -object/building/faction_perk/hq/hq_s03_imp_pvp.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s03_fp.iff 4 8 0 0 200 100000 1 4 - object/tangible/terminal/terminal_hq_imperial.iff 0 0.25 1.86 hall1 0 -object/building/faction_perk/hq/hq_s04_rebel_pvp.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s04_fp.iff 4 8 0 0 200 100000 1 4 - object/tangible/terminal/terminal_hq_rebel.iff 0 0.25 1.86 hall1 0 -object/building/faction_perk/hq/hq_s04_imp_pvp.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s04_fp.iff 4 8 0 0 200 100000 1 4 - object/tangible/terminal/terminal_hq_imperial.iff 0 0.25 1.86 hall1 0 -object/building/faction_perk/hq/hq_s05_rebel_pvp.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s05_fp.iff 7 32 0 0 200 100000 1 4 - object/tangible/terminal/terminal_hq_rebel.iff 0 1 12.5 mainhall 180 -object/building/faction_perk/hq/hq_s05_imp_pvp.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s05_fp.iff 7 32 0 0 200 100000 1 4 - object/tangible/terminal/terminal_hq_imperial.iff 0 1 12.5 mainhall 180 -object/building/player/player_house_mustafar_lg.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff -1 8 13 5 7200 0 1 4 - object/tangible/terminal/terminal_player_structure.iff -4.5 0.46 6.33 entrance 90 - object/tangible/terminal/terminal_elevator_up.iff -1.19 -33 1.61 elevator 160 - object/tangible/terminal/terminal_elevator_down.iff 1.18 -26 1.65 elevator -166 - object/tangible/terminal/terminal_elevator_down.iff 1.18 0.47 1.65 elevator -166 - object/tangible/terminal/terminal_elevator_up.iff -1.19 -26 1.61 elevator 160 -object/building/player/city/garden_imperial_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 1.5 -0.9 -3.5 WORLD_DELTA 0 -object/building/player/city/garden_rebel_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 - object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 2.85 -0.9 -4 WORLD_DELTA 0 -object/building/player/player_house_tatooine_small_window_style_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 4 3 4320 800 1 4 - object/tangible/terminal/terminal_player_structure.iff 3.79 1.06 6.02 foyer 180 -object/building/player/player_house_naboo_small_window_style_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff -1 4 3 4320 800 1 4 - object/tangible/terminal/terminal_player_structure.iff 3.1 0.7 5.31 foyer -90 -object/building/player/player_house_generic_small_windowed.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 4 3 4320 800 1 4 - object/tangible/terminal/terminal_player_structure.iff -5 0.74 -1.81 entry -90 -object/building/player/player_house_generic_medium_windowed.iff object/building/player/construction/construction_player_house_tatooine_medium_style_01.iff -1 9 4 5760 1700 1 4 - object/tangible/terminal/terminal_player_structure.iff 5 0.62 6.4 public -180 -object/building/player/player_house_generic_small_window_style_03.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 4 3 4320 800 1 4 - object/tangible/terminal/terminal_player_structure.iff -1.8 3 4.3 entry -180 -object/building/player/player_house_generic_medium_windowed_s02.iff object/building/player/construction/construction_player_house_tatooine_medium_style_01.iff -1 9 4 5760 1700 1 4 - object/tangible/terminal/terminal_player_structure.iff 5 -2 6 entryway -180 -object/building/player/player_house_generic_large_window_s01.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 13 5 7200 2500 1 4 - object/tangible/terminal/terminal_player_structure.iff -6.22 4.71 -3.85 hallway 180 Z = FORWARD/BACK -object/building/player/player_house_generic_large_window_s02.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 13 5 7200 2500 1 4 Y = UP/DOWN - object/tangible/terminal/terminal_player_structure.iff 8 0 -8.5 entry 0 X = right/left -object/building/player/player_house_hangar.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 5 13 5 7200 0 1 4 Y = UP/DOWN - object/tangible/terminal/terminal_player_structure.iff 8.9 0 -6.5 entry -90 X = right/left - object/tangible/terminal/terminal_player_hangar_structure.iff 8.9 0 -12.6 entry -90 -object/building/player/player_house_atat.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 9 13 5 7200 2500 1 4 - object/tangible/terminal/terminal_player_structure.iff 3.8 1.06 10.5 body 180 -object/building/player/player_house_tcg_emperors_spire.iff object/building/player/construction/construction_player_tcg_emperors_spire.iff 8 32 4 3 4320 800 1 4 - object/tangible/terminal/terminal_player_structure_nosnap.iff -2.6 25.6 0 tower -91 - object/tangible/terminal/terminal_elevator_up.iff -0.76 1.69 -1.1 elevator 0 - object/tangible/terminal/terminal_elevator_down.iff 0.74 26.7 -1.1 elevator 0 -object/building/player/player_house_tcg_rebel_spire.iff object/building/player/construction/construction_player_tcg_rebel_spire.iff 8 32 4 3 4320 800 1 4 - object/tangible/terminal/terminal_player_structure_nosnap.iff -1.24 25.4 -1.59 tower 180 - object/tangible/terminal/terminal_elevator_up.iff -0.75 1.59 -1.1 elevator 0 - object/tangible/terminal/terminal_elevator_down.iff 0.74 25.1 -1.1 elevator 0 -object/building/player/player_house_sandcrawler.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 9 13 5 7200 2500 1 4 - object/tangible/terminal/terminal_player_structure.iff -4.46 8.81 -13.52 foyer 90 -object/building/player/player_pgc_merchant_tent_s01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 3 3 4320 600 1 4 - object/tangible/terminal/terminal_player_structure.iff -0.15 0.27 -2.76 r1 0 -object/building/player/player_house_tcg_commando_bunker.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 0 8 13 5 7200 0 1 4 - object/tangible/terminal/terminal_player_structure.iff 3.2 0.4 3.16 entry 180 -object/building/player/player_house_tcg_vehicle_garage.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 6 8 13 5 7200 0 1 4 - object/tangible/terminal/terminal_player_structure.iff 14.56 0.53 12.79 entry 180 - object/tangible/terminal/terminal_player_vehicle_garage.iff -1.1 0.84 -9.95 entry 0 -object/building/player/player_house_tcg_vip_bunker.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 0 8 13 5 7200 0 1 4 - object/tangible/terminal/terminal_player_structure.iff -4.5 0.46 6.33 entrance 90 - - -object/building/player/player_house_tcg_8_bespin_house.iff object/building/player/construction/construction_player_house_tcg_8_bespin_house.iff 10 32 13 5 7200 0 1 - object/tangible/terminal/terminal_player_structure.iff 2.2 88.9 -5.9 entry 156 - object/tangible/terminal/terminal_elevator_up.iff 0.75 1 2 elevator -146 - object/tangible/terminal/terminal_elevator_down.iff 0.75 90 2 elevator -146 -object/building/player/player_house_tcg_8_yoda_house.iff object/building/player/construction/construction_player_house_tcg_8_yoda_house.iff 4 32 13 3 4320 800 1 4 - object/tangible/terminal/terminal_player_structure_nosnap.iff 8.8 1.1 1.73 entry -91 -object/building/player/player_house_yt1300.iff object/building/player/construction/construction_player_house_yt1300.iff 5 32 13 5 7200 0 1 - object/tangible/terminal/terminal_player_structure.iff -3.5 5.2 -2.3 storage5 180 - object/tangible/terminal/terminal_elevator_up.iff -1.7 -0.8 0 elevator -90 - object/tangible/terminal/terminal_elevator_down.iff -1.7 5.4 0 elevator -90 -object/building/player/player_house_tree_house_01.iff object/building/player/construction/construction_player_house_tree_house_01.iff 4 32 13 3 4320 800 1 4 - object/tangible/terminal/terminal_player_structure_nosnap.iff 8.8 1.1 1.73 entry -91 -object/building/player/player_house_wod_ns_hut.iff object/building/player/construction/construction_player_house_wod_ns_hut.iff 0 32 13 3 4320 800 1 4 - object/tangible/terminal/terminal_player_structure_nosnap.iff 3.3 0.79 0.61 r1 -91 -object/building/player/player_house_wod_sm_hut.iff object/building/player/construction/construction_player_house_wod_sm_hut.iff 0 32 13 3 4320 800 1 4 - object/tangible/terminal/terminal_player_structure_nosnap.iff 3.3 0.79 0.61 r1 -91 -object/building/player/player_house_jabbas_sail_barge.iff object/building/player/construction/construction_player_house_jabbas_sail_barge.iff 10 32 13 5 7200 0 1 - object/tangible/terminal/terminal_player_structure.iff -2.9 16.5 4.5 interior 0 - object/tangible/terminal/terminal_elevator_up.iff 0 -5.4 0 interior 180 - object/tangible/terminal/terminal_elevator_down.iff -1.65 11.5 -2 interior 90 +STRUCTURE TEMP_STRUCTURE FOOTPRINT_TEMPLATE NO_LOT_REQUIREMENT LOT_REDUCTION EJECT_RANGE CIVIC CITY_RANK CITY_COST SHUTTLEPORT CLONE_FACILITY GARAGE CAN_RECLAIM MAINT_RATE DECAY_RATE CONDITION REDEED_COST HAS_SIGN POWER_RATE SKILLMOD SKILLMODVALUE SKILLMOD_MESSAGE VERSION OBJECT X Y Z CELL HEADING COMMENTS +s s s i I f[0] I I I I I I b[1] i i i i[0] I[0] f[0] s i s i s f f f s f c +object/building/player/player_house_tcg_relaxation_pool.iff object/building/player/construction/construction_player_tcg_relaxation_pool.iff 0 32 9 4 5760 1700 1 4 + object/tangible/terminal/terminal_player_structure_nosnap.iff 7.25 4 0 entry -90 +object/building/player/player_house_jedi_meditation_room.iff object/building/player/construction/construction_player_jedi_meditation_room.iff 0 32 4 3 4320 800 1 4 + object/tangible/terminal/terminal_player_structure_nosnap.iff 8.2 4 -1.1 entry -91 +object/building/player/player_house_sith_meditation_room.iff object/building/player/construction/construction_player_sith_meditation_room.iff 0 32 4 3 4320 800 1 4 + object/tangible/terminal/terminal_player_structure_nosnap.iff 4 4 1.85 entry 180 +object/building/player/player_house_corellia_small_style_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 4 3 4320 800 1 4 + object/tangible/terminal/terminal_player_structure.iff -5 0.74 -2.76 entry -90 +object/building/player/player_house_corellia_small_style_01_floorplan_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 4 3 4320 800 1 4 + object/tangible/terminal/terminal_player_structure.iff -5 0.74 -1.81 entry -90 +object/building/player/player_house_corellia_small_style_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 4 3 4320 800 1 4 + object/tangible/terminal/terminal_player_structure.iff -6.5 0.63 3.77 entry 90 +object/building/player/player_house_corellia_small_style_02_floorplan_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 4 3 4320 800 1 4 + object/tangible/terminal/terminal_player_structure.iff -6.7 0.62 3.55 entry 90 +object/building/player/player_house_corellia_medium_style_01.iff object/building/player/construction/construction_player_house_tatooine_medium_style_01.iff -1 9 4 5760 1700 1 4 + object/tangible/terminal/terminal_player_structure.iff 3 0.62 6.4 public 180 +object/building/player/player_house_corellia_medium_style_02.iff object/building/player/construction/construction_player_house_tatooine_medium_style_01.iff -1 9 4 5760 1700 1 4 + object/tangible/terminal/terminal_player_structure.iff -7.15 0.88 5.59 middleroom 180 +object/building/player/player_house_corellia_large_style_01.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 13 5 7200 2500 1 4 + object/tangible/terminal/terminal_player_structure.iff 3.17 4.59 -4.4 mainhall1 0 +object/building/player/player_house_corellia_large_style_02.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 13 5 7200 2500 1 4 + object/tangible/terminal/terminal_player_structure.iff -6.22 4.71 -3.85 hallway 180 +object/building/player/player_house_generic_small_style_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 4 3 4320 800 1 4 + object/tangible/terminal/terminal_player_structure.iff -5 0.74 -2.76 entry -90 +object/building/player/player_house_generic_small_style_01_floorplan_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 4 3 4320 800 1 4 + object/tangible/terminal/terminal_player_structure.iff -5 0.74 -1.81 entry -90 +object/building/player/player_house_generic_small_style_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 4 3 4320 800 1 4 + object/tangible/terminal/terminal_player_structure.iff -6.5 0.63 3.77 entry 90 +object/building/player/player_house_generic_small_style_02_floorplan_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 4 3 4320 800 1 4 + object/tangible/terminal/terminal_player_structure.iff -6.69 0.62 3.55 entry 90 +object/building/player/player_house_generic_medium_style_01.iff object/building/player/construction/construction_player_house_tatooine_medium_style_01.iff -1 9 4 5760 1700 1 4 + object/tangible/terminal/terminal_player_structure.iff 3 0.62 6.4 public 180 +object/building/player/player_house_generic_medium_style_02.iff object/building/player/construction/construction_player_house_tatooine_medium_style_01.iff -1 9 4 5760 1700 1 4 + object/tangible/terminal/terminal_player_structure.iff -7.15 0.88 5.59 middleroom 180 +object/building/player/player_house_generic_large_style_01.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 13 5 7200 2500 1 4 + object/tangible/terminal/terminal_player_structure.iff 3.17 4.59 -4.4 mainhall1 0 +object/building/player/player_house_generic_large_style_02.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 13 5 7200 2500 1 4 + object/tangible/terminal/terminal_player_structure.iff -6.22 4.71 -3.85 hallway 180 +object/building/player/player_house_naboo_small_style_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 4 3 4320 800 1 4 + object/tangible/terminal/terminal_player_structure.iff 3.1 0.7 5.31 foyer -90 +object/building/player/player_house_naboo_small_style_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 4 3 4320 800 1 4 + object/tangible/terminal/terminal_player_structure.iff 0.6 0.7 6.15 hall 180 +object/building/player/player_house_naboo_medium_style_01.iff object/building/player/construction/construction_player_house_tatooine_medium_style_01.iff -1 9 4 5760 1700 1 4 + object/tangible/terminal/terminal_player_structure.iff 9.89 1.1 -10.75 foyerdown 0 +object/building/player/player_house_naboo_medium_style_02.iff object/building/player/construction/construction_player_house_tatooine_medium_style_01.iff -1 9 4 5760 1700 1 4 + object/tangible/terminal/terminal_player_structure.iff 5.62 1.06 7.98 foyer 180 +object/building/player/player_house_naboo_large_style_01.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 13 5 7200 2500 1 4 + object/tangible/terminal/terminal_player_structure.iff 14.85 4.7 -1.76 hall1 -90 +object/building/player/player_house_tatooine_small_style_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 4 3 4320 800 1 4 + object/tangible/terminal/terminal_player_structure.iff 3.79 1.06 6.02 foyer 180 +object/building/player/player_house_tatooine_small_style_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 4 3 4320 800 1 4 + object/tangible/terminal/terminal_player_structure.iff 3.79 1.06 6.02 foyer 180 +object/building/player/player_house_tatooine_medium_style_01.iff object/building/player/construction/construction_player_house_tatooine_medium_style_01.iff -1 9 4 5760 1700 1 4 + object/tangible/terminal/terminal_player_structure.iff 6.94 1.06 7.98 foyer 180 +object/building/player/player_house_tatooine_large_style_01.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 13 5 7200 2500 1 4 + object/tangible/terminal/terminal_player_structure.iff 8.16 1.06 11.24 public 180 +object/installation/manufacture/clothing_factory.iff object/installation/base/construction_installation_base.iff -1 13 6 1000 2500 50 4 +object/installation/manufacture/food_factory.iff object/installation/base/construction_installation_base.iff -1 13 6 1000 2500 50 4 +object/installation/manufacture/weapon_factory.iff object/installation/base/construction_installation_base.iff -1 13 6 1000 2500 50 4 +object/installation/manufacture/structure_factory.iff object/installation/base/construction_installation_base.iff 1 13 6 1000 2500 50 4 +object/installation/generators/power_generator_fusion_style_1.iff object/installation/base/construction_installation_base.iff -1 15 6 1000 3000 0 4 +object/installation/generators/power_generator_photo_bio_style_1.iff object/installation/base/construction_installation_base.iff -1 15 6 1000 3000 0 4 +object/installation/generators/power_generator_solar_style_1.iff object/installation/base/construction_installation_base.iff -1 15 6 1000 3000 0 4 +object/installation/generators/power_generator_geothermal_style_1.iff object/installation/base/construction_installation_base.iff -1 15 6 1000 3000 0 4 +object/installation/generators/power_generator_wind_style_1.iff object/installation/base/construction_installation_base.iff -1 15 6 1000 3000 0 4 +object/installation/mining_gas/mining_gas_harvester_style_1.iff object/installation/base/construction_installation_base.iff -1 8 6 1000 1500 25 4 +object/installation/mining_gas/mining_gas_harvester_style_2.iff object/installation/base/construction_installation_base.iff -1 15 6 1000 3000 50 4 +object/installation/mining_gas/mining_gas_harvester_style_3.iff object/installation/base/construction_installation_base.iff -1 23 6 1000 4500 75 4 +object/installation/mining_gas/mining_gas_harvester_style_4.iff object/installation/base/construction_installation_base.iff -3 63 6 1000 12375 206 4 +object/installation/mining_liquid/mining_liquid_harvester_style_1.iff object/installation/base/construction_installation_base.iff -1 8 6 1000 1500 25 4 +object/installation/mining_liquid/mining_liquid_harvester_style_2.iff object/installation/base/construction_installation_base.iff -1 15 6 1000 3000 50 4 +object/installation/mining_liquid/mining_liquid_harvester_style_3.iff object/installation/base/construction_installation_base.iff -1 23 6 1000 4500 75 4 +object/installation/mining_liquid/mining_liquid_harvester_style_4.iff object/installation/base/construction_installation_base.iff -3 63 6 1000 12375 206 4 +object/installation/mining_liquid/mining_liquid_moisture_harvester.iff object/installation/base/construction_installation_base.iff -1 8 6 1000 1500 25 4 +object/installation/mining_liquid/mining_liquid_moisture_harvester_medium.iff object/installation/base/construction_installation_base.iff -1 15 6 1000 3000 50 4 +object/installation/mining_liquid/mining_liquid_moisture_harvester_heavy.iff object/installation/base/construction_installation_base.iff -1 23 6 1000 4500 75 4 +object/installation/mining_liquid/mining_liquid_moisture_harvester_elite.iff object/installation/base/construction_installation_base.iff -3 63 6 1000 12375 206 4 +object/installation/mining_ore/mining_ore_harvester_style_1.iff object/installation/base/construction_installation_base.iff -1 8 6 1000 1500 25 20 4 +object/installation/mining_ore/mining_ore_harvester_style_2.iff object/installation/mining_ore/construction/construction_mining_ore_harvester_style_2.iff -1 15 6 1000 3000 50 4 +object/installation/mining_ore/mining_ore_harvester_heavy.iff object/installation/mining_ore/construction/construction_mining_ore_harvester_style_heavy.iff -1 23 6 1000 4500 75 10 4 +object/installation/mining_ore/mining_ore_harvester_elite.iff object/installation/mining_ore/construction/construction_mining_ore_harvester_style_heavy.iff -3 63 6 1000 12375 206 4 +object/installation/mining_organic/mining_organic_creature_farm.iff object/installation/base/construction_installation_base.iff 1 13 6 1000 2500 50 4 +object/installation/mining_organic/mining_organic_flora_farm.iff object/installation/base/construction_installation_base.iff -1 8 6 1000 1500 25 4 +object/installation/mining_organic/mining_organic_flora_farm_medium.iff object/installation/base/construction_installation_base.iff -1 15 6 1000 3000 50 4 +object/installation/mining_organic/mining_organic_flora_farm_heavy.iff object/installation/base/construction_installation_base.iff -1 23 6 1000 4500 75 4 +object/installation/mining_organic/mining_organic_flora_farm_elite.iff object/installation/base/construction_installation_base.iff -3 63 6 1000 12375 206 4 +object/building/player/player_guildhall_corellia_style_01.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 4 25 5 7200 5000 1 4 + object/tangible/terminal/terminal_player_structure.iff 17.88 2.25 10.45 closeta 90 +object/building/player/player_guildhall_generic_style_01.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 4 25 5 7200 5000 1 4 + object/tangible/terminal/terminal_player_structure.iff 17.88 2.25 10.45 closeta 90 +object/building/player/player_guildhall_naboo_style_01.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 4 25 5 7200 5000 1 4 + object/tangible/terminal/terminal_player_structure.iff 17.88 2.25 10.45 closeta 90 +object/building/player/player_guildhall_tatooine_style_01.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 4 25 5 7200 5000 1 4 + object/tangible/terminal/terminal_player_structure.iff 17.88 2.25 10.45 closeta 90 +object/building/player/player_guildhall_tatooine_style_02.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 2 25 5 7200 5000 1 4 + object/tangible/terminal/terminal_player_structure.iff 9.13 1 6.36 lobby 90 +object/installation/turret/turret_block_large.iff object/installation/base/construction_installation_base.iff 0 0 15 6 3000 +object/installation/turret/turret_block_med.iff object/installation/base/construction_installation_base.iff 0 0 10 6 2000 +object/installation/turret/turret_block_sm.iff object/installation/base/construction_installation_base.iff 0 0 5 6 1000 + +object/installation/faction_perk/covert_detector/detector_32m.iff object/installation/base/construction_installation_base.iff 1 0 0 8 6 10000 1500 4 +object/installation/faction_perk/turret/block_lg.iff object/installation/base/construction_installation_base.iff 1 0 0 15 6 300000 3000 4 +object/installation/faction_perk/turret/block_med.iff object/installation/base/construction_installation_base.iff 1 0 0 10 6 200000 2000 4 +object/installation/faction_perk/turret/block_sm.iff object/installation/base/construction_installation_base.iff 1 0 0 5 6 75000 1000 4 +object/installation/faction_perk/turret/dish_sm.iff object/installation/base/construction_installation_base.iff 1 0 0 5 6 75000 1000 4 +object/installation/faction_perk/turret/dish_lg.iff object/installation/base/construction_installation_base.iff 1 0 0 15 6 300000 3000 4 +object/installation/faction_perk/turret/tower_lg.iff object/installation/base/construction_installation_base.iff 1 0 0 15 6 300000 3000 4 +object/installation/faction_perk/turret/tower_med.iff object/installation/base/construction_installation_base.iff 1 0 0 10 6 200000 2000 4 +object/installation/faction_perk/turret/tower_sm.iff object/installation/base/construction_installation_base.iff 1 0 0 5 6 75000 1000 4 + 1 +object/installation/faction_perk/minefield/field_1x1.iff object/installation/base/construction_installation_base.iff -1 0 0 0 1000 4 + +object/building/faction_perk/hq/hq_s01_rebel.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s01_fp.iff 4 8 0 0 200 100000 1 4 + object/tangible/terminal/terminal_hq_rebel.iff 0 0 -6 mainhall 0 +object/building/faction_perk/hq/hq_s01_imp.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s01_fp.iff 4 8 0 0 200 100000 1 4 + object/tangible/terminal/terminal_hq_imperial.iff 0 0 -6 mainhall 0 +object/building/faction_perk/hq/hq_s02_rebel.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s02_fp.iff 4 8 0 0 200 100000 1 4 + object/tangible/terminal/terminal_hq_rebel.iff 0 0.25 1.86 hall1 0 +object/building/faction_perk/hq/hq_s02_imp.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s02_fp.iff 4 8 0 0 200 100000 1 4 + object/tangible/terminal/terminal_hq_imperial.iff 0 0.25 1.86 hall1 0 +object/building/faction_perk/hq/hq_s03_rebel.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s03_fp.iff 4 8 0 0 200 100000 1 4 + object/tangible/terminal/terminal_hq_rebel.iff 0 0.25 1.86 hall1 0 +object/building/faction_perk/hq/hq_s03_imp.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s03_fp.iff 4 8 0 0 200 100000 1 4 + object/tangible/terminal/terminal_hq_imperial.iff 0 0.25 1.86 hall1 0 +object/building/faction_perk/hq/hq_s04_rebel.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s04_fp.iff 4 8 0 0 200 100000 1 4 + object/tangible/terminal/terminal_hq_rebel.iff 0 0.25 1.86 hall1 0 +object/building/faction_perk/hq/hq_s04_imp.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s04_fp.iff 4 8 0 0 200 100000 1 4 + object/tangible/terminal/terminal_hq_imperial.iff 0 0.25 1.86 hall1 0 +object/building/faction_perk/hq/hq_s05_rebel.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s05_fp.iff 7 32 0 0 200 100000 1 4 + object/tangible/terminal/terminal_hq_rebel.iff 0 1 12.5 mainhall 180 +object/building/faction_perk/hq/hq_s05_imp.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s05_fp.iff 7 32 0 0 200 100000 1 4 + object/tangible/terminal/terminal_hq_imperial.iff 0 1 12.5 mainhall 180 +object/building/player/player_merchant_tent_style_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 3 3 4320 600 1 private_place_merchant_tent 100 place_merchant_tent 4 + object/tangible/terminal/terminal_player_structure.iff -0.15 0.27 -2.76 r1 0 +object/building/player/player_merchant_tent_style_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 3 3 4320 600 1 private_place_merchant_tent 100 place_merchant_tent 4 + object/tangible/terminal/terminal_player_structure.iff -0.15 0.27 -2.76 r1 0 +object/building/player/player_merchant_tent_style_03.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 3 3 4320 600 1 private_place_merchant_tent 100 place_merchant_tent 4 + object/tangible/terminal/terminal_player_structure.iff -0.15 0.27 -2.76 r1 0 +object/building/player/city/cityhall_tatooine.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 1 1 0 0 0 1000 1 private_place_cityhall 100 place_cityhall 4 + object/tangible/terminal/terminal_player_structure.iff -16.78 2 7.9 mayoroffice 180 + object/tangible/terminal/terminal_city_vote.iff 0.25 2 -9.65 grandhall 0 + object/tangible/terminal/terminal_city.iff 17.07 2 -8.7 library 0 +object/building/player/city/cityhall_naboo.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 1 1 0 0 0 1000 1 private_place_cityhall 100 place_cityhall 4 + object/tangible/terminal/terminal_player_structure.iff -16.78 2 7.9 mayoroffice 180 + object/tangible/terminal/terminal_city_vote.iff 0.25 2 -9.65 grandhall 0 + object/tangible/terminal/terminal_city.iff 17.07 2 -8.7 library 0 +object/building/player/city/cityhall_corellia.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 1 1 0 0 0 1000 1 private_place_cityhall 100 place_cityhall 4 + object/tangible/terminal/terminal_player_structure.iff -16.78 2 7.9 mayoroffice 180 + object/tangible/terminal/terminal_city_vote.iff 0.25 2 -9.65 grandhall 0 + object/tangible/terminal/terminal_city.iff 17.07 2 -8.7 library 0 +object/building/player/city/bank_tatooine.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 1 2 4 0 0 1000 1 private_place_bank 100 place_bank 4 + object/tangible/terminal/terminal_bank.iff -1 -0.25 0 WORLD_DELTA 90 + object/tangible/terminal/terminal_bank.iff 1 -0.25 0 WORLD_DELTA -90 + object/tangible/terminal/terminal_bank.iff 0 -0.25 -1 WORLD_DELTA 0 + object/tangible/terminal/terminal_player_structure_nosnap.iff 0 -0.25 1 WORLD_DELTA 180 +object/building/player/city/bank_naboo.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 1 2 4 0 0 1000 1 private_place_bank 100 place_bank 4 + object/tangible/terminal/terminal_bank.iff -1 -0.25 0 WORLD_DELTA 90 + object/tangible/terminal/terminal_bank.iff 1 -0.25 0 WORLD_DELTA -90 + object/tangible/terminal/terminal_bank.iff 0 -0.25 -1 WORLD_DELTA 0 + object/tangible/terminal/terminal_player_structure_nosnap.iff 0 -0.25 1 WORLD_DELTA 180 +object/building/player/city/bank_corellia.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 1 2 4 0 0 1000 1 private_place_bank 100 place_bank 4 + object/tangible/terminal/terminal_bank.iff -1 -0.25 0 WORLD_DELTA 90 + object/tangible/terminal/terminal_bank.iff 1 -0.25 0 WORLD_DELTA -90 + object/tangible/terminal/terminal_bank.iff 0 -0.25 -1 WORLD_DELTA 0 + object/tangible/terminal/terminal_player_structure_nosnap.iff 0 -0.25 1 WORLD_DELTA 180 +object/building/player/city/barn_no_planet_restriction.iff object/building/player/construction/construction_player_barn.iff 0 32 4 3 4320 800 1 4 + object/tangible/terminal/terminal_player_structure_nosnap.iff 3 1.8 3 entry 180 +object/building/player/city/cantina_tatooine.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 2 13 5 7200 2500 1 private_place_cantina 100 place_cantina 4 + object/tangible/terminal/terminal_player_structure.iff -4.1 2 6.19 cantina 157 +object/building/player/city/cantina_naboo.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 2 13 5 7200 2500 1 private_place_cantina 100 place_cantina 4 + object/tangible/terminal/terminal_player_structure.iff -4.1 2 6.19 cantina 157 +object/building/player/city/cantina_corellia.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 2 13 5 7200 2500 1 private_place_cantina 100 place_cantina 4 + object/tangible/terminal/terminal_player_structure.iff -4.1 2 6.19 cantina 157 +object/building/player/city/cloning_tatooine.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 -5 1 3 3 1 0 0 1000 1 private_place_cloning 100 place_cloning 4 + object/tangible/terminal/terminal_player_structure.iff -13.5 1 -6.4 cloninglab 90 + object/tangible/terminal/terminal_cloning.iff -14 1 3.1 cloninglab 90 + object/tangible/terminal/terminal_insurance.iff 6.3 1 -6.69 cloninglab -90 +object/building/player/city/cloning_corellia.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 1 3 3 1 0 0 1000 1 private_place_cloning 100 place_cloning 4 + object/tangible/terminal/terminal_player_structure.iff -13.5 1 -6.4 cloninglab 90 + object/tangible/terminal/terminal_cloning.iff -14 1 3.1 cloninglab 90 + object/tangible/terminal/terminal_insurance.iff 6.3 1 -6.69 cloninglab -90 +object/building/player/city/cloning_naboo.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 1 3 3 1 0 0 1000 1 private_place_cloning 100 place_cloning 4 + object/tangible/terminal/terminal_player_structure.iff -13.5 1 -6.4 cloninglab 90 + object/tangible/terminal/terminal_cloning.iff -14 1 3.1 cloninglab 90 + object/tangible/terminal/terminal_insurance.iff 6.3 1 -6.69 cloninglab -90 +object/building/player/city/diner_no_planet_restriction.iff object/building/player/construction/construction_player_diner.iff 1 32 4 3 4320 800 1 4 + object/tangible/terminal/terminal_player_structure_nosnap.iff 8.8 1.1 1.73 entry -91 +object/building/player/city/hospital_tatooine.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 0 3 13 5 7200 2500 1 private_place_hospital 100 place_hospital 4 + object/tangible/terminal/terminal_player_structure.iff 7.48 2 1.5 mainroom -90 +object/building/player/city/hospital_corellia.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 0 3 13 5 7200 2500 1 private_place_hospital 100 place_hospital 4 + object/tangible/terminal/terminal_player_structure.iff 7.48 2 1.5 mainroom -90 +object/building/player/city/hospital_naboo.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 0 3 13 5 7200 2500 1 private_place_hospital 100 place_hospital 4 + object/tangible/terminal/terminal_player_structure.iff 7.48 2 1.5 mainroom -90 +object/building/player/city/theater_tatooine.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 0 4 13 5 7200 2500 1 private_place_theater 100 place_theater 4 + object/tangible/terminal/terminal_player_structure.iff -7 2 -14.2 backstage 90 +object/building/player/city/theater_naboo.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 0 4 13 5 7200 2500 1 private_place_theater 100 place_theater 4 + object/tangible/terminal/terminal_player_structure.iff -7 2 -14.2 backstage 90 +object/building/player/city/theater_corellia.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 0 4 13 5 7200 2500 1 private_place_theater 100 place_theater 4 + object/tangible/terminal/terminal_player_structure.iff -7 2 -14.2 backstage 90 +object/building/player/city/shuttleport_tatooine.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 1 4 2 1 0 0 1000 1 private_place_shuttleport 100 place_shuttleport 4 + object/tangible/terminal/terminal_player_structure_nosnap.iff 8.4 -1 -14.5 WORLD_DELTA 90 +object/building/player/city/shuttleport_naboo.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 1 4 2 1 0 0 1000 1 private_place_shuttleport 100 place_shuttleport 4 + object/tangible/terminal/terminal_player_structure_nosnap.iff 8.4 -1 -14.5 WORLD_DELTA 90 +object/building/player/city/shuttleport_corellia.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 1 4 2 1 0 0 1000 1 private_place_shuttleport 100 place_shuttleport 4 + object/tangible/terminal/terminal_player_structure_nosnap.iff 8.4 -1 -14.5 WORLD_DELTA 90 +object/building/player/city/garden_corellia_lrg_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_large_garden 100 place_large_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 +object/building/player/city/garden_corellia_lrg_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_large_garden 100 place_large_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 +object/building/player/city/garden_corellia_lrg_03.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_large_garden 100 place_large_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 +object/building/player/city/garden_corellia_lrg_04.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_large_garden 100 place_large_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 +object/building/player/city/garden_corellia_lrg_05.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_large_garden 100 place_large_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 +object/building/player/city/garden_corellia_med_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_medium_garden 100 place_medium_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 +object/building/player/city/garden_corellia_med_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_medium_garden 100 place_medium_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 +object/building/player/city/garden_corellia_med_03.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_medium_garden 100 place_medium_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 +object/building/player/city/garden_corellia_med_04.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_medium_garden 100 place_medium_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 +object/building/player/city/garden_corellia_med_05.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_medium_garden 100 place_medium_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 +object/building/player/city/garden_corellia_sml_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 +object/building/player/city/garden_corellia_sml_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 +object/building/player/city/garden_corellia_sml_03.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 +object/building/player/city/garden_corellia_sml_04.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 +object/building/player/city/garden_corellia_sml_05.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 +object/building/player/city/garden_naboo_lrg_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_large_garden 100 place_large_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 +object/building/player/city/garden_naboo_lrg_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_large_garden 100 place_large_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 +object/building/player/city/garden_naboo_lrg_03.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_large_garden 100 place_large_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 +object/building/player/city/garden_naboo_lrg_04.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_large_garden 100 place_large_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 +object/building/player/city/garden_naboo_lrg_05.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_large_garden 100 place_large_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 +object/building/player/city/garden_naboo_med_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_medium_garden 100 place_medium_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 +object/building/player/city/garden_naboo_med_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_medium_garden 100 place_medium_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 +object/building/player/city/garden_naboo_med_03.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_medium_garden 100 place_medium_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 +object/building/player/city/garden_naboo_med_04.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_medium_garden 100 place_medium_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 +object/building/player/city/garden_naboo_med_05.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_medium_garden 100 place_medium_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 +object/building/player/city/garden_naboo_sml_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 +object/building/player/city/garden_naboo_sml_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 +object/building/player/city/garden_naboo_sml_03.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 +object/building/player/city/garden_naboo_sml_04.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 +object/building/player/city/garden_naboo_sml_05.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 +object/building/player/city/garden_tatooine_lrg_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_large_garden 100 place_large_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 +object/building/player/city/garden_tatooine_lrg_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_large_garden 100 place_large_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 +object/building/player/city/garden_tatooine_lrg_03.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_large_garden 100 place_large_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 +object/building/player/city/garden_tatooine_lrg_04.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_large_garden 100 place_large_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 +object/building/player/city/garden_tatooine_lrg_05.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_large_garden 100 place_large_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 +object/building/player/city/garden_tatooine_med_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_medium_garden 100 place_medium_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 +object/building/player/city/garden_tatooine_med_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_medium_garden 100 place_medium_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 +object/building/player/city/garden_tatooine_med_03.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_medium_garden 100 place_medium_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 +object/building/player/city/garden_tatooine_med_04.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_medium_garden 100 place_medium_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 +object/building/player/city/garden_tatooine_med_05.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_medium_garden 100 place_medium_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 +object/building/player/city/garden_tatooine_sml_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 +object/building/player/city/garden_tatooine_sml_02.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 +object/building/player/city/garden_tatooine_sml_03.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 +object/building/player/city/garden_tatooine_sml_04.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 +object/building/player/city/garden_tatooine_sml_05.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 +object/building/player/city/garden_dantooine_lrg_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_exotic_garden 100 place_exotic_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 +object/building/player/city/garden_dantooine_med_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_exotic_garden 100 place_exotic_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 +object/building/player/city/garden_dantooine_sml_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_exotic_garden 100 place_exotic_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 +object/building/player/city/garden_dathomir_lrg_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_exotic_garden 100 place_exotic_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 +object/building/player/city/garden_dathomir_med_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_exotic_garden 100 place_exotic_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 +object/building/player/city/garden_dathomir_sml_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_exotic_garden 100 place_exotic_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 +object/building/player/city/garden_endor_lrg_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 3 6 0 0 1000 1 private_place_exotic_garden 100 place_exotic_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 12 -1 -12 WORLD_DELTA 0 +object/building/player/city/garden_endor_med_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 0 0 1000 1 private_place_exotic_garden 100 place_exotic_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 8 -1 -8 WORLD_DELTA 0 +object/building/player/city/garden_endor_sml_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_exotic_garden 100 place_exotic_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 4.5 -1 -4.5 WORLD_DELTA 0 +object/building/player/player_garage_tatooine_style_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 1 0 0 1000 private_place_garage 100 place_garage 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff -3 -1 -3 WORLD_DELTA 0 +object/building/player/player_garage_naboo_style_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 1 0 0 1000 private_place_garage 100 place_garage 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff -3 -1 -3 WORLD_DELTA 0 +object/building/player/player_garage_corellia_style_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 2 3 1 0 0 1000 private_place_garage 100 place_garage 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff -3 -1 -3 WORLD_DELTA 0 +object/building/faction_perk/hq/hq_s01_rebel_pvp.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s01_fp.iff 4 8 0 0 200 100000 1 4 + object/tangible/terminal/terminal_hq_rebel.iff 0 0 -6 mainhall 0 +object/building/faction_perk/hq/hq_s01_imp_pvp.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s01_fp.iff 4 8 0 0 200 100000 1 4 + object/tangible/terminal/terminal_hq_imperial.iff 0 0 -6 mainhall 0 +object/building/faction_perk/hq/hq_s02_rebel_pvp.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s02_fp.iff 4 8 0 0 200 100000 1 4 + object/tangible/terminal/terminal_hq_rebel.iff 0 0.25 1.86 hall1 0 +object/building/faction_perk/hq/hq_s02_imp_pvp.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s02_fp.iff 4 8 0 0 200 100000 1 4 + object/tangible/terminal/terminal_hq_imperial.iff 0 0.25 1.86 hall1 0 +object/building/faction_perk/hq/hq_s03_rebel_pvp.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s03_fp.iff 4 8 0 0 200 100000 1 4 + object/tangible/terminal/terminal_hq_rebel.iff 0 0.25 1.86 hall1 0 +object/building/faction_perk/hq/hq_s03_imp_pvp.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s03_fp.iff 4 8 0 0 200 100000 1 4 + object/tangible/terminal/terminal_hq_imperial.iff 0 0.25 1.86 hall1 0 +object/building/faction_perk/hq/hq_s04_rebel_pvp.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s04_fp.iff 4 8 0 0 200 100000 1 4 + object/tangible/terminal/terminal_hq_rebel.iff 0 0.25 1.86 hall1 0 +object/building/faction_perk/hq/hq_s04_imp_pvp.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s04_fp.iff 4 8 0 0 200 100000 1 4 + object/tangible/terminal/terminal_hq_imperial.iff 0 0.25 1.86 hall1 0 +object/building/faction_perk/hq/hq_s05_rebel_pvp.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s05_fp.iff 7 32 0 0 200 100000 1 4 + object/tangible/terminal/terminal_hq_rebel.iff 0 1 12.5 mainhall 180 +object/building/faction_perk/hq/hq_s05_imp_pvp.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff object/building/faction_perk/hq/hq_s05_fp.iff 7 32 0 0 200 100000 1 4 + object/tangible/terminal/terminal_hq_imperial.iff 0 1 12.5 mainhall 180 +object/building/player/player_house_mustafar_lg.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff -1 8 13 5 7200 0 1 4 + object/tangible/terminal/terminal_player_structure.iff -4.5 0.46 6.33 entrance 90 + object/tangible/terminal/terminal_elevator_up.iff -1.19 -33 1.61 elevator 160 + object/tangible/terminal/terminal_elevator_down.iff 1.18 -26 1.65 elevator -166 + object/tangible/terminal/terminal_elevator_down.iff 1.18 0.47 1.65 elevator -166 + object/tangible/terminal/terminal_elevator_up.iff -1.19 -26 1.61 elevator 160 +object/building/player/city/garden_imperial_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 1.5 -0.9 -3.5 WORLD_DELTA 0 +object/building/player/city/garden_rebel_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 1 1 1 5 0 0 1000 1 private_place_small_garden 100 place_small_garden 4 + object/tangible/terminal/terminal_player_structure_nosnap_mini.iff 2.85 -0.9 -4 WORLD_DELTA 0 +object/building/player/player_house_tatooine_small_window_style_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 4 3 4320 800 1 4 + object/tangible/terminal/terminal_player_structure.iff 3.79 1.06 6.02 foyer 180 +object/building/player/player_house_naboo_small_window_style_01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff -1 4 3 4320 800 1 4 + object/tangible/terminal/terminal_player_structure.iff 3.1 0.7 5.31 foyer -90 +object/building/player/player_house_generic_small_windowed.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 4 3 4320 800 1 4 + object/tangible/terminal/terminal_player_structure.iff -5 0.74 -1.81 entry -90 +object/building/player/player_house_generic_medium_windowed.iff object/building/player/construction/construction_player_house_tatooine_medium_style_01.iff -1 9 4 5760 1700 1 4 + object/tangible/terminal/terminal_player_structure.iff 5 0.62 6.4 public -180 +object/building/player/player_house_generic_small_window_style_03.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 4 3 4320 800 1 4 + object/tangible/terminal/terminal_player_structure.iff -1.8 3 4.3 entry -180 +object/building/player/player_house_generic_medium_windowed_s02.iff object/building/player/construction/construction_player_house_tatooine_medium_style_01.iff -1 9 4 5760 1700 1 4 + object/tangible/terminal/terminal_player_structure.iff 5 -2 6 entryway -180 +object/building/player/player_house_generic_large_window_s01.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 13 5 7200 2500 1 4 + object/tangible/terminal/terminal_player_structure.iff -6.22 4.71 -3.85 hallway 180 Z = FORWARD/BACK +object/building/player/player_house_generic_large_window_s02.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 1 13 5 7200 2500 1 4 Y = UP/DOWN + object/tangible/terminal/terminal_player_structure.iff 8 0 -8.5 entry 0 X = right/left +object/building/player/player_house_hangar.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 5 13 5 7200 0 1 4 Y = UP/DOWN + object/tangible/terminal/terminal_player_structure.iff 8.9 0 -6.5 entry -90 X = right/left + object/tangible/terminal/terminal_player_hangar_structure.iff 8.9 0 -12.6 entry -90 +object/building/player/player_house_atat.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 9 13 5 7200 2500 1 4 + object/tangible/terminal/terminal_player_structure.iff 3.8 1.06 10.5 body 180 +object/building/player/player_house_tcg_emperors_spire.iff object/building/player/construction/construction_player_tcg_emperors_spire.iff 8 32 4 3 4320 800 1 4 + object/tangible/terminal/terminal_player_structure_nosnap.iff -2.6 25.6 0 tower -91 + object/tangible/terminal/terminal_elevator_up.iff -0.76 1.69 -1.1 elevator 0 + object/tangible/terminal/terminal_elevator_down.iff 0.74 26.7 -1.1 elevator 0 +object/building/player/player_house_tcg_rebel_spire.iff object/building/player/construction/construction_player_tcg_rebel_spire.iff 8 32 4 3 4320 800 1 4 + object/tangible/terminal/terminal_player_structure_nosnap.iff -1.24 25.4 -1.59 tower 180 + object/tangible/terminal/terminal_elevator_up.iff -0.75 1.59 -1.1 elevator 0 + object/tangible/terminal/terminal_elevator_down.iff 0.74 25.1 -1.1 elevator 0 +object/building/player/player_house_sandcrawler.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 9 13 5 7200 2500 1 4 + object/tangible/terminal/terminal_player_structure.iff -4.46 8.81 -13.52 foyer 90 +object/building/player/player_pgc_merchant_tent_s01.iff object/building/player/construction/construction_player_house_tatooine_small_style_01.iff 0 3 3 4320 600 1 4 + object/tangible/terminal/terminal_player_structure.iff -0.15 0.27 -2.76 r1 0 +object/building/player/player_house_tcg_commando_bunker.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 0 8 13 5 7200 0 1 4 + object/tangible/terminal/terminal_player_structure.iff 3.2 0.4 3.16 entry 180 +object/building/player/player_house_tcg_vehicle_garage.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 6 8 13 5 7200 0 1 4 + object/tangible/terminal/terminal_player_structure.iff 14.56 0.53 12.79 entry 180 + object/tangible/terminal/terminal_player_vehicle_garage.iff -1.1 0.84 -9.95 entry 0 +object/building/player/player_house_tcg_vip_bunker.iff object/building/player/construction/construction_player_house_tatooine_large_style_01.iff 0 8 13 5 7200 0 1 4 + object/tangible/terminal/terminal_player_structure.iff -4.5 0.46 6.33 entrance 90 + + +object/building/player/player_house_tcg_8_bespin_house.iff object/building/player/construction/construction_player_house_tcg_8_bespin_house.iff 10 32 13 5 7200 0 1 + object/tangible/terminal/terminal_player_structure.iff 2.2 88.9 -5.9 entry 156 + object/tangible/terminal/terminal_elevator_up.iff 0.75 1 2 elevator -146 + object/tangible/terminal/terminal_elevator_down.iff 0.75 90 2 elevator -146 +object/building/player/player_house_tcg_8_yoda_house.iff object/building/player/construction/construction_player_house_tcg_8_yoda_house.iff 4 32 13 3 4320 800 1 4 + object/tangible/terminal/terminal_player_structure_nosnap.iff 8.8 1.1 1.73 entry -91 +object/building/player/player_house_yt1300.iff object/building/player/construction/construction_player_house_yt1300.iff 5 32 13 5 7200 0 1 + object/tangible/terminal/terminal_player_structure.iff -3.5 5.2 -2.3 storage5 180 + object/tangible/terminal/terminal_elevator_up.iff -1.7 -0.8 0 elevator -90 + object/tangible/terminal/terminal_elevator_down.iff -1.7 5.4 0 elevator -90 +object/building/player/player_house_tree_house_01.iff object/building/player/construction/construction_player_house_tree_house_01.iff 4 32 13 3 4320 800 1 4 + object/tangible/terminal/terminal_player_structure_nosnap.iff 8.8 1.1 1.73 entry -91 +object/building/player/player_house_wod_ns_hut.iff object/building/player/construction/construction_player_house_wod_ns_hut.iff 0 32 13 3 4320 800 1 4 + object/tangible/terminal/terminal_player_structure_nosnap.iff 3.3 0.79 0.61 r1 -91 +object/building/player/player_house_wod_sm_hut.iff object/building/player/construction/construction_player_house_wod_sm_hut.iff 0 32 13 3 4320 800 1 4 + object/tangible/terminal/terminal_player_structure_nosnap.iff 3.3 0.79 0.61 r1 -91 +object/building/player/player_house_jabbas_sail_barge.iff object/building/player/construction/construction_player_house_jabbas_sail_barge.iff 10 32 13 5 7200 0 1 + object/tangible/terminal/terminal_player_structure.iff -2.9 16.5 4.5 interior 0 + object/tangible/terminal/terminal_elevator_up.iff 0 -5.4 0 interior 180 + object/tangible/terminal/terminal_elevator_down.iff -1.65 11.5 -2 interior 90 + +object/building/player/player_house_tree_house_02.iff object/building/player/construction/construction_player_house_tree_house_02.iff 3 32 13 3 4320 1700 1 4 + object/tangible/terminal/terminal_player_structure_nosnap.iff 8.8 1.1 1.73 entry -91 diff --git a/sku.0/sys.server/compiled/game/datatables/structure/player_structure_sign.tab b/sku.0/sys.server/compiled/game/datatables/structure/player_structure_sign.tab index 6da0c317e..b62abbb56 100755 --- a/sku.0/sys.server/compiled/game/datatables/structure/player_structure_sign.tab +++ b/sku.0/sys.server/compiled/game/datatables/structure/player_structure_sign.tab @@ -77,3 +77,4 @@ object/building/player/player_house_tree_house_01.iff -6.5 5 12.5 180 9.75 0.7 object/building/player/player_house_wod_ns_hut.iff -1.5 3 6.3 180 9 0.5 6.2 180 object/building/player/player_house_wod_sm_hut.iff -1.9 3 5.4 180 9 0.5 6.2 180 object/building/player/player_house_jabbas_sail_barge.iff 1 3.3 -3.4 0 1.65 0.1 -4.8 0 +object/building/player/player_house_tree_house_02.iff -6.5 5 12.5 180 9.75 0.7 7.3 0 diff --git a/sku.0/sys.server/compiled/game/object/building/player/construction/construction_player_house_tree_house_02.tpf b/sku.0/sys.server/compiled/game/object/building/player/construction/construction_player_house_tree_house_02.tpf new file mode 100755 index 000000000..732a2de9c --- /dev/null +++ b/sku.0/sys.server/compiled/game/object/building/player/construction/construction_player_house_tree_house_02.tpf @@ -0,0 +1,11 @@ +@base object/installation/base/installation_base.iff +@class installation_object_template 0 +@class tangible_object_template 0 +@class object_template 2 + +sharedTemplate = "object/building/player/construction/shared_construction_player_house_tree_house_02.iff" + +tintIndex = 0 +invulnerable = true + +scripts = +["structure.temporary_structure" ] \ No newline at end of file diff --git a/sku.0/sys.server/compiled/game/object/building/player/player_house_tree_house_02.tpf b/sku.0/sys.server/compiled/game/object/building/player/player_house_tree_house_02.tpf new file mode 100755 index 000000000..e346f4993 --- /dev/null +++ b/sku.0/sys.server/compiled/game/object/building/player/player_house_tree_house_02.tpf @@ -0,0 +1,6 @@ +@base object/building/base/base_player_building.iff +@class building_object_template 1 +@class tangible_object_template 1 +@class object_template 3 + +sharedTemplate = "object/building/player/shared_player_house_tree_house_02.iff" \ No newline at end of file diff --git a/sku.0/sys.server/compiled/game/object/tangible/deed/player_house_deed/tree_house_02_deed.tpf b/sku.0/sys.server/compiled/game/object/tangible/deed/player_house_deed/tree_house_02_deed.tpf new file mode 100755 index 000000000..60ce46674 --- /dev/null +++ b/sku.0/sys.server/compiled/game/object/tangible/deed/player_house_deed/tree_house_02_deed.tpf @@ -0,0 +1,13 @@ +@base object/tangible/deed/base/base_deed.iff +@class tangible_object_template 0 +@class object_template 7 + +sharedTemplate = "object/tangible/deed/player_house_deed/shared_tree_house_02_deed.iff" + +objvars = +[ + "player_structure.deed.template" = "object/building/player/player_house_tree_house_02.iff", + "player_structure.deed.buildtime" = 90, + "player_structure.deed.scene" = "corellia,talus,naboo,dantooine,rori"] + +scripts = +[ + "item.structure_deed.player_structure_deed"] \ No newline at end of file diff --git a/sku.0/sys.shared/compiled/game/footprint/building/player/shared_player_house_tree_house_02.mif b/sku.0/sys.shared/compiled/game/footprint/building/player/shared_player_house_tree_house_02.mif new file mode 100755 index 000000000..3a29e66b0 --- /dev/null +++ b/sku.0/sys.shared/compiled/game/footprint/building/player/shared_player_house_tree_house_02.mif @@ -0,0 +1,24 @@ +FORM "FOOT" +{ + FORM "0000" + { + CHUNK "INFO" + { + int32 6 // width + int32 10 // height + int32 3 // pivot x + int32 1 // pivot z + float 8.0 // hard reservation height tolerance + float 8.0 // structure reservation height tolerance + } + + CHUNK "PRNT" + { + cstring "HHFFFFHHH" + cstring "HHFFFFFHHH" + cstring "HHFFFFFFHH" + cstring "HHFFFFFFHH" + cstring "HHFFFFFFHH" + } + } +} \ No newline at end of file diff --git a/sku.0/sys.shared/compiled/game/object/building/player/construction/shared_construction_player_house_tree_house_02.tpf b/sku.0/sys.shared/compiled/game/object/building/player/construction/shared_construction_player_house_tree_house_02.tpf new file mode 100755 index 000000000..35835059f --- /dev/null +++ b/sku.0/sys.shared/compiled/game/object/building/player/construction/shared_construction_player_house_tree_house_02.tpf @@ -0,0 +1,23 @@ +@base object/tangible/base/shared_tangible_craftable.iff +@class installation_object_template 0 +@class tangible_object_template 5 + +structureFootprintFileName = "footprint/building/player/shared_player_house_tree_house_02.sfp" +useStructureFootprintOutline = true + +targetable = true + +@class object_template 6 +clearFloraRadius = 15 + +objectName = "player_structure" "temporary_structure" +detailedDescription = "" "" +lookAtText = "player_structure" "temporary_structure" + +snapToTerrain = true +containerType = CT_none + +appearanceFilename = "appearance\ply_all_construction_sign.apt" +portalLayoutFilename = "" + +gameObjectType = GOT_installation_factory \ No newline at end of file diff --git a/sku.0/sys.shared/compiled/game/object/building/player/shared_player_house_tree_house_02.tpf b/sku.0/sys.shared/compiled/game/object/building/player/shared_player_house_tree_house_02.tpf new file mode 100755 index 000000000..f212178d6 --- /dev/null +++ b/sku.0/sys.shared/compiled/game/object/building/player/shared_player_house_tree_house_02.tpf @@ -0,0 +1,16 @@ +@base object/building/base/shared_base_player_building.iff +@class building_object_template 1 +@class tangible_object_template 5 + +structureFootprintFileName = "footprint/building/player/shared_player_house_tree_house_02.sfp" + +@class object_template 6 +clearFloraRadius = 36 + +objectName = "building_name" "player_house_tree_house_02_n" +detailedDescription = "building_detail" "player_house_tree_house_02_d" +lookAtText = "building_name" "player_house_tree_house_02_n" + +appearanceFilename = "" +portalLayoutFilename = "appearance/ply_all_tree_house_tall.pob" +clientDataFile = "clientdata/building/shared_player_house_tatooine_small_style_01.cdf" \ No newline at end of file diff --git a/sku.0/sys.shared/compiled/game/object/tangible/deed/player_house_deed/shared_tree_house_02_deed.tpf b/sku.0/sys.shared/compiled/game/object/tangible/deed/player_house_deed/shared_tree_house_02_deed.tpf new file mode 100755 index 000000000..771a35fa7 --- /dev/null +++ b/sku.0/sys.shared/compiled/game/object/tangible/deed/player_house_deed/shared_tree_house_02_deed.tpf @@ -0,0 +1,14 @@ + +@base object/tangible/deed/base/shared_deed_building_base.iff + +@class tangible_object_template 6 + +@class object_template 5 + + +objectName = "deed" "tree_house_02_deed_n" + +detailedDescription = "deed_detail" "tree_house_02_deed_d" +lookAtText = "" "" + +appearanceFilename = "appearance/frn_tree_house.apt" From 96d77499c115311a03e906d5ae41b0af1cdff9b2 Mon Sep 17 00:00:00 2001 From: AconiteGodOfSWG Date: Tue, 21 Apr 2020 22:34:28 -0500 Subject: [PATCH 07/13] Added to command permissions table All implemented console commands are now included in the permissions table by default for example purposes as opposed to only a shorter set. The default level assigned to all commands is Level 50 but each server can then customize to their individaul needs. --- .../datatables/admin/command_permissions.tab | 558 +++++++++++++----- 1 file changed, 401 insertions(+), 157 deletions(-) diff --git a/sku.0/sys.server/compiled/game/datatables/admin/command_permissions.tab b/sku.0/sys.server/compiled/game/datatables/admin/command_permissions.tab index 35fabc0c6..109a02f58 100755 --- a/sku.0/sys.server/compiled/game/datatables/admin/command_permissions.tab +++ b/sku.0/sys.server/compiled/game/datatables/admin/command_permissions.tab @@ -1,171 +1,415 @@ Command Level s i{50} -server.shutdown 50 -server.error 50 -server.who 50 -server.getMissionBoardId 50 -server.getPlanetId 50 -server.memUsage 50 -server.clock 50 -server.releaseAuth 50 -server.showObjectSpheres 50 -server.showTriggerSpheres 50 -server.listenForMessage 50 -server.snapAllObjectsToTerrain 50 -server.getSceneId 50 -server.setGodMode 5 -server.reloadCommandTable 50 -server.reloadAdminTable 50 -server.reloadTable 50 -server.dataTableGetString 50 -server.reloadTerrain 50 -server.listRegions 50 -server.messageCount 50 -server.setPublic 50 -server.profiler 50 -server.setFrameRateLimit 50 -server.testStructurePlacement 50 -server.setDebugFlag 50 -server.validateWorld 50 -server.setUniverseProcess 50 -server.getRegionsAt 50 -server.enableNewJedi 50 -server.startSave 50 -server.saveBuildoutArea 50 -server.clientSaveBuildoutArea 50 -server.destroyPersistedBuildoutAreaDuplicates 50 -server.dumpCreatures 50 -script.attach 50 -script.detach 50 -script.list 50 -script.pause 50 -script.reload 50 -script.triggerAll 50 -script.triggerOne 50 -script.scriptingEnabled 50 -script.enableLogging 50 +ai.debug 50 +ai.debugTest 50 +ai.hatelist 50 +ai.info 50 +ai.kill 50 +ai.killall 50 +ai.log 50 +ai.retreat 50 +ai.runspeed 50 +ai.walkspeed 50 +city.listByCitizenCount 50 +city.listByCreationTime 50 +city.listById 50 +city.listByName 50 +city.listByPlanet 50 +city.listByRank 50 +city.listByStructureCount 50 +city.listCitiesWithIllegalShuttleport 50 +city.setCityCreationTime 50 +city.showCityDetails 50 +city.showCityGcwRegionDefender 50 +city.showCityRetroactiveCreationTime 50 +collection.addServerFirst 50 +collection.adjustSlotValue 50 +collection.displayCollections 50 +collection.displayServerFirst 50 +collection.grantAllSlotsForBook 50 +collection.grantAllSlotsForCollection 50 +collection.grantAllSlotsForPage 50 +collection.removeServerFirst 50 +collection.revokeAllSlotsForBook 50 +collection.revokeAllSlotsForCollection 50 +collection.revokeAllSlotsForPage 50 +collection.setServerFirstTime 50 +craft.customize 50 +craft.disableSchematicFilter 50 +craft.draft 50 +craft.enableSchematicFilter 50 +craft.experiment 50 +craft.fillslot 50 +craft.makeprototype 50 +craft.makeschematic 50 +craft.nextstage 50 +craft.stop 50 +guild.findGuildLeaderMismatch 50 +guild.findGuildLeaderPermissionMismatch 50 +guild.findGuildMemberNameMismatch 50 +guild.findLeaderlessGuild 50 +guild.findOrphanedGuild 50 +guild.listByAbbrev 50 +guild.listById 50 +guild.listByLeaderId 50 +guild.listByLeaderName 50 +guild.listByMemberActiveSize 50 +guild.listByMemberInactiveSize 50 +guild.listByMemberSize 50 +guild.listByName 50 +guild.listBySponsoredActiveSize 50 +guild.listBySponsoredInactiveSize 50 +guild.listBySponsoredSize 50 +guild.listByTotalActiveSize 50 +guild.listByTotalInactiveSize 50 +guild.listByTotalSize 50 +guild.setGuildAbbrev 50 +guild.setGuildLeader 50 +guild.setGuildName 50 +guild.showGuildDetails 50 +guild.showGuildGcwRegionDefender 50 +manufacture.addIngredient 50 +manufacture.addSchematic 50 +manufacture.getObjects 50 +manufacture.listIngredients 50 +manufacture.listObjects 50 +manufacture.listSchematic 50 +manufacture.removeIngredient 50 +manufacture.removeSchematic 50 +manufacture.start 50 +manufacture.stop 50 +money.balance 50 +money.bankTransfer 50 +money.cashTransfer 50 +money.deposit 50 +money.namedTransfer 50 +money.setGalacticReserve 50 +money.withdraw 50 +npc.goodbye 50 +npc.hail 50 +npc.respond 50 +object.addJediSlot 50 +object.addLocationTarget 50 +object.addPassiveReveal 50 +object.adjustAge 50 +object.adjustSwgAccountFeatureId 50 +object.askConsent 50 +object.attribs 50 +object.authority 50 +object.canMove 50 +object.cellCreate 50 +object.cellCreateTranslateRotate 50 +object.clearPassiveReveal 50 +object.count 50 +object.create 50 +object.createAt 50 +object.createIn 50 +object.createManyAt 50 +object.createPathNodes 50 +object.createTranslateRotate 50 +object.createTriggerVolume 50 +object.debugFar 50 +object.deleteAuctionLocation 50 +object.deletePersistedContents 50 +object.destroy 50 +object.destroyAllMobsExcept 50 +object.destroyAllWorldMobs 50 +object.destroyPathNodes 50 +object.disableCharacter 50 +object.enableCharacter 50 +object.enqueueCommand 50 +object.find 50 +object.findCreature 50 +object.findRelative_w 50 +object.findTemplate 50 +object.fixHouseItemLimit 50 +object.fixLoadWith 50 +object.getAge 50 +object.getAttributes 50 +object.getBadge 50 +object.getBattlefieldMarkerRegionName 50 +object.getBehavior 50 +object.getBroadcastInfo 50 +object.getChatStatistics 50 +object.getDatapadId 50 +object.getExposedProxyList 50 +object.getHeight 50 +object.getHibernating 50 +object.getInventoryId 50 +object.getInvulnerabilityTimer 50 +object.getJediSlotInfo 50 +object.getLoadWith 50 +object.getObservers 50 +object.getObserving 50 +object.getObservingDetailed 50 +object.getObservingPvpSync 50 +object.getObservingPvpSyncDetailed 50 +object.getOpenedContainers 50 +object.getOwner 50 +object.getPassiveReveal 50 +object.getPower 50 +object.getPowerRate 50 +object.getPrivateProxyList 50 +object.getServerTemplate 50 +object.getStandingOn 50 +object.getStaticInfo 50 +object.getVolume 50 +object.gotoObject 50 +object.hide 50 +object.isIncapacitated 50 +object.isOnSolidFloor 50 +object.isProxy 50 +object.listContainer 50 +object.loadContents 50 +object.loadStructure 50 +object.loginCharacter 50 +object.makeSpectral 50 +object.markCityEntrance 50 +object.move 50 +object.moveItemInHouseToMe 50 +object.moveSimClear 50 +object.moveSimStart 50 +object.moveToMe 50 +object.moveToPlayer 50 +object.moveToPlayerAndUnload 50 +object.pathAutoCleanup 50 +object.pathAutoGenerate 50 +object.persist 50 +object.playUiEffect 50 +object.regionList 50 +object.reinitializeVendor 50 +object.relinkPathGraph 50 +object.reloadPathNodes 50 +object.reloadServerTemplate 50 +object.reloadSwgAccountFeatureId 50 +object.reloadSwgTcgAccountFeatureId 50 +object.removeLocationTarget 50 +object.removePassiveReveal 50 +object.removeTriggerVolume 50 +object.renamePlayer 50 +object.resetStats 50 +object.restoreCharacter 50 +object.restoreHouse 50 +object.rollupStructure 50 +object.rotate 50 +object.scaleMovement 50 +object.scaleSize 50 +object.setAdminTitle 50 +object.setBattlefieldMarkerRegionName 50 +object.setCoverVisibility 50 +object.setName 50 +object.setOwner 50 +object.setPathLinkDistance 50 +object.setPower 50 +object.setPowerRate 50 +object.snap 50 +object.spawn 50 +object.spewCommandQueue 50 +object.stopWatching 50 +object.testVendorStatus 50 +object.triggerVolumes 50 +object.undeleteItem 50 +object.unload 50 +object.unloadBuildingContents 50 +object.unmarkCityEntrance 50 +object.unstick 50 +object.watch 50 +object.watchAIPath 50 +object.watchPathMap 50 +objvar.get 50 +objvar.list 50 +objvar.listWithPacking 50 +objvar.remove 50 +objvar.set 50 +objvar.setlist 50 +pvp.adjustCurrentGcwPoint 50 +pvp.adjustCurrentGcwRating 50 +pvp.adjustCurrentPvpKill 50 +pvp.adjustLifetimeGcwPoint 50 +pvp.adjustLifetimePvpKill 50 +pvp.adjustMaxGcwImperialRating 50 +pvp.adjustMaxGcwRebelRating 50 +pvp.adjustNextGcwRatingCalcTime 50 +pvp.getCombatSpamFilter 50 +pvp.getGcwInfo 50 +pvp.getMaster 50 +pvp.makeCovertImperialMercenary 50 +pvp.makeCovertRebelMercenary 50 +pvp.makeMercenaryNone 50 +pvp.makeOvertImperialMercenary 50 +pvp.makeOvertRebelMercenary 50 +pvp.pvpAttackPerformed 50 +pvp.pvpCanAttack 50 +pvp.showGcwFormulasTable 50 +pvp.showGcwRankDecayExclusionTimeTable 50 +pvp.showGcwRankTable 50 +pvp.spaceClearOvert 50 +pvp.spaceMakeOvert 50 +pvp.testGcwPointToRatingConversion 50 resource.activate 50 resource.addtocontainer 50 -resource.fillcontainer 50 -resource.checktree 50 resource.deactivate 50 +resource.deplete 50 resource.discardHopper 50 +resource.fillcontainer 50 resource.getSurveyList 50 resource.harvest 50 resource.name 50 resource.pools 50 +resource.recycle 50 resource.removefromcontainer 50 -resource.spawntree 50 resource.survey 50 resource.tree 50 resource.viewcontainer 50 -objvar.set 50 -objvar.setlist 50 -objvar.get 50 -objvar.list 50 -objvar.remove 50 -object.addLocationTarget 50 -object.authority 50 -object.create 50 -object.cellCreate 50 -object.count 50 -object.createAt 50 -object.createManyAt 50 -object.createIn 50 -object.createTranslateRotate 50 -object.cellCreateTranslateRotate 50 -object.setInterestRadius 50 -object.createTriggerVolume 50 -object.destroy 50 -object.find 50 -object.fixHouseItemLimit 50 -object.getHeight 50 -object.getInventoryId 50 -object.getDatapadId 50 -object.getServerTemplate 50 -object.getProxyList 50 -object.gotoObject 50 -object.isIncapacitated 50 -object.isProxy 50 -object.listVolumeContainer 50 -object.loadContents 50 -object.move 50 -object.moveToMe 50 -object.persist 50 -object.planetWarp 50 -object.reloadServerTemplate 50 -object.removeLocationTarget 50 -object.removeTriggerVolume 50 -object.renamePlayer 50 -object.rotate 50 -object.scaleMovement 50 -object.scaleSize 50 -object.setName 50 -object.snap 50 -object.spawn 50 -object.stopWatching 50 -object.triggerVolumes 50 -object.watch 50 -object.watchAIPath 50 -object.watchPathMap 50 -object.unstick 50 -object.attribs 50 -object.enqueueCommand 50 -object.hide 50 -object.getAttributes 50 -object.createPathNodes 50 -object.destroyPathNodes 50 -object.reloadPathNodes 50 -object.setPathLinkDistance 50 -object.markCityEntrance 50 -object.unmarkCityEntrance 50 -object.setOwner 50 -object.getOwner 50 -object.askConsent 50 -object.debugFar 50 -object.buildingObserve 50 -object.addJediSlot 50 -object.makeSpectral 50 -object.getHibernating 50 -object.getBehavior 50 -object.getStandingOn 50 -object.getBattlefieldMarkerRegionName 50 -object.setBattlefieldMarkerRegionName 50 -object.unload 50 -object.moveToPlayerAndUnload 50 -object.restoreHouse 50 -object.restoreCharacter 50 -object.deletePersistedContents 50 -object.moveHouseItemToMe 50 -object.reinitializevendor 50 -object.setAdminTitle 50 -npc.hail 50 -npc.goodbye 50 -npc.respond 50 -bank.balance 50 -bank.bankTransfer 50 -bank.cashTransfer 50 -bank.deposit 50 -bank.namedTransfer 50 -bank.withdraw 50 -manufacture.addIngredient 50 -manufacture.removeIngredient 50 -manufacture.listIngredients 50 -manufacture.addSchematic 50 -manufacture.removeSchematic 50 -manufacture.listSchematic 50 -manufacture.start 50 -manufacture.stop 50 -manufacture.getObjects 50 -manufacture.listObjects 50 -default.serverhelp 50 -craft.draft 50 -craft.fillslot 50 -craft.nextstage 50 -craft.experiment 50 -craft.customize 50 -craft.makeprototype 50 -craft.makeschematic 50 -craft.stop 50 -craft.enableSchematicFilter 50 -craft.disableSchematicFilter 50 +script.attach 50 +script.detach 50 +script.enableLogging 50 +script.list 50 +script.pause 50 +script.reload 50 +script.scriptingEnabled 50 +script.triggerAll 50 +script.triggerOne 50 +server.abortShutdown 50 +server.adjustGcwImperialScore 50 +server.adjustGcwRebelScore 50 +server.clientSaveBuildoutArea 50 +server.clock 50 +server.dataTableGetString 50 +server.decayGcwScore 50 +server.destroyPersistedBuildoutAreaDuplicates 50 +server.displayTerrain 50 +server.dumpCreatures 50 +server.dumpMemToFile 50 +server.editBuildoutArea 50 +server.enableNewJedi 50 +server.enablePlayerSanityChecker 50 +server.error 50 +server.freeCtsInfo 50 +server.freeCtsTest 50 +server.generateTerrain 50 +server.getCharacterInfo 50 +server.getCommoditiesAuctionLocationPriorityQueue 50 +server.getCommoditiesItemAttribute 50 +server.getCommoditiesItemAttributeData 50 +server.getCommoditiesItemAttributeDataValues 50 +server.getCommoditiesItemTypeMap 50 +server.getNameList 50 +server.getNumberOfMoveObjectLists 50 +server.getPlanetaryTimeFromAllGameServers 50 +server.getPlanetId 50 +server.getRegionsAt 50 +server.getSceneId 50 +server.getSystemClockTimeFromAllGameServers 50 +server.hasGcwFactionalPresence 50 +server.hasGcwRegionDefenderBonus 50 +server.isFreeCtsSourceCluster 50 +server.kill 50 +server.listCharacterCreateTimeAfterBrief 50 +server.listCharacterCreateTimeAfterDetailed 50 +server.listCharacterCreateTimeBeforeBrief 50 +server.listCharacterCreateTimeBeforeDetailed 50 +server.listCharacterCreateTimeBetweenBrief 50 +server.listCharacterCreateTimeBetweenDetailed 50 +server.listCharacterCreateTimeBrief 50 +server.listCharacterCreateTimeDetailed 50 +server.listCharacterLastLoginTimeAfterBrief 50 +server.listCharacterLastLoginTimeAfterDetailed 50 +server.listCharacterLastLoginTimeBeforeBrief 50 +server.listCharacterLastLoginTimeBeforeDetailed 50 +server.listCharacterLastLoginTimeBetweenBrief 50 +server.listCharacterLastLoginTimeBetweenDetailed 50 +server.listCharacterLastLoginTimeBrief 50 +server.listCharacterLastLoginTimeDetailed 50 +server.listConnectedCharacterData 50 +server.listConnectedCharacters 50 +server.listRegions 50 +server.listRetroactiveCtsHistory 50 +server.listTravelPoints 50 +server.memUsage 50 +server.messageCount 50 +server.profiler 50 +server.purgeTerrain 50 +server.releaseAuth 50 +server.reloadAdminTable 50 +server.reloadCommandTable 50 +server.reloadForms 50 +server.reloadQuests 50 +server.reloadTable 50 +server.reloadTerrain 50 +server.requestSameServer 50 +server.restartPlanet 50 +server.restartServer 50 +server.saveBuildoutArea 50 +server.sendMailToCharacterCreateTime 50 +server.sendMailToCharacterCreateTimeAfter 50 +server.sendMailToCharacterCreateTimeBefore 50 +server.sendMailToCharacterCreateTimeBetween 50 +server.sendMailToCharacterLastLoginTime 50 +server.sendMailToCharacterLastLoginTimeAfter 50 +server.sendMailToCharacterLastLoginTimeBefore 50 +server.sendMailToCharacterLastLoginTimeBetween 50 +server.serverinfo 50 +server.setAiCombatPulseQueueMaxWaitTimeMs 50 +server.setAiCombatPulseQueueNumber 50 +server.setCompletedTutorial 50 +server.setDebugFlag 50 +server.setExtraDelayPerFrameMs 50 +server.setFrameRateLimit 50 +server.setGodMode 5 +server.setMessageToBacklogThreshold 50 +server.setMessageToTimeLimit 50 +server.setNumberOfMoveObjectLists 50 +server.setPublic 50 +server.setQuestDebugging 50 +server.setUniverseProcess 50 +server.showGcwFactionalPresence 50 +server.showGcwScore 50 +server.showObjectSpheres 50 +server.showTriggerSpheres 50 +server.shutdown 50 +server.snapAllObjectsToTerrain 50 +server.startSave 50 +server.testStructurePlacement 50 +server.transferCharacter 50 +server.validateWorld 50 +ship.getComponentDescriptor 50 +ship.getSlotList 50 +ship.idotList 50 +ship.idotRemove 50 +ship.idotSet 50 +ship.install 50 +ship.pseudoDamageShip 50 +ship.pseudoInstall 50 +ship.purge 50 +ship.uninstall 50 +skill.getCommandList 50 +skill.getLevel 50 +skill.getSchematics 50 +skill.getSkillList 50 +skill.getSkillMods 50 +skill.grantCommand 50 +skill.grantExperience 50 +skill.grantSchematic 50 +skill.grantSchematicGroup 50 +skill.grantSkill 50 +skill.grantSkillMod 50 +skill.revokeSchematic 50 +skill.revokeSchematicGroup 50 +skill.revokeSkill 50 +skill.revokeSkillMod 50 +spaceai.clientdebug 50 +spaceai.clientdebugtext 50 +spaceai.fastaxis 50 +spaceai.maneuver 50 +spaceai.path 50 +spaceai.peace 50 +spaceai.reloaddata 50 +spaceai.serverdebug 50 +spaceai.war 50 +spawner.showcreatures 50 +spawner.showqueue 50 +veteran.claimReward 50 +veteran.getRewardInfo 50 +veteran.launchBrowser 50 +veteran.setOverrideAccountAge 50 From 9e93fa67b80bb7faea1dc6d4c6d0efdb3ef028fe Mon Sep 17 00:00:00 2001 From: Reedux Date: Fri, 8 May 2020 11:32:46 +0100 Subject: [PATCH 08/13] Initial Cleanup --- .../compiled/game/script/ai/beast.java | 42 ++-- .../game/script/ai/beast_control_device.java | 16 +- .../compiled/game/script/ai/pet.java | 30 +-- .../game/script/ai/pet_control_device.java | 101 ++++---- .../game/script/city/city_pathing_npc.java | 4 +- .../compiled/game/script/combat_engine.java | 19 +- .../content_tools/spawn_generation_tool.java | 20 +- .../faction_recruiter_imperial.java | 3 +- .../conversation/faction_recruiter_rebel.java | 3 +- .../fs_medic_puzzle_head_medic.java | 20 +- .../cybernetic/cybernetic_crafted_item.java | 12 +- .../script/cybernetic/cybernetic_item.java | 12 +- .../game/script/event/dianoga_dumpster.java | 23 +- .../sarlacc_furniture_terminal.java | 63 +++-- .../compiled/game/script/fishing/fish.java | 2 +- .../compiled/game/script/fishing/pole.java | 2 +- .../compiled/game/script/gcw_score.java | 14 +- .../game/script/item/armor/dynamic_armor.java | 2 +- .../game/script/item/comestible/crafted.java | 4 +- .../game/script/item/comestible/dead_eye.java | 2 +- .../game/script/item/comestible/foraged.java | 4 +- .../game/script/item/comestible/spice.java | 2 +- .../item/component/component_attribs.java | 2 +- .../component/reverse_engineer_component.java | 4 +- .../game/script/item/dice/chance_cube.java | 2 +- .../item/dice/configurable_group_dice.java | 2 +- .../item/dice/one_hundred_sided_dice_set.java | 2 +- .../script/item/dice/six_sided_dice_set.java | 2 +- .../script/item/dice/ten_sided_dice_set.java | 2 +- .../item/dice/twelve_sided_dice_set.java | 2 +- .../item/dice/twenty_sided_dice_set.java | 2 +- .../compiled/game/script/item/food.java | 12 +- .../game/script/item/heroic_token_box.java | 2 +- .../script/item/ice_cream_fryer/fryer.java | 4 +- .../item/ice_cream_fryer/ice_cream_fail.java | 6 +- .../ice_cream_fryer/ice_cream_nobuff.java | 6 +- .../game/script/item/instance_reset.java | 2 +- .../game/script/item/medicine/enhancer.java | 2 +- .../game/script/item/medicine/stimpack.java | 6 +- .../item/medicine/stimpack_crafted.java | 6 +- .../script/item/medicine/stimpack_pet.java | 4 +- .../script/item/parrot_cage/parrot_cage.java | 2 +- .../game/script/item/skill_buff/base.java | 8 +- .../compiled/game/script/item/spice.java | 8 +- .../game/script/item/static_item_base.java | 8 +- .../script/item/texture_kit/texture_kit.java | 2 +- .../game/script/item/tool/medikit.java | 11 +- .../reverse_engineering_poweredup_item.java | 4 +- .../tool/reverse_engineering_powerup.java | 2 +- .../item/tool/reverse_engineering_tool.java | 32 +-- .../game/script/item/vet_instance_reset.java | 2 +- .../game/script/library/advanced_turret.java | 20 +- .../game/script/library/beast_lib.java | 98 ++------ .../game/script/library/factions.java | 221 +++++------------- 54 files changed, 340 insertions(+), 548 deletions(-) diff --git a/sku.0/sys.server/compiled/game/script/ai/beast.java b/sku.0/sys.server/compiled/game/script/ai/beast.java index 348bc92f2..2da012809 100755 --- a/sku.0/sys.server/compiled/game/script/ai/beast.java +++ b/sku.0/sys.server/compiled/game/script/ai/beast.java @@ -95,7 +95,7 @@ public class beast extends script.base_script experiencePercentage = (int)(((float)experienceProgress / experienceNeeded) * 100); } names[idx] = "level_progress"; - attribs[idx] = "" + experiencePercentage + "%"; + attribs[idx] = String.valueOf(experiencePercentage) + "%"; idx++; } if (beast_lib.getBeastCanLevel(self)) @@ -114,7 +114,7 @@ public class beast extends script.base_script String currentHappiness = utils.packStringId(beast_lib.convertHappinessString(beastBCD)); if (currentHappiness != null) { - attribs[idx] = "" + currentHappiness; + attribs[idx] = String.valueOf(currentHappiness); idx++; if (idx >= names.length) { @@ -125,7 +125,7 @@ public class beast extends script.base_script String currentLoyalty = utils.packStringId(beast_lib.convertLoyaltyString(beastBCD)); if (currentLoyalty != null) { - attribs[idx] = "" + currentLoyalty; + attribs[idx] = String.valueOf(currentLoyalty); idx++; if (idx >= names.length) { @@ -136,7 +136,7 @@ public class beast extends script.base_script if (loyaltyPercentage >= 0) { names[idx] = beast_lib.BEAST_LOYALTY_PERCENTAGE_TITLE; - attribs[idx] = "" + loyaltyPercentage + "%"; + attribs[idx] = String.valueOf(loyaltyPercentage) + "%"; idx++; if (idx >= names.length) { @@ -148,29 +148,29 @@ public class beast extends script.base_script if (!abilityList[3].equals("") && slotsAvalable >= 0 && !abilityList[3].equals("empty") && !abilityList[3].equals("disabled")) { names[idx] = "bm_ability_1"; - attribs[idx] = "" + utils.packStringId(new string_id("cmd_n", abilityList[3])); + attribs[idx] = String.valueOf(utils.packStringId(new string_id("cmd_n", abilityList[3]))); idx++; } if (!abilityList[4].equals("") && slotsAvalable >= 1 && !abilityList[4].equals("empty") && !abilityList[4].equals("disabled")) { names[idx] = "bm_ability_2"; - attribs[idx] = "" + utils.packStringId(new string_id("cmd_n", abilityList[4])); + attribs[idx] = String.valueOf(utils.packStringId(new string_id("cmd_n", abilityList[4]))); idx++; } if (!abilityList[5].equals("") && slotsAvalable >= 2 && !abilityList[5].equals("empty") && !abilityList[5].equals("disabled")) { names[idx] = "bm_ability_3"; - attribs[idx] = "" + utils.packStringId(new string_id("cmd_n", abilityList[5])); + attribs[idx] = String.valueOf(utils.packStringId(new string_id("cmd_n", abilityList[5]))); idx++; } if (!abilityList[6].equals("") && slotsAvalable >= 3 && !abilityList[6].equals("empty") && !abilityList[6].equals("disabled")) { names[idx] = "bm_ability_4"; - attribs[idx] = "" + utils.packStringId(new string_id("cmd_n", abilityList[6])); + attribs[idx] = String.valueOf(utils.packStringId(new string_id("cmd_n", abilityList[6]))); idx++; } names[idx] = "armorhpmax"; - attribs[idx] = "" + (utils.getIntScriptVar(self, "beast.display.armor") + getEnhancedSkillStatisticModifier(self, "private_armor_bonus")); + attribs[idx] = String.valueOf((utils.getIntScriptVar(self, "beast.display.armor") + getEnhancedSkillStatisticModifier(self, "private_armor_bonus"))); idx++; obj_id beastWeapon = getCurrentWeapon(self); if (isIdValid(beastWeapon)) @@ -182,14 +182,14 @@ public class beast extends script.base_script maxDamage = (int)(maxDamage * (1.0f + (expertiseDamageBonus / 100.0f))); float weaponSpeed = getWeaponAttackSpeed(beastWeapon); names[idx] = "damage"; - attribs[idx] = "" + minDamage + " - " + maxDamage; + attribs[idx] = minDamage + " - " + maxDamage; idx++; names[idx] = "attackspeed"; - attribs[idx] = "" + weaponSpeed; + attribs[idx] = String.valueOf(weaponSpeed); idx++; float beastDPS = utils.roundFloatByDecimal((minDamage + maxDamage) / weaponSpeed / 2); names[idx] = "basedps"; - attribs[idx] = "" + beastDPS; + attribs[idx] = String.valueOf(beastDPS); idx++; } else @@ -204,14 +204,14 @@ public class beast extends script.base_script minDamage = (int)(minDamage * (1.0f + (expertiseDamageBonus / 100.0f))); maxDamage = (int)(maxDamage * (1.0f + (expertiseDamageBonus / 100.0f))); names[idx] = "damage"; - attribs[idx] = "" + minDamage + " - " + maxDamage; + attribs[idx] = minDamage + " - " + maxDamage; idx++; names[idx] = "attackspeed"; - attribs[idx] = "" + weaponSpeed; + attribs[idx] = String.valueOf(weaponSpeed); idx++; float beastDPS = utils.roundFloatByDecimal((minDamage + maxDamage) / weaponSpeed / 2); names[idx] = "basedps"; - attribs[idx] = "" + beastDPS; + attribs[idx] = String.valueOf(beastDPS); idx++; } } @@ -225,13 +225,13 @@ public class beast extends script.base_script if (!name.equals("block_value_bonus")) { names[idx] = beast_lib.DISPLAY_NAMES[i]; - attribs[idx] = "" + utils.roundFloatByDecimal((utils.getFloatScriptVar(self, beast_lib.ARRAY_BEAST_INCUBATION_STATS[i]) * beast_lib.DISPLAY_CONVERSION_RATES[i])) + "%"; + attribs[idx] = String.valueOf(utils.roundFloatByDecimal((utils.getFloatScriptVar(self, beast_lib.ARRAY_BEAST_INCUBATION_STATS[i]) * beast_lib.DISPLAY_CONVERSION_RATES[i]))) + "%"; idx++; } else { names[idx] = beast_lib.DISPLAY_NAMES[i]; - attribs[idx] = "" + utils.roundFloatByDecimal(utils.getFloatScriptVar(self, beast_lib.ARRAY_BEAST_INCUBATION_STATS[i])); + attribs[idx] = String.valueOf(utils.roundFloatByDecimal(utils.getFloatScriptVar(self, beast_lib.ARRAY_BEAST_INCUBATION_STATS[i]))); idx++; } continue; @@ -239,7 +239,7 @@ public class beast extends script.base_script else { names[idx] = beast_lib.DISPLAY_NAMES[i]; - attribs[idx] = "" + utils.roundFloatByDecimal(utils.getFloatScriptVar(self, beast_lib.ARRAY_BEAST_INCUBATION_STATS[i])); + attribs[idx] = String.valueOf(utils.roundFloatByDecimal(utils.getFloatScriptVar(self, beast_lib.ARRAY_BEAST_INCUBATION_STATS[i]))); idx++; continue; } @@ -249,7 +249,7 @@ public class beast extends script.base_script if (glanceReduct > 0) { names[idx] = "bm_glance_reduct"; - attribs[idx] = "" + glanceReduct + "%"; + attribs[idx] = String.valueOf(glanceReduct) + "%"; idx++; if (idx >= names.length) { @@ -260,7 +260,7 @@ public class beast extends script.base_script if (damageReduct > 0) { names[idx] = "bm_damage_reduct"; - attribs[idx] = "" + damageReduct + "%"; + attribs[idx] = String.valueOf(damageReduct) + "%"; idx++; if (idx >= names.length) { @@ -271,7 +271,7 @@ public class beast extends script.base_script if (punishReduct > 0) { names[idx] = "bm_punish_reduct"; - attribs[idx] = "" + punishReduct + "%"; + attribs[idx] = String.valueOf(punishReduct) + "%"; idx++; if (idx >= names.length) { diff --git a/sku.0/sys.server/compiled/game/script/ai/beast_control_device.java b/sku.0/sys.server/compiled/game/script/ai/beast_control_device.java index 8de19fb4e..cab7e72a7 100755 --- a/sku.0/sys.server/compiled/game/script/ai/beast_control_device.java +++ b/sku.0/sys.server/compiled/game/script/ai/beast_control_device.java @@ -260,7 +260,7 @@ public class beast_control_device extends script.base_script String currentHappiness = utils.packStringId(beast_lib.convertHappinessString(self)); if (currentHappiness != null) { - attribs[idx] = "" + currentHappiness; + attribs[idx] = String.valueOf(currentHappiness); idx++; if (idx >= names.length) { @@ -271,7 +271,7 @@ public class beast_control_device extends script.base_script String currentLoyalty = utils.packStringId(beast_lib.convertLoyaltyString(self)); if (currentLoyalty != null) { - attribs[idx] = "" + currentLoyalty; + attribs[idx] = String.valueOf(currentLoyalty); idx++; if (idx >= names.length) { @@ -283,7 +283,7 @@ public class beast_control_device extends script.base_script if (trainingPoints > 0) { names[idx] = "bm_single_max_training_points"; - attribs[idx] = "" + trainingPoints; + attribs[idx] = String.valueOf(trainingPoints); idx++; if (idx >= names.length) { @@ -294,7 +294,7 @@ public class beast_control_device extends script.base_script if (pointsSpent > 0) { names[idx] = "bm_points_spent"; - attribs[idx] = "" + pointsSpent; + attribs[idx] = String.valueOf(pointsSpent); idx++; if (idx >= names.length) { @@ -305,7 +305,7 @@ public class beast_control_device extends script.base_script if (maxAvailableTrainingPoints > 0) { names[idx] = "bm_points_available"; - attribs[idx] = "" + maxAvailableTrainingPoints; + attribs[idx] = String.valueOf(maxAvailableTrainingPoints); idx++; if (idx >= names.length) { @@ -325,13 +325,13 @@ public class beast_control_device extends script.base_script if (!name.equals("block_value_bonus")) { names[idx] = beast_lib.DISPLAY_NAMES[i]; - attribs[idx] = "" + utils.roundFloatByDecimal(incubationBonuses[i] * beast_lib.DISPLAY_OBJVAR_CONVERSION_RATES[i]) + "%"; + attribs[idx] = String.valueOf(utils.roundFloatByDecimal(incubationBonuses[i] * beast_lib.DISPLAY_OBJVAR_CONVERSION_RATES[i])) + "%"; idx++; } else { names[idx] = beast_lib.DISPLAY_NAMES[i]; - attribs[idx] = "" + incubationBonuses[i]; + attribs[idx] = String.valueOf(incubationBonuses[i]); idx++; } continue; @@ -339,7 +339,7 @@ public class beast_control_device extends script.base_script else { names[idx] = beast_lib.DISPLAY_NAMES[i]; - attribs[idx] = "" + incubationBonuses[i]; + attribs[idx] = String.valueOf(incubationBonuses[i]); idx++; continue; } diff --git a/sku.0/sys.server/compiled/game/script/ai/pet.java b/sku.0/sys.server/compiled/game/script/ai/pet.java index e4c098744..ea3e40227 100755 --- a/sku.0/sys.server/compiled/game/script/ai/pet.java +++ b/sku.0/sys.server/compiled/game/script/ai/pet.java @@ -78,7 +78,7 @@ public class pet extends script.base_script location[] newPath = new location[oldPath.getNumItems()]; for (int i = 0; i < newPath.length; ++i) { - location point = oldPath.getLocationObjVar("" + i); + location point = oldPath.getLocationObjVar(String.valueOf(i)); newPath[i] = point; } setObjVar(self, pet_lib.OBJVAR_PET_PATROL_POINTS, newPath); @@ -109,7 +109,7 @@ public class pet extends script.base_script if (pet_lib.isDroidPet(self)) { names[idx] = "pet_stats.level"; - attribs[idx] = "" + getLevel(self); + attribs[idx] = String.valueOf(getLevel(self)); idx++; if (idx >= names.length) { @@ -131,7 +131,7 @@ public class pet extends script.base_script { int general_protection = getIntObjVar(petControlDevice, "creature_attribs.general_protection"); names[idx] = "pet_stats.dna_comp_armor_effectiveness"; - attribs[idx] = "" + general_protection; + attribs[idx] = String.valueOf(general_protection); idx++; if (idx >= names.length) { @@ -150,7 +150,7 @@ public class pet extends script.base_script { names[idx] = "pet_stats.creature_tohit"; int value = getIntObjVar(petControlDevice, "creature_attribs.toHitChance"); - attribs[idx] = "" + value; + attribs[idx] = String.valueOf(value); idx++; if (idx >= names.length) { @@ -161,7 +161,7 @@ public class pet extends script.base_script { names[idx] = "pet_stats.creature_defense"; int value = getIntObjVar(petControlDevice, "creature_attribs.defenseValue"); - attribs[idx] = "" + value; + attribs[idx] = String.valueOf(value); idx++; if (idx >= names.length) { @@ -172,7 +172,7 @@ public class pet extends script.base_script { names[idx] = "pet_stats.creature_state_resist"; float value = getFloatObjVar(petControlDevice, "creature_attribs.stateResist"); - attribs[idx] = "" + value * 100 + "%"; + attribs[idx] = String.valueOf(value * 100) + "%"; idx++; if (idx >= names.length) { @@ -183,7 +183,7 @@ public class pet extends script.base_script { names[idx] = "pet_stats.creature_crit_chance"; float value = getFloatObjVar(petControlDevice, "creature_attribs.critChance"); - attribs[idx] = "" + value * 100 + "%"; + attribs[idx] = String.valueOf(value * 100) + "%"; idx++; if (idx >= names.length) { @@ -194,7 +194,7 @@ public class pet extends script.base_script { names[idx] = "pet_stats.creature_crit_save"; float value = getFloatObjVar(petControlDevice, "creature_attribs.critSave"); - attribs[idx] = "" + value * 100 + "%"; + attribs[idx] = String.valueOf(value * 100) + "%"; idx++; if (idx >= names.length) { @@ -205,7 +205,7 @@ public class pet extends script.base_script { names[idx] = "pet_stats.creature_aggro_bonus"; float value = getFloatObjVar(petControlDevice, "creature_attribs.aggroBonus"); - attribs[idx] = "" + value * 100 + "%"; + attribs[idx] = String.valueOf(value * 100) + "%"; idx++; if (idx >= names.length) { @@ -221,7 +221,7 @@ public class pet extends script.base_script int[] dmgBonus = pet_lib.getPetAbilityDamageBonus(petControlDevice, min, max); min += dmgBonus[0]; max += dmgBonus[1]; - attribs[idx] = "" + min + " - " + max; + attribs[idx] = min + " - " + max; idx++; if (idx >= names.length) { @@ -263,7 +263,7 @@ public class pet extends script.base_script { names[idx] = "pet_stats.storage_module_rating"; int storage = getIntObjVar(petControlDevice, "storageModuleRating"); - attribs[idx] = "" + storage; + attribs[idx] = String.valueOf(storage); idx++; if (idx >= names.length) { @@ -274,7 +274,7 @@ public class pet extends script.base_script { names[idx] = "pet_stats.storage_module_rating"; int storage = getIntObjVar(petControlDevice, "ai.pet.hasContainer"); - attribs[idx] = "" + storage; + attribs[idx] = String.valueOf(storage); idx++; if (idx >= names.length) { @@ -287,7 +287,7 @@ public class pet extends script.base_script if (storage > 0) { names[idx] = "pet_stats.inventory_capacity"; - attribs[idx] = "" + storage; + attribs[idx] = String.valueOf(storage); idx++; if (idx >= names.length) { @@ -356,7 +356,7 @@ public class pet extends script.base_script return SCRIPT_CONTINUE; } names[idx] = "pet_stats.data_module_rating"; - attribs[idx] = "" + datastorage; + attribs[idx] = String.valueOf(datastorage); idx++; if (idx >= names.length) { @@ -369,7 +369,7 @@ public class pet extends script.base_script if (storage > 0) { names[idx] = "pet_stats.datapad_slots"; - attribs[idx] = "" + storage; + attribs[idx] = String.valueOf(storage); idx++; if (idx >= names.length) { diff --git a/sku.0/sys.server/compiled/game/script/ai/pet_control_device.java b/sku.0/sys.server/compiled/game/script/ai/pet_control_device.java index cb7891324..ea06478f5 100755 --- a/sku.0/sys.server/compiled/game/script/ai/pet_control_device.java +++ b/sku.0/sys.server/compiled/game/script/ai/pet_control_device.java @@ -722,7 +722,7 @@ public class pet_control_device extends script.base_script names[idx] = "rideables_current_of_max"; int currentRideables = callable.getNumStoredCDByType(player, callable.CALLABLE_TYPE_RIDEABLE); int maxRideables = callable.getMaxAllowedStoredRideables(player); - attribs[idx] = "" + target_dummy.BLUE + currentRideables + " of " + maxRideables; + attribs[idx] = target_dummy.BLUE + currentRideables + " of " + maxRideables; idx++; if (idx >= names.length) { @@ -763,7 +763,7 @@ public class pet_control_device extends script.base_script } else { - attribs[idx] = "" + available; + attribs[idx] = String.valueOf(available); idx++; if (idx >= names.length) { @@ -771,7 +771,7 @@ public class pet_control_device extends script.base_script } int trainingPts = getIntObjVar(self, "ai.petAbility.trainingPts"); names[idx] = "ability_points"; - attribs[idx] = "" + trainingPts; + attribs[idx] = String.valueOf(trainingPts); idx++; if (idx >= names.length) { @@ -780,7 +780,7 @@ public class pet_control_device extends script.base_script int xpEarned = getIntObjVar(self, "ai.petAdvance.xpEarned"); int xpToLevel = pet_lib.getPcdXpForNextLevel(self); names[idx] = "ability_xp"; - attribs[idx] = "" + xpEarned + "/" + xpToLevel; + attribs[idx] = xpEarned + "/" + xpToLevel; } idx++; if (idx >= names.length) @@ -801,7 +801,7 @@ public class pet_control_device extends script.base_script vitality = 0; } names[idx] = "creature_vitality"; - attribs[idx] = "" + vitality + "/" + maxVitality; + attribs[idx] = vitality + "/" + maxVitality; idx++; if (idx >= names.length) { @@ -816,13 +816,13 @@ public class pet_control_device extends script.base_script health += pet_lib.getPetAbilityHealthBonus(self, health); if (vitality < pet_lib.MAX_VITALITY_LOSS) { - attribs[idx] = "" + pet_lib.getReducedStatValue(health, vitality) + "/"; + attribs[idx] = pet_lib.getReducedStatValue(health, vitality) + "/"; } else { attribs[idx] = ""; } - attribs[idx] += "" + health; + attribs[idx] += String.valueOf(health); idx++; if (idx >= names.length) { @@ -836,13 +836,13 @@ public class pet_control_device extends script.base_script regen += pet_lib.getPetAbilityRegenBonus(self, regen); if (vitality < pet_lib.MAX_VITALITY_LOSS) { - attribs[idx] = "" + pet_lib.getReducedStatValue(regen, vitality) + "/"; + attribs[idx] = pet_lib.getReducedStatValue(regen, vitality) + "/"; } else { attribs[idx] = ""; } - attribs[idx] += "" + regen; + attribs[idx] += String.valueOf(regen); idx++; if (idx >= names.length) { @@ -853,7 +853,7 @@ public class pet_control_device extends script.base_script { int general_protection = getIntObjVar(self, "creature_attribs.general_protection"); names[idx] = "pet_stats.dna_comp_armor_effectiveness"; - attribs[idx] = "" + general_protection; + attribs[idx] = String.valueOf(general_protection); idx++; if (idx >= names.length) { @@ -867,7 +867,7 @@ public class pet_control_device extends script.base_script { names[idx] = "pet_stats.creature_tohit"; int value = getIntObjVar(self, "creature_attribs.toHitChance"); - attribs[idx] = "" + value; + attribs[idx] = String.valueOf(value); idx++; if (idx >= names.length) { @@ -878,7 +878,7 @@ public class pet_control_device extends script.base_script { names[idx] = "pet_stats.creature_defense"; int value = getIntObjVar(self, "creature_attribs.defenseValue"); - attribs[idx] = "" + value; + attribs[idx] = String.valueOf(value); idx++; if (idx >= names.length) { @@ -889,7 +889,7 @@ public class pet_control_device extends script.base_script { names[idx] = "pet_stats.creature_state_resist"; float value = getFloatObjVar(self, "creature_attribs.stateResist"); - attribs[idx] = "" + value * 100 + "%"; + attribs[idx] = String.valueOf(value * 100) + "%"; idx++; if (idx >= names.length) { @@ -900,7 +900,7 @@ public class pet_control_device extends script.base_script { names[idx] = "pet_stats.creature_crit_chance"; float value = getFloatObjVar(self, "creature_attribs.critChance"); - attribs[idx] = "" + value * 100 + "%"; + attribs[idx] = String.valueOf(value * 100) + "%"; idx++; if (idx >= names.length) { @@ -911,7 +911,7 @@ public class pet_control_device extends script.base_script { names[idx] = "pet_stats.creature_crit_save"; float value = getFloatObjVar(self, "creature_attribs.critSave"); - attribs[idx] = "" + value * 100 + "%"; + attribs[idx] = String.valueOf(value * 100) + "%"; idx++; if (idx >= names.length) { @@ -922,7 +922,7 @@ public class pet_control_device extends script.base_script { names[idx] = "pet_stats.creature_aggro_bonus"; float value = getFloatObjVar(self, "creature_attribs.aggroBonus"); - attribs[idx] = "" + value * 100 + "%"; + attribs[idx] = String.valueOf(value * 100) + "%"; idx++; if (idx >= names.length) { @@ -937,7 +937,7 @@ public class pet_control_device extends script.base_script int[] dmgBonus = pet_lib.getPetAbilityDamageBonus(self, min, max); min += dmgBonus[0]; max += dmgBonus[1]; - attribs[idx] = "" + min + " - " + max; + attribs[idx] = min + " - " + max; idx++; if (idx >= names.length) { @@ -1003,7 +1003,7 @@ public class pet_control_device extends script.base_script { names[idx] = "pet_stats.storage_module_rating"; int storage = getIntObjVar(self, "storageModuleRating"); - attribs[idx] = "" + storage; + attribs[idx] = String.valueOf(storage); idx++; if (idx >= names.length) { @@ -1014,7 +1014,7 @@ public class pet_control_device extends script.base_script { names[idx] = "pet_stats.storage_module_rating"; int storage = getIntObjVar(self, "ai.pet.hasContainer"); - attribs[idx] = "" + storage; + attribs[idx] = String.valueOf(storage); idx++; if (idx >= names.length) { @@ -1027,7 +1027,7 @@ public class pet_control_device extends script.base_script if (storage > 0) { names[idx] = "pet_stats.inventory_capacity"; - attribs[idx] = "" + storage; + attribs[idx] = String.valueOf(storage); idx++; if (idx >= names.length) { @@ -1096,7 +1096,7 @@ public class pet_control_device extends script.base_script return SCRIPT_CONTINUE; } names[idx] = "pet_stats.data_module_rating"; - attribs[idx] = "" + datastorage; + attribs[idx] = String.valueOf(datastorage); idx++; if (idx >= names.length) { @@ -1109,7 +1109,7 @@ public class pet_control_device extends script.base_script if (storage > 0) { names[idx] = "pet_stats.datapad_slots"; - attribs[idx] = "" + storage; + attribs[idx] = String.valueOf(storage); idx++; if (idx >= names.length) { @@ -1475,13 +1475,13 @@ public class pet_control_device extends script.base_script myHealth += pet_lib.getPetAbilityHealthBonus(self, myHealth); if (vitality < pet_lib.MAX_VITALITY_LOSS) { - attribs[idx] = "" + pet_lib.getReducedStatValue(myHealth, vitality) + "/"; + attribs[idx] = pet_lib.getReducedStatValue(myHealth, vitality) + "/"; } else { attribs[idx] = ""; } - attribs[idx] += "" + myHealth; + attribs[idx] += String.valueOf(myHealth); idx++; if (idx >= names.length) { @@ -1490,7 +1490,7 @@ public class pet_control_device extends script.base_script names[idx] = "pet_stats.creature_attack"; float attackSpeed = creatureDict.getInt("attackSpeed"); attackSpeed = (float)((int)(attackSpeed * 100) / 100.0f); - attribs[idx] = "" + attackSpeed; + attribs[idx] = String.valueOf(attackSpeed); idx++; if (idx >= names.length) { @@ -1498,7 +1498,7 @@ public class pet_control_device extends script.base_script } names[idx] = "pet_stats.creature_tohit"; int toHit = dataTableGetInt(create.STAT_BALANCE_TABLE, toHitLevel - 1, "ToHit"); - attribs[idx] = "" + toHit; + attribs[idx] = String.valueOf(toHit); idx++; if (idx >= names.length) { @@ -1506,7 +1506,7 @@ public class pet_control_device extends script.base_script } names[idx] = "pet_stats.creature_defense"; int defenseValue = dataTableGetInt(create.STAT_BALANCE_TABLE, toHitLevel - 1, "Def"); - attribs[idx] = "" + defenseValue; + attribs[idx] = String.valueOf(defenseValue); idx++; if (idx >= names.length) { @@ -1519,7 +1519,7 @@ public class pet_control_device extends script.base_script minDamage += dmgBonus[0]; maxDamage += dmgBonus[1]; names[idx] = "pet_stats.creature_damage"; - attribs[idx] = "" + minDamage + " - " + maxDamage; + attribs[idx] = minDamage + " - " + maxDamage; idx++; if (idx >= names.length) { @@ -1641,38 +1641,37 @@ public class pet_control_device extends script.base_script float fltBaseWalkSpeed = dctMountInfo.getFloat("fltBaseWalkSpeed"); float fltBurstRunSpeed = dctMountInfo.getFloat("fltBaseRunSpeed"); names[idx] = "mount"; - attribs[idx++] = "" + pet_lib.isMountPcd(self); + attribs[idx++] = Boolean.toString(pet_lib.isMountPcd(self)); if (hasObjVar(self, "mount_type")) { int mountType = getIntObjVar(self, "mount_type"); - if (mountType == 0) - { - names[idx] = "walkspeed"; - attribs[idx++] = "" + fltBaseWalkSpeed; - names[idx] = "runspeed"; - attribs[idx++] = "" + fltBurstRunSpeed; - } - else if (mountType == 1) - { - names[idx] = "glide_speed"; - attribs[idx++] = "" + fltBaseWalkSpeed; - names[idx] = "fly_speed"; - attribs[idx++] = "" + fltBurstRunSpeed; - } - else - { - names[idx] = "walkspeed"; - attribs[idx++] = "" + fltBaseWalkSpeed; - names[idx] = "runspeed"; - attribs[idx++] = "" + fltBurstRunSpeed; + switch (mountType) { + case 0: + names[idx] = "walkspeed"; + attribs[idx++] = Float.toString(fltBaseWalkSpeed); + names[idx] = "runspeed"; + attribs[idx++] = Float.toString(fltBurstRunSpeed); + break; + case 1: + names[idx] = "glide_speed"; + attribs[idx++] = Float.toString(fltBaseWalkSpeed); + names[idx] = "fly_speed"; + attribs[idx++] = Float.toString(fltBurstRunSpeed); + break; + default: + names[idx] = "walkspeed"; + attribs[idx++] = Float.toString(fltBaseWalkSpeed); + names[idx] = "runspeed"; + attribs[idx++] = Float.toString(fltBurstRunSpeed); + break; } } else { names[idx] = "walkspeed"; - attribs[idx++] = "" + fltBaseWalkSpeed; + attribs[idx++] = Float.toString(fltBaseWalkSpeed); names[idx] = "runspeed"; - attribs[idx++] = "" + fltBurstRunSpeed; + attribs[idx++] = Float.toString(fltBurstRunSpeed); } idx++; if (idx >= names.length) diff --git a/sku.0/sys.server/compiled/game/script/city/city_pathing_npc.java b/sku.0/sys.server/compiled/game/script/city/city_pathing_npc.java index e6c851a51..cac34d220 100755 --- a/sku.0/sys.server/compiled/game/script/city/city_pathing_npc.java +++ b/sku.0/sys.server/compiled/game/script/city/city_pathing_npc.java @@ -80,7 +80,7 @@ public class city_pathing_npc extends script.base_script } public void doFacingAction(obj_id npc, obj_id currentStop) throws InterruptedException { - obj_id objThingToFace = utils.stringToObjId("" + getIntObjVar(currentStop, "faceto")); + obj_id objThingToFace = utils.stringToObjId(Integer.toString(getIntObjVar(currentStop, "faceto"))); if (isIdValid(objThingToFace)) { faceTo(npc, objThingToFace); @@ -109,7 +109,7 @@ public class city_pathing_npc extends script.base_script { if (hasObjVar(currentStop, "destination")) { - obj_id dest = utils.stringToObjId("" + getIntObjVar(currentStop, "destination")); + obj_id dest = utils.stringToObjId(Integer.toString(getIntObjVar(currentStop, "destination"))); utils.setScriptVar(npc, "pathing.currentStop", dest); pathTo(npc, getLocation(dest)); } diff --git a/sku.0/sys.server/compiled/game/script/combat_engine.java b/sku.0/sys.server/compiled/game/script/combat_engine.java index 820cf26d0..1148a85e2 100755 --- a/sku.0/sys.server/compiled/game/script/combat_engine.java +++ b/sku.0/sys.server/compiled/game/script/combat_engine.java @@ -7,10 +7,11 @@ package script; +import java.util.HashMap; import script.library.combat_consts; import script.library.utils; -import java.util.Hashtable; +import java.util.Map; public class combat_engine { @@ -18,12 +19,12 @@ public class combat_engine * Combat constants */ - private static Hashtable m_CombatDataCache = new Hashtable(); - private static Hashtable m_BuffDataCache = new Hashtable(); - + private static final Map m_CombatDataCache = new HashMap<>(); + private static final Map m_BuffDataCache = new HashMap<>(); + public static final int OUT_OF_RANGE = Integer.MIN_VALUE; private static float MAX_MELEE_TARGET_RANGE = -1.0f; - private static float DEFAULT_MAX_MELEE_TARGET_RANGE = 24.0f; + private static final float DEFAULT_MAX_MELEE_TARGET_RANGE = 24.0f; private static float MAX_COMBAT_RANGE = -1.0f; @@ -629,17 +630,17 @@ public class combat_engine // Buff data public static buff_data getBuffData(int buffNameCrc) - { - if(m_BuffDataCache.containsKey("" + buffNameCrc)) + { + if(m_BuffDataCache.containsKey(Integer.toString(buffNameCrc))) { - return buff_data.clone((buff_data)m_BuffDataCache.get("" + buffNameCrc)); + return buff_data.clone((buff_data)m_BuffDataCache.get(Integer.toString(buffNameCrc))); } buff_data dat = loadBuffData(buffNameCrc); if(dat != null) { - m_BuffDataCache.put("" + buffNameCrc, dat); + m_BuffDataCache.put(Integer.toString(buffNameCrc), dat); } else { diff --git a/sku.0/sys.server/compiled/game/script/content_tools/spawn_generation_tool.java b/sku.0/sys.server/compiled/game/script/content_tools/spawn_generation_tool.java index a27c9a3eb..c99e91ba8 100755 --- a/sku.0/sys.server/compiled/game/script/content_tools/spawn_generation_tool.java +++ b/sku.0/sys.server/compiled/game/script/content_tools/spawn_generation_tool.java @@ -206,29 +206,27 @@ public class spawn_generation_tool extends script.base_script clearSUIDataSource(pid, sui.LISTBOX_DATASOURCE); if (!isIdValid(mso) || ast.equals(NOT_ASSIGNED)) { - addSUIDataItem(pid, sui.LISTBOX_DATASOURCE, "" + 0); + addSUIDataItem(pid, sui.LISTBOX_DATASOURCE, "0"); setSUIProperty(pid, sui.LISTBOX_DATASOURCE + "." + 0, sui.PROP_TEXT, "Create New Spawn Data"); - addSUIDataItem(pid, sui.LISTBOX_DATASOURCE, "" + 1); + addSUIDataItem(pid, sui.LISTBOX_DATASOURCE, "1"); setSUIProperty(pid, sui.LISTBOX_DATASOURCE + "." + 1, sui.PROP_TEXT, "Load Existing Spawn Data"); subscribeToSUIProperty(pid, sui.LISTBOX_LIST, sui.PROP_SELECTEDROW); subscribeToSUIProperty(pid, sui.LISTBOX_TITLE, sui.PROP_TEXT); showSUIPage(pid); flushSUIPage(pid); - return; } else { - addSUIDataItem(pid, sui.LISTBOX_DATASOURCE, "" + 0); + addSUIDataItem(pid, sui.LISTBOX_DATASOURCE, "0"); setSUIProperty(pid, sui.LISTBOX_DATASOURCE + "." + 0, sui.PROP_TEXT, "Use Existing Data"); - addSUIDataItem(pid, sui.LISTBOX_DATASOURCE, "" + 1); + addSUIDataItem(pid, sui.LISTBOX_DATASOURCE, "1"); setSUIProperty(pid, sui.LISTBOX_DATASOURCE + "." + 1, sui.PROP_TEXT, "Create New Spawn Data"); - addSUIDataItem(pid, sui.LISTBOX_DATASOURCE, "" + 2); + addSUIDataItem(pid, sui.LISTBOX_DATASOURCE, "2"); setSUIProperty(pid, sui.LISTBOX_DATASOURCE + "." + 2, sui.PROP_TEXT, "Load Existing Spawn Data"); subscribeToSUIProperty(pid, sui.LISTBOX_LIST, sui.PROP_SELECTEDROW); subscribeToSUIProperty(pid, sui.LISTBOX_TITLE, sui.PROP_TEXT); showSUIPage(pid); flushSUIPage(pid); - return; } } public void setMasterSpawnObject(obj_id player) throws InterruptedException @@ -249,14 +247,14 @@ public class spawn_generation_tool extends script.base_script clearSUIDataSource(pid, sui.LISTBOX_DATASOURCE); if (sortedList == null || sortedList.length == 0) { - addSUIDataItem(pid, sui.LISTBOX_DATASOURCE, "" + 0); + addSUIDataItem(pid, sui.LISTBOX_DATASOURCE, "0"); setSUIProperty(pid, sui.LISTBOX_DATASOURCE + "." + 0, sui.PROP_TEXT, "No Available Objects In Range"); } else { for (int i = 0; i < sortedList.length; i++) { - addSUIDataItem(pid, sui.LISTBOX_DATASOURCE, "" + i); + addSUIDataItem(pid, sui.LISTBOX_DATASOURCE, Integer.toString(i)); setSUIProperty(pid, sui.LISTBOX_DATASOURCE + "." + i, sui.PROP_TEXT, sortedList[i]); } } @@ -281,9 +279,9 @@ public class spawn_generation_tool extends script.base_script setSUIProperty(pid, sui.LISTBOX_BTN_OK, sui.PROP_TEXT, "@ok"); setSUIProperty(pid, sui.LISTBOX_BTN_CANCEL, sui.PROP_TEXT, "@cancel"); clearSUIDataSource(pid, sui.LISTBOX_DATASOURCE); - addSUIDataItem(pid, sui.LISTBOX_DATASOURCE, "" + 0); + addSUIDataItem(pid, sui.LISTBOX_DATASOURCE, "0"); setSUIProperty(pid, sui.LISTBOX_DATASOURCE + "." + 0, sui.PROP_TEXT, "Create New Associated Spawn Table"); - addSUIDataItem(pid, sui.LISTBOX_DATASOURCE, "" + 1); + addSUIDataItem(pid, sui.LISTBOX_DATASOURCE, "1"); setSUIProperty(pid, sui.LISTBOX_DATASOURCE + "." + 1, sui.PROP_TEXT, "Load Exisisting Associated Spawn Table"); subscribeToSUIEvent(pid, sui_event_type.SET_onGenericSelection, sui.LISTBOX_LIST, "createSpawnGenerationSui"); subscribeToSUIPropertyForEvent(pid, sui_event_type.SET_onGenericSelection, sui.LISTBOX_LIST, sui.LISTBOX_LIST, sui.PROP_SELECTEDROW); diff --git a/sku.0/sys.server/compiled/game/script/conversation/faction_recruiter_imperial.java b/sku.0/sys.server/compiled/game/script/conversation/faction_recruiter_imperial.java index c6534ead8..7f400fbd1 100755 --- a/sku.0/sys.server/compiled/game/script/conversation/faction_recruiter_imperial.java +++ b/sku.0/sys.server/compiled/game/script/conversation/faction_recruiter_imperial.java @@ -163,7 +163,6 @@ public class faction_recruiter_imperial extends script.base_script int faction_id = pvpGetAlignedFaction(player); String playerGcwFaction = factions.getFactionNameByHashCode(faction_id); faction_perk.displayAvailableFactionItemRanks(player, npc, playerGcwRank, playerGcwFaction); - return; } public String faction_recruiter_imperial_tokenTO_getFactionRankName(obj_id player, obj_id npc) throws InterruptedException { @@ -189,7 +188,7 @@ public class faction_recruiter_imperial extends script.base_script public String faction_recruiter_imperial_tokenTO_getRebelScoreString(obj_id player, obj_id npc) throws InterruptedException { int intTest = getIntObjVar(npc, "Rebel.controlScore"); - return "" + intTest; + return Integer.toString(intTest); } public int faction_recruiter_imperial_tokenDI_getImperialScore(obj_id player, obj_id npc) throws InterruptedException { diff --git a/sku.0/sys.server/compiled/game/script/conversation/faction_recruiter_rebel.java b/sku.0/sys.server/compiled/game/script/conversation/faction_recruiter_rebel.java index 291287bbf..fa96cf565 100755 --- a/sku.0/sys.server/compiled/game/script/conversation/faction_recruiter_rebel.java +++ b/sku.0/sys.server/compiled/game/script/conversation/faction_recruiter_rebel.java @@ -158,7 +158,6 @@ public class faction_recruiter_rebel extends script.base_script int faction_id = pvpGetAlignedFaction(player); String playerGcwFaction = factions.getFactionNameByHashCode(faction_id); faction_perk.displayAvailableFactionItemRanks(player, npc, playerGcwRank, playerGcwFaction); - return; } public String faction_recruiter_rebel_tokenTO_getFactionRankName(obj_id player, obj_id npc) throws InterruptedException { @@ -173,7 +172,7 @@ public class faction_recruiter_rebel extends script.base_script } public String faction_recruiter_rebel_tokenTO_getRebelScoreString(obj_id player, obj_id npc) throws InterruptedException { - return "" + getIntObjVar(npc, "Rebel.controlScore"); + return getStringObjVar(npc, "Rebel.controlScore"); } public int faction_recruiter_rebel_tokenDI_getImperialScore(obj_id player, obj_id npc) throws InterruptedException { diff --git a/sku.0/sys.server/compiled/game/script/conversation/fs_medic_puzzle_head_medic.java b/sku.0/sys.server/compiled/game/script/conversation/fs_medic_puzzle_head_medic.java index 36d5f5064..26cf09c4a 100755 --- a/sku.0/sys.server/compiled/game/script/conversation/fs_medic_puzzle_head_medic.java +++ b/sku.0/sys.server/compiled/game/script/conversation/fs_medic_puzzle_head_medic.java @@ -23,25 +23,11 @@ public class fs_medic_puzzle_head_medic extends script.base_script } public boolean fs_medic_puzzle_head_medic_condition_hasCompleted1(obj_id player, obj_id npc) throws InterruptedException { - if (quests.canActivate(MEDIC_QUEST_NAME_TWO, player) && quests.isComplete(MEDIC_QUEST_NAME_ONE, player)) - { - return true; - } - else - { - return false; - } + return quests.canActivate(MEDIC_QUEST_NAME_TWO, player) && quests.isComplete(MEDIC_QUEST_NAME_ONE, player); } public boolean fs_medic_puzzle_head_medic_condition_hasCompleted2(obj_id player, obj_id npc) throws InterruptedException { - if (quests.canActivate(MEDIC_QUEST_NAME_THREE, player) && quests.isComplete(MEDIC_QUEST_NAME_TWO, player)) - { - return true; - } - else - { - return false; - } + return quests.canActivate(MEDIC_QUEST_NAME_THREE, player) && quests.isComplete(MEDIC_QUEST_NAME_TWO, player); } public boolean fs_medic_puzzle_head_medic_condition_Finished(obj_id player, obj_id npc) throws InterruptedException { @@ -180,7 +166,7 @@ public class fs_medic_puzzle_head_medic extends script.base_script peopleHealed = peopleHealed - 5; } peopleHealed = 5 - peopleHealed; - return "" + peopleHealed; + return Integer.toString(peopleHealed); } public static final String MEDIC_QUEST_NAME_ONE = "fs_medic_puzzle_quest_01"; public static final String MEDIC_QUEST_NAME_TWO = "fs_medic_puzzle_quest_02"; diff --git a/sku.0/sys.server/compiled/game/script/cybernetic/cybernetic_crafted_item.java b/sku.0/sys.server/compiled/game/script/cybernetic/cybernetic_crafted_item.java index 66e23aba8..2d14f8abf 100755 --- a/sku.0/sys.server/compiled/game/script/cybernetic/cybernetic_crafted_item.java +++ b/sku.0/sys.server/compiled/game/script/cybernetic/cybernetic_crafted_item.java @@ -117,7 +117,7 @@ public class cybernetic_crafted_item extends script.base_script } else { - attribs[free++] = "" + cyberRow.getInt("throwRangeMod"); + attribs[free++] = Integer.toString(cyberRow.getInt("throwRangeMod")); } } if (cyberRow.getInt("rangedRangeMod") != 0) @@ -129,7 +129,7 @@ public class cybernetic_crafted_item extends script.base_script } else { - attribs[free++] = "" + cyberRow.getInt("rangedRangeMod"); + attribs[free++] = Integer.toString(cyberRow.getInt("rangedRangeMod")); } } if (cyberRow.getInt("healingMod") != 0) @@ -141,7 +141,7 @@ public class cybernetic_crafted_item extends script.base_script } else { - attribs[free++] = "" + cyberRow.getInt("healingMod"); + attribs[free++] = Integer.toString(cyberRow.getInt("healingMod")); } } if (cyberRow.getInt("rangedAccuracyMod") != 0) @@ -153,7 +153,7 @@ public class cybernetic_crafted_item extends script.base_script } else { - attribs[free++] = "" + cyberRow.getInt("rangedAccuracyMod"); + attribs[free++] = Integer.toString(cyberRow.getInt("rangedAccuracyMod")); } } if (cyberRow.getInt("meleeDefMod") != 0) @@ -165,7 +165,7 @@ public class cybernetic_crafted_item extends script.base_script } else { - attribs[free++] = "" + cyberRow.getInt("meleeDefMod"); + attribs[free++] = Integer.toString(cyberRow.getInt("meleeDefMod")); } } if (cyberRow.getInt("meleeAccuracyMod") != 0) @@ -177,7 +177,7 @@ public class cybernetic_crafted_item extends script.base_script } else { - attribs[free++] = "" + cyberRow.getInt("meleeAccuracyMod"); + attribs[free++] = Integer.toString(cyberRow.getInt("meleeAccuracyMod")); } } if (cyberRow.getInt("commandoLegs") != 0) diff --git a/sku.0/sys.server/compiled/game/script/cybernetic/cybernetic_item.java b/sku.0/sys.server/compiled/game/script/cybernetic/cybernetic_item.java index e8108046a..adcde8c25 100755 --- a/sku.0/sys.server/compiled/game/script/cybernetic/cybernetic_item.java +++ b/sku.0/sys.server/compiled/game/script/cybernetic/cybernetic_item.java @@ -138,7 +138,7 @@ public class cybernetic_item extends script.base_script } else { - attribs[free++] = "" + cyberRow.getInt("throwRangeMod"); + attribs[free++] = Integer.toString(cyberRow.getInt("throwRangeMod")); } } if (cyberRow.getInt("rangedRangeMod") != 0) @@ -150,7 +150,7 @@ public class cybernetic_item extends script.base_script } else { - attribs[free++] = "" + cyberRow.getInt("rangedRangeMod"); + attribs[free++] = Integer.toString(cyberRow.getInt("rangedRangeMod")); } } if (cyberRow.getInt("healingMod") != 0) @@ -162,7 +162,7 @@ public class cybernetic_item extends script.base_script } else { - attribs[free++] = "" + cyberRow.getInt("healingMod"); + attribs[free++] = Integer.toString(cyberRow.getInt("healingMod")); } } if (cyberRow.getInt("rangedAccuracyMod") != 0) @@ -174,7 +174,7 @@ public class cybernetic_item extends script.base_script } else { - attribs[free++] = "" + cyberRow.getInt("rangedAccuracyMod"); + attribs[free++] = Integer.toString(cyberRow.getInt("rangedAccuracyMod")); } } if (cyberRow.getInt("meleeDefMod") != 0) @@ -186,7 +186,7 @@ public class cybernetic_item extends script.base_script } else { - attribs[free++] = "" + cyberRow.getInt("meleeDefMod"); + attribs[free++] = Integer.toString(cyberRow.getInt("meleeDefMod")); } } if (cyberRow.getInt("meleeAccuracyMod") != 0) @@ -198,7 +198,7 @@ public class cybernetic_item extends script.base_script } else { - attribs[free++] = "" + cyberRow.getInt("meleeAccuracyMod"); + attribs[free++] = Integer.toString(cyberRow.getInt("meleeAccuracyMod")); } } if (cyberRow.getInt("commandoLegs") != 0) diff --git a/sku.0/sys.server/compiled/game/script/event/dianoga_dumpster.java b/sku.0/sys.server/compiled/game/script/event/dianoga_dumpster.java index 8d584845b..7f377be27 100755 --- a/sku.0/sys.server/compiled/game/script/event/dianoga_dumpster.java +++ b/sku.0/sys.server/compiled/game/script/event/dianoga_dumpster.java @@ -264,21 +264,20 @@ public class dianoga_dumpster extends script.base_script if (succesFeeds > 0) { names[idx] = "times_fed"; - attribs[idx] = "" + succesFeeds; + attribs[idx] = Integer.toString(succesFeeds); idx++; } names[idx] = "next_feed"; - if (currentStatus == 0) - { - attribs[idx] = getCalendarTimeStringLocal(lastFed + house_pet.getUpdateWeekly(self)); - } - else if (currentStatus == 1) - { - attribs[idx] = "Now"; - } - else - { - attribs[idx] = "Hopefully Soon"; + switch (currentStatus) { + case 0: + attribs[idx] = getCalendarTimeStringLocal(lastFed + house_pet.getUpdateWeekly(self)); + break; + case 1: + attribs[idx] = "Now"; + break; + default: + attribs[idx] = "Hopefully Soon"; + break; } idx++; names[idx] = "time_now"; diff --git a/sku.0/sys.server/compiled/game/script/event/housepackup/sarlacc_furniture_terminal.java b/sku.0/sys.server/compiled/game/script/event/housepackup/sarlacc_furniture_terminal.java index 842fb6c2b..9df1e9207 100755 --- a/sku.0/sys.server/compiled/game/script/event/housepackup/sarlacc_furniture_terminal.java +++ b/sku.0/sys.server/compiled/game/script/event/housepackup/sarlacc_furniture_terminal.java @@ -291,21 +291,20 @@ public class sarlacc_furniture_terminal extends script.base_script if (succesFeeds > 0) { names[idx] = "times_fed"; - attribs[idx] = "" + succesFeeds; + attribs[idx] = Integer.toString(succesFeeds); idx++; } names[idx] = "next_feed"; - if (currentStatus == 0) - { - attribs[idx] = getCalendarTimeStringLocal(lastFed + house_pet.getUpdateWeekly(self)); - } - else if (currentStatus == 1) - { - attribs[idx] = "Now"; - } - else - { - attribs[idx] = "Hopefully Soon"; + switch (currentStatus) { + case 0: + attribs[idx] = getCalendarTimeStringLocal(lastFed + house_pet.getUpdateWeekly(self)); + break; + case 1: + attribs[idx] = "Now"; + break; + default: + attribs[idx] = "Hopefully Soon"; + break; } idx++; names[idx] = "time_now"; @@ -505,7 +504,7 @@ public class sarlacc_furniture_terminal extends script.base_script { return SCRIPT_CONTINUE; } - if (params == null || params.equals("")) + if (params == null || params.isEmpty()) { return SCRIPT_CONTINUE; } @@ -527,7 +526,7 @@ public class sarlacc_furniture_terminal extends script.base_script { return SCRIPT_CONTINUE; } - if (params == null || params.equals("")) + if (params == null || params.isEmpty()) { return SCRIPT_CONTINUE; } @@ -553,7 +552,7 @@ public class sarlacc_furniture_terminal extends script.base_script { return SCRIPT_CONTINUE; } - if (params == null || params.equals("")) + if (params == null || params.isEmpty()) { return SCRIPT_CONTINUE; } @@ -646,21 +645,21 @@ public class sarlacc_furniture_terminal extends script.base_script CustomerServiceLog("sarlacc_minigame: ", "updateSarlaccPet - Sarlacc: " + sarlacc + " has a feeding iteration, continuing debug procedures."); } int currentPhase = getIntObjVar(sarlacc, house_pet.SARLACC_CURRENT_PHASE); - if (currentPhase == house_pet.SARLACC_DEATH) - { - CustomerServiceLog("sarlacc_minigame: ", "updateSarlaccPet - Sarlacc: " + sarlacc + " we haven't even started updating yet and the Sarlacc is currently DEAD."); - } - else if (currentPhase == house_pet.SARLACC_STARVING) - { - CustomerServiceLog("sarlacc_minigame: ", "updateSarlaccPet - Sarlacc: " + sarlacc + " we haven't even started updating yet and the Sarlacc is currently STARVING."); - } - else if (currentPhase == house_pet.SARLACC_HUNGRY) - { - CustomerServiceLog("sarlacc_minigame: ", "updateSarlaccPet - Sarlacc: " + sarlacc + " we haven't even started updating yet and the Sarlacc is currently HUNGRY."); - } - else if (currentPhase == house_pet.SARLACC_FED) - { - CustomerServiceLog("sarlacc_minigame: ", "updateSarlaccPet - Sarlacc: " + sarlacc + " we haven't even started updating yet and the Sarlacc is currently FED."); + switch (currentPhase) { + case house_pet.SARLACC_DEATH: + CustomerServiceLog("sarlacc_minigame: ", "updateSarlaccPet - Sarlacc: " + sarlacc + " we haven't even started updating yet and the Sarlacc is currently DEAD."); + break; + case house_pet.SARLACC_STARVING: + CustomerServiceLog("sarlacc_minigame: ", "updateSarlaccPet - Sarlacc: " + sarlacc + " we haven't even started updating yet and the Sarlacc is currently STARVING."); + break; + case house_pet.SARLACC_HUNGRY: + CustomerServiceLog("sarlacc_minigame: ", "updateSarlaccPet - Sarlacc: " + sarlacc + " we haven't even started updating yet and the Sarlacc is currently HUNGRY."); + break; + case house_pet.SARLACC_FED: + CustomerServiceLog("sarlacc_minigame: ", "updateSarlaccPet - Sarlacc: " + sarlacc + " we haven't even started updating yet and the Sarlacc is currently FED."); + break; + default: + break; } if (getIntObjVar(sarlacc, house_pet.SARLACC_FEEDING_ITERATION) >= house_pet.SARLACC_PHASE_WEEKS) { @@ -842,7 +841,7 @@ public class sarlacc_furniture_terminal extends script.base_script for (int i = 0; i < edibleItems.length; i++) { String name = getAssignedName(edibleItems[i]); - if (name.equals("") || name == null) + if (name.isEmpty() || name == null) { name = getString(getNameStringId(edibleItems[i])); } @@ -1328,7 +1327,7 @@ public class sarlacc_furniture_terminal extends script.base_script { logData += " No Sarlacc Penalty Variable."; } - if (logData == null || logData.equals("")) + if (logData.isEmpty() || logData.isBlank()) { return false; } diff --git a/sku.0/sys.server/compiled/game/script/fishing/fish.java b/sku.0/sys.server/compiled/game/script/fishing/fish.java index 256e25b13..c10344164 100755 --- a/sku.0/sys.server/compiled/game/script/fishing/fish.java +++ b/sku.0/sys.server/compiled/game/script/fishing/fish.java @@ -89,7 +89,7 @@ public class fish extends script.base_script if (length > 0.0f) { names[line] = "length"; - attribs[line] = "" + length + "m"; + attribs[line] = length + "m"; line++; if (line > names.length) { diff --git a/sku.0/sys.server/compiled/game/script/fishing/pole.java b/sku.0/sys.server/compiled/game/script/fishing/pole.java index 4faa1c61e..8e8ef1ed2 100755 --- a/sku.0/sys.server/compiled/game/script/fishing/pole.java +++ b/sku.0/sys.server/compiled/game/script/fishing/pole.java @@ -115,7 +115,7 @@ public class pole extends script.base_script { names[idx] = "useModifier"; float attrib = getIntObjVar(self, "useModifier"); - attribs[idx] = "" + attrib; + attribs[idx] = Float.toString(attrib); idx++; if (idx >= names.length) { diff --git a/sku.0/sys.server/compiled/game/script/gcw_score.java b/sku.0/sys.server/compiled/game/script/gcw_score.java index 8d0256270..7d1b19197 100755 --- a/sku.0/sys.server/compiled/game/script/gcw_score.java +++ b/sku.0/sys.server/compiled/game/script/gcw_score.java @@ -48,13 +48,13 @@ public class gcw_score allData[i][0] = playerGcwData.playerName; allData[i][1] = playerGcwData.playerFaction; allData[i][2] = playerGcwData.playerProfession; - allData[i][3] = "" + playerGcwData.playerLevel; - allData[i][4] = "" + playerGcwData.playerGCW; - allData[i][5] = "" + playerGcwData.playerPvpKills; - allData[i][6] = "" + playerGcwData.playerKills; - allData[i][7] = "" + playerGcwData.playerAssists; - allData[i][8] = "" + playerGcwData.playerCraftedItems; - allData[i][9] = "" + playerGcwData.playerDestroyedItems; + allData[i][3] = Integer.toString(playerGcwData.playerLevel); + allData[i][4] = Integer.toString(playerGcwData.playerGCW); + allData[i][5] = Integer.toString(playerGcwData.playerPvpKills); + allData[i][6] = Integer.toString(playerGcwData.playerKills); + allData[i][7] = Integer.toString(playerGcwData.playerAssists); + allData[i][8] = Integer.toString(playerGcwData.playerCraftedItems); + allData[i][9] = Integer.toString(playerGcwData.playerDestroyedItems); } } diff --git a/sku.0/sys.server/compiled/game/script/item/armor/dynamic_armor.java b/sku.0/sys.server/compiled/game/script/item/armor/dynamic_armor.java index 4a4e27e95..c10dfc9e4 100755 --- a/sku.0/sys.server/compiled/game/script/item/armor/dynamic_armor.java +++ b/sku.0/sys.server/compiled/game/script/item/armor/dynamic_armor.java @@ -132,7 +132,7 @@ public class dynamic_armor extends script.base_script if (requiredLevelToEquip != 0) { names[free] = utils.packStringId(new string_id("proc/proc", "required_combat_level")); - attribs[free++] = "" + requiredLevelToEquip; + attribs[free++] = Integer.toString(requiredLevelToEquip); } String requiredSkillToEquip = getStringObjVar(self, "dynamic_item.required_skill"); if (requiredSkillToEquip != null && !requiredSkillToEquip.equals("")) diff --git a/sku.0/sys.server/compiled/game/script/item/comestible/crafted.java b/sku.0/sys.server/compiled/game/script/item/comestible/crafted.java index 846bfbdc4..1642a4941 100755 --- a/sku.0/sys.server/compiled/game/script/item/comestible/crafted.java +++ b/sku.0/sys.server/compiled/game/script/item/comestible/crafted.java @@ -70,7 +70,7 @@ public class crafted extends script.item.comestible.comestible else { int numMods = am.length; - attribs[n] = "" + numMods; + attribs[n] = Integer.toString(numMods); n++; if (n > names.length) { @@ -84,7 +84,7 @@ public class crafted extends script.item.comestible.comestible if (val > 0) { sVal = "+" + val; } else if (val < 0) { - sVal = "" + val; + sVal = Integer.toString(val); } int minutes = duration / 60; int seconds = duration - (minutes * 60); diff --git a/sku.0/sys.server/compiled/game/script/item/comestible/dead_eye.java b/sku.0/sys.server/compiled/game/script/item/comestible/dead_eye.java index 82ce1157b..2a70b7373 100755 --- a/sku.0/sys.server/compiled/game/script/item/comestible/dead_eye.java +++ b/sku.0/sys.server/compiled/game/script/item/comestible/dead_eye.java @@ -74,7 +74,7 @@ public class dead_eye extends script.base_script if (hasObjVar(self, "deadeye_eff")) { names[idx] = "examine_dot_apply_power"; - attribs[idx] = "" + getIntObjVar(self, "deadeye_eff") + "%"; + attribs[idx] = getIntObjVar(self, "deadeye_eff") + "%"; idx++; if (idx >= names.length) { diff --git a/sku.0/sys.server/compiled/game/script/item/comestible/foraged.java b/sku.0/sys.server/compiled/game/script/item/comestible/foraged.java index f93f888d1..f8f7f2540 100755 --- a/sku.0/sys.server/compiled/game/script/item/comestible/foraged.java +++ b/sku.0/sys.server/compiled/game/script/item/comestible/foraged.java @@ -32,7 +32,7 @@ public class foraged extends script.item.comestible.comestible else { int numMods = am.length; - attribs[n] = "" + numMods; + attribs[n] = Integer.toString(numMods); n++; if (n > names.length) { @@ -47,7 +47,7 @@ public class foraged extends script.item.comestible.comestible if (newVal > 0) { sVal = "+" + newVal; } else if (newVal < 0) { - sVal = "" + newVal; + sVal = Integer.toString(newVal); } names[n] = toLower(consumable.STAT_NAME[attrib]); attribs[n] = sVal + "%, " + duration + "s"; diff --git a/sku.0/sys.server/compiled/game/script/item/comestible/spice.java b/sku.0/sys.server/compiled/game/script/item/comestible/spice.java index 9d28de211..29d06b131 100755 --- a/sku.0/sys.server/compiled/game/script/item/comestible/spice.java +++ b/sku.0/sys.server/compiled/game/script/item/comestible/spice.java @@ -152,7 +152,7 @@ public class spice extends script.base_script } else { - attribs[idx] = "" + numMods; + attribs[idx] = Integer.toString(numMods); } } return SCRIPT_CONTINUE; diff --git a/sku.0/sys.server/compiled/game/script/item/component/component_attribs.java b/sku.0/sys.server/compiled/game/script/item/component/component_attribs.java index d0e32763d..3ce2a2581 100755 --- a/sku.0/sys.server/compiled/game/script/item/component/component_attribs.java +++ b/sku.0/sys.server/compiled/game/script/item/component/component_attribs.java @@ -24,7 +24,7 @@ public class component_attribs extends script.base_script if (complexity >= 0) { names[i] = "@crafting:complexity"; - attribs[i] = "" + complexity; + attribs[i] = Float.toString(complexity); ++i; } obj_var_list componentData = getObjVarList(self, craftinglib.COMPONENT_ATTRIBUTE_OBJVAR_NAME); diff --git a/sku.0/sys.server/compiled/game/script/item/component/reverse_engineer_component.java b/sku.0/sys.server/compiled/game/script/item/component/reverse_engineer_component.java index e5a17f503..f631db039 100755 --- a/sku.0/sys.server/compiled/game/script/item/component/reverse_engineer_component.java +++ b/sku.0/sys.server/compiled/game/script/item/component/reverse_engineer_component.java @@ -20,7 +20,7 @@ public class reverse_engineer_component extends script.base_script { int powerModPower = getIntObjVar(self, "reverse_engineering.reverse_engineering_power"); names[i] = "@crafting:power_bit_power"; - attribs[i] = "" + powerModPower; + attribs[i] = Integer.toString(powerModPower); ++i; } if (hasObjVar(self, "reverse_engineering.reverse_engineering_modifier")) @@ -34,7 +34,7 @@ public class reverse_engineer_component extends script.base_script { int modBitRatio = getIntObjVar(self, "reverse_engineering.reverse_engineering_ratio"); names[i] = "@crafting:mod_bit_ratio"; - attribs[i] = "" + modBitRatio; + attribs[i] = Integer.toString(modBitRatio); ++i; } } diff --git a/sku.0/sys.server/compiled/game/script/item/dice/chance_cube.java b/sku.0/sys.server/compiled/game/script/item/dice/chance_cube.java index c0b88829a..b1c7a0c8f 100755 --- a/sku.0/sys.server/compiled/game/script/item/dice/chance_cube.java +++ b/sku.0/sys.server/compiled/game/script/item/dice/chance_cube.java @@ -55,7 +55,7 @@ public class chance_cube extends script.item.dice.base.base_dice { names[idx] = "usemodifier"; int attrib = (int)getFloatObjVar(self, craftinglib.COMPONENT_ATTRIBUTE_OBJVAR_NAME + ".useModifier"); - attribs[idx] = "" + attrib; + attribs[idx] = Integer.toString(attrib); idx++; if (idx >= names.length) { diff --git a/sku.0/sys.server/compiled/game/script/item/dice/configurable_group_dice.java b/sku.0/sys.server/compiled/game/script/item/dice/configurable_group_dice.java index 8250954a2..278aff807 100755 --- a/sku.0/sys.server/compiled/game/script/item/dice/configurable_group_dice.java +++ b/sku.0/sys.server/compiled/game/script/item/dice/configurable_group_dice.java @@ -76,7 +76,7 @@ public class configurable_group_dice extends script.item.dice.base.base_dice { names[idx] = "usemodifier"; int attrib = (int)getFloatObjVar(self, craftinglib.COMPONENT_ATTRIBUTE_OBJVAR_NAME + ".useModifier"); - attribs[idx] = "" + attrib; + attribs[idx] = Integer.toString(attrib); idx++; if (idx >= names.length) { diff --git a/sku.0/sys.server/compiled/game/script/item/dice/one_hundred_sided_dice_set.java b/sku.0/sys.server/compiled/game/script/item/dice/one_hundred_sided_dice_set.java index 472ddeebd..83fd4df16 100755 --- a/sku.0/sys.server/compiled/game/script/item/dice/one_hundred_sided_dice_set.java +++ b/sku.0/sys.server/compiled/game/script/item/dice/one_hundred_sided_dice_set.java @@ -59,7 +59,7 @@ public class one_hundred_sided_dice_set extends script.item.dice.base.base_dice { names[idx] = "usemodifier"; int attrib = (int)getFloatObjVar(self, craftinglib.COMPONENT_ATTRIBUTE_OBJVAR_NAME + ".useModifier"); - attribs[idx] = "" + attrib; + attribs[idx] = Integer.toString(attrib); idx++; if (idx >= names.length) { diff --git a/sku.0/sys.server/compiled/game/script/item/dice/six_sided_dice_set.java b/sku.0/sys.server/compiled/game/script/item/dice/six_sided_dice_set.java index 30e52f784..461597fd6 100755 --- a/sku.0/sys.server/compiled/game/script/item/dice/six_sided_dice_set.java +++ b/sku.0/sys.server/compiled/game/script/item/dice/six_sided_dice_set.java @@ -66,7 +66,7 @@ public class six_sided_dice_set extends script.item.dice.base.base_dice { names[idx] = "usemodifier"; int attrib = (int)getFloatObjVar(self, craftinglib.COMPONENT_ATTRIBUTE_OBJVAR_NAME + ".useModifier"); - attribs[idx] = "" + attrib; + attribs[idx] = Integer.toString(attrib); idx++; if (idx >= names.length) { diff --git a/sku.0/sys.server/compiled/game/script/item/dice/ten_sided_dice_set.java b/sku.0/sys.server/compiled/game/script/item/dice/ten_sided_dice_set.java index ba6acea20..a141235d6 100755 --- a/sku.0/sys.server/compiled/game/script/item/dice/ten_sided_dice_set.java +++ b/sku.0/sys.server/compiled/game/script/item/dice/ten_sided_dice_set.java @@ -59,7 +59,7 @@ public class ten_sided_dice_set extends script.item.dice.base.base_dice { names[idx] = "usemodifier"; int attrib = (int)getFloatObjVar(self, craftinglib.COMPONENT_ATTRIBUTE_OBJVAR_NAME + ".useModifier"); - attribs[idx] = "" + attrib; + attribs[idx] = Integer.toString(attrib); idx++; if (idx >= names.length) { diff --git a/sku.0/sys.server/compiled/game/script/item/dice/twelve_sided_dice_set.java b/sku.0/sys.server/compiled/game/script/item/dice/twelve_sided_dice_set.java index 3c8549346..50bbfe97a 100755 --- a/sku.0/sys.server/compiled/game/script/item/dice/twelve_sided_dice_set.java +++ b/sku.0/sys.server/compiled/game/script/item/dice/twelve_sided_dice_set.java @@ -59,7 +59,7 @@ public class twelve_sided_dice_set extends script.item.dice.base.base_dice { names[idx] = "usemodifier"; int attrib = (int)getFloatObjVar(self, craftinglib.COMPONENT_ATTRIBUTE_OBJVAR_NAME + ".useModifier"); - attribs[idx] = "" + attrib; + attribs[idx] = Integer.toString(attrib); idx++; if (idx >= names.length) { diff --git a/sku.0/sys.server/compiled/game/script/item/dice/twenty_sided_dice_set.java b/sku.0/sys.server/compiled/game/script/item/dice/twenty_sided_dice_set.java index 064be5b0f..320fe6935 100755 --- a/sku.0/sys.server/compiled/game/script/item/dice/twenty_sided_dice_set.java +++ b/sku.0/sys.server/compiled/game/script/item/dice/twenty_sided_dice_set.java @@ -59,7 +59,7 @@ public class twenty_sided_dice_set extends script.item.dice.base.base_dice { names[idx] = "usemodifier"; int attrib = (int)getFloatObjVar(self, craftinglib.COMPONENT_ATTRIBUTE_OBJVAR_NAME + ".useModifier"); - attribs[idx] = "" + attrib; + attribs[idx] = Integer.toString(attrib); idx++; if (idx >= names.length) { diff --git a/sku.0/sys.server/compiled/game/script/item/food.java b/sku.0/sys.server/compiled/game/script/item/food.java index 930a62f4e..d6221c328 100755 --- a/sku.0/sys.server/compiled/game/script/item/food.java +++ b/sku.0/sys.server/compiled/game/script/item/food.java @@ -63,7 +63,7 @@ public class food extends script.base_script float duration = buff.getDuration(buff_name); duration *= dur; String durString = formatTime((int)duration); - attribs[idx] = "" + durString + "\n"; + attribs[idx] = durString + "\n"; attribs[idx] += "\n" + "The duration of the buff from this item can be increased cumulatively by eating more of the same food " + "as long as the resulting duration does not exceed 2 hours. \n\n" + "Note that the value of primary buffed modifier of the last one eaten will be the one used by the buff."; idx++; if (idx >= names.length) @@ -98,7 +98,7 @@ public class food extends script.base_script { value *= eff; } - attribs[idx] = "" + value; + attribs[idx] = Float.toString(value); switch (buff_name) { case "drink_ruby_bliel": names[idx] = "food_stimpack_roundtime"; @@ -144,7 +144,7 @@ public class food extends script.base_script { attribs[idx] = "+"; } - attribs[idx] += "" + value; + attribs[idx] += Float.toString(value); if (param.contains("percent")) { attribs[idx] += "%"; @@ -384,7 +384,7 @@ public class food extends script.base_script seconds -= (minutes * 60); if (hours > 0) { - result += "" + hours + ":"; + result += hours + ":"; } if (minutes > 0 || hours > 0) { @@ -392,13 +392,13 @@ public class food extends script.base_script { result += "0"; } - result += "" + minutes + ":"; + result += minutes + ":"; } if (minutes > 0 && seconds < 10) { result += "0"; } - result += "" + seconds; + result += seconds; return result; } public boolean isClickyCombatNerfed(String buff_name) throws InterruptedException diff --git a/sku.0/sys.server/compiled/game/script/item/heroic_token_box.java b/sku.0/sys.server/compiled/game/script/item/heroic_token_box.java index b79debbe7..7420efda7 100755 --- a/sku.0/sys.server/compiled/game/script/item/heroic_token_box.java +++ b/sku.0/sys.server/compiled/game/script/item/heroic_token_box.java @@ -51,7 +51,7 @@ public class heroic_token_box extends script.base_script for (int i = 0; i < tokenTypes.length; i++) { names[free] = utils.packStringId(new string_id("static_item_n", trial.HEROIC_TOKENS[i])); - attribs[free++] = "" + tokenTypes[i]; + attribs[free++] = Integer.toString(tokenTypes[i]); } } return SCRIPT_CONTINUE; diff --git a/sku.0/sys.server/compiled/game/script/item/ice_cream_fryer/fryer.java b/sku.0/sys.server/compiled/game/script/item/ice_cream_fryer/fryer.java index bc13c15b8..d7b6a3206 100755 --- a/sku.0/sys.server/compiled/game/script/item/ice_cream_fryer/fryer.java +++ b/sku.0/sys.server/compiled/game/script/item/ice_cream_fryer/fryer.java @@ -159,7 +159,7 @@ public class fryer extends script.base_script } int currentStatus = getIntObjVar(self, DECAY); names[idx] = "fryer_status"; - attribs[idx] = "" + currentStatus + "%"; + attribs[idx] = currentStatus + "%"; idx++; return SCRIPT_CONTINUE; } @@ -338,7 +338,7 @@ public class fryer extends script.base_script while (randomRows.size() < (collection.ICE_CREAM_BUFF_ARRAY.length - 2)) { int randomNum = rand(BASIC_BUFF_ROWS, datatableLength); - randomRows.add("" + randomNum); + randomRows.add(Integer.toString(randomNum)); blog("getRandomRowNumbersWithoutDuplicates - adding this to hash: " + randomNum); } String[] allNumbers = new String[randomRows.size()]; diff --git a/sku.0/sys.server/compiled/game/script/item/ice_cream_fryer/ice_cream_fail.java b/sku.0/sys.server/compiled/game/script/item/ice_cream_fryer/ice_cream_fail.java index 21ca71647..48ee7910c 100755 --- a/sku.0/sys.server/compiled/game/script/item/ice_cream_fryer/ice_cream_fail.java +++ b/sku.0/sys.server/compiled/game/script/item/ice_cream_fryer/ice_cream_fail.java @@ -170,7 +170,7 @@ public class ice_cream_fail extends script.base_script seconds -= (minutes * 60); if (hours > 0) { - result += "" + hours + ":"; + result += hours + ":"; } if (minutes > 0 || hours > 0) { @@ -178,13 +178,13 @@ public class ice_cream_fail extends script.base_script { result += "0"; } - result += "" + minutes + ":"; + result += minutes + ":"; } if (minutes > 0 && seconds < 10) { result += "0"; } - result += "" + seconds; + result += seconds; return result; } public int removeItemFoodScript(obj_id self, dictionary params) throws InterruptedException diff --git a/sku.0/sys.server/compiled/game/script/item/ice_cream_fryer/ice_cream_nobuff.java b/sku.0/sys.server/compiled/game/script/item/ice_cream_fryer/ice_cream_nobuff.java index cb12afaa5..2bcb3004b 100755 --- a/sku.0/sys.server/compiled/game/script/item/ice_cream_fryer/ice_cream_nobuff.java +++ b/sku.0/sys.server/compiled/game/script/item/ice_cream_fryer/ice_cream_nobuff.java @@ -170,7 +170,7 @@ public class ice_cream_nobuff extends script.base_script seconds -= (minutes * 60); if (hours > 0) { - result += "" + hours + ":"; + result += hours + ":"; } if (minutes > 0 || hours > 0) { @@ -178,13 +178,13 @@ public class ice_cream_nobuff extends script.base_script { result += "0"; } - result += "" + minutes + ":"; + result += minutes + ":"; } if (minutes > 0 && seconds < 10) { result += "0"; } - result += "" + seconds; + result += seconds; return result; } public int removeItemFoodScript(obj_id self, dictionary params) throws InterruptedException diff --git a/sku.0/sys.server/compiled/game/script/item/instance_reset.java b/sku.0/sys.server/compiled/game/script/item/instance_reset.java index 813929faf..5e5a77452 100755 --- a/sku.0/sys.server/compiled/game/script/item/instance_reset.java +++ b/sku.0/sys.server/compiled/game/script/item/instance_reset.java @@ -194,7 +194,7 @@ public class instance_reset extends script.base_script obj_id owner = instance_data.getObjId("owner"); int startTime = instance_data.getInt("start_time"); int resetAt = getCalendarTime(); - setObjVar(player, instance.PLAYER_INSTANCE + "." + instanceToRemove, "" + resetAt + "_" + instance_id + "_" + owner + "_" + newStartTime); + setObjVar(player, instance.PLAYER_INSTANCE + "." + instanceToRemove, resetAt + "_" + instance_id + "_" + owner + "_" + newStartTime); instance_data = instance.getLockoutData(player, instanceToRemove); if (instance_data != null && !instance_data.isEmpty()) { diff --git a/sku.0/sys.server/compiled/game/script/item/medicine/enhancer.java b/sku.0/sys.server/compiled/game/script/item/medicine/enhancer.java index bed99ab78..b69cd51ff 100755 --- a/sku.0/sys.server/compiled/game/script/item/medicine/enhancer.java +++ b/sku.0/sys.server/compiled/game/script/item/medicine/enhancer.java @@ -51,7 +51,7 @@ public class enhancer extends script.base_script if (hasObjVar(self, "healing.enhancement")) { names[idx] = "enhancer_power"; - attribs[idx] = "" + Math.floor(getFloatObjVar(self, "healing.enhancement")); + attribs[idx] = Double.toString(Math.floor(getFloatObjVar(self, "healing.enhancement"))); } return SCRIPT_CONTINUE; } diff --git a/sku.0/sys.server/compiled/game/script/item/medicine/stimpack.java b/sku.0/sys.server/compiled/game/script/item/medicine/stimpack.java index 509aefc4f..eca5c9af1 100755 --- a/sku.0/sys.server/compiled/game/script/item/medicine/stimpack.java +++ b/sku.0/sys.server/compiled/game/script/item/medicine/stimpack.java @@ -22,7 +22,7 @@ public class stimpack extends script.base_script { names[idx] = "healing_power"; int value = getIntObjVar(self, "healing.power"); - attribs[idx] = "" + value; + attribs[idx] = Integer.toString(value); idx++; if (idx >= names.length) { @@ -33,7 +33,7 @@ public class stimpack extends script.base_script { names[idx] = "healing_combat_level_required"; int value = getIntObjVar(self, "healing.combat_level_required"); - attribs[idx] = "" + value; + attribs[idx] = Integer.toString(value); idx++; if (idx >= names.length) { @@ -42,7 +42,7 @@ public class stimpack extends script.base_script } names[idx] = "count"; int value = getCount(self); - attribs[idx] = "" + value; + attribs[idx] = Integer.toString(value); return SCRIPT_CONTINUE; } public int OnObjectMenuRequest(obj_id self, obj_id player, menu_info mi) throws InterruptedException diff --git a/sku.0/sys.server/compiled/game/script/item/medicine/stimpack_crafted.java b/sku.0/sys.server/compiled/game/script/item/medicine/stimpack_crafted.java index 2fa7ea65d..59ba6e961 100755 --- a/sku.0/sys.server/compiled/game/script/item/medicine/stimpack_crafted.java +++ b/sku.0/sys.server/compiled/game/script/item/medicine/stimpack_crafted.java @@ -23,7 +23,7 @@ public class stimpack_crafted extends script.base_script { names[idx] = "healing_power"; int value = getIntObjVar(self, "healing.power"); - attribs[idx] = "" + value; + attribs[idx] = Integer.toString(value); idx++; if (idx >= names.length) { @@ -34,7 +34,7 @@ public class stimpack_crafted extends script.base_script { names[idx] = "healing_combat_level_required"; int value = getIntObjVar(self, "healing.combat_level_required"); - attribs[idx] = "" + value; + attribs[idx] = Integer.toString(value); idx++; if (idx >= names.length) { @@ -43,7 +43,7 @@ public class stimpack_crafted extends script.base_script } names[idx] = "count"; int value = getCount(self); - attribs[idx] = "" + value; + attribs[idx] = Integer.toString(value); return SCRIPT_CONTINUE; } public int OnObjectMenuRequest(obj_id self, obj_id player, menu_info mi) throws InterruptedException diff --git a/sku.0/sys.server/compiled/game/script/item/medicine/stimpack_pet.java b/sku.0/sys.server/compiled/game/script/item/medicine/stimpack_pet.java index 10d7f0b6c..027cb917c 100755 --- a/sku.0/sys.server/compiled/game/script/item/medicine/stimpack_pet.java +++ b/sku.0/sys.server/compiled/game/script/item/medicine/stimpack_pet.java @@ -24,7 +24,7 @@ public class stimpack_pet extends script.base_script { names[idx] = "healing_power"; float value = getIntObjVar(self, "healing.power"); - attribs[idx] = "" + value; + attribs[idx] = Float.toString(value); idx++; if (idx >= names.length) { @@ -33,7 +33,7 @@ public class stimpack_pet extends script.base_script } names[idx] = "count"; int value = getCount(self); - attribs[idx] = "" + value; + attribs[idx] = Integer.toString(value); return SCRIPT_CONTINUE; } public int OnObjectMenuRequest(obj_id self, obj_id player, menu_info mi) throws InterruptedException diff --git a/sku.0/sys.server/compiled/game/script/item/parrot_cage/parrot_cage.java b/sku.0/sys.server/compiled/game/script/item/parrot_cage/parrot_cage.java index bede5fdfe..4f0b89948 100755 --- a/sku.0/sys.server/compiled/game/script/item/parrot_cage/parrot_cage.java +++ b/sku.0/sys.server/compiled/game/script/item/parrot_cage/parrot_cage.java @@ -201,7 +201,7 @@ public class parrot_cage extends script.base_script { names[idx] = "usemodifier"; int attrib = (int)getFloatObjVar(self, craftinglib.COMPONENT_ATTRIBUTE_OBJVAR_NAME + ".useModifier"); - attribs[idx] = "" + attrib; + attribs[idx] = Integer.toString(attrib); idx++; if (idx >= names.length) { diff --git a/sku.0/sys.server/compiled/game/script/item/skill_buff/base.java b/sku.0/sys.server/compiled/game/script/item/skill_buff/base.java index 16726d792..af701cf4a 100755 --- a/sku.0/sys.server/compiled/game/script/item/skill_buff/base.java +++ b/sku.0/sys.server/compiled/game/script/item/skill_buff/base.java @@ -150,7 +150,7 @@ public class base extends script.base_script return SCRIPT_CONTINUE; } names[idx] = "skill_modifier_amount"; - attribs[idx] = "" + value; + attribs[idx] = Integer.toString(value); idx++; if (idx >= names.length) { @@ -243,7 +243,7 @@ public class base extends script.base_script seconds -= (minutes * 60); if (hours > 0) { - result += "" + hours + ":"; + result += hours + ":"; } if (minutes > 0 || hours > 0) { @@ -251,13 +251,13 @@ public class base extends script.base_script { result += "0"; } - result += "" + minutes + ":"; + result += minutes + ":"; } if (minutes > 0 && seconds < 10) { result += "0"; } - result += "" + seconds; + result += seconds; return result; } } diff --git a/sku.0/sys.server/compiled/game/script/item/spice.java b/sku.0/sys.server/compiled/game/script/item/spice.java index b311e774e..25d0007bd 100755 --- a/sku.0/sys.server/compiled/game/script/item/spice.java +++ b/sku.0/sys.server/compiled/game/script/item/spice.java @@ -29,7 +29,7 @@ public class spice extends script.base_script float duration = buff.getDuration(buff_name); String durString = formatTime((int)duration); names[idx] = "duration"; - attribs[idx] = "" + durString + "\n"; + attribs[idx] = durString + "\n"; idx++; if (idx >= names.length) { @@ -176,7 +176,7 @@ public class spice extends script.base_script seconds -= (minutes * 60); if (hours > 0) { - result += "" + hours + ":"; + result += hours + ":"; } if (minutes > 0 || hours > 0) { @@ -184,13 +184,13 @@ public class spice extends script.base_script { result += "0"; } - result += "" + minutes + ":"; + result += minutes + ":"; } if (minutes > 0 && seconds < 10) { result += "0"; } - result += "" + seconds; + result += seconds; return result; } } diff --git a/sku.0/sys.server/compiled/game/script/item/static_item_base.java b/sku.0/sys.server/compiled/game/script/item/static_item_base.java index 2621dc18f..3f6f5a18d 100755 --- a/sku.0/sys.server/compiled/game/script/item/static_item_base.java +++ b/sku.0/sys.server/compiled/game/script/item/static_item_base.java @@ -177,7 +177,7 @@ public class static_item_base extends script.base_script if (requiredLevelToEquip != 0 && !hasScript(self, "systems.combat.combat_weapon")) { names[free] = utils.packStringId(new string_id("proc/proc", "required_combat_level")); - attribs[free++] = "" + requiredLevelToEquip; + attribs[free++] = Integer.toString(requiredLevelToEquip); } String requiredSkillToEquip = itemData.getString("required_skill"); if (requiredSkillToEquip != null && !requiredSkillToEquip.equals("") && !hasScript(self, "systems.combat.combat_weapon")) @@ -230,7 +230,7 @@ public class static_item_base extends script.base_script if (requiredLevelForEffect != 0) { names[free] = utils.packStringId(new string_id("proc/proc", "effect_level")); - attribs[free++] = "" + requiredLevelForEffect; + attribs[free++] = Integer.toString(requiredLevelForEffect); } String buffName = typeData.getString("buff_name"); if (buffName != null && !buffName.equals("") && buffIdentity == 0) @@ -316,9 +316,9 @@ public class static_item_base extends script.base_script } int tier = itemData.getInt("tier"); names[free] = "tier"; - attribs[free++] = "" + tier; + attribs[free++] = Integer.toString(tier); names[free] = "tooltip.tier"; - attribs[free++] = "" + tier; + attribs[free++] = Integer.toString(tier); if (static_item.isUniqueStaticItem(self)) { names[free] = "unique"; diff --git a/sku.0/sys.server/compiled/game/script/item/texture_kit/texture_kit.java b/sku.0/sys.server/compiled/game/script/item/texture_kit/texture_kit.java index b42bd8afa..5a8c9b0e8 100755 --- a/sku.0/sys.server/compiled/game/script/item/texture_kit/texture_kit.java +++ b/sku.0/sys.server/compiled/game/script/item/texture_kit/texture_kit.java @@ -95,7 +95,7 @@ public class texture_kit extends script.base_script return SCRIPT_CONTINUE; } names[idx] = "charges"; - attribs[idx] = "" + getCount(self); + attribs[idx] = Integer.toString(getCount(self)); idx++; return SCRIPT_CONTINUE; } diff --git a/sku.0/sys.server/compiled/game/script/item/tool/medikit.java b/sku.0/sys.server/compiled/game/script/item/tool/medikit.java index c4ad9791a..41330f6b1 100755 --- a/sku.0/sys.server/compiled/game/script/item/tool/medikit.java +++ b/sku.0/sys.server/compiled/game/script/item/tool/medikit.java @@ -54,7 +54,7 @@ public class medikit extends script.base_script { names[idx] = "useModifier"; int attrib = getIntObjVar(self, "medikit.quality"); - attribs[idx] = "" + attrib; + attribs[idx] = Integer.toString(attrib); idx++; if (idx >= names.length) { @@ -197,14 +197,7 @@ public class medikit extends script.base_script } public boolean haveChargedMedTool(obj_id player, obj_id medikitTool) throws InterruptedException { - if ((getCount(medikitTool) > 0) && (utils.isNestedWithin(medikitTool, player))) - { - return true; - } - else - { - return false; - } + return (getCount(medikitTool) > 0) && (utils.isNestedWithin(medikitTool, player)); } public void clearTrackingScriptVars(obj_id self) throws InterruptedException { diff --git a/sku.0/sys.server/compiled/game/script/item/tool/reverse_engineering_poweredup_item.java b/sku.0/sys.server/compiled/game/script/item/tool/reverse_engineering_poweredup_item.java index 125723224..a937e2748 100755 --- a/sku.0/sys.server/compiled/game/script/item/tool/reverse_engineering_poweredup_item.java +++ b/sku.0/sys.server/compiled/game/script/item/tool/reverse_engineering_poweredup_item.java @@ -143,13 +143,13 @@ public class reverse_engineering_poweredup_item extends script.base_script attribs[i] = "@stat_n:" + mod; i++; names[i] = "@spam:pup_power"; - attribs[i] = "" + (power / ratio); + attribs[i] = Integer.toString((power / ratio)); i++; } float expiration = reverse_engineering.getDieTime(reverse_engineering.EXPIRATION_TIME, self); float timeInMinutes = expiration / 60; names[i] = "@spam:pup_expire_time"; - attribs[i] = "" + (int)timeInMinutes; + attribs[i] = Float.toString(timeInMinutes); } return SCRIPT_CONTINUE; } diff --git a/sku.0/sys.server/compiled/game/script/item/tool/reverse_engineering_powerup.java b/sku.0/sys.server/compiled/game/script/item/tool/reverse_engineering_powerup.java index 66ebc69e6..c3879666a 100755 --- a/sku.0/sys.server/compiled/game/script/item/tool/reverse_engineering_powerup.java +++ b/sku.0/sys.server/compiled/game/script/item/tool/reverse_engineering_powerup.java @@ -53,7 +53,7 @@ public class reverse_engineering_powerup extends script.base_script String mod = getStringObjVar(self, reverse_engineering.ENGINEERING_MODIFIER); int ratio = getIntObjVar(self, reverse_engineering.ENGINEERING_RATIO); names[i] = "@stat_n:" + mod; - attribs[i] = "" + power / ratio; + attribs[i] = Integer.toString(power / ratio); } } return SCRIPT_CONTINUE; diff --git a/sku.0/sys.server/compiled/game/script/item/tool/reverse_engineering_tool.java b/sku.0/sys.server/compiled/game/script/item/tool/reverse_engineering_tool.java index 67607bd50..2d4937e0a 100755 --- a/sku.0/sys.server/compiled/game/script/item/tool/reverse_engineering_tool.java +++ b/sku.0/sys.server/compiled/game/script/item/tool/reverse_engineering_tool.java @@ -498,7 +498,6 @@ public class reverse_engineering_tool extends script.base_script { sendSystemMessage(player, new string_id("spam", "powerup_wrong_components")); } - return; } public void generatePowerBit(obj_id self, obj_id player) throws InterruptedException { @@ -612,7 +611,6 @@ public class reverse_engineering_tool extends script.base_script setName(powerBit, finalName); } } - return; } public void generateModifierBit(obj_id self, obj_id player) throws InterruptedException { @@ -668,7 +666,6 @@ public class reverse_engineering_tool extends script.base_script } prependModNameToObject(powerBit, modName); } - return; } public boolean isJunk(obj_id item) throws InterruptedException { @@ -697,11 +694,7 @@ public class reverse_engineering_tool extends script.base_script { return false; } - if (hasObjVar(item, "skillmod.bonus")) - { - return true; - } - return false; + return hasObjVar(item, "skillmod.bonus"); } public int getPowerBitType(obj_id item) throws InterruptedException { @@ -723,19 +716,11 @@ public class reverse_engineering_tool extends script.base_script return false; } String templateName = getTemplateName(item); - if (templateName.equals("object/tangible/component/reverse_engineering/enhancement_module.iff")) - { - return true; - } - return false; + return templateName.equals("object/tangible/component/reverse_engineering/enhancement_module.iff"); } public boolean isModifierBit(obj_id item) throws InterruptedException { - if (hasObjVar(item, "reverse_engineering.reverse_engineering_modifier") && hasObjVar(item, "reverse_engineering.reverse_engineering_ratio") && !hasScript(item, "item.tool.reverse_engineering_powerup") && !hasScript(item, "item.tool.reverse_engineering_poweredup_item")) - { - return true; - } - return false; + return hasObjVar(item, "reverse_engineering.reverse_engineering_modifier") && hasObjVar(item, "reverse_engineering.reverse_engineering_ratio") && !hasScript(item, "item.tool.reverse_engineering_powerup") && !hasScript(item, "item.tool.reverse_engineering_poweredup_item"); } public int getFinalAttachmentLevel(obj_id item) throws InterruptedException { @@ -759,11 +744,7 @@ public class reverse_engineering_tool extends script.base_script public boolean canUpgradeAttachment(obj_id player) throws InterruptedException { float skillMod = getEnhancedSkillStatisticModifierUncapped(player, "expertise_attachment_upgrade"); - if (skillMod > 0) - { - return true; - } - return false; + return skillMod > 0; } public String getGemTemplateByClass(obj_id player, int ratio, int type) throws InterruptedException { @@ -805,13 +786,13 @@ public class reverse_engineering_tool extends script.base_script { float power = getFloatObjVar(self, "crafting.stationMod"); names[idx] = "@obj_attr_n:experiment_bonus_eff"; - attribs[idx] = "" + power; + attribs[idx] = Float.toString(power); idx++; } if (hasObjVar(self, "res_quality")) { names[idx] = "quality_bonus"; - attribs[idx] = "" + getFloatObjVar(self, "res_quality"); + attribs[idx] = Float.toString(getFloatObjVar(self, "res_quality")); idx++; } return SCRIPT_CONTINUE; @@ -830,7 +811,6 @@ public class reverse_engineering_tool extends script.base_script String newName = modName + " " + stringName; setName(object, newName); } - return; } public float getReverseEngineeringBonusMultiplier() throws InterruptedException { diff --git a/sku.0/sys.server/compiled/game/script/item/vet_instance_reset.java b/sku.0/sys.server/compiled/game/script/item/vet_instance_reset.java index 55898d6ec..534b1d498 100755 --- a/sku.0/sys.server/compiled/game/script/item/vet_instance_reset.java +++ b/sku.0/sys.server/compiled/game/script/item/vet_instance_reset.java @@ -247,7 +247,7 @@ public class vet_instance_reset extends script.base_script obj_id owner = instance_data.getObjId("owner"); int startTime = instance_data.getInt("start_time"); int resetAt = getCalendarTime(); - setObjVar(player, instance.PLAYER_INSTANCE + "." + instanceToRemove, "" + resetAt + "_" + instance_id + "_" + owner + "_" + newStartTime); + setObjVar(player, instance.PLAYER_INSTANCE + "." + instanceToRemove, resetAt + "_" + instance_id + "_" + owner + "_" + newStartTime); instance_data = instance.getLockoutData(player, instanceToRemove); if (instance_data != null && !instance_data.isEmpty()) { diff --git a/sku.0/sys.server/compiled/game/script/library/advanced_turret.java b/sku.0/sys.server/compiled/game/script/library/advanced_turret.java index f053e90ef..6bb24ab8b 100755 --- a/sku.0/sys.server/compiled/game/script/library/advanced_turret.java +++ b/sku.0/sys.server/compiled/game/script/library/advanced_turret.java @@ -134,7 +134,6 @@ public class advanced_turret extends script.base_script dictionary dict = new dictionary(); dict.put("range", range); messageTo(turret, "createTriggerVolume", dict, 0.0f, false); - return; } public static void deactivateTurret(obj_id turret) throws InterruptedException { @@ -146,7 +145,6 @@ public class advanced_turret extends script.base_script stopTrackingTarget(turret); utils.removeScriptVar(turret, IS_ACTIVE); setInvulnerable(turret, true); - return; } public static boolean isActive(obj_id turret) throws InterruptedException { @@ -175,7 +173,6 @@ public class advanced_turret extends script.base_script return; } utils.setScriptVar(turret, IS_ENGAGED, target); - return; } public static void stopTrackingTarget(obj_id turret) throws InterruptedException { @@ -185,7 +182,6 @@ public class advanced_turret extends script.base_script return; } utils.removeScriptVar(turret, IS_ENGAGED); - return; } public static boolean isEngaged(obj_id turret) throws InterruptedException { @@ -193,11 +189,7 @@ public class advanced_turret extends script.base_script { return false; } - if (utils.hasScriptVar(turret, IS_ENGAGED)) - { - return true; - } - return false; + return utils.hasScriptVar(turret, IS_ENGAGED); } public static obj_id getCurrentTarget(obj_id turret) throws InterruptedException { @@ -276,7 +268,6 @@ public class advanced_turret extends script.base_script ri.maxRange = range; setWeaponRangeInfo(objWeapon, ri); activateTurret(turret); - return; } public static boolean isValidTarget(obj_id turret, obj_id target) throws InterruptedException { @@ -367,7 +358,7 @@ public class advanced_turret extends script.base_script { if (!isValidTarget(turret, target)) { - doLogging("addTarget", "" + getName(target) + "/" + target + " was invalid"); + doLogging("addTarget", getName(target) + "/" + target + " was invalid"); return; } Vector targets = null; @@ -391,7 +382,6 @@ public class advanced_turret extends script.base_script attackPulse(turret); } } - return; } public static void addTargets(obj_id turret, obj_id[] newTargets) throws InterruptedException { @@ -406,7 +396,7 @@ public class advanced_turret extends script.base_script } for (obj_id newTarget : newTargets) { if (!isValidTarget(turret, newTarget) || targets.indexOf(newTarget) != -1) { - doLogging("addTargets", "" + getName(newTarget) + "/" + newTarget + " was invalid or already in my target array"); + doLogging("addTargets", getName(newTarget) + "/" + newTarget + " was invalid or already in my target array"); continue; } targets.add(newTarget); @@ -419,7 +409,6 @@ public class advanced_turret extends script.base_script messageTo(turret, "handleTurretAttack", null, 1, false); } } - return; } public static void removeTarget(obj_id turret, obj_id target) throws InterruptedException { @@ -451,7 +440,6 @@ public class advanced_turret extends script.base_script utils.setBatchScriptVar(turret, TARGETS, targets); } } - return; } public static boolean handleTurretDamage(obj_id turret, obj_id attacker, obj_id weapon, int dmgAmount) throws InterruptedException { @@ -505,7 +493,6 @@ public class advanced_turret extends script.base_script deactivateTurret(turret); playClientEffectLoc(turret, "clienteffect/combat_explosion_lair_large.cef", death, 0); messageTo(turret, "handleDestroyTurret", null, 2, false); - return; } public static obj_id getGoodTurretTarget(obj_id turret) throws InterruptedException { @@ -583,7 +570,6 @@ public class advanced_turret extends script.base_script dictionary params = new dictionary(); params.put("target", target); messageTo(turret, "turretShot", params, getWeaponAttackSpeed(weapon), false); - return; } public static void doLogging(String section, String message) throws InterruptedException { diff --git a/sku.0/sys.server/compiled/game/script/library/beast_lib.java b/sku.0/sys.server/compiled/game/script/library/beast_lib.java index 07fc6f7ac..f48c1071a 100755 --- a/sku.0/sys.server/compiled/game/script/library/beast_lib.java +++ b/sku.0/sys.server/compiled/game/script/library/beast_lib.java @@ -329,11 +329,7 @@ public class beast_lib extends script.base_script { return false; } - if (hasScript(beast, "ai.beast")) - { - return true; - } - return false; + return hasScript(beast, "ai.beast"); } public static boolean isBeastMaster(obj_id player) throws InterruptedException { @@ -366,11 +362,7 @@ public class beast_lib extends script.base_script { return false; } - if (!hasObjVar(bcd, OBJVAR_BEAST_TYPE)) - { - return false; - } - return true; + return hasObjVar(bcd, OBJVAR_BEAST_TYPE); } public static boolean isValidPlayer(obj_id player) throws InterruptedException { @@ -536,11 +528,7 @@ public class beast_lib extends script.base_script } public static boolean hasBCDBeastName(obj_id bcd) throws InterruptedException { - if (hasObjVar(bcd, "beast.beastName")) - { - return true; - } - return false; + return hasObjVar(bcd, "beast.beastName"); } public static String getBCDBeastName(obj_id bcd) throws InterruptedException { @@ -632,7 +620,7 @@ public class beast_lib extends script.base_script return ""; } String template = getTemplateName(beast); - String[] templateSplit = split(template, '/'); + String[] templateSplit = template.split("/"); template = templateSplit[templateSplit.length - 1]; int row = dataTableSearchColumnForString(template, "template", BEASTS_TABLE); dictionary dict = dataTableGetRow(BEASTS_TABLE, row); @@ -990,11 +978,7 @@ public class beast_lib extends script.base_script { return false; } - if (hasObjVar(bcd, OBJVAR_BEAST_HAPPINESS)) - { - return true; - } - return false; + return hasObjVar(bcd, OBJVAR_BEAST_HAPPINESS); } public static int getBeastHappiness(obj_id beast) throws InterruptedException { @@ -1039,11 +1023,7 @@ public class beast_lib extends script.base_script { return false; } - if (hasObjVar(bcd, PET_LOYALTY_OBJVAR)) - { - return true; - } - return false; + return hasObjVar(bcd, PET_LOYALTY_OBJVAR); } public static float getBeastLoyalty(obj_id beast) throws InterruptedException { @@ -1206,11 +1186,7 @@ public class beast_lib extends script.base_script { return false; } - if (hasObjVar(bcd, PET_LOYALTY_LEVEL_OBJVAR)) - { - return true; - } - return false; + return hasObjVar(bcd, PET_LOYALTY_LEVEL_OBJVAR); } public static int getBeastLoyaltyLevel(obj_id beast) throws InterruptedException { @@ -1308,11 +1284,7 @@ public class beast_lib extends script.base_script { return false; } - if (hasObjVar(bcd, OBJVAR_BEAST_FOOD)) - { - return true; - } - return false; + return hasObjVar(bcd, OBJVAR_BEAST_FOOD); } public static int[] getBeastFood(obj_id beast) throws InterruptedException { @@ -2012,11 +1984,7 @@ public class beast_lib extends script.base_script return false; } int experience = (int)beastStatsDict.getInt("XP"); - if (experience > 0 && getBeastExperience(beast) >= experience) - { - return true; - } - return false; + return experience > 0 && getBeastExperience(beast) >= experience; } public static void grantBeastExperience(obj_id beast) throws InterruptedException { @@ -2144,7 +2112,6 @@ public class beast_lib extends script.base_script messageTo(beast, "checkMovementSpeed", params, 1, false); return; } - return; } public static void doConfusedEmote(obj_id beast) throws InterruptedException { @@ -2281,7 +2248,6 @@ public class beast_lib extends script.base_script { doAnimationAction(beast, "trick_" + trickNumber); } - return; } public static void setupHappinessLoyalty(obj_id beastBCD) throws InterruptedException { @@ -3215,11 +3181,7 @@ public class beast_lib extends script.base_script { return false; } - if (!isValidBeastSkillForCreature(getBeastOnPlayer(player), actionName)) - { - return false; - } - return true; + return isValidBeastSkillForCreature(getBeastOnPlayer(player), actionName); } public static void doBmProvokeCommand(obj_id self, obj_id target, int provokeLevel) throws InterruptedException { @@ -3273,7 +3235,6 @@ public class beast_lib extends script.base_script return; } initializeBeastStats(BCD, beast); - return; } public static void removeAttentionPenaltyDebuff(obj_id player) throws InterruptedException { @@ -3420,7 +3381,6 @@ public class beast_lib extends script.base_script if (currentHappiness >= 0) { buff.applyBuff(beast, "bm_happiness_content"); - return; } } public static string_id convertLoyaltyString(obj_id beastBCD) throws InterruptedException @@ -3636,14 +3596,7 @@ public class beast_lib extends script.base_script } public static boolean isChargeAttack(String actionName) throws InterruptedException { - if (actionName.startsWith("bm_charge") || actionName.startsWith("bm_trample")) - { - return true; - } - else - { - return false; - } + return actionName.startsWith("bm_charge") || actionName.startsWith("bm_trample"); } public static boolean setBCDBeastHueFromEgg(obj_id bcd, obj_id egg) throws InterruptedException { @@ -3940,19 +3893,19 @@ public class beast_lib extends script.base_script dictionary creatureDict = dataTableGetRow("datatables/mob/creatures.iff", creatureName); if (ck_skill > -1) { - if (creatureDict.getString("hideType") != "none") + if (!creatureDict.getString("hideType").equalsIgnoreCase("none")) { names[idx] = "creature_resource_hide"; attribs[idx] = utils.packStringId(new string_id("obj_attr_n", creatureDict.getString("hideType"))); idx++; } - if (creatureDict.getString("meatType") != "none") + if (!creatureDict.getString("meatType").equalsIgnoreCase("none")) { names[idx] = "creature_resource_meat"; attribs[idx] = utils.packStringId(new string_id("obj_attr_n", creatureDict.getString("meatType"))); idx++; } - if (creatureDict.getString("boneType") != "none") + if (!creatureDict.getString("boneType").equalsIgnoreCase("none")) { names[idx] = "creature_resource_bone"; attribs[idx] = utils.packStringId(new string_id("obj_attr_n", creatureDict.getString("boneType"))); @@ -3962,10 +3915,10 @@ public class beast_lib extends script.base_script if (ck_skill > 0) { names[idx] = "aggro"; - attribs[idx] = "" + creatureDict.getFloat("aggressive"); + attribs[idx] = Float.toString(creatureDict.getFloat("aggressive")); idx++; names[idx] = "assist_range"; - attribs[idx] = "" + creatureDict.getFloat("assist"); + attribs[idx] = Float.toString(creatureDict.getFloat("assist")); idx++; names[idx] = "deathblow"; boolean deathBlow = (creatureDict.getInt("death_blow") > 0); @@ -3993,22 +3946,22 @@ public class beast_lib extends script.base_script int minDamage = Math.round((dps * attackSpeed) * 0.5f); int maxDamage = Math.round((dps * attackSpeed) * 1.5f); names[idx] = "damage_min"; - attribs[idx] = "" + minDamage; + attribs[idx] = Integer.toString(minDamage); idx++; names[idx] = "damage_max"; - attribs[idx] = "" + maxDamage; + attribs[idx] = Integer.toString(maxDamage); idx++; names[idx] = "attackspeed"; - attribs[idx] = "" + attackSpeed; + attribs[idx] = Float.toString(attackSpeed); idx++; names[idx] = "damage_dps"; - attribs[idx] = "" + dps; + attribs[idx] = Float.toString(dps); idx++; } if (ck_skill > 5) { names[idx] = "armor_rating"; - attribs[idx] = "" + statDict.getInt(prefix + "Armor"); + attribs[idx] = Integer.toString(statDict.getInt(prefix + "Armor")); idx++; } if (ck_skill > 7) @@ -4676,14 +4629,7 @@ public class beast_lib extends script.base_script exp = 1; } } - if (exp > 1) - { - return true; - } - else - { - return false; - } + return exp > 1; } public static int useBeastInjector(obj_id player, obj_id injector, obj_id beast, String beastFamily, String[] injectorFamilies, int mark) throws InterruptedException { diff --git a/sku.0/sys.server/compiled/game/script/library/factions.java b/sku.0/sys.server/compiled/game/script/library/factions.java index a6595d851..92851b4b0 100755 --- a/sku.0/sys.server/compiled/game/script/library/factions.java +++ b/sku.0/sys.server/compiled/game/script/library/factions.java @@ -147,7 +147,6 @@ public class factions extends script.base_script setObjVar(objPlayer, "intChangingFactionStatus", 1); pvpPrepareToBeCovert(objPlayer); messageTo(objPlayer, "msgGoCovert", null, fltDelay, true); - return; } public static void goCovert(obj_id objPlayer) throws InterruptedException { @@ -165,14 +164,12 @@ public class factions extends script.base_script buff.removeAllAuraBuffs(objPlayer); pvpMakeCovert(objPlayer); CustomerServiceLog("player_faction", "PLAYER-FACTION ALTERED|TIME:" + getGameTime() + "|PLAYER:" + objPlayer + "|PLAYER NAME:" + getName(objPlayer) + "|ZONE:" + getCurrentSceneName() + "|Player has been set to covert"); - return; } public static void goOvertWithDelay(obj_id objPlayer, float fltDelay) throws InterruptedException { setObjVar(objPlayer, "intChangingFactionStatus", 1); pvpPrepareToBeDeclared(objPlayer); messageTo(objPlayer, "msgGoOvert", null, fltDelay, true); - return; } public static void goOvert(obj_id objPlayer) throws InterruptedException { @@ -186,7 +183,6 @@ public class factions extends script.base_script buff.removeAllAuraBuffs(objPlayer); pvpMakeDeclared(objPlayer); CustomerServiceLog("player_faction", "PLAYER-FACTION ALTERED|TIME:" + getGameTime() + "|PLAYER:" + objPlayer + "|PLAYER NAME:" + getName(objPlayer) + "|ZONE:" + getCurrentSceneName() + "|Player has been set to overt"); - return; } public static void goOnLeaveWithDelay(obj_id objPlayer, float fltDelay) throws InterruptedException { @@ -197,7 +193,6 @@ public class factions extends script.base_script setObjVar(objPlayer, "intChangingFactionStatus", 1); pvpPrepareToBeNeutral(objPlayer); messageTo(objPlayer, "msgGoOnLeave", null, fltDelay, true); - return; } public static void goOnLeave(obj_id objPlayer) throws InterruptedException { @@ -254,7 +249,6 @@ public class factions extends script.base_script } } } - return; } public static boolean isDeclared(obj_id target) throws InterruptedException { @@ -322,11 +316,7 @@ public class factions extends script.base_script { return false; } - if ((370444368) == currentMercenaryFaction) - { - return true; - } - return false; + return (370444368) == currentMercenaryFaction; } public static boolean isImperialHelper(obj_id target) throws InterruptedException { @@ -339,11 +329,7 @@ public class factions extends script.base_script { return false; } - if ((-615855020) == currentMercenaryFaction) - { - return true; - } - return false; + return (-615855020) == currentMercenaryFaction; } public static boolean isRebelorRebelHelper(obj_id target) throws InterruptedException { @@ -351,11 +337,7 @@ public class factions extends script.base_script { return false; } - if (isRebelHelper(target) || getFactionFlag(target) == FACTION_FLAG_REBEL) - { - return true; - } - return false; + return isRebelHelper(target) || getFactionFlag(target) == FACTION_FLAG_REBEL; } public static boolean isImperialorImperialHelper(obj_id target) throws InterruptedException { @@ -363,11 +345,7 @@ public class factions extends script.base_script { return false; } - if (isImperialHelper(target) || getFactionFlag(target) == FACTION_FLAG_IMPERIAL) - { - return true; - } - return false; + return isImperialHelper(target) || getFactionFlag(target) == FACTION_FLAG_IMPERIAL; } public static boolean isSameFactionorFactionHelper(obj_id target, obj_id target2) throws InterruptedException { @@ -375,11 +353,7 @@ public class factions extends script.base_script { return false; } - if ((isImperialorImperialHelper(target) && isImperialorImperialHelper(target2)) || (isRebelorRebelHelper(target) && isRebelorRebelHelper(target2))) - { - return true; - } - return false; + return (isImperialorImperialHelper(target) && isImperialorImperialHelper(target2)) || (isRebelorRebelHelper(target) && isRebelorRebelHelper(target2)); } public static float getFactionStanding(obj_id target, int intFaction) throws InterruptedException { @@ -393,7 +367,7 @@ public class factions extends script.base_script } if (!isPlayer(target)) { - if (getFaction(target) == factionName) + if (getFaction(target).equals(factionName)) { return FACTION_RATING_MAX; } @@ -529,7 +503,7 @@ public class factions extends script.base_script String title = utils.packStringId(SID_SUI_DELEGATE_FACTION); prose_package ppSuiTitle = prose.getPackage(SID_SUI_DELEGATE_FACTION_TEXT); prose.setTT(ppSuiTitle, getRankNameStringId(rank, faction)); - prose.setTO(ppSuiTitle, "" + ratioFrom + ":" + ratioTo); + prose.setTO(ppSuiTitle, ratioFrom + ":" + ratioTo); prose.setDI(ppSuiTitle, available); String prompt = " \0" + packOutOfBandProsePackage(null, ppSuiTitle); int pid = sui.transfer(self, self, prompt, title, utils.packStringId(SID_SUI_DELEGATE_FACTION_TITLE), available, utils.packStringId(SID_SUI_DELEGATE_FACTION_CAT), 0, "handleDelegateSui", ratioFrom, ratioTo); @@ -552,7 +526,7 @@ public class factions extends script.base_script { prose_package ppLackPointsToGive = prose.getPackage(SID_FACTION_LACK_POINTS_TO_GIVE); prose.setTT(ppLackPointsToGive, target); - prose.setTO(ppLackPointsToGive, "" + amt); + prose.setTO(ppLackPointsToGive, Integer.toString(amt)); prose.setDI(ppLackPointsToGive, required); sendSystemMessageProse(self, ppLackPointsToGive); } @@ -582,7 +556,7 @@ public class factions extends script.base_script prose_package ppDelegate = prose.getPackage(SID_FACTION_DELEGATE_X_TO_TARGET); prose.setTT(ppDelegate, target); prose.setDI(ppDelegate, amt); - prose.setTO(ppDelegate, "" + required); + prose.setTO(ppDelegate, Integer.toString(required)); sendSystemMessageProse(self, ppDelegate); CustomerServiceLog("faction_perk", getFirstName(self) + "(" + self + ") delegated " + amt + " points to " + getFirstName(target) + " for a cost of " + required + " points."); } @@ -753,11 +727,7 @@ public class factions extends script.base_script } public static boolean grantFactionBonus(obj_id target, String factionName, float value) throws InterruptedException { - if (!isIdValid(target) || factionName == null || factionName.equals("") || value == 0.0f) - { - return false; - } - return true; + return !(!isIdValid(target) || factionName == null || factionName.equals("") || value == 0.0f); } public static float getFactionStoryReward(obj_id target, String factionName, float value) throws InterruptedException { @@ -854,13 +824,12 @@ public class factions extends script.base_script { return; } - boolean pvp_only = pvpOnly == 1 ? true : false; if (factionName.equals(FACTION_IMPERIAL)) { setAttributeAttained(target, attrib.IMPERIAL); setAttributeInterested(target, attrib.REBEL); ai_lib.setDefaultCalmMood(target, "npc_imperial"); - if (pvp_only) + if (pvpOnly == 1) { setObjVar(target, "huysMagicSpecialForcesOnlyObjvar", true); } @@ -869,7 +838,7 @@ public class factions extends script.base_script { setAttributeAttained(target, attrib.REBEL); setAttributeInterested(target, attrib.IMPERIAL); - if (pvp_only) + if (pvpOnly == 1) { setObjVar(target, "huysMagicSpecialForcesOnlyObjvar", true); } @@ -908,11 +877,7 @@ public class factions extends script.base_script { return true; } - if (pvpGetType(target) == PVPTYPE_NEUTRAL) - { - return true; - } - return false; + return pvpGetType(target) == PVPTYPE_NEUTRAL; } public static String getFactionNameByHashCode(int hashCode) throws InterruptedException { @@ -1115,11 +1080,7 @@ public class factions extends script.base_script value += bonus; } } - if (addFactionStanding(player, factionName, value)) - { - return true; - } - return false; + return addFactionStanding(player, factionName, value); } public static void grantCombatFaction(obj_id killer, obj_id target, double percentDamage) throws InterruptedException { @@ -1332,7 +1293,6 @@ public class factions extends script.base_script changeFactionPoints(factions.FACTION_REBEL, intPoints); changeFactionPoints(factions.FACTION_IMPERIAL, intPoints * -1); } - return; } public static boolean isFactionWinning(String strFaction) throws InterruptedException { @@ -1343,11 +1303,7 @@ public class factions extends script.base_script int intImperial = getIntObjVar(objParent, "gcw." + strImperial); if (strFaction.equals(strRebel)) { - if (intRebel > intImperial) - { - return true; - } - return false; + return intRebel > intImperial; } if (strFaction.equals(strImperial)) { @@ -1388,14 +1344,7 @@ public class factions extends script.base_script { return false; } - if (utils.hasScriptVar(player, VAR_NEWLY_DECLARED)) - { - return true; - } - else - { - return false; - } + return utils.hasScriptVar(player, VAR_NEWLY_DECLARED); } public static boolean canUseFactionItem(obj_id player, obj_id item) throws InterruptedException { @@ -1460,7 +1409,6 @@ public class factions extends script.base_script ammount *= -1; pp = prose.getPackage(PROSE_LOSE_FACTION, getLocalizedFactionName(HSSKOR), (int)ammount); sendSystemMessageProse(player, pp); - return; } public static void awardHsskorFaction(obj_id player, int ammount) throws InterruptedException { @@ -1488,7 +1436,6 @@ public class factions extends script.base_script ammount *= -1; pp = prose.getPackage(PROSE_LOSE_FACTION, getLocalizedFactionName(KASHYYYK), (int)ammount); sendSystemMessageProse(player, pp); - return; } public static void validateBalance(obj_id player, String faction) throws InterruptedException { @@ -1523,7 +1470,6 @@ public class factions extends script.base_script setObjVar(player, checkHsskor, -1 * getFactionStanding(player, KASHYYYK)); } } - return; } public static boolean isUnaligned(obj_id player) throws InterruptedException { @@ -1534,11 +1480,7 @@ public class factions extends script.base_script { return true; } - if (getFloatObjVar(player, hsskor) != 0) - { - return false; - } - return true; + return getFloatObjVar(player, hsskor) == 0; } public static boolean isAlignedKashyyyk(obj_id player) throws InterruptedException { @@ -1559,11 +1501,7 @@ public class factions extends script.base_script public static boolean isImperial(obj_id objPlayer) throws InterruptedException { int intPlayerFaction = pvpGetAlignedFaction(objPlayer); - if (intPlayerFaction == (-615855020)) - { - return true; - } - return false; + return intPlayerFaction == (-615855020); } public static boolean isRebel(obj_id objPlayer) throws InterruptedException { @@ -1577,11 +1515,7 @@ public class factions extends script.base_script public static boolean isOnLeave(obj_id objPlayer) throws InterruptedException { int intFaction = pvpGetAlignedFaction(objPlayer); - if ((intFaction != 0) && pvpGetType(objPlayer) == PVPTYPE_NEUTRAL) - { - return true; - } - return false; + return (intFaction != 0) && pvpGetType(objPlayer) == PVPTYPE_NEUTRAL; } public static boolean isActiveImperial(obj_id objPlayer) throws InterruptedException { @@ -1669,14 +1603,7 @@ public class factions extends script.base_script { return false; } - if (player_faction_id == npc_faction_id) - { - return true; - } - else - { - return false; - } + return player_faction_id == npc_faction_id; } public static boolean joinFaction(obj_id player, int faction_id, boolean returnFromReserves) throws InterruptedException { @@ -1712,11 +1639,7 @@ public class factions extends script.base_script } public static boolean isOnLeaveFromFriendlyFaction(obj_id objPlayer, obj_id objNPC) throws InterruptedException { - if (pvpGetAlignedFaction(objPlayer) == pvpGetAlignedFaction(objNPC) && (pvpGetType(objPlayer) == PVPTYPE_NEUTRAL)) - { - return true; - } - return false; + return pvpGetAlignedFaction(objPlayer) == pvpGetAlignedFaction(objNPC) && (pvpGetType(objPlayer) == PVPTYPE_NEUTRAL); } public static boolean isInEnemyFaction(obj_id objPlayer, obj_id objNPC) throws InterruptedException { @@ -1729,11 +1652,7 @@ public class factions extends script.base_script } public static boolean isInFriendlyFaction(obj_id objPlayer, obj_id objNPC) throws InterruptedException { - if (pvpGetAlignedFaction(objPlayer) == pvpGetAlignedFaction(objNPC)) - { - return true; - } - return false; + return pvpGetAlignedFaction(objPlayer) == pvpGetAlignedFaction(objNPC); } public static boolean isOnLeaveFromEnemyFaction(obj_id objPlayer, obj_id objNPC) throws InterruptedException { @@ -1758,11 +1677,7 @@ public class factions extends script.base_script } int cost = factions.getRankCost(current_rank + 1); int faction_standing = (int)factions.getFactionStanding(objPlayer, intFaction); - if (faction_standing >= cost) - { - return true; - } - return false; + return faction_standing >= cost; } public static void applyPromotion(obj_id objPlayer, int intFaction) throws InterruptedException { @@ -1777,7 +1692,6 @@ public class factions extends script.base_script factions.setRank(objPlayer, current_rank + 1); } } - return; } public static boolean isSmuggler(obj_id player) throws InterruptedException { @@ -1956,48 +1870,46 @@ public class factions extends script.base_script int intYourPVPType = pvpGetType(objTarget); string_id strTitleId = new string_id("gcw", "gcw_status_change"); String strTitle = utils.packStringId(strTitleId); - if (intMyPVPType == PVPTYPE_NEUTRAL) - { - if (intYourPVPType == PVPTYPE_COVERT) - { - string_id strSpam = new string_id("gcw", "gcw_status_change_covert"); - String strPrompt = utils.packStringId(strSpam); - int pid = sui.inputbox(objPlayer, objPlayer, strPrompt, strTitle, "handleGoCovert", ""); - return; - } - else if (intYourPVPType == PVPTYPE_DECLARED) - { - string_id strSpam = new string_id("gcw", "gcw_status_change_overt"); - String strPrompt = utils.packStringId(strSpam); - int pid = sui.inputbox(objPlayer, objPlayer, strPrompt, strTitle, "handleGoOvert", ""); - return; - } - else - { - sendSystemMessageTestingOnly(objPlayer, "Error # 4 : You got a PVP error message. Your PVP Type is " + intMyPVPType + ". Your faction is" + pvpGetAlignedFaction(objPlayer) + ". Your target is " + objTarget + " their pvp type is " + pvpGetType(objTarget) + " and their faction is " + pvpGetAlignedFaction(objTarget)); - } - } - else if (intMyPVPType == PVPTYPE_COVERT) - { - if (intYourPVPType == PVPTYPE_COVERT) - { - sendSystemMessageTestingOnly(objPlayer, "Error # 1 : You got a PVP error message. Your PVP Type is " + intMyPVPType + ". Your faction is" + pvpGetAlignedFaction(objPlayer) + ". Your target is " + objTarget + " their pvp type is " + pvpGetType(objTarget) + " and their faction is " + pvpGetAlignedFaction(objTarget)); - } - else if (intYourPVPType == PVPTYPE_DECLARED) - { - string_id strSpam = new string_id("gcw", "gcw_status_change_overt"); - String strPrompt = utils.packStringId(strSpam); - int pid = sui.inputbox(objPlayer, objPlayer, strPrompt, strTitle, "handleGoOvert", ""); - return; - } - else - { - sendSystemMessageTestingOnly(objPlayer, "Error # 3 : You got a PVP error message. Your PVP Type is " + intMyPVPType + ". Your faction is" + pvpGetAlignedFaction(objPlayer) + ". Your target is " + objTarget + " their pvp type is " + pvpGetType(objTarget) + " and their faction is " + pvpGetAlignedFaction(objTarget)); - } - } - else - { - sendSystemMessageTestingOnly(objPlayer, "Error # 2 : You got a PVP error message. Your PVP Type is " + intMyPVPType + ". Your faction is" + pvpGetAlignedFaction(objPlayer) + ". Your target is " + objTarget + " their pvp type is " + pvpGetType(objTarget) + " and their faction is " + pvpGetAlignedFaction(objTarget)); + switch (intMyPVPType) { + case PVPTYPE_NEUTRAL: + switch (intYourPVPType) { + case PVPTYPE_COVERT: + { + string_id strSpam = new string_id("gcw", "gcw_status_change_covert"); + String strPrompt = utils.packStringId(strSpam); + int pid = sui.inputbox(objPlayer, objPlayer, strPrompt, strTitle, "handleGoCovert", ""); + return; + } + case PVPTYPE_DECLARED: + { + string_id strSpam = new string_id("gcw", "gcw_status_change_overt"); + String strPrompt = utils.packStringId(strSpam); + int pid = sui.inputbox(objPlayer, objPlayer, strPrompt, strTitle, "handleGoOvert", ""); + return; + } + default: + sendSystemMessageTestingOnly(objPlayer, "Error # 4 : You got a PVP error message. Your PVP Type is " + intMyPVPType + ". Your faction is" + pvpGetAlignedFaction(objPlayer) + ". Your target is " + objTarget + " their pvp type is " + pvpGetType(objTarget) + " and their faction is " + pvpGetAlignedFaction(objTarget)); + break; + } + break; + case PVPTYPE_COVERT: + switch (intYourPVPType) { + case PVPTYPE_COVERT: + sendSystemMessageTestingOnly(objPlayer, "Error # 1 : You got a PVP error message. Your PVP Type is " + intMyPVPType + ". Your faction is" + pvpGetAlignedFaction(objPlayer) + ". Your target is " + objTarget + " their pvp type is " + pvpGetType(objTarget) + " and their faction is " + pvpGetAlignedFaction(objTarget)); + break; + case PVPTYPE_DECLARED: + string_id strSpam = new string_id("gcw", "gcw_status_change_overt"); + String strPrompt = utils.packStringId(strSpam); + int pid = sui.inputbox(objPlayer, objPlayer, strPrompt, strTitle, "handleGoOvert", ""); + return; + default: + sendSystemMessageTestingOnly(objPlayer, "Error # 3 : You got a PVP error message. Your PVP Type is " + intMyPVPType + ". Your faction is" + pvpGetAlignedFaction(objPlayer) + ". Your target is " + objTarget + " their pvp type is " + pvpGetType(objTarget) + " and their faction is " + pvpGetAlignedFaction(objTarget)); + break; + } + break; + default: + sendSystemMessageTestingOnly(objPlayer, "Error # 2 : You got a PVP error message. Your PVP Type is " + intMyPVPType + ". Your faction is" + pvpGetAlignedFaction(objPlayer) + ". Your target is " + objTarget + " their pvp type is " + pvpGetType(objTarget) + " and their faction is " + pvpGetAlignedFaction(objTarget)); + break; } } public static boolean pvpDoAllowedHelpCheck(obj_id objPlayer, obj_id objTarget) throws InterruptedException @@ -2045,11 +1957,7 @@ public class factions extends script.base_script } public static boolean canGoOnLeave(obj_id objPlayer) throws InterruptedException { - if (isInAdhocPvpArea(objPlayer)) - { - return false; - } - return true; + return !isInAdhocPvpArea(objPlayer); } public static boolean canGoCovert(obj_id objPlayer) throws InterruptedException { @@ -2131,7 +2039,6 @@ public class factions extends script.base_script skill.revokeSkill(player, "pvp_rebel_last_man_ability"); skill.revokeSkill(player, "pvp_rebel_aura_buff_self"); skill.revokeSkill(player, "pvp_rebel_airstrike_ability"); - return; } public static boolean shareSocialGroup(obj_id creatureOne, obj_id creatureTwo) throws InterruptedException { From b00e691c8027c4548b35b98f25939f831d185d71 Mon Sep 17 00:00:00 2001 From: Reedux Date: Fri, 8 May 2020 11:43:09 +0100 Subject: [PATCH 09/13] Remove duplicate obj var from last submission --- .../object/tangible/veteran_reward/instant_travel_terminal.tpf | 1 - 1 file changed, 1 deletion(-) diff --git a/sku.0/sys.server/compiled/game/object/tangible/veteran_reward/instant_travel_terminal.tpf b/sku.0/sys.server/compiled/game/object/tangible/veteran_reward/instant_travel_terminal.tpf index 2e7bbf8aa..2073246b3 100755 --- a/sku.0/sys.server/compiled/game/object/tangible/veteran_reward/instant_travel_terminal.tpf +++ b/sku.0/sys.server/compiled/game/object/tangible/veteran_reward/instant_travel_terminal.tpf @@ -8,4 +8,3 @@ sharedTemplate = "object/tangible/veteran_reward/shared_instant_travel_terminal. scripts = ["systems.veteran_reward.instant_travel_terminal_deed", "item.special.nomove"] objvars = +["default_itv" = 1] persistByDefault = true -objvars = +["default_itv" = 1] From 88226c121ac66edec8e55b2f532dc0be98ead94a Mon Sep 17 00:00:00 2001 From: IrishDarkshadow Date: Tue, 12 May 2020 07:58:58 -0400 Subject: [PATCH 10/13] moves coronet reb recruiter from objid -11 to -14 to allow Captain Gilad Pallaeon to spawn using objid -11 --- .../buildout/corellia/corellia_4_2_ws.tab | 2518 ++++++++--------- 1 file changed, 1259 insertions(+), 1259 deletions(-) diff --git a/sku.0/sys.server/compiled/game/datatables/buildout/corellia/corellia_4_2_ws.tab b/sku.0/sys.server/compiled/game/datatables/buildout/corellia/corellia_4_2_ws.tab index 886537729..24e7b77de 100755 --- a/sku.0/sys.server/compiled/game/datatables/buildout/corellia/corellia_4_2_ws.tab +++ b/sku.0/sys.server/compiled/game/datatables/buildout/corellia/corellia_4_2_ws.tab @@ -1,1259 +1,1259 @@ -objid container server_template_crc cell_index px py pz qw qx qy qz scripts objvars -i i h i f f f f f f f s p -164393 0 object/static/structure/tatooine/debris_tatt_crate_1.iff 0 292.756 0.463244 554.43 1 0 0 0 $| -164394 0 object/static/structure/tatooine/debris_tatt_crate_1.iff 0 292.871 0.52167 555.584 0.950796 0 0.309816 0 $| -1211509 0 object/static/structure/general/data_terminal_s4.iff 0 1752.78 28.0662 1486.04 -0.000000032 0 1 0 $| -1211510 0 object/static/structure/general/streetlamp_medium_style_01_on.iff 0 1749.57 28 1483.13 1 0 0 0 $| -1211540 0 object/static/structure/general/streetlamp_medium_style_02_on.iff 0 1877.42 28 1700.51 0.707107 0 -0.707106 0 $| -1211541 0 object/static/structure/general/streetlamp_medium_style_02_on.iff 0 1877.42 28 1707.72 0.707107 0 -0.707106 0 $| -1211542 0 object/static/creature/droids_protocol_droid_gold.iff 0 1873.8 28 1699.58 0.877583 0 -0.479425 0 $| -1211545 0 object/building/general/bunker_corellia_tomi_jinsin.iff 0 1529.76 2.96651 1080.5 0.911039 0 -0.412321 0 $| -1211546 1211545 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| -1211547 1211545 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| -1211548 1211545 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| -1211561 1211548 object/tangible/poi/spawnegg/interior_spawnegg.iff 3 3.44 0.25 -4.1232 1 0 0 0 intRandomYaw|0|1|$| -1211549 1211545 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| -1211550 1211545 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| -1211560 1211550 object/tangible/poi/spawnegg/interior_spawnegg.iff 5 -5.90735 -6.75 -5.08486 1 0 0 0 intRandomYaw|0|1|$| -1211551 1211545 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| -1211559 1211551 object/tangible/poi/spawnegg/interior_spawnegg.iff 6 5.65654 -6.76678 -14.00 1 0 0 0 intRandomYaw|0|1|$| -1211552 1211545 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| -1211558 1211552 object/tangible/poi/spawnegg/interior_spawnegg.iff 7 5.82104 -6.75 -1.88818 1 0 0 0 intRandomYaw|0|1|$| -1211553 1211545 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| -1211554 1211545 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| -1211555 1211554 object/tangible/poi/spawnegg/interior_spawnegg.iff 9 -2.607 -13.75 -16.702 1 0 0 0 intRandomYaw|0|1|$| -1211556 1211554 object/tangible/poi/spawnegg/interior_spawnegg.iff 9 -4.77686 -13.75 -8.52002 1 0 0 0 intRandomYaw|0|1|$| -1211557 1211554 object/tangible/poi/spawnegg/interior_spawnegg.iff 9 -0.256836 -13.75 -4.98926 1 0 0 0 intRandomYaw|0|1|$| -1211565 0 object/static/structure/tatooine/antenna_tatt_style_1.iff 0 1525.24 8.35486 1092.6 1 0 0 0 $| -1211566 0 object/static/structure/military/bunker_pillar_style_04.iff 0 1525.25 3.2 1092.57 1 0 0 0 $| -1211569 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1529.12 3.81409 1092.18 0.934943 0 0.354799 0 $| -1211570 0 object/static/installation/mockup_power_generator_fusion_style_1.iff 0 1524.89 7.99098 1079.41 0.413046 0 0.91071 0 $| -1211571 0 object/static/structure/general/tankfarm_s01.iff 0 1525.02 2.22977 1073.77 -0.352274 0 0.935897 0 $| -1211581 0 object/static/item/lair_wooden_tent.iff 0 1907.35 34.0243 1127 -0.000000032 0 1 0 $| -1211582 0 object/static/item/lair_wooden_tent.iff 0 1897.57 35.0226 1117.78 0.707107 0 -0.707106 0 $| -1211585 0 object/static/structure/general/campfire_fresh.iff 0 1897.47 34.547 1125.97 0.998872 0.0436073 -0.00395866 -0.0183592 $| -1211586 0 object/tangible/furniture/tatooine/frn_tato_tbl_cafe_table_style_01.iff 0 1905.02 34.0601 1127.36 0.998376 0.0547413 -0.000864567 -0.015768 $| -1211587 0 object/tangible/quest/corellia_coronet_meatlump_act1_radio.iff 0 1904.61 34.8275 1127.4 -0.61706 -0.0353772 0.785629 0.0277865 $| -1211594 0 object/tangible/furniture/tatooine/frn_tato_tbl_cafe_table_style_01.iff 0 1973.28 29.0829 1160.55 0.998831 0.020219 -0.00261969 -0.0438281 $| -1211595 0 object/tangible/quest/corellia_coronet_meatlump_act1_radio.iff 0 1972.86 29.87 1160.61 -0.617678 -0.00393192 0.786415 0.00308795 $| -1211596 0 object/static/item/lair_wooden_tent.iff 0 1965.82 30.394 1150.98 0.707111 0 -0.707102 0 $| -1211597 0 object/static/item/lair_wooden_tent.iff 0 1975.6 28.894 1160.2 0 0 1 0 $| -1211598 0 object/static/structure/general/campfire_fresh.iff 0 1965.73 29.877 1159.17 0.998641 0.0372496 -0.00610765 -0.0359362 $| -1211605 0 object/tangible/furniture/tatooine/frn_tato_tbl_cafe_table_style_01.iff 0 1974.9 28.5662 1074.22 0.995971 0.00414414 -0.00208884 -0.0895563 $| -1211606 0 object/tangible/quest/corellia_coronet_meatlump_act1_radio.iff 0 1974.45 29.403 1074.27 -0.615114 0.0563575 0.783838 0.0636871 $| -1211607 0 object/static/item/lair_wooden_tent.iff 0 1967.44 30.0308 1064.64 0.707109 0 -0.707104 0 $| -1211608 0 object/static/item/lair_wooden_tent.iff 0 1977.22 29.0325 1073.87 0 0 1 0 $| -1211609 0 object/static/structure/general/campfire_fresh.iff 0 1967.35 29.7561 1072.83 0.998373 0.0113248 -0.00538234 -0.0556287 $| -1439854 0 object/static/structure/corellia/corl_tent_med.iff 0 1883.74 28 1390.23 1 0 0 0 $| -1439857 0 object/static/creature/corellia_murra.iff 0 1877.44 28 1429.47 0.5653 0 0.824886 0 $| -1439858 0 object/static/structure/corellia/corl_tent_small.iff 0 1878.57 28 1452.06 1 0 0 0 $| -1439943 0 object/tangible/terminal/terminal_mission_bounty.iff 0 1705.47 28 1696.86 1 0 0 0 $| -1439947 0 object/static/structure/general/droid_r3_powerdown.iff 0 1707.72 28 1700.45 -0.707107 0 0.707107 0 $| -1439948 0 object/static/structure/general/droid_r4_powerdown.iff 0 1707.81 28 1697.91 0.707107 0 -0.707106 0 $| -1439949 0 object/static/structure/general/droid_probedroid_powerdown.iff 0 1709.23 28 1698.98 1 0 0 0 $| -1439950 0 object/static/structure/corellia/corl_tent_small.iff 0 1679.8 28.1301 1611.57 0.9998 0 0.0199987 0 $| -1439951 0 object/tangible/terminal/terminal_bazaar.iff 0 1684.03 28 1610.74 -0.000000032 0 1 0 $| -1855362 0 object/building/corellia/skyscraper_corellia_style_01.iff 0 1838 28 1884 1 0 0 0 $| -1855366 0 object/building/corellia/skyscraper_corellia_style_03.iff 0 1718 28 1784 0.923881 0 -0.382681 0 $| -1855370 0 object/building/corellia/skyscraper_corellia_style_03.iff 0 1958 28 1784 0.923879 0 0.382684 0 $| -1855378 0 object/building/corellia/skyscraper_corellia_style_04.iff 0 1778 28 1824 1 0 0 0 $| -1855386 0 object/building/corellia/skyscraper_corellia_style_04.iff 0 1898 28 1824 0.000000032 0 1 0 $| -1855406 0 object/building/corellia/filler_building_corellia_style_01.iff 0 1920.69 28 1501.29 1 0 0 0 $| -1855413 0 object/building/corellia/filler_building_corellia_style_02.iff 0 1627.33 28 1598.11 0.707109 0 -0.707105 0 $| -1855420 0 object/building/corellia/filler_building_corellia_style_03.iff 0 1778 28 1704 0.707109 0 0.707105 0 $| -1855427 0 object/building/corellia/filler_building_corellia_style_04.iff 0 1777 28 1649 0.707106 0 0.707107 0 $| -1855431 0 object/building/corellia/filler_building_corellia_style_05.iff 0 1888 27.6908 1704 -0.707106 0 0.707107 0 $| -1855438 0 object/building/corellia/filler_building_corellia_style_06.iff 0 1838 28 1494 0.70711 0 -0.707104 0 $| -1855449 0 object/building/corellia/filler_building_corellia_style_07.iff 0 1905.09 28 1644.25 1 0 0 0 $| -1855459 0 object/building/corellia/bank_corellia.iff 0 1992.41 28 1544.67 0.999997 0 0.0023009 0 $| -1855460 0 object/building/corellia/capitol_corellia.iff 0 1838 28 1574 1 0 0 0 $| -1855461 1855460 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| -1855462 1855460 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| -1855463 1855460 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| -4607185 1855463 object/tangible/poi/spawnegg/interior_spawnegg.iff 3 -26.4 1.3 -0.5 1 0 0 0 intRandomYaw|0|1|$| -4607188 1855463 object/tangible/poi/spawnegg/interior_spawnegg.iff 3 -7.0 1.3 9.9 1 0 0 0 intRandomYaw|0|1|$| --2 1855463 object/tangible/npc/epic_quest/corsec_captain.iff 3 0 3.1 -11.0 1 0 0 0 $| -1855464 1855460 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| -1855465 1855460 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| -1855466 1855460 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| -1855467 1855460 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| -4607182 1855467 object/tangible/poi/spawnegg/interior_spawnegg.iff 3 -35.3 1.3 -1.9 1 0 0 0 intRandomYaw|0|1|$| -4607158 1855467 object/tangible/quest/corellia_coronet_diktat_search_desk.iff 1 -33.79225 1.294224 -2.555527 0.707107 0 0.7071065 0 $| -4607159 1855467 object/tangible/quest/corellia_coronet_diktat_search_terminal.iff 2 -34.15485 2.274531 -1.873781 -0.5403023 0 0.841471 0 $| -1855468 1855460 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| -1855469 1855460 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| -1855470 1855460 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| -1855471 1855460 object/cell/cell.iff 11 0 0 0 1 0 0 0 $| -1211533 1855471 object/tangible/quest/corellia_coronet_meatlump_act1_shipment.iff 11 16.5376 3.35159 -25.4146 0.707107 0 0.707106 0 $| -1855473 0 object/building/corellia/association_hall_civilian_corellia.iff 0 1772.42 28 1424.24 1 0 0 0 $| -1855474 1855473 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| -1855475 1855473 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| -1855476 1855473 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| -1855477 1855473 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| -1855478 1855473 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| -1855479 1855473 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| -1855480 1855473 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| -1855481 1855473 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| -1855482 1855473 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| -1855483 1855473 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| -4608437 1855483 object/tangible/collection/rare_melee_kashyyyk_blade_stick.iff 10 -1.56429 2.48303 -14.5934 0.9832418 -0.12972 0.01449411 -0.12727 $| -1509607 1855483 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 10 0 1.75 -14 0.844588 0 -0.535416 0 $| --7 1855483 object/tangible/npc/corellia_spawn/thracken_sal_solo.iff 10 5.5 1.2 -1.7 1 0 0 0 $| -1855484 1855473 object/cell/cell.iff 11 0 0 0 1 0 0 0 $| -3375685 1855484 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 11 1.4 1.7 -21.2 1 0 0 0 $| -1855485 1855473 object/cell/cell.iff 12 0 0 0 1 0 0 0 $| -1855486 1855473 object/cell/cell.iff 13 0 0 0 1 0 0 0 $| -1855487 1855473 object/cell/cell.iff 14 0 0 0 1 0 0 0 $| -1855488 1855473 object/cell/cell.iff 15 0 0 0 1 0 0 0 $| -1855489 1855473 object/cell/cell.iff 16 0 0 0 1 0 0 0 $| -1855490 1855473 object/cell/cell.iff 17 0 0 0 1 0 0 0 $| -1855491 0 object/building/corellia/cloning_corellia.iff 0 1548 28 1644 0.707109 0 0.707104 0 $| -1855492 1855491 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| -1855493 1855491 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| -1855494 1855491 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| -1855495 1855491 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| -1855496 1855491 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| -1855497 1855491 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| -1855498 0 object/building/corellia/garage_corellia.iff 0 1784.8 28 1353.22 0.000000832 0 1 0 $| -1855499 0 object/building/corellia/guild_combat_corellia_style_01.iff 0 1788 28 1754 0.707106 0 0.707108 0 $| -1855500 1855499 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| -1855501 1855499 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| -1855502 1855499 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| -1855503 1855499 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| -1855504 1855499 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| --13 1855504 object/tangible/npc/storyline_npc/coa3_tactical_rebel_spawner.iff 5 9.7 1.1 0.1 1 0 0 0 $| -1855505 1855499 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| -1855506 1855499 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| -1855507 1855499 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| -1855508 1855499 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| -1855509 0 object/building/corellia/guild_commerce_corellia_style_01.iff 0 1888 28 1754 -0.707106 0 0.707108 0 $| -1855510 1855509 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| -1855511 1855509 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| -1855512 1855509 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| -1855513 1855509 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| -1855514 1855509 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| -1855515 1855509 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| -1855516 1855509 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| --12 1855516 object/tangible/npc/storyline_npc/coa3_information_rebel_spawner.iff 7 14.1 1.1 -9.1 1 0 0 0 $| -1855517 1855509 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| -1855518 1855509 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| -1855529 0 object/building/corellia/hospital_corellia.iff 0 1958 28 1704 -0.00000167 0 1 0 theme_park.dungeon.generic_spawner spawn_table|4|datatables/spawning/ep3/ep3_coronet_medical_center.iff|$| -1855530 1855529 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| -1855531 1855529 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| -1211544 1855531 object/tangible/poi/spawnegg/interior_spawnegg.iff 2 15.67 0.26 -3.536 1 0 0 0 intRandomYaw|0|1|$| -1855532 1855529 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| -1855533 1855529 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| -1855534 1855529 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| -1855535 1855529 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| -1855536 1855529 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| -1855537 1855529 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| -1855538 1855529 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| -1855539 1855529 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| -1855540 1855529 object/cell/cell.iff 11 0 0 0 1 0 0 0 $| -1855541 1855529 object/cell/cell.iff 12 0 0 0 1 0 0 0 $| -1855542 1855529 object/cell/cell.iff 13 0 0 0 1 0 0 0 $| -1855543 1855529 object/cell/cell.iff 14 0 0 0 1 0 0 0 $| -1855544 0 object/building/corellia/hotel_corellia.iff 0 1586 28 1471 0.70711 0 -0.707104 0 $| -1855545 1855544 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| -1855546 1855544 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| -1855547 1855544 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| -1855548 1855544 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| -1094962 1855548 object/tangible/gambling/slot/standard.iff 1 4.31708 1.35331 -22.14906 0.9999964 0 0.002698069 0 $| -1094963 1855548 object/tangible/gambling/slot/standard.iff 2 0.2440479 1.352409 -22.06592 0.9999964 0 0.002698069 0 $| -1094964 1855548 object/tangible/gambling/wheel/roulette.iff 3 -1.177133 1.162605 -16.19081 0.9999964 0 0.002698069 0 $| -1094965 1855548 object/tangible/gambling/wheel/roulette.iff 4 9.467048 1.163567 -16.30754 0.9999964 0 0.002698069 0 $| -1094966 1855548 object/tangible/gambling/slot/standard.iff 5 8.357725 1.35331 -22.29336 0.9999964 0 0.002698069 0 $| -1855549 1855544 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| -1855550 1855544 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| -1094956 1855550 object/tangible/gambling/wheel/roulette.iff 1 -15.87479 1.000944 -0.1205326 0.9999734 0 -0.007301865 0 $| -1094957 1855550 object/tangible/gambling/wheel/roulette.iff 2 -15.92515 1.000959 4.248792 0.9999734 0 -0.007301865 0 $| -1094958 1855550 object/tangible/gambling/slot/standard.iff 3 -12.28831 1.000776 -0.09216459 -0.7019242 0 0.7122527 0 $| -1094959 1855550 object/tangible/gambling/slot/standard.iff 4 -12.08542 1.000623 -0.1099437 0.7122518 0 0.701924 0 $| -1094960 1855550 object/tangible/gambling/slot/standard.iff 5 -12.01161 1.000883 4.197353 0.7032807 0 0.7109124 0 $| -1094961 1855550 object/tangible/gambling/slot/standard.iff 6 -12.21349 1.00073 4.220461 0.7109085 0 -0.703285 0 $| -1855551 1855544 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| --5 1855551 object/tangible/npc/corellia_spawn/grobber.iff 7 -15.2 1 -8.4 1 0 0 0 $| -1855552 1855544 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| -1855553 1855544 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| -1855554 1855544 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| --8 1855554 object/tangible/npc/corellia_spawn/zekka_thyne.iff 10 -23 1.6 -15 0.7071067812 0 0.7071067812 0 $| -1855555 0 object/building/corellia/shuttleport_corellia.iff 0 2022.33 28 1754.22 0.70711 0 -0.707104 0 structure.municipal.starport:planet_map.map_loc travel.cost|0|200|travel.ground_time|0|300|travel.is_shuttleport|0|1|travel.point_name|4|Coronet Shuttleport A|travel.shuttle_available|0|1|travel.version|0|3|$| -1855572 0 object/building/corellia/shuttleport_corellia.iff 0 1718.23 28 1522.77 -0.707106 0 0.707107 0 structure.municipal.starport:planet_map.map_loc travel.cost|0|200|travel.ground_time|0|300|travel.is_shuttleport|0|1|travel.point_name|4|Coronet Shuttleport B|travel.shuttle_available|0|1|travel.version|0|3|$| -1855573 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1671.08 28 1738.88 0.382687 0 0.923878 0 $| -1855587 0 object/building/corellia/filler_building_corellia_style_03.iff 0 2038.05 28 1655.64 0.707108 0 -0.707105 0 $| -1855594 0 object/building/corellia/filler_building_corellia_style_07.iff 0 1648 28 1404 0.707107 0 0.707107 0 $| -1855604 0 object/building/corellia/filler_building_corellia_style_01.iff 0 1762 28 1504 1 0 0 0 $| -1855611 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1927.14 28 1567.07 0.707106 0 0.707108 0 $| -1855618 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 1718 28 1404 1 0 0 0 $| -1855624 0 object/building/corellia/filler_building_corellia_style_05.iff 0 1727.67 28 1724.32 0.707109 0 -0.707105 0 $| -1855631 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1668 28 1524 1 0 0 0 $| -1855671 0 object/building/corellia/starport_corellia.iff 0 1996.71 28 1409.2 0.756336 0 -0.654183 0 structure.municipal.starport:theme_park.dungeon.generic_spawner travel.air_time|0|60|travel.cost|0|150|travel.ground_time|0|300|travel.point_name|4|Coronet Starport|travel.shuttle_available|0|1|travel.version|0|3|spawn_table|4|datatables/spawning/building_spawns/coronet_starport.iff|$| -1855672 1855671 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| -1855673 1855671 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| -1855674 1855671 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| -1855675 1855671 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| -3095701 1855675 object/tangible/terminal/terminal_space.iff 4 -0.173982 0.639421 57.3552 3.20013e-08 0 1 0 $| -3095702 1855675 object/tangible/terminal/terminal_space.iff 4 -0.306201 0.639422 62.2415 1 0 0 0 $| -3095703 1855675 object/tangible/terminal/terminal_space.iff 4 -10.3892 0.639423 57.4145 -3.20013e-08 0 1 0 $| -3095704 1855675 object/tangible/terminal/terminal_space.iff 4 -10.5966 0.639424 62.3669 1 0 0 0 $| -3095705 1855675 object/tangible/terminal/terminal_space.iff 4 10.0577 0.639422 57.249 -0.00689757 0 0.999976 0 $| -3095706 1855675 object/tangible/terminal/terminal_space.iff 4 9.91856 0.639422 62.2038 0.999976 0 0.00689846 0 $| -4335596 1855675 object/tangible/terminal/terminal_newsnet.iff 4 6.90764 0.639421 49.498 1 0 0 0 $| -4335597 1855675 object/tangible/terminal/terminal_newsnet.iff 4 -8.32585 0.639421 49.7909 1 0 0 0 $| -1855676 1855671 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| -1855677 1855671 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| -1855678 1855671 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| -1855679 1855671 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| -1855680 1855671 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| -1855681 1855671 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| -1509602 1855681 object/tangible/terminal/terminal_space.iff 10 -40.4311 1.63942 46.4818 0.997529 0 -0.0702515 0 $| -1509603 1855681 object/tangible/terminal/terminal_space.iff 10 -37.9437 1.63942 49.2991 0.753583 0 -0.657353 0 $| -1509604 1855681 object/tangible/terminal/terminal_space.iff 10 -44.1634 1.63942 50.1721 0.648034 0 0.761611 0 $| -1509605 1855681 object/tangible/terminal/terminal_space.iff 10 -41.6075 1.63942 52.927 0.057976 0 0.998318 0 $| -1855682 1855671 object/cell/cell.iff 11 0 0 0 1 0 0 0 $| -1855683 1855671 object/cell/cell.iff 12 0 0 0 1 0 0 0 $| -5245543 1855683 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 12 -44.7 2.6 35.2 0.70711 0 -0.70711 0 $| -1855684 1855671 object/cell/cell.iff 13 0 0 0 1 0 0 0 $| -1211512 1855684 object/tangible/poi/spawnegg/interior_spawnegg.iff 13 50 1.0 22.9 1 0 0 0 intRandomYaw|0|1|$| -1855685 1855671 object/cell/cell.iff 14 0 0 0 1 0 0 0 $| -1509606 1855685 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 14 -56.6 1.0 8.6 0.89101 0 -0.45399 0 $| -1855686 1855671 object/cell/cell.iff 15 0 0 0 1 0 0 0 $| -5625466 1855671 object/cell/cell.iff 16 0 0 0 1 0 0 0 $| -1855687 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1968 28 1644 1 0 0 0 $| -1855694 0 object/static/structure/corellia/corl_fountain_statue_heroic_s01.iff 0 1838 28 1674 0.707106 0 0.707107 0 theme_park.script_spawner.spawner_methods.gcw_spawner $| -1855695 0 object/static/structure/corellia/corl_fountain_statue_contemplate_s01.iff 0 1838 28 1714 -0.707106 0 0.707107 0 $| -1855696 0 object/static/structure/corellia/corl_fountain_circle_s01.iff 0 1838 28 1694 -0.000000032 0 1 0 $| -1855697 0 object/static/structure/corellia/corl_fountain_brazier_round_s01.iff 0 1853.24 28 1639.35 1 0 0 0 $| -1855698 0 object/static/structure/corellia/corl_fountain_brazier_round_s01.iff 0 1822.72 28 1639.35 1 0 0 0 $| -1855699 0 object/static/structure/corellia/corl_fountain_rectangle_s01.iff 0 1838 28 1754 -0.000000032 0 1 0 $| -1855700 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 1768 28 1574 0.707102 0 0.707111 0 $| -1855713 0 object/building/corellia/filler_building_corellia_style_01.iff 0 1718 28 1574 0.707109 0 -0.707105 0 $| -1905352 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1668 28 1500 1 0 0 0 $| -1905353 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1646 28 1500 1 0 0 0 $| -1905355 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1630 28 1492 0.707109 0 -0.707104 0 $| -1905356 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1630 28 1500 1 0 0 0 $| -1905357 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1630 28 1478 0.707109 0 -0.707104 0 $| -1905358 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1630 28 1464 0.707124 0 -0.707089 0 $| -1905359 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1630 28 1456 0.707107 0 0.707107 0 $| -1905360 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1700.61 28 1440 1 0 0 0 $| -1905361 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1646 28 1456 1 0 0 0 $| -1905362 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1722 28 1440 1 0 0 0 $| -1905363 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1738 28 1476 0.70712 0 -0.707093 0 $| -1905364 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1738 28 1484 0.707108 0 -0.707106 0 $| -1905365 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1738 28 1462 0.70712 0 -0.707093 0 $| -1905366 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1738 28 1492 0.7071 0 0.707113 0 $| -1905367 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1738 28 1500 -0.000000032 0 1 0 $| -1905368 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1556 28 1497 1 0 0 0 $| -1905372 0 object/building/corellia/filler_building_corellia_style_05.iff 0 1538 28 1564 0.707108 0 -0.707105 0 $| -1905379 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 1588 28 1524 1 0 0 0 $| -1905385 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1484.68 28 1604.21 -0.707105 0 0.707108 0 $| -1905404 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1564 28 1497 1 0 0 0 $| -1905408 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1524 28 1477 0.707109 0 -0.707104 0 $| -1905409 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1544 28 1497 1 0 0 0 $| -1905412 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1532 28 1497 -0.000000032 0 1 0 $| -1905413 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1524 28 1497 -0.000000032 0 1 0 $| -1905414 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1524 28 1489 0.707108 0 0.707105 0 $| -1905426 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1524 28 1445 0 0 1 0 $| -1905427 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1532 28 1445 0 0 1 0 $| -1905428 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1544 28 1445 1 0 0 0 $| -1905429 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1556 28 1445 1 0 0 0 $| -1905430 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1564 28 1445 1 0 0 0 $| -1905431 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1524 28 1453 0.707108 0 -0.707105 0 $| -1905436 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1524 28 1465 0.707122 0 -0.707091 0 $| -1905459 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1706 28 1500 0 0 1 0 $| -1905460 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1690 28 1500 1 0 0 0 $| -1905461 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1662 28 1456 1 0 0 0 $| -1905462 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1678 28 1456 1 0 0 0 $| -1905488 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1625.01 28 1674.57 -0.707105 0 0.707108 0 $| -1905495 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1484.68 28 1684.21 -0.707105 0 0.707108 0 $| -1905502 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1478 28 1854 0.923879 0 -0.382685 0 $| -1905563 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 2033.38 28 1914.87 1 0 0 0 $| -1905570 0 object/building/corellia/filler_building_corellia_style_05.iff 0 2008 28 1854 -0.382683 0 0.92388 0 $| -1905577 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 2028.52 28 1804.58 0.707106 0 0.707107 0 $| -1905583 0 object/building/corellia/filler_building_corellia_style_06.iff 0 1918 28 1884 0.707105 0 0.707108 0 $| -1905594 0 object/building/corellia/filler_building_corellia_style_04.iff 0 1778 28 1884 1 0 0 0 $| -1905599 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1721.46 28 1875.99 -0.707105 0 0.707108 0 $| -1905606 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 1648 28 1954 1 0 0 0 $| -1905612 0 object/building/corellia/filler_building_corellia_style_03.iff 0 1578 28 1954 0.923879 0 0.382684 0 $| -1905619 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 1538 28 1904 0.92388 0 -0.382683 0 $| -1935565 0 object/building/corellia/association_hall_civilian_corellia.iff 0 1838 28 1824 0.00000206 0 1 0 $| -1935566 1935565 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| -1935567 1935565 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| -1935568 1935565 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| -1935569 1935565 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| -1935570 1935565 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| -1935571 1935565 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| -1935572 1935565 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| -1935573 1935565 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| -1935574 1935565 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| -1935575 1935565 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| --6 1935575 object/tangible/npc/corellia_spawn/sergeant_tarl.iff 10 -5.8 1.2 -2.8 0 0 1 0 $| -1935576 1935565 object/cell/cell.iff 11 0 0 0 1 0 0 0 $| --11 1935576 object/tangible/npc/corellia_spawn/captain_gilad_pellaeon.iff 11 -11.3 1.7 -21 0.3090169944 0 0.9510565163 0 $| -1935577 1935565 object/cell/cell.iff 12 0 0 0 1 0 0 0 $| -1935578 1935565 object/cell/cell.iff 13 0 0 0 1 0 0 0 $| -1935579 1935565 object/cell/cell.iff 14 0 0 0 1 0 0 0 $| -1935580 1935565 object/cell/cell.iff 15 0 0 0 1 0 0 0 $| -1935581 1935565 object/cell/cell.iff 16 0 0 0 1 0 0 0 $| -1935582 1935565 object/cell/cell.iff 17 0 0 0 1 0 0 0 $| -2005443 0 object/building/corellia/filler_slum_16x32_s02.iff 0 1539.62 28 1761.55 0.382683 0 0.92388 0 $| -2005447 0 object/building/corellia/filler_slum_16x32_s01.iff 0 1581.83 28 1719.58 0.382683 0 0.92388 0 $| -2005449 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1564.13 28 1734.68 0.92388 0 -0.382683 0 $| -2005451 0 object/building/corellia/filler_slum_16x32_s02.iff 0 1513.2 28 1643.94 1 0 0 0 $| -2005455 0 object/building/corellia/filler_slum_16x32_s01.iff 0 1505.42 28 1801.8 0.92388 0 -0.382683 0 $| -2005457 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1508.29 28 1759.86 0.382683 0 0.92388 0 $| -2005459 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1480.65 28 1794.46 -0.382684 0 0.923879 0 $| -2005461 0 object/building/corellia/filler_slum_16x32_s02.iff 0 1480.24 28 1769.02 0.382683 0 0.92388 0 $| -2005465 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1512.94 28 1668 1 0 0 0 $| -2005467 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1512.9 28 1690.39 1 0 0 0 $| -2005469 0 object/building/corellia/filler_slum_16x32_s01.iff 0 1537.95 28 1689.52 0.707107 0 0.707107 0 $| -2005471 0 object/building/corellia/filler_slum_16x32_s02.iff 0 1514.94 28 1714.19 -0.000000748 0 1 0 $| -2005475 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1524.13 28 1743.74 -0.382684 0 0.923879 0 $| -2005477 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1564.42 28 1709.26 0.923879 0 0.382684 0 $| -2005479 0 object/building/corellia/filler_slum_16x32_s01.iff 0 1587.38 28 1685.2 -0.000000748 0 1 0 $| -2005481 0 object/building/corellia/filler_slum_16x32_s02.iff 0 1585.2 28 1646.07 -0.000001 0 1 0 $| -2005485 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1582.45 28 1620.81 1 0 0 0 $| -2005487 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1586.31 28 1602.02 0.707108 0 -0.707106 0 $| -2005489 0 object/building/corellia/filler_slum_16x32_s01.iff 0 1560.38 28 1599.35 0.707109 0 -0.707105 0 $| -2005491 0 object/building/corellia/filler_slum_16x32_s01.iff 0 1514.21 28 1609.66 -0.000001 0 1 0 $| -2005493 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1532.62 28 1599.44 1 0 0 0 $| -2005495 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 1819.72 28 1384.97 0.707109 0 -0.707105 0 $| -2035352 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1497.54 28 1517.53 -0.00000479 0 1 0 $| -2035353 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1532.54 28 1517.53 0.707108 0 -0.707105 0 $| -2035354 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1489.54 28 1517.53 1 0 0 0 $| -2035355 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1524.54 28 1517.53 -0.0000162 0 1 0 $| -2035356 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1511.54 28 1517.53 -0.00000479 0 1 0 $| -2035357 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1548.94 28 1517.68 1 0 0 0 $| -2035360 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.38 27.8592 1517.61 0.92388 0 -0.382683 0 $| -2035364 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.38 28 1550.74 0.707108 0 0.707105 0 $| -2035369 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.37 28 1584 0.707107 0 0.707107 0 $| -2035370 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1456.3 28 1567.35 0.707107 0 0.707107 0 $| -2035377 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.35 28 1617.26 -0.707107 0 0.707107 0 $| -2035379 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1456.37 28 1600.6 -0.707107 0 0.707107 0 $| -2035385 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.39 28 1750.06 0 0 1 0 $| -2035386 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.36 28 1716.84 -0.707107 0 0.707107 0 $| -2035387 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1456.43 28 1733.49 -0.707107 0 0.707107 0 $| -2035388 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1456.44 28 1700.23 -0.707107 0 0.707107 0 $| -2035389 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.43 28 1683.89 0.707107 0 0.707107 0 $| -2035394 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1456.51 28 1799.87 -0.707107 0 0.707107 0 $| -2035395 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.51 28 1783.27 0.707107 0 0.707107 0 $| -2035396 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1456.44 28 1766.62 0.707107 0 0.707107 0 $| -2035464 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1738 28 1448 0.707104 0 0.707109 0 $| -2035466 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1738 28 1440 0 0 1 0 $| -2035467 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1694 28 1448 0.707104 0 0.707109 0 $| -2035468 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1694 28 1440 0.707108 0 0.707106 0 $| -2035469 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1694 28 1456 0.707107 0 0.707107 0 $| -2035470 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1620.94 28 1383.44 -0.382683 0 0.92388 0 $| -2035471 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1615.28 28 1389.09 -0.382698 0 0.923873 0 $| -2035472 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1606.09 28 1398.28 -0.382688 0 0.923878 0 $| -2035473 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1596.19 28 1408.18 -0.382688 0 0.923878 0 $| -2035474 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1590.65 28 1413.96 0.832218 0 0.554448 0 $| -2035475 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1590.45 28 1429.95 0.707108 0 0.707105 0 $| -2035476 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1632.6 28 1371.76 0.923879 0 0.382684 0 $| -2035477 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1660.02 28 1360.41 1 0 0 0 $| -2035478 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1644.02 28 1360.56 -0.196413 0 0.980521 0 $| -2035492 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1676.39 28 1360.42 0.000000748 0 1 0 $| -2035493 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1692.39 28 1360.42 1 0 0 0 $| -2035496 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1724.39 28 1360.42 1 0 0 0 $| -2035497 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1708.39 28 1360.42 0.000001 0 1 0 $| -2035502 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1746.39 28 1360.42 -0.00000448 0 1 0 $| -2035522 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1753.25 28 1360.41 0.000001 0 1 0 $| -2035523 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1807 28 1357 1 0 0 0 $| -2035524 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1761.64 28 1360.4 1 0 0 0 $| -2035528 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1804 28 1357 0.707109 0 0.707104 0 $| -2035529 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1829.24 28 1330.91 0.82381 0 0.566866 0 $| -2035531 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1840.51 28 1319.4 -0.382684 0 0.923879 0 $| -2035540 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1852.25 28 1307.65 0.92388 0 0.382683 0 $| -2035676 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 2043.02 28 1628.8 0.707109 0 0.707105 0 $| -2035677 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 2043.06 28 1623.8 1 0 0 0 $| -2035678 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 2043.06 28 1633.7 0.707109 0 0.707105 0 $| -2035681 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 2009.02 28 1640.85 1 0 0 0 $| -2035682 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 2020.85 28 1640.84 1 0 0 0 $| -2035683 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1997.29 28 1640.82 1 0 0 0 $| -2035685 0 object/static/structure/corellia/corl_imprv_arch_lg_s02.iff 0 1974.74 33.6515 1679.43 0.707109 -0.707104 0 0 $| -2035686 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1971.53 28 1673.57 1 0 0 0 $| -2035687 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1977.64 28 1673.4 1 0 0 0 $| -2035794 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1938.02 28 1673.71 1 0 0 0 $| -2035795 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1944.13 28 1673.54 1 0 0 0 $| -2035796 0 object/static/structure/corellia/corl_imprv_arch_lg_s02.iff 0 1941.23 33.674 1679.58 0.707119 -0.707094 0 0 $| -2035797 0 object/static/structure/corellia/corl_imprv_arch_lg_s02.iff 0 1974.78 33.6732 1728.59 0.707104 0.707109 0 0 $| -2035798 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1978.08 28 1734.35 1 0 0 0 $| -2035799 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1971.97 28 1734.52 1 0 0 0 $| -2035800 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1938.29 28 1734.54 1 0 0 0 $| -2035801 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1944.4 28 1734.37 1 0 0 0 $| -2035802 0 object/static/structure/corellia/corl_imprv_arch_lg_s02.iff 0 1941.21 33.6737 1728.52 0.707098 0.707115 0 0 $| -2035809 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 2033.06 34.588 1704.92 0.70711 0.707104 0 0 $| -2035810 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 2033.06 34.588 1702.92 0.707109 -0.707104 0 0 $| -2035811 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 2037.18 28.611 1698.92 1 0 0 0 $| -2035812 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 2028.81 28.611 1698.92 1 0 0 0 $| -2035813 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 2028.81 28.611 1708.92 1 0 0 0 $| -2035814 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 2037.18 28.611 1708.93 1 0 0 0 $| -2055352 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1873.31 28 1620.94 1 0 0 0 $| -2055353 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1862.1 28 1620.91 1 0 0 0 $| -2055354 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1884.72 28 1620.89 1 0 0 0 $| -2055355 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1864 28 1635 1 0 0 0 $| -2055360 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1917.33 28 1609.1 0.707108 0 -0.707105 0 $| -2055361 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1917.36 28 1597.89 0.707108 0 -0.707105 0 $| -2055362 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1917.37 28 1620.51 0.707108 0 -0.707105 0 $| -2055363 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1930.53 28 1633.83 -0.00000184 0 1 0 $| -2055366 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1859 28 1635 1 0 0 0 $| -2055368 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1869 28 1635 1 0 0 0 $| -2055370 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1812 28 1635 1 0 0 0 $| -2055371 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1807 28 1635 1 0 0 0 $| -2055372 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1817 28 1635 1 0 0 0 $| -2055374 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1931.51 28 1655.69 -0.000002 0 1 0 $| -2055391 0 object/static/structure/corellia/corl_imprv_gate_sm_s02.iff 0 1456.32 28 1637.81 0.707109 0 -0.707104 0 $| -2055392 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1456.37 28 1650.59 0.707109 0 -0.707104 0 $| -2055393 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1456.37 28 1625.84 -0.707107 0 0.707107 0 $| -2055394 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.37 28 1642.59 0.707109 0 0.707104 0 $| -2055395 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1456.4 28 1675.35 -0.707107 0 0.707107 0 $| -2055396 0 object/static/structure/corellia/corl_imprv_gate_sm_s02.iff 0 1456.39 28 1663.4 0.707132 0 -0.707081 0 $| -2055417 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.37 28 1658.59 0.707107 0 0.707107 0 $| -2055468 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1456.49 28 1831.72 0.707108 0 -0.707105 0 $| -2055469 0 object/static/structure/corellia/corl_imprv_gate_sm_s02.iff 0 1456.52 28 1819.79 0.707108 0 -0.707105 0 $| -2055473 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1472.8 28 1786.09 0.92388 0 -0.382683 0 $| -2055474 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1472.35 28 1763.53 -0.382684 0 0.923879 0 $| -2055476 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1461.3 28 1774.62 0.92388 0 -0.382683 0 $| -2055477 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1495.16 28 1740.77 -0.382684 0 0.923879 0 $| -2055478 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1483.97 28 1751.92 -0.382684 0 0.923879 0 $| -2055479 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1506.01 28 1729.12 0.707118 0 -0.707095 0 $| -2055480 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1506.03 28 1713.62 0.707105 0 0.707107 0 $| -2055495 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1893.85 28 1485.53 1 0 0 0 $| -2055525 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1827.99 28 1424.82 0.707108 0 -0.707105 0 $| -2055526 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1828.05 28 1437.72 0.707108 0 -0.707105 0 $| -2055527 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1828.04 28 1412.02 0.707108 0 -0.707105 0 $| -2055528 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1751.81 27.3265 1403.75 1 0 0 0 $| -2055529 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1750.52 26.7288 1430.12 0.707108 0 -0.707105 0 $| -2055530 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1800.4 28 1445.93 1 0 0 0 $| -2055532 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1800.4 28 1435.09 1 0 0 0 $| -2055535 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1934.81 28 1527.75 0.707109 0 0.707105 0 $| -2055536 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1776.27 28 1545.62 0.707108 0 -0.707105 0 $| -2055537 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1776.26 27.5985 1519.92 0.707108 0 -0.707105 0 $| -2055538 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1776.21 27.89 1532.72 0.707108 0 -0.707105 0 $| -2055647 0 object/static/structure/corellia/corl_imprv_gate_sm_s03.iff 0 1634.44 28 1634.12 0.707106 0 0.707107 0 $| -2055649 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1634.43 28 1622.51 0.707108 0 -0.707105 0 $| -2055651 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1634.41 28 1645.97 -0.707107 0 0.707107 0 $| -2055652 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1635 28 1702 0.92388 0 -0.382683 0 $| -2055653 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1651 28 1718 0.92388 0 -0.382683 0 $| -2055654 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1643 28 1710 0.92388 0 -0.382683 0 $| -2055672 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1594.27 28 1714.1 -0.191508 0 0.981491 0 $| -2055673 0 object/static/structure/corellia/corl_imprv_gate_sm_s03.iff 0 1605.26 28 1709.67 0.981491 0 0.191509 0 $| -2055674 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1616.02 28 1705.3 -0.191509 0 0.981491 0 $| -2055675 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1586.61 28 1698.26 0.707108 0 0.707105 0 $| -2055676 0 object/static/structure/corellia/corl_imprv_gate_sm_s03.iff 0 1590 28 1666 0.707107 0 0.707107 0 $| -2055677 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1583.33 28 1629.54 0.707107 0 0.707107 0 $| -2055678 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1586.5 28 1611.32 0.707107 0 0.707107 0 $| -2055679 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1545.1 28 1599.34 1 0 0 0 $| -2055680 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1516.26 28 1622.81 0.707108 0 -0.707105 0 $| -2055681 0 object/static/structure/corellia/corl_imprv_gate_sm_s03.iff 0 1512.71 28 1679.21 -0.707107 0 0.707107 0 $| -2055682 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1522.57 28 1686.18 1 0 0 0 $| -2055683 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1520.92 28 1693.27 0.000000348 0 1 0 $| -2055686 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1574.06 28 1712.65 0.382684 0 0.92388 0 $| -2055691 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1505.94 28 1698.29 0.707124 0 -0.707089 0 $| -2055695 0 object/static/structure/corellia/corl_imprv_arch_lg_s02.iff 0 1553.78 28 1744.65 -0.382683 0 0.92388 0 $| -2055696 0 object/static/structure/corellia/corl_imprv_column_s03.iff 0 1558.45 26.7525 1739.98 0.92388 0 0.382683 0 $| -2055699 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1530.84 27.6665 1756.73 0.923879 0 -0.382685 0 $| -2055700 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1513.82 28 1749.26 -0.382682 0 0.92388 0 $| -2055701 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1489.27 28.3531 1803.3 0.923879 0 -0.382685 0 $| -2055703 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1616.52 28 1727.5 0.382683 0 0.92388 0 $| -2055706 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1509.27 28 1576.32 1 0 0 0 $| -2055707 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1568.33 28 1576.43 1 0 0 0 $| -2055713 0 object/static/structure/corellia/corl_imprv_gate_sm_s02.iff 0 1588.33 28 1576.43 1 0 0 0 $| -2055718 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1608.33 28 1576.43 1 0 0 0 $| -2075368 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1699.1 28 1758.2 0.92388 0 -0.382683 0 $| -2075369 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1692.21 28 1765.11 0.92388 0 -0.382683 0 $| -2075370 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1762.02 28 1682 0.707108 0 -0.707105 0 $| -2075371 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1773.99 28 1681.98 0.707108 0 -0.707105 0 $| -2075372 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1795.98 28 1728.77 0.707109 0 -0.707104 0 $| -2075373 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1795.98 28 1723.77 0.707108 0 -0.707105 0 $| -2075374 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1795.98 28 1733.77 -0.707107 0 0.707107 0 $| -2075375 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1761.8 28 1730.74 -0.707107 0 0.707107 0 $| -2075376 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1761.8 28 1725.74 0.707122 0 -0.707091 0 $| -2075377 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1761.8 28 1735.74 -0.707107 0 0.707107 0 $| -2075379 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1761.83 28 1744.29 0.707108 0 -0.707105 0 $| -2075380 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1761.85 28 1761.38 -0.707107 0 0.707107 0 $| -2075381 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1761.82 28 1752.84 -0.707107 0 0.707107 0 $| -2075382 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1767.66 28 1775.47 0.923879 0 -0.382684 0 $| -2075383 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1761.59 28 1769.45 0.923879 0 -0.382684 0 $| -2075384 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1789.8 28 1780.92 0.707107 0 0.707107 0 $| -2075386 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1781.26 28 1780.95 0.000000032 0 1 0 $| -2075387 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1773.09 28 1780.94 1 0 0 0 $| -2075395 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1902.61 28 1781.15 0.000000032 0 1 0 $| -2075396 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1894.44 28 1781.14 1 0 0 0 $| -2075398 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1886.01 28 1781.17 -0.707107 0 0.707107 0 $| -2075399 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1914.4 28 1769.54 -0.382683 0 0.92388 0 $| -2075400 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1878.72 28 1728.79 0.707107 0 0.707107 0 $| -2075401 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1878.72 28 1733.79 0.707104 0 0.707109 0 $| -2075402 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1878.72 28 1723.79 0.707107 0 0.707107 0 $| -2075405 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1914.61 28 1735.83 0.707107 0 0.707107 0 $| -2075407 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1914.64 28 1744.38 -0.707107 0 0.707107 0 $| -2075408 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1914.65 28 1761.48 -0.707107 0 0.707107 0 $| -2075409 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1914.62 28 1752.93 -0.707107 0 0.707107 0 $| -2075410 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1908.38 28 1775.6 -0.382683 0 0.92388 0 $| -2075411 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1774.23 28 1606.35 0.707108 0 0.707105 0 $| -2075412 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1774.23 28 1616.35 0.707108 0 0.707105 0 $| -2075413 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1774.23 28 1611.35 0.707108 0 0.707105 0 $| -2115412 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 2042.44 28 1741.19 0 0 1 0 $| -2115413 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 2017.58 28 1770.11 0.707108 0 0.707105 0 $| -2115416 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 2037.53 28 1770.14 0.707108 0 0.707105 0 $| -2115422 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 2029.75 28 1851.48 -0.382683 0 0.92388 0 $| -2115567 0 object/building/corellia/filler_historic_32x16_s01.iff 0 1790.56 28 2009.69 1 0 0 0 $| -2115572 0 object/building/corellia/filler_historic_32x16_s02.iff 0 1791.39 27.9994 2047.45 1 0 0 0 $| -2115577 0 object/building/corellia/filler_historic_32x16_s02.iff 0 1890.28 28 2019.33 -0.000000032 0 1 0 $| -2115588 0 object/building/corellia/filler_building_corellia_style_07.iff 0 1723.04 28 1951.86 0.92388 0 -0.382683 0 $| -2115614 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 1911.13 28 1953.89 0.707109 0 -0.707105 0 $| -2115620 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1971.7 28 1940.16 1 0 0 0 $| -2115655 0 object/static/structure/corellia/corl_power_connector.iff 0 1619.32 28 1564.09 0.92388 0 -0.382683 0 $| -2115656 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1603.13 28 1566.88 0.707122 0 0.707091 0 $| -2115657 0 object/static/structure/corellia/corl_power_transformer_s02.iff 0 1622.13 28 1566.88 0.707122 0 0.707091 0 $| -2115658 0 object/static/structure/corellia/corl_power_transformer_s02.iff 0 1598.13 28 1566.88 0.707122 0 0.707091 0 $| -2115659 0 object/static/structure/corellia/corl_power_connector.iff 0 1600.6 28 1569.33 0.92388 0 -0.382683 0 $| -2115660 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1610.13 28 1572.88 1 0 0 0 $| -2115661 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1617.13 28 1572.88 1 0 0 0 $| -2115662 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1603.13 28 1572.88 1 0 0 0 $| -2115663 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1610.13 28 1560.88 0 0 1 0 $| -2115664 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1617.13 28 1560.88 0 0 1 0 $| -2115665 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1603.13 28 1560.88 0 0 1 0 $| -2115666 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1610.13 28 1566.88 0.707122 0 0.707091 0 $| -2115667 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1617.13 28 1566.88 0.707122 0 0.707091 0 $| -2115671 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1669.69 28 1585.9 0.00000328 0 1 0 $| -2115672 0 object/static/structure/corellia/corl_power_transformer_s02.iff 0 1669.69 28 1566.9 0.00000328 0 1 0 $| -2115673 0 object/static/structure/corellia/corl_power_transformer_s02.iff 0 1669.69 28 1590.9 0.00000328 0 1 0 $| -2115675 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1682.69 28 1578.9 0.707108 0 0.707105 0 $| -2115676 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1675.69 28 1571.9 0.707108 0 0.707105 0 $| -2115677 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1675.69 28 1585.9 0.707108 0 0.707105 0 $| -2115678 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1656.69 28 1578.9 0.707108 0 -0.707105 0 $| -2115679 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1663.69 28 1571.9 0.707108 0 -0.707105 0 $| -2115680 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1663.69 28 1585.9 0.707108 0 -0.707105 0 $| -2115681 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1669.69 28 1578.9 0.00000328 0 1 0 $| -2115682 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1669.69 28 1571.9 0.00000328 0 1 0 $| -2115690 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1591.74 28 1568 0.707108 0 -0.707105 0 $| -2115691 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1624.9 28 1561.07 0.707105 0 0.707108 0 $| -2115692 0 object/static/structure/corellia/corl_imprv_gate_sm_s02.iff 0 1591.71 28 1556.11 0.707108 0 -0.707105 0 $| -2115693 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1608.24 28 1552.67 1 0 0 0 $| -2115694 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1624.83 28 1552.71 1 0 0 0 $| -2115713 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1675.69 28 1578.9 0.000003 0 1 0 $| -2115714 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1663.69 28 1578.9 0.000003 0 1 0 $| -2115723 0 object/static/structure/corellia/corl_power_arial_prime.iff 0 1673.06 28 1582.94 1 0 0 0 $| -2115724 0 object/static/structure/corellia/corl_power_arial_thin.iff 0 1667.08 28 1575.05 1 0 0 0 $| -2115732 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1653.81 28 1578.57 0.707108 0 -0.707105 0 $| -2115733 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1685.81 28 1578.57 0.707108 0 -0.707105 0 $| -2115734 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1669.81 28 1562.57 1 0 0 0 $| -2115736 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1659.87 28 1599.36 0.941851 0 -0.33603 0 $| -2115737 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1679.69 28 1599.2 -0.336031 0 0.941851 0 $| -2115738 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1669.81 28 1604.57 1 0 0 0 $| -2115739 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1685.81 28 1562.57 1 0 0 0 $| -2115740 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1653.81 28 1562.57 1 0 0 0 $| -2115741 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1653.81 28 1594.57 0.707108 0 -0.707105 0 $| -2115742 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1685.81 28 1594.57 -0.707107 0 0.707107 0 $| -2115747 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1891.92 28.2757 2038.22 0.707108 0 -0.707105 0 $| -2115750 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1889.9 28 1997.68 -0.707107 0 0.707107 0 $| -2115751 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1898.22 28 1981.48 -7.34E-08 0 1 0 $| -2115752 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1889.89 28 1981.37 1 0 0 0 $| -2115753 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1789.24 28.0098 2029.37 0.707117 0 -0.707096 0 $| -2115754 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1775.41 28 1996.66 -0.00000184 0 1 0 $| -2115758 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1931.78 28 1937.06 1 0 0 0 $| -2115759 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1943.42 28 1937.03 1 0 0 0 $| -2115760 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1919.8 28 1937.06 1 0 0 0 $| -2115762 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1994 28 1876 -0.382684 0 0.923879 0 $| -2115763 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1973 28 1889 1 0 0 0 $| -2115764 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1985 28 1885 0.92388 0 0.382683 0 $| -2115794 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1933.21 28 1815.21 0.92388 0 0.382683 0 $| -2115796 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1941.7 28 1806.72 0.92388 0 0.382683 0 $| -2115798 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1924.85 28 1823.25 0.929516 0 0.368783 0 $| -2115802 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1854 28 1848 1 0 0 0 $| -2115804 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1862 28 1832 0.707108 0 -0.707105 0 $| -2115806 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1862 28 1808 0.707108 0 -0.707105 0 $| -2115809 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1838 28 1848 1 0 0 0 $| -2115810 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1814 28 1832 -0.707107 0 0.707107 0 $| -2115815 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1822 28 1848 1 0 0 0 $| -2115816 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1814 28 1808 0.707108 0 -0.707105 0 $| -2115830 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1814 28 1800 0.707107 0 0.707107 0 $| -2115831 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1862 28 1800 0.707107 0 0.707107 0 $| -2115832 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1862 28 1848 0.707107 0 0.707107 0 $| -2115833 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1814 28 1848 0.707107 0 0.707107 0 $| -2115908 0 object/static/structure/corellia/corl_fountain_brazier_round_s01.iff 0 1839.19 28.5955 2021.34 1 0 0 0 $| -2115955 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1723 28 1997 1 0 0 0 $| -2115956 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1691 28 1997 1 0 0 0 $| -2115957 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1659 28 1997 1 0 0 0 $| -2115958 0 object/static/structure/corellia/corl_imprv_gate_sm_s02.iff 0 1742 28 1997 1 0 0 0 $| -2115965 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1627 28 1997 1 0 0 0 $| -2115966 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1592 28 1986 0.92388 0 -0.382683 0 $| -2115970 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1607 28 1997 1 0 0 0 $| -2115973 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1529.99 28 1926.31 0.382684 0 0.923879 0 $| -2115974 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1516.55 28 1912.87 0.382684 0 0.923879 0 $| -2115975 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1543.42 28 1939.74 0.382684 0 0.923879 0 $| -2115983 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1484.61 28 1903.79 0.92388 0 -0.382683 0 $| -2115984 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1477.54 28 1896.72 0.92388 0 -0.382683 0 $| -2115985 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1491.68 28 1910.86 0.92388 0 -0.382683 0 $| -2115986 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1481.32 28 1888.52 -0.382683 0 0.92388 0 $| -2115987 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1499.74 28 1907.15 -0.382683 0 0.92388 0 $| -2115988 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1505.35 28 1901.61 0.92388 0 -0.382683 0 $| -2115990 0 object/static/structure/corellia/corl_fountain_rectangle_s01.iff 0 1785 28 1957 -0.382684 0 0.923879 0 $| -2115991 0 object/static/structure/corellia/corl_fountain_rectangle_s01.iff 0 1780 28 1945 1 0 0 0 $| -2115992 0 object/static/structure/corellia/corl_fountain_rectangle_s01.iff 0 1785 28 1933 0.382684 0 0.923879 0 $| -2115998 0 object/static/structure/corellia/corl_fountain_brazier_square_s01.iff 0 1791 28 1945 1 0 0 0 $| -2116066 0 object/static/structure/corellia/corl_fountain_circle_s01.iff 0 2033 28 1704 1 0 0 0 $| -2116087 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 2009 33.7048 1717 -0.500001 -0.499999 -0.499999 0.500001 $| -2116095 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 2009 33.7048 1691 -0.500001 -0.499999 -0.499999 0.500001 $| -2116106 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 2035.75 28 1845.48 -0.382683 0 0.92388 0 $| -2116107 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 2035.75 28 1837.48 0.707107 0 0.707107 0 $| -2116109 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1896.75 28 1307.65 0.382684 0 0.923879 0 $| -2116110 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1908.5 28 1319.39 0.92388 0 -0.382682 0 $| -2116111 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1920.01 28 1330.66 0.181687 0 0.983356 0 $| -2116136 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1828.96 28 1349.18 0.707108 0 -0.707105 0 $| -2116138 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1828.96 28 1339.18 0.707108 0 -0.707105 0 $| -2116139 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1919.89 28 1338.72 0.707119 0 -0.707094 0 $| -2116140 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1919.8 28 1348.95 0.707118 0 -0.707095 0 $| -2116141 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1919.84 28 1359.12 0.707124 0 -0.707089 0 $| -2195355 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1863.94 25.3331 1664.03 1 0 0 0 $| -2195356 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1855.94 25.3331 1672.03 0.707111 0 -0.707102 0 $| -2195357 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1871.94 25.3331 1672.03 0.707107 0 0.707107 0 $| -2195358 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1863.94 25.3331 1680.03 0.000000032 0 1 0 $| -2195381 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1871.94 28 1664.03 1 0 0 0 $| -2195382 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1855.94 28 1664.03 1 0 0 0 $| -2195383 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1871.94 28 1680.03 1 0 0 0 $| -2195384 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1855.94 28 1680.03 1 0 0 0 $| -2195395 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1816.17 25.3331 1680.08 0 0 1 0 $| -2195396 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1808.17 28 1680.08 1 0 0 0 $| -2195397 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1824.17 28 1664.08 1 0 0 0 $| -2195398 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1808.17 25.3331 1672.08 0.707128 0 -0.707085 0 $| -2195399 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1808.17 28 1664.08 1 0 0 0 $| -2195400 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1816.17 25.3331 1664.08 1 0 0 0 $| -2195401 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1824.17 25.3331 1672.08 0.707107 0 0.707107 0 $| -2195402 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1824.17 28 1680.08 1 0 0 0 $| -2195427 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1871.88 25.65 1400.12 0 0 1 0 $| -2195428 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1863.88 28 1400.12 1 0 0 0 $| -2195429 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1879.88 28 1384.12 1 0 0 0 $| -2195430 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1863.88 25.65 1392.12 0.70713 0 -0.707083 0 $| -2195431 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1863.88 28 1384.12 1 0 0 0 $| -2195432 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1871.88 25.65 1384.12 1 0 0 0 $| -2195433 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1879.88 25.65 1392.12 0.707107 0 0.707107 0 $| -2195434 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1879.88 28 1400.12 1 0 0 0 $| -2195435 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1848.1 25.65 1336.29 0 0 1 0 $| -2195436 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1840.1 28 1336.29 1 0 0 0 $| -2195437 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1856.1 28 1320.29 1 0 0 0 $| -2195438 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1840.1 25.65 1328.29 0.707126 0 -0.707087 0 $| -2195439 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1840.1 28 1320.29 1 0 0 0 $| -2195440 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1848.1 25.65 1320.29 1 0 0 0 $| -2195441 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1856.1 25.65 1328.29 0.707107 0 0.707107 0 $| -2195442 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1856.1 28 1336.29 1 0 0 0 $| -2195444 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1888.16 28 1336.15 1 0 0 0 $| -2195445 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1904.16 28 1320.15 1 0 0 0 $| -2195446 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1888.16 25.65 1328.15 0.707128 0 -0.707085 0 $| -2195447 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1888.16 28 1320.15 1 0 0 0 $| -2195448 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1896.16 25.65 1320.15 1 0 0 0 $| -2195449 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1904.16 25.65 1328.15 0.707107 0 0.707107 0 $| -2195450 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1904.16 28 1336.15 1 0 0 0 $| -2195452 0 object/static/structure/corellia/corl_fountain_statue_contemplate_s01.iff 0 1539.5 28 1470.5 1 0 0 0 $| -2195453 0 object/static/structure/general/bench_generic_style_1.iff 0 1565.89 28 1487.04 0.707108 0 -0.707105 0 $| -2195454 0 object/static/structure/general/bench_generic_style_1.iff 0 1565.91 28 1491.03 -0.707107 0 0.707107 0 $| -2195455 0 object/static/structure/general/bench_generic_style_1.iff 0 1565.77 28 1451.03 -0.707107 0 0.707107 0 $| -2195456 0 object/static/structure/general/bench_generic_style_1.iff 0 1565.79 28 1455.03 -0.707107 0 0.707107 0 $| -2195458 0 object/tangible/terminal/terminal_mission.iff 0 1559 28.9803 1478 0.92388 0 -0.382683 0 $| -2195459 0 object/tangible/terminal/terminal_mission.iff 0 1559 28.9803 1464 -0.382684 0 0.923879 0 $| -2195460 0 object/static/structure/general/bench_generic_style_1.iff 0 1536.73 28 1468.99 -0.707107 0 0.707107 0 $| -2195461 0 object/static/structure/general/bench_generic_style_1.iff 0 1536.74 28 1472.98 -0.707107 0 0.707107 0 $| -2195462 0 object/static/structure/general/bench_generic_style_1.iff 0 1542.25 28 1469.07 0.707107 0 0.707107 0 $| -2195463 0 object/static/structure/general/bench_generic_style_1.iff 0 1542.26 28 1473.07 0.707107 0 0.707107 0 $| -2195464 0 object/static/structure/corellia/corl_fountain_rectangle_s01.iff 0 1469.67 28 1531.58 1 0 0 0 $| -2195471 0 object/static/structure/general/bench_generic_style_1.iff 0 1461.7 28 1533.66 0.707107 0 0.707107 0 $| -2195472 0 object/static/structure/general/bench_generic_style_1.iff 0 1461.68 28 1529.66 0.707107 0 0.707107 0 $| -2195473 0 object/static/structure/general/bench_generic_style_1.iff 0 1477.73 28 1529.65 -0.707107 0 0.707107 0 $| -2195474 0 object/static/structure/general/bench_generic_style_1.iff 0 1477.74 28 1533.64 -0.707107 0 0.707107 0 $| -2195475 0 object/static/structure/general/bench_generic_style_1.iff 0 1467.68 28 1522.4 1 0 0 0 $| -2195476 0 object/static/structure/general/bench_generic_style_1.iff 0 1471.67 28 1522.38 1 0 0 0 $| -2195477 0 object/static/structure/general/bench_generic_style_1.iff 0 1471.68 28 1540.59 0.000000348 0 1 0 $| -2195478 0 object/static/structure/general/bench_generic_style_1.iff 0 1467.69 28 1540.61 0.000000348 0 1 0 $| -2195480 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1558.34 28.4782 1537.02 1 0 0 0 $| -2195481 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1616.1 28 1537.63 1 0 0 0 $| -2195482 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1591.01 28 1567.02 0.707108 0 -0.707105 0 $| -2195483 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1635.02 28 1524.98 0.707108 0 -0.707105 0 $| -2195484 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1609.42 28 1500.9 0.934124 0 0.356949 0 $| -2195485 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1609.55 28 1440.95 0.382683 0 0.92388 0 $| -2195490 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1713.04 28 1419.27 1 0 0 0 $| -2195493 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1619.93 28 1414.25 0.92388 0 -0.382681 0 $| -2195494 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1666.7 28 1385.75 0.382683 0 0.92388 0 $| -2195495 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1737.06 28 1389.29 0.000000032 0 1 0 $| -2195497 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1852.22 28 1306.4 0.000000032 0 1 0 $| -2195498 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1896.77 28 1306.35 0.000000032 0 1 0 $| -2215353 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 2013.53 29.4336 1523.36 0.924759 0 -0.380554 0 $| -2215354 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1971.1 29.4369 1523.55 -0.384809 0 0.922996 0 $| -2215355 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1971.3 29.4369 1565.98 0.924757 0 -0.380557 0 $| -2215356 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 2013.72 29.4369 1565.78 -0.384809 0 0.922996 0 $| -2215369 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1867.03 28 1515.27 1 0 0 0 $| -2215370 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1798.73 28 1510.31 0.92388 0 -0.382683 0 $| -2215371 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1783.27 28 1579 0.707107 0 0.707107 0 $| -2215372 0 object/tangible/terminal/terminal_mission.iff 0 1820.77 28 1741.4 0.707109 0 0.707105 0 $| -2215373 0 object/tangible/terminal/terminal_mission.iff 0 1820.78 28 1766.84 0.70712 0 0.707093 0 $| -2215374 0 object/tangible/terminal/terminal_mission.iff 0 1855.31 28 1738.54 -0.707103 0 0.70711 0 $| -2215375 0 object/tangible/terminal/terminal_mission.iff 0 1855.01 28 1769.53 -0.707105 0 0.707108 0 $| -2215376 0 object/tangible/terminal/terminal_mission.iff 0 1853.06 28 1799.68 0.00000178 0 1 0 $| -2215377 0 object/tangible/terminal/terminal_mission.iff 0 1822.97 28 1799.66 0.00000178 0 1 0 $| -2215379 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1977.65 28 1672.16 -0.000000032 0 1 0 $| -2215380 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1937.99 28 1672.65 -0.000000032 0 1 0 $| -2215381 0 object/static/structure/general/streetlamp_large_style_01.iff 0 2013.31 28 1681.08 0.707107 0 0.707107 0 $| -2215382 0 object/static/structure/general/streetlamp_large_style_01.iff 0 2013.23 28 1727.04 0.707108 0 0.707105 0 $| -2365352 0 object/static/structure/general/bench_generic_style_1.iff 0 2033 28 1693 1 0 0 0 $| -2365355 0 object/static/structure/general/bench_generic_style_1.iff 0 2013 28 1720 0.707107 0 0.707107 0 $| -2365356 0 object/static/structure/general/bench_generic_style_1.iff 0 2013 28 1714 0.707107 0 0.707107 0 $| -2365357 0 object/static/structure/general/bench_generic_style_1.iff 0 2013 28 1694 0.707108 0 0.707105 0 $| -2365358 0 object/static/structure/general/bench_generic_style_1.iff 0 2013 28 1688 0.707108 0 0.707105 0 $| -2365359 0 object/static/structure/general/bench_generic_style_1.iff 0 2023 28 1704 0.707108 0 0.707105 0 $| -2365360 0 object/static/structure/general/bench_generic_style_1.iff 0 2043 28 1704 0.707108 0 -0.707105 0 $| -2365361 0 object/static/structure/general/bench_generic_style_1.iff 0 2033 28 1715 0.000000032 0 1 0 $| -2365366 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1975.43 28 1758.05 0.000000032 0 1 0 $| -2365367 0 object/static/structure/general/streetlamp_large_style_01.iff 0 2015.18 28 1799.07 0.707108 0 -0.707105 0 $| -2365368 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1957.65 28 1867.36 0.382683 0 0.92388 0 $| -2365369 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1878.22 28 1867.14 -0.382683 0 0.92388 0 $| -2365370 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1813.89 28 1798.99 -0.000000032 0 1 0 $| -2365371 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1862.02 28 1799 -0.000000032 0 1 0 $| -2365372 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1773 28 1781.93 1 0 0 0 $| -2365373 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1902.55 28 1782.05 1 0 0 0 $| -2365378 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1876.23 28 1688.61 -0.382686 0 0.923878 0 $| -2365379 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1797.46 28 1685.73 0.382683 0 0.92388 0 $| -2365391 0 object/building/corellia/guild_theater_corellia_s01.iff 0 1839.33 28 1995.87 -0.000000032 0 1 0 $| -2365392 2365391 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| -2365393 2365391 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| -2365394 2365391 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| -2365395 2365391 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| -2365396 2365391 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| -2365397 2365391 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| -2365398 2365391 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| -2365399 2365391 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| -2365400 2365391 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| -2365401 2365391 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| -2365402 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1867.4 28.5911 1921.12 0.707108 0 0.707105 0 $| -2365403 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1865.46 28.5911 1919.07 0.000000032 0 1 0 $| -2365404 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1813.34 28.5745 1919.05 0.00000184 0 1 0 $| -2365405 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1811.29 28.5745 1920.99 0.707108 0 -0.707105 0 $| -2365406 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1811.19 28.5255 1965 0.707117 0 -0.707096 0 $| -2365407 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1811.11 28.5453 2005.04 0.707117 0 -0.707096 0 $| -2365408 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1867.41 28.5582 2004.91 0.707103 0 0.70711 0 $| -2365409 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1867.38 28.578 1964.97 0.707103 0 0.70711 0 $| -2365410 0 object/static/structure/general/bench_generic_style_1.iff 0 1810.72 28.5951 1944.95 0.707108 0 -0.707105 0 $| -2365411 0 object/static/structure/general/bench_generic_style_1.iff 0 1810.76 28.5951 1950.94 -0.707107 0 0.707107 0 $| -2365413 0 object/static/structure/general/bench_generic_style_1.iff 0 1810.76 28.5951 1938.9 -0.707107 0 0.707107 0 $| -2365415 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1814.05 28 1849.06 1 0 0 0 $| -2365416 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1862.1 28 1848.85 1 0 0 0 $| -2365417 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1751.07 28 1823.92 0.707108 0 -0.707105 0 $| -2365418 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1659.73 28 1748.33 0.92388 0 -0.382683 0 $| -2365421 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1759.58 28 1909.53 0.92388 0 -0.382684 0 $| -2365423 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1706.26 28 1887.04 0.707108 0 -0.707105 0 $| -2365424 0 object/static/structure/general/bench_generic_style_1.iff 0 1668.49 28 1936.68 -0.707107 0 0.707107 0 $| -2365425 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1666.92 28 1939.15 0.000000348 0 1 0 $| -2365439 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1557.15 28 1878.96 0.92388 0 -0.382683 0 $| -2365440 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1492.98 28 1886.97 0.92388 0 0.382683 0 $| -2365442 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1536.3 28 1921.57 0.923879 0 -0.382684 0 $| -2365443 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1499.22 28 1817.95 0.996192 0 0.0871895 0 $| -2365465 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1508.27 28 1770.23 1 0 0 0 $| -2365466 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1523.15 28 1702.23 0.707107 0 0.707107 0 $| -2365468 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1657.95 28 1705.24 0.000000348 0 1 0 $| -2365469 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1637.06 28 1642.97 0.707107 0 0.707107 0 $| -2365470 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1611.05 28 1591 -0.707107 0 0.707107 0 $| -2365471 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1550.02 28 1579.42 0.92388 0 0.382683 0 $| -2365472 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1499 28 1591.04 0.707107 0 0.707107 0 $| -2365473 0 object/static/structure/general/tankfarm_s01.iff 0 1550.29 28.9172 1625.17 0.000000032 0 1 0 $| -2365474 0 object/static/structure/general/tankfarm_s01.iff 0 1552.86 28.3659 1620.85 0.707109 0 -0.707105 0 $| -2365475 0 object/static/installation/mockup_power_generator_photo_bio_style_1.iff 0 1552.46 29.2789 1667.91 0.707109 0 -0.707104 0 $| -2365476 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1579.01 28 1673.02 0.707108 0 -0.707105 0 $| -2365477 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1525 28 1682.88 0.000000032 0 1 0 $| -2365478 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1505.15 28 1643.84 0.707107 0 -0.707106 0 $| -2365479 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1505.05 28 1715.07 0.707108 0 -0.707105 0 $| -2365480 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1469.86 28 1672.87 0.707108 0 -0.707105 0 $| -2365481 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1454.96 28 1641.11 0.707108 0 -0.707105 0 $| -2365482 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1470.78 28 1579.7 0.707107 0 -0.707106 0 $| -2365492 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1456.33 25.7018 1534.18 0.707108 0 -0.707105 0 $| -2365493 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1472.97 25.7018 1517.56 -0.00000184 0 1 0 $| -2365497 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1498.59 28 1555.21 -0.523366 0 0.852108 0 $| -2365498 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1497.48 28 1552.5 0.990901 0 0.13459 0 $| -2365499 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1501.26 28 1555.09 0.774419 0 -0.632673 0 $| -2365500 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1498.32 28 1557.62 0.0142041 0 0.999899 0 $| -2365501 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1511.36 28 1553.09 0.924909 0 0.380188 0 $| -2365502 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1511.56 28 1556.01 0.0257937 0 0.999667 0 $| -2365503 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1508.79 28 1552.36 0.7485 0 0.663135 0 $| -2365504 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1512.38 28 1550.88 0.984726 0 -0.17411 0 $| -2365505 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1493.15 28 1547.08 1 0 0 0 $| -2365506 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1491.24 28 1549.3 0.403919 0 0.914795 0 $| -2365507 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1491.06 28 1545.18 0.917121 0 0.398609 0 $| -2365508 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1495.22 28 1545.02 0.844588 0 -0.535417 0 $| -2365509 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1495.06 28 1548.99 -0.371658 0 0.92837 0 $| -2365510 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1505.03 28 1544.87 0.92388 0 -0.382683 0 $| -2365511 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1502.11 28 1545.09 0.723244 0 0.690592 0 $| -2365512 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1504.9 28 1542.05 0.99985 0 0.0172997 0 $| -2365513 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1507.96 28 1544.88 -0.575402 0 0.817871 0 $| -2365514 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1505.03 28 1547.57 0.0119048 0 0.999929 0 $| -2365515 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1504.27 28 1562.83 -0.220474 0 0.975393 0 $| -2365516 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1505.04 28 1560.01 0.981338 0 -0.19229 0 $| -2365517 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1506.46 28 1564.37 -0.528897 0 0.848686 0 $| -2365518 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1502.59 28 1564.58 0.336032 0 0.94185 0 $| -2365528 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1743.58 28 1523.5 0.92388 0 -0.382683 0 $| -2365529 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1737.5 28 1592.55 0.92388 0 0.382681 0 $| -2365549 0 object/static/structure/general/streetlamp_large_style_01.iff 0 2043.77 28 1809.09 0.707108 0 0.707105 0 $| -2365554 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1940.38 28 1952.38 0.92388 0 -0.382683 0 $| -2365555 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1756.31 28 1963.31 0.92388 0 -0.382683 0 $| -2365556 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1753.4 28 1963.53 0.723242 0 0.690595 0 $| -2365557 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1756.19 28 1960.49 0.99985 0 0.0173 0 $| -2365558 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1759.24 28 1963.32 -0.575402 0 0.817871 0 $| -2365559 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1756.32 28 1966.02 0.011905 0 0.999929 0 $| -2365560 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1767.56 28 1972.53 0.998988 0 -0.0449854 0 $| -2365561 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1765.46 28 1974.57 0.444662 0 0.895698 0 $| -2365562 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1766.46 28 1970.1 0.958244 0 0.285952 0 $| -2365563 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1769.9 28 1971.89 0.819647 0 -0.572869 0 $| -2365564 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1765.59 28 1956.9 0.761613 0 0.648032 0 $| -2365565 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1767.95 28 1957.49 0.296281 0 0.955101 0 $| -2365566 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1770.78 28 1956.74 0.75405 0 -0.656817 0 $| -2365567 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1767.72 28 1960.15 -0.0341967 0 0.999415 0 $| -2365568 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1774.07 28 1984.42 -0.140331 0 0.990105 0 $| -2365569 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1766.56 28 1942.81 0.541233 0 0.840873 0 $| -2365570 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1769.37 28 1943.63 -0.550616 0 0.834758 0 $| -2365571 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1765.69 28 1945.49 0.161196 0 0.986922 0 $| -2365572 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1763.83 28 1941.77 0.907336 0 0.420405 0 $| -2365573 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1767.51 28 1940.27 0.981794 0 -0.189948 0 $| -2365574 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1773.58 28 1982.04 -0.64864 0 0.761095 0 $| -2365575 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1771.7 28 1979.81 0.958244 0 0.285953 0 $| -2365576 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1776.09 28 1981.11 0.862807 0 -0.505533 0 $| -2365577 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1757.8 28 1950.49 -0.5019 0 0.864926 0 $| -2365578 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1755.8 28 1949.11 0.886995 0 -0.46178 0 $| -2365579 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1752.89 28 1948.82 0.780706 0 0.624898 0 $| -2365580 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1756.95 28 1946.7 0.989506 0 -0.144492 0 $| -2365581 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1871.18 28.6017 1939.87 0.7566 0 -0.653878 0 $| -2365582 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1868.71 28.6017 1938.3 0.903767 0 0.428025 0 $| -2365583 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1872.77 28.6017 1937.53 0.954535 0 -0.298097 0 $| -2365584 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1873.53 28.6017 1941.63 -0.288917 0 0.957354 0 $| -2365585 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1869.57 28.6017 1942.04 0.325845 0 0.945423 0 $| -2365586 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1876.18 28 1929.03 0.927395 0 0.374084 0 $| -2365587 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1880.73 28 1929.5 0.906198 0 -0.422854 0 $| -2365588 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1878.45 28 1930.88 0.716797 0 -0.697282 0 $| -2365589 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1879.36 28 1933.13 -0.232066 0 0.9727 0 $| -2365590 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1869.01 28.6321 1953.29 0.329523 0 0.944147 0 $| -2365591 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1870.68 28.6321 1951.52 -0.2272 0 0.973848 0 $| -2365592 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1872.88 28.6321 1953.02 -0.534743 0 0.845015 0 $| -2365593 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1871.41 28.6321 1948.69 0.982642 0 -0.18551 0 $| -2365594 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1849.15 28 2039.58 0.613748 0 0.789502 0 $| -2365595 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1851.54 28 2039.18 0.0956519 0 0.995415 0 $| -2365596 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1852.39 28 2041.71 -0.236929 0 0.971527 0 $| -2365597 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1853.84 28 2037.36 0.871967 0 -0.489565 0 $| -2365598 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1861.56 28.6176 2028.44 0.325845 0 0.945423 0 $| -2365599 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1865.52 28.6176 2028.03 -0.288917 0 0.957354 0 $| -2365600 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1863.17 28.6176 2026.28 0.7566 0 -0.653878 0 $| -2365601 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1860.71 28.6176 2024.71 0.903767 0 0.428025 0 $| -2365602 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1864.76 28.6176 2023.94 0.954535 0 -0.298098 0 $| -2365603 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1814.08 28.636 2028.33 0.325845 0 0.945423 0 $| -2365604 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1818.03 28.636 2027.91 -0.288917 0 0.957354 0 $| -2365605 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1815.69 28.636 2026.16 0.7566 0 -0.653878 0 $| -2365606 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1813.22 28.636 2024.59 0.903767 0 0.428025 0 $| -2365607 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1817.27 28.636 2023.82 0.954535 0 -0.298098 0 $| -3095428 0 object/tangible/terminal/terminal_mission_bounty.iff 0 1824.93 28 1672.48 0.700285 0 0.713864 0 $| -3095430 0 object/tangible/terminal/terminal_mission_bounty.iff 0 1855.19 28 1672.28 -0.703845 0 0.710353 0 $| -3375491 0 object/building/corellia/filler_building_corellia_style_02.iff 0 1987.62 28 1306.8 1 0 0 0 $| -3555361 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1620 28 1917 0.923879 0 0.382684 0 $| -3555363 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1651 28 1762 0.382683 0 0.92388 0 $| -3555365 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1628 28 1739 0.382683 0 0.92388 0 $| -3555371 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1660 28 1877 -0.382684 0 0.923879 0 $| -3555373 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1690 28 1847 -0.382684 0 0.923879 0 $| -3555374 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1707 28 1830 -0.382684 0 0.923879 0 $| -3555375 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1679 28 1790 0.92388 0 -0.382683 0 $| -3555376 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1707 28 1818 0.92388 0 -0.382683 0 $| -3555377 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1665 28 1776 0.382683 0 0.92388 0 $| -3555378 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1696 28 1807 0.92388 0 -0.382683 0 $| -3555379 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1675 28 1862 -0.382683 0 0.92388 0 $| -3555380 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1633.98 28 1903.02 -0.382683 0 0.92388 0 $| -3555381 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1643 28 1894 0.923879 0 0.382684 0 $| -3555382 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1608.53 28 1928.49 0.92388 0 -0.382683 0 $| -3555384 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1605 28 1739 -0.382684 0 0.923879 0 $| -3555385 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1574 28 1894 0.92388 0 -0.382683 0 $| -3555386 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1582 28 1762 -0.382684 0 0.923879 0 $| -3555387 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1590 28 1754 0.92388 0 0.382683 0 $| -3555388 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1550 28 1794 0.92388 0 0.382683 0 $| -3555389 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1529 28 1849 0.382683 0 0.92388 0 $| -3555390 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1560 28 1880 0.92388 0 -0.382683 0 $| -3555391 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1518 28 1838 0.382683 0 0.92388 0 $| -3555392 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1546 28 1866 0.382683 0 0.92388 0 $| -3555393 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1597 28 1917 0.92388 0 -0.382683 0 $| -3555394 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1518 28 1826 0.923879 0 0.382684 0 $| -3555395 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1535 28 1809 0.923879 0 0.382684 0 $| -3555398 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1565 28 1779 0.923879 0 0.382684 0 $| -3555399 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1511.99 28 1832.02 0.92388 0 -0.382683 0 $| -3555400 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1712.98 28 1824.02 0.92388 0 -0.382683 0 $| -3575352 0 object/static/structure/general/bench_generic_style_1.iff 0 1615.63 28 1854.39 -0.000000032 0 1 0 $| -3575353 0 object/static/structure/general/bench_generic_style_1.iff 0 1593.13 28 1847 0.382683 0 0.92388 0 $| -3575354 0 object/static/structure/general/bench_generic_style_1.iff 0 1586.05 28 1827.95 0.707107 0 0.707106 0 $| -3575355 0 object/static/structure/general/bench_generic_style_1.iff 0 1589.14 28 1816.01 0.833272 0 0.552863 0 $| -3575356 0 object/static/structure/general/bench_generic_style_1.iff 0 1617.53 28 1801.94 1 0 0 0 $| -3575357 0 object/static/structure/general/bench_generic_style_1.iff 0 1604.89 28 1801.93 1 0 0 0 $| -3575358 0 object/static/structure/general/bench_generic_style_1.iff 0 1637.99 28 1834.81 0.707107 0 -0.707106 0 $| -3575359 0 object/static/structure/general/bench_generic_style_1.iff 0 1638 28 1822.17 0.707107 0 -0.707106 0 $| -3575360 0 object/static/structure/general/bench_generic_style_1.iff 0 1632.31 28 1848.25 -0.382684 0 0.923879 0 $| -3575361 0 object/static/structure/general/bench_generic_style_1.iff 0 1633.67 28 1809.95 0.92388 0 -0.382683 0 $| -3575362 0 object/static/structure/general/bench_generic_style_1.iff 0 1641.43 28 1862.25 0.707107 0 -0.707106 0 $| -3575363 0 object/static/structure/general/bench_generic_style_1.iff 0 1633.76 28 1862.62 0.707107 0 0.707107 0 $| -3575365 0 object/static/structure/corellia/corl_fountain_statue_contemplate_s01.iff 0 1545.83 28 1836.2 1 0 0 0 $| -3575366 0 object/static/structure/general/bench_generic_style_1.iff 0 1554.2 28 1833.68 0.707107 0 -0.707106 0 $| -3575367 0 object/static/structure/general/bench_generic_style_1.iff 0 1554.14 28 1838.94 0.707111 0 -0.707102 0 $| -3575369 0 object/static/structure/general/bench_generic_style_1.iff 0 1681.05 28 1823.76 0.95813 0 -0.286334 0 $| -3575370 0 object/static/structure/general/bench_generic_style_1.iff 0 1681.58 28 1832.18 -0.412683 0 0.910875 0 $| -3575371 0 object/static/structure/general/bench_generic_style_1.iff 0 1674.21 28 1828.52 0.707107 0 0.707107 0 $| -3575372 0 object/static/structure/general/bench_generic_style_1.iff 0 1631.96 28 1763.02 0.999808 0 0.0196003 0 $| -3575373 0 object/static/structure/general/bench_generic_style_1.iff 0 1633.42 28 1772.28 -0.343272 0 0.939236 0 $| -3575374 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1639.46 28 1750.48 0.382682 0 0.92388 0 $| -3575375 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1678.54 28 1858.48 -0.382684 0 0.923879 0 $| -3575376 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1671.43 28 1865.47 -0.382684 0 0.923879 0 $| -3575377 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1637.52 28 1899.52 -0.382684 0 0.923879 0 $| -3575379 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1585.45 28 1905.52 0.382683 0 0.92388 0 $| -3575380 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1546.57 28 1797.51 0.923879 0 0.382684 0 $| -3575381 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1553.46 28 1790.52 0.923879 0 0.382684 0 $| -3575382 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1593.45 28 1750.52 0.923879 0 0.382684 0 $| -3575383 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1615.94 28 1855.33 -0.0230952 0 0.999733 0 $| -3575384 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1610.57 28 1800.97 0.999924 0 0.0123006 0 $| -3575385 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1634.7 28 1767.62 -0.691163 0 0.722699 0 $| -3575386 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1550.6 28 1842.99 -0.00809712 0 0.999967 0 $| -3575387 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1637.98 28 1866.71 0.00849535 0 0.999964 0 $| -3625774 0 object/static/structure/corellia/corl_tent_med.iff 0 1998.68 28 1475.68 1 0 0 0 $| -3625805 0 object/tangible/furniture/modern/bar_piece_curve_s2.iff 0 1999.32 28 1477.23 1 0 0 0 $| -3625806 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_sordaan_hunting_trophy.iff 0 1995.55 28.3162 1480.08 0.924909 0 -0.380188 0 $| -3625807 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_bantha_kash.iff 0 2003.32 31.9319 1470.89 0.997551 0 0.0699428 0 $| -3625808 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_bolotaur.iff 0 1995.01 30.2888 1471.07 0.9998 0 -0.0199987 0 $| -3625809 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_katarn.iff 0 1998.51 29.1832 1477.71 -0.662042 0.661515 -0.249195 -0.248996 $| -3625810 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_kkorrwrot.iff 0 1994.14 32.1274 1471.25 0.999388 0 -0.0349929 0 $| -3625813 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_minstyngar.iff 0 1999.96 29.1311 1477.71 -0.477403 0.477015 0.521592 0.522 $| -3626014 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_mouf.iff 0 2004.85 30.3105 1470.68 0.998201 0 0.059964 0 $| -3626015 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_uller.iff 0 2003.01 29.6799 1470.91 0.998988 0 0.0449848 0 $| -3626016 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_walluga.iff 0 1992.7 30.5978 1471.1 0.99955 0 -0.0299955 0 $| -3626017 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_webweaver.iff 0 1997.62 29.1593 1476.47 0.710914 -0.703279 0 0 $| -3695444 0 object/tangible/sign/all_sign_city_s02.iff 0 1750.88 27.9978 1358.31 -0.000000032 -0.0203968 0.999792 6.53E-10 $| -3695448 0 object/tangible/sign/all_sign_city_s02.iff 0 1826.12 28 1351.73 -0.000000032 0 1 0 $| -3695449 0 object/tangible/sign/all_sign_city_s02.iff 0 1854 28 1306 -0.000000032 0 1 0 $| -3695450 0 object/tangible/sign/all_sign_city_s02.iff 0 1894 28 1306 -0.000000032 0 1 0 $| -3695458 0 object/tangible/sign/all_sign_city_s02.iff 0 1934.89 28 1939.26 1 0 0 0 $| -3695460 0 object/tangible/sign/all_sign_city_s02.iff 0 1737 28 1999.2 1 0 0 0 $| -3695461 0 object/tangible/sign/all_sign_city_s02.iff 0 1611 28 1999.24 1 0 0 0 $| -3695462 0 object/tangible/sign/all_sign_city_s02.iff 0 1526.26 28 1925.81 0.92388 0 -0.382683 0 $| -3695463 0 object/tangible/sign/all_sign_city_s02.iff 0 1487.51 28 1909.28 0.92388 0 -0.382683 0 $| -3695464 0 object/tangible/sign/all_sign_city_s02.iff 0 1479.17 28 1900.75 0.92388 0 -0.382683 0 $| -3695465 0 object/tangible/sign/all_sign_city_s02.iff 0 1454.96 27.9938 1815.02 0.707107 0 -0.707107 0 $| -3695466 0 object/tangible/sign/all_sign_city_s02.iff 0 1453.75 28 1665.99 0.707107 0 -0.707106 0 $| -3695467 0 object/tangible/sign/all_sign_city_s02.iff 0 1453.93 28 1634.03 0.707107 0 -0.707106 0 $| -3695468 0 object/tangible/sign/all_sign_city_s02.iff 0 1507.55 30.5957 1517.45 5.19E-08 0.707107 0.707107 5.19E-08 $| -3695469 0 object/tangible/sign/all_sign_city_s02.iff 0 1522.22 28 1470.98 -0.707107 0 0.707107 0 $| -3695470 0 object/tangible/sign/all_sign_city_s02.iff 0 1541.38 28 1442.69 -0.000000032 0 1 0 $| -3695471 0 object/tangible/sign/all_sign_city_s02.iff 0 1603.2 30.328 1401.02 -0.270598 0.653282 0.653282 -0.270598 $| -4026465 0 object/static/structure/corellia/corl_tent_small.iff 0 1984.02 28 1577.43 1 0 0 0 $| -4026467 0 object/static/creature/corellia_krahbu.iff 0 1987.34 28 1578.9 1 0 0 0 $| -4026468 0 object/static/creature/corellia_bageraset.iff 0 1980.6 28 1578.45 1 0 0 0 $| -4026469 0 object/static/structure/corellia/corl_tent_med.iff 0 1626.14 28 1490.97 1 0 0 0 $| -4026470 0 object/static/structure/general/data_terminal_free_s1.iff 0 1626.81 28 1489.73 0.962425 0 -0.271547 0 $| -4026471 0 object/static/structure/general/data_terminal_free_s2.iff 0 1626.9 28 1491.61 0.707107 0 -0.707106 0 $| -4026473 0 object/static/creature/corellia_durni.iff 0 1625.52 28 1493.69 -0.667463 0 0.744643 0 $| -4026474 0 object/static/creature/corellia_gulingaw.iff 0 1626.19 31.1015 1491.02 0.721382 0 -0.692538 0 $| -4026476 0 object/static/creature/corellia_krahbu.iff 0 1625.52 28 1487.84 0.875175 0 -0.483807 0 $| -4026491 0 object/static/item/item_medic_bacta_tank_advanced.iff 0 2012.6 28 1706.19 -0.327798 0 0.944748 0 $| -4026492 0 object/static/item/item_medic_bacta_tank_advanced.iff 0 2012.68 28 1701 -0.448109 0 0.893979 0 $| -4026493 0 object/static/item/item_medic_bacta_tank.iff 0 2013.91 28 1701.37 0.808345 0 0.588708 0 $| -4026494 0 object/static/item/item_medic_bacta_tank.iff 0 2013.96 28 1706.7 0.89528 0 -0.445505 0 $| -4026495 0 object/static/item/item_medical_console.iff 0 2013.82 28.759 1703.31 1 0 0 0 $| -4026496 0 object/tangible/furniture/all/frn_all_desk_map_table_insert.iff 0 2019.32 28.115 1699.68 1 0 0 0 $| -4026497 0 object/tangible/furniture/all/frn_all_desk_map_table.iff 0 2019.54 28 1699.68 1 0 0 0 $| -4026498 0 object/tangible/furniture/all/frn_all_professor_desk.iff 0 2013.62 28 1702.95 1 0 0 0 $| -4026499 0 object/static/item/item_medic_bag.iff 0 2014.25 28 1700.94 0.63329 0 0.773915 0 $| -4026501 0 object/static/item/item_drall_medicine.iff 0 2013.31 28 1710.69 0.8956 0 0.44486 0 $| -4026502 0 object/static/item/item_drall_medicine.iff 0 2013.27 28 1710.3 0.8956 0 0.44486 0 $| -4026503 0 object/static/item/item_drall_medicine.iff 0 2013.01 28 1710.55 0.8956 0 0.44486 0 $| -4026504 0 object/static/item/item_diagnostic_screen.iff 0 2013.83 28 1710.39 -0.148651 0 0.98889 0 $| -4026506 0 object/static/item/item_tool_sensor_beacon.iff 0 1992.99 28 1575.33 1 0 0 0 $| -4026507 0 object/static/creature/corellia_durni.iff 0 1991.96 28 1576.16 1 0 0 0 $| -4026509 0 object/static/structure/general/droid_21bmedical_powerdown.iff 0 2012.2 28 1710.49 0.667463 0 0.744643 0 $| -4026510 0 object/static/structure/general/camp_tent_s01.iff 0 1542.22 28 1514.44 -0.148651 0 0.98889 0 $| -4026511 0 object/static/structure/general/campfire_fresh.iff 0 1541.43 28 1511.63 1 0 0 0 $| -4026512 0 object/static/structure/general/camp_lawn_chair_s01.iff 0 1543.09 28 1512.14 -0.453596 0 0.891207 0 $| -4026519 0 object/static/item/item_jar_berries.iff 0 1543.18 28.49 1512.13 0.703919 -0.0670742 -0.0670741 0.703918 $| -4026520 0 object/static/item/item_cage_bamboo.iff 0 1988.48 28 1576.1 1 0 0 0 $| -4026521 0 object/building/corellia/filler_block_corellia_32x16_s01.iff 0 2035.12 28 1310.21 0.707107 0 0.707106 0 $| -4026523 0 object/static/structure/tatooine/debris_tatt_drum_dented_1.iff 0 1930.23 28 1353.66 0.801601 0 0.59786 0 $| -4026524 0 object/static/structure/tatooine/debris_tatt_drum_storage_2.iff 0 1929.32 28 1353.39 0.90687 0 0.42141 0 $| -4026525 0 object/static/structure/tatooine/debris_tatt_crate_1.iff 0 1930.8 28 1352.85 0.731689 0 -0.681639 0 $| -4026526 0 object/static/structure/tatooine/debris_tatt_drum_storage_2.iff 0 1931.49 28 1352.08 1 0 0 0 $| -4026528 0 object/static/structure/corellia/corl_tent_small.iff 0 1929.68 28.1265 1351.7 0.440178 0 0.897911 0 $| -4026529 0 object/static/structure/general/prp_junk_s6.iff 0 2014.09 28 1771.47 0.823129 0 -0.567854 0 $| -4026530 0 object/static/structure/general/prp_junk_s8.iff 0 2013.11 28.3222 1773.86 0.188065 0.188065 -0.681638 0.681639 $| -4026534 0 object/static/structure/tatooine/debris_tatt_drum_storage_2.iff 0 2014.5 28 1773.37 0.751806 0 -0.659384 0 $| -4026535 0 object/static/structure/tatooine/debris_tatt_drum_storage_2.iff 0 2013.98 28 1772.92 0.836463 0 -0.548024 0 $| -4475355 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1648.65 28 1888.32 -0.382684 0 0.923879 0 $| -4475356 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1701.35 28 1835.68 -0.382684 0 0.923879 0 $| -4475357 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1690.3 28 1801.35 0.92388 0 -0.382682 0 $| -4475358 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1576.32 28 1767.67 -0.382684 0 0.923879 0 $| -4475359 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1523.68 28 1820.33 -0.382684 0 0.923879 0 $| -4475360 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1534.67 28 1854.66 0.92388 0 -0.382682 0 $| -5405903 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1933.24 33.8503 1815.28 0.000748027 0.342898 -0.000273051 0.939372 $| -5405982 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1985.01 33.9451 1884.97 -0.0131221 0.382645 -0.00543535 0.923786 $| -5406015 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1864.01 33.9451 1634.97 0.0107962 0 0 0.999942 $| -5406016 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1873.32 33.9451 1620.96 -0.000796377 0 0 1 $| -5406074 0 object/static/structure/general/streetlamp_small_style_01.iff 0 2008.97 33.9134 1640.9 -0.000796366 0 0 1 $| -5406154 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1917.36 33.9135 1609.08 0.00409861 0.707095 0.00409861 0.707095 $| -5406165 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1776.16 33.8502 1532.73 -0.00297242 0.7071 -0.0029724 0.707101 $| -5406221 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1774.16 33.9451 1611.39 0.00409863 0.707095 0.00409864 0.707095 $| -5406286 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1811.96 33.9446 1635.01 0.0323716 0.706365 0.0323716 0.706365 $| -5406391 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1878.75 33.9135 1728.81 0.0100431 0.707035 0.0100432 0.707036 $| -5406407 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1795.89 33.9451 1728.72 0.000563112 0.707106 0.000563109 0.707107 $| -5406413 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1761.77 33.9451 1730.72 0.0029724 0.7071 0.0029724 0.707101 $| -5406653 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1745.89 28 1962.3 0.707107 0 0.707106 0 $| -5406662 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1750.01 28 1939.38 0.707107 0 0.707106 0 $| -5406667 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1633.07 28 1906.02 0.92388 0 0.382683 0 $| -5406669 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1635.51 28 1899.76 -0.382683 0 0.92388 0 $| -5406677 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1563.18 28 1881.47 0.382683 0 0.92388 0 $| -5406688 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1484.62 33.9411 1903.77 0.000305 0.923879 0.000736 0.382683 $| -5406703 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1454.97 27.969 1816.99 -0.707107 0 0.707107 0 $| -5406712 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1511.5 33.9451 1517.6 -0.000563257 0.000000116 0.000563438 0.999999 $| -5406716 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1477.05 28 1539.04 -0.382683 0 0.92388 0 $| -5406720 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1463.08 28 1525.04 0.92388 0 0.382683 0 $| -5406722 0 object/static/structure/general/streetlamp_large_style_02.iff 0 1505 28 1553.02 1 0 0 0 $| -5406725 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1543.98 33.9135 1445.13 0.000563438 0.999999 0.000563257 -0.000000169 $| -5406731 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1523.97 33.9451 1465.04 0.000563438 0.999999 0.000563257 -0.000000169 $| -5406775 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1524.06 33.9451 1477.01 0.000563 0.999999 0.000563 0 $| -5406779 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1543.95 33.9451 1496.97 0.000563 0.999999 0.000563 0 $| -5406790 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1606.06 33.9432 1398.29 0.000304693 0.923879 0.000735595 0.382683 $| -5406794 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1630.01 33.9451 1477.99 0.000563 0.999999 0.000563 0 $| -5406808 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1668 33.9841 1500.04 0.000563 0.999999 0.000563 0 $| -5406817 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1700.58 33.9451 1440.03 0.000563 0.999999 0.000563 0 $| -5406819 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1737.97 33.9135 1461.99 0.000563 0.999999 0.000563 0 $| -5406836 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1746.43 33.9451 1360.46 0.000563 0.999999 0.000563 0 $| -5406853 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1610.4 28 1997.97 1 0 0 0 $| -5406854 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1738.6 28 1998.69 1 0 0 0 $| -5407012 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1798.69 28 1477.59 -0.382683 0 0.92388 0 $| -5407014 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1780.55 28 1484.47 0.382684 0 0.923879 0 $| -5407029 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1787.68 28 1399.94 0.382683 0 0.92388 0 $| -5407031 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1698.4 28 1555.92 -0.382683 0 0.92388 0 $| -5407034 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1737.3 28 1555.67 0.382683 0 0.92388 0 $| -5407036 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1750.59 28 1626.71 -0.382683 0 0.92388 0 $| -5407037 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1750.61 28 1671.57 0.92388 0 -0.382683 0 $| -5407038 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1739.43 28 1708.82 0.382683 0 0.92388 0 $| -5407039 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1739.64 28 1739.57 0.92388 0 0.382683 0 $| -5407041 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1800.16 28 1857.46 0.382683 0 0.92388 0 $| -5407042 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1755.59 28 1857.58 -0.382683 0 0.92388 0 $| -5407045 0 object/static/structure/general/streetlamp_medium_style_01.iff 0 1769.91 28 1976.73 0.92388 0 -0.382683 0 $| -5407046 0 object/static/structure/general/streetlamp_medium_style_01.iff 0 1769.99 28 1951.01 0.707107 0 -0.707107 0 $| -5407047 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1796.33 28 1909.27 0.92388 0 0.382683 0 $| -5407049 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1957.2 28 1900.39 0.92388 0 0.382683 0 $| -5515363 0 object/static/structure/general/streetlamp_large_style_01.iff 0 2005.43 28 1873.22 1 0 0 0 $| -5515402 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1899.91 28 1719.16 0.92388 0 0.382683 0 $| -5515406 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1802.31 28 1667.24 0.92388 0 0.382683 0 $| -5515408 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1891.68 28 1668.87 0.707107 0 -0.707106 0 $| -5515411 0 object/static/structure/general/streetlamp_small_blue_style_01.iff 0 1838.03 36.4433 1613.38 -0.0040986 0.707095 -0.0040986 0.707095 $| -5515432 0 object/static/structure/general/streetlamp_small_blue_style_01.iff 0 1772.44 34.7309 1441.9 0.500199 0.499801 0.500199 0.499801 $| -5515434 0 object/static/structure/general/streetlamp_small_red_style_01.iff 0 1669.72 28 1578.9 1 0 0 0 $| -5535352 0 object/static/structure/general/streetlamp_small_red_style_01.iff 0 1610.13 28 1566.88 1 0 0 0 $| -5535353 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1642.98 33.9451 1709.99 -0.00850288 0.382667 -0.00352199 0.92384 $| -5625467 0 object/tangible/terminal/terminal_bazaar.iff 0 1992.48 28.6 1522.7 1 0 0 0 $| -5625468 0 object/tangible/terminal/terminal_bazaar.iff 0 1970.41 28.6 1544.66 0.707107 0 0.707106 0 $| -5625469 0 object/tangible/terminal/terminal_bazaar.iff 0 1992.66 28.6 1566.69 -0.000000032 0 1 0 $| -5625470 0 object/tangible/terminal/terminal_bazaar.iff 0 2014.4 28.6 1544.63 0.707107 0 -0.707106 0 $| -6035541 0 object/building/corellia/filler_block_corellia_32x16_s01.iff 0 1939.92 28 1322.56 0.978031 0 0.20846 0 $| -6035547 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1943.82 28 1479.36 0.958244 0 0.285952 0 $| -6035548 0 object/building/corellia/filler_block_corellia_32x16_s01.iff 0 1821.38 28 1440.56 1 0 0 0 $| -6035556 0 object/tangible/instrument/nalargon.iff 0 1869.79 28 1403.71 1 0 0 0 $| -6035557 0 object/tangible/microphone/microphone.iff 0 1873.11 28 1405.48 1 0 0 0 $| -6035558 0 object/tangible/instrument/ommni_box.iff 0 1876.55 28 1403.42 1 0 0 0 $| -6035560 0 object/tangible/speaker/speaker.iff 0 1879.67 28 1405.43 0.92388 0 0.382683 0 $| -6035561 0 object/tangible/speaker/speaker.iff 0 1866.42 28 1405.59 0.92388 0 -0.382683 0 $| -6035566 0 object/tangible/terminal/terminal_mission.iff 0 1915.54 28 1436.27 0.755095 0 -0.655615 0 $| -6035568 0 object/static/structure/tatooine/antenna_tatt_style_2.iff 0 1922.16 28 1444.03 0.995491 0 0.0948572 0 $| -6035569 0 object/static/structure/tatooine/antenna_tatt_style_2.iff 0 1916.23 28 1396.24 0.996802 0 0.0799146 0 $| -6035570 0 object/static/structure/corellia/corl_fountain_rectangle_s01.iff 0 1873 28 1435 1 0 0 0 $| -6035571 0 object/tangible/furniture/all/frn_bench_generic.iff 0 1869 28 1435 0.707107 0 -0.707106 0 $| -6035572 0 object/tangible/furniture/all/frn_bench_generic.iff 0 1873 28 1440 1 0 0 0 $| -6035573 0 object/tangible/furniture/all/frn_bench_generic.iff 0 1877 28 1435 0.707107 0 0.707106 0 $| -6035574 0 object/tangible/furniture/all/frn_bench_generic.iff 0 1873 28 1430 -0.000000032 0 1 0 $| -6035575 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1876.99 28 1438.96 0.707107 0 0.707106 0 $| -6035577 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1869.01 28 1439.01 -0.707107 0 0.707107 0 $| -6035579 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1914.18 28 1426.59 0.758362 0 -0.651834 0 $| -6035580 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1912.7 28 1415.51 0.758361 0 -0.651835 0 $| -6035586 0 object/static/structure/general/streetlamp_small_blue_style_02.iff 0 1879.89 28 1401.14 1 0 0 0 $| -6035597 0 object/static/item/item_medic_bacta_tank.iff 0 1877.59 28 1453.99 -0.144901 0 0.989446 0 $| -6035598 0 object/static/item/item_medic_bacta_tank_advanced.iff 0 1877.3 28 1452.52 0.876362 0 0.481652 0 $| -6035599 0 object/static/item/item_medic_bacta_tank_advanced.iff 0 1876.73 28 1453.23 -0.232177 0 0.972674 0 $| -6035600 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1873 26.57 1456 1 0 0 0 $| -6035601 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1857 26.57 1448 0.707108 0 0.707105 0 $| -6035602 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1889 26.57 1448 0.707108 0 0.707105 0 $| -6035603 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1857 28 1440 1 0 0 0 $| -6035604 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1889 28 1440 1 0 0 0 $| -6035605 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1889 28 1456 1 0 0 0 $| -6035606 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1857 28 1456 1 0 0 0 $| -6035607 0 object/tangible/crafting/station/public_food_station.iff 0 1884.42 28 1453.67 0.000000411 0 1 0 $| -6035609 0 object/tangible/crafting/station/public_weapon_station.iff 0 1859 28 1451 0.707107 0 0.707106 0 $| -6035611 0 object/tangible/crafting/station/public_clothing_station.iff 0 1863 28 1454 0.707107 0 -0.707106 0 $| -6035612 0 object/tangible/crafting/station/public_structure_station.iff 0 1887 28 1450 0.707107 0 -0.707106 0 $| -6035616 0 object/static/structure/dantooine/dant_rack_spears.iff 0 1885.48 28 1388.23 1 0 0 0 $| -6035617 0 object/static/structure/dantooine/dant_rack_spears.iff 0 1881.11 28 1388.13 0.96639 0 0.257081 0 $| -6476154 0 object/tangible/terminal/terminal_mission_artisan.iff 0 1914.62 28 1429.66 0.76161 0 -0.648035 0 $| -6476156 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1912.13 28 1412.13 0.758102 0 -0.652136 0 $| -6476162 0 object/tangible/terminal/terminal_mission_scout.iff 0 1911.24 28 1407.36 0.758102 0 -0.652136 0 $| -6476168 0 object/tangible/terminal/terminal_mission_artisan.iff 0 1677.41 28 1615 0.707107 0 -0.707106 0 $| -6476170 0 object/tangible/terminal/terminal_mission_artisan.iff 0 1677.41 28 1617 0.707107 0 -0.707106 0 $| -6476172 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1690.1 28 1604.88 -0.000000032 0 1 0 $| -6476174 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1688.1 28 1604.88 -0.000000032 0 1 0 $| -6476176 0 object/tangible/terminal/terminal_mission_scout.iff 0 1717.46 28 1699.91 1 0 0 0 $| -6476178 0 object/tangible/terminal/terminal_mission_scout.iff 0 1719.46 28 1699.91 1 0 0 0 $| -6476180 0 object/tangible/terminal/terminal_mission_scout.iff 0 1820.69 28 1769.6 0.707107 0 0.707106 0 $| -6476182 0 object/tangible/terminal/terminal_mission_scout.iff 0 1820.85 28 1738.61 0.707107 0 0.707106 0 $| -6476184 0 object/tangible/terminal/terminal_mission_artisan.iff 0 1855.32 28 1740.65 0.707107 0 -0.707107 0 $| -6476186 0 object/tangible/terminal/terminal_mission_artisan.iff 0 1855.29 28 1767.25 0.707107 0 -0.707106 0 $| -6476188 0 object/tangible/terminal/terminal_mission_scout.iff 0 1560.16 28.9263 1478.95 0.932327 0 -0.361615 0 $| -6476190 0 object/tangible/terminal/terminal_mission_scout.iff 0 1560.19 28.9803 1462.87 -0.376297 0 0.926499 0 $| -6476192 0 object/tangible/terminal/terminal_mission_artisan.iff 0 1819.38 28 1800.18 -0.000000032 0 1 0 $| -6476194 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1821.03 28 1799.73 -0.000000032 0 1 0 $| -6476196 0 object/tangible/terminal/terminal_mission_scout.iff 0 1817.24 28 1799.94 -0.000000032 0 1 0 $| -6476198 0 object/tangible/terminal/terminal_mission_artisan.iff 0 1857.03 28 1799.91 -7.41E-08 0 1 0 $| -6476200 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1854.96 28 1799.54 -7.41E-08 0 1 0 $| -6476202 0 object/tangible/terminal/terminal_mission_scout.iff 0 1858.98 28 1799.73 -7.41E-08 0 1 0 $| -6476204 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1811.3 28.5779 1988.55 0.707108 0 -0.707106 0 $| -6476206 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1811.3 28.5779 1986.55 0.707107 0 -0.707106 0 $| -6476208 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1811.3 28.5779 1984.55 0.707107 0 -0.707106 0 $| -6476210 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1867.48 28.591 1978.97 0.707107 0 0.707107 0 $| -6476212 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1867.48 28.591 1976.97 0.707105 0 0.707108 0 $| -6476214 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1867.48 28.591 1974.97 0.707105 0 0.707108 0 $| -6625527 0 object/soundobject/soundobject_city_crowd_sentients_large.iff 0 2046.16 28 1468.47 1 0 0 0 $| -6625529 0 object/soundobject/soundobject_city_crowd_sentients_large.iff 0 1950.48 28 1531.22 1 0 0 0 $| -6625531 0 object/soundobject/soundobject_city_crowd_sentients.iff 0 1941.49 28 1607.37 1 0 0 0 $| -6625532 0 object/soundobject/soundobject_city_crowd_sentients_large.iff 0 2010.27 28 1616.48 1 0 0 0 $| -6625533 0 object/soundobject/soundobject_city_crowd_small.iff 0 1882.34 28 1589.61 1 0 0 0 $| -6625540 0 object/soundobject/soundobject_city_crowd_sentients_large.iff 0 1741.2 28 1534.4 1 0 0 0 $| -6625543 0 object/soundobject/soundobject_city_crowd_sentients_large.iff 0 2026.11 28 1719.46 1 0 0 0 $| -6625545 0 object/soundobject/soundobject_city_crowd_sentients_large.iff 0 1838.46 28 2041.09 1 0 0 0 $| -7125370 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1766.68 28 1735.7 1 0 0 0 $| -7125380 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1886 28 1776 0.707107 0 0.707106 0 $| -7125381 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1909.84 28 1735.85 1 0 0 0 $| -7125382 0 object/tangible/crafting/station/public_food_station.iff 0 1907 28 1741 0.707107 0 0.707106 0 $| -7125383 0 object/tangible/crafting/station/public_food_station.iff 0 1906.61 28 1750.01 0.707107 0 0.707107 0 $| -7125384 0 object/tangible/crafting/station/public_food_station.iff 0 1907 28 1757 0.707107 0 0.707107 0 $| -7125385 0 object/tangible/crafting/station/public_food_station.iff 0 1907 28 1766 0.707107 0 0.707107 0 $| -7125386 0 object/tangible/crafting/station/public_clothing_station.iff 0 1901 28 1773 0.707107 0 0.707106 0 $| -7125387 0 object/tangible/crafting/station/public_clothing_station.iff 0 1891 28 1773 0.707107 0 0.707107 0 $| -7125388 0 object/tangible/crafting/station/public_clothing_station.iff 0 1899 28 1779 -0.707107 0 0.707107 0 $| -7125389 0 object/tangible/crafting/station/public_clothing_station.iff 0 1893 28 1779 -0.707107 0 0.707107 0 $| -7335359 0 object/soundobject/soundobject_city_crowd_sentients_large.iff 0 1835.85 28 1708.92 1 0 0 0 $| -7335372 0 object/soundobject/soundobject_city_crowd_small.iff 0 1698.3 28 1722.93 1 0 0 0 $| -7335383 0 object/soundobject/soundobject_city_crowd_small.iff 0 1658.24 28 1652.55 1 0 0 0 $| -7335462 0 object/soundobject/soundobject_city_crowd_medium.iff 0 1767.77 28 1950.1 1 0 0 0 $| -7615528 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1893.96 34.0399 1485.58 -0.000000032 1 0 0 $| -7615529 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1943.86 34.0216 1479.33 0 0.883413 0 0.468594 $| -7755369 0 object/tangible/furniture/all/frn_bench_generic.iff 0 1716 28 1499 -0.000000032 0 1 0 $| -7755370 0 object/tangible/furniture/all/frn_bench_generic.iff 0 1720 28 1499 -0.000000032 0 1 0 $| -7755371 0 object/tangible/furniture/all/frn_bench_generic.iff 0 1724 28 1499 -0.000000032 0 1 0 $| -7755372 0 object/tangible/terminal/terminal_bazaar.iff 0 1708 28 1500 0.707107 0 0.707106 0 $| -7755373 0 object/tangible/terminal/terminal_bank.iff 0 1738 28 1501.35 1 0 0 0 $| -7755374 0 object/tangible/terminal/terminal_bank.iff 0 1705.98 28 1501.57 1 0 0 0 $| -7755375 0 object/tangible/terminal/terminal_bazaar.iff 0 1736 28 1500 0.707107 0 -0.707106 0 $| -7755378 0 object/static/structure/general/streetlamp_large_style_02.iff 0 1713.8 28 1499.05 1 0 0 0 $| -7755379 0 object/static/structure/general/streetlamp_large_style_02.iff 0 1726.15 28 1499.05 1 0 0 0 $| -8105493 0 object/building/corellia/cantina_corellia.iff 0 1705.47 28 1649.5 0.707106 0 0.707107 0 structure.municipal.cantina $| -8105494 8105493 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| -8105495 8105493 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| -8105496 8105493 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| -8105497 8105493 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| -8105498 8105493 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| -8105499 8105493 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| -8105500 8105493 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| -8105501 8105493 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| -8105502 8105493 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| -9766882 8105502 object/tangible/poi/spawnegg/interior_spawnegg.iff 9 -6.8 -0.9 22.4 1 0 0 0 intRandomYaw|0|1|$| -8105503 8105493 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| -8105504 8105493 object/cell/cell.iff 11 0 0 0 1 0 0 0 $| --11 8105504 object/tangible/npc/rebel_recruiter_spawner.iff 11 -28.5 -0.9 -1.3 0.707107 0 0.707106 0 $| -1487877 8105504 object/tangible/terminal/terminal_mission_rebel.iff 11 -28.83578 -0.894985 -2.352153 1 0 0 0 $| -1487879 8105504 object/tangible/terminal/terminal_mission_rebel.iff 11 -28.77948 -0.894984 3.342379 -0.000000032 0 1 0 $| -8105505 8105493 object/cell/cell.iff 12 0 0 0 1 0 0 0 $| -514454263 8105505 object/tangible/collection/hanging_light_02_07.iff 12 -19.5621 3.01775 15.3171 1 0 0 0 $| -8105506 8105493 object/cell/cell.iff 13 0 0 0 1 0 0 0 $| -4610432 8105506 object/tangible/collection/rare_pistol_blackhand.iff 13 -30.3611 0.090695 12.7987 0.592996 0.404178 0.400115 0.570003 $| -8105507 8105493 object/cell/cell.iff 14 0 0 0 1 0 0 0 $| -8105508 8105493 object/cell/cell.iff 15 0 0 0 1 0 0 0 $| -8105629 0 object/soundobject/soundobject_starport_exterior.iff 0 2033.67 28 1402.12 0.917121 0 0.39861 0 $| -8105630 0 object/soundobject/soundobject_starport_exterior.iff 0 1986.26 28 1436.73 0.917121 0 0.39861 0 $| -8156055 0 object/static/structure/general/streetlamp_large_blue_style_01.iff 0 1693.75 28 1603.27 -0.382683 0 0.92388 0 $| -8156056 0 object/static/structure/general/streetlamp_large_blue_style_01.iff 0 1702.97 28 1598.57 -0.000000032 0 1 0 $| -8156057 0 object/static/structure/general/streetlamp_large_blue_style_01.iff 0 1693.83 28 1699.32 1 0 0 0 $| -8156058 0 object/static/structure/general/streetlamp_large_blue_style_01.iff 0 1683.98 28 1699.21 1 0 0 0 $| -8156092 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1789.91 28 1775.89 -0.707107 0 0.707107 0 $| -8156096 0 object/tangible/terminal/terminal_mission.iff 0 1715.61 28 1699.77 1 0 0 0 $| -8156098 0 object/tangible/terminal/terminal_mission.iff 0 1713.6 28 1699.77 1 0 0 0 $| -8156100 0 object/static/structure/corellia/corl_tent_med.iff 0 1703.42 28 1698.86 0.707107 0 0.707106 0 $| -8156102 0 object/static/item/item_container_inorganic_minerals.iff 0 1701.32 28 1698.43 0.952334 0 -0.305059 0 $| -8156103 0 object/static/item/item_container_organic_food.iff 0 1700.35 28 1700.12 1 0 0 0 $| -8156104 0 object/static/item/item_container_organic_food.iff 0 1700.71 28 1699.67 1 0 0 0 $| -8156105 0 object/static/item/item_container_inorganic_gas.iff 0 1702.89 28 1697.74 1 0 0 0 $| -8156106 0 object/static/item/item_container_energy_liquid.iff 0 1702.79 28 1698.58 1 0 0 0 $| -8156107 0 object/static/item/item_container_energy_liquid.iff 0 1702.42 28 1698.52 1 0 0 0 $| -8215863 0 object/building/corellia/salon_corellia.iff 0 1681.31 28.2635 1446.53 -0.000000032 0 1 0 $| -8675757 0 object/static/structure/corellia/corl_imprv_flagpole_s01.iff 0 1822.76 37.565 1629.27 1 0 0 0 $| -8675758 0 object/static/structure/corellia/corl_imprv_flagpole_s01.iff 0 1853.27 37.565 1629.26 1 0 0 0 $| -8675759 0 object/static/structure/corellia/corl_imprv_flagpole_s01.iff 0 1733.68 37.3083 1512.15 1 0 0 0 $| -8675760 0 object/static/structure/corellia/corl_imprv_bannerpole_s01.iff 0 1776.93 29.6051 1444.89 1 0 0 0 $| -8675761 0 object/static/structure/corellia/corl_imprv_bannerpole_s01.iff 0 1767.89 29.6051 1444.85 1 0 0 0 $| -8675762 0 object/static/structure/corellia/corl_imprv_bannerpole_s01.iff 0 1833.47 29.5094 1803.19 1 0 0 0 $| -8675763 0 object/static/structure/corellia/corl_imprv_bannerpole_s01.iff 0 1842.44 29.5094 1803.2 1 0 0 0 $| -8675765 0 object/static/structure/corellia/corl_imprv_flagpole_s01.iff 0 1484.58 35.3129 1903.75 1 0 0 0 $| -8675767 0 object/static/structure/corellia/corl_imprv_flagpole_s01.iff 0 2021.75 31.5854 1544.59 1 0 0 0 $| -8675768 0 object/static/structure/corellia/corl_imprv_flagpole_s01.iff 0 1963.06 31.5724 1544.8 1 0 0 0 $| -8675769 0 object/static/structure/corellia/corl_imprv_bannerpole_s01.iff 0 1986.25 28 1444.64 0.990901 0 -0.13459 0 $| -8675770 0 object/static/structure/corellia/corl_imprv_bannerpole_s01.iff 0 2003.41 28 1445.68 0.991562 0 0.129635 0 $| -9555352 0 object/static/flora/flora_tree_rori_windswept_s00.iff 0 1811.59 28 1671.09 1 0 0 0 $| -9555353 0 object/static/flora/flora_tree_rori_windswept_s00.iff 0 1814.91 28 1677.38 1 0 0 0 $| -9825673 0 object/static/structure/general/skeleton_human_headandbody.iff 0 290.855 0.195961 556.204 0.202787 0 0.979223 0 $| -9825684 0 object/static/structure/general/skeleton_human_headandbody.iff 0 296.485 0.760898 574.658 1 0 0 0 $| -9825685 0 object/static/structure/general/skeleton_human_headandbody.iff 0 302.396 1.91035 549.391 0.827336 -0.0175209 0.554878 0.0855467 $| -9825686 0 object/static/structure/general/skeleton_human_headandbody.iff 0 310.041 2.99458 570.525 1 0 0 0 $| -9825687 0 object/static/structure/general/skeleton_human_headandbody.iff 0 292.615 0.411037 545.285 0.998738 -0.00499373 0.000249895 0.0499786 $| -9825688 0 object/static/structure/general/skeleton_human_headandbody.iff 0 291.087 0.19285 549.56 0.737352 0.0405953 -0.673268 0.0370671 $| -9825692 0 object/static/structure/general/skeleton_human_headandbody.iff 0 297.564 1.08868 540.706 -0.572939 -0.169071 0.801443 -0.0290591 $| -9825694 0 object/static/structure/corellia/corl_imprv_column_s03.iff 0 279.231 -1.30208 545.642 -0.65859 0.0487988 0.749694 -0.0428687 $| -9825700 0 object/static/structure/corellia/corl_imprv_column_s03.iff 0 279.788 -1.14528 557.855 -0.627132 -0.206947 0.676222 -0.326501 $| -9825703 0 object/static/structure/corellia/corl_imprv_wall_4x16_s03.iff 0 267.643 -4.61372 548.091 0.669337 -0.158811 0.710186 -0.149677 $| -9825716 0 object/static/structure/general/campfire_fresh.iff 0 294.495 1.06328 552.276 1 0 0 0 $| -9825717 0 object/static/item/item_bowl_shallow.iff 0 294.517 0.717 552.251 1 0 0 0 $| -2115951 0 object/building/corellia/filler_slum_24x16_s01.iff 0 1765.21 28 2008.95 0.707107 0 0.707107 0 $| -2115953 0 object/building/corellia/filler_slum_24x16_s02.iff 0 1757.14 28 1994.07 -0.707107 0 0.707107 0 $| -2365494 0 object/building/corellia/filler_slum_24x16_s02.iff 0 1485 28 1561.92 0.707108 0 -0.707105 0 $| -4026531 0 object/static/structure/general/droid_r5_torso.iff 0 2012.64 28 1771.15 -0.0264239 0 0.999651 0 $| -4026532 0 object/static/structure/general/droid_repairdroidtorso.iff 0 2011.94 28 1770.73 -0.312988 0 0.949757 0 $| -4026533 0 object/static/structure/general/droid_r3_head.iff 0 2012.34 27.2962 1770.79 0.956802 -0.29074 0 0 $| -164392 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 296.567383 1.015901566 549.715332 1 0 0 0 $| -5275512 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1996.9339 28 1480.68 1 0 0 0 $| -1211507 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1754.27 28 1482.44 1 0 0 0 $| -1211538 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1872.56 28 1698.85 1 0 0 0 $| -1211562 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1521.08 3.1 1093.45 1 0 0 0 $| -1211563 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1516.17 2.29 1088.36 1 0 0 0 $| -1211572 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1543.27 2.97 1058.79 1 0 0 0 $| -1211573 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1531.74 2.05 1055.59 1 0 0 0 $| -1211574 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1522.41 3.88 1127.54 1 0 0 0 $| -1211575 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1501.12 2.09 1120.41 1 0 0 0 $| -1211576 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1503.23 0.38 1074.9 1 0 0 0 $| -1211577 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1570.2 25.9 1105.48 1 0 0 0 $| -1211578 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1550.72 8.15 1159.73 1 0 0 0 $| -1211579 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1491.68 3.49 1171.71 1 0 0 0 $| -1211580 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1594.57 11.81 1143.14 1 0 0 0 $| -1211588 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1902.73 34.25 1127.54 1 0 0 0 $| -1211589 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1898.43 34.7 1122.34 1 0 0 0 $| -1211590 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1882.08 33.93 1138.54 1 0 0 0 $| -1211591 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1916.2 34.17 1107.76 1 0 0 0 $| -1211592 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1890.72 35.89 1095.53 1 0 0 0 $| -1211593 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1915.15 31.27 1151.5 1 0 0 0 $| -1211599 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1970.92 29.24 1160.6 1 0 0 0 $| -1211600 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1967.01 30.12 1156.21 1 0 0 0 $| -1211601 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1976.61 28.33 1181.23 1 0 0 0 $| -1211602 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1978.34 28.8 1131.74 1 0 0 0 $| -1211603 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1947.21 32.05 1129.31 1 0 0 0 $| -1211604 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1949.86 28.36 1180.29 1 0 0 0 $| -1211610 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1972.61 28.95 1074.3 1 0 0 0 $| -1211611 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1968.87 29.54 1069.48 1 0 0 0 $| -1211613 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1988.13 23.51 1043.7 1 0 0 0 $| -1211614 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1939.85 31.61 1044.88 1 0 0 0 $| -1211615 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1934.64 32.16 1089.62 1 0 0 0 $| -164639 0 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 0 1910 28 1425 0 0 -1 0 $| -164640 0 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 0 1909 28 1425 0 0 -1 0 $| -164641 0 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 0 1911 28 1425 0 0 -1 0 $| -3375636 0 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 0 1870 28 1454 0 0 1 0 $| --1 0 object/tangible/spawning/static_npc/herald_corellia_02_karin.iff 0 1864 28 1684 0 0 1 0 $| --3 0 object/tangible/npc/corellia_spawn/kirkin_liawoon.iff 0 1871 28 1646 0.707106781 0 0.707106781 0 $| --4 0 object/tangible/npc/corellia_spawn/dannik_malaan.iff 0 1666 28 1601 0.7071067812 0 0.7071067812 0 $| --9 0 object/tangible/spawning/static_npc/death_watch_herald_rebel.iff 0 1834.74 28 1698.74 1 0 0 0 $| --10 0 object/tangible/spawning/static_npc/herald_corellia_rogue_corsec.iff 0 1845.86 28 1639.68 1 0 0 0 $| +objid container server_template_crc cell_index px py pz qw qx qy qz scripts objvars +i i h i f f f f f f f s p +164393 0 object/static/structure/tatooine/debris_tatt_crate_1.iff 0 292.756 0.463244 554.43 1 0 0 0 $| +164394 0 object/static/structure/tatooine/debris_tatt_crate_1.iff 0 292.871 0.52167 555.584 0.950796 0 0.309816 0 $| +1211509 0 object/static/structure/general/data_terminal_s4.iff 0 1752.78 28.0662 1486.04 -3.2E-08 0 1 0 $| +1211510 0 object/static/structure/general/streetlamp_medium_style_01_on.iff 0 1749.57 28 1483.13 1 0 0 0 $| +1211540 0 object/static/structure/general/streetlamp_medium_style_02_on.iff 0 1877.42 28 1700.51 0.707107 0 -0.707106 0 $| +1211541 0 object/static/structure/general/streetlamp_medium_style_02_on.iff 0 1877.42 28 1707.72 0.707107 0 -0.707106 0 $| +1211542 0 object/static/creature/droids_protocol_droid_gold.iff 0 1873.8 28 1699.58 0.877583 0 -0.479425 0 $| +1211545 0 object/building/general/bunker_corellia_tomi_jinsin.iff 0 1529.76 2.96651 1080.5 0.911039 0 -0.412321 0 $| +1211546 1211545 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| +1211547 1211545 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| +1211548 1211545 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| +1211561 1211548 object/tangible/poi/spawnegg/interior_spawnegg.iff 3 3.44 0.25 -4.1232 1 0 0 0 intRandomYaw|0|1|$| +1211549 1211545 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| +1211550 1211545 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| +1211560 1211550 object/tangible/poi/spawnegg/interior_spawnegg.iff 5 -5.90735 -6.75 -5.08486 1 0 0 0 intRandomYaw|0|1|$| +1211551 1211545 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| +1211559 1211551 object/tangible/poi/spawnegg/interior_spawnegg.iff 6 5.65654 -6.76678 -14 1 0 0 0 intRandomYaw|0|1|$| +1211552 1211545 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| +1211558 1211552 object/tangible/poi/spawnegg/interior_spawnegg.iff 7 5.82104 -6.75 -1.88818 1 0 0 0 intRandomYaw|0|1|$| +1211553 1211545 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| +1211554 1211545 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| +1211555 1211554 object/tangible/poi/spawnegg/interior_spawnegg.iff 9 -2.607 -13.75 -16.702 1 0 0 0 intRandomYaw|0|1|$| +1211556 1211554 object/tangible/poi/spawnegg/interior_spawnegg.iff 9 -4.77686 -13.75 -8.52002 1 0 0 0 intRandomYaw|0|1|$| +1211557 1211554 object/tangible/poi/spawnegg/interior_spawnegg.iff 9 -0.256836 -13.75 -4.98926 1 0 0 0 intRandomYaw|0|1|$| +1211565 0 object/static/structure/tatooine/antenna_tatt_style_1.iff 0 1525.24 8.35486 1092.6 1 0 0 0 $| +1211566 0 object/static/structure/military/bunker_pillar_style_04.iff 0 1525.25 3.2 1092.57 1 0 0 0 $| +1211569 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1529.12 3.81409 1092.18 0.934943 0 0.354799 0 $| +1211570 0 object/static/installation/mockup_power_generator_fusion_style_1.iff 0 1524.89 7.99098 1079.41 0.413046 0 0.91071 0 $| +1211571 0 object/static/structure/general/tankfarm_s01.iff 0 1525.02 2.22977 1073.77 -0.352274 0 0.935897 0 $| +1211581 0 object/static/item/lair_wooden_tent.iff 0 1907.35 34.0243 1127 -3.2E-08 0 1 0 $| +1211582 0 object/static/item/lair_wooden_tent.iff 0 1897.57 35.0226 1117.78 0.707107 0 -0.707106 0 $| +1211585 0 object/static/structure/general/campfire_fresh.iff 0 1897.47 34.547 1125.97 0.998872 0.0436073 -0.00395866 -0.0183592 $| +1211586 0 object/tangible/furniture/tatooine/frn_tato_tbl_cafe_table_style_01.iff 0 1905.02 34.0601 1127.36 0.998376 0.0547413 -0.000864567 -0.015768 $| +1211587 0 object/tangible/quest/corellia_coronet_meatlump_act1_radio.iff 0 1904.61 34.8275 1127.4 -0.61706 -0.0353772 0.785629 0.0277865 $| +1211594 0 object/tangible/furniture/tatooine/frn_tato_tbl_cafe_table_style_01.iff 0 1973.28 29.0829 1160.55 0.998831 0.020219 -0.00261969 -0.0438281 $| +1211595 0 object/tangible/quest/corellia_coronet_meatlump_act1_radio.iff 0 1972.86 29.87 1160.61 -0.617678 -0.00393192 0.786415 0.00308795 $| +1211596 0 object/static/item/lair_wooden_tent.iff 0 1965.82 30.394 1150.98 0.707111 0 -0.707102 0 $| +1211597 0 object/static/item/lair_wooden_tent.iff 0 1975.6 28.894 1160.2 0 0 1 0 $| +1211598 0 object/static/structure/general/campfire_fresh.iff 0 1965.73 29.877 1159.17 0.998641 0.0372496 -0.00610765 -0.0359362 $| +1211605 0 object/tangible/furniture/tatooine/frn_tato_tbl_cafe_table_style_01.iff 0 1974.9 28.5662 1074.22 0.995971 0.00414414 -0.00208884 -0.0895563 $| +1211606 0 object/tangible/quest/corellia_coronet_meatlump_act1_radio.iff 0 1974.45 29.403 1074.27 -0.615114 0.0563575 0.783838 0.0636871 $| +1211607 0 object/static/item/lair_wooden_tent.iff 0 1967.44 30.0308 1064.64 0.707109 0 -0.707104 0 $| +1211608 0 object/static/item/lair_wooden_tent.iff 0 1977.22 29.0325 1073.87 0 0 1 0 $| +1211609 0 object/static/structure/general/campfire_fresh.iff 0 1967.35 29.7561 1072.83 0.998373 0.0113248 -0.00538234 -0.0556287 $| +1439854 0 object/static/structure/corellia/corl_tent_med.iff 0 1883.74 28 1390.23 1 0 0 0 $| +1439857 0 object/static/creature/corellia_murra.iff 0 1877.44 28 1429.47 0.5653 0 0.824886 0 $| +1439858 0 object/static/structure/corellia/corl_tent_small.iff 0 1878.57 28 1452.06 1 0 0 0 $| +1439943 0 object/tangible/terminal/terminal_mission_bounty.iff 0 1705.47 28 1696.86 1 0 0 0 $| +1439947 0 object/static/structure/general/droid_r3_powerdown.iff 0 1707.72 28 1700.45 -0.707107 0 0.707107 0 $| +1439948 0 object/static/structure/general/droid_r4_powerdown.iff 0 1707.81 28 1697.91 0.707107 0 -0.707106 0 $| +1439949 0 object/static/structure/general/droid_probedroid_powerdown.iff 0 1709.23 28 1698.98 1 0 0 0 $| +1439950 0 object/static/structure/corellia/corl_tent_small.iff 0 1679.8 28.1301 1611.57 0.9998 0 0.0199987 0 $| +1439951 0 object/tangible/terminal/terminal_bazaar.iff 0 1684.03 28 1610.74 -3.2E-08 0 1 0 $| +1855362 0 object/building/corellia/skyscraper_corellia_style_01.iff 0 1838 28 1884 1 0 0 0 $| +1855366 0 object/building/corellia/skyscraper_corellia_style_03.iff 0 1718 28 1784 0.923881 0 -0.382681 0 $| +1855370 0 object/building/corellia/skyscraper_corellia_style_03.iff 0 1958 28 1784 0.923879 0 0.382684 0 $| +1855378 0 object/building/corellia/skyscraper_corellia_style_04.iff 0 1778 28 1824 1 0 0 0 $| +1855386 0 object/building/corellia/skyscraper_corellia_style_04.iff 0 1898 28 1824 3.2E-08 0 1 0 $| +1855406 0 object/building/corellia/filler_building_corellia_style_01.iff 0 1920.69 28 1501.29 1 0 0 0 $| +1855413 0 object/building/corellia/filler_building_corellia_style_02.iff 0 1627.33 28 1598.11 0.707109 0 -0.707105 0 $| +1855420 0 object/building/corellia/filler_building_corellia_style_03.iff 0 1778 28 1704 0.707109 0 0.707105 0 $| +1855427 0 object/building/corellia/filler_building_corellia_style_04.iff 0 1777 28 1649 0.707106 0 0.707107 0 $| +1855431 0 object/building/corellia/filler_building_corellia_style_05.iff 0 1888 27.6908 1704 -0.707106 0 0.707107 0 $| +1855438 0 object/building/corellia/filler_building_corellia_style_06.iff 0 1838 28 1494 0.70711 0 -0.707104 0 $| +1855449 0 object/building/corellia/filler_building_corellia_style_07.iff 0 1905.09 28 1644.25 1 0 0 0 $| +1855459 0 object/building/corellia/bank_corellia.iff 0 1992.41 28 1544.67 0.999997 0 0.0023009 0 $| +1855460 0 object/building/corellia/capitol_corellia.iff 0 1838 28 1574 1 0 0 0 $| +1855461 1855460 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| +1855462 1855460 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| +1855463 1855460 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| +4607185 1855463 object/tangible/poi/spawnegg/interior_spawnegg.iff 3 -26.4 1.3 -0.5 1 0 0 0 intRandomYaw|0|1|$| +4607188 1855463 object/tangible/poi/spawnegg/interior_spawnegg.iff 3 -7 1.3 9.9 1 0 0 0 intRandomYaw|0|1|$| +-2 1855463 object/tangible/npc/epic_quest/corsec_captain.iff 3 0 3.1 -11 1 0 0 0 $| +1855464 1855460 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| +1855465 1855460 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| +1855466 1855460 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| +1855467 1855460 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| +4607182 1855467 object/tangible/poi/spawnegg/interior_spawnegg.iff 3 -35.3 1.3 -1.9 1 0 0 0 intRandomYaw|0|1|$| +4607158 1855467 object/tangible/quest/corellia_coronet_diktat_search_desk.iff 1 -33.79225 1.294224 -2.555527 0.707107 0 0.7071065 0 $| +4607159 1855467 object/tangible/quest/corellia_coronet_diktat_search_terminal.iff 2 -34.15485 2.274531 -1.873781 -0.5403023 0 0.841471 0 $| +1855468 1855460 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| +1855469 1855460 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| +1855470 1855460 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| +1855471 1855460 object/cell/cell.iff 11 0 0 0 1 0 0 0 $| +1211533 1855471 object/tangible/quest/corellia_coronet_meatlump_act1_shipment.iff 11 16.5376 3.35159 -25.4146 0.707107 0 0.707106 0 $| +1855473 0 object/building/corellia/association_hall_civilian_corellia.iff 0 1772.42 28 1424.24 1 0 0 0 $| +1855474 1855473 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| +1855475 1855473 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| +1855476 1855473 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| +1855477 1855473 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| +1855478 1855473 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| +1855479 1855473 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| +1855480 1855473 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| +1855481 1855473 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| +1855482 1855473 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| +1855483 1855473 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| +4608437 1855483 object/tangible/collection/rare_melee_kashyyyk_blade_stick.iff 10 -1.56429 2.48303 -14.5934 0.9832418 -0.12972 0.01449411 -0.12727 $| +1509607 1855483 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 10 0 1.75 -14 0.844588 0 -0.535416 0 $| +-7 1855483 object/tangible/npc/corellia_spawn/thracken_sal_solo.iff 10 5.5 1.2 -1.7 1 0 0 0 $| +1855484 1855473 object/cell/cell.iff 11 0 0 0 1 0 0 0 $| +3375685 1855484 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 11 1.4 1.7 -21.2 1 0 0 0 $| +1855485 1855473 object/cell/cell.iff 12 0 0 0 1 0 0 0 $| +1855486 1855473 object/cell/cell.iff 13 0 0 0 1 0 0 0 $| +1855487 1855473 object/cell/cell.iff 14 0 0 0 1 0 0 0 $| +1855488 1855473 object/cell/cell.iff 15 0 0 0 1 0 0 0 $| +1855489 1855473 object/cell/cell.iff 16 0 0 0 1 0 0 0 $| +1855490 1855473 object/cell/cell.iff 17 0 0 0 1 0 0 0 $| +1855491 0 object/building/corellia/cloning_corellia.iff 0 1548 28 1644 0.707109 0 0.707104 0 $| +1855492 1855491 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| +1855493 1855491 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| +1855494 1855491 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| +1855495 1855491 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| +1855496 1855491 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| +1855497 1855491 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| +1855498 0 object/building/corellia/garage_corellia.iff 0 1784.8 28 1353.22 8.32E-07 0 1 0 $| +1855499 0 object/building/corellia/guild_combat_corellia_style_01.iff 0 1788 28 1754 0.707106 0 0.707108 0 $| +1855500 1855499 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| +1855501 1855499 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| +1855502 1855499 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| +1855503 1855499 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| +1855504 1855499 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| +-13 1855504 object/tangible/npc/storyline_npc/coa3_tactical_rebel_spawner.iff 5 9.7 1.1 0.1 1 0 0 0 $| +1855505 1855499 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| +1855506 1855499 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| +1855507 1855499 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| +1855508 1855499 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| +1855509 0 object/building/corellia/guild_commerce_corellia_style_01.iff 0 1888 28 1754 -0.707106 0 0.707108 0 $| +1855510 1855509 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| +1855511 1855509 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| +1855512 1855509 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| +1855513 1855509 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| +1855514 1855509 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| +1855515 1855509 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| +1855516 1855509 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| +-12 1855516 object/tangible/npc/storyline_npc/coa3_information_rebel_spawner.iff 7 14.1 1.1 -9.1 1 0 0 0 $| +1855517 1855509 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| +1855518 1855509 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| +1855529 0 object/building/corellia/hospital_corellia.iff 0 1958 28 1704 -1.67E-06 0 1 0 theme_park.dungeon.generic_spawner spawn_table|4|datatables/spawning/ep3/ep3_coronet_medical_center.iff|$| +1855530 1855529 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| +1855531 1855529 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| +1211544 1855531 object/tangible/poi/spawnegg/interior_spawnegg.iff 2 15.67 0.26 -3.536 1 0 0 0 intRandomYaw|0|1|$| +1855532 1855529 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| +1855533 1855529 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| +1855534 1855529 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| +1855535 1855529 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| +1855536 1855529 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| +1855537 1855529 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| +1855538 1855529 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| +1855539 1855529 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| +1855540 1855529 object/cell/cell.iff 11 0 0 0 1 0 0 0 $| +1855541 1855529 object/cell/cell.iff 12 0 0 0 1 0 0 0 $| +1855542 1855529 object/cell/cell.iff 13 0 0 0 1 0 0 0 $| +1855543 1855529 object/cell/cell.iff 14 0 0 0 1 0 0 0 $| +1855544 0 object/building/corellia/hotel_corellia.iff 0 1586 28 1471 0.70711 0 -0.707104 0 $| +1855545 1855544 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| +1855546 1855544 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| +1855547 1855544 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| +1855548 1855544 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| +1094962 1855548 object/tangible/gambling/slot/standard.iff 1 4.31708 1.35331 -22.14906 0.9999964 0 0.002698069 0 $| +1094963 1855548 object/tangible/gambling/slot/standard.iff 2 0.2440479 1.352409 -22.06592 0.9999964 0 0.002698069 0 $| +1094964 1855548 object/tangible/gambling/wheel/roulette.iff 3 -1.177133 1.162605 -16.19081 0.9999964 0 0.002698069 0 $| +1094965 1855548 object/tangible/gambling/wheel/roulette.iff 4 9.467048 1.163567 -16.30754 0.9999964 0 0.002698069 0 $| +1094966 1855548 object/tangible/gambling/slot/standard.iff 5 8.357725 1.35331 -22.29336 0.9999964 0 0.002698069 0 $| +1855549 1855544 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| +1855550 1855544 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| +1094956 1855550 object/tangible/gambling/wheel/roulette.iff 1 -15.87479 1.000944 -0.1205326 0.9999734 0 -0.007301865 0 $| +1094957 1855550 object/tangible/gambling/wheel/roulette.iff 2 -15.92515 1.000959 4.248792 0.9999734 0 -0.007301865 0 $| +1094958 1855550 object/tangible/gambling/slot/standard.iff 3 -12.28831 1.000776 -0.09216459 -0.7019242 0 0.7122527 0 $| +1094959 1855550 object/tangible/gambling/slot/standard.iff 4 -12.08542 1.000623 -0.1099437 0.7122518 0 0.701924 0 $| +1094960 1855550 object/tangible/gambling/slot/standard.iff 5 -12.01161 1.000883 4.197353 0.7032807 0 0.7109124 0 $| +1094961 1855550 object/tangible/gambling/slot/standard.iff 6 -12.21349 1.00073 4.220461 0.7109085 0 -0.703285 0 $| +1855551 1855544 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| +-5 1855551 object/tangible/npc/corellia_spawn/grobber.iff 7 -15.2 1 -8.4 1 0 0 0 $| +1855552 1855544 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| +1855553 1855544 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| +1855554 1855544 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| +-8 1855554 object/tangible/npc/corellia_spawn/zekka_thyne.iff 10 -23 1.6 -15 0.7071067812 0 0.7071067812 0 $| +1855555 0 object/building/corellia/shuttleport_corellia.iff 0 2022.33 28 1754.22 0.70711 0 -0.707104 0 structure.municipal.starport:planet_map.map_loc travel.cost|0|200|travel.ground_time|0|300|travel.is_shuttleport|0|1|travel.point_name|4|Coronet Shuttleport A|travel.shuttle_available|0|1|travel.version|0|3|$| +1855572 0 object/building/corellia/shuttleport_corellia.iff 0 1718.23 28 1522.77 -0.707106 0 0.707107 0 structure.municipal.starport:planet_map.map_loc travel.cost|0|200|travel.ground_time|0|300|travel.is_shuttleport|0|1|travel.point_name|4|Coronet Shuttleport B|travel.shuttle_available|0|1|travel.version|0|3|$| +1855573 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1671.08 28 1738.88 0.382687 0 0.923878 0 $| +1855587 0 object/building/corellia/filler_building_corellia_style_03.iff 0 2038.05 28 1655.64 0.707108 0 -0.707105 0 $| +1855594 0 object/building/corellia/filler_building_corellia_style_07.iff 0 1648 28 1404 0.707107 0 0.707107 0 $| +1855604 0 object/building/corellia/filler_building_corellia_style_01.iff 0 1762 28 1504 1 0 0 0 $| +1855611 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1927.14 28 1567.07 0.707106 0 0.707108 0 $| +1855618 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 1718 28 1404 1 0 0 0 $| +1855624 0 object/building/corellia/filler_building_corellia_style_05.iff 0 1727.67 28 1724.32 0.707109 0 -0.707105 0 $| +1855631 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1668 28 1524 1 0 0 0 $| +1855671 0 object/building/corellia/starport_corellia.iff 0 1996.71 28 1409.2 0.756336 0 -0.654183 0 structure.municipal.starport:theme_park.dungeon.generic_spawner travel.air_time|0|60|travel.cost|0|150|travel.ground_time|0|300|travel.point_name|4|Coronet Starport|travel.shuttle_available|0|1|travel.version|0|3|spawn_table|4|datatables/spawning/building_spawns/coronet_starport.iff|$| +1855672 1855671 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| +1855673 1855671 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| +1855674 1855671 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| +1855675 1855671 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| +3095701 1855675 object/tangible/terminal/terminal_space.iff 4 -0.173982 0.639421 57.3552 3.20013E-08 0 1 0 $| +3095702 1855675 object/tangible/terminal/terminal_space.iff 4 -0.306201 0.639422 62.2415 1 0 0 0 $| +3095703 1855675 object/tangible/terminal/terminal_space.iff 4 -10.3892 0.639423 57.4145 -3.20013E-08 0 1 0 $| +3095704 1855675 object/tangible/terminal/terminal_space.iff 4 -10.5966 0.639424 62.3669 1 0 0 0 $| +3095705 1855675 object/tangible/terminal/terminal_space.iff 4 10.0577 0.639422 57.249 -0.00689757 0 0.999976 0 $| +3095706 1855675 object/tangible/terminal/terminal_space.iff 4 9.91856 0.639422 62.2038 0.999976 0 0.00689846 0 $| +4335596 1855675 object/tangible/terminal/terminal_newsnet.iff 4 6.90764 0.639421 49.498 1 0 0 0 $| +4335597 1855675 object/tangible/terminal/terminal_newsnet.iff 4 -8.32585 0.639421 49.7909 1 0 0 0 $| +1855676 1855671 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| +1855677 1855671 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| +1855678 1855671 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| +1855679 1855671 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| +1855680 1855671 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| +1855681 1855671 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| +1509602 1855681 object/tangible/terminal/terminal_space.iff 10 -40.4311 1.63942 46.4818 0.997529 0 -0.0702515 0 $| +1509603 1855681 object/tangible/terminal/terminal_space.iff 10 -37.9437 1.63942 49.2991 0.753583 0 -0.657353 0 $| +1509604 1855681 object/tangible/terminal/terminal_space.iff 10 -44.1634 1.63942 50.1721 0.648034 0 0.761611 0 $| +1509605 1855681 object/tangible/terminal/terminal_space.iff 10 -41.6075 1.63942 52.927 0.057976 0 0.998318 0 $| +1855682 1855671 object/cell/cell.iff 11 0 0 0 1 0 0 0 $| +1855683 1855671 object/cell/cell.iff 12 0 0 0 1 0 0 0 $| +5245543 1855683 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 12 -44.7 2.6 35.2 0.70711 0 -0.70711 0 $| +1855684 1855671 object/cell/cell.iff 13 0 0 0 1 0 0 0 $| +1211512 1855684 object/tangible/poi/spawnegg/interior_spawnegg.iff 13 50 1 22.9 1 0 0 0 intRandomYaw|0|1|$| +1855685 1855671 object/cell/cell.iff 14 0 0 0 1 0 0 0 $| +1509606 1855685 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 14 -56.6 1 8.6 0.89101 0 -0.45399 0 $| +1855686 1855671 object/cell/cell.iff 15 0 0 0 1 0 0 0 $| +5625466 1855671 object/cell/cell.iff 16 0 0 0 1 0 0 0 $| +1855687 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1968 28 1644 1 0 0 0 $| +1855694 0 object/static/structure/corellia/corl_fountain_statue_heroic_s01.iff 0 1838 28 1674 0.707106 0 0.707107 0 theme_park.script_spawner.spawner_methods.gcw_spawner $| +1855695 0 object/static/structure/corellia/corl_fountain_statue_contemplate_s01.iff 0 1838 28 1714 -0.707106 0 0.707107 0 $| +1855696 0 object/static/structure/corellia/corl_fountain_circle_s01.iff 0 1838 28 1694 -3.2E-08 0 1 0 $| +1855697 0 object/static/structure/corellia/corl_fountain_brazier_round_s01.iff 0 1853.24 28 1639.35 1 0 0 0 $| +1855698 0 object/static/structure/corellia/corl_fountain_brazier_round_s01.iff 0 1822.72 28 1639.35 1 0 0 0 $| +1855699 0 object/static/structure/corellia/corl_fountain_rectangle_s01.iff 0 1838 28 1754 -3.2E-08 0 1 0 $| +1855700 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 1768 28 1574 0.707102 0 0.707111 0 $| +1855713 0 object/building/corellia/filler_building_corellia_style_01.iff 0 1718 28 1574 0.707109 0 -0.707105 0 $| +1905352 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1668 28 1500 1 0 0 0 $| +1905353 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1646 28 1500 1 0 0 0 $| +1905355 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1630 28 1492 0.707109 0 -0.707104 0 $| +1905356 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1630 28 1500 1 0 0 0 $| +1905357 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1630 28 1478 0.707109 0 -0.707104 0 $| +1905358 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1630 28 1464 0.707124 0 -0.707089 0 $| +1905359 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1630 28 1456 0.707107 0 0.707107 0 $| +1905360 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1700.61 28 1440 1 0 0 0 $| +1905361 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1646 28 1456 1 0 0 0 $| +1905362 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1722 28 1440 1 0 0 0 $| +1905363 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1738 28 1476 0.70712 0 -0.707093 0 $| +1905364 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1738 28 1484 0.707108 0 -0.707106 0 $| +1905365 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1738 28 1462 0.70712 0 -0.707093 0 $| +1905366 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1738 28 1492 0.7071 0 0.707113 0 $| +1905367 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1738 28 1500 -3.2E-08 0 1 0 $| +1905368 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1556 28 1497 1 0 0 0 $| +1905372 0 object/building/corellia/filler_building_corellia_style_05.iff 0 1538 28 1564 0.707108 0 -0.707105 0 $| +1905379 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 1588 28 1524 1 0 0 0 $| +1905385 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1484.68 28 1604.21 -0.707105 0 0.707108 0 $| +1905404 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1564 28 1497 1 0 0 0 $| +1905408 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1524 28 1477 0.707109 0 -0.707104 0 $| +1905409 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1544 28 1497 1 0 0 0 $| +1905412 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1532 28 1497 -3.2E-08 0 1 0 $| +1905413 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1524 28 1497 -3.2E-08 0 1 0 $| +1905414 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1524 28 1489 0.707108 0 0.707105 0 $| +1905426 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1524 28 1445 0 0 1 0 $| +1905427 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1532 28 1445 0 0 1 0 $| +1905428 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1544 28 1445 1 0 0 0 $| +1905429 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1556 28 1445 1 0 0 0 $| +1905430 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1564 28 1445 1 0 0 0 $| +1905431 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1524 28 1453 0.707108 0 -0.707105 0 $| +1905436 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1524 28 1465 0.707122 0 -0.707091 0 $| +1905459 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1706 28 1500 0 0 1 0 $| +1905460 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1690 28 1500 1 0 0 0 $| +1905461 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1662 28 1456 1 0 0 0 $| +1905462 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1678 28 1456 1 0 0 0 $| +1905488 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1625.01 28 1674.57 -0.707105 0 0.707108 0 $| +1905495 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1484.68 28 1684.21 -0.707105 0 0.707108 0 $| +1905502 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1478 28 1854 0.923879 0 -0.382685 0 $| +1905563 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 2033.38 28 1914.87 1 0 0 0 $| +1905570 0 object/building/corellia/filler_building_corellia_style_05.iff 0 2008 28 1854 -0.382683 0 0.92388 0 $| +1905577 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 2028.52 28 1804.58 0.707106 0 0.707107 0 $| +1905583 0 object/building/corellia/filler_building_corellia_style_06.iff 0 1918 28 1884 0.707105 0 0.707108 0 $| +1905594 0 object/building/corellia/filler_building_corellia_style_04.iff 0 1778 28 1884 1 0 0 0 $| +1905599 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1721.46 28 1875.99 -0.707105 0 0.707108 0 $| +1905606 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 1648 28 1954 1 0 0 0 $| +1905612 0 object/building/corellia/filler_building_corellia_style_03.iff 0 1578 28 1954 0.923879 0 0.382684 0 $| +1905619 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 1538 28 1904 0.92388 0 -0.382683 0 $| +1935565 0 object/building/corellia/association_hall_civilian_corellia.iff 0 1838 28 1824 2.06E-06 0 1 0 $| +1935566 1935565 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| +1935567 1935565 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| +1935568 1935565 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| +1935569 1935565 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| +1935570 1935565 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| +1935571 1935565 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| +1935572 1935565 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| +1935573 1935565 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| +1935574 1935565 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| +1935575 1935565 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| +-6 1935575 object/tangible/npc/corellia_spawn/sergeant_tarl.iff 10 -5.8 1.2 -2.8 0 0 1 0 $| +1935576 1935565 object/cell/cell.iff 11 0 0 0 1 0 0 0 $| +-11 1935576 object/tangible/npc/corellia_spawn/captain_gilad_pellaeon.iff 11 -11.3 1.7 -21 0.3090169944 0 0.9510565163 0 $| +1935577 1935565 object/cell/cell.iff 12 0 0 0 1 0 0 0 $| +1935578 1935565 object/cell/cell.iff 13 0 0 0 1 0 0 0 $| +1935579 1935565 object/cell/cell.iff 14 0 0 0 1 0 0 0 $| +1935580 1935565 object/cell/cell.iff 15 0 0 0 1 0 0 0 $| +1935581 1935565 object/cell/cell.iff 16 0 0 0 1 0 0 0 $| +1935582 1935565 object/cell/cell.iff 17 0 0 0 1 0 0 0 $| +2005443 0 object/building/corellia/filler_slum_16x32_s02.iff 0 1539.62 28 1761.55 0.382683 0 0.92388 0 $| +2005447 0 object/building/corellia/filler_slum_16x32_s01.iff 0 1581.83 28 1719.58 0.382683 0 0.92388 0 $| +2005449 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1564.13 28 1734.68 0.92388 0 -0.382683 0 $| +2005451 0 object/building/corellia/filler_slum_16x32_s02.iff 0 1513.2 28 1643.94 1 0 0 0 $| +2005455 0 object/building/corellia/filler_slum_16x32_s01.iff 0 1505.42 28 1801.8 0.92388 0 -0.382683 0 $| +2005457 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1508.29 28 1759.86 0.382683 0 0.92388 0 $| +2005459 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1480.65 28 1794.46 -0.382684 0 0.923879 0 $| +2005461 0 object/building/corellia/filler_slum_16x32_s02.iff 0 1480.24 28 1769.02 0.382683 0 0.92388 0 $| +2005465 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1512.94 28 1668 1 0 0 0 $| +2005467 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1512.9 28 1690.39 1 0 0 0 $| +2005469 0 object/building/corellia/filler_slum_16x32_s01.iff 0 1537.95 28 1689.52 0.707107 0 0.707107 0 $| +2005471 0 object/building/corellia/filler_slum_16x32_s02.iff 0 1514.94 28 1714.19 -7.48E-07 0 1 0 $| +2005475 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1524.13 28 1743.74 -0.382684 0 0.923879 0 $| +2005477 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1564.42 28 1709.26 0.923879 0 0.382684 0 $| +2005479 0 object/building/corellia/filler_slum_16x32_s01.iff 0 1587.38 28 1685.2 -7.48E-07 0 1 0 $| +2005481 0 object/building/corellia/filler_slum_16x32_s02.iff 0 1585.2 28 1646.07 -1E-06 0 1 0 $| +2005485 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1582.45 28 1620.81 1 0 0 0 $| +2005487 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1586.31 28 1602.02 0.707108 0 -0.707106 0 $| +2005489 0 object/building/corellia/filler_slum_16x32_s01.iff 0 1560.38 28 1599.35 0.707109 0 -0.707105 0 $| +2005491 0 object/building/corellia/filler_slum_16x32_s01.iff 0 1514.21 28 1609.66 -1E-06 0 1 0 $| +2005493 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1532.62 28 1599.44 1 0 0 0 $| +2005495 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 1819.72 28 1384.97 0.707109 0 -0.707105 0 $| +2035352 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1497.54 28 1517.53 -4.79E-06 0 1 0 $| +2035353 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1532.54 28 1517.53 0.707108 0 -0.707105 0 $| +2035354 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1489.54 28 1517.53 1 0 0 0 $| +2035355 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1524.54 28 1517.53 -1.62E-05 0 1 0 $| +2035356 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1511.54 28 1517.53 -4.79E-06 0 1 0 $| +2035357 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1548.94 28 1517.68 1 0 0 0 $| +2035360 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.38 27.8592 1517.61 0.92388 0 -0.382683 0 $| +2035364 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.38 28 1550.74 0.707108 0 0.707105 0 $| +2035369 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.37 28 1584 0.707107 0 0.707107 0 $| +2035370 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1456.3 28 1567.35 0.707107 0 0.707107 0 $| +2035377 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.35 28 1617.26 -0.707107 0 0.707107 0 $| +2035379 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1456.37 28 1600.6 -0.707107 0 0.707107 0 $| +2035385 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.39 28 1750.06 0 0 1 0 $| +2035386 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.36 28 1716.84 -0.707107 0 0.707107 0 $| +2035387 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1456.43 28 1733.49 -0.707107 0 0.707107 0 $| +2035388 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1456.44 28 1700.23 -0.707107 0 0.707107 0 $| +2035389 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.43 28 1683.89 0.707107 0 0.707107 0 $| +2035394 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1456.51 28 1799.87 -0.707107 0 0.707107 0 $| +2035395 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.51 28 1783.27 0.707107 0 0.707107 0 $| +2035396 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1456.44 28 1766.62 0.707107 0 0.707107 0 $| +2035464 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1738 28 1448 0.707104 0 0.707109 0 $| +2035466 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1738 28 1440 0 0 1 0 $| +2035467 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1694 28 1448 0.707104 0 0.707109 0 $| +2035468 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1694 28 1440 0.707108 0 0.707106 0 $| +2035469 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1694 28 1456 0.707107 0 0.707107 0 $| +2035470 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1620.94 28 1383.44 -0.382683 0 0.92388 0 $| +2035471 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1615.28 28 1389.09 -0.382698 0 0.923873 0 $| +2035472 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1606.09 28 1398.28 -0.382688 0 0.923878 0 $| +2035473 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1596.19 28 1408.18 -0.382688 0 0.923878 0 $| +2035474 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1590.65 28 1413.96 0.832218 0 0.554448 0 $| +2035475 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1590.45 28 1429.95 0.707108 0 0.707105 0 $| +2035476 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1632.6 28 1371.76 0.923879 0 0.382684 0 $| +2035477 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1660.02 28 1360.41 1 0 0 0 $| +2035478 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1644.02 28 1360.56 -0.196413 0 0.980521 0 $| +2035492 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1676.39 28 1360.42 7.48E-07 0 1 0 $| +2035493 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1692.39 28 1360.42 1 0 0 0 $| +2035496 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1724.39 28 1360.42 1 0 0 0 $| +2035497 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1708.39 28 1360.42 1E-06 0 1 0 $| +2035502 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1746.39 28 1360.42 -4.48E-06 0 1 0 $| +2035522 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1753.25 28 1360.41 1E-06 0 1 0 $| +2035523 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1807 28 1357 1 0 0 0 $| +2035524 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1761.64 28 1360.4 1 0 0 0 $| +2035528 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1804 28 1357 0.707109 0 0.707104 0 $| +2035529 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1829.24 28 1330.91 0.82381 0 0.566866 0 $| +2035531 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1840.51 28 1319.4 -0.382684 0 0.923879 0 $| +2035540 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1852.25 28 1307.65 0.92388 0 0.382683 0 $| +2035676 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 2043.02 28 1628.8 0.707109 0 0.707105 0 $| +2035677 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 2043.06 28 1623.8 1 0 0 0 $| +2035678 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 2043.06 28 1633.7 0.707109 0 0.707105 0 $| +2035681 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 2009.02 28 1640.85 1 0 0 0 $| +2035682 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 2020.85 28 1640.84 1 0 0 0 $| +2035683 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1997.29 28 1640.82 1 0 0 0 $| +2035685 0 object/static/structure/corellia/corl_imprv_arch_lg_s02.iff 0 1974.74 33.6515 1679.43 0.707109 -0.707104 0 0 $| +2035686 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1971.53 28 1673.57 1 0 0 0 $| +2035687 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1977.64 28 1673.4 1 0 0 0 $| +2035794 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1938.02 28 1673.71 1 0 0 0 $| +2035795 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1944.13 28 1673.54 1 0 0 0 $| +2035796 0 object/static/structure/corellia/corl_imprv_arch_lg_s02.iff 0 1941.23 33.674 1679.58 0.707119 -0.707094 0 0 $| +2035797 0 object/static/structure/corellia/corl_imprv_arch_lg_s02.iff 0 1974.78 33.6732 1728.59 0.707104 0.707109 0 0 $| +2035798 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1978.08 28 1734.35 1 0 0 0 $| +2035799 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1971.97 28 1734.52 1 0 0 0 $| +2035800 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1938.29 28 1734.54 1 0 0 0 $| +2035801 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1944.4 28 1734.37 1 0 0 0 $| +2035802 0 object/static/structure/corellia/corl_imprv_arch_lg_s02.iff 0 1941.21 33.6737 1728.52 0.707098 0.707115 0 0 $| +2035809 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 2033.06 34.588 1704.92 0.70711 0.707104 0 0 $| +2035810 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 2033.06 34.588 1702.92 0.707109 -0.707104 0 0 $| +2035811 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 2037.18 28.611 1698.92 1 0 0 0 $| +2035812 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 2028.81 28.611 1698.92 1 0 0 0 $| +2035813 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 2028.81 28.611 1708.92 1 0 0 0 $| +2035814 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 2037.18 28.611 1708.93 1 0 0 0 $| +2055352 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1873.31 28 1620.94 1 0 0 0 $| +2055353 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1862.1 28 1620.91 1 0 0 0 $| +2055354 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1884.72 28 1620.89 1 0 0 0 $| +2055355 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1864 28 1635 1 0 0 0 $| +2055360 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1917.33 28 1609.1 0.707108 0 -0.707105 0 $| +2055361 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1917.36 28 1597.89 0.707108 0 -0.707105 0 $| +2055362 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1917.37 28 1620.51 0.707108 0 -0.707105 0 $| +2055363 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1930.53 28 1633.83 -1.84E-06 0 1 0 $| +2055366 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1859 28 1635 1 0 0 0 $| +2055368 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1869 28 1635 1 0 0 0 $| +2055370 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1812 28 1635 1 0 0 0 $| +2055371 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1807 28 1635 1 0 0 0 $| +2055372 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1817 28 1635 1 0 0 0 $| +2055374 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1931.51 28 1655.69 -2E-06 0 1 0 $| +2055391 0 object/static/structure/corellia/corl_imprv_gate_sm_s02.iff 0 1456.32 28 1637.81 0.707109 0 -0.707104 0 $| +2055392 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1456.37 28 1650.59 0.707109 0 -0.707104 0 $| +2055393 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1456.37 28 1625.84 -0.707107 0 0.707107 0 $| +2055394 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.37 28 1642.59 0.707109 0 0.707104 0 $| +2055395 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1456.4 28 1675.35 -0.707107 0 0.707107 0 $| +2055396 0 object/static/structure/corellia/corl_imprv_gate_sm_s02.iff 0 1456.39 28 1663.4 0.707132 0 -0.707081 0 $| +2055417 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.37 28 1658.59 0.707107 0 0.707107 0 $| +2055468 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1456.49 28 1831.72 0.707108 0 -0.707105 0 $| +2055469 0 object/static/structure/corellia/corl_imprv_gate_sm_s02.iff 0 1456.52 28 1819.79 0.707108 0 -0.707105 0 $| +2055473 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1472.8 28 1786.09 0.92388 0 -0.382683 0 $| +2055474 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1472.35 28 1763.53 -0.382684 0 0.923879 0 $| +2055476 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1461.3 28 1774.62 0.92388 0 -0.382683 0 $| +2055477 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1495.16 28 1740.77 -0.382684 0 0.923879 0 $| +2055478 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1483.97 28 1751.92 -0.382684 0 0.923879 0 $| +2055479 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1506.01 28 1729.12 0.707118 0 -0.707095 0 $| +2055480 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1506.03 28 1713.62 0.707105 0 0.707107 0 $| +2055495 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1893.85 28 1485.53 1 0 0 0 $| +2055525 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1827.99 28 1424.82 0.707108 0 -0.707105 0 $| +2055526 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1828.05 28 1437.72 0.707108 0 -0.707105 0 $| +2055527 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1828.04 28 1412.02 0.707108 0 -0.707105 0 $| +2055528 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1751.81 27.3265 1403.75 1 0 0 0 $| +2055529 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1750.52 26.7288 1430.12 0.707108 0 -0.707105 0 $| +2055530 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1800.4 28 1445.93 1 0 0 0 $| +2055532 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1800.4 28 1435.09 1 0 0 0 $| +2055535 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1934.81 28 1527.75 0.707109 0 0.707105 0 $| +2055536 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1776.27 28 1545.62 0.707108 0 -0.707105 0 $| +2055537 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1776.26 27.5985 1519.92 0.707108 0 -0.707105 0 $| +2055538 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1776.21 27.89 1532.72 0.707108 0 -0.707105 0 $| +2055647 0 object/static/structure/corellia/corl_imprv_gate_sm_s03.iff 0 1634.44 28 1634.12 0.707106 0 0.707107 0 $| +2055649 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1634.43 28 1622.51 0.707108 0 -0.707105 0 $| +2055651 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1634.41 28 1645.97 -0.707107 0 0.707107 0 $| +2055652 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1635 28 1702 0.92388 0 -0.382683 0 $| +2055653 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1651 28 1718 0.92388 0 -0.382683 0 $| +2055654 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1643 28 1710 0.92388 0 -0.382683 0 $| +2055672 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1594.27 28 1714.1 -0.191508 0 0.981491 0 $| +2055673 0 object/static/structure/corellia/corl_imprv_gate_sm_s03.iff 0 1605.26 28 1709.67 0.981491 0 0.191509 0 $| +2055674 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1616.02 28 1705.3 -0.191509 0 0.981491 0 $| +2055675 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1586.61 28 1698.26 0.707108 0 0.707105 0 $| +2055676 0 object/static/structure/corellia/corl_imprv_gate_sm_s03.iff 0 1590 28 1666 0.707107 0 0.707107 0 $| +2055677 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1583.33 28 1629.54 0.707107 0 0.707107 0 $| +2055678 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1586.5 28 1611.32 0.707107 0 0.707107 0 $| +2055679 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1545.1 28 1599.34 1 0 0 0 $| +2055680 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1516.26 28 1622.81 0.707108 0 -0.707105 0 $| +2055681 0 object/static/structure/corellia/corl_imprv_gate_sm_s03.iff 0 1512.71 28 1679.21 -0.707107 0 0.707107 0 $| +2055682 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1522.57 28 1686.18 1 0 0 0 $| +2055683 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1520.92 28 1693.27 3.48E-07 0 1 0 $| +2055686 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1574.06 28 1712.65 0.382684 0 0.92388 0 $| +2055691 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1505.94 28 1698.29 0.707124 0 -0.707089 0 $| +2055695 0 object/static/structure/corellia/corl_imprv_arch_lg_s02.iff 0 1553.78 28 1744.65 -0.382683 0 0.92388 0 $| +2055696 0 object/static/structure/corellia/corl_imprv_column_s03.iff 0 1558.45 26.7525 1739.98 0.92388 0 0.382683 0 $| +2055699 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1530.84 27.6665 1756.73 0.923879 0 -0.382685 0 $| +2055700 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1513.82 28 1749.26 -0.382682 0 0.92388 0 $| +2055701 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1489.27 28.3531 1803.3 0.923879 0 -0.382685 0 $| +2055703 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1616.52 28 1727.5 0.382683 0 0.92388 0 $| +2055706 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1509.27 28 1576.32 1 0 0 0 $| +2055707 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1568.33 28 1576.43 1 0 0 0 $| +2055713 0 object/static/structure/corellia/corl_imprv_gate_sm_s02.iff 0 1588.33 28 1576.43 1 0 0 0 $| +2055718 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1608.33 28 1576.43 1 0 0 0 $| +2075368 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1699.1 28 1758.2 0.92388 0 -0.382683 0 $| +2075369 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1692.21 28 1765.11 0.92388 0 -0.382683 0 $| +2075370 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1762.02 28 1682 0.707108 0 -0.707105 0 $| +2075371 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1773.99 28 1681.98 0.707108 0 -0.707105 0 $| +2075372 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1795.98 28 1728.77 0.707109 0 -0.707104 0 $| +2075373 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1795.98 28 1723.77 0.707108 0 -0.707105 0 $| +2075374 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1795.98 28 1733.77 -0.707107 0 0.707107 0 $| +2075375 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1761.8 28 1730.74 -0.707107 0 0.707107 0 $| +2075376 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1761.8 28 1725.74 0.707122 0 -0.707091 0 $| +2075377 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1761.8 28 1735.74 -0.707107 0 0.707107 0 $| +2075379 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1761.83 28 1744.29 0.707108 0 -0.707105 0 $| +2075380 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1761.85 28 1761.38 -0.707107 0 0.707107 0 $| +2075381 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1761.82 28 1752.84 -0.707107 0 0.707107 0 $| +2075382 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1767.66 28 1775.47 0.923879 0 -0.382684 0 $| +2075383 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1761.59 28 1769.45 0.923879 0 -0.382684 0 $| +2075384 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1789.8 28 1780.92 0.707107 0 0.707107 0 $| +2075386 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1781.26 28 1780.95 3.2E-08 0 1 0 $| +2075387 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1773.09 28 1780.94 1 0 0 0 $| +2075395 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1902.61 28 1781.15 3.2E-08 0 1 0 $| +2075396 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1894.44 28 1781.14 1 0 0 0 $| +2075398 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1886.01 28 1781.17 -0.707107 0 0.707107 0 $| +2075399 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1914.4 28 1769.54 -0.382683 0 0.92388 0 $| +2075400 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1878.72 28 1728.79 0.707107 0 0.707107 0 $| +2075401 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1878.72 28 1733.79 0.707104 0 0.707109 0 $| +2075402 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1878.72 28 1723.79 0.707107 0 0.707107 0 $| +2075405 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1914.61 28 1735.83 0.707107 0 0.707107 0 $| +2075407 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1914.64 28 1744.38 -0.707107 0 0.707107 0 $| +2075408 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1914.65 28 1761.48 -0.707107 0 0.707107 0 $| +2075409 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1914.62 28 1752.93 -0.707107 0 0.707107 0 $| +2075410 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1908.38 28 1775.6 -0.382683 0 0.92388 0 $| +2075411 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1774.23 28 1606.35 0.707108 0 0.707105 0 $| +2075412 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1774.23 28 1616.35 0.707108 0 0.707105 0 $| +2075413 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1774.23 28 1611.35 0.707108 0 0.707105 0 $| +2115412 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 2042.44 28 1741.19 0 0 1 0 $| +2115413 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 2017.58 28 1770.11 0.707108 0 0.707105 0 $| +2115416 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 2037.53 28 1770.14 0.707108 0 0.707105 0 $| +2115422 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 2029.75 28 1851.48 -0.382683 0 0.92388 0 $| +2115567 0 object/building/corellia/filler_historic_32x16_s01.iff 0 1790.56 28 2009.69 1 0 0 0 $| +2115572 0 object/building/corellia/filler_historic_32x16_s02.iff 0 1791.39 27.9994 2047.45 1 0 0 0 $| +2115577 0 object/building/corellia/filler_historic_32x16_s02.iff 0 1890.28 28 2019.33 -3.2E-08 0 1 0 $| +2115588 0 object/building/corellia/filler_building_corellia_style_07.iff 0 1723.04 28 1951.86 0.92388 0 -0.382683 0 $| +2115614 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 1911.13 28 1953.89 0.707109 0 -0.707105 0 $| +2115620 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1971.7 28 1940.16 1 0 0 0 $| +2115655 0 object/static/structure/corellia/corl_power_connector.iff 0 1619.32 28 1564.09 0.92388 0 -0.382683 0 $| +2115656 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1603.13 28 1566.88 0.707122 0 0.707091 0 $| +2115657 0 object/static/structure/corellia/corl_power_transformer_s02.iff 0 1622.13 28 1566.88 0.707122 0 0.707091 0 $| +2115658 0 object/static/structure/corellia/corl_power_transformer_s02.iff 0 1598.13 28 1566.88 0.707122 0 0.707091 0 $| +2115659 0 object/static/structure/corellia/corl_power_connector.iff 0 1600.6 28 1569.33 0.92388 0 -0.382683 0 $| +2115660 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1610.13 28 1572.88 1 0 0 0 $| +2115661 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1617.13 28 1572.88 1 0 0 0 $| +2115662 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1603.13 28 1572.88 1 0 0 0 $| +2115663 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1610.13 28 1560.88 0 0 1 0 $| +2115664 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1617.13 28 1560.88 0 0 1 0 $| +2115665 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1603.13 28 1560.88 0 0 1 0 $| +2115666 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1610.13 28 1566.88 0.707122 0 0.707091 0 $| +2115667 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1617.13 28 1566.88 0.707122 0 0.707091 0 $| +2115671 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1669.69 28 1585.9 3.28E-06 0 1 0 $| +2115672 0 object/static/structure/corellia/corl_power_transformer_s02.iff 0 1669.69 28 1566.9 3.28E-06 0 1 0 $| +2115673 0 object/static/structure/corellia/corl_power_transformer_s02.iff 0 1669.69 28 1590.9 3.28E-06 0 1 0 $| +2115675 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1682.69 28 1578.9 0.707108 0 0.707105 0 $| +2115676 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1675.69 28 1571.9 0.707108 0 0.707105 0 $| +2115677 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1675.69 28 1585.9 0.707108 0 0.707105 0 $| +2115678 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1656.69 28 1578.9 0.707108 0 -0.707105 0 $| +2115679 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1663.69 28 1571.9 0.707108 0 -0.707105 0 $| +2115680 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1663.69 28 1585.9 0.707108 0 -0.707105 0 $| +2115681 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1669.69 28 1578.9 3.28E-06 0 1 0 $| +2115682 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1669.69 28 1571.9 3.28E-06 0 1 0 $| +2115690 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1591.74 28 1568 0.707108 0 -0.707105 0 $| +2115691 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1624.9 28 1561.07 0.707105 0 0.707108 0 $| +2115692 0 object/static/structure/corellia/corl_imprv_gate_sm_s02.iff 0 1591.71 28 1556.11 0.707108 0 -0.707105 0 $| +2115693 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1608.24 28 1552.67 1 0 0 0 $| +2115694 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1624.83 28 1552.71 1 0 0 0 $| +2115713 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1675.69 28 1578.9 3E-06 0 1 0 $| +2115714 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1663.69 28 1578.9 3E-06 0 1 0 $| +2115723 0 object/static/structure/corellia/corl_power_arial_prime.iff 0 1673.06 28 1582.94 1 0 0 0 $| +2115724 0 object/static/structure/corellia/corl_power_arial_thin.iff 0 1667.08 28 1575.05 1 0 0 0 $| +2115732 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1653.81 28 1578.57 0.707108 0 -0.707105 0 $| +2115733 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1685.81 28 1578.57 0.707108 0 -0.707105 0 $| +2115734 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1669.81 28 1562.57 1 0 0 0 $| +2115736 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1659.87 28 1599.36 0.941851 0 -0.33603 0 $| +2115737 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1679.69 28 1599.2 -0.336031 0 0.941851 0 $| +2115738 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1669.81 28 1604.57 1 0 0 0 $| +2115739 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1685.81 28 1562.57 1 0 0 0 $| +2115740 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1653.81 28 1562.57 1 0 0 0 $| +2115741 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1653.81 28 1594.57 0.707108 0 -0.707105 0 $| +2115742 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1685.81 28 1594.57 -0.707107 0 0.707107 0 $| +2115747 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1891.92 28.2757 2038.22 0.707108 0 -0.707105 0 $| +2115750 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1889.9 28 1997.68 -0.707107 0 0.707107 0 $| +2115751 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1898.22 28 1981.48 -7.34E-08 0 1 0 $| +2115752 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1889.89 28 1981.37 1 0 0 0 $| +2115753 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1789.24 28.0098 2029.37 0.707117 0 -0.707096 0 $| +2115754 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1775.41 28 1996.66 -1.84E-06 0 1 0 $| +2115758 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1931.78 28 1937.06 1 0 0 0 $| +2115759 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1943.42 28 1937.03 1 0 0 0 $| +2115760 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1919.8 28 1937.06 1 0 0 0 $| +2115762 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1994 28 1876 -0.382684 0 0.923879 0 $| +2115763 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1973 28 1889 1 0 0 0 $| +2115764 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1985 28 1885 0.92388 0 0.382683 0 $| +2115794 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1933.21 28 1815.21 0.92388 0 0.382683 0 $| +2115796 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1941.7 28 1806.72 0.92388 0 0.382683 0 $| +2115798 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1924.85 28 1823.25 0.929516 0 0.368783 0 $| +2115802 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1854 28 1848 1 0 0 0 $| +2115804 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1862 28 1832 0.707108 0 -0.707105 0 $| +2115806 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1862 28 1808 0.707108 0 -0.707105 0 $| +2115809 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1838 28 1848 1 0 0 0 $| +2115810 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1814 28 1832 -0.707107 0 0.707107 0 $| +2115815 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1822 28 1848 1 0 0 0 $| +2115816 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1814 28 1808 0.707108 0 -0.707105 0 $| +2115830 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1814 28 1800 0.707107 0 0.707107 0 $| +2115831 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1862 28 1800 0.707107 0 0.707107 0 $| +2115832 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1862 28 1848 0.707107 0 0.707107 0 $| +2115833 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1814 28 1848 0.707107 0 0.707107 0 $| +2115908 0 object/static/structure/corellia/corl_fountain_brazier_round_s01.iff 0 1839.19 28.5955 2021.34 1 0 0 0 $| +2115955 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1723 28 1997 1 0 0 0 $| +2115956 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1691 28 1997 1 0 0 0 $| +2115957 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1659 28 1997 1 0 0 0 $| +2115958 0 object/static/structure/corellia/corl_imprv_gate_sm_s02.iff 0 1742 28 1997 1 0 0 0 $| +2115965 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1627 28 1997 1 0 0 0 $| +2115966 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1592 28 1986 0.92388 0 -0.382683 0 $| +2115970 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1607 28 1997 1 0 0 0 $| +2115973 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1529.99 28 1926.31 0.382684 0 0.923879 0 $| +2115974 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1516.55 28 1912.87 0.382684 0 0.923879 0 $| +2115975 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1543.42 28 1939.74 0.382684 0 0.923879 0 $| +2115983 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1484.61 28 1903.79 0.92388 0 -0.382683 0 $| +2115984 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1477.54 28 1896.72 0.92388 0 -0.382683 0 $| +2115985 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1491.68 28 1910.86 0.92388 0 -0.382683 0 $| +2115986 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1481.32 28 1888.52 -0.382683 0 0.92388 0 $| +2115987 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1499.74 28 1907.15 -0.382683 0 0.92388 0 $| +2115988 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1505.35 28 1901.61 0.92388 0 -0.382683 0 $| +2115990 0 object/static/structure/corellia/corl_fountain_rectangle_s01.iff 0 1785 28 1957 -0.382684 0 0.923879 0 $| +2115991 0 object/static/structure/corellia/corl_fountain_rectangle_s01.iff 0 1780 28 1945 1 0 0 0 $| +2115992 0 object/static/structure/corellia/corl_fountain_rectangle_s01.iff 0 1785 28 1933 0.382684 0 0.923879 0 $| +2115998 0 object/static/structure/corellia/corl_fountain_brazier_square_s01.iff 0 1791 28 1945 1 0 0 0 $| +2116066 0 object/static/structure/corellia/corl_fountain_circle_s01.iff 0 2033 28 1704 1 0 0 0 $| +2116087 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 2009 33.7048 1717 -0.500001 -0.499999 -0.499999 0.500001 $| +2116095 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 2009 33.7048 1691 -0.500001 -0.499999 -0.499999 0.500001 $| +2116106 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 2035.75 28 1845.48 -0.382683 0 0.92388 0 $| +2116107 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 2035.75 28 1837.48 0.707107 0 0.707107 0 $| +2116109 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1896.75 28 1307.65 0.382684 0 0.923879 0 $| +2116110 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1908.5 28 1319.39 0.92388 0 -0.382682 0 $| +2116111 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1920.01 28 1330.66 0.181687 0 0.983356 0 $| +2116136 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1828.96 28 1349.18 0.707108 0 -0.707105 0 $| +2116138 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1828.96 28 1339.18 0.707108 0 -0.707105 0 $| +2116139 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1919.89 28 1338.72 0.707119 0 -0.707094 0 $| +2116140 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1919.8 28 1348.95 0.707118 0 -0.707095 0 $| +2116141 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1919.84 28 1359.12 0.707124 0 -0.707089 0 $| +2195355 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1863.94 25.3331 1664.03 1 0 0 0 $| +2195356 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1855.94 25.3331 1672.03 0.707111 0 -0.707102 0 $| +2195357 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1871.94 25.3331 1672.03 0.707107 0 0.707107 0 $| +2195358 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1863.94 25.3331 1680.03 3.2E-08 0 1 0 $| +2195381 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1871.94 28 1664.03 1 0 0 0 $| +2195382 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1855.94 28 1664.03 1 0 0 0 $| +2195383 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1871.94 28 1680.03 1 0 0 0 $| +2195384 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1855.94 28 1680.03 1 0 0 0 $| +2195395 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1816.17 25.3331 1680.08 0 0 1 0 $| +2195396 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1808.17 28 1680.08 1 0 0 0 $| +2195397 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1824.17 28 1664.08 1 0 0 0 $| +2195398 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1808.17 25.3331 1672.08 0.707128 0 -0.707085 0 $| +2195399 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1808.17 28 1664.08 1 0 0 0 $| +2195400 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1816.17 25.3331 1664.08 1 0 0 0 $| +2195401 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1824.17 25.3331 1672.08 0.707107 0 0.707107 0 $| +2195402 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1824.17 28 1680.08 1 0 0 0 $| +2195427 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1871.88 25.65 1400.12 0 0 1 0 $| +2195428 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1863.88 28 1400.12 1 0 0 0 $| +2195429 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1879.88 28 1384.12 1 0 0 0 $| +2195430 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1863.88 25.65 1392.12 0.70713 0 -0.707083 0 $| +2195431 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1863.88 28 1384.12 1 0 0 0 $| +2195432 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1871.88 25.65 1384.12 1 0 0 0 $| +2195433 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1879.88 25.65 1392.12 0.707107 0 0.707107 0 $| +2195434 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1879.88 28 1400.12 1 0 0 0 $| +2195435 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1848.1 25.65 1336.29 0 0 1 0 $| +2195436 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1840.1 28 1336.29 1 0 0 0 $| +2195437 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1856.1 28 1320.29 1 0 0 0 $| +2195438 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1840.1 25.65 1328.29 0.707126 0 -0.707087 0 $| +2195439 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1840.1 28 1320.29 1 0 0 0 $| +2195440 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1848.1 25.65 1320.29 1 0 0 0 $| +2195441 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1856.1 25.65 1328.29 0.707107 0 0.707107 0 $| +2195442 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1856.1 28 1336.29 1 0 0 0 $| +2195444 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1888.16 28 1336.15 1 0 0 0 $| +2195445 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1904.16 28 1320.15 1 0 0 0 $| +2195446 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1888.16 25.65 1328.15 0.707128 0 -0.707085 0 $| +2195447 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1888.16 28 1320.15 1 0 0 0 $| +2195448 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1896.16 25.65 1320.15 1 0 0 0 $| +2195449 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1904.16 25.65 1328.15 0.707107 0 0.707107 0 $| +2195450 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1904.16 28 1336.15 1 0 0 0 $| +2195452 0 object/static/structure/corellia/corl_fountain_statue_contemplate_s01.iff 0 1539.5 28 1470.5 1 0 0 0 $| +2195453 0 object/static/structure/general/bench_generic_style_1.iff 0 1565.89 28 1487.04 0.707108 0 -0.707105 0 $| +2195454 0 object/static/structure/general/bench_generic_style_1.iff 0 1565.91 28 1491.03 -0.707107 0 0.707107 0 $| +2195455 0 object/static/structure/general/bench_generic_style_1.iff 0 1565.77 28 1451.03 -0.707107 0 0.707107 0 $| +2195456 0 object/static/structure/general/bench_generic_style_1.iff 0 1565.79 28 1455.03 -0.707107 0 0.707107 0 $| +2195458 0 object/tangible/terminal/terminal_mission.iff 0 1559 28.9803 1478 0.92388 0 -0.382683 0 $| +2195459 0 object/tangible/terminal/terminal_mission.iff 0 1559 28.9803 1464 -0.382684 0 0.923879 0 $| +2195460 0 object/static/structure/general/bench_generic_style_1.iff 0 1536.73 28 1468.99 -0.707107 0 0.707107 0 $| +2195461 0 object/static/structure/general/bench_generic_style_1.iff 0 1536.74 28 1472.98 -0.707107 0 0.707107 0 $| +2195462 0 object/static/structure/general/bench_generic_style_1.iff 0 1542.25 28 1469.07 0.707107 0 0.707107 0 $| +2195463 0 object/static/structure/general/bench_generic_style_1.iff 0 1542.26 28 1473.07 0.707107 0 0.707107 0 $| +2195464 0 object/static/structure/corellia/corl_fountain_rectangle_s01.iff 0 1469.67 28 1531.58 1 0 0 0 $| +2195471 0 object/static/structure/general/bench_generic_style_1.iff 0 1461.7 28 1533.66 0.707107 0 0.707107 0 $| +2195472 0 object/static/structure/general/bench_generic_style_1.iff 0 1461.68 28 1529.66 0.707107 0 0.707107 0 $| +2195473 0 object/static/structure/general/bench_generic_style_1.iff 0 1477.73 28 1529.65 -0.707107 0 0.707107 0 $| +2195474 0 object/static/structure/general/bench_generic_style_1.iff 0 1477.74 28 1533.64 -0.707107 0 0.707107 0 $| +2195475 0 object/static/structure/general/bench_generic_style_1.iff 0 1467.68 28 1522.4 1 0 0 0 $| +2195476 0 object/static/structure/general/bench_generic_style_1.iff 0 1471.67 28 1522.38 1 0 0 0 $| +2195477 0 object/static/structure/general/bench_generic_style_1.iff 0 1471.68 28 1540.59 3.48E-07 0 1 0 $| +2195478 0 object/static/structure/general/bench_generic_style_1.iff 0 1467.69 28 1540.61 3.48E-07 0 1 0 $| +2195480 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1558.34 28.4782 1537.02 1 0 0 0 $| +2195481 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1616.1 28 1537.63 1 0 0 0 $| +2195482 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1591.01 28 1567.02 0.707108 0 -0.707105 0 $| +2195483 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1635.02 28 1524.98 0.707108 0 -0.707105 0 $| +2195484 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1609.42 28 1500.9 0.934124 0 0.356949 0 $| +2195485 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1609.55 28 1440.95 0.382683 0 0.92388 0 $| +2195490 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1713.04 28 1419.27 1 0 0 0 $| +2195493 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1619.93 28 1414.25 0.92388 0 -0.382681 0 $| +2195494 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1666.7 28 1385.75 0.382683 0 0.92388 0 $| +2195495 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1737.06 28 1389.29 3.2E-08 0 1 0 $| +2195497 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1852.22 28 1306.4 3.2E-08 0 1 0 $| +2195498 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1896.77 28 1306.35 3.2E-08 0 1 0 $| +2215353 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 2013.53 29.4336 1523.36 0.924759 0 -0.380554 0 $| +2215354 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1971.1 29.4369 1523.55 -0.384809 0 0.922996 0 $| +2215355 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1971.3 29.4369 1565.98 0.924757 0 -0.380557 0 $| +2215356 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 2013.72 29.4369 1565.78 -0.384809 0 0.922996 0 $| +2215369 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1867.03 28 1515.27 1 0 0 0 $| +2215370 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1798.73 28 1510.31 0.92388 0 -0.382683 0 $| +2215371 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1783.27 28 1579 0.707107 0 0.707107 0 $| +2215372 0 object/tangible/terminal/terminal_mission.iff 0 1820.77 28 1741.4 0.707109 0 0.707105 0 $| +2215373 0 object/tangible/terminal/terminal_mission.iff 0 1820.78 28 1766.84 0.70712 0 0.707093 0 $| +2215374 0 object/tangible/terminal/terminal_mission.iff 0 1855.31 28 1738.54 -0.707103 0 0.70711 0 $| +2215375 0 object/tangible/terminal/terminal_mission.iff 0 1855.01 28 1769.53 -0.707105 0 0.707108 0 $| +2215376 0 object/tangible/terminal/terminal_mission.iff 0 1853.06 28 1799.68 1.78E-06 0 1 0 $| +2215377 0 object/tangible/terminal/terminal_mission.iff 0 1822.97 28 1799.66 1.78E-06 0 1 0 $| +2215379 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1977.65 28 1672.16 -3.2E-08 0 1 0 $| +2215380 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1937.99 28 1672.65 -3.2E-08 0 1 0 $| +2215381 0 object/static/structure/general/streetlamp_large_style_01.iff 0 2013.31 28 1681.08 0.707107 0 0.707107 0 $| +2215382 0 object/static/structure/general/streetlamp_large_style_01.iff 0 2013.23 28 1727.04 0.707108 0 0.707105 0 $| +2365352 0 object/static/structure/general/bench_generic_style_1.iff 0 2033 28 1693 1 0 0 0 $| +2365355 0 object/static/structure/general/bench_generic_style_1.iff 0 2013 28 1720 0.707107 0 0.707107 0 $| +2365356 0 object/static/structure/general/bench_generic_style_1.iff 0 2013 28 1714 0.707107 0 0.707107 0 $| +2365357 0 object/static/structure/general/bench_generic_style_1.iff 0 2013 28 1694 0.707108 0 0.707105 0 $| +2365358 0 object/static/structure/general/bench_generic_style_1.iff 0 2013 28 1688 0.707108 0 0.707105 0 $| +2365359 0 object/static/structure/general/bench_generic_style_1.iff 0 2023 28 1704 0.707108 0 0.707105 0 $| +2365360 0 object/static/structure/general/bench_generic_style_1.iff 0 2043 28 1704 0.707108 0 -0.707105 0 $| +2365361 0 object/static/structure/general/bench_generic_style_1.iff 0 2033 28 1715 3.2E-08 0 1 0 $| +2365366 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1975.43 28 1758.05 3.2E-08 0 1 0 $| +2365367 0 object/static/structure/general/streetlamp_large_style_01.iff 0 2015.18 28 1799.07 0.707108 0 -0.707105 0 $| +2365368 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1957.65 28 1867.36 0.382683 0 0.92388 0 $| +2365369 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1878.22 28 1867.14 -0.382683 0 0.92388 0 $| +2365370 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1813.89 28 1798.99 -3.2E-08 0 1 0 $| +2365371 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1862.02 28 1799 -3.2E-08 0 1 0 $| +2365372 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1773 28 1781.93 1 0 0 0 $| +2365373 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1902.55 28 1782.05 1 0 0 0 $| +2365378 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1876.23 28 1688.61 -0.382686 0 0.923878 0 $| +2365379 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1797.46 28 1685.73 0.382683 0 0.92388 0 $| +2365391 0 object/building/corellia/guild_theater_corellia_s01.iff 0 1839.33 28 1995.87 -3.2E-08 0 1 0 $| +2365392 2365391 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| +2365393 2365391 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| +2365394 2365391 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| +2365395 2365391 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| +2365396 2365391 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| +2365397 2365391 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| +2365398 2365391 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| +2365399 2365391 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| +2365400 2365391 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| +2365401 2365391 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| +2365402 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1867.4 28.5911 1921.12 0.707108 0 0.707105 0 $| +2365403 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1865.46 28.5911 1919.07 3.2E-08 0 1 0 $| +2365404 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1813.34 28.5745 1919.05 1.84E-06 0 1 0 $| +2365405 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1811.29 28.5745 1920.99 0.707108 0 -0.707105 0 $| +2365406 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1811.19 28.5255 1965 0.707117 0 -0.707096 0 $| +2365407 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1811.11 28.5453 2005.04 0.707117 0 -0.707096 0 $| +2365408 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1867.41 28.5582 2004.91 0.707103 0 0.70711 0 $| +2365409 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1867.38 28.578 1964.97 0.707103 0 0.70711 0 $| +2365410 0 object/static/structure/general/bench_generic_style_1.iff 0 1810.72 28.5951 1944.95 0.707108 0 -0.707105 0 $| +2365411 0 object/static/structure/general/bench_generic_style_1.iff 0 1810.76 28.5951 1950.94 -0.707107 0 0.707107 0 $| +2365413 0 object/static/structure/general/bench_generic_style_1.iff 0 1810.76 28.5951 1938.9 -0.707107 0 0.707107 0 $| +2365415 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1814.05 28 1849.06 1 0 0 0 $| +2365416 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1862.1 28 1848.85 1 0 0 0 $| +2365417 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1751.07 28 1823.92 0.707108 0 -0.707105 0 $| +2365418 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1659.73 28 1748.33 0.92388 0 -0.382683 0 $| +2365421 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1759.58 28 1909.53 0.92388 0 -0.382684 0 $| +2365423 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1706.26 28 1887.04 0.707108 0 -0.707105 0 $| +2365424 0 object/static/structure/general/bench_generic_style_1.iff 0 1668.49 28 1936.68 -0.707107 0 0.707107 0 $| +2365425 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1666.92 28 1939.15 3.48E-07 0 1 0 $| +2365439 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1557.15 28 1878.96 0.92388 0 -0.382683 0 $| +2365440 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1492.98 28 1886.97 0.92388 0 0.382683 0 $| +2365442 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1536.3 28 1921.57 0.923879 0 -0.382684 0 $| +2365443 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1499.22 28 1817.95 0.996192 0 0.0871895 0 $| +2365465 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1508.27 28 1770.23 1 0 0 0 $| +2365466 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1523.15 28 1702.23 0.707107 0 0.707107 0 $| +2365468 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1657.95 28 1705.24 3.48E-07 0 1 0 $| +2365469 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1637.06 28 1642.97 0.707107 0 0.707107 0 $| +2365470 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1611.05 28 1591 -0.707107 0 0.707107 0 $| +2365471 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1550.02 28 1579.42 0.92388 0 0.382683 0 $| +2365472 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1499 28 1591.04 0.707107 0 0.707107 0 $| +2365473 0 object/static/structure/general/tankfarm_s01.iff 0 1550.29 28.9172 1625.17 3.2E-08 0 1 0 $| +2365474 0 object/static/structure/general/tankfarm_s01.iff 0 1552.86 28.3659 1620.85 0.707109 0 -0.707105 0 $| +2365475 0 object/static/installation/mockup_power_generator_photo_bio_style_1.iff 0 1552.46 29.2789 1667.91 0.707109 0 -0.707104 0 $| +2365476 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1579.01 28 1673.02 0.707108 0 -0.707105 0 $| +2365477 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1525 28 1682.88 3.2E-08 0 1 0 $| +2365478 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1505.15 28 1643.84 0.707107 0 -0.707106 0 $| +2365479 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1505.05 28 1715.07 0.707108 0 -0.707105 0 $| +2365480 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1469.86 28 1672.87 0.707108 0 -0.707105 0 $| +2365481 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1454.96 28 1641.11 0.707108 0 -0.707105 0 $| +2365482 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1470.78 28 1579.7 0.707107 0 -0.707106 0 $| +2365492 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1456.33 25.7018 1534.18 0.707108 0 -0.707105 0 $| +2365493 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1472.97 25.7018 1517.56 -1.84E-06 0 1 0 $| +2365497 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1498.59 28 1555.21 -0.523366 0 0.852108 0 $| +2365498 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1497.48 28 1552.5 0.990901 0 0.13459 0 $| +2365499 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1501.26 28 1555.09 0.774419 0 -0.632673 0 $| +2365500 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1498.32 28 1557.62 0.0142041 0 0.999899 0 $| +2365501 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1511.36 28 1553.09 0.924909 0 0.380188 0 $| +2365502 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1511.56 28 1556.01 0.0257937 0 0.999667 0 $| +2365503 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1508.79 28 1552.36 0.7485 0 0.663135 0 $| +2365504 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1512.38 28 1550.88 0.984726 0 -0.17411 0 $| +2365505 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1493.15 28 1547.08 1 0 0 0 $| +2365506 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1491.24 28 1549.3 0.403919 0 0.914795 0 $| +2365507 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1491.06 28 1545.18 0.917121 0 0.398609 0 $| +2365508 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1495.22 28 1545.02 0.844588 0 -0.535417 0 $| +2365509 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1495.06 28 1548.99 -0.371658 0 0.92837 0 $| +2365510 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1505.03 28 1544.87 0.92388 0 -0.382683 0 $| +2365511 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1502.11 28 1545.09 0.723244 0 0.690592 0 $| +2365512 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1504.9 28 1542.05 0.99985 0 0.0172997 0 $| +2365513 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1507.96 28 1544.88 -0.575402 0 0.817871 0 $| +2365514 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1505.03 28 1547.57 0.0119048 0 0.999929 0 $| +2365515 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1504.27 28 1562.83 -0.220474 0 0.975393 0 $| +2365516 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1505.04 28 1560.01 0.981338 0 -0.19229 0 $| +2365517 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1506.46 28 1564.37 -0.528897 0 0.848686 0 $| +2365518 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1502.59 28 1564.58 0.336032 0 0.94185 0 $| +2365528 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1743.58 28 1523.5 0.92388 0 -0.382683 0 $| +2365529 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1737.5 28 1592.55 0.92388 0 0.382681 0 $| +2365549 0 object/static/structure/general/streetlamp_large_style_01.iff 0 2043.77 28 1809.09 0.707108 0 0.707105 0 $| +2365554 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1940.38 28 1952.38 0.92388 0 -0.382683 0 $| +2365555 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1756.31 28 1963.31 0.92388 0 -0.382683 0 $| +2365556 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1753.4 28 1963.53 0.723242 0 0.690595 0 $| +2365557 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1756.19 28 1960.49 0.99985 0 0.0173 0 $| +2365558 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1759.24 28 1963.32 -0.575402 0 0.817871 0 $| +2365559 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1756.32 28 1966.02 0.011905 0 0.999929 0 $| +2365560 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1767.56 28 1972.53 0.998988 0 -0.0449854 0 $| +2365561 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1765.46 28 1974.57 0.444662 0 0.895698 0 $| +2365562 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1766.46 28 1970.1 0.958244 0 0.285952 0 $| +2365563 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1769.9 28 1971.89 0.819647 0 -0.572869 0 $| +2365564 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1765.59 28 1956.9 0.761613 0 0.648032 0 $| +2365565 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1767.95 28 1957.49 0.296281 0 0.955101 0 $| +2365566 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1770.78 28 1956.74 0.75405 0 -0.656817 0 $| +2365567 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1767.72 28 1960.15 -0.0341967 0 0.999415 0 $| +2365568 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1774.07 28 1984.42 -0.140331 0 0.990105 0 $| +2365569 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1766.56 28 1942.81 0.541233 0 0.840873 0 $| +2365570 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1769.37 28 1943.63 -0.550616 0 0.834758 0 $| +2365571 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1765.69 28 1945.49 0.161196 0 0.986922 0 $| +2365572 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1763.83 28 1941.77 0.907336 0 0.420405 0 $| +2365573 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1767.51 28 1940.27 0.981794 0 -0.189948 0 $| +2365574 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1773.58 28 1982.04 -0.64864 0 0.761095 0 $| +2365575 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1771.7 28 1979.81 0.958244 0 0.285953 0 $| +2365576 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1776.09 28 1981.11 0.862807 0 -0.505533 0 $| +2365577 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1757.8 28 1950.49 -0.5019 0 0.864926 0 $| +2365578 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1755.8 28 1949.11 0.886995 0 -0.46178 0 $| +2365579 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1752.89 28 1948.82 0.780706 0 0.624898 0 $| +2365580 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1756.95 28 1946.7 0.989506 0 -0.144492 0 $| +2365581 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1871.18 28.6017 1939.87 0.7566 0 -0.653878 0 $| +2365582 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1868.71 28.6017 1938.3 0.903767 0 0.428025 0 $| +2365583 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1872.77 28.6017 1937.53 0.954535 0 -0.298097 0 $| +2365584 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1873.53 28.6017 1941.63 -0.288917 0 0.957354 0 $| +2365585 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1869.57 28.6017 1942.04 0.325845 0 0.945423 0 $| +2365586 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1876.18 28 1929.03 0.927395 0 0.374084 0 $| +2365587 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1880.73 28 1929.5 0.906198 0 -0.422854 0 $| +2365588 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1878.45 28 1930.88 0.716797 0 -0.697282 0 $| +2365589 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1879.36 28 1933.13 -0.232066 0 0.9727 0 $| +2365590 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1869.01 28.6321 1953.29 0.329523 0 0.944147 0 $| +2365591 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1870.68 28.6321 1951.52 -0.2272 0 0.973848 0 $| +2365592 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1872.88 28.6321 1953.02 -0.534743 0 0.845015 0 $| +2365593 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1871.41 28.6321 1948.69 0.982642 0 -0.18551 0 $| +2365594 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1849.15 28 2039.58 0.613748 0 0.789502 0 $| +2365595 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1851.54 28 2039.18 0.0956519 0 0.995415 0 $| +2365596 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1852.39 28 2041.71 -0.236929 0 0.971527 0 $| +2365597 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1853.84 28 2037.36 0.871967 0 -0.489565 0 $| +2365598 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1861.56 28.6176 2028.44 0.325845 0 0.945423 0 $| +2365599 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1865.52 28.6176 2028.03 -0.288917 0 0.957354 0 $| +2365600 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1863.17 28.6176 2026.28 0.7566 0 -0.653878 0 $| +2365601 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1860.71 28.6176 2024.71 0.903767 0 0.428025 0 $| +2365602 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1864.76 28.6176 2023.94 0.954535 0 -0.298098 0 $| +2365603 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1814.08 28.636 2028.33 0.325845 0 0.945423 0 $| +2365604 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1818.03 28.636 2027.91 -0.288917 0 0.957354 0 $| +2365605 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1815.69 28.636 2026.16 0.7566 0 -0.653878 0 $| +2365606 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1813.22 28.636 2024.59 0.903767 0 0.428025 0 $| +2365607 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1817.27 28.636 2023.82 0.954535 0 -0.298098 0 $| +3095428 0 object/tangible/terminal/terminal_mission_bounty.iff 0 1824.93 28 1672.48 0.700285 0 0.713864 0 $| +3095430 0 object/tangible/terminal/terminal_mission_bounty.iff 0 1855.19 28 1672.28 -0.703845 0 0.710353 0 $| +3375491 0 object/building/corellia/filler_building_corellia_style_02.iff 0 1987.62 28 1306.8 1 0 0 0 $| +3555361 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1620 28 1917 0.923879 0 0.382684 0 $| +3555363 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1651 28 1762 0.382683 0 0.92388 0 $| +3555365 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1628 28 1739 0.382683 0 0.92388 0 $| +3555371 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1660 28 1877 -0.382684 0 0.923879 0 $| +3555373 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1690 28 1847 -0.382684 0 0.923879 0 $| +3555374 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1707 28 1830 -0.382684 0 0.923879 0 $| +3555375 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1679 28 1790 0.92388 0 -0.382683 0 $| +3555376 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1707 28 1818 0.92388 0 -0.382683 0 $| +3555377 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1665 28 1776 0.382683 0 0.92388 0 $| +3555378 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1696 28 1807 0.92388 0 -0.382683 0 $| +3555379 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1675 28 1862 -0.382683 0 0.92388 0 $| +3555380 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1633.98 28 1903.02 -0.382683 0 0.92388 0 $| +3555381 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1643 28 1894 0.923879 0 0.382684 0 $| +3555382 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1608.53 28 1928.49 0.92388 0 -0.382683 0 $| +3555384 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1605 28 1739 -0.382684 0 0.923879 0 $| +3555385 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1574 28 1894 0.92388 0 -0.382683 0 $| +3555386 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1582 28 1762 -0.382684 0 0.923879 0 $| +3555387 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1590 28 1754 0.92388 0 0.382683 0 $| +3555388 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1550 28 1794 0.92388 0 0.382683 0 $| +3555389 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1529 28 1849 0.382683 0 0.92388 0 $| +3555390 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1560 28 1880 0.92388 0 -0.382683 0 $| +3555391 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1518 28 1838 0.382683 0 0.92388 0 $| +3555392 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1546 28 1866 0.382683 0 0.92388 0 $| +3555393 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1597 28 1917 0.92388 0 -0.382683 0 $| +3555394 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1518 28 1826 0.923879 0 0.382684 0 $| +3555395 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1535 28 1809 0.923879 0 0.382684 0 $| +3555398 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1565 28 1779 0.923879 0 0.382684 0 $| +3555399 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1511.99 28 1832.02 0.92388 0 -0.382683 0 $| +3555400 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1712.98 28 1824.02 0.92388 0 -0.382683 0 $| +3575352 0 object/static/structure/general/bench_generic_style_1.iff 0 1615.63 28 1854.39 -3.2E-08 0 1 0 $| +3575353 0 object/static/structure/general/bench_generic_style_1.iff 0 1593.13 28 1847 0.382683 0 0.92388 0 $| +3575354 0 object/static/structure/general/bench_generic_style_1.iff 0 1586.05 28 1827.95 0.707107 0 0.707106 0 $| +3575355 0 object/static/structure/general/bench_generic_style_1.iff 0 1589.14 28 1816.01 0.833272 0 0.552863 0 $| +3575356 0 object/static/structure/general/bench_generic_style_1.iff 0 1617.53 28 1801.94 1 0 0 0 $| +3575357 0 object/static/structure/general/bench_generic_style_1.iff 0 1604.89 28 1801.93 1 0 0 0 $| +3575358 0 object/static/structure/general/bench_generic_style_1.iff 0 1637.99 28 1834.81 0.707107 0 -0.707106 0 $| +3575359 0 object/static/structure/general/bench_generic_style_1.iff 0 1638 28 1822.17 0.707107 0 -0.707106 0 $| +3575360 0 object/static/structure/general/bench_generic_style_1.iff 0 1632.31 28 1848.25 -0.382684 0 0.923879 0 $| +3575361 0 object/static/structure/general/bench_generic_style_1.iff 0 1633.67 28 1809.95 0.92388 0 -0.382683 0 $| +3575362 0 object/static/structure/general/bench_generic_style_1.iff 0 1641.43 28 1862.25 0.707107 0 -0.707106 0 $| +3575363 0 object/static/structure/general/bench_generic_style_1.iff 0 1633.76 28 1862.62 0.707107 0 0.707107 0 $| +3575365 0 object/static/structure/corellia/corl_fountain_statue_contemplate_s01.iff 0 1545.83 28 1836.2 1 0 0 0 $| +3575366 0 object/static/structure/general/bench_generic_style_1.iff 0 1554.2 28 1833.68 0.707107 0 -0.707106 0 $| +3575367 0 object/static/structure/general/bench_generic_style_1.iff 0 1554.14 28 1838.94 0.707111 0 -0.707102 0 $| +3575369 0 object/static/structure/general/bench_generic_style_1.iff 0 1681.05 28 1823.76 0.95813 0 -0.286334 0 $| +3575370 0 object/static/structure/general/bench_generic_style_1.iff 0 1681.58 28 1832.18 -0.412683 0 0.910875 0 $| +3575371 0 object/static/structure/general/bench_generic_style_1.iff 0 1674.21 28 1828.52 0.707107 0 0.707107 0 $| +3575372 0 object/static/structure/general/bench_generic_style_1.iff 0 1631.96 28 1763.02 0.999808 0 0.0196003 0 $| +3575373 0 object/static/structure/general/bench_generic_style_1.iff 0 1633.42 28 1772.28 -0.343272 0 0.939236 0 $| +3575374 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1639.46 28 1750.48 0.382682 0 0.92388 0 $| +3575375 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1678.54 28 1858.48 -0.382684 0 0.923879 0 $| +3575376 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1671.43 28 1865.47 -0.382684 0 0.923879 0 $| +3575377 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1637.52 28 1899.52 -0.382684 0 0.923879 0 $| +3575379 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1585.45 28 1905.52 0.382683 0 0.92388 0 $| +3575380 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1546.57 28 1797.51 0.923879 0 0.382684 0 $| +3575381 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1553.46 28 1790.52 0.923879 0 0.382684 0 $| +3575382 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1593.45 28 1750.52 0.923879 0 0.382684 0 $| +3575383 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1615.94 28 1855.33 -0.0230952 0 0.999733 0 $| +3575384 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1610.57 28 1800.97 0.999924 0 0.0123006 0 $| +3575385 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1634.7 28 1767.62 -0.691163 0 0.722699 0 $| +3575386 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1550.6 28 1842.99 -0.00809712 0 0.999967 0 $| +3575387 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1637.98 28 1866.71 0.00849535 0 0.999964 0 $| +3625774 0 object/static/structure/corellia/corl_tent_med.iff 0 1998.68 28 1475.68 1 0 0 0 $| +3625805 0 object/tangible/furniture/modern/bar_piece_curve_s2.iff 0 1999.32 28 1477.23 1 0 0 0 $| +3625806 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_sordaan_hunting_trophy.iff 0 1995.55 28.3162 1480.08 0.924909 0 -0.380188 0 $| +3625807 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_bantha_kash.iff 0 2003.32 31.9319 1470.89 0.997551 0 0.0699428 0 $| +3625808 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_bolotaur.iff 0 1995.01 30.2888 1471.07 0.9998 0 -0.0199987 0 $| +3625809 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_katarn.iff 0 1998.51 29.1832 1477.71 -0.662042 0.661515 -0.249195 -0.248996 $| +3625810 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_kkorrwrot.iff 0 1994.14 32.1274 1471.25 0.999388 0 -0.0349929 0 $| +3625813 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_minstyngar.iff 0 1999.96 29.1311 1477.71 -0.477403 0.477015 0.521592 0.522 $| +3626014 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_mouf.iff 0 2004.85 30.3105 1470.68 0.998201 0 0.059964 0 $| +3626015 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_uller.iff 0 2003.01 29.6799 1470.91 0.998988 0 0.0449848 0 $| +3626016 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_walluga.iff 0 1992.7 30.5978 1471.1 0.99955 0 -0.0299955 0 $| +3626017 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_webweaver.iff 0 1997.62 29.1593 1476.47 0.710914 -0.703279 0 0 $| +3695444 0 object/tangible/sign/all_sign_city_s02.iff 0 1750.88 27.9978 1358.31 -3.2E-08 -0.0203968 0.999792 6.53E-10 $| +3695448 0 object/tangible/sign/all_sign_city_s02.iff 0 1826.12 28 1351.73 -3.2E-08 0 1 0 $| +3695449 0 object/tangible/sign/all_sign_city_s02.iff 0 1854 28 1306 -3.2E-08 0 1 0 $| +3695450 0 object/tangible/sign/all_sign_city_s02.iff 0 1894 28 1306 -3.2E-08 0 1 0 $| +3695458 0 object/tangible/sign/all_sign_city_s02.iff 0 1934.89 28 1939.26 1 0 0 0 $| +3695460 0 object/tangible/sign/all_sign_city_s02.iff 0 1737 28 1999.2 1 0 0 0 $| +3695461 0 object/tangible/sign/all_sign_city_s02.iff 0 1611 28 1999.24 1 0 0 0 $| +3695462 0 object/tangible/sign/all_sign_city_s02.iff 0 1526.26 28 1925.81 0.92388 0 -0.382683 0 $| +3695463 0 object/tangible/sign/all_sign_city_s02.iff 0 1487.51 28 1909.28 0.92388 0 -0.382683 0 $| +3695464 0 object/tangible/sign/all_sign_city_s02.iff 0 1479.17 28 1900.75 0.92388 0 -0.382683 0 $| +3695465 0 object/tangible/sign/all_sign_city_s02.iff 0 1454.96 27.9938 1815.02 0.707107 0 -0.707107 0 $| +3695466 0 object/tangible/sign/all_sign_city_s02.iff 0 1453.75 28 1665.99 0.707107 0 -0.707106 0 $| +3695467 0 object/tangible/sign/all_sign_city_s02.iff 0 1453.93 28 1634.03 0.707107 0 -0.707106 0 $| +3695468 0 object/tangible/sign/all_sign_city_s02.iff 0 1507.55 30.5957 1517.45 5.19E-08 0.707107 0.707107 5.19E-08 $| +3695469 0 object/tangible/sign/all_sign_city_s02.iff 0 1522.22 28 1470.98 -0.707107 0 0.707107 0 $| +3695470 0 object/tangible/sign/all_sign_city_s02.iff 0 1541.38 28 1442.69 -3.2E-08 0 1 0 $| +3695471 0 object/tangible/sign/all_sign_city_s02.iff 0 1603.2 30.328 1401.02 -0.270598 0.653282 0.653282 -0.270598 $| +4026465 0 object/static/structure/corellia/corl_tent_small.iff 0 1984.02 28 1577.43 1 0 0 0 $| +4026467 0 object/static/creature/corellia_krahbu.iff 0 1987.34 28 1578.9 1 0 0 0 $| +4026468 0 object/static/creature/corellia_bageraset.iff 0 1980.6 28 1578.45 1 0 0 0 $| +4026469 0 object/static/structure/corellia/corl_tent_med.iff 0 1626.14 28 1490.97 1 0 0 0 $| +4026470 0 object/static/structure/general/data_terminal_free_s1.iff 0 1626.81 28 1489.73 0.962425 0 -0.271547 0 $| +4026471 0 object/static/structure/general/data_terminal_free_s2.iff 0 1626.9 28 1491.61 0.707107 0 -0.707106 0 $| +4026473 0 object/static/creature/corellia_durni.iff 0 1625.52 28 1493.69 -0.667463 0 0.744643 0 $| +4026474 0 object/static/creature/corellia_gulingaw.iff 0 1626.19 31.1015 1491.02 0.721382 0 -0.692538 0 $| +4026476 0 object/static/creature/corellia_krahbu.iff 0 1625.52 28 1487.84 0.875175 0 -0.483807 0 $| +4026491 0 object/static/item/item_medic_bacta_tank_advanced.iff 0 2012.6 28 1706.19 -0.327798 0 0.944748 0 $| +4026492 0 object/static/item/item_medic_bacta_tank_advanced.iff 0 2012.68 28 1701 -0.448109 0 0.893979 0 $| +4026493 0 object/static/item/item_medic_bacta_tank.iff 0 2013.91 28 1701.37 0.808345 0 0.588708 0 $| +4026494 0 object/static/item/item_medic_bacta_tank.iff 0 2013.96 28 1706.7 0.89528 0 -0.445505 0 $| +4026495 0 object/static/item/item_medical_console.iff 0 2013.82 28.759 1703.31 1 0 0 0 $| +4026496 0 object/tangible/furniture/all/frn_all_desk_map_table_insert.iff 0 2019.32 28.115 1699.68 1 0 0 0 $| +4026497 0 object/tangible/furniture/all/frn_all_desk_map_table.iff 0 2019.54 28 1699.68 1 0 0 0 $| +4026498 0 object/tangible/furniture/all/frn_all_professor_desk.iff 0 2013.62 28 1702.95 1 0 0 0 $| +4026499 0 object/static/item/item_medic_bag.iff 0 2014.25 28 1700.94 0.63329 0 0.773915 0 $| +4026501 0 object/static/item/item_drall_medicine.iff 0 2013.31 28 1710.69 0.8956 0 0.44486 0 $| +4026502 0 object/static/item/item_drall_medicine.iff 0 2013.27 28 1710.3 0.8956 0 0.44486 0 $| +4026503 0 object/static/item/item_drall_medicine.iff 0 2013.01 28 1710.55 0.8956 0 0.44486 0 $| +4026504 0 object/static/item/item_diagnostic_screen.iff 0 2013.83 28 1710.39 -0.148651 0 0.98889 0 $| +4026506 0 object/static/item/item_tool_sensor_beacon.iff 0 1992.99 28 1575.33 1 0 0 0 $| +4026507 0 object/static/creature/corellia_durni.iff 0 1991.96 28 1576.16 1 0 0 0 $| +4026509 0 object/static/structure/general/droid_21bmedical_powerdown.iff 0 2012.2 28 1710.49 0.667463 0 0.744643 0 $| +4026510 0 object/static/structure/general/camp_tent_s01.iff 0 1542.22 28 1514.44 -0.148651 0 0.98889 0 $| +4026511 0 object/static/structure/general/campfire_fresh.iff 0 1541.43 28 1511.63 1 0 0 0 $| +4026512 0 object/static/structure/general/camp_lawn_chair_s01.iff 0 1543.09 28 1512.14 -0.453596 0 0.891207 0 $| +4026519 0 object/static/item/item_jar_berries.iff 0 1543.18 28.49 1512.13 0.703919 -0.0670742 -0.0670741 0.703918 $| +4026520 0 object/static/item/item_cage_bamboo.iff 0 1988.48 28 1576.1 1 0 0 0 $| +4026521 0 object/building/corellia/filler_block_corellia_32x16_s01.iff 0 2035.12 28 1310.21 0.707107 0 0.707106 0 $| +4026523 0 object/static/structure/tatooine/debris_tatt_drum_dented_1.iff 0 1930.23 28 1353.66 0.801601 0 0.59786 0 $| +4026524 0 object/static/structure/tatooine/debris_tatt_drum_storage_2.iff 0 1929.32 28 1353.39 0.90687 0 0.42141 0 $| +4026525 0 object/static/structure/tatooine/debris_tatt_crate_1.iff 0 1930.8 28 1352.85 0.731689 0 -0.681639 0 $| +4026526 0 object/static/structure/tatooine/debris_tatt_drum_storage_2.iff 0 1931.49 28 1352.08 1 0 0 0 $| +4026528 0 object/static/structure/corellia/corl_tent_small.iff 0 1929.68 28.1265 1351.7 0.440178 0 0.897911 0 $| +4026529 0 object/static/structure/general/prp_junk_s6.iff 0 2014.09 28 1771.47 0.823129 0 -0.567854 0 $| +4026530 0 object/static/structure/general/prp_junk_s8.iff 0 2013.11 28.3222 1773.86 0.188065 0.188065 -0.681638 0.681639 $| +4026534 0 object/static/structure/tatooine/debris_tatt_drum_storage_2.iff 0 2014.5 28 1773.37 0.751806 0 -0.659384 0 $| +4026535 0 object/static/structure/tatooine/debris_tatt_drum_storage_2.iff 0 2013.98 28 1772.92 0.836463 0 -0.548024 0 $| +4475355 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1648.65 28 1888.32 -0.382684 0 0.923879 0 $| +4475356 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1701.35 28 1835.68 -0.382684 0 0.923879 0 $| +4475357 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1690.3 28 1801.35 0.92388 0 -0.382682 0 $| +4475358 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1576.32 28 1767.67 -0.382684 0 0.923879 0 $| +4475359 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1523.68 28 1820.33 -0.382684 0 0.923879 0 $| +4475360 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1534.67 28 1854.66 0.92388 0 -0.382682 0 $| +5405903 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1933.24 33.8503 1815.28 0.000748027 0.342898 -0.000273051 0.939372 $| +5405982 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1985.01 33.9451 1884.97 -0.0131221 0.382645 -0.00543535 0.923786 $| +5406015 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1864.01 33.9451 1634.97 0.0107962 0 0 0.999942 $| +5406016 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1873.32 33.9451 1620.96 -0.000796377 0 0 1 $| +5406074 0 object/static/structure/general/streetlamp_small_style_01.iff 0 2008.97 33.9134 1640.9 -0.000796366 0 0 1 $| +5406154 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1917.36 33.9135 1609.08 0.00409861 0.707095 0.00409861 0.707095 $| +5406165 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1776.16 33.8502 1532.73 -0.00297242 0.7071 -0.0029724 0.707101 $| +5406221 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1774.16 33.9451 1611.39 0.00409863 0.707095 0.00409864 0.707095 $| +5406286 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1811.96 33.9446 1635.01 0.0323716 0.706365 0.0323716 0.706365 $| +5406391 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1878.75 33.9135 1728.81 0.0100431 0.707035 0.0100432 0.707036 $| +5406407 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1795.89 33.9451 1728.72 0.000563112 0.707106 0.000563109 0.707107 $| +5406413 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1761.77 33.9451 1730.72 0.0029724 0.7071 0.0029724 0.707101 $| +5406653 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1745.89 28 1962.3 0.707107 0 0.707106 0 $| +5406662 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1750.01 28 1939.38 0.707107 0 0.707106 0 $| +5406667 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1633.07 28 1906.02 0.92388 0 0.382683 0 $| +5406669 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1635.51 28 1899.76 -0.382683 0 0.92388 0 $| +5406677 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1563.18 28 1881.47 0.382683 0 0.92388 0 $| +5406688 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1484.62 33.9411 1903.77 0.000305 0.923879 0.000736 0.382683 $| +5406703 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1454.97 27.969 1816.99 -0.707107 0 0.707107 0 $| +5406712 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1511.5 33.9451 1517.6 -0.000563257 1.16E-07 0.000563438 0.999999 $| +5406716 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1477.05 28 1539.04 -0.382683 0 0.92388 0 $| +5406720 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1463.08 28 1525.04 0.92388 0 0.382683 0 $| +5406722 0 object/static/structure/general/streetlamp_large_style_02.iff 0 1505 28 1553.02 1 0 0 0 $| +5406725 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1543.98 33.9135 1445.13 0.000563438 0.999999 0.000563257 -1.69E-07 $| +5406731 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1523.97 33.9451 1465.04 0.000563438 0.999999 0.000563257 -1.69E-07 $| +5406775 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1524.06 33.9451 1477.01 0.000563 0.999999 0.000563 0 $| +5406779 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1543.95 33.9451 1496.97 0.000563 0.999999 0.000563 0 $| +5406790 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1606.06 33.9432 1398.29 0.000304693 0.923879 0.000735595 0.382683 $| +5406794 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1630.01 33.9451 1477.99 0.000563 0.999999 0.000563 0 $| +5406808 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1668 33.9841 1500.04 0.000563 0.999999 0.000563 0 $| +5406817 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1700.58 33.9451 1440.03 0.000563 0.999999 0.000563 0 $| +5406819 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1737.97 33.9135 1461.99 0.000563 0.999999 0.000563 0 $| +5406836 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1746.43 33.9451 1360.46 0.000563 0.999999 0.000563 0 $| +5406853 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1610.4 28 1997.97 1 0 0 0 $| +5406854 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1738.6 28 1998.69 1 0 0 0 $| +5407012 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1798.69 28 1477.59 -0.382683 0 0.92388 0 $| +5407014 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1780.55 28 1484.47 0.382684 0 0.923879 0 $| +5407029 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1787.68 28 1399.94 0.382683 0 0.92388 0 $| +5407031 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1698.4 28 1555.92 -0.382683 0 0.92388 0 $| +5407034 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1737.3 28 1555.67 0.382683 0 0.92388 0 $| +5407036 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1750.59 28 1626.71 -0.382683 0 0.92388 0 $| +5407037 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1750.61 28 1671.57 0.92388 0 -0.382683 0 $| +5407038 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1739.43 28 1708.82 0.382683 0 0.92388 0 $| +5407039 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1739.64 28 1739.57 0.92388 0 0.382683 0 $| +5407041 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1800.16 28 1857.46 0.382683 0 0.92388 0 $| +5407042 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1755.59 28 1857.58 -0.382683 0 0.92388 0 $| +5407045 0 object/static/structure/general/streetlamp_medium_style_01.iff 0 1769.91 28 1976.73 0.92388 0 -0.382683 0 $| +5407046 0 object/static/structure/general/streetlamp_medium_style_01.iff 0 1769.99 28 1951.01 0.707107 0 -0.707107 0 $| +5407047 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1796.33 28 1909.27 0.92388 0 0.382683 0 $| +5407049 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1957.2 28 1900.39 0.92388 0 0.382683 0 $| +5515363 0 object/static/structure/general/streetlamp_large_style_01.iff 0 2005.43 28 1873.22 1 0 0 0 $| +5515402 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1899.91 28 1719.16 0.92388 0 0.382683 0 $| +5515406 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1802.31 28 1667.24 0.92388 0 0.382683 0 $| +5515408 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1891.68 28 1668.87 0.707107 0 -0.707106 0 $| +5515411 0 object/static/structure/general/streetlamp_small_blue_style_01.iff 0 1838.03 36.4433 1613.38 -0.0040986 0.707095 -0.0040986 0.707095 $| +5515432 0 object/static/structure/general/streetlamp_small_blue_style_01.iff 0 1772.44 34.7309 1441.9 0.500199 0.499801 0.500199 0.499801 $| +5515434 0 object/static/structure/general/streetlamp_small_red_style_01.iff 0 1669.72 28 1578.9 1 0 0 0 $| +5535352 0 object/static/structure/general/streetlamp_small_red_style_01.iff 0 1610.13 28 1566.88 1 0 0 0 $| +5535353 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1642.98 33.9451 1709.99 -0.00850288 0.382667 -0.00352199 0.92384 $| +5625467 0 object/tangible/terminal/terminal_bazaar.iff 0 1992.48 28.6 1522.7 1 0 0 0 $| +5625468 0 object/tangible/terminal/terminal_bazaar.iff 0 1970.41 28.6 1544.66 0.707107 0 0.707106 0 $| +5625469 0 object/tangible/terminal/terminal_bazaar.iff 0 1992.66 28.6 1566.69 -3.2E-08 0 1 0 $| +5625470 0 object/tangible/terminal/terminal_bazaar.iff 0 2014.4 28.6 1544.63 0.707107 0 -0.707106 0 $| +6035541 0 object/building/corellia/filler_block_corellia_32x16_s01.iff 0 1939.92 28 1322.56 0.978031 0 0.20846 0 $| +6035547 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1943.82 28 1479.36 0.958244 0 0.285952 0 $| +6035548 0 object/building/corellia/filler_block_corellia_32x16_s01.iff 0 1821.38 28 1440.56 1 0 0 0 $| +6035556 0 object/tangible/instrument/nalargon.iff 0 1869.79 28 1403.71 1 0 0 0 $| +6035557 0 object/tangible/microphone/microphone.iff 0 1873.11 28 1405.48 1 0 0 0 $| +6035558 0 object/tangible/instrument/ommni_box.iff 0 1876.55 28 1403.42 1 0 0 0 $| +6035560 0 object/tangible/speaker/speaker.iff 0 1879.67 28 1405.43 0.92388 0 0.382683 0 $| +6035561 0 object/tangible/speaker/speaker.iff 0 1866.42 28 1405.59 0.92388 0 -0.382683 0 $| +6035566 0 object/tangible/terminal/terminal_mission.iff 0 1915.54 28 1436.27 0.755095 0 -0.655615 0 $| +6035568 0 object/static/structure/tatooine/antenna_tatt_style_2.iff 0 1922.16 28 1444.03 0.995491 0 0.0948572 0 $| +6035569 0 object/static/structure/tatooine/antenna_tatt_style_2.iff 0 1916.23 28 1396.24 0.996802 0 0.0799146 0 $| +6035570 0 object/static/structure/corellia/corl_fountain_rectangle_s01.iff 0 1873 28 1435 1 0 0 0 $| +6035571 0 object/tangible/furniture/all/frn_bench_generic.iff 0 1869 28 1435 0.707107 0 -0.707106 0 $| +6035572 0 object/tangible/furniture/all/frn_bench_generic.iff 0 1873 28 1440 1 0 0 0 $| +6035573 0 object/tangible/furniture/all/frn_bench_generic.iff 0 1877 28 1435 0.707107 0 0.707106 0 $| +6035574 0 object/tangible/furniture/all/frn_bench_generic.iff 0 1873 28 1430 -3.2E-08 0 1 0 $| +6035575 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1876.99 28 1438.96 0.707107 0 0.707106 0 $| +6035577 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1869.01 28 1439.01 -0.707107 0 0.707107 0 $| +6035579 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1914.18 28 1426.59 0.758362 0 -0.651834 0 $| +6035580 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1912.7 28 1415.51 0.758361 0 -0.651835 0 $| +6035586 0 object/static/structure/general/streetlamp_small_blue_style_02.iff 0 1879.89 28 1401.14 1 0 0 0 $| +6035597 0 object/static/item/item_medic_bacta_tank.iff 0 1877.59 28 1453.99 -0.144901 0 0.989446 0 $| +6035598 0 object/static/item/item_medic_bacta_tank_advanced.iff 0 1877.3 28 1452.52 0.876362 0 0.481652 0 $| +6035599 0 object/static/item/item_medic_bacta_tank_advanced.iff 0 1876.73 28 1453.23 -0.232177 0 0.972674 0 $| +6035600 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1873 26.57 1456 1 0 0 0 $| +6035601 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1857 26.57 1448 0.707108 0 0.707105 0 $| +6035602 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1889 26.57 1448 0.707108 0 0.707105 0 $| +6035603 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1857 28 1440 1 0 0 0 $| +6035604 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1889 28 1440 1 0 0 0 $| +6035605 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1889 28 1456 1 0 0 0 $| +6035606 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1857 28 1456 1 0 0 0 $| +6035607 0 object/tangible/crafting/station/public_food_station.iff 0 1884.42 28 1453.67 4.11E-07 0 1 0 $| +6035609 0 object/tangible/crafting/station/public_weapon_station.iff 0 1859 28 1451 0.707107 0 0.707106 0 $| +6035611 0 object/tangible/crafting/station/public_clothing_station.iff 0 1863 28 1454 0.707107 0 -0.707106 0 $| +6035612 0 object/tangible/crafting/station/public_structure_station.iff 0 1887 28 1450 0.707107 0 -0.707106 0 $| +6035616 0 object/static/structure/dantooine/dant_rack_spears.iff 0 1885.48 28 1388.23 1 0 0 0 $| +6035617 0 object/static/structure/dantooine/dant_rack_spears.iff 0 1881.11 28 1388.13 0.96639 0 0.257081 0 $| +6476154 0 object/tangible/terminal/terminal_mission_artisan.iff 0 1914.62 28 1429.66 0.76161 0 -0.648035 0 $| +6476156 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1912.13 28 1412.13 0.758102 0 -0.652136 0 $| +6476162 0 object/tangible/terminal/terminal_mission_scout.iff 0 1911.24 28 1407.36 0.758102 0 -0.652136 0 $| +6476168 0 object/tangible/terminal/terminal_mission_artisan.iff 0 1677.41 28 1615 0.707107 0 -0.707106 0 $| +6476170 0 object/tangible/terminal/terminal_mission_artisan.iff 0 1677.41 28 1617 0.707107 0 -0.707106 0 $| +6476172 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1690.1 28 1604.88 -3.2E-08 0 1 0 $| +6476174 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1688.1 28 1604.88 -3.2E-08 0 1 0 $| +6476176 0 object/tangible/terminal/terminal_mission_scout.iff 0 1717.46 28 1699.91 1 0 0 0 $| +6476178 0 object/tangible/terminal/terminal_mission_scout.iff 0 1719.46 28 1699.91 1 0 0 0 $| +6476180 0 object/tangible/terminal/terminal_mission_scout.iff 0 1820.69 28 1769.6 0.707107 0 0.707106 0 $| +6476182 0 object/tangible/terminal/terminal_mission_scout.iff 0 1820.85 28 1738.61 0.707107 0 0.707106 0 $| +6476184 0 object/tangible/terminal/terminal_mission_artisan.iff 0 1855.32 28 1740.65 0.707107 0 -0.707107 0 $| +6476186 0 object/tangible/terminal/terminal_mission_artisan.iff 0 1855.29 28 1767.25 0.707107 0 -0.707106 0 $| +6476188 0 object/tangible/terminal/terminal_mission_scout.iff 0 1560.16 28.9263 1478.95 0.932327 0 -0.361615 0 $| +6476190 0 object/tangible/terminal/terminal_mission_scout.iff 0 1560.19 28.9803 1462.87 -0.376297 0 0.926499 0 $| +6476192 0 object/tangible/terminal/terminal_mission_artisan.iff 0 1819.38 28 1800.18 -3.2E-08 0 1 0 $| +6476194 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1821.03 28 1799.73 -3.2E-08 0 1 0 $| +6476196 0 object/tangible/terminal/terminal_mission_scout.iff 0 1817.24 28 1799.94 -3.2E-08 0 1 0 $| +6476198 0 object/tangible/terminal/terminal_mission_artisan.iff 0 1857.03 28 1799.91 -7.41E-08 0 1 0 $| +6476200 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1854.96 28 1799.54 -7.41E-08 0 1 0 $| +6476202 0 object/tangible/terminal/terminal_mission_scout.iff 0 1858.98 28 1799.73 -7.41E-08 0 1 0 $| +6476204 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1811.3 28.5779 1988.55 0.707108 0 -0.707106 0 $| +6476206 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1811.3 28.5779 1986.55 0.707107 0 -0.707106 0 $| +6476208 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1811.3 28.5779 1984.55 0.707107 0 -0.707106 0 $| +6476210 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1867.48 28.591 1978.97 0.707107 0 0.707107 0 $| +6476212 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1867.48 28.591 1976.97 0.707105 0 0.707108 0 $| +6476214 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1867.48 28.591 1974.97 0.707105 0 0.707108 0 $| +6625527 0 object/soundobject/soundobject_city_crowd_sentients_large.iff 0 2046.16 28 1468.47 1 0 0 0 $| +6625529 0 object/soundobject/soundobject_city_crowd_sentients_large.iff 0 1950.48 28 1531.22 1 0 0 0 $| +6625531 0 object/soundobject/soundobject_city_crowd_sentients.iff 0 1941.49 28 1607.37 1 0 0 0 $| +6625532 0 object/soundobject/soundobject_city_crowd_sentients_large.iff 0 2010.27 28 1616.48 1 0 0 0 $| +6625533 0 object/soundobject/soundobject_city_crowd_small.iff 0 1882.34 28 1589.61 1 0 0 0 $| +6625540 0 object/soundobject/soundobject_city_crowd_sentients_large.iff 0 1741.2 28 1534.4 1 0 0 0 $| +6625543 0 object/soundobject/soundobject_city_crowd_sentients_large.iff 0 2026.11 28 1719.46 1 0 0 0 $| +6625545 0 object/soundobject/soundobject_city_crowd_sentients_large.iff 0 1838.46 28 2041.09 1 0 0 0 $| +7125370 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1766.68 28 1735.7 1 0 0 0 $| +7125380 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1886 28 1776 0.707107 0 0.707106 0 $| +7125381 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1909.84 28 1735.85 1 0 0 0 $| +7125382 0 object/tangible/crafting/station/public_food_station.iff 0 1907 28 1741 0.707107 0 0.707106 0 $| +7125383 0 object/tangible/crafting/station/public_food_station.iff 0 1906.61 28 1750.01 0.707107 0 0.707107 0 $| +7125384 0 object/tangible/crafting/station/public_food_station.iff 0 1907 28 1757 0.707107 0 0.707107 0 $| +7125385 0 object/tangible/crafting/station/public_food_station.iff 0 1907 28 1766 0.707107 0 0.707107 0 $| +7125386 0 object/tangible/crafting/station/public_clothing_station.iff 0 1901 28 1773 0.707107 0 0.707106 0 $| +7125387 0 object/tangible/crafting/station/public_clothing_station.iff 0 1891 28 1773 0.707107 0 0.707107 0 $| +7125388 0 object/tangible/crafting/station/public_clothing_station.iff 0 1899 28 1779 -0.707107 0 0.707107 0 $| +7125389 0 object/tangible/crafting/station/public_clothing_station.iff 0 1893 28 1779 -0.707107 0 0.707107 0 $| +7335359 0 object/soundobject/soundobject_city_crowd_sentients_large.iff 0 1835.85 28 1708.92 1 0 0 0 $| +7335372 0 object/soundobject/soundobject_city_crowd_small.iff 0 1698.3 28 1722.93 1 0 0 0 $| +7335383 0 object/soundobject/soundobject_city_crowd_small.iff 0 1658.24 28 1652.55 1 0 0 0 $| +7335462 0 object/soundobject/soundobject_city_crowd_medium.iff 0 1767.77 28 1950.1 1 0 0 0 $| +7615528 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1893.96 34.0399 1485.58 -3.2E-08 1 0 0 $| +7615529 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1943.86 34.0216 1479.33 0 0.883413 0 0.468594 $| +7755369 0 object/tangible/furniture/all/frn_bench_generic.iff 0 1716 28 1499 -3.2E-08 0 1 0 $| +7755370 0 object/tangible/furniture/all/frn_bench_generic.iff 0 1720 28 1499 -3.2E-08 0 1 0 $| +7755371 0 object/tangible/furniture/all/frn_bench_generic.iff 0 1724 28 1499 -3.2E-08 0 1 0 $| +7755372 0 object/tangible/terminal/terminal_bazaar.iff 0 1708 28 1500 0.707107 0 0.707106 0 $| +7755373 0 object/tangible/terminal/terminal_bank.iff 0 1738 28 1501.35 1 0 0 0 $| +7755374 0 object/tangible/terminal/terminal_bank.iff 0 1705.98 28 1501.57 1 0 0 0 $| +7755375 0 object/tangible/terminal/terminal_bazaar.iff 0 1736 28 1500 0.707107 0 -0.707106 0 $| +7755378 0 object/static/structure/general/streetlamp_large_style_02.iff 0 1713.8 28 1499.05 1 0 0 0 $| +7755379 0 object/static/structure/general/streetlamp_large_style_02.iff 0 1726.15 28 1499.05 1 0 0 0 $| +8105493 0 object/building/corellia/cantina_corellia.iff 0 1705.47 28 1649.5 0.707106 0 0.707107 0 structure.municipal.cantina $| +8105494 8105493 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| +8105495 8105493 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| +8105496 8105493 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| +8105497 8105493 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| +8105498 8105493 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| +8105499 8105493 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| +8105500 8105493 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| +8105501 8105493 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| +8105502 8105493 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| +9766882 8105502 object/tangible/poi/spawnegg/interior_spawnegg.iff 9 -6.8 -0.9 22.4 1 0 0 0 intRandomYaw|0|1|$| +8105503 8105493 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| +8105504 8105493 object/cell/cell.iff 11 0 0 0 1 0 0 0 $| +-14 8105504 object/tangible/npc/rebel_recruiter_spawner.iff 11 -28.5 -0.9 -1.3 0.707107 0 0.707106 0 $| +1487877 8105504 object/tangible/terminal/terminal_mission_rebel.iff 11 -28.83578 -0.894985 -2.352153 1 0 0 0 $| +1487879 8105504 object/tangible/terminal/terminal_mission_rebel.iff 11 -28.77948 -0.894984 3.342379 -3.2E-08 0 1 0 $| +8105505 8105493 object/cell/cell.iff 12 0 0 0 1 0 0 0 $| +514454263 8105505 object/tangible/collection/hanging_light_02_07.iff 12 -19.5621 3.01775 15.3171 1 0 0 0 $| +8105506 8105493 object/cell/cell.iff 13 0 0 0 1 0 0 0 $| +4610432 8105506 object/tangible/collection/rare_pistol_blackhand.iff 13 -30.3611 0.090695 12.7987 0.592996 0.404178 0.400115 0.570003 $| +8105507 8105493 object/cell/cell.iff 14 0 0 0 1 0 0 0 $| +8105508 8105493 object/cell/cell.iff 15 0 0 0 1 0 0 0 $| +8105629 0 object/soundobject/soundobject_starport_exterior.iff 0 2033.67 28 1402.12 0.917121 0 0.39861 0 $| +8105630 0 object/soundobject/soundobject_starport_exterior.iff 0 1986.26 28 1436.73 0.917121 0 0.39861 0 $| +8156055 0 object/static/structure/general/streetlamp_large_blue_style_01.iff 0 1693.75 28 1603.27 -0.382683 0 0.92388 0 $| +8156056 0 object/static/structure/general/streetlamp_large_blue_style_01.iff 0 1702.97 28 1598.57 -3.2E-08 0 1 0 $| +8156057 0 object/static/structure/general/streetlamp_large_blue_style_01.iff 0 1693.83 28 1699.32 1 0 0 0 $| +8156058 0 object/static/structure/general/streetlamp_large_blue_style_01.iff 0 1683.98 28 1699.21 1 0 0 0 $| +8156092 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1789.91 28 1775.89 -0.707107 0 0.707107 0 $| +8156096 0 object/tangible/terminal/terminal_mission.iff 0 1715.61 28 1699.77 1 0 0 0 $| +8156098 0 object/tangible/terminal/terminal_mission.iff 0 1713.6 28 1699.77 1 0 0 0 $| +8156100 0 object/static/structure/corellia/corl_tent_med.iff 0 1703.42 28 1698.86 0.707107 0 0.707106 0 $| +8156102 0 object/static/item/item_container_inorganic_minerals.iff 0 1701.32 28 1698.43 0.952334 0 -0.305059 0 $| +8156103 0 object/static/item/item_container_organic_food.iff 0 1700.35 28 1700.12 1 0 0 0 $| +8156104 0 object/static/item/item_container_organic_food.iff 0 1700.71 28 1699.67 1 0 0 0 $| +8156105 0 object/static/item/item_container_inorganic_gas.iff 0 1702.89 28 1697.74 1 0 0 0 $| +8156106 0 object/static/item/item_container_energy_liquid.iff 0 1702.79 28 1698.58 1 0 0 0 $| +8156107 0 object/static/item/item_container_energy_liquid.iff 0 1702.42 28 1698.52 1 0 0 0 $| +8215863 0 object/building/corellia/salon_corellia.iff 0 1681.31 28.2635 1446.53 -3.2E-08 0 1 0 $| +8675757 0 object/static/structure/corellia/corl_imprv_flagpole_s01.iff 0 1822.76 37.565 1629.27 1 0 0 0 $| +8675758 0 object/static/structure/corellia/corl_imprv_flagpole_s01.iff 0 1853.27 37.565 1629.26 1 0 0 0 $| +8675759 0 object/static/structure/corellia/corl_imprv_flagpole_s01.iff 0 1733.68 37.3083 1512.15 1 0 0 0 $| +8675760 0 object/static/structure/corellia/corl_imprv_bannerpole_s01.iff 0 1776.93 29.6051 1444.89 1 0 0 0 $| +8675761 0 object/static/structure/corellia/corl_imprv_bannerpole_s01.iff 0 1767.89 29.6051 1444.85 1 0 0 0 $| +8675762 0 object/static/structure/corellia/corl_imprv_bannerpole_s01.iff 0 1833.47 29.5094 1803.19 1 0 0 0 $| +8675763 0 object/static/structure/corellia/corl_imprv_bannerpole_s01.iff 0 1842.44 29.5094 1803.2 1 0 0 0 $| +8675765 0 object/static/structure/corellia/corl_imprv_flagpole_s01.iff 0 1484.58 35.3129 1903.75 1 0 0 0 $| +8675767 0 object/static/structure/corellia/corl_imprv_flagpole_s01.iff 0 2021.75 31.5854 1544.59 1 0 0 0 $| +8675768 0 object/static/structure/corellia/corl_imprv_flagpole_s01.iff 0 1963.06 31.5724 1544.8 1 0 0 0 $| +8675769 0 object/static/structure/corellia/corl_imprv_bannerpole_s01.iff 0 1986.25 28 1444.64 0.990901 0 -0.13459 0 $| +8675770 0 object/static/structure/corellia/corl_imprv_bannerpole_s01.iff 0 2003.41 28 1445.68 0.991562 0 0.129635 0 $| +9555352 0 object/static/flora/flora_tree_rori_windswept_s00.iff 0 1811.59 28 1671.09 1 0 0 0 $| +9555353 0 object/static/flora/flora_tree_rori_windswept_s00.iff 0 1814.91 28 1677.38 1 0 0 0 $| +9825673 0 object/static/structure/general/skeleton_human_headandbody.iff 0 290.855 0.195961 556.204 0.202787 0 0.979223 0 $| +9825684 0 object/static/structure/general/skeleton_human_headandbody.iff 0 296.485 0.760898 574.658 1 0 0 0 $| +9825685 0 object/static/structure/general/skeleton_human_headandbody.iff 0 302.396 1.91035 549.391 0.827336 -0.0175209 0.554878 0.0855467 $| +9825686 0 object/static/structure/general/skeleton_human_headandbody.iff 0 310.041 2.99458 570.525 1 0 0 0 $| +9825687 0 object/static/structure/general/skeleton_human_headandbody.iff 0 292.615 0.411037 545.285 0.998738 -0.00499373 0.000249895 0.0499786 $| +9825688 0 object/static/structure/general/skeleton_human_headandbody.iff 0 291.087 0.19285 549.56 0.737352 0.0405953 -0.673268 0.0370671 $| +9825692 0 object/static/structure/general/skeleton_human_headandbody.iff 0 297.564 1.08868 540.706 -0.572939 -0.169071 0.801443 -0.0290591 $| +9825694 0 object/static/structure/corellia/corl_imprv_column_s03.iff 0 279.231 -1.30208 545.642 -0.65859 0.0487988 0.749694 -0.0428687 $| +9825700 0 object/static/structure/corellia/corl_imprv_column_s03.iff 0 279.788 -1.14528 557.855 -0.627132 -0.206947 0.676222 -0.326501 $| +9825703 0 object/static/structure/corellia/corl_imprv_wall_4x16_s03.iff 0 267.643 -4.61372 548.091 0.669337 -0.158811 0.710186 -0.149677 $| +9825716 0 object/static/structure/general/campfire_fresh.iff 0 294.495 1.06328 552.276 1 0 0 0 $| +9825717 0 object/static/item/item_bowl_shallow.iff 0 294.517 0.717 552.251 1 0 0 0 $| +2115951 0 object/building/corellia/filler_slum_24x16_s01.iff 0 1765.21 28 2008.95 0.707107 0 0.707107 0 $| +2115953 0 object/building/corellia/filler_slum_24x16_s02.iff 0 1757.14 28 1994.07 -0.707107 0 0.707107 0 $| +2365494 0 object/building/corellia/filler_slum_24x16_s02.iff 0 1485 28 1561.92 0.707108 0 -0.707105 0 $| +4026531 0 object/static/structure/general/droid_r5_torso.iff 0 2012.64 28 1771.15 -0.0264239 0 0.999651 0 $| +4026532 0 object/static/structure/general/droid_repairdroidtorso.iff 0 2011.94 28 1770.73 -0.312988 0 0.949757 0 $| +4026533 0 object/static/structure/general/droid_r3_head.iff 0 2012.34 27.2962 1770.79 0.956802 -0.29074 0 0 $| +164392 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 296.567383 1.015901566 549.715332 1 0 0 0 $| +5275512 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1996.9339 28 1480.68 1 0 0 0 $| +1211507 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1754.27 28 1482.44 1 0 0 0 $| +1211538 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1872.56 28 1698.85 1 0 0 0 $| +1211562 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1521.08 3.1 1093.45 1 0 0 0 $| +1211563 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1516.17 2.29 1088.36 1 0 0 0 $| +1211572 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1543.27 2.97 1058.79 1 0 0 0 $| +1211573 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1531.74 2.05 1055.59 1 0 0 0 $| +1211574 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1522.41 3.88 1127.54 1 0 0 0 $| +1211575 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1501.12 2.09 1120.41 1 0 0 0 $| +1211576 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1503.23 0.38 1074.9 1 0 0 0 $| +1211577 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1570.2 25.9 1105.48 1 0 0 0 $| +1211578 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1550.72 8.15 1159.73 1 0 0 0 $| +1211579 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1491.68 3.49 1171.71 1 0 0 0 $| +1211580 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1594.57 11.81 1143.14 1 0 0 0 $| +1211588 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1902.73 34.25 1127.54 1 0 0 0 $| +1211589 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1898.43 34.7 1122.34 1 0 0 0 $| +1211590 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1882.08 33.93 1138.54 1 0 0 0 $| +1211591 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1916.2 34.17 1107.76 1 0 0 0 $| +1211592 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1890.72 35.89 1095.53 1 0 0 0 $| +1211593 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1915.15 31.27 1151.5 1 0 0 0 $| +1211599 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1970.92 29.24 1160.6 1 0 0 0 $| +1211600 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1967.01 30.12 1156.21 1 0 0 0 $| +1211601 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1976.61 28.33 1181.23 1 0 0 0 $| +1211602 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1978.34 28.8 1131.74 1 0 0 0 $| +1211603 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1947.21 32.05 1129.31 1 0 0 0 $| +1211604 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1949.86 28.36 1180.29 1 0 0 0 $| +1211610 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1972.61 28.95 1074.3 1 0 0 0 $| +1211611 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1968.87 29.54 1069.48 1 0 0 0 $| +1211613 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1988.13 23.51 1043.7 1 0 0 0 $| +1211614 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1939.85 31.61 1044.88 1 0 0 0 $| +1211615 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1934.64 32.16 1089.62 1 0 0 0 $| +164639 0 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 0 1910 28 1425 0 0 -1 0 $| +164640 0 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 0 1909 28 1425 0 0 -1 0 $| +164641 0 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 0 1911 28 1425 0 0 -1 0 $| +3375636 0 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 0 1870 28 1454 0 0 1 0 $| +-1 0 object/tangible/spawning/static_npc/herald_corellia_02_karin.iff 0 1864 28 1684 0 0 1 0 $| +-3 0 object/tangible/npc/corellia_spawn/kirkin_liawoon.iff 0 1871 28 1646 0.707106781 0 0.707106781 0 $| +-4 0 object/tangible/npc/corellia_spawn/dannik_malaan.iff 0 1666 28 1601 0.7071067812 0 0.7071067812 0 $| +-9 0 object/tangible/spawning/static_npc/death_watch_herald_rebel.iff 0 1834.74 28 1698.74 1 0 0 0 $| +-10 0 object/tangible/spawning/static_npc/herald_corellia_rogue_corsec.iff 0 1845.86 28 1639.68 1 0 0 0 $| From d842b0c2648b8216d55df20bc329b1ed3160bf2e Mon Sep 17 00:00:00 2001 From: IrishDarkshadow Date: Tue, 12 May 2020 08:11:48 -0400 Subject: [PATCH 11/13] reverting previous commit in order to re-apply the fix and retain tracking history --- .../buildout/corellia/corellia_4_2_ws.tab | 2518 ++++++++--------- 1 file changed, 1259 insertions(+), 1259 deletions(-) diff --git a/sku.0/sys.server/compiled/game/datatables/buildout/corellia/corellia_4_2_ws.tab b/sku.0/sys.server/compiled/game/datatables/buildout/corellia/corellia_4_2_ws.tab index 24e7b77de..886537729 100755 --- a/sku.0/sys.server/compiled/game/datatables/buildout/corellia/corellia_4_2_ws.tab +++ b/sku.0/sys.server/compiled/game/datatables/buildout/corellia/corellia_4_2_ws.tab @@ -1,1259 +1,1259 @@ -objid container server_template_crc cell_index px py pz qw qx qy qz scripts objvars -i i h i f f f f f f f s p -164393 0 object/static/structure/tatooine/debris_tatt_crate_1.iff 0 292.756 0.463244 554.43 1 0 0 0 $| -164394 0 object/static/structure/tatooine/debris_tatt_crate_1.iff 0 292.871 0.52167 555.584 0.950796 0 0.309816 0 $| -1211509 0 object/static/structure/general/data_terminal_s4.iff 0 1752.78 28.0662 1486.04 -3.2E-08 0 1 0 $| -1211510 0 object/static/structure/general/streetlamp_medium_style_01_on.iff 0 1749.57 28 1483.13 1 0 0 0 $| -1211540 0 object/static/structure/general/streetlamp_medium_style_02_on.iff 0 1877.42 28 1700.51 0.707107 0 -0.707106 0 $| -1211541 0 object/static/structure/general/streetlamp_medium_style_02_on.iff 0 1877.42 28 1707.72 0.707107 0 -0.707106 0 $| -1211542 0 object/static/creature/droids_protocol_droid_gold.iff 0 1873.8 28 1699.58 0.877583 0 -0.479425 0 $| -1211545 0 object/building/general/bunker_corellia_tomi_jinsin.iff 0 1529.76 2.96651 1080.5 0.911039 0 -0.412321 0 $| -1211546 1211545 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| -1211547 1211545 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| -1211548 1211545 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| -1211561 1211548 object/tangible/poi/spawnegg/interior_spawnegg.iff 3 3.44 0.25 -4.1232 1 0 0 0 intRandomYaw|0|1|$| -1211549 1211545 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| -1211550 1211545 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| -1211560 1211550 object/tangible/poi/spawnegg/interior_spawnegg.iff 5 -5.90735 -6.75 -5.08486 1 0 0 0 intRandomYaw|0|1|$| -1211551 1211545 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| -1211559 1211551 object/tangible/poi/spawnegg/interior_spawnegg.iff 6 5.65654 -6.76678 -14 1 0 0 0 intRandomYaw|0|1|$| -1211552 1211545 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| -1211558 1211552 object/tangible/poi/spawnegg/interior_spawnegg.iff 7 5.82104 -6.75 -1.88818 1 0 0 0 intRandomYaw|0|1|$| -1211553 1211545 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| -1211554 1211545 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| -1211555 1211554 object/tangible/poi/spawnegg/interior_spawnegg.iff 9 -2.607 -13.75 -16.702 1 0 0 0 intRandomYaw|0|1|$| -1211556 1211554 object/tangible/poi/spawnegg/interior_spawnegg.iff 9 -4.77686 -13.75 -8.52002 1 0 0 0 intRandomYaw|0|1|$| -1211557 1211554 object/tangible/poi/spawnegg/interior_spawnegg.iff 9 -0.256836 -13.75 -4.98926 1 0 0 0 intRandomYaw|0|1|$| -1211565 0 object/static/structure/tatooine/antenna_tatt_style_1.iff 0 1525.24 8.35486 1092.6 1 0 0 0 $| -1211566 0 object/static/structure/military/bunker_pillar_style_04.iff 0 1525.25 3.2 1092.57 1 0 0 0 $| -1211569 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1529.12 3.81409 1092.18 0.934943 0 0.354799 0 $| -1211570 0 object/static/installation/mockup_power_generator_fusion_style_1.iff 0 1524.89 7.99098 1079.41 0.413046 0 0.91071 0 $| -1211571 0 object/static/structure/general/tankfarm_s01.iff 0 1525.02 2.22977 1073.77 -0.352274 0 0.935897 0 $| -1211581 0 object/static/item/lair_wooden_tent.iff 0 1907.35 34.0243 1127 -3.2E-08 0 1 0 $| -1211582 0 object/static/item/lair_wooden_tent.iff 0 1897.57 35.0226 1117.78 0.707107 0 -0.707106 0 $| -1211585 0 object/static/structure/general/campfire_fresh.iff 0 1897.47 34.547 1125.97 0.998872 0.0436073 -0.00395866 -0.0183592 $| -1211586 0 object/tangible/furniture/tatooine/frn_tato_tbl_cafe_table_style_01.iff 0 1905.02 34.0601 1127.36 0.998376 0.0547413 -0.000864567 -0.015768 $| -1211587 0 object/tangible/quest/corellia_coronet_meatlump_act1_radio.iff 0 1904.61 34.8275 1127.4 -0.61706 -0.0353772 0.785629 0.0277865 $| -1211594 0 object/tangible/furniture/tatooine/frn_tato_tbl_cafe_table_style_01.iff 0 1973.28 29.0829 1160.55 0.998831 0.020219 -0.00261969 -0.0438281 $| -1211595 0 object/tangible/quest/corellia_coronet_meatlump_act1_radio.iff 0 1972.86 29.87 1160.61 -0.617678 -0.00393192 0.786415 0.00308795 $| -1211596 0 object/static/item/lair_wooden_tent.iff 0 1965.82 30.394 1150.98 0.707111 0 -0.707102 0 $| -1211597 0 object/static/item/lair_wooden_tent.iff 0 1975.6 28.894 1160.2 0 0 1 0 $| -1211598 0 object/static/structure/general/campfire_fresh.iff 0 1965.73 29.877 1159.17 0.998641 0.0372496 -0.00610765 -0.0359362 $| -1211605 0 object/tangible/furniture/tatooine/frn_tato_tbl_cafe_table_style_01.iff 0 1974.9 28.5662 1074.22 0.995971 0.00414414 -0.00208884 -0.0895563 $| -1211606 0 object/tangible/quest/corellia_coronet_meatlump_act1_radio.iff 0 1974.45 29.403 1074.27 -0.615114 0.0563575 0.783838 0.0636871 $| -1211607 0 object/static/item/lair_wooden_tent.iff 0 1967.44 30.0308 1064.64 0.707109 0 -0.707104 0 $| -1211608 0 object/static/item/lair_wooden_tent.iff 0 1977.22 29.0325 1073.87 0 0 1 0 $| -1211609 0 object/static/structure/general/campfire_fresh.iff 0 1967.35 29.7561 1072.83 0.998373 0.0113248 -0.00538234 -0.0556287 $| -1439854 0 object/static/structure/corellia/corl_tent_med.iff 0 1883.74 28 1390.23 1 0 0 0 $| -1439857 0 object/static/creature/corellia_murra.iff 0 1877.44 28 1429.47 0.5653 0 0.824886 0 $| -1439858 0 object/static/structure/corellia/corl_tent_small.iff 0 1878.57 28 1452.06 1 0 0 0 $| -1439943 0 object/tangible/terminal/terminal_mission_bounty.iff 0 1705.47 28 1696.86 1 0 0 0 $| -1439947 0 object/static/structure/general/droid_r3_powerdown.iff 0 1707.72 28 1700.45 -0.707107 0 0.707107 0 $| -1439948 0 object/static/structure/general/droid_r4_powerdown.iff 0 1707.81 28 1697.91 0.707107 0 -0.707106 0 $| -1439949 0 object/static/structure/general/droid_probedroid_powerdown.iff 0 1709.23 28 1698.98 1 0 0 0 $| -1439950 0 object/static/structure/corellia/corl_tent_small.iff 0 1679.8 28.1301 1611.57 0.9998 0 0.0199987 0 $| -1439951 0 object/tangible/terminal/terminal_bazaar.iff 0 1684.03 28 1610.74 -3.2E-08 0 1 0 $| -1855362 0 object/building/corellia/skyscraper_corellia_style_01.iff 0 1838 28 1884 1 0 0 0 $| -1855366 0 object/building/corellia/skyscraper_corellia_style_03.iff 0 1718 28 1784 0.923881 0 -0.382681 0 $| -1855370 0 object/building/corellia/skyscraper_corellia_style_03.iff 0 1958 28 1784 0.923879 0 0.382684 0 $| -1855378 0 object/building/corellia/skyscraper_corellia_style_04.iff 0 1778 28 1824 1 0 0 0 $| -1855386 0 object/building/corellia/skyscraper_corellia_style_04.iff 0 1898 28 1824 3.2E-08 0 1 0 $| -1855406 0 object/building/corellia/filler_building_corellia_style_01.iff 0 1920.69 28 1501.29 1 0 0 0 $| -1855413 0 object/building/corellia/filler_building_corellia_style_02.iff 0 1627.33 28 1598.11 0.707109 0 -0.707105 0 $| -1855420 0 object/building/corellia/filler_building_corellia_style_03.iff 0 1778 28 1704 0.707109 0 0.707105 0 $| -1855427 0 object/building/corellia/filler_building_corellia_style_04.iff 0 1777 28 1649 0.707106 0 0.707107 0 $| -1855431 0 object/building/corellia/filler_building_corellia_style_05.iff 0 1888 27.6908 1704 -0.707106 0 0.707107 0 $| -1855438 0 object/building/corellia/filler_building_corellia_style_06.iff 0 1838 28 1494 0.70711 0 -0.707104 0 $| -1855449 0 object/building/corellia/filler_building_corellia_style_07.iff 0 1905.09 28 1644.25 1 0 0 0 $| -1855459 0 object/building/corellia/bank_corellia.iff 0 1992.41 28 1544.67 0.999997 0 0.0023009 0 $| -1855460 0 object/building/corellia/capitol_corellia.iff 0 1838 28 1574 1 0 0 0 $| -1855461 1855460 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| -1855462 1855460 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| -1855463 1855460 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| -4607185 1855463 object/tangible/poi/spawnegg/interior_spawnegg.iff 3 -26.4 1.3 -0.5 1 0 0 0 intRandomYaw|0|1|$| -4607188 1855463 object/tangible/poi/spawnegg/interior_spawnegg.iff 3 -7 1.3 9.9 1 0 0 0 intRandomYaw|0|1|$| --2 1855463 object/tangible/npc/epic_quest/corsec_captain.iff 3 0 3.1 -11 1 0 0 0 $| -1855464 1855460 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| -1855465 1855460 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| -1855466 1855460 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| -1855467 1855460 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| -4607182 1855467 object/tangible/poi/spawnegg/interior_spawnegg.iff 3 -35.3 1.3 -1.9 1 0 0 0 intRandomYaw|0|1|$| -4607158 1855467 object/tangible/quest/corellia_coronet_diktat_search_desk.iff 1 -33.79225 1.294224 -2.555527 0.707107 0 0.7071065 0 $| -4607159 1855467 object/tangible/quest/corellia_coronet_diktat_search_terminal.iff 2 -34.15485 2.274531 -1.873781 -0.5403023 0 0.841471 0 $| -1855468 1855460 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| -1855469 1855460 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| -1855470 1855460 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| -1855471 1855460 object/cell/cell.iff 11 0 0 0 1 0 0 0 $| -1211533 1855471 object/tangible/quest/corellia_coronet_meatlump_act1_shipment.iff 11 16.5376 3.35159 -25.4146 0.707107 0 0.707106 0 $| -1855473 0 object/building/corellia/association_hall_civilian_corellia.iff 0 1772.42 28 1424.24 1 0 0 0 $| -1855474 1855473 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| -1855475 1855473 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| -1855476 1855473 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| -1855477 1855473 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| -1855478 1855473 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| -1855479 1855473 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| -1855480 1855473 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| -1855481 1855473 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| -1855482 1855473 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| -1855483 1855473 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| -4608437 1855483 object/tangible/collection/rare_melee_kashyyyk_blade_stick.iff 10 -1.56429 2.48303 -14.5934 0.9832418 -0.12972 0.01449411 -0.12727 $| -1509607 1855483 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 10 0 1.75 -14 0.844588 0 -0.535416 0 $| --7 1855483 object/tangible/npc/corellia_spawn/thracken_sal_solo.iff 10 5.5 1.2 -1.7 1 0 0 0 $| -1855484 1855473 object/cell/cell.iff 11 0 0 0 1 0 0 0 $| -3375685 1855484 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 11 1.4 1.7 -21.2 1 0 0 0 $| -1855485 1855473 object/cell/cell.iff 12 0 0 0 1 0 0 0 $| -1855486 1855473 object/cell/cell.iff 13 0 0 0 1 0 0 0 $| -1855487 1855473 object/cell/cell.iff 14 0 0 0 1 0 0 0 $| -1855488 1855473 object/cell/cell.iff 15 0 0 0 1 0 0 0 $| -1855489 1855473 object/cell/cell.iff 16 0 0 0 1 0 0 0 $| -1855490 1855473 object/cell/cell.iff 17 0 0 0 1 0 0 0 $| -1855491 0 object/building/corellia/cloning_corellia.iff 0 1548 28 1644 0.707109 0 0.707104 0 $| -1855492 1855491 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| -1855493 1855491 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| -1855494 1855491 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| -1855495 1855491 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| -1855496 1855491 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| -1855497 1855491 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| -1855498 0 object/building/corellia/garage_corellia.iff 0 1784.8 28 1353.22 8.32E-07 0 1 0 $| -1855499 0 object/building/corellia/guild_combat_corellia_style_01.iff 0 1788 28 1754 0.707106 0 0.707108 0 $| -1855500 1855499 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| -1855501 1855499 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| -1855502 1855499 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| -1855503 1855499 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| -1855504 1855499 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| --13 1855504 object/tangible/npc/storyline_npc/coa3_tactical_rebel_spawner.iff 5 9.7 1.1 0.1 1 0 0 0 $| -1855505 1855499 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| -1855506 1855499 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| -1855507 1855499 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| -1855508 1855499 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| -1855509 0 object/building/corellia/guild_commerce_corellia_style_01.iff 0 1888 28 1754 -0.707106 0 0.707108 0 $| -1855510 1855509 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| -1855511 1855509 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| -1855512 1855509 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| -1855513 1855509 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| -1855514 1855509 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| -1855515 1855509 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| -1855516 1855509 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| --12 1855516 object/tangible/npc/storyline_npc/coa3_information_rebel_spawner.iff 7 14.1 1.1 -9.1 1 0 0 0 $| -1855517 1855509 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| -1855518 1855509 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| -1855529 0 object/building/corellia/hospital_corellia.iff 0 1958 28 1704 -1.67E-06 0 1 0 theme_park.dungeon.generic_spawner spawn_table|4|datatables/spawning/ep3/ep3_coronet_medical_center.iff|$| -1855530 1855529 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| -1855531 1855529 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| -1211544 1855531 object/tangible/poi/spawnegg/interior_spawnegg.iff 2 15.67 0.26 -3.536 1 0 0 0 intRandomYaw|0|1|$| -1855532 1855529 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| -1855533 1855529 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| -1855534 1855529 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| -1855535 1855529 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| -1855536 1855529 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| -1855537 1855529 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| -1855538 1855529 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| -1855539 1855529 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| -1855540 1855529 object/cell/cell.iff 11 0 0 0 1 0 0 0 $| -1855541 1855529 object/cell/cell.iff 12 0 0 0 1 0 0 0 $| -1855542 1855529 object/cell/cell.iff 13 0 0 0 1 0 0 0 $| -1855543 1855529 object/cell/cell.iff 14 0 0 0 1 0 0 0 $| -1855544 0 object/building/corellia/hotel_corellia.iff 0 1586 28 1471 0.70711 0 -0.707104 0 $| -1855545 1855544 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| -1855546 1855544 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| -1855547 1855544 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| -1855548 1855544 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| -1094962 1855548 object/tangible/gambling/slot/standard.iff 1 4.31708 1.35331 -22.14906 0.9999964 0 0.002698069 0 $| -1094963 1855548 object/tangible/gambling/slot/standard.iff 2 0.2440479 1.352409 -22.06592 0.9999964 0 0.002698069 0 $| -1094964 1855548 object/tangible/gambling/wheel/roulette.iff 3 -1.177133 1.162605 -16.19081 0.9999964 0 0.002698069 0 $| -1094965 1855548 object/tangible/gambling/wheel/roulette.iff 4 9.467048 1.163567 -16.30754 0.9999964 0 0.002698069 0 $| -1094966 1855548 object/tangible/gambling/slot/standard.iff 5 8.357725 1.35331 -22.29336 0.9999964 0 0.002698069 0 $| -1855549 1855544 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| -1855550 1855544 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| -1094956 1855550 object/tangible/gambling/wheel/roulette.iff 1 -15.87479 1.000944 -0.1205326 0.9999734 0 -0.007301865 0 $| -1094957 1855550 object/tangible/gambling/wheel/roulette.iff 2 -15.92515 1.000959 4.248792 0.9999734 0 -0.007301865 0 $| -1094958 1855550 object/tangible/gambling/slot/standard.iff 3 -12.28831 1.000776 -0.09216459 -0.7019242 0 0.7122527 0 $| -1094959 1855550 object/tangible/gambling/slot/standard.iff 4 -12.08542 1.000623 -0.1099437 0.7122518 0 0.701924 0 $| -1094960 1855550 object/tangible/gambling/slot/standard.iff 5 -12.01161 1.000883 4.197353 0.7032807 0 0.7109124 0 $| -1094961 1855550 object/tangible/gambling/slot/standard.iff 6 -12.21349 1.00073 4.220461 0.7109085 0 -0.703285 0 $| -1855551 1855544 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| --5 1855551 object/tangible/npc/corellia_spawn/grobber.iff 7 -15.2 1 -8.4 1 0 0 0 $| -1855552 1855544 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| -1855553 1855544 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| -1855554 1855544 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| --8 1855554 object/tangible/npc/corellia_spawn/zekka_thyne.iff 10 -23 1.6 -15 0.7071067812 0 0.7071067812 0 $| -1855555 0 object/building/corellia/shuttleport_corellia.iff 0 2022.33 28 1754.22 0.70711 0 -0.707104 0 structure.municipal.starport:planet_map.map_loc travel.cost|0|200|travel.ground_time|0|300|travel.is_shuttleport|0|1|travel.point_name|4|Coronet Shuttleport A|travel.shuttle_available|0|1|travel.version|0|3|$| -1855572 0 object/building/corellia/shuttleport_corellia.iff 0 1718.23 28 1522.77 -0.707106 0 0.707107 0 structure.municipal.starport:planet_map.map_loc travel.cost|0|200|travel.ground_time|0|300|travel.is_shuttleport|0|1|travel.point_name|4|Coronet Shuttleport B|travel.shuttle_available|0|1|travel.version|0|3|$| -1855573 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1671.08 28 1738.88 0.382687 0 0.923878 0 $| -1855587 0 object/building/corellia/filler_building_corellia_style_03.iff 0 2038.05 28 1655.64 0.707108 0 -0.707105 0 $| -1855594 0 object/building/corellia/filler_building_corellia_style_07.iff 0 1648 28 1404 0.707107 0 0.707107 0 $| -1855604 0 object/building/corellia/filler_building_corellia_style_01.iff 0 1762 28 1504 1 0 0 0 $| -1855611 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1927.14 28 1567.07 0.707106 0 0.707108 0 $| -1855618 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 1718 28 1404 1 0 0 0 $| -1855624 0 object/building/corellia/filler_building_corellia_style_05.iff 0 1727.67 28 1724.32 0.707109 0 -0.707105 0 $| -1855631 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1668 28 1524 1 0 0 0 $| -1855671 0 object/building/corellia/starport_corellia.iff 0 1996.71 28 1409.2 0.756336 0 -0.654183 0 structure.municipal.starport:theme_park.dungeon.generic_spawner travel.air_time|0|60|travel.cost|0|150|travel.ground_time|0|300|travel.point_name|4|Coronet Starport|travel.shuttle_available|0|1|travel.version|0|3|spawn_table|4|datatables/spawning/building_spawns/coronet_starport.iff|$| -1855672 1855671 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| -1855673 1855671 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| -1855674 1855671 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| -1855675 1855671 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| -3095701 1855675 object/tangible/terminal/terminal_space.iff 4 -0.173982 0.639421 57.3552 3.20013E-08 0 1 0 $| -3095702 1855675 object/tangible/terminal/terminal_space.iff 4 -0.306201 0.639422 62.2415 1 0 0 0 $| -3095703 1855675 object/tangible/terminal/terminal_space.iff 4 -10.3892 0.639423 57.4145 -3.20013E-08 0 1 0 $| -3095704 1855675 object/tangible/terminal/terminal_space.iff 4 -10.5966 0.639424 62.3669 1 0 0 0 $| -3095705 1855675 object/tangible/terminal/terminal_space.iff 4 10.0577 0.639422 57.249 -0.00689757 0 0.999976 0 $| -3095706 1855675 object/tangible/terminal/terminal_space.iff 4 9.91856 0.639422 62.2038 0.999976 0 0.00689846 0 $| -4335596 1855675 object/tangible/terminal/terminal_newsnet.iff 4 6.90764 0.639421 49.498 1 0 0 0 $| -4335597 1855675 object/tangible/terminal/terminal_newsnet.iff 4 -8.32585 0.639421 49.7909 1 0 0 0 $| -1855676 1855671 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| -1855677 1855671 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| -1855678 1855671 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| -1855679 1855671 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| -1855680 1855671 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| -1855681 1855671 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| -1509602 1855681 object/tangible/terminal/terminal_space.iff 10 -40.4311 1.63942 46.4818 0.997529 0 -0.0702515 0 $| -1509603 1855681 object/tangible/terminal/terminal_space.iff 10 -37.9437 1.63942 49.2991 0.753583 0 -0.657353 0 $| -1509604 1855681 object/tangible/terminal/terminal_space.iff 10 -44.1634 1.63942 50.1721 0.648034 0 0.761611 0 $| -1509605 1855681 object/tangible/terminal/terminal_space.iff 10 -41.6075 1.63942 52.927 0.057976 0 0.998318 0 $| -1855682 1855671 object/cell/cell.iff 11 0 0 0 1 0 0 0 $| -1855683 1855671 object/cell/cell.iff 12 0 0 0 1 0 0 0 $| -5245543 1855683 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 12 -44.7 2.6 35.2 0.70711 0 -0.70711 0 $| -1855684 1855671 object/cell/cell.iff 13 0 0 0 1 0 0 0 $| -1211512 1855684 object/tangible/poi/spawnegg/interior_spawnegg.iff 13 50 1 22.9 1 0 0 0 intRandomYaw|0|1|$| -1855685 1855671 object/cell/cell.iff 14 0 0 0 1 0 0 0 $| -1509606 1855685 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 14 -56.6 1 8.6 0.89101 0 -0.45399 0 $| -1855686 1855671 object/cell/cell.iff 15 0 0 0 1 0 0 0 $| -5625466 1855671 object/cell/cell.iff 16 0 0 0 1 0 0 0 $| -1855687 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1968 28 1644 1 0 0 0 $| -1855694 0 object/static/structure/corellia/corl_fountain_statue_heroic_s01.iff 0 1838 28 1674 0.707106 0 0.707107 0 theme_park.script_spawner.spawner_methods.gcw_spawner $| -1855695 0 object/static/structure/corellia/corl_fountain_statue_contemplate_s01.iff 0 1838 28 1714 -0.707106 0 0.707107 0 $| -1855696 0 object/static/structure/corellia/corl_fountain_circle_s01.iff 0 1838 28 1694 -3.2E-08 0 1 0 $| -1855697 0 object/static/structure/corellia/corl_fountain_brazier_round_s01.iff 0 1853.24 28 1639.35 1 0 0 0 $| -1855698 0 object/static/structure/corellia/corl_fountain_brazier_round_s01.iff 0 1822.72 28 1639.35 1 0 0 0 $| -1855699 0 object/static/structure/corellia/corl_fountain_rectangle_s01.iff 0 1838 28 1754 -3.2E-08 0 1 0 $| -1855700 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 1768 28 1574 0.707102 0 0.707111 0 $| -1855713 0 object/building/corellia/filler_building_corellia_style_01.iff 0 1718 28 1574 0.707109 0 -0.707105 0 $| -1905352 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1668 28 1500 1 0 0 0 $| -1905353 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1646 28 1500 1 0 0 0 $| -1905355 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1630 28 1492 0.707109 0 -0.707104 0 $| -1905356 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1630 28 1500 1 0 0 0 $| -1905357 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1630 28 1478 0.707109 0 -0.707104 0 $| -1905358 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1630 28 1464 0.707124 0 -0.707089 0 $| -1905359 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1630 28 1456 0.707107 0 0.707107 0 $| -1905360 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1700.61 28 1440 1 0 0 0 $| -1905361 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1646 28 1456 1 0 0 0 $| -1905362 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1722 28 1440 1 0 0 0 $| -1905363 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1738 28 1476 0.70712 0 -0.707093 0 $| -1905364 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1738 28 1484 0.707108 0 -0.707106 0 $| -1905365 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1738 28 1462 0.70712 0 -0.707093 0 $| -1905366 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1738 28 1492 0.7071 0 0.707113 0 $| -1905367 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1738 28 1500 -3.2E-08 0 1 0 $| -1905368 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1556 28 1497 1 0 0 0 $| -1905372 0 object/building/corellia/filler_building_corellia_style_05.iff 0 1538 28 1564 0.707108 0 -0.707105 0 $| -1905379 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 1588 28 1524 1 0 0 0 $| -1905385 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1484.68 28 1604.21 -0.707105 0 0.707108 0 $| -1905404 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1564 28 1497 1 0 0 0 $| -1905408 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1524 28 1477 0.707109 0 -0.707104 0 $| -1905409 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1544 28 1497 1 0 0 0 $| -1905412 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1532 28 1497 -3.2E-08 0 1 0 $| -1905413 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1524 28 1497 -3.2E-08 0 1 0 $| -1905414 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1524 28 1489 0.707108 0 0.707105 0 $| -1905426 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1524 28 1445 0 0 1 0 $| -1905427 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1532 28 1445 0 0 1 0 $| -1905428 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1544 28 1445 1 0 0 0 $| -1905429 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1556 28 1445 1 0 0 0 $| -1905430 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1564 28 1445 1 0 0 0 $| -1905431 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1524 28 1453 0.707108 0 -0.707105 0 $| -1905436 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1524 28 1465 0.707122 0 -0.707091 0 $| -1905459 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1706 28 1500 0 0 1 0 $| -1905460 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1690 28 1500 1 0 0 0 $| -1905461 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1662 28 1456 1 0 0 0 $| -1905462 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1678 28 1456 1 0 0 0 $| -1905488 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1625.01 28 1674.57 -0.707105 0 0.707108 0 $| -1905495 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1484.68 28 1684.21 -0.707105 0 0.707108 0 $| -1905502 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1478 28 1854 0.923879 0 -0.382685 0 $| -1905563 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 2033.38 28 1914.87 1 0 0 0 $| -1905570 0 object/building/corellia/filler_building_corellia_style_05.iff 0 2008 28 1854 -0.382683 0 0.92388 0 $| -1905577 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 2028.52 28 1804.58 0.707106 0 0.707107 0 $| -1905583 0 object/building/corellia/filler_building_corellia_style_06.iff 0 1918 28 1884 0.707105 0 0.707108 0 $| -1905594 0 object/building/corellia/filler_building_corellia_style_04.iff 0 1778 28 1884 1 0 0 0 $| -1905599 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1721.46 28 1875.99 -0.707105 0 0.707108 0 $| -1905606 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 1648 28 1954 1 0 0 0 $| -1905612 0 object/building/corellia/filler_building_corellia_style_03.iff 0 1578 28 1954 0.923879 0 0.382684 0 $| -1905619 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 1538 28 1904 0.92388 0 -0.382683 0 $| -1935565 0 object/building/corellia/association_hall_civilian_corellia.iff 0 1838 28 1824 2.06E-06 0 1 0 $| -1935566 1935565 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| -1935567 1935565 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| -1935568 1935565 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| -1935569 1935565 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| -1935570 1935565 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| -1935571 1935565 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| -1935572 1935565 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| -1935573 1935565 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| -1935574 1935565 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| -1935575 1935565 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| --6 1935575 object/tangible/npc/corellia_spawn/sergeant_tarl.iff 10 -5.8 1.2 -2.8 0 0 1 0 $| -1935576 1935565 object/cell/cell.iff 11 0 0 0 1 0 0 0 $| --11 1935576 object/tangible/npc/corellia_spawn/captain_gilad_pellaeon.iff 11 -11.3 1.7 -21 0.3090169944 0 0.9510565163 0 $| -1935577 1935565 object/cell/cell.iff 12 0 0 0 1 0 0 0 $| -1935578 1935565 object/cell/cell.iff 13 0 0 0 1 0 0 0 $| -1935579 1935565 object/cell/cell.iff 14 0 0 0 1 0 0 0 $| -1935580 1935565 object/cell/cell.iff 15 0 0 0 1 0 0 0 $| -1935581 1935565 object/cell/cell.iff 16 0 0 0 1 0 0 0 $| -1935582 1935565 object/cell/cell.iff 17 0 0 0 1 0 0 0 $| -2005443 0 object/building/corellia/filler_slum_16x32_s02.iff 0 1539.62 28 1761.55 0.382683 0 0.92388 0 $| -2005447 0 object/building/corellia/filler_slum_16x32_s01.iff 0 1581.83 28 1719.58 0.382683 0 0.92388 0 $| -2005449 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1564.13 28 1734.68 0.92388 0 -0.382683 0 $| -2005451 0 object/building/corellia/filler_slum_16x32_s02.iff 0 1513.2 28 1643.94 1 0 0 0 $| -2005455 0 object/building/corellia/filler_slum_16x32_s01.iff 0 1505.42 28 1801.8 0.92388 0 -0.382683 0 $| -2005457 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1508.29 28 1759.86 0.382683 0 0.92388 0 $| -2005459 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1480.65 28 1794.46 -0.382684 0 0.923879 0 $| -2005461 0 object/building/corellia/filler_slum_16x32_s02.iff 0 1480.24 28 1769.02 0.382683 0 0.92388 0 $| -2005465 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1512.94 28 1668 1 0 0 0 $| -2005467 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1512.9 28 1690.39 1 0 0 0 $| -2005469 0 object/building/corellia/filler_slum_16x32_s01.iff 0 1537.95 28 1689.52 0.707107 0 0.707107 0 $| -2005471 0 object/building/corellia/filler_slum_16x32_s02.iff 0 1514.94 28 1714.19 -7.48E-07 0 1 0 $| -2005475 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1524.13 28 1743.74 -0.382684 0 0.923879 0 $| -2005477 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1564.42 28 1709.26 0.923879 0 0.382684 0 $| -2005479 0 object/building/corellia/filler_slum_16x32_s01.iff 0 1587.38 28 1685.2 -7.48E-07 0 1 0 $| -2005481 0 object/building/corellia/filler_slum_16x32_s02.iff 0 1585.2 28 1646.07 -1E-06 0 1 0 $| -2005485 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1582.45 28 1620.81 1 0 0 0 $| -2005487 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1586.31 28 1602.02 0.707108 0 -0.707106 0 $| -2005489 0 object/building/corellia/filler_slum_16x32_s01.iff 0 1560.38 28 1599.35 0.707109 0 -0.707105 0 $| -2005491 0 object/building/corellia/filler_slum_16x32_s01.iff 0 1514.21 28 1609.66 -1E-06 0 1 0 $| -2005493 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1532.62 28 1599.44 1 0 0 0 $| -2005495 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 1819.72 28 1384.97 0.707109 0 -0.707105 0 $| -2035352 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1497.54 28 1517.53 -4.79E-06 0 1 0 $| -2035353 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1532.54 28 1517.53 0.707108 0 -0.707105 0 $| -2035354 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1489.54 28 1517.53 1 0 0 0 $| -2035355 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1524.54 28 1517.53 -1.62E-05 0 1 0 $| -2035356 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1511.54 28 1517.53 -4.79E-06 0 1 0 $| -2035357 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1548.94 28 1517.68 1 0 0 0 $| -2035360 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.38 27.8592 1517.61 0.92388 0 -0.382683 0 $| -2035364 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.38 28 1550.74 0.707108 0 0.707105 0 $| -2035369 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.37 28 1584 0.707107 0 0.707107 0 $| -2035370 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1456.3 28 1567.35 0.707107 0 0.707107 0 $| -2035377 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.35 28 1617.26 -0.707107 0 0.707107 0 $| -2035379 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1456.37 28 1600.6 -0.707107 0 0.707107 0 $| -2035385 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.39 28 1750.06 0 0 1 0 $| -2035386 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.36 28 1716.84 -0.707107 0 0.707107 0 $| -2035387 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1456.43 28 1733.49 -0.707107 0 0.707107 0 $| -2035388 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1456.44 28 1700.23 -0.707107 0 0.707107 0 $| -2035389 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.43 28 1683.89 0.707107 0 0.707107 0 $| -2035394 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1456.51 28 1799.87 -0.707107 0 0.707107 0 $| -2035395 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.51 28 1783.27 0.707107 0 0.707107 0 $| -2035396 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1456.44 28 1766.62 0.707107 0 0.707107 0 $| -2035464 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1738 28 1448 0.707104 0 0.707109 0 $| -2035466 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1738 28 1440 0 0 1 0 $| -2035467 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1694 28 1448 0.707104 0 0.707109 0 $| -2035468 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1694 28 1440 0.707108 0 0.707106 0 $| -2035469 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1694 28 1456 0.707107 0 0.707107 0 $| -2035470 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1620.94 28 1383.44 -0.382683 0 0.92388 0 $| -2035471 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1615.28 28 1389.09 -0.382698 0 0.923873 0 $| -2035472 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1606.09 28 1398.28 -0.382688 0 0.923878 0 $| -2035473 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1596.19 28 1408.18 -0.382688 0 0.923878 0 $| -2035474 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1590.65 28 1413.96 0.832218 0 0.554448 0 $| -2035475 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1590.45 28 1429.95 0.707108 0 0.707105 0 $| -2035476 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1632.6 28 1371.76 0.923879 0 0.382684 0 $| -2035477 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1660.02 28 1360.41 1 0 0 0 $| -2035478 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1644.02 28 1360.56 -0.196413 0 0.980521 0 $| -2035492 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1676.39 28 1360.42 7.48E-07 0 1 0 $| -2035493 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1692.39 28 1360.42 1 0 0 0 $| -2035496 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1724.39 28 1360.42 1 0 0 0 $| -2035497 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1708.39 28 1360.42 1E-06 0 1 0 $| -2035502 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1746.39 28 1360.42 -4.48E-06 0 1 0 $| -2035522 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1753.25 28 1360.41 1E-06 0 1 0 $| -2035523 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1807 28 1357 1 0 0 0 $| -2035524 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1761.64 28 1360.4 1 0 0 0 $| -2035528 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1804 28 1357 0.707109 0 0.707104 0 $| -2035529 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1829.24 28 1330.91 0.82381 0 0.566866 0 $| -2035531 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1840.51 28 1319.4 -0.382684 0 0.923879 0 $| -2035540 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1852.25 28 1307.65 0.92388 0 0.382683 0 $| -2035676 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 2043.02 28 1628.8 0.707109 0 0.707105 0 $| -2035677 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 2043.06 28 1623.8 1 0 0 0 $| -2035678 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 2043.06 28 1633.7 0.707109 0 0.707105 0 $| -2035681 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 2009.02 28 1640.85 1 0 0 0 $| -2035682 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 2020.85 28 1640.84 1 0 0 0 $| -2035683 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1997.29 28 1640.82 1 0 0 0 $| -2035685 0 object/static/structure/corellia/corl_imprv_arch_lg_s02.iff 0 1974.74 33.6515 1679.43 0.707109 -0.707104 0 0 $| -2035686 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1971.53 28 1673.57 1 0 0 0 $| -2035687 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1977.64 28 1673.4 1 0 0 0 $| -2035794 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1938.02 28 1673.71 1 0 0 0 $| -2035795 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1944.13 28 1673.54 1 0 0 0 $| -2035796 0 object/static/structure/corellia/corl_imprv_arch_lg_s02.iff 0 1941.23 33.674 1679.58 0.707119 -0.707094 0 0 $| -2035797 0 object/static/structure/corellia/corl_imprv_arch_lg_s02.iff 0 1974.78 33.6732 1728.59 0.707104 0.707109 0 0 $| -2035798 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1978.08 28 1734.35 1 0 0 0 $| -2035799 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1971.97 28 1734.52 1 0 0 0 $| -2035800 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1938.29 28 1734.54 1 0 0 0 $| -2035801 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1944.4 28 1734.37 1 0 0 0 $| -2035802 0 object/static/structure/corellia/corl_imprv_arch_lg_s02.iff 0 1941.21 33.6737 1728.52 0.707098 0.707115 0 0 $| -2035809 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 2033.06 34.588 1704.92 0.70711 0.707104 0 0 $| -2035810 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 2033.06 34.588 1702.92 0.707109 -0.707104 0 0 $| -2035811 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 2037.18 28.611 1698.92 1 0 0 0 $| -2035812 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 2028.81 28.611 1698.92 1 0 0 0 $| -2035813 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 2028.81 28.611 1708.92 1 0 0 0 $| -2035814 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 2037.18 28.611 1708.93 1 0 0 0 $| -2055352 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1873.31 28 1620.94 1 0 0 0 $| -2055353 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1862.1 28 1620.91 1 0 0 0 $| -2055354 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1884.72 28 1620.89 1 0 0 0 $| -2055355 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1864 28 1635 1 0 0 0 $| -2055360 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1917.33 28 1609.1 0.707108 0 -0.707105 0 $| -2055361 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1917.36 28 1597.89 0.707108 0 -0.707105 0 $| -2055362 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1917.37 28 1620.51 0.707108 0 -0.707105 0 $| -2055363 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1930.53 28 1633.83 -1.84E-06 0 1 0 $| -2055366 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1859 28 1635 1 0 0 0 $| -2055368 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1869 28 1635 1 0 0 0 $| -2055370 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1812 28 1635 1 0 0 0 $| -2055371 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1807 28 1635 1 0 0 0 $| -2055372 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1817 28 1635 1 0 0 0 $| -2055374 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1931.51 28 1655.69 -2E-06 0 1 0 $| -2055391 0 object/static/structure/corellia/corl_imprv_gate_sm_s02.iff 0 1456.32 28 1637.81 0.707109 0 -0.707104 0 $| -2055392 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1456.37 28 1650.59 0.707109 0 -0.707104 0 $| -2055393 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1456.37 28 1625.84 -0.707107 0 0.707107 0 $| -2055394 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.37 28 1642.59 0.707109 0 0.707104 0 $| -2055395 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1456.4 28 1675.35 -0.707107 0 0.707107 0 $| -2055396 0 object/static/structure/corellia/corl_imprv_gate_sm_s02.iff 0 1456.39 28 1663.4 0.707132 0 -0.707081 0 $| -2055417 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.37 28 1658.59 0.707107 0 0.707107 0 $| -2055468 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1456.49 28 1831.72 0.707108 0 -0.707105 0 $| -2055469 0 object/static/structure/corellia/corl_imprv_gate_sm_s02.iff 0 1456.52 28 1819.79 0.707108 0 -0.707105 0 $| -2055473 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1472.8 28 1786.09 0.92388 0 -0.382683 0 $| -2055474 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1472.35 28 1763.53 -0.382684 0 0.923879 0 $| -2055476 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1461.3 28 1774.62 0.92388 0 -0.382683 0 $| -2055477 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1495.16 28 1740.77 -0.382684 0 0.923879 0 $| -2055478 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1483.97 28 1751.92 -0.382684 0 0.923879 0 $| -2055479 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1506.01 28 1729.12 0.707118 0 -0.707095 0 $| -2055480 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1506.03 28 1713.62 0.707105 0 0.707107 0 $| -2055495 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1893.85 28 1485.53 1 0 0 0 $| -2055525 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1827.99 28 1424.82 0.707108 0 -0.707105 0 $| -2055526 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1828.05 28 1437.72 0.707108 0 -0.707105 0 $| -2055527 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1828.04 28 1412.02 0.707108 0 -0.707105 0 $| -2055528 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1751.81 27.3265 1403.75 1 0 0 0 $| -2055529 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1750.52 26.7288 1430.12 0.707108 0 -0.707105 0 $| -2055530 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1800.4 28 1445.93 1 0 0 0 $| -2055532 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1800.4 28 1435.09 1 0 0 0 $| -2055535 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1934.81 28 1527.75 0.707109 0 0.707105 0 $| -2055536 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1776.27 28 1545.62 0.707108 0 -0.707105 0 $| -2055537 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1776.26 27.5985 1519.92 0.707108 0 -0.707105 0 $| -2055538 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1776.21 27.89 1532.72 0.707108 0 -0.707105 0 $| -2055647 0 object/static/structure/corellia/corl_imprv_gate_sm_s03.iff 0 1634.44 28 1634.12 0.707106 0 0.707107 0 $| -2055649 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1634.43 28 1622.51 0.707108 0 -0.707105 0 $| -2055651 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1634.41 28 1645.97 -0.707107 0 0.707107 0 $| -2055652 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1635 28 1702 0.92388 0 -0.382683 0 $| -2055653 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1651 28 1718 0.92388 0 -0.382683 0 $| -2055654 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1643 28 1710 0.92388 0 -0.382683 0 $| -2055672 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1594.27 28 1714.1 -0.191508 0 0.981491 0 $| -2055673 0 object/static/structure/corellia/corl_imprv_gate_sm_s03.iff 0 1605.26 28 1709.67 0.981491 0 0.191509 0 $| -2055674 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1616.02 28 1705.3 -0.191509 0 0.981491 0 $| -2055675 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1586.61 28 1698.26 0.707108 0 0.707105 0 $| -2055676 0 object/static/structure/corellia/corl_imprv_gate_sm_s03.iff 0 1590 28 1666 0.707107 0 0.707107 0 $| -2055677 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1583.33 28 1629.54 0.707107 0 0.707107 0 $| -2055678 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1586.5 28 1611.32 0.707107 0 0.707107 0 $| -2055679 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1545.1 28 1599.34 1 0 0 0 $| -2055680 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1516.26 28 1622.81 0.707108 0 -0.707105 0 $| -2055681 0 object/static/structure/corellia/corl_imprv_gate_sm_s03.iff 0 1512.71 28 1679.21 -0.707107 0 0.707107 0 $| -2055682 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1522.57 28 1686.18 1 0 0 0 $| -2055683 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1520.92 28 1693.27 3.48E-07 0 1 0 $| -2055686 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1574.06 28 1712.65 0.382684 0 0.92388 0 $| -2055691 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1505.94 28 1698.29 0.707124 0 -0.707089 0 $| -2055695 0 object/static/structure/corellia/corl_imprv_arch_lg_s02.iff 0 1553.78 28 1744.65 -0.382683 0 0.92388 0 $| -2055696 0 object/static/structure/corellia/corl_imprv_column_s03.iff 0 1558.45 26.7525 1739.98 0.92388 0 0.382683 0 $| -2055699 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1530.84 27.6665 1756.73 0.923879 0 -0.382685 0 $| -2055700 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1513.82 28 1749.26 -0.382682 0 0.92388 0 $| -2055701 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1489.27 28.3531 1803.3 0.923879 0 -0.382685 0 $| -2055703 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1616.52 28 1727.5 0.382683 0 0.92388 0 $| -2055706 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1509.27 28 1576.32 1 0 0 0 $| -2055707 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1568.33 28 1576.43 1 0 0 0 $| -2055713 0 object/static/structure/corellia/corl_imprv_gate_sm_s02.iff 0 1588.33 28 1576.43 1 0 0 0 $| -2055718 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1608.33 28 1576.43 1 0 0 0 $| -2075368 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1699.1 28 1758.2 0.92388 0 -0.382683 0 $| -2075369 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1692.21 28 1765.11 0.92388 0 -0.382683 0 $| -2075370 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1762.02 28 1682 0.707108 0 -0.707105 0 $| -2075371 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1773.99 28 1681.98 0.707108 0 -0.707105 0 $| -2075372 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1795.98 28 1728.77 0.707109 0 -0.707104 0 $| -2075373 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1795.98 28 1723.77 0.707108 0 -0.707105 0 $| -2075374 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1795.98 28 1733.77 -0.707107 0 0.707107 0 $| -2075375 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1761.8 28 1730.74 -0.707107 0 0.707107 0 $| -2075376 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1761.8 28 1725.74 0.707122 0 -0.707091 0 $| -2075377 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1761.8 28 1735.74 -0.707107 0 0.707107 0 $| -2075379 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1761.83 28 1744.29 0.707108 0 -0.707105 0 $| -2075380 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1761.85 28 1761.38 -0.707107 0 0.707107 0 $| -2075381 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1761.82 28 1752.84 -0.707107 0 0.707107 0 $| -2075382 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1767.66 28 1775.47 0.923879 0 -0.382684 0 $| -2075383 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1761.59 28 1769.45 0.923879 0 -0.382684 0 $| -2075384 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1789.8 28 1780.92 0.707107 0 0.707107 0 $| -2075386 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1781.26 28 1780.95 3.2E-08 0 1 0 $| -2075387 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1773.09 28 1780.94 1 0 0 0 $| -2075395 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1902.61 28 1781.15 3.2E-08 0 1 0 $| -2075396 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1894.44 28 1781.14 1 0 0 0 $| -2075398 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1886.01 28 1781.17 -0.707107 0 0.707107 0 $| -2075399 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1914.4 28 1769.54 -0.382683 0 0.92388 0 $| -2075400 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1878.72 28 1728.79 0.707107 0 0.707107 0 $| -2075401 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1878.72 28 1733.79 0.707104 0 0.707109 0 $| -2075402 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1878.72 28 1723.79 0.707107 0 0.707107 0 $| -2075405 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1914.61 28 1735.83 0.707107 0 0.707107 0 $| -2075407 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1914.64 28 1744.38 -0.707107 0 0.707107 0 $| -2075408 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1914.65 28 1761.48 -0.707107 0 0.707107 0 $| -2075409 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1914.62 28 1752.93 -0.707107 0 0.707107 0 $| -2075410 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1908.38 28 1775.6 -0.382683 0 0.92388 0 $| -2075411 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1774.23 28 1606.35 0.707108 0 0.707105 0 $| -2075412 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1774.23 28 1616.35 0.707108 0 0.707105 0 $| -2075413 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1774.23 28 1611.35 0.707108 0 0.707105 0 $| -2115412 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 2042.44 28 1741.19 0 0 1 0 $| -2115413 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 2017.58 28 1770.11 0.707108 0 0.707105 0 $| -2115416 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 2037.53 28 1770.14 0.707108 0 0.707105 0 $| -2115422 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 2029.75 28 1851.48 -0.382683 0 0.92388 0 $| -2115567 0 object/building/corellia/filler_historic_32x16_s01.iff 0 1790.56 28 2009.69 1 0 0 0 $| -2115572 0 object/building/corellia/filler_historic_32x16_s02.iff 0 1791.39 27.9994 2047.45 1 0 0 0 $| -2115577 0 object/building/corellia/filler_historic_32x16_s02.iff 0 1890.28 28 2019.33 -3.2E-08 0 1 0 $| -2115588 0 object/building/corellia/filler_building_corellia_style_07.iff 0 1723.04 28 1951.86 0.92388 0 -0.382683 0 $| -2115614 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 1911.13 28 1953.89 0.707109 0 -0.707105 0 $| -2115620 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1971.7 28 1940.16 1 0 0 0 $| -2115655 0 object/static/structure/corellia/corl_power_connector.iff 0 1619.32 28 1564.09 0.92388 0 -0.382683 0 $| -2115656 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1603.13 28 1566.88 0.707122 0 0.707091 0 $| -2115657 0 object/static/structure/corellia/corl_power_transformer_s02.iff 0 1622.13 28 1566.88 0.707122 0 0.707091 0 $| -2115658 0 object/static/structure/corellia/corl_power_transformer_s02.iff 0 1598.13 28 1566.88 0.707122 0 0.707091 0 $| -2115659 0 object/static/structure/corellia/corl_power_connector.iff 0 1600.6 28 1569.33 0.92388 0 -0.382683 0 $| -2115660 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1610.13 28 1572.88 1 0 0 0 $| -2115661 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1617.13 28 1572.88 1 0 0 0 $| -2115662 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1603.13 28 1572.88 1 0 0 0 $| -2115663 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1610.13 28 1560.88 0 0 1 0 $| -2115664 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1617.13 28 1560.88 0 0 1 0 $| -2115665 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1603.13 28 1560.88 0 0 1 0 $| -2115666 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1610.13 28 1566.88 0.707122 0 0.707091 0 $| -2115667 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1617.13 28 1566.88 0.707122 0 0.707091 0 $| -2115671 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1669.69 28 1585.9 3.28E-06 0 1 0 $| -2115672 0 object/static/structure/corellia/corl_power_transformer_s02.iff 0 1669.69 28 1566.9 3.28E-06 0 1 0 $| -2115673 0 object/static/structure/corellia/corl_power_transformer_s02.iff 0 1669.69 28 1590.9 3.28E-06 0 1 0 $| -2115675 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1682.69 28 1578.9 0.707108 0 0.707105 0 $| -2115676 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1675.69 28 1571.9 0.707108 0 0.707105 0 $| -2115677 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1675.69 28 1585.9 0.707108 0 0.707105 0 $| -2115678 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1656.69 28 1578.9 0.707108 0 -0.707105 0 $| -2115679 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1663.69 28 1571.9 0.707108 0 -0.707105 0 $| -2115680 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1663.69 28 1585.9 0.707108 0 -0.707105 0 $| -2115681 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1669.69 28 1578.9 3.28E-06 0 1 0 $| -2115682 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1669.69 28 1571.9 3.28E-06 0 1 0 $| -2115690 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1591.74 28 1568 0.707108 0 -0.707105 0 $| -2115691 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1624.9 28 1561.07 0.707105 0 0.707108 0 $| -2115692 0 object/static/structure/corellia/corl_imprv_gate_sm_s02.iff 0 1591.71 28 1556.11 0.707108 0 -0.707105 0 $| -2115693 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1608.24 28 1552.67 1 0 0 0 $| -2115694 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1624.83 28 1552.71 1 0 0 0 $| -2115713 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1675.69 28 1578.9 3E-06 0 1 0 $| -2115714 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1663.69 28 1578.9 3E-06 0 1 0 $| -2115723 0 object/static/structure/corellia/corl_power_arial_prime.iff 0 1673.06 28 1582.94 1 0 0 0 $| -2115724 0 object/static/structure/corellia/corl_power_arial_thin.iff 0 1667.08 28 1575.05 1 0 0 0 $| -2115732 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1653.81 28 1578.57 0.707108 0 -0.707105 0 $| -2115733 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1685.81 28 1578.57 0.707108 0 -0.707105 0 $| -2115734 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1669.81 28 1562.57 1 0 0 0 $| -2115736 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1659.87 28 1599.36 0.941851 0 -0.33603 0 $| -2115737 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1679.69 28 1599.2 -0.336031 0 0.941851 0 $| -2115738 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1669.81 28 1604.57 1 0 0 0 $| -2115739 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1685.81 28 1562.57 1 0 0 0 $| -2115740 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1653.81 28 1562.57 1 0 0 0 $| -2115741 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1653.81 28 1594.57 0.707108 0 -0.707105 0 $| -2115742 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1685.81 28 1594.57 -0.707107 0 0.707107 0 $| -2115747 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1891.92 28.2757 2038.22 0.707108 0 -0.707105 0 $| -2115750 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1889.9 28 1997.68 -0.707107 0 0.707107 0 $| -2115751 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1898.22 28 1981.48 -7.34E-08 0 1 0 $| -2115752 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1889.89 28 1981.37 1 0 0 0 $| -2115753 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1789.24 28.0098 2029.37 0.707117 0 -0.707096 0 $| -2115754 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1775.41 28 1996.66 -1.84E-06 0 1 0 $| -2115758 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1931.78 28 1937.06 1 0 0 0 $| -2115759 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1943.42 28 1937.03 1 0 0 0 $| -2115760 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1919.8 28 1937.06 1 0 0 0 $| -2115762 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1994 28 1876 -0.382684 0 0.923879 0 $| -2115763 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1973 28 1889 1 0 0 0 $| -2115764 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1985 28 1885 0.92388 0 0.382683 0 $| -2115794 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1933.21 28 1815.21 0.92388 0 0.382683 0 $| -2115796 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1941.7 28 1806.72 0.92388 0 0.382683 0 $| -2115798 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1924.85 28 1823.25 0.929516 0 0.368783 0 $| -2115802 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1854 28 1848 1 0 0 0 $| -2115804 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1862 28 1832 0.707108 0 -0.707105 0 $| -2115806 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1862 28 1808 0.707108 0 -0.707105 0 $| -2115809 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1838 28 1848 1 0 0 0 $| -2115810 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1814 28 1832 -0.707107 0 0.707107 0 $| -2115815 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1822 28 1848 1 0 0 0 $| -2115816 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1814 28 1808 0.707108 0 -0.707105 0 $| -2115830 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1814 28 1800 0.707107 0 0.707107 0 $| -2115831 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1862 28 1800 0.707107 0 0.707107 0 $| -2115832 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1862 28 1848 0.707107 0 0.707107 0 $| -2115833 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1814 28 1848 0.707107 0 0.707107 0 $| -2115908 0 object/static/structure/corellia/corl_fountain_brazier_round_s01.iff 0 1839.19 28.5955 2021.34 1 0 0 0 $| -2115955 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1723 28 1997 1 0 0 0 $| -2115956 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1691 28 1997 1 0 0 0 $| -2115957 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1659 28 1997 1 0 0 0 $| -2115958 0 object/static/structure/corellia/corl_imprv_gate_sm_s02.iff 0 1742 28 1997 1 0 0 0 $| -2115965 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1627 28 1997 1 0 0 0 $| -2115966 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1592 28 1986 0.92388 0 -0.382683 0 $| -2115970 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1607 28 1997 1 0 0 0 $| -2115973 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1529.99 28 1926.31 0.382684 0 0.923879 0 $| -2115974 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1516.55 28 1912.87 0.382684 0 0.923879 0 $| -2115975 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1543.42 28 1939.74 0.382684 0 0.923879 0 $| -2115983 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1484.61 28 1903.79 0.92388 0 -0.382683 0 $| -2115984 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1477.54 28 1896.72 0.92388 0 -0.382683 0 $| -2115985 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1491.68 28 1910.86 0.92388 0 -0.382683 0 $| -2115986 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1481.32 28 1888.52 -0.382683 0 0.92388 0 $| -2115987 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1499.74 28 1907.15 -0.382683 0 0.92388 0 $| -2115988 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1505.35 28 1901.61 0.92388 0 -0.382683 0 $| -2115990 0 object/static/structure/corellia/corl_fountain_rectangle_s01.iff 0 1785 28 1957 -0.382684 0 0.923879 0 $| -2115991 0 object/static/structure/corellia/corl_fountain_rectangle_s01.iff 0 1780 28 1945 1 0 0 0 $| -2115992 0 object/static/structure/corellia/corl_fountain_rectangle_s01.iff 0 1785 28 1933 0.382684 0 0.923879 0 $| -2115998 0 object/static/structure/corellia/corl_fountain_brazier_square_s01.iff 0 1791 28 1945 1 0 0 0 $| -2116066 0 object/static/structure/corellia/corl_fountain_circle_s01.iff 0 2033 28 1704 1 0 0 0 $| -2116087 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 2009 33.7048 1717 -0.500001 -0.499999 -0.499999 0.500001 $| -2116095 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 2009 33.7048 1691 -0.500001 -0.499999 -0.499999 0.500001 $| -2116106 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 2035.75 28 1845.48 -0.382683 0 0.92388 0 $| -2116107 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 2035.75 28 1837.48 0.707107 0 0.707107 0 $| -2116109 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1896.75 28 1307.65 0.382684 0 0.923879 0 $| -2116110 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1908.5 28 1319.39 0.92388 0 -0.382682 0 $| -2116111 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1920.01 28 1330.66 0.181687 0 0.983356 0 $| -2116136 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1828.96 28 1349.18 0.707108 0 -0.707105 0 $| -2116138 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1828.96 28 1339.18 0.707108 0 -0.707105 0 $| -2116139 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1919.89 28 1338.72 0.707119 0 -0.707094 0 $| -2116140 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1919.8 28 1348.95 0.707118 0 -0.707095 0 $| -2116141 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1919.84 28 1359.12 0.707124 0 -0.707089 0 $| -2195355 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1863.94 25.3331 1664.03 1 0 0 0 $| -2195356 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1855.94 25.3331 1672.03 0.707111 0 -0.707102 0 $| -2195357 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1871.94 25.3331 1672.03 0.707107 0 0.707107 0 $| -2195358 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1863.94 25.3331 1680.03 3.2E-08 0 1 0 $| -2195381 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1871.94 28 1664.03 1 0 0 0 $| -2195382 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1855.94 28 1664.03 1 0 0 0 $| -2195383 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1871.94 28 1680.03 1 0 0 0 $| -2195384 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1855.94 28 1680.03 1 0 0 0 $| -2195395 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1816.17 25.3331 1680.08 0 0 1 0 $| -2195396 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1808.17 28 1680.08 1 0 0 0 $| -2195397 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1824.17 28 1664.08 1 0 0 0 $| -2195398 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1808.17 25.3331 1672.08 0.707128 0 -0.707085 0 $| -2195399 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1808.17 28 1664.08 1 0 0 0 $| -2195400 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1816.17 25.3331 1664.08 1 0 0 0 $| -2195401 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1824.17 25.3331 1672.08 0.707107 0 0.707107 0 $| -2195402 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1824.17 28 1680.08 1 0 0 0 $| -2195427 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1871.88 25.65 1400.12 0 0 1 0 $| -2195428 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1863.88 28 1400.12 1 0 0 0 $| -2195429 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1879.88 28 1384.12 1 0 0 0 $| -2195430 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1863.88 25.65 1392.12 0.70713 0 -0.707083 0 $| -2195431 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1863.88 28 1384.12 1 0 0 0 $| -2195432 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1871.88 25.65 1384.12 1 0 0 0 $| -2195433 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1879.88 25.65 1392.12 0.707107 0 0.707107 0 $| -2195434 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1879.88 28 1400.12 1 0 0 0 $| -2195435 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1848.1 25.65 1336.29 0 0 1 0 $| -2195436 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1840.1 28 1336.29 1 0 0 0 $| -2195437 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1856.1 28 1320.29 1 0 0 0 $| -2195438 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1840.1 25.65 1328.29 0.707126 0 -0.707087 0 $| -2195439 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1840.1 28 1320.29 1 0 0 0 $| -2195440 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1848.1 25.65 1320.29 1 0 0 0 $| -2195441 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1856.1 25.65 1328.29 0.707107 0 0.707107 0 $| -2195442 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1856.1 28 1336.29 1 0 0 0 $| -2195444 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1888.16 28 1336.15 1 0 0 0 $| -2195445 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1904.16 28 1320.15 1 0 0 0 $| -2195446 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1888.16 25.65 1328.15 0.707128 0 -0.707085 0 $| -2195447 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1888.16 28 1320.15 1 0 0 0 $| -2195448 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1896.16 25.65 1320.15 1 0 0 0 $| -2195449 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1904.16 25.65 1328.15 0.707107 0 0.707107 0 $| -2195450 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1904.16 28 1336.15 1 0 0 0 $| -2195452 0 object/static/structure/corellia/corl_fountain_statue_contemplate_s01.iff 0 1539.5 28 1470.5 1 0 0 0 $| -2195453 0 object/static/structure/general/bench_generic_style_1.iff 0 1565.89 28 1487.04 0.707108 0 -0.707105 0 $| -2195454 0 object/static/structure/general/bench_generic_style_1.iff 0 1565.91 28 1491.03 -0.707107 0 0.707107 0 $| -2195455 0 object/static/structure/general/bench_generic_style_1.iff 0 1565.77 28 1451.03 -0.707107 0 0.707107 0 $| -2195456 0 object/static/structure/general/bench_generic_style_1.iff 0 1565.79 28 1455.03 -0.707107 0 0.707107 0 $| -2195458 0 object/tangible/terminal/terminal_mission.iff 0 1559 28.9803 1478 0.92388 0 -0.382683 0 $| -2195459 0 object/tangible/terminal/terminal_mission.iff 0 1559 28.9803 1464 -0.382684 0 0.923879 0 $| -2195460 0 object/static/structure/general/bench_generic_style_1.iff 0 1536.73 28 1468.99 -0.707107 0 0.707107 0 $| -2195461 0 object/static/structure/general/bench_generic_style_1.iff 0 1536.74 28 1472.98 -0.707107 0 0.707107 0 $| -2195462 0 object/static/structure/general/bench_generic_style_1.iff 0 1542.25 28 1469.07 0.707107 0 0.707107 0 $| -2195463 0 object/static/structure/general/bench_generic_style_1.iff 0 1542.26 28 1473.07 0.707107 0 0.707107 0 $| -2195464 0 object/static/structure/corellia/corl_fountain_rectangle_s01.iff 0 1469.67 28 1531.58 1 0 0 0 $| -2195471 0 object/static/structure/general/bench_generic_style_1.iff 0 1461.7 28 1533.66 0.707107 0 0.707107 0 $| -2195472 0 object/static/structure/general/bench_generic_style_1.iff 0 1461.68 28 1529.66 0.707107 0 0.707107 0 $| -2195473 0 object/static/structure/general/bench_generic_style_1.iff 0 1477.73 28 1529.65 -0.707107 0 0.707107 0 $| -2195474 0 object/static/structure/general/bench_generic_style_1.iff 0 1477.74 28 1533.64 -0.707107 0 0.707107 0 $| -2195475 0 object/static/structure/general/bench_generic_style_1.iff 0 1467.68 28 1522.4 1 0 0 0 $| -2195476 0 object/static/structure/general/bench_generic_style_1.iff 0 1471.67 28 1522.38 1 0 0 0 $| -2195477 0 object/static/structure/general/bench_generic_style_1.iff 0 1471.68 28 1540.59 3.48E-07 0 1 0 $| -2195478 0 object/static/structure/general/bench_generic_style_1.iff 0 1467.69 28 1540.61 3.48E-07 0 1 0 $| -2195480 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1558.34 28.4782 1537.02 1 0 0 0 $| -2195481 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1616.1 28 1537.63 1 0 0 0 $| -2195482 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1591.01 28 1567.02 0.707108 0 -0.707105 0 $| -2195483 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1635.02 28 1524.98 0.707108 0 -0.707105 0 $| -2195484 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1609.42 28 1500.9 0.934124 0 0.356949 0 $| -2195485 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1609.55 28 1440.95 0.382683 0 0.92388 0 $| -2195490 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1713.04 28 1419.27 1 0 0 0 $| -2195493 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1619.93 28 1414.25 0.92388 0 -0.382681 0 $| -2195494 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1666.7 28 1385.75 0.382683 0 0.92388 0 $| -2195495 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1737.06 28 1389.29 3.2E-08 0 1 0 $| -2195497 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1852.22 28 1306.4 3.2E-08 0 1 0 $| -2195498 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1896.77 28 1306.35 3.2E-08 0 1 0 $| -2215353 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 2013.53 29.4336 1523.36 0.924759 0 -0.380554 0 $| -2215354 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1971.1 29.4369 1523.55 -0.384809 0 0.922996 0 $| -2215355 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1971.3 29.4369 1565.98 0.924757 0 -0.380557 0 $| -2215356 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 2013.72 29.4369 1565.78 -0.384809 0 0.922996 0 $| -2215369 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1867.03 28 1515.27 1 0 0 0 $| -2215370 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1798.73 28 1510.31 0.92388 0 -0.382683 0 $| -2215371 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1783.27 28 1579 0.707107 0 0.707107 0 $| -2215372 0 object/tangible/terminal/terminal_mission.iff 0 1820.77 28 1741.4 0.707109 0 0.707105 0 $| -2215373 0 object/tangible/terminal/terminal_mission.iff 0 1820.78 28 1766.84 0.70712 0 0.707093 0 $| -2215374 0 object/tangible/terminal/terminal_mission.iff 0 1855.31 28 1738.54 -0.707103 0 0.70711 0 $| -2215375 0 object/tangible/terminal/terminal_mission.iff 0 1855.01 28 1769.53 -0.707105 0 0.707108 0 $| -2215376 0 object/tangible/terminal/terminal_mission.iff 0 1853.06 28 1799.68 1.78E-06 0 1 0 $| -2215377 0 object/tangible/terminal/terminal_mission.iff 0 1822.97 28 1799.66 1.78E-06 0 1 0 $| -2215379 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1977.65 28 1672.16 -3.2E-08 0 1 0 $| -2215380 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1937.99 28 1672.65 -3.2E-08 0 1 0 $| -2215381 0 object/static/structure/general/streetlamp_large_style_01.iff 0 2013.31 28 1681.08 0.707107 0 0.707107 0 $| -2215382 0 object/static/structure/general/streetlamp_large_style_01.iff 0 2013.23 28 1727.04 0.707108 0 0.707105 0 $| -2365352 0 object/static/structure/general/bench_generic_style_1.iff 0 2033 28 1693 1 0 0 0 $| -2365355 0 object/static/structure/general/bench_generic_style_1.iff 0 2013 28 1720 0.707107 0 0.707107 0 $| -2365356 0 object/static/structure/general/bench_generic_style_1.iff 0 2013 28 1714 0.707107 0 0.707107 0 $| -2365357 0 object/static/structure/general/bench_generic_style_1.iff 0 2013 28 1694 0.707108 0 0.707105 0 $| -2365358 0 object/static/structure/general/bench_generic_style_1.iff 0 2013 28 1688 0.707108 0 0.707105 0 $| -2365359 0 object/static/structure/general/bench_generic_style_1.iff 0 2023 28 1704 0.707108 0 0.707105 0 $| -2365360 0 object/static/structure/general/bench_generic_style_1.iff 0 2043 28 1704 0.707108 0 -0.707105 0 $| -2365361 0 object/static/structure/general/bench_generic_style_1.iff 0 2033 28 1715 3.2E-08 0 1 0 $| -2365366 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1975.43 28 1758.05 3.2E-08 0 1 0 $| -2365367 0 object/static/structure/general/streetlamp_large_style_01.iff 0 2015.18 28 1799.07 0.707108 0 -0.707105 0 $| -2365368 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1957.65 28 1867.36 0.382683 0 0.92388 0 $| -2365369 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1878.22 28 1867.14 -0.382683 0 0.92388 0 $| -2365370 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1813.89 28 1798.99 -3.2E-08 0 1 0 $| -2365371 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1862.02 28 1799 -3.2E-08 0 1 0 $| -2365372 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1773 28 1781.93 1 0 0 0 $| -2365373 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1902.55 28 1782.05 1 0 0 0 $| -2365378 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1876.23 28 1688.61 -0.382686 0 0.923878 0 $| -2365379 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1797.46 28 1685.73 0.382683 0 0.92388 0 $| -2365391 0 object/building/corellia/guild_theater_corellia_s01.iff 0 1839.33 28 1995.87 -3.2E-08 0 1 0 $| -2365392 2365391 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| -2365393 2365391 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| -2365394 2365391 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| -2365395 2365391 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| -2365396 2365391 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| -2365397 2365391 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| -2365398 2365391 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| -2365399 2365391 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| -2365400 2365391 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| -2365401 2365391 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| -2365402 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1867.4 28.5911 1921.12 0.707108 0 0.707105 0 $| -2365403 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1865.46 28.5911 1919.07 3.2E-08 0 1 0 $| -2365404 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1813.34 28.5745 1919.05 1.84E-06 0 1 0 $| -2365405 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1811.29 28.5745 1920.99 0.707108 0 -0.707105 0 $| -2365406 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1811.19 28.5255 1965 0.707117 0 -0.707096 0 $| -2365407 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1811.11 28.5453 2005.04 0.707117 0 -0.707096 0 $| -2365408 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1867.41 28.5582 2004.91 0.707103 0 0.70711 0 $| -2365409 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1867.38 28.578 1964.97 0.707103 0 0.70711 0 $| -2365410 0 object/static/structure/general/bench_generic_style_1.iff 0 1810.72 28.5951 1944.95 0.707108 0 -0.707105 0 $| -2365411 0 object/static/structure/general/bench_generic_style_1.iff 0 1810.76 28.5951 1950.94 -0.707107 0 0.707107 0 $| -2365413 0 object/static/structure/general/bench_generic_style_1.iff 0 1810.76 28.5951 1938.9 -0.707107 0 0.707107 0 $| -2365415 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1814.05 28 1849.06 1 0 0 0 $| -2365416 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1862.1 28 1848.85 1 0 0 0 $| -2365417 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1751.07 28 1823.92 0.707108 0 -0.707105 0 $| -2365418 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1659.73 28 1748.33 0.92388 0 -0.382683 0 $| -2365421 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1759.58 28 1909.53 0.92388 0 -0.382684 0 $| -2365423 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1706.26 28 1887.04 0.707108 0 -0.707105 0 $| -2365424 0 object/static/structure/general/bench_generic_style_1.iff 0 1668.49 28 1936.68 -0.707107 0 0.707107 0 $| -2365425 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1666.92 28 1939.15 3.48E-07 0 1 0 $| -2365439 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1557.15 28 1878.96 0.92388 0 -0.382683 0 $| -2365440 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1492.98 28 1886.97 0.92388 0 0.382683 0 $| -2365442 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1536.3 28 1921.57 0.923879 0 -0.382684 0 $| -2365443 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1499.22 28 1817.95 0.996192 0 0.0871895 0 $| -2365465 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1508.27 28 1770.23 1 0 0 0 $| -2365466 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1523.15 28 1702.23 0.707107 0 0.707107 0 $| -2365468 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1657.95 28 1705.24 3.48E-07 0 1 0 $| -2365469 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1637.06 28 1642.97 0.707107 0 0.707107 0 $| -2365470 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1611.05 28 1591 -0.707107 0 0.707107 0 $| -2365471 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1550.02 28 1579.42 0.92388 0 0.382683 0 $| -2365472 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1499 28 1591.04 0.707107 0 0.707107 0 $| -2365473 0 object/static/structure/general/tankfarm_s01.iff 0 1550.29 28.9172 1625.17 3.2E-08 0 1 0 $| -2365474 0 object/static/structure/general/tankfarm_s01.iff 0 1552.86 28.3659 1620.85 0.707109 0 -0.707105 0 $| -2365475 0 object/static/installation/mockup_power_generator_photo_bio_style_1.iff 0 1552.46 29.2789 1667.91 0.707109 0 -0.707104 0 $| -2365476 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1579.01 28 1673.02 0.707108 0 -0.707105 0 $| -2365477 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1525 28 1682.88 3.2E-08 0 1 0 $| -2365478 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1505.15 28 1643.84 0.707107 0 -0.707106 0 $| -2365479 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1505.05 28 1715.07 0.707108 0 -0.707105 0 $| -2365480 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1469.86 28 1672.87 0.707108 0 -0.707105 0 $| -2365481 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1454.96 28 1641.11 0.707108 0 -0.707105 0 $| -2365482 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1470.78 28 1579.7 0.707107 0 -0.707106 0 $| -2365492 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1456.33 25.7018 1534.18 0.707108 0 -0.707105 0 $| -2365493 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1472.97 25.7018 1517.56 -1.84E-06 0 1 0 $| -2365497 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1498.59 28 1555.21 -0.523366 0 0.852108 0 $| -2365498 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1497.48 28 1552.5 0.990901 0 0.13459 0 $| -2365499 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1501.26 28 1555.09 0.774419 0 -0.632673 0 $| -2365500 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1498.32 28 1557.62 0.0142041 0 0.999899 0 $| -2365501 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1511.36 28 1553.09 0.924909 0 0.380188 0 $| -2365502 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1511.56 28 1556.01 0.0257937 0 0.999667 0 $| -2365503 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1508.79 28 1552.36 0.7485 0 0.663135 0 $| -2365504 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1512.38 28 1550.88 0.984726 0 -0.17411 0 $| -2365505 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1493.15 28 1547.08 1 0 0 0 $| -2365506 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1491.24 28 1549.3 0.403919 0 0.914795 0 $| -2365507 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1491.06 28 1545.18 0.917121 0 0.398609 0 $| -2365508 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1495.22 28 1545.02 0.844588 0 -0.535417 0 $| -2365509 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1495.06 28 1548.99 -0.371658 0 0.92837 0 $| -2365510 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1505.03 28 1544.87 0.92388 0 -0.382683 0 $| -2365511 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1502.11 28 1545.09 0.723244 0 0.690592 0 $| -2365512 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1504.9 28 1542.05 0.99985 0 0.0172997 0 $| -2365513 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1507.96 28 1544.88 -0.575402 0 0.817871 0 $| -2365514 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1505.03 28 1547.57 0.0119048 0 0.999929 0 $| -2365515 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1504.27 28 1562.83 -0.220474 0 0.975393 0 $| -2365516 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1505.04 28 1560.01 0.981338 0 -0.19229 0 $| -2365517 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1506.46 28 1564.37 -0.528897 0 0.848686 0 $| -2365518 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1502.59 28 1564.58 0.336032 0 0.94185 0 $| -2365528 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1743.58 28 1523.5 0.92388 0 -0.382683 0 $| -2365529 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1737.5 28 1592.55 0.92388 0 0.382681 0 $| -2365549 0 object/static/structure/general/streetlamp_large_style_01.iff 0 2043.77 28 1809.09 0.707108 0 0.707105 0 $| -2365554 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1940.38 28 1952.38 0.92388 0 -0.382683 0 $| -2365555 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1756.31 28 1963.31 0.92388 0 -0.382683 0 $| -2365556 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1753.4 28 1963.53 0.723242 0 0.690595 0 $| -2365557 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1756.19 28 1960.49 0.99985 0 0.0173 0 $| -2365558 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1759.24 28 1963.32 -0.575402 0 0.817871 0 $| -2365559 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1756.32 28 1966.02 0.011905 0 0.999929 0 $| -2365560 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1767.56 28 1972.53 0.998988 0 -0.0449854 0 $| -2365561 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1765.46 28 1974.57 0.444662 0 0.895698 0 $| -2365562 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1766.46 28 1970.1 0.958244 0 0.285952 0 $| -2365563 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1769.9 28 1971.89 0.819647 0 -0.572869 0 $| -2365564 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1765.59 28 1956.9 0.761613 0 0.648032 0 $| -2365565 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1767.95 28 1957.49 0.296281 0 0.955101 0 $| -2365566 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1770.78 28 1956.74 0.75405 0 -0.656817 0 $| -2365567 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1767.72 28 1960.15 -0.0341967 0 0.999415 0 $| -2365568 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1774.07 28 1984.42 -0.140331 0 0.990105 0 $| -2365569 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1766.56 28 1942.81 0.541233 0 0.840873 0 $| -2365570 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1769.37 28 1943.63 -0.550616 0 0.834758 0 $| -2365571 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1765.69 28 1945.49 0.161196 0 0.986922 0 $| -2365572 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1763.83 28 1941.77 0.907336 0 0.420405 0 $| -2365573 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1767.51 28 1940.27 0.981794 0 -0.189948 0 $| -2365574 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1773.58 28 1982.04 -0.64864 0 0.761095 0 $| -2365575 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1771.7 28 1979.81 0.958244 0 0.285953 0 $| -2365576 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1776.09 28 1981.11 0.862807 0 -0.505533 0 $| -2365577 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1757.8 28 1950.49 -0.5019 0 0.864926 0 $| -2365578 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1755.8 28 1949.11 0.886995 0 -0.46178 0 $| -2365579 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1752.89 28 1948.82 0.780706 0 0.624898 0 $| -2365580 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1756.95 28 1946.7 0.989506 0 -0.144492 0 $| -2365581 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1871.18 28.6017 1939.87 0.7566 0 -0.653878 0 $| -2365582 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1868.71 28.6017 1938.3 0.903767 0 0.428025 0 $| -2365583 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1872.77 28.6017 1937.53 0.954535 0 -0.298097 0 $| -2365584 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1873.53 28.6017 1941.63 -0.288917 0 0.957354 0 $| -2365585 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1869.57 28.6017 1942.04 0.325845 0 0.945423 0 $| -2365586 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1876.18 28 1929.03 0.927395 0 0.374084 0 $| -2365587 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1880.73 28 1929.5 0.906198 0 -0.422854 0 $| -2365588 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1878.45 28 1930.88 0.716797 0 -0.697282 0 $| -2365589 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1879.36 28 1933.13 -0.232066 0 0.9727 0 $| -2365590 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1869.01 28.6321 1953.29 0.329523 0 0.944147 0 $| -2365591 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1870.68 28.6321 1951.52 -0.2272 0 0.973848 0 $| -2365592 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1872.88 28.6321 1953.02 -0.534743 0 0.845015 0 $| -2365593 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1871.41 28.6321 1948.69 0.982642 0 -0.18551 0 $| -2365594 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1849.15 28 2039.58 0.613748 0 0.789502 0 $| -2365595 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1851.54 28 2039.18 0.0956519 0 0.995415 0 $| -2365596 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1852.39 28 2041.71 -0.236929 0 0.971527 0 $| -2365597 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1853.84 28 2037.36 0.871967 0 -0.489565 0 $| -2365598 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1861.56 28.6176 2028.44 0.325845 0 0.945423 0 $| -2365599 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1865.52 28.6176 2028.03 -0.288917 0 0.957354 0 $| -2365600 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1863.17 28.6176 2026.28 0.7566 0 -0.653878 0 $| -2365601 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1860.71 28.6176 2024.71 0.903767 0 0.428025 0 $| -2365602 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1864.76 28.6176 2023.94 0.954535 0 -0.298098 0 $| -2365603 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1814.08 28.636 2028.33 0.325845 0 0.945423 0 $| -2365604 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1818.03 28.636 2027.91 -0.288917 0 0.957354 0 $| -2365605 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1815.69 28.636 2026.16 0.7566 0 -0.653878 0 $| -2365606 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1813.22 28.636 2024.59 0.903767 0 0.428025 0 $| -2365607 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1817.27 28.636 2023.82 0.954535 0 -0.298098 0 $| -3095428 0 object/tangible/terminal/terminal_mission_bounty.iff 0 1824.93 28 1672.48 0.700285 0 0.713864 0 $| -3095430 0 object/tangible/terminal/terminal_mission_bounty.iff 0 1855.19 28 1672.28 -0.703845 0 0.710353 0 $| -3375491 0 object/building/corellia/filler_building_corellia_style_02.iff 0 1987.62 28 1306.8 1 0 0 0 $| -3555361 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1620 28 1917 0.923879 0 0.382684 0 $| -3555363 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1651 28 1762 0.382683 0 0.92388 0 $| -3555365 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1628 28 1739 0.382683 0 0.92388 0 $| -3555371 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1660 28 1877 -0.382684 0 0.923879 0 $| -3555373 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1690 28 1847 -0.382684 0 0.923879 0 $| -3555374 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1707 28 1830 -0.382684 0 0.923879 0 $| -3555375 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1679 28 1790 0.92388 0 -0.382683 0 $| -3555376 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1707 28 1818 0.92388 0 -0.382683 0 $| -3555377 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1665 28 1776 0.382683 0 0.92388 0 $| -3555378 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1696 28 1807 0.92388 0 -0.382683 0 $| -3555379 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1675 28 1862 -0.382683 0 0.92388 0 $| -3555380 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1633.98 28 1903.02 -0.382683 0 0.92388 0 $| -3555381 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1643 28 1894 0.923879 0 0.382684 0 $| -3555382 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1608.53 28 1928.49 0.92388 0 -0.382683 0 $| -3555384 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1605 28 1739 -0.382684 0 0.923879 0 $| -3555385 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1574 28 1894 0.92388 0 -0.382683 0 $| -3555386 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1582 28 1762 -0.382684 0 0.923879 0 $| -3555387 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1590 28 1754 0.92388 0 0.382683 0 $| -3555388 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1550 28 1794 0.92388 0 0.382683 0 $| -3555389 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1529 28 1849 0.382683 0 0.92388 0 $| -3555390 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1560 28 1880 0.92388 0 -0.382683 0 $| -3555391 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1518 28 1838 0.382683 0 0.92388 0 $| -3555392 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1546 28 1866 0.382683 0 0.92388 0 $| -3555393 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1597 28 1917 0.92388 0 -0.382683 0 $| -3555394 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1518 28 1826 0.923879 0 0.382684 0 $| -3555395 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1535 28 1809 0.923879 0 0.382684 0 $| -3555398 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1565 28 1779 0.923879 0 0.382684 0 $| -3555399 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1511.99 28 1832.02 0.92388 0 -0.382683 0 $| -3555400 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1712.98 28 1824.02 0.92388 0 -0.382683 0 $| -3575352 0 object/static/structure/general/bench_generic_style_1.iff 0 1615.63 28 1854.39 -3.2E-08 0 1 0 $| -3575353 0 object/static/structure/general/bench_generic_style_1.iff 0 1593.13 28 1847 0.382683 0 0.92388 0 $| -3575354 0 object/static/structure/general/bench_generic_style_1.iff 0 1586.05 28 1827.95 0.707107 0 0.707106 0 $| -3575355 0 object/static/structure/general/bench_generic_style_1.iff 0 1589.14 28 1816.01 0.833272 0 0.552863 0 $| -3575356 0 object/static/structure/general/bench_generic_style_1.iff 0 1617.53 28 1801.94 1 0 0 0 $| -3575357 0 object/static/structure/general/bench_generic_style_1.iff 0 1604.89 28 1801.93 1 0 0 0 $| -3575358 0 object/static/structure/general/bench_generic_style_1.iff 0 1637.99 28 1834.81 0.707107 0 -0.707106 0 $| -3575359 0 object/static/structure/general/bench_generic_style_1.iff 0 1638 28 1822.17 0.707107 0 -0.707106 0 $| -3575360 0 object/static/structure/general/bench_generic_style_1.iff 0 1632.31 28 1848.25 -0.382684 0 0.923879 0 $| -3575361 0 object/static/structure/general/bench_generic_style_1.iff 0 1633.67 28 1809.95 0.92388 0 -0.382683 0 $| -3575362 0 object/static/structure/general/bench_generic_style_1.iff 0 1641.43 28 1862.25 0.707107 0 -0.707106 0 $| -3575363 0 object/static/structure/general/bench_generic_style_1.iff 0 1633.76 28 1862.62 0.707107 0 0.707107 0 $| -3575365 0 object/static/structure/corellia/corl_fountain_statue_contemplate_s01.iff 0 1545.83 28 1836.2 1 0 0 0 $| -3575366 0 object/static/structure/general/bench_generic_style_1.iff 0 1554.2 28 1833.68 0.707107 0 -0.707106 0 $| -3575367 0 object/static/structure/general/bench_generic_style_1.iff 0 1554.14 28 1838.94 0.707111 0 -0.707102 0 $| -3575369 0 object/static/structure/general/bench_generic_style_1.iff 0 1681.05 28 1823.76 0.95813 0 -0.286334 0 $| -3575370 0 object/static/structure/general/bench_generic_style_1.iff 0 1681.58 28 1832.18 -0.412683 0 0.910875 0 $| -3575371 0 object/static/structure/general/bench_generic_style_1.iff 0 1674.21 28 1828.52 0.707107 0 0.707107 0 $| -3575372 0 object/static/structure/general/bench_generic_style_1.iff 0 1631.96 28 1763.02 0.999808 0 0.0196003 0 $| -3575373 0 object/static/structure/general/bench_generic_style_1.iff 0 1633.42 28 1772.28 -0.343272 0 0.939236 0 $| -3575374 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1639.46 28 1750.48 0.382682 0 0.92388 0 $| -3575375 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1678.54 28 1858.48 -0.382684 0 0.923879 0 $| -3575376 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1671.43 28 1865.47 -0.382684 0 0.923879 0 $| -3575377 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1637.52 28 1899.52 -0.382684 0 0.923879 0 $| -3575379 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1585.45 28 1905.52 0.382683 0 0.92388 0 $| -3575380 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1546.57 28 1797.51 0.923879 0 0.382684 0 $| -3575381 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1553.46 28 1790.52 0.923879 0 0.382684 0 $| -3575382 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1593.45 28 1750.52 0.923879 0 0.382684 0 $| -3575383 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1615.94 28 1855.33 -0.0230952 0 0.999733 0 $| -3575384 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1610.57 28 1800.97 0.999924 0 0.0123006 0 $| -3575385 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1634.7 28 1767.62 -0.691163 0 0.722699 0 $| -3575386 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1550.6 28 1842.99 -0.00809712 0 0.999967 0 $| -3575387 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1637.98 28 1866.71 0.00849535 0 0.999964 0 $| -3625774 0 object/static/structure/corellia/corl_tent_med.iff 0 1998.68 28 1475.68 1 0 0 0 $| -3625805 0 object/tangible/furniture/modern/bar_piece_curve_s2.iff 0 1999.32 28 1477.23 1 0 0 0 $| -3625806 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_sordaan_hunting_trophy.iff 0 1995.55 28.3162 1480.08 0.924909 0 -0.380188 0 $| -3625807 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_bantha_kash.iff 0 2003.32 31.9319 1470.89 0.997551 0 0.0699428 0 $| -3625808 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_bolotaur.iff 0 1995.01 30.2888 1471.07 0.9998 0 -0.0199987 0 $| -3625809 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_katarn.iff 0 1998.51 29.1832 1477.71 -0.662042 0.661515 -0.249195 -0.248996 $| -3625810 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_kkorrwrot.iff 0 1994.14 32.1274 1471.25 0.999388 0 -0.0349929 0 $| -3625813 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_minstyngar.iff 0 1999.96 29.1311 1477.71 -0.477403 0.477015 0.521592 0.522 $| -3626014 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_mouf.iff 0 2004.85 30.3105 1470.68 0.998201 0 0.059964 0 $| -3626015 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_uller.iff 0 2003.01 29.6799 1470.91 0.998988 0 0.0449848 0 $| -3626016 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_walluga.iff 0 1992.7 30.5978 1471.1 0.99955 0 -0.0299955 0 $| -3626017 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_webweaver.iff 0 1997.62 29.1593 1476.47 0.710914 -0.703279 0 0 $| -3695444 0 object/tangible/sign/all_sign_city_s02.iff 0 1750.88 27.9978 1358.31 -3.2E-08 -0.0203968 0.999792 6.53E-10 $| -3695448 0 object/tangible/sign/all_sign_city_s02.iff 0 1826.12 28 1351.73 -3.2E-08 0 1 0 $| -3695449 0 object/tangible/sign/all_sign_city_s02.iff 0 1854 28 1306 -3.2E-08 0 1 0 $| -3695450 0 object/tangible/sign/all_sign_city_s02.iff 0 1894 28 1306 -3.2E-08 0 1 0 $| -3695458 0 object/tangible/sign/all_sign_city_s02.iff 0 1934.89 28 1939.26 1 0 0 0 $| -3695460 0 object/tangible/sign/all_sign_city_s02.iff 0 1737 28 1999.2 1 0 0 0 $| -3695461 0 object/tangible/sign/all_sign_city_s02.iff 0 1611 28 1999.24 1 0 0 0 $| -3695462 0 object/tangible/sign/all_sign_city_s02.iff 0 1526.26 28 1925.81 0.92388 0 -0.382683 0 $| -3695463 0 object/tangible/sign/all_sign_city_s02.iff 0 1487.51 28 1909.28 0.92388 0 -0.382683 0 $| -3695464 0 object/tangible/sign/all_sign_city_s02.iff 0 1479.17 28 1900.75 0.92388 0 -0.382683 0 $| -3695465 0 object/tangible/sign/all_sign_city_s02.iff 0 1454.96 27.9938 1815.02 0.707107 0 -0.707107 0 $| -3695466 0 object/tangible/sign/all_sign_city_s02.iff 0 1453.75 28 1665.99 0.707107 0 -0.707106 0 $| -3695467 0 object/tangible/sign/all_sign_city_s02.iff 0 1453.93 28 1634.03 0.707107 0 -0.707106 0 $| -3695468 0 object/tangible/sign/all_sign_city_s02.iff 0 1507.55 30.5957 1517.45 5.19E-08 0.707107 0.707107 5.19E-08 $| -3695469 0 object/tangible/sign/all_sign_city_s02.iff 0 1522.22 28 1470.98 -0.707107 0 0.707107 0 $| -3695470 0 object/tangible/sign/all_sign_city_s02.iff 0 1541.38 28 1442.69 -3.2E-08 0 1 0 $| -3695471 0 object/tangible/sign/all_sign_city_s02.iff 0 1603.2 30.328 1401.02 -0.270598 0.653282 0.653282 -0.270598 $| -4026465 0 object/static/structure/corellia/corl_tent_small.iff 0 1984.02 28 1577.43 1 0 0 0 $| -4026467 0 object/static/creature/corellia_krahbu.iff 0 1987.34 28 1578.9 1 0 0 0 $| -4026468 0 object/static/creature/corellia_bageraset.iff 0 1980.6 28 1578.45 1 0 0 0 $| -4026469 0 object/static/structure/corellia/corl_tent_med.iff 0 1626.14 28 1490.97 1 0 0 0 $| -4026470 0 object/static/structure/general/data_terminal_free_s1.iff 0 1626.81 28 1489.73 0.962425 0 -0.271547 0 $| -4026471 0 object/static/structure/general/data_terminal_free_s2.iff 0 1626.9 28 1491.61 0.707107 0 -0.707106 0 $| -4026473 0 object/static/creature/corellia_durni.iff 0 1625.52 28 1493.69 -0.667463 0 0.744643 0 $| -4026474 0 object/static/creature/corellia_gulingaw.iff 0 1626.19 31.1015 1491.02 0.721382 0 -0.692538 0 $| -4026476 0 object/static/creature/corellia_krahbu.iff 0 1625.52 28 1487.84 0.875175 0 -0.483807 0 $| -4026491 0 object/static/item/item_medic_bacta_tank_advanced.iff 0 2012.6 28 1706.19 -0.327798 0 0.944748 0 $| -4026492 0 object/static/item/item_medic_bacta_tank_advanced.iff 0 2012.68 28 1701 -0.448109 0 0.893979 0 $| -4026493 0 object/static/item/item_medic_bacta_tank.iff 0 2013.91 28 1701.37 0.808345 0 0.588708 0 $| -4026494 0 object/static/item/item_medic_bacta_tank.iff 0 2013.96 28 1706.7 0.89528 0 -0.445505 0 $| -4026495 0 object/static/item/item_medical_console.iff 0 2013.82 28.759 1703.31 1 0 0 0 $| -4026496 0 object/tangible/furniture/all/frn_all_desk_map_table_insert.iff 0 2019.32 28.115 1699.68 1 0 0 0 $| -4026497 0 object/tangible/furniture/all/frn_all_desk_map_table.iff 0 2019.54 28 1699.68 1 0 0 0 $| -4026498 0 object/tangible/furniture/all/frn_all_professor_desk.iff 0 2013.62 28 1702.95 1 0 0 0 $| -4026499 0 object/static/item/item_medic_bag.iff 0 2014.25 28 1700.94 0.63329 0 0.773915 0 $| -4026501 0 object/static/item/item_drall_medicine.iff 0 2013.31 28 1710.69 0.8956 0 0.44486 0 $| -4026502 0 object/static/item/item_drall_medicine.iff 0 2013.27 28 1710.3 0.8956 0 0.44486 0 $| -4026503 0 object/static/item/item_drall_medicine.iff 0 2013.01 28 1710.55 0.8956 0 0.44486 0 $| -4026504 0 object/static/item/item_diagnostic_screen.iff 0 2013.83 28 1710.39 -0.148651 0 0.98889 0 $| -4026506 0 object/static/item/item_tool_sensor_beacon.iff 0 1992.99 28 1575.33 1 0 0 0 $| -4026507 0 object/static/creature/corellia_durni.iff 0 1991.96 28 1576.16 1 0 0 0 $| -4026509 0 object/static/structure/general/droid_21bmedical_powerdown.iff 0 2012.2 28 1710.49 0.667463 0 0.744643 0 $| -4026510 0 object/static/structure/general/camp_tent_s01.iff 0 1542.22 28 1514.44 -0.148651 0 0.98889 0 $| -4026511 0 object/static/structure/general/campfire_fresh.iff 0 1541.43 28 1511.63 1 0 0 0 $| -4026512 0 object/static/structure/general/camp_lawn_chair_s01.iff 0 1543.09 28 1512.14 -0.453596 0 0.891207 0 $| -4026519 0 object/static/item/item_jar_berries.iff 0 1543.18 28.49 1512.13 0.703919 -0.0670742 -0.0670741 0.703918 $| -4026520 0 object/static/item/item_cage_bamboo.iff 0 1988.48 28 1576.1 1 0 0 0 $| -4026521 0 object/building/corellia/filler_block_corellia_32x16_s01.iff 0 2035.12 28 1310.21 0.707107 0 0.707106 0 $| -4026523 0 object/static/structure/tatooine/debris_tatt_drum_dented_1.iff 0 1930.23 28 1353.66 0.801601 0 0.59786 0 $| -4026524 0 object/static/structure/tatooine/debris_tatt_drum_storage_2.iff 0 1929.32 28 1353.39 0.90687 0 0.42141 0 $| -4026525 0 object/static/structure/tatooine/debris_tatt_crate_1.iff 0 1930.8 28 1352.85 0.731689 0 -0.681639 0 $| -4026526 0 object/static/structure/tatooine/debris_tatt_drum_storage_2.iff 0 1931.49 28 1352.08 1 0 0 0 $| -4026528 0 object/static/structure/corellia/corl_tent_small.iff 0 1929.68 28.1265 1351.7 0.440178 0 0.897911 0 $| -4026529 0 object/static/structure/general/prp_junk_s6.iff 0 2014.09 28 1771.47 0.823129 0 -0.567854 0 $| -4026530 0 object/static/structure/general/prp_junk_s8.iff 0 2013.11 28.3222 1773.86 0.188065 0.188065 -0.681638 0.681639 $| -4026534 0 object/static/structure/tatooine/debris_tatt_drum_storage_2.iff 0 2014.5 28 1773.37 0.751806 0 -0.659384 0 $| -4026535 0 object/static/structure/tatooine/debris_tatt_drum_storage_2.iff 0 2013.98 28 1772.92 0.836463 0 -0.548024 0 $| -4475355 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1648.65 28 1888.32 -0.382684 0 0.923879 0 $| -4475356 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1701.35 28 1835.68 -0.382684 0 0.923879 0 $| -4475357 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1690.3 28 1801.35 0.92388 0 -0.382682 0 $| -4475358 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1576.32 28 1767.67 -0.382684 0 0.923879 0 $| -4475359 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1523.68 28 1820.33 -0.382684 0 0.923879 0 $| -4475360 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1534.67 28 1854.66 0.92388 0 -0.382682 0 $| -5405903 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1933.24 33.8503 1815.28 0.000748027 0.342898 -0.000273051 0.939372 $| -5405982 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1985.01 33.9451 1884.97 -0.0131221 0.382645 -0.00543535 0.923786 $| -5406015 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1864.01 33.9451 1634.97 0.0107962 0 0 0.999942 $| -5406016 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1873.32 33.9451 1620.96 -0.000796377 0 0 1 $| -5406074 0 object/static/structure/general/streetlamp_small_style_01.iff 0 2008.97 33.9134 1640.9 -0.000796366 0 0 1 $| -5406154 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1917.36 33.9135 1609.08 0.00409861 0.707095 0.00409861 0.707095 $| -5406165 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1776.16 33.8502 1532.73 -0.00297242 0.7071 -0.0029724 0.707101 $| -5406221 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1774.16 33.9451 1611.39 0.00409863 0.707095 0.00409864 0.707095 $| -5406286 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1811.96 33.9446 1635.01 0.0323716 0.706365 0.0323716 0.706365 $| -5406391 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1878.75 33.9135 1728.81 0.0100431 0.707035 0.0100432 0.707036 $| -5406407 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1795.89 33.9451 1728.72 0.000563112 0.707106 0.000563109 0.707107 $| -5406413 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1761.77 33.9451 1730.72 0.0029724 0.7071 0.0029724 0.707101 $| -5406653 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1745.89 28 1962.3 0.707107 0 0.707106 0 $| -5406662 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1750.01 28 1939.38 0.707107 0 0.707106 0 $| -5406667 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1633.07 28 1906.02 0.92388 0 0.382683 0 $| -5406669 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1635.51 28 1899.76 -0.382683 0 0.92388 0 $| -5406677 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1563.18 28 1881.47 0.382683 0 0.92388 0 $| -5406688 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1484.62 33.9411 1903.77 0.000305 0.923879 0.000736 0.382683 $| -5406703 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1454.97 27.969 1816.99 -0.707107 0 0.707107 0 $| -5406712 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1511.5 33.9451 1517.6 -0.000563257 1.16E-07 0.000563438 0.999999 $| -5406716 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1477.05 28 1539.04 -0.382683 0 0.92388 0 $| -5406720 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1463.08 28 1525.04 0.92388 0 0.382683 0 $| -5406722 0 object/static/structure/general/streetlamp_large_style_02.iff 0 1505 28 1553.02 1 0 0 0 $| -5406725 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1543.98 33.9135 1445.13 0.000563438 0.999999 0.000563257 -1.69E-07 $| -5406731 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1523.97 33.9451 1465.04 0.000563438 0.999999 0.000563257 -1.69E-07 $| -5406775 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1524.06 33.9451 1477.01 0.000563 0.999999 0.000563 0 $| -5406779 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1543.95 33.9451 1496.97 0.000563 0.999999 0.000563 0 $| -5406790 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1606.06 33.9432 1398.29 0.000304693 0.923879 0.000735595 0.382683 $| -5406794 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1630.01 33.9451 1477.99 0.000563 0.999999 0.000563 0 $| -5406808 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1668 33.9841 1500.04 0.000563 0.999999 0.000563 0 $| -5406817 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1700.58 33.9451 1440.03 0.000563 0.999999 0.000563 0 $| -5406819 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1737.97 33.9135 1461.99 0.000563 0.999999 0.000563 0 $| -5406836 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1746.43 33.9451 1360.46 0.000563 0.999999 0.000563 0 $| -5406853 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1610.4 28 1997.97 1 0 0 0 $| -5406854 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1738.6 28 1998.69 1 0 0 0 $| -5407012 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1798.69 28 1477.59 -0.382683 0 0.92388 0 $| -5407014 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1780.55 28 1484.47 0.382684 0 0.923879 0 $| -5407029 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1787.68 28 1399.94 0.382683 0 0.92388 0 $| -5407031 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1698.4 28 1555.92 -0.382683 0 0.92388 0 $| -5407034 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1737.3 28 1555.67 0.382683 0 0.92388 0 $| -5407036 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1750.59 28 1626.71 -0.382683 0 0.92388 0 $| -5407037 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1750.61 28 1671.57 0.92388 0 -0.382683 0 $| -5407038 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1739.43 28 1708.82 0.382683 0 0.92388 0 $| -5407039 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1739.64 28 1739.57 0.92388 0 0.382683 0 $| -5407041 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1800.16 28 1857.46 0.382683 0 0.92388 0 $| -5407042 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1755.59 28 1857.58 -0.382683 0 0.92388 0 $| -5407045 0 object/static/structure/general/streetlamp_medium_style_01.iff 0 1769.91 28 1976.73 0.92388 0 -0.382683 0 $| -5407046 0 object/static/structure/general/streetlamp_medium_style_01.iff 0 1769.99 28 1951.01 0.707107 0 -0.707107 0 $| -5407047 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1796.33 28 1909.27 0.92388 0 0.382683 0 $| -5407049 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1957.2 28 1900.39 0.92388 0 0.382683 0 $| -5515363 0 object/static/structure/general/streetlamp_large_style_01.iff 0 2005.43 28 1873.22 1 0 0 0 $| -5515402 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1899.91 28 1719.16 0.92388 0 0.382683 0 $| -5515406 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1802.31 28 1667.24 0.92388 0 0.382683 0 $| -5515408 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1891.68 28 1668.87 0.707107 0 -0.707106 0 $| -5515411 0 object/static/structure/general/streetlamp_small_blue_style_01.iff 0 1838.03 36.4433 1613.38 -0.0040986 0.707095 -0.0040986 0.707095 $| -5515432 0 object/static/structure/general/streetlamp_small_blue_style_01.iff 0 1772.44 34.7309 1441.9 0.500199 0.499801 0.500199 0.499801 $| -5515434 0 object/static/structure/general/streetlamp_small_red_style_01.iff 0 1669.72 28 1578.9 1 0 0 0 $| -5535352 0 object/static/structure/general/streetlamp_small_red_style_01.iff 0 1610.13 28 1566.88 1 0 0 0 $| -5535353 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1642.98 33.9451 1709.99 -0.00850288 0.382667 -0.00352199 0.92384 $| -5625467 0 object/tangible/terminal/terminal_bazaar.iff 0 1992.48 28.6 1522.7 1 0 0 0 $| -5625468 0 object/tangible/terminal/terminal_bazaar.iff 0 1970.41 28.6 1544.66 0.707107 0 0.707106 0 $| -5625469 0 object/tangible/terminal/terminal_bazaar.iff 0 1992.66 28.6 1566.69 -3.2E-08 0 1 0 $| -5625470 0 object/tangible/terminal/terminal_bazaar.iff 0 2014.4 28.6 1544.63 0.707107 0 -0.707106 0 $| -6035541 0 object/building/corellia/filler_block_corellia_32x16_s01.iff 0 1939.92 28 1322.56 0.978031 0 0.20846 0 $| -6035547 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1943.82 28 1479.36 0.958244 0 0.285952 0 $| -6035548 0 object/building/corellia/filler_block_corellia_32x16_s01.iff 0 1821.38 28 1440.56 1 0 0 0 $| -6035556 0 object/tangible/instrument/nalargon.iff 0 1869.79 28 1403.71 1 0 0 0 $| -6035557 0 object/tangible/microphone/microphone.iff 0 1873.11 28 1405.48 1 0 0 0 $| -6035558 0 object/tangible/instrument/ommni_box.iff 0 1876.55 28 1403.42 1 0 0 0 $| -6035560 0 object/tangible/speaker/speaker.iff 0 1879.67 28 1405.43 0.92388 0 0.382683 0 $| -6035561 0 object/tangible/speaker/speaker.iff 0 1866.42 28 1405.59 0.92388 0 -0.382683 0 $| -6035566 0 object/tangible/terminal/terminal_mission.iff 0 1915.54 28 1436.27 0.755095 0 -0.655615 0 $| -6035568 0 object/static/structure/tatooine/antenna_tatt_style_2.iff 0 1922.16 28 1444.03 0.995491 0 0.0948572 0 $| -6035569 0 object/static/structure/tatooine/antenna_tatt_style_2.iff 0 1916.23 28 1396.24 0.996802 0 0.0799146 0 $| -6035570 0 object/static/structure/corellia/corl_fountain_rectangle_s01.iff 0 1873 28 1435 1 0 0 0 $| -6035571 0 object/tangible/furniture/all/frn_bench_generic.iff 0 1869 28 1435 0.707107 0 -0.707106 0 $| -6035572 0 object/tangible/furniture/all/frn_bench_generic.iff 0 1873 28 1440 1 0 0 0 $| -6035573 0 object/tangible/furniture/all/frn_bench_generic.iff 0 1877 28 1435 0.707107 0 0.707106 0 $| -6035574 0 object/tangible/furniture/all/frn_bench_generic.iff 0 1873 28 1430 -3.2E-08 0 1 0 $| -6035575 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1876.99 28 1438.96 0.707107 0 0.707106 0 $| -6035577 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1869.01 28 1439.01 -0.707107 0 0.707107 0 $| -6035579 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1914.18 28 1426.59 0.758362 0 -0.651834 0 $| -6035580 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1912.7 28 1415.51 0.758361 0 -0.651835 0 $| -6035586 0 object/static/structure/general/streetlamp_small_blue_style_02.iff 0 1879.89 28 1401.14 1 0 0 0 $| -6035597 0 object/static/item/item_medic_bacta_tank.iff 0 1877.59 28 1453.99 -0.144901 0 0.989446 0 $| -6035598 0 object/static/item/item_medic_bacta_tank_advanced.iff 0 1877.3 28 1452.52 0.876362 0 0.481652 0 $| -6035599 0 object/static/item/item_medic_bacta_tank_advanced.iff 0 1876.73 28 1453.23 -0.232177 0 0.972674 0 $| -6035600 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1873 26.57 1456 1 0 0 0 $| -6035601 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1857 26.57 1448 0.707108 0 0.707105 0 $| -6035602 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1889 26.57 1448 0.707108 0 0.707105 0 $| -6035603 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1857 28 1440 1 0 0 0 $| -6035604 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1889 28 1440 1 0 0 0 $| -6035605 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1889 28 1456 1 0 0 0 $| -6035606 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1857 28 1456 1 0 0 0 $| -6035607 0 object/tangible/crafting/station/public_food_station.iff 0 1884.42 28 1453.67 4.11E-07 0 1 0 $| -6035609 0 object/tangible/crafting/station/public_weapon_station.iff 0 1859 28 1451 0.707107 0 0.707106 0 $| -6035611 0 object/tangible/crafting/station/public_clothing_station.iff 0 1863 28 1454 0.707107 0 -0.707106 0 $| -6035612 0 object/tangible/crafting/station/public_structure_station.iff 0 1887 28 1450 0.707107 0 -0.707106 0 $| -6035616 0 object/static/structure/dantooine/dant_rack_spears.iff 0 1885.48 28 1388.23 1 0 0 0 $| -6035617 0 object/static/structure/dantooine/dant_rack_spears.iff 0 1881.11 28 1388.13 0.96639 0 0.257081 0 $| -6476154 0 object/tangible/terminal/terminal_mission_artisan.iff 0 1914.62 28 1429.66 0.76161 0 -0.648035 0 $| -6476156 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1912.13 28 1412.13 0.758102 0 -0.652136 0 $| -6476162 0 object/tangible/terminal/terminal_mission_scout.iff 0 1911.24 28 1407.36 0.758102 0 -0.652136 0 $| -6476168 0 object/tangible/terminal/terminal_mission_artisan.iff 0 1677.41 28 1615 0.707107 0 -0.707106 0 $| -6476170 0 object/tangible/terminal/terminal_mission_artisan.iff 0 1677.41 28 1617 0.707107 0 -0.707106 0 $| -6476172 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1690.1 28 1604.88 -3.2E-08 0 1 0 $| -6476174 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1688.1 28 1604.88 -3.2E-08 0 1 0 $| -6476176 0 object/tangible/terminal/terminal_mission_scout.iff 0 1717.46 28 1699.91 1 0 0 0 $| -6476178 0 object/tangible/terminal/terminal_mission_scout.iff 0 1719.46 28 1699.91 1 0 0 0 $| -6476180 0 object/tangible/terminal/terminal_mission_scout.iff 0 1820.69 28 1769.6 0.707107 0 0.707106 0 $| -6476182 0 object/tangible/terminal/terminal_mission_scout.iff 0 1820.85 28 1738.61 0.707107 0 0.707106 0 $| -6476184 0 object/tangible/terminal/terminal_mission_artisan.iff 0 1855.32 28 1740.65 0.707107 0 -0.707107 0 $| -6476186 0 object/tangible/terminal/terminal_mission_artisan.iff 0 1855.29 28 1767.25 0.707107 0 -0.707106 0 $| -6476188 0 object/tangible/terminal/terminal_mission_scout.iff 0 1560.16 28.9263 1478.95 0.932327 0 -0.361615 0 $| -6476190 0 object/tangible/terminal/terminal_mission_scout.iff 0 1560.19 28.9803 1462.87 -0.376297 0 0.926499 0 $| -6476192 0 object/tangible/terminal/terminal_mission_artisan.iff 0 1819.38 28 1800.18 -3.2E-08 0 1 0 $| -6476194 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1821.03 28 1799.73 -3.2E-08 0 1 0 $| -6476196 0 object/tangible/terminal/terminal_mission_scout.iff 0 1817.24 28 1799.94 -3.2E-08 0 1 0 $| -6476198 0 object/tangible/terminal/terminal_mission_artisan.iff 0 1857.03 28 1799.91 -7.41E-08 0 1 0 $| -6476200 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1854.96 28 1799.54 -7.41E-08 0 1 0 $| -6476202 0 object/tangible/terminal/terminal_mission_scout.iff 0 1858.98 28 1799.73 -7.41E-08 0 1 0 $| -6476204 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1811.3 28.5779 1988.55 0.707108 0 -0.707106 0 $| -6476206 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1811.3 28.5779 1986.55 0.707107 0 -0.707106 0 $| -6476208 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1811.3 28.5779 1984.55 0.707107 0 -0.707106 0 $| -6476210 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1867.48 28.591 1978.97 0.707107 0 0.707107 0 $| -6476212 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1867.48 28.591 1976.97 0.707105 0 0.707108 0 $| -6476214 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1867.48 28.591 1974.97 0.707105 0 0.707108 0 $| -6625527 0 object/soundobject/soundobject_city_crowd_sentients_large.iff 0 2046.16 28 1468.47 1 0 0 0 $| -6625529 0 object/soundobject/soundobject_city_crowd_sentients_large.iff 0 1950.48 28 1531.22 1 0 0 0 $| -6625531 0 object/soundobject/soundobject_city_crowd_sentients.iff 0 1941.49 28 1607.37 1 0 0 0 $| -6625532 0 object/soundobject/soundobject_city_crowd_sentients_large.iff 0 2010.27 28 1616.48 1 0 0 0 $| -6625533 0 object/soundobject/soundobject_city_crowd_small.iff 0 1882.34 28 1589.61 1 0 0 0 $| -6625540 0 object/soundobject/soundobject_city_crowd_sentients_large.iff 0 1741.2 28 1534.4 1 0 0 0 $| -6625543 0 object/soundobject/soundobject_city_crowd_sentients_large.iff 0 2026.11 28 1719.46 1 0 0 0 $| -6625545 0 object/soundobject/soundobject_city_crowd_sentients_large.iff 0 1838.46 28 2041.09 1 0 0 0 $| -7125370 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1766.68 28 1735.7 1 0 0 0 $| -7125380 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1886 28 1776 0.707107 0 0.707106 0 $| -7125381 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1909.84 28 1735.85 1 0 0 0 $| -7125382 0 object/tangible/crafting/station/public_food_station.iff 0 1907 28 1741 0.707107 0 0.707106 0 $| -7125383 0 object/tangible/crafting/station/public_food_station.iff 0 1906.61 28 1750.01 0.707107 0 0.707107 0 $| -7125384 0 object/tangible/crafting/station/public_food_station.iff 0 1907 28 1757 0.707107 0 0.707107 0 $| -7125385 0 object/tangible/crafting/station/public_food_station.iff 0 1907 28 1766 0.707107 0 0.707107 0 $| -7125386 0 object/tangible/crafting/station/public_clothing_station.iff 0 1901 28 1773 0.707107 0 0.707106 0 $| -7125387 0 object/tangible/crafting/station/public_clothing_station.iff 0 1891 28 1773 0.707107 0 0.707107 0 $| -7125388 0 object/tangible/crafting/station/public_clothing_station.iff 0 1899 28 1779 -0.707107 0 0.707107 0 $| -7125389 0 object/tangible/crafting/station/public_clothing_station.iff 0 1893 28 1779 -0.707107 0 0.707107 0 $| -7335359 0 object/soundobject/soundobject_city_crowd_sentients_large.iff 0 1835.85 28 1708.92 1 0 0 0 $| -7335372 0 object/soundobject/soundobject_city_crowd_small.iff 0 1698.3 28 1722.93 1 0 0 0 $| -7335383 0 object/soundobject/soundobject_city_crowd_small.iff 0 1658.24 28 1652.55 1 0 0 0 $| -7335462 0 object/soundobject/soundobject_city_crowd_medium.iff 0 1767.77 28 1950.1 1 0 0 0 $| -7615528 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1893.96 34.0399 1485.58 -3.2E-08 1 0 0 $| -7615529 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1943.86 34.0216 1479.33 0 0.883413 0 0.468594 $| -7755369 0 object/tangible/furniture/all/frn_bench_generic.iff 0 1716 28 1499 -3.2E-08 0 1 0 $| -7755370 0 object/tangible/furniture/all/frn_bench_generic.iff 0 1720 28 1499 -3.2E-08 0 1 0 $| -7755371 0 object/tangible/furniture/all/frn_bench_generic.iff 0 1724 28 1499 -3.2E-08 0 1 0 $| -7755372 0 object/tangible/terminal/terminal_bazaar.iff 0 1708 28 1500 0.707107 0 0.707106 0 $| -7755373 0 object/tangible/terminal/terminal_bank.iff 0 1738 28 1501.35 1 0 0 0 $| -7755374 0 object/tangible/terminal/terminal_bank.iff 0 1705.98 28 1501.57 1 0 0 0 $| -7755375 0 object/tangible/terminal/terminal_bazaar.iff 0 1736 28 1500 0.707107 0 -0.707106 0 $| -7755378 0 object/static/structure/general/streetlamp_large_style_02.iff 0 1713.8 28 1499.05 1 0 0 0 $| -7755379 0 object/static/structure/general/streetlamp_large_style_02.iff 0 1726.15 28 1499.05 1 0 0 0 $| -8105493 0 object/building/corellia/cantina_corellia.iff 0 1705.47 28 1649.5 0.707106 0 0.707107 0 structure.municipal.cantina $| -8105494 8105493 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| -8105495 8105493 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| -8105496 8105493 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| -8105497 8105493 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| -8105498 8105493 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| -8105499 8105493 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| -8105500 8105493 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| -8105501 8105493 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| -8105502 8105493 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| -9766882 8105502 object/tangible/poi/spawnegg/interior_spawnegg.iff 9 -6.8 -0.9 22.4 1 0 0 0 intRandomYaw|0|1|$| -8105503 8105493 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| -8105504 8105493 object/cell/cell.iff 11 0 0 0 1 0 0 0 $| --14 8105504 object/tangible/npc/rebel_recruiter_spawner.iff 11 -28.5 -0.9 -1.3 0.707107 0 0.707106 0 $| -1487877 8105504 object/tangible/terminal/terminal_mission_rebel.iff 11 -28.83578 -0.894985 -2.352153 1 0 0 0 $| -1487879 8105504 object/tangible/terminal/terminal_mission_rebel.iff 11 -28.77948 -0.894984 3.342379 -3.2E-08 0 1 0 $| -8105505 8105493 object/cell/cell.iff 12 0 0 0 1 0 0 0 $| -514454263 8105505 object/tangible/collection/hanging_light_02_07.iff 12 -19.5621 3.01775 15.3171 1 0 0 0 $| -8105506 8105493 object/cell/cell.iff 13 0 0 0 1 0 0 0 $| -4610432 8105506 object/tangible/collection/rare_pistol_blackhand.iff 13 -30.3611 0.090695 12.7987 0.592996 0.404178 0.400115 0.570003 $| -8105507 8105493 object/cell/cell.iff 14 0 0 0 1 0 0 0 $| -8105508 8105493 object/cell/cell.iff 15 0 0 0 1 0 0 0 $| -8105629 0 object/soundobject/soundobject_starport_exterior.iff 0 2033.67 28 1402.12 0.917121 0 0.39861 0 $| -8105630 0 object/soundobject/soundobject_starport_exterior.iff 0 1986.26 28 1436.73 0.917121 0 0.39861 0 $| -8156055 0 object/static/structure/general/streetlamp_large_blue_style_01.iff 0 1693.75 28 1603.27 -0.382683 0 0.92388 0 $| -8156056 0 object/static/structure/general/streetlamp_large_blue_style_01.iff 0 1702.97 28 1598.57 -3.2E-08 0 1 0 $| -8156057 0 object/static/structure/general/streetlamp_large_blue_style_01.iff 0 1693.83 28 1699.32 1 0 0 0 $| -8156058 0 object/static/structure/general/streetlamp_large_blue_style_01.iff 0 1683.98 28 1699.21 1 0 0 0 $| -8156092 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1789.91 28 1775.89 -0.707107 0 0.707107 0 $| -8156096 0 object/tangible/terminal/terminal_mission.iff 0 1715.61 28 1699.77 1 0 0 0 $| -8156098 0 object/tangible/terminal/terminal_mission.iff 0 1713.6 28 1699.77 1 0 0 0 $| -8156100 0 object/static/structure/corellia/corl_tent_med.iff 0 1703.42 28 1698.86 0.707107 0 0.707106 0 $| -8156102 0 object/static/item/item_container_inorganic_minerals.iff 0 1701.32 28 1698.43 0.952334 0 -0.305059 0 $| -8156103 0 object/static/item/item_container_organic_food.iff 0 1700.35 28 1700.12 1 0 0 0 $| -8156104 0 object/static/item/item_container_organic_food.iff 0 1700.71 28 1699.67 1 0 0 0 $| -8156105 0 object/static/item/item_container_inorganic_gas.iff 0 1702.89 28 1697.74 1 0 0 0 $| -8156106 0 object/static/item/item_container_energy_liquid.iff 0 1702.79 28 1698.58 1 0 0 0 $| -8156107 0 object/static/item/item_container_energy_liquid.iff 0 1702.42 28 1698.52 1 0 0 0 $| -8215863 0 object/building/corellia/salon_corellia.iff 0 1681.31 28.2635 1446.53 -3.2E-08 0 1 0 $| -8675757 0 object/static/structure/corellia/corl_imprv_flagpole_s01.iff 0 1822.76 37.565 1629.27 1 0 0 0 $| -8675758 0 object/static/structure/corellia/corl_imprv_flagpole_s01.iff 0 1853.27 37.565 1629.26 1 0 0 0 $| -8675759 0 object/static/structure/corellia/corl_imprv_flagpole_s01.iff 0 1733.68 37.3083 1512.15 1 0 0 0 $| -8675760 0 object/static/structure/corellia/corl_imprv_bannerpole_s01.iff 0 1776.93 29.6051 1444.89 1 0 0 0 $| -8675761 0 object/static/structure/corellia/corl_imprv_bannerpole_s01.iff 0 1767.89 29.6051 1444.85 1 0 0 0 $| -8675762 0 object/static/structure/corellia/corl_imprv_bannerpole_s01.iff 0 1833.47 29.5094 1803.19 1 0 0 0 $| -8675763 0 object/static/structure/corellia/corl_imprv_bannerpole_s01.iff 0 1842.44 29.5094 1803.2 1 0 0 0 $| -8675765 0 object/static/structure/corellia/corl_imprv_flagpole_s01.iff 0 1484.58 35.3129 1903.75 1 0 0 0 $| -8675767 0 object/static/structure/corellia/corl_imprv_flagpole_s01.iff 0 2021.75 31.5854 1544.59 1 0 0 0 $| -8675768 0 object/static/structure/corellia/corl_imprv_flagpole_s01.iff 0 1963.06 31.5724 1544.8 1 0 0 0 $| -8675769 0 object/static/structure/corellia/corl_imprv_bannerpole_s01.iff 0 1986.25 28 1444.64 0.990901 0 -0.13459 0 $| -8675770 0 object/static/structure/corellia/corl_imprv_bannerpole_s01.iff 0 2003.41 28 1445.68 0.991562 0 0.129635 0 $| -9555352 0 object/static/flora/flora_tree_rori_windswept_s00.iff 0 1811.59 28 1671.09 1 0 0 0 $| -9555353 0 object/static/flora/flora_tree_rori_windswept_s00.iff 0 1814.91 28 1677.38 1 0 0 0 $| -9825673 0 object/static/structure/general/skeleton_human_headandbody.iff 0 290.855 0.195961 556.204 0.202787 0 0.979223 0 $| -9825684 0 object/static/structure/general/skeleton_human_headandbody.iff 0 296.485 0.760898 574.658 1 0 0 0 $| -9825685 0 object/static/structure/general/skeleton_human_headandbody.iff 0 302.396 1.91035 549.391 0.827336 -0.0175209 0.554878 0.0855467 $| -9825686 0 object/static/structure/general/skeleton_human_headandbody.iff 0 310.041 2.99458 570.525 1 0 0 0 $| -9825687 0 object/static/structure/general/skeleton_human_headandbody.iff 0 292.615 0.411037 545.285 0.998738 -0.00499373 0.000249895 0.0499786 $| -9825688 0 object/static/structure/general/skeleton_human_headandbody.iff 0 291.087 0.19285 549.56 0.737352 0.0405953 -0.673268 0.0370671 $| -9825692 0 object/static/structure/general/skeleton_human_headandbody.iff 0 297.564 1.08868 540.706 -0.572939 -0.169071 0.801443 -0.0290591 $| -9825694 0 object/static/structure/corellia/corl_imprv_column_s03.iff 0 279.231 -1.30208 545.642 -0.65859 0.0487988 0.749694 -0.0428687 $| -9825700 0 object/static/structure/corellia/corl_imprv_column_s03.iff 0 279.788 -1.14528 557.855 -0.627132 -0.206947 0.676222 -0.326501 $| -9825703 0 object/static/structure/corellia/corl_imprv_wall_4x16_s03.iff 0 267.643 -4.61372 548.091 0.669337 -0.158811 0.710186 -0.149677 $| -9825716 0 object/static/structure/general/campfire_fresh.iff 0 294.495 1.06328 552.276 1 0 0 0 $| -9825717 0 object/static/item/item_bowl_shallow.iff 0 294.517 0.717 552.251 1 0 0 0 $| -2115951 0 object/building/corellia/filler_slum_24x16_s01.iff 0 1765.21 28 2008.95 0.707107 0 0.707107 0 $| -2115953 0 object/building/corellia/filler_slum_24x16_s02.iff 0 1757.14 28 1994.07 -0.707107 0 0.707107 0 $| -2365494 0 object/building/corellia/filler_slum_24x16_s02.iff 0 1485 28 1561.92 0.707108 0 -0.707105 0 $| -4026531 0 object/static/structure/general/droid_r5_torso.iff 0 2012.64 28 1771.15 -0.0264239 0 0.999651 0 $| -4026532 0 object/static/structure/general/droid_repairdroidtorso.iff 0 2011.94 28 1770.73 -0.312988 0 0.949757 0 $| -4026533 0 object/static/structure/general/droid_r3_head.iff 0 2012.34 27.2962 1770.79 0.956802 -0.29074 0 0 $| -164392 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 296.567383 1.015901566 549.715332 1 0 0 0 $| -5275512 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1996.9339 28 1480.68 1 0 0 0 $| -1211507 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1754.27 28 1482.44 1 0 0 0 $| -1211538 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1872.56 28 1698.85 1 0 0 0 $| -1211562 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1521.08 3.1 1093.45 1 0 0 0 $| -1211563 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1516.17 2.29 1088.36 1 0 0 0 $| -1211572 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1543.27 2.97 1058.79 1 0 0 0 $| -1211573 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1531.74 2.05 1055.59 1 0 0 0 $| -1211574 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1522.41 3.88 1127.54 1 0 0 0 $| -1211575 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1501.12 2.09 1120.41 1 0 0 0 $| -1211576 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1503.23 0.38 1074.9 1 0 0 0 $| -1211577 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1570.2 25.9 1105.48 1 0 0 0 $| -1211578 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1550.72 8.15 1159.73 1 0 0 0 $| -1211579 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1491.68 3.49 1171.71 1 0 0 0 $| -1211580 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1594.57 11.81 1143.14 1 0 0 0 $| -1211588 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1902.73 34.25 1127.54 1 0 0 0 $| -1211589 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1898.43 34.7 1122.34 1 0 0 0 $| -1211590 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1882.08 33.93 1138.54 1 0 0 0 $| -1211591 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1916.2 34.17 1107.76 1 0 0 0 $| -1211592 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1890.72 35.89 1095.53 1 0 0 0 $| -1211593 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1915.15 31.27 1151.5 1 0 0 0 $| -1211599 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1970.92 29.24 1160.6 1 0 0 0 $| -1211600 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1967.01 30.12 1156.21 1 0 0 0 $| -1211601 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1976.61 28.33 1181.23 1 0 0 0 $| -1211602 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1978.34 28.8 1131.74 1 0 0 0 $| -1211603 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1947.21 32.05 1129.31 1 0 0 0 $| -1211604 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1949.86 28.36 1180.29 1 0 0 0 $| -1211610 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1972.61 28.95 1074.3 1 0 0 0 $| -1211611 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1968.87 29.54 1069.48 1 0 0 0 $| -1211613 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1988.13 23.51 1043.7 1 0 0 0 $| -1211614 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1939.85 31.61 1044.88 1 0 0 0 $| -1211615 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1934.64 32.16 1089.62 1 0 0 0 $| -164639 0 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 0 1910 28 1425 0 0 -1 0 $| -164640 0 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 0 1909 28 1425 0 0 -1 0 $| -164641 0 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 0 1911 28 1425 0 0 -1 0 $| -3375636 0 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 0 1870 28 1454 0 0 1 0 $| --1 0 object/tangible/spawning/static_npc/herald_corellia_02_karin.iff 0 1864 28 1684 0 0 1 0 $| --3 0 object/tangible/npc/corellia_spawn/kirkin_liawoon.iff 0 1871 28 1646 0.707106781 0 0.707106781 0 $| --4 0 object/tangible/npc/corellia_spawn/dannik_malaan.iff 0 1666 28 1601 0.7071067812 0 0.7071067812 0 $| --9 0 object/tangible/spawning/static_npc/death_watch_herald_rebel.iff 0 1834.74 28 1698.74 1 0 0 0 $| --10 0 object/tangible/spawning/static_npc/herald_corellia_rogue_corsec.iff 0 1845.86 28 1639.68 1 0 0 0 $| +objid container server_template_crc cell_index px py pz qw qx qy qz scripts objvars +i i h i f f f f f f f s p +164393 0 object/static/structure/tatooine/debris_tatt_crate_1.iff 0 292.756 0.463244 554.43 1 0 0 0 $| +164394 0 object/static/structure/tatooine/debris_tatt_crate_1.iff 0 292.871 0.52167 555.584 0.950796 0 0.309816 0 $| +1211509 0 object/static/structure/general/data_terminal_s4.iff 0 1752.78 28.0662 1486.04 -0.000000032 0 1 0 $| +1211510 0 object/static/structure/general/streetlamp_medium_style_01_on.iff 0 1749.57 28 1483.13 1 0 0 0 $| +1211540 0 object/static/structure/general/streetlamp_medium_style_02_on.iff 0 1877.42 28 1700.51 0.707107 0 -0.707106 0 $| +1211541 0 object/static/structure/general/streetlamp_medium_style_02_on.iff 0 1877.42 28 1707.72 0.707107 0 -0.707106 0 $| +1211542 0 object/static/creature/droids_protocol_droid_gold.iff 0 1873.8 28 1699.58 0.877583 0 -0.479425 0 $| +1211545 0 object/building/general/bunker_corellia_tomi_jinsin.iff 0 1529.76 2.96651 1080.5 0.911039 0 -0.412321 0 $| +1211546 1211545 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| +1211547 1211545 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| +1211548 1211545 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| +1211561 1211548 object/tangible/poi/spawnegg/interior_spawnegg.iff 3 3.44 0.25 -4.1232 1 0 0 0 intRandomYaw|0|1|$| +1211549 1211545 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| +1211550 1211545 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| +1211560 1211550 object/tangible/poi/spawnegg/interior_spawnegg.iff 5 -5.90735 -6.75 -5.08486 1 0 0 0 intRandomYaw|0|1|$| +1211551 1211545 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| +1211559 1211551 object/tangible/poi/spawnegg/interior_spawnegg.iff 6 5.65654 -6.76678 -14.00 1 0 0 0 intRandomYaw|0|1|$| +1211552 1211545 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| +1211558 1211552 object/tangible/poi/spawnegg/interior_spawnegg.iff 7 5.82104 -6.75 -1.88818 1 0 0 0 intRandomYaw|0|1|$| +1211553 1211545 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| +1211554 1211545 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| +1211555 1211554 object/tangible/poi/spawnegg/interior_spawnegg.iff 9 -2.607 -13.75 -16.702 1 0 0 0 intRandomYaw|0|1|$| +1211556 1211554 object/tangible/poi/spawnegg/interior_spawnegg.iff 9 -4.77686 -13.75 -8.52002 1 0 0 0 intRandomYaw|0|1|$| +1211557 1211554 object/tangible/poi/spawnegg/interior_spawnegg.iff 9 -0.256836 -13.75 -4.98926 1 0 0 0 intRandomYaw|0|1|$| +1211565 0 object/static/structure/tatooine/antenna_tatt_style_1.iff 0 1525.24 8.35486 1092.6 1 0 0 0 $| +1211566 0 object/static/structure/military/bunker_pillar_style_04.iff 0 1525.25 3.2 1092.57 1 0 0 0 $| +1211569 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1529.12 3.81409 1092.18 0.934943 0 0.354799 0 $| +1211570 0 object/static/installation/mockup_power_generator_fusion_style_1.iff 0 1524.89 7.99098 1079.41 0.413046 0 0.91071 0 $| +1211571 0 object/static/structure/general/tankfarm_s01.iff 0 1525.02 2.22977 1073.77 -0.352274 0 0.935897 0 $| +1211581 0 object/static/item/lair_wooden_tent.iff 0 1907.35 34.0243 1127 -0.000000032 0 1 0 $| +1211582 0 object/static/item/lair_wooden_tent.iff 0 1897.57 35.0226 1117.78 0.707107 0 -0.707106 0 $| +1211585 0 object/static/structure/general/campfire_fresh.iff 0 1897.47 34.547 1125.97 0.998872 0.0436073 -0.00395866 -0.0183592 $| +1211586 0 object/tangible/furniture/tatooine/frn_tato_tbl_cafe_table_style_01.iff 0 1905.02 34.0601 1127.36 0.998376 0.0547413 -0.000864567 -0.015768 $| +1211587 0 object/tangible/quest/corellia_coronet_meatlump_act1_radio.iff 0 1904.61 34.8275 1127.4 -0.61706 -0.0353772 0.785629 0.0277865 $| +1211594 0 object/tangible/furniture/tatooine/frn_tato_tbl_cafe_table_style_01.iff 0 1973.28 29.0829 1160.55 0.998831 0.020219 -0.00261969 -0.0438281 $| +1211595 0 object/tangible/quest/corellia_coronet_meatlump_act1_radio.iff 0 1972.86 29.87 1160.61 -0.617678 -0.00393192 0.786415 0.00308795 $| +1211596 0 object/static/item/lair_wooden_tent.iff 0 1965.82 30.394 1150.98 0.707111 0 -0.707102 0 $| +1211597 0 object/static/item/lair_wooden_tent.iff 0 1975.6 28.894 1160.2 0 0 1 0 $| +1211598 0 object/static/structure/general/campfire_fresh.iff 0 1965.73 29.877 1159.17 0.998641 0.0372496 -0.00610765 -0.0359362 $| +1211605 0 object/tangible/furniture/tatooine/frn_tato_tbl_cafe_table_style_01.iff 0 1974.9 28.5662 1074.22 0.995971 0.00414414 -0.00208884 -0.0895563 $| +1211606 0 object/tangible/quest/corellia_coronet_meatlump_act1_radio.iff 0 1974.45 29.403 1074.27 -0.615114 0.0563575 0.783838 0.0636871 $| +1211607 0 object/static/item/lair_wooden_tent.iff 0 1967.44 30.0308 1064.64 0.707109 0 -0.707104 0 $| +1211608 0 object/static/item/lair_wooden_tent.iff 0 1977.22 29.0325 1073.87 0 0 1 0 $| +1211609 0 object/static/structure/general/campfire_fresh.iff 0 1967.35 29.7561 1072.83 0.998373 0.0113248 -0.00538234 -0.0556287 $| +1439854 0 object/static/structure/corellia/corl_tent_med.iff 0 1883.74 28 1390.23 1 0 0 0 $| +1439857 0 object/static/creature/corellia_murra.iff 0 1877.44 28 1429.47 0.5653 0 0.824886 0 $| +1439858 0 object/static/structure/corellia/corl_tent_small.iff 0 1878.57 28 1452.06 1 0 0 0 $| +1439943 0 object/tangible/terminal/terminal_mission_bounty.iff 0 1705.47 28 1696.86 1 0 0 0 $| +1439947 0 object/static/structure/general/droid_r3_powerdown.iff 0 1707.72 28 1700.45 -0.707107 0 0.707107 0 $| +1439948 0 object/static/structure/general/droid_r4_powerdown.iff 0 1707.81 28 1697.91 0.707107 0 -0.707106 0 $| +1439949 0 object/static/structure/general/droid_probedroid_powerdown.iff 0 1709.23 28 1698.98 1 0 0 0 $| +1439950 0 object/static/structure/corellia/corl_tent_small.iff 0 1679.8 28.1301 1611.57 0.9998 0 0.0199987 0 $| +1439951 0 object/tangible/terminal/terminal_bazaar.iff 0 1684.03 28 1610.74 -0.000000032 0 1 0 $| +1855362 0 object/building/corellia/skyscraper_corellia_style_01.iff 0 1838 28 1884 1 0 0 0 $| +1855366 0 object/building/corellia/skyscraper_corellia_style_03.iff 0 1718 28 1784 0.923881 0 -0.382681 0 $| +1855370 0 object/building/corellia/skyscraper_corellia_style_03.iff 0 1958 28 1784 0.923879 0 0.382684 0 $| +1855378 0 object/building/corellia/skyscraper_corellia_style_04.iff 0 1778 28 1824 1 0 0 0 $| +1855386 0 object/building/corellia/skyscraper_corellia_style_04.iff 0 1898 28 1824 0.000000032 0 1 0 $| +1855406 0 object/building/corellia/filler_building_corellia_style_01.iff 0 1920.69 28 1501.29 1 0 0 0 $| +1855413 0 object/building/corellia/filler_building_corellia_style_02.iff 0 1627.33 28 1598.11 0.707109 0 -0.707105 0 $| +1855420 0 object/building/corellia/filler_building_corellia_style_03.iff 0 1778 28 1704 0.707109 0 0.707105 0 $| +1855427 0 object/building/corellia/filler_building_corellia_style_04.iff 0 1777 28 1649 0.707106 0 0.707107 0 $| +1855431 0 object/building/corellia/filler_building_corellia_style_05.iff 0 1888 27.6908 1704 -0.707106 0 0.707107 0 $| +1855438 0 object/building/corellia/filler_building_corellia_style_06.iff 0 1838 28 1494 0.70711 0 -0.707104 0 $| +1855449 0 object/building/corellia/filler_building_corellia_style_07.iff 0 1905.09 28 1644.25 1 0 0 0 $| +1855459 0 object/building/corellia/bank_corellia.iff 0 1992.41 28 1544.67 0.999997 0 0.0023009 0 $| +1855460 0 object/building/corellia/capitol_corellia.iff 0 1838 28 1574 1 0 0 0 $| +1855461 1855460 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| +1855462 1855460 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| +1855463 1855460 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| +4607185 1855463 object/tangible/poi/spawnegg/interior_spawnegg.iff 3 -26.4 1.3 -0.5 1 0 0 0 intRandomYaw|0|1|$| +4607188 1855463 object/tangible/poi/spawnegg/interior_spawnegg.iff 3 -7.0 1.3 9.9 1 0 0 0 intRandomYaw|0|1|$| +-2 1855463 object/tangible/npc/epic_quest/corsec_captain.iff 3 0 3.1 -11.0 1 0 0 0 $| +1855464 1855460 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| +1855465 1855460 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| +1855466 1855460 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| +1855467 1855460 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| +4607182 1855467 object/tangible/poi/spawnegg/interior_spawnegg.iff 3 -35.3 1.3 -1.9 1 0 0 0 intRandomYaw|0|1|$| +4607158 1855467 object/tangible/quest/corellia_coronet_diktat_search_desk.iff 1 -33.79225 1.294224 -2.555527 0.707107 0 0.7071065 0 $| +4607159 1855467 object/tangible/quest/corellia_coronet_diktat_search_terminal.iff 2 -34.15485 2.274531 -1.873781 -0.5403023 0 0.841471 0 $| +1855468 1855460 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| +1855469 1855460 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| +1855470 1855460 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| +1855471 1855460 object/cell/cell.iff 11 0 0 0 1 0 0 0 $| +1211533 1855471 object/tangible/quest/corellia_coronet_meatlump_act1_shipment.iff 11 16.5376 3.35159 -25.4146 0.707107 0 0.707106 0 $| +1855473 0 object/building/corellia/association_hall_civilian_corellia.iff 0 1772.42 28 1424.24 1 0 0 0 $| +1855474 1855473 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| +1855475 1855473 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| +1855476 1855473 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| +1855477 1855473 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| +1855478 1855473 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| +1855479 1855473 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| +1855480 1855473 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| +1855481 1855473 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| +1855482 1855473 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| +1855483 1855473 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| +4608437 1855483 object/tangible/collection/rare_melee_kashyyyk_blade_stick.iff 10 -1.56429 2.48303 -14.5934 0.9832418 -0.12972 0.01449411 -0.12727 $| +1509607 1855483 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 10 0 1.75 -14 0.844588 0 -0.535416 0 $| +-7 1855483 object/tangible/npc/corellia_spawn/thracken_sal_solo.iff 10 5.5 1.2 -1.7 1 0 0 0 $| +1855484 1855473 object/cell/cell.iff 11 0 0 0 1 0 0 0 $| +3375685 1855484 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 11 1.4 1.7 -21.2 1 0 0 0 $| +1855485 1855473 object/cell/cell.iff 12 0 0 0 1 0 0 0 $| +1855486 1855473 object/cell/cell.iff 13 0 0 0 1 0 0 0 $| +1855487 1855473 object/cell/cell.iff 14 0 0 0 1 0 0 0 $| +1855488 1855473 object/cell/cell.iff 15 0 0 0 1 0 0 0 $| +1855489 1855473 object/cell/cell.iff 16 0 0 0 1 0 0 0 $| +1855490 1855473 object/cell/cell.iff 17 0 0 0 1 0 0 0 $| +1855491 0 object/building/corellia/cloning_corellia.iff 0 1548 28 1644 0.707109 0 0.707104 0 $| +1855492 1855491 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| +1855493 1855491 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| +1855494 1855491 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| +1855495 1855491 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| +1855496 1855491 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| +1855497 1855491 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| +1855498 0 object/building/corellia/garage_corellia.iff 0 1784.8 28 1353.22 0.000000832 0 1 0 $| +1855499 0 object/building/corellia/guild_combat_corellia_style_01.iff 0 1788 28 1754 0.707106 0 0.707108 0 $| +1855500 1855499 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| +1855501 1855499 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| +1855502 1855499 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| +1855503 1855499 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| +1855504 1855499 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| +-13 1855504 object/tangible/npc/storyline_npc/coa3_tactical_rebel_spawner.iff 5 9.7 1.1 0.1 1 0 0 0 $| +1855505 1855499 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| +1855506 1855499 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| +1855507 1855499 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| +1855508 1855499 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| +1855509 0 object/building/corellia/guild_commerce_corellia_style_01.iff 0 1888 28 1754 -0.707106 0 0.707108 0 $| +1855510 1855509 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| +1855511 1855509 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| +1855512 1855509 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| +1855513 1855509 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| +1855514 1855509 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| +1855515 1855509 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| +1855516 1855509 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| +-12 1855516 object/tangible/npc/storyline_npc/coa3_information_rebel_spawner.iff 7 14.1 1.1 -9.1 1 0 0 0 $| +1855517 1855509 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| +1855518 1855509 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| +1855529 0 object/building/corellia/hospital_corellia.iff 0 1958 28 1704 -0.00000167 0 1 0 theme_park.dungeon.generic_spawner spawn_table|4|datatables/spawning/ep3/ep3_coronet_medical_center.iff|$| +1855530 1855529 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| +1855531 1855529 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| +1211544 1855531 object/tangible/poi/spawnegg/interior_spawnegg.iff 2 15.67 0.26 -3.536 1 0 0 0 intRandomYaw|0|1|$| +1855532 1855529 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| +1855533 1855529 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| +1855534 1855529 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| +1855535 1855529 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| +1855536 1855529 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| +1855537 1855529 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| +1855538 1855529 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| +1855539 1855529 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| +1855540 1855529 object/cell/cell.iff 11 0 0 0 1 0 0 0 $| +1855541 1855529 object/cell/cell.iff 12 0 0 0 1 0 0 0 $| +1855542 1855529 object/cell/cell.iff 13 0 0 0 1 0 0 0 $| +1855543 1855529 object/cell/cell.iff 14 0 0 0 1 0 0 0 $| +1855544 0 object/building/corellia/hotel_corellia.iff 0 1586 28 1471 0.70711 0 -0.707104 0 $| +1855545 1855544 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| +1855546 1855544 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| +1855547 1855544 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| +1855548 1855544 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| +1094962 1855548 object/tangible/gambling/slot/standard.iff 1 4.31708 1.35331 -22.14906 0.9999964 0 0.002698069 0 $| +1094963 1855548 object/tangible/gambling/slot/standard.iff 2 0.2440479 1.352409 -22.06592 0.9999964 0 0.002698069 0 $| +1094964 1855548 object/tangible/gambling/wheel/roulette.iff 3 -1.177133 1.162605 -16.19081 0.9999964 0 0.002698069 0 $| +1094965 1855548 object/tangible/gambling/wheel/roulette.iff 4 9.467048 1.163567 -16.30754 0.9999964 0 0.002698069 0 $| +1094966 1855548 object/tangible/gambling/slot/standard.iff 5 8.357725 1.35331 -22.29336 0.9999964 0 0.002698069 0 $| +1855549 1855544 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| +1855550 1855544 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| +1094956 1855550 object/tangible/gambling/wheel/roulette.iff 1 -15.87479 1.000944 -0.1205326 0.9999734 0 -0.007301865 0 $| +1094957 1855550 object/tangible/gambling/wheel/roulette.iff 2 -15.92515 1.000959 4.248792 0.9999734 0 -0.007301865 0 $| +1094958 1855550 object/tangible/gambling/slot/standard.iff 3 -12.28831 1.000776 -0.09216459 -0.7019242 0 0.7122527 0 $| +1094959 1855550 object/tangible/gambling/slot/standard.iff 4 -12.08542 1.000623 -0.1099437 0.7122518 0 0.701924 0 $| +1094960 1855550 object/tangible/gambling/slot/standard.iff 5 -12.01161 1.000883 4.197353 0.7032807 0 0.7109124 0 $| +1094961 1855550 object/tangible/gambling/slot/standard.iff 6 -12.21349 1.00073 4.220461 0.7109085 0 -0.703285 0 $| +1855551 1855544 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| +-5 1855551 object/tangible/npc/corellia_spawn/grobber.iff 7 -15.2 1 -8.4 1 0 0 0 $| +1855552 1855544 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| +1855553 1855544 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| +1855554 1855544 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| +-8 1855554 object/tangible/npc/corellia_spawn/zekka_thyne.iff 10 -23 1.6 -15 0.7071067812 0 0.7071067812 0 $| +1855555 0 object/building/corellia/shuttleport_corellia.iff 0 2022.33 28 1754.22 0.70711 0 -0.707104 0 structure.municipal.starport:planet_map.map_loc travel.cost|0|200|travel.ground_time|0|300|travel.is_shuttleport|0|1|travel.point_name|4|Coronet Shuttleport A|travel.shuttle_available|0|1|travel.version|0|3|$| +1855572 0 object/building/corellia/shuttleport_corellia.iff 0 1718.23 28 1522.77 -0.707106 0 0.707107 0 structure.municipal.starport:planet_map.map_loc travel.cost|0|200|travel.ground_time|0|300|travel.is_shuttleport|0|1|travel.point_name|4|Coronet Shuttleport B|travel.shuttle_available|0|1|travel.version|0|3|$| +1855573 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1671.08 28 1738.88 0.382687 0 0.923878 0 $| +1855587 0 object/building/corellia/filler_building_corellia_style_03.iff 0 2038.05 28 1655.64 0.707108 0 -0.707105 0 $| +1855594 0 object/building/corellia/filler_building_corellia_style_07.iff 0 1648 28 1404 0.707107 0 0.707107 0 $| +1855604 0 object/building/corellia/filler_building_corellia_style_01.iff 0 1762 28 1504 1 0 0 0 $| +1855611 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1927.14 28 1567.07 0.707106 0 0.707108 0 $| +1855618 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 1718 28 1404 1 0 0 0 $| +1855624 0 object/building/corellia/filler_building_corellia_style_05.iff 0 1727.67 28 1724.32 0.707109 0 -0.707105 0 $| +1855631 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1668 28 1524 1 0 0 0 $| +1855671 0 object/building/corellia/starport_corellia.iff 0 1996.71 28 1409.2 0.756336 0 -0.654183 0 structure.municipal.starport:theme_park.dungeon.generic_spawner travel.air_time|0|60|travel.cost|0|150|travel.ground_time|0|300|travel.point_name|4|Coronet Starport|travel.shuttle_available|0|1|travel.version|0|3|spawn_table|4|datatables/spawning/building_spawns/coronet_starport.iff|$| +1855672 1855671 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| +1855673 1855671 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| +1855674 1855671 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| +1855675 1855671 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| +3095701 1855675 object/tangible/terminal/terminal_space.iff 4 -0.173982 0.639421 57.3552 3.20013e-08 0 1 0 $| +3095702 1855675 object/tangible/terminal/terminal_space.iff 4 -0.306201 0.639422 62.2415 1 0 0 0 $| +3095703 1855675 object/tangible/terminal/terminal_space.iff 4 -10.3892 0.639423 57.4145 -3.20013e-08 0 1 0 $| +3095704 1855675 object/tangible/terminal/terminal_space.iff 4 -10.5966 0.639424 62.3669 1 0 0 0 $| +3095705 1855675 object/tangible/terminal/terminal_space.iff 4 10.0577 0.639422 57.249 -0.00689757 0 0.999976 0 $| +3095706 1855675 object/tangible/terminal/terminal_space.iff 4 9.91856 0.639422 62.2038 0.999976 0 0.00689846 0 $| +4335596 1855675 object/tangible/terminal/terminal_newsnet.iff 4 6.90764 0.639421 49.498 1 0 0 0 $| +4335597 1855675 object/tangible/terminal/terminal_newsnet.iff 4 -8.32585 0.639421 49.7909 1 0 0 0 $| +1855676 1855671 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| +1855677 1855671 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| +1855678 1855671 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| +1855679 1855671 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| +1855680 1855671 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| +1855681 1855671 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| +1509602 1855681 object/tangible/terminal/terminal_space.iff 10 -40.4311 1.63942 46.4818 0.997529 0 -0.0702515 0 $| +1509603 1855681 object/tangible/terminal/terminal_space.iff 10 -37.9437 1.63942 49.2991 0.753583 0 -0.657353 0 $| +1509604 1855681 object/tangible/terminal/terminal_space.iff 10 -44.1634 1.63942 50.1721 0.648034 0 0.761611 0 $| +1509605 1855681 object/tangible/terminal/terminal_space.iff 10 -41.6075 1.63942 52.927 0.057976 0 0.998318 0 $| +1855682 1855671 object/cell/cell.iff 11 0 0 0 1 0 0 0 $| +1855683 1855671 object/cell/cell.iff 12 0 0 0 1 0 0 0 $| +5245543 1855683 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 12 -44.7 2.6 35.2 0.70711 0 -0.70711 0 $| +1855684 1855671 object/cell/cell.iff 13 0 0 0 1 0 0 0 $| +1211512 1855684 object/tangible/poi/spawnegg/interior_spawnegg.iff 13 50 1.0 22.9 1 0 0 0 intRandomYaw|0|1|$| +1855685 1855671 object/cell/cell.iff 14 0 0 0 1 0 0 0 $| +1509606 1855685 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 14 -56.6 1.0 8.6 0.89101 0 -0.45399 0 $| +1855686 1855671 object/cell/cell.iff 15 0 0 0 1 0 0 0 $| +5625466 1855671 object/cell/cell.iff 16 0 0 0 1 0 0 0 $| +1855687 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1968 28 1644 1 0 0 0 $| +1855694 0 object/static/structure/corellia/corl_fountain_statue_heroic_s01.iff 0 1838 28 1674 0.707106 0 0.707107 0 theme_park.script_spawner.spawner_methods.gcw_spawner $| +1855695 0 object/static/structure/corellia/corl_fountain_statue_contemplate_s01.iff 0 1838 28 1714 -0.707106 0 0.707107 0 $| +1855696 0 object/static/structure/corellia/corl_fountain_circle_s01.iff 0 1838 28 1694 -0.000000032 0 1 0 $| +1855697 0 object/static/structure/corellia/corl_fountain_brazier_round_s01.iff 0 1853.24 28 1639.35 1 0 0 0 $| +1855698 0 object/static/structure/corellia/corl_fountain_brazier_round_s01.iff 0 1822.72 28 1639.35 1 0 0 0 $| +1855699 0 object/static/structure/corellia/corl_fountain_rectangle_s01.iff 0 1838 28 1754 -0.000000032 0 1 0 $| +1855700 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 1768 28 1574 0.707102 0 0.707111 0 $| +1855713 0 object/building/corellia/filler_building_corellia_style_01.iff 0 1718 28 1574 0.707109 0 -0.707105 0 $| +1905352 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1668 28 1500 1 0 0 0 $| +1905353 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1646 28 1500 1 0 0 0 $| +1905355 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1630 28 1492 0.707109 0 -0.707104 0 $| +1905356 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1630 28 1500 1 0 0 0 $| +1905357 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1630 28 1478 0.707109 0 -0.707104 0 $| +1905358 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1630 28 1464 0.707124 0 -0.707089 0 $| +1905359 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1630 28 1456 0.707107 0 0.707107 0 $| +1905360 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1700.61 28 1440 1 0 0 0 $| +1905361 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1646 28 1456 1 0 0 0 $| +1905362 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1722 28 1440 1 0 0 0 $| +1905363 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1738 28 1476 0.70712 0 -0.707093 0 $| +1905364 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1738 28 1484 0.707108 0 -0.707106 0 $| +1905365 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1738 28 1462 0.70712 0 -0.707093 0 $| +1905366 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1738 28 1492 0.7071 0 0.707113 0 $| +1905367 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1738 28 1500 -0.000000032 0 1 0 $| +1905368 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1556 28 1497 1 0 0 0 $| +1905372 0 object/building/corellia/filler_building_corellia_style_05.iff 0 1538 28 1564 0.707108 0 -0.707105 0 $| +1905379 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 1588 28 1524 1 0 0 0 $| +1905385 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1484.68 28 1604.21 -0.707105 0 0.707108 0 $| +1905404 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1564 28 1497 1 0 0 0 $| +1905408 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1524 28 1477 0.707109 0 -0.707104 0 $| +1905409 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1544 28 1497 1 0 0 0 $| +1905412 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1532 28 1497 -0.000000032 0 1 0 $| +1905413 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1524 28 1497 -0.000000032 0 1 0 $| +1905414 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1524 28 1489 0.707108 0 0.707105 0 $| +1905426 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1524 28 1445 0 0 1 0 $| +1905427 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1532 28 1445 0 0 1 0 $| +1905428 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1544 28 1445 1 0 0 0 $| +1905429 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1556 28 1445 1 0 0 0 $| +1905430 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1564 28 1445 1 0 0 0 $| +1905431 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1524 28 1453 0.707108 0 -0.707105 0 $| +1905436 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1524 28 1465 0.707122 0 -0.707091 0 $| +1905459 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1706 28 1500 0 0 1 0 $| +1905460 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1690 28 1500 1 0 0 0 $| +1905461 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1662 28 1456 1 0 0 0 $| +1905462 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1678 28 1456 1 0 0 0 $| +1905488 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1625.01 28 1674.57 -0.707105 0 0.707108 0 $| +1905495 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1484.68 28 1684.21 -0.707105 0 0.707108 0 $| +1905502 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1478 28 1854 0.923879 0 -0.382685 0 $| +1905563 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 2033.38 28 1914.87 1 0 0 0 $| +1905570 0 object/building/corellia/filler_building_corellia_style_05.iff 0 2008 28 1854 -0.382683 0 0.92388 0 $| +1905577 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 2028.52 28 1804.58 0.707106 0 0.707107 0 $| +1905583 0 object/building/corellia/filler_building_corellia_style_06.iff 0 1918 28 1884 0.707105 0 0.707108 0 $| +1905594 0 object/building/corellia/filler_building_corellia_style_04.iff 0 1778 28 1884 1 0 0 0 $| +1905599 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1721.46 28 1875.99 -0.707105 0 0.707108 0 $| +1905606 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 1648 28 1954 1 0 0 0 $| +1905612 0 object/building/corellia/filler_building_corellia_style_03.iff 0 1578 28 1954 0.923879 0 0.382684 0 $| +1905619 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 1538 28 1904 0.92388 0 -0.382683 0 $| +1935565 0 object/building/corellia/association_hall_civilian_corellia.iff 0 1838 28 1824 0.00000206 0 1 0 $| +1935566 1935565 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| +1935567 1935565 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| +1935568 1935565 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| +1935569 1935565 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| +1935570 1935565 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| +1935571 1935565 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| +1935572 1935565 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| +1935573 1935565 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| +1935574 1935565 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| +1935575 1935565 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| +-6 1935575 object/tangible/npc/corellia_spawn/sergeant_tarl.iff 10 -5.8 1.2 -2.8 0 0 1 0 $| +1935576 1935565 object/cell/cell.iff 11 0 0 0 1 0 0 0 $| +-11 1935576 object/tangible/npc/corellia_spawn/captain_gilad_pellaeon.iff 11 -11.3 1.7 -21 0.3090169944 0 0.9510565163 0 $| +1935577 1935565 object/cell/cell.iff 12 0 0 0 1 0 0 0 $| +1935578 1935565 object/cell/cell.iff 13 0 0 0 1 0 0 0 $| +1935579 1935565 object/cell/cell.iff 14 0 0 0 1 0 0 0 $| +1935580 1935565 object/cell/cell.iff 15 0 0 0 1 0 0 0 $| +1935581 1935565 object/cell/cell.iff 16 0 0 0 1 0 0 0 $| +1935582 1935565 object/cell/cell.iff 17 0 0 0 1 0 0 0 $| +2005443 0 object/building/corellia/filler_slum_16x32_s02.iff 0 1539.62 28 1761.55 0.382683 0 0.92388 0 $| +2005447 0 object/building/corellia/filler_slum_16x32_s01.iff 0 1581.83 28 1719.58 0.382683 0 0.92388 0 $| +2005449 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1564.13 28 1734.68 0.92388 0 -0.382683 0 $| +2005451 0 object/building/corellia/filler_slum_16x32_s02.iff 0 1513.2 28 1643.94 1 0 0 0 $| +2005455 0 object/building/corellia/filler_slum_16x32_s01.iff 0 1505.42 28 1801.8 0.92388 0 -0.382683 0 $| +2005457 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1508.29 28 1759.86 0.382683 0 0.92388 0 $| +2005459 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1480.65 28 1794.46 -0.382684 0 0.923879 0 $| +2005461 0 object/building/corellia/filler_slum_16x32_s02.iff 0 1480.24 28 1769.02 0.382683 0 0.92388 0 $| +2005465 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1512.94 28 1668 1 0 0 0 $| +2005467 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1512.9 28 1690.39 1 0 0 0 $| +2005469 0 object/building/corellia/filler_slum_16x32_s01.iff 0 1537.95 28 1689.52 0.707107 0 0.707107 0 $| +2005471 0 object/building/corellia/filler_slum_16x32_s02.iff 0 1514.94 28 1714.19 -0.000000748 0 1 0 $| +2005475 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1524.13 28 1743.74 -0.382684 0 0.923879 0 $| +2005477 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1564.42 28 1709.26 0.923879 0 0.382684 0 $| +2005479 0 object/building/corellia/filler_slum_16x32_s01.iff 0 1587.38 28 1685.2 -0.000000748 0 1 0 $| +2005481 0 object/building/corellia/filler_slum_16x32_s02.iff 0 1585.2 28 1646.07 -0.000001 0 1 0 $| +2005485 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1582.45 28 1620.81 1 0 0 0 $| +2005487 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1586.31 28 1602.02 0.707108 0 -0.707106 0 $| +2005489 0 object/building/corellia/filler_slum_16x32_s01.iff 0 1560.38 28 1599.35 0.707109 0 -0.707105 0 $| +2005491 0 object/building/corellia/filler_slum_16x32_s01.iff 0 1514.21 28 1609.66 -0.000001 0 1 0 $| +2005493 0 object/building/corellia/filler_slum_16x16_s01.iff 0 1532.62 28 1599.44 1 0 0 0 $| +2005495 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 1819.72 28 1384.97 0.707109 0 -0.707105 0 $| +2035352 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1497.54 28 1517.53 -0.00000479 0 1 0 $| +2035353 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1532.54 28 1517.53 0.707108 0 -0.707105 0 $| +2035354 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1489.54 28 1517.53 1 0 0 0 $| +2035355 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1524.54 28 1517.53 -0.0000162 0 1 0 $| +2035356 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1511.54 28 1517.53 -0.00000479 0 1 0 $| +2035357 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1548.94 28 1517.68 1 0 0 0 $| +2035360 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.38 27.8592 1517.61 0.92388 0 -0.382683 0 $| +2035364 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.38 28 1550.74 0.707108 0 0.707105 0 $| +2035369 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.37 28 1584 0.707107 0 0.707107 0 $| +2035370 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1456.3 28 1567.35 0.707107 0 0.707107 0 $| +2035377 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.35 28 1617.26 -0.707107 0 0.707107 0 $| +2035379 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1456.37 28 1600.6 -0.707107 0 0.707107 0 $| +2035385 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.39 28 1750.06 0 0 1 0 $| +2035386 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.36 28 1716.84 -0.707107 0 0.707107 0 $| +2035387 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1456.43 28 1733.49 -0.707107 0 0.707107 0 $| +2035388 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1456.44 28 1700.23 -0.707107 0 0.707107 0 $| +2035389 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.43 28 1683.89 0.707107 0 0.707107 0 $| +2035394 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1456.51 28 1799.87 -0.707107 0 0.707107 0 $| +2035395 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.51 28 1783.27 0.707107 0 0.707107 0 $| +2035396 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1456.44 28 1766.62 0.707107 0 0.707107 0 $| +2035464 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1738 28 1448 0.707104 0 0.707109 0 $| +2035466 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1738 28 1440 0 0 1 0 $| +2035467 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1694 28 1448 0.707104 0 0.707109 0 $| +2035468 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1694 28 1440 0.707108 0 0.707106 0 $| +2035469 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1694 28 1456 0.707107 0 0.707107 0 $| +2035470 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1620.94 28 1383.44 -0.382683 0 0.92388 0 $| +2035471 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1615.28 28 1389.09 -0.382698 0 0.923873 0 $| +2035472 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1606.09 28 1398.28 -0.382688 0 0.923878 0 $| +2035473 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1596.19 28 1408.18 -0.382688 0 0.923878 0 $| +2035474 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1590.65 28 1413.96 0.832218 0 0.554448 0 $| +2035475 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1590.45 28 1429.95 0.707108 0 0.707105 0 $| +2035476 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1632.6 28 1371.76 0.923879 0 0.382684 0 $| +2035477 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1660.02 28 1360.41 1 0 0 0 $| +2035478 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1644.02 28 1360.56 -0.196413 0 0.980521 0 $| +2035492 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1676.39 28 1360.42 0.000000748 0 1 0 $| +2035493 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1692.39 28 1360.42 1 0 0 0 $| +2035496 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1724.39 28 1360.42 1 0 0 0 $| +2035497 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1708.39 28 1360.42 0.000001 0 1 0 $| +2035502 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1746.39 28 1360.42 -0.00000448 0 1 0 $| +2035522 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1753.25 28 1360.41 0.000001 0 1 0 $| +2035523 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1807 28 1357 1 0 0 0 $| +2035524 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1761.64 28 1360.4 1 0 0 0 $| +2035528 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1804 28 1357 0.707109 0 0.707104 0 $| +2035529 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1829.24 28 1330.91 0.82381 0 0.566866 0 $| +2035531 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1840.51 28 1319.4 -0.382684 0 0.923879 0 $| +2035540 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1852.25 28 1307.65 0.92388 0 0.382683 0 $| +2035676 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 2043.02 28 1628.8 0.707109 0 0.707105 0 $| +2035677 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 2043.06 28 1623.8 1 0 0 0 $| +2035678 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 2043.06 28 1633.7 0.707109 0 0.707105 0 $| +2035681 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 2009.02 28 1640.85 1 0 0 0 $| +2035682 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 2020.85 28 1640.84 1 0 0 0 $| +2035683 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1997.29 28 1640.82 1 0 0 0 $| +2035685 0 object/static/structure/corellia/corl_imprv_arch_lg_s02.iff 0 1974.74 33.6515 1679.43 0.707109 -0.707104 0 0 $| +2035686 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1971.53 28 1673.57 1 0 0 0 $| +2035687 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1977.64 28 1673.4 1 0 0 0 $| +2035794 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1938.02 28 1673.71 1 0 0 0 $| +2035795 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1944.13 28 1673.54 1 0 0 0 $| +2035796 0 object/static/structure/corellia/corl_imprv_arch_lg_s02.iff 0 1941.23 33.674 1679.58 0.707119 -0.707094 0 0 $| +2035797 0 object/static/structure/corellia/corl_imprv_arch_lg_s02.iff 0 1974.78 33.6732 1728.59 0.707104 0.707109 0 0 $| +2035798 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1978.08 28 1734.35 1 0 0 0 $| +2035799 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1971.97 28 1734.52 1 0 0 0 $| +2035800 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1938.29 28 1734.54 1 0 0 0 $| +2035801 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1944.4 28 1734.37 1 0 0 0 $| +2035802 0 object/static/structure/corellia/corl_imprv_arch_lg_s02.iff 0 1941.21 33.6737 1728.52 0.707098 0.707115 0 0 $| +2035809 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 2033.06 34.588 1704.92 0.70711 0.707104 0 0 $| +2035810 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 2033.06 34.588 1702.92 0.707109 -0.707104 0 0 $| +2035811 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 2037.18 28.611 1698.92 1 0 0 0 $| +2035812 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 2028.81 28.611 1698.92 1 0 0 0 $| +2035813 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 2028.81 28.611 1708.92 1 0 0 0 $| +2035814 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 2037.18 28.611 1708.93 1 0 0 0 $| +2055352 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1873.31 28 1620.94 1 0 0 0 $| +2055353 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1862.1 28 1620.91 1 0 0 0 $| +2055354 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1884.72 28 1620.89 1 0 0 0 $| +2055355 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1864 28 1635 1 0 0 0 $| +2055360 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1917.33 28 1609.1 0.707108 0 -0.707105 0 $| +2055361 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1917.36 28 1597.89 0.707108 0 -0.707105 0 $| +2055362 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1917.37 28 1620.51 0.707108 0 -0.707105 0 $| +2055363 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1930.53 28 1633.83 -0.00000184 0 1 0 $| +2055366 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1859 28 1635 1 0 0 0 $| +2055368 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1869 28 1635 1 0 0 0 $| +2055370 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1812 28 1635 1 0 0 0 $| +2055371 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1807 28 1635 1 0 0 0 $| +2055372 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1817 28 1635 1 0 0 0 $| +2055374 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1931.51 28 1655.69 -0.000002 0 1 0 $| +2055391 0 object/static/structure/corellia/corl_imprv_gate_sm_s02.iff 0 1456.32 28 1637.81 0.707109 0 -0.707104 0 $| +2055392 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1456.37 28 1650.59 0.707109 0 -0.707104 0 $| +2055393 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1456.37 28 1625.84 -0.707107 0 0.707107 0 $| +2055394 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.37 28 1642.59 0.707109 0 0.707104 0 $| +2055395 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1456.4 28 1675.35 -0.707107 0 0.707107 0 $| +2055396 0 object/static/structure/corellia/corl_imprv_gate_sm_s02.iff 0 1456.39 28 1663.4 0.707132 0 -0.707081 0 $| +2055417 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1456.37 28 1658.59 0.707107 0 0.707107 0 $| +2055468 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1456.49 28 1831.72 0.707108 0 -0.707105 0 $| +2055469 0 object/static/structure/corellia/corl_imprv_gate_sm_s02.iff 0 1456.52 28 1819.79 0.707108 0 -0.707105 0 $| +2055473 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1472.8 28 1786.09 0.92388 0 -0.382683 0 $| +2055474 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1472.35 28 1763.53 -0.382684 0 0.923879 0 $| +2055476 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1461.3 28 1774.62 0.92388 0 -0.382683 0 $| +2055477 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1495.16 28 1740.77 -0.382684 0 0.923879 0 $| +2055478 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1483.97 28 1751.92 -0.382684 0 0.923879 0 $| +2055479 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1506.01 28 1729.12 0.707118 0 -0.707095 0 $| +2055480 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1506.03 28 1713.62 0.707105 0 0.707107 0 $| +2055495 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1893.85 28 1485.53 1 0 0 0 $| +2055525 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1827.99 28 1424.82 0.707108 0 -0.707105 0 $| +2055526 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1828.05 28 1437.72 0.707108 0 -0.707105 0 $| +2055527 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1828.04 28 1412.02 0.707108 0 -0.707105 0 $| +2055528 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1751.81 27.3265 1403.75 1 0 0 0 $| +2055529 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1750.52 26.7288 1430.12 0.707108 0 -0.707105 0 $| +2055530 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1800.4 28 1445.93 1 0 0 0 $| +2055532 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1800.4 28 1435.09 1 0 0 0 $| +2055535 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1934.81 28 1527.75 0.707109 0 0.707105 0 $| +2055536 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1776.27 28 1545.62 0.707108 0 -0.707105 0 $| +2055537 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1776.26 27.5985 1519.92 0.707108 0 -0.707105 0 $| +2055538 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1776.21 27.89 1532.72 0.707108 0 -0.707105 0 $| +2055647 0 object/static/structure/corellia/corl_imprv_gate_sm_s03.iff 0 1634.44 28 1634.12 0.707106 0 0.707107 0 $| +2055649 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1634.43 28 1622.51 0.707108 0 -0.707105 0 $| +2055651 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1634.41 28 1645.97 -0.707107 0 0.707107 0 $| +2055652 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1635 28 1702 0.92388 0 -0.382683 0 $| +2055653 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1651 28 1718 0.92388 0 -0.382683 0 $| +2055654 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1643 28 1710 0.92388 0 -0.382683 0 $| +2055672 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1594.27 28 1714.1 -0.191508 0 0.981491 0 $| +2055673 0 object/static/structure/corellia/corl_imprv_gate_sm_s03.iff 0 1605.26 28 1709.67 0.981491 0 0.191509 0 $| +2055674 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1616.02 28 1705.3 -0.191509 0 0.981491 0 $| +2055675 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1586.61 28 1698.26 0.707108 0 0.707105 0 $| +2055676 0 object/static/structure/corellia/corl_imprv_gate_sm_s03.iff 0 1590 28 1666 0.707107 0 0.707107 0 $| +2055677 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1583.33 28 1629.54 0.707107 0 0.707107 0 $| +2055678 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1586.5 28 1611.32 0.707107 0 0.707107 0 $| +2055679 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1545.1 28 1599.34 1 0 0 0 $| +2055680 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1516.26 28 1622.81 0.707108 0 -0.707105 0 $| +2055681 0 object/static/structure/corellia/corl_imprv_gate_sm_s03.iff 0 1512.71 28 1679.21 -0.707107 0 0.707107 0 $| +2055682 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1522.57 28 1686.18 1 0 0 0 $| +2055683 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1520.92 28 1693.27 0.000000348 0 1 0 $| +2055686 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1574.06 28 1712.65 0.382684 0 0.92388 0 $| +2055691 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1505.94 28 1698.29 0.707124 0 -0.707089 0 $| +2055695 0 object/static/structure/corellia/corl_imprv_arch_lg_s02.iff 0 1553.78 28 1744.65 -0.382683 0 0.92388 0 $| +2055696 0 object/static/structure/corellia/corl_imprv_column_s03.iff 0 1558.45 26.7525 1739.98 0.92388 0 0.382683 0 $| +2055699 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1530.84 27.6665 1756.73 0.923879 0 -0.382685 0 $| +2055700 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1513.82 28 1749.26 -0.382682 0 0.92388 0 $| +2055701 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1489.27 28.3531 1803.3 0.923879 0 -0.382685 0 $| +2055703 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1616.52 28 1727.5 0.382683 0 0.92388 0 $| +2055706 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1509.27 28 1576.32 1 0 0 0 $| +2055707 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1568.33 28 1576.43 1 0 0 0 $| +2055713 0 object/static/structure/corellia/corl_imprv_gate_sm_s02.iff 0 1588.33 28 1576.43 1 0 0 0 $| +2055718 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1608.33 28 1576.43 1 0 0 0 $| +2075368 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1699.1 28 1758.2 0.92388 0 -0.382683 0 $| +2075369 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1692.21 28 1765.11 0.92388 0 -0.382683 0 $| +2075370 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1762.02 28 1682 0.707108 0 -0.707105 0 $| +2075371 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1773.99 28 1681.98 0.707108 0 -0.707105 0 $| +2075372 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1795.98 28 1728.77 0.707109 0 -0.707104 0 $| +2075373 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1795.98 28 1723.77 0.707108 0 -0.707105 0 $| +2075374 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1795.98 28 1733.77 -0.707107 0 0.707107 0 $| +2075375 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1761.8 28 1730.74 -0.707107 0 0.707107 0 $| +2075376 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1761.8 28 1725.74 0.707122 0 -0.707091 0 $| +2075377 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1761.8 28 1735.74 -0.707107 0 0.707107 0 $| +2075379 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1761.83 28 1744.29 0.707108 0 -0.707105 0 $| +2075380 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1761.85 28 1761.38 -0.707107 0 0.707107 0 $| +2075381 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1761.82 28 1752.84 -0.707107 0 0.707107 0 $| +2075382 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1767.66 28 1775.47 0.923879 0 -0.382684 0 $| +2075383 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1761.59 28 1769.45 0.923879 0 -0.382684 0 $| +2075384 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1789.8 28 1780.92 0.707107 0 0.707107 0 $| +2075386 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1781.26 28 1780.95 0.000000032 0 1 0 $| +2075387 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1773.09 28 1780.94 1 0 0 0 $| +2075395 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1902.61 28 1781.15 0.000000032 0 1 0 $| +2075396 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1894.44 28 1781.14 1 0 0 0 $| +2075398 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1886.01 28 1781.17 -0.707107 0 0.707107 0 $| +2075399 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1914.4 28 1769.54 -0.382683 0 0.92388 0 $| +2075400 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1878.72 28 1728.79 0.707107 0 0.707107 0 $| +2075401 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1878.72 28 1733.79 0.707104 0 0.707109 0 $| +2075402 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1878.72 28 1723.79 0.707107 0 0.707107 0 $| +2075405 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1914.61 28 1735.83 0.707107 0 0.707107 0 $| +2075407 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1914.64 28 1744.38 -0.707107 0 0.707107 0 $| +2075408 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1914.65 28 1761.48 -0.707107 0 0.707107 0 $| +2075409 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1914.62 28 1752.93 -0.707107 0 0.707107 0 $| +2075410 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1908.38 28 1775.6 -0.382683 0 0.92388 0 $| +2075411 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1774.23 28 1606.35 0.707108 0 0.707105 0 $| +2075412 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1774.23 28 1616.35 0.707108 0 0.707105 0 $| +2075413 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1774.23 28 1611.35 0.707108 0 0.707105 0 $| +2115412 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 2042.44 28 1741.19 0 0 1 0 $| +2115413 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 2017.58 28 1770.11 0.707108 0 0.707105 0 $| +2115416 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 2037.53 28 1770.14 0.707108 0 0.707105 0 $| +2115422 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 2029.75 28 1851.48 -0.382683 0 0.92388 0 $| +2115567 0 object/building/corellia/filler_historic_32x16_s01.iff 0 1790.56 28 2009.69 1 0 0 0 $| +2115572 0 object/building/corellia/filler_historic_32x16_s02.iff 0 1791.39 27.9994 2047.45 1 0 0 0 $| +2115577 0 object/building/corellia/filler_historic_32x16_s02.iff 0 1890.28 28 2019.33 -0.000000032 0 1 0 $| +2115588 0 object/building/corellia/filler_building_corellia_style_07.iff 0 1723.04 28 1951.86 0.92388 0 -0.382683 0 $| +2115614 0 object/building/corellia/filler_block_corellia_64x32_s02.iff 0 1911.13 28 1953.89 0.707109 0 -0.707105 0 $| +2115620 0 object/building/corellia/filler_block_corellia_64x32_s01.iff 0 1971.7 28 1940.16 1 0 0 0 $| +2115655 0 object/static/structure/corellia/corl_power_connector.iff 0 1619.32 28 1564.09 0.92388 0 -0.382683 0 $| +2115656 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1603.13 28 1566.88 0.707122 0 0.707091 0 $| +2115657 0 object/static/structure/corellia/corl_power_transformer_s02.iff 0 1622.13 28 1566.88 0.707122 0 0.707091 0 $| +2115658 0 object/static/structure/corellia/corl_power_transformer_s02.iff 0 1598.13 28 1566.88 0.707122 0 0.707091 0 $| +2115659 0 object/static/structure/corellia/corl_power_connector.iff 0 1600.6 28 1569.33 0.92388 0 -0.382683 0 $| +2115660 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1610.13 28 1572.88 1 0 0 0 $| +2115661 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1617.13 28 1572.88 1 0 0 0 $| +2115662 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1603.13 28 1572.88 1 0 0 0 $| +2115663 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1610.13 28 1560.88 0 0 1 0 $| +2115664 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1617.13 28 1560.88 0 0 1 0 $| +2115665 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1603.13 28 1560.88 0 0 1 0 $| +2115666 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1610.13 28 1566.88 0.707122 0 0.707091 0 $| +2115667 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1617.13 28 1566.88 0.707122 0 0.707091 0 $| +2115671 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1669.69 28 1585.9 0.00000328 0 1 0 $| +2115672 0 object/static/structure/corellia/corl_power_transformer_s02.iff 0 1669.69 28 1566.9 0.00000328 0 1 0 $| +2115673 0 object/static/structure/corellia/corl_power_transformer_s02.iff 0 1669.69 28 1590.9 0.00000328 0 1 0 $| +2115675 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1682.69 28 1578.9 0.707108 0 0.707105 0 $| +2115676 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1675.69 28 1571.9 0.707108 0 0.707105 0 $| +2115677 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1675.69 28 1585.9 0.707108 0 0.707105 0 $| +2115678 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1656.69 28 1578.9 0.707108 0 -0.707105 0 $| +2115679 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1663.69 28 1571.9 0.707108 0 -0.707105 0 $| +2115680 0 object/static/structure/corellia/corl_power_transformer_s01.iff 0 1663.69 28 1585.9 0.707108 0 -0.707105 0 $| +2115681 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1669.69 28 1578.9 0.00000328 0 1 0 $| +2115682 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1669.69 28 1571.9 0.00000328 0 1 0 $| +2115690 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1591.74 28 1568 0.707108 0 -0.707105 0 $| +2115691 0 object/static/structure/corellia/corl_imprv_wall_4x16_s04.iff 0 1624.9 28 1561.07 0.707105 0 0.707108 0 $| +2115692 0 object/static/structure/corellia/corl_imprv_gate_sm_s02.iff 0 1591.71 28 1556.11 0.707108 0 -0.707105 0 $| +2115693 0 object/static/structure/corellia/corl_imprv_wall_4x32_s04.iff 0 1608.24 28 1552.67 1 0 0 0 $| +2115694 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1624.83 28 1552.71 1 0 0 0 $| +2115713 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1675.69 28 1578.9 0.000003 0 1 0 $| +2115714 0 object/static/structure/corellia/corl_power_bubble_node.iff 0 1663.69 28 1578.9 0.000003 0 1 0 $| +2115723 0 object/static/structure/corellia/corl_power_arial_prime.iff 0 1673.06 28 1582.94 1 0 0 0 $| +2115724 0 object/static/structure/corellia/corl_power_arial_thin.iff 0 1667.08 28 1575.05 1 0 0 0 $| +2115732 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1653.81 28 1578.57 0.707108 0 -0.707105 0 $| +2115733 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1685.81 28 1578.57 0.707108 0 -0.707105 0 $| +2115734 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1669.81 28 1562.57 1 0 0 0 $| +2115736 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1659.87 28 1599.36 0.941851 0 -0.33603 0 $| +2115737 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1679.69 28 1599.2 -0.336031 0 0.941851 0 $| +2115738 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1669.81 28 1604.57 1 0 0 0 $| +2115739 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1685.81 28 1562.57 1 0 0 0 $| +2115740 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1653.81 28 1562.57 1 0 0 0 $| +2115741 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1653.81 28 1594.57 0.707108 0 -0.707105 0 $| +2115742 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1685.81 28 1594.57 -0.707107 0 0.707107 0 $| +2115747 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1891.92 28.2757 2038.22 0.707108 0 -0.707105 0 $| +2115750 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1889.9 28 1997.68 -0.707107 0 0.707107 0 $| +2115751 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1898.22 28 1981.48 -7.34E-08 0 1 0 $| +2115752 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1889.89 28 1981.37 1 0 0 0 $| +2115753 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1789.24 28.0098 2029.37 0.707117 0 -0.707096 0 $| +2115754 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1775.41 28 1996.66 -0.00000184 0 1 0 $| +2115758 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1931.78 28 1937.06 1 0 0 0 $| +2115759 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1943.42 28 1937.03 1 0 0 0 $| +2115760 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1919.8 28 1937.06 1 0 0 0 $| +2115762 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1994 28 1876 -0.382684 0 0.923879 0 $| +2115763 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1973 28 1889 1 0 0 0 $| +2115764 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1985 28 1885 0.92388 0 0.382683 0 $| +2115794 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1933.21 28 1815.21 0.92388 0 0.382683 0 $| +2115796 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1941.7 28 1806.72 0.92388 0 0.382683 0 $| +2115798 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1924.85 28 1823.25 0.929516 0 0.368783 0 $| +2115802 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1854 28 1848 1 0 0 0 $| +2115804 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1862 28 1832 0.707108 0 -0.707105 0 $| +2115806 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1862 28 1808 0.707108 0 -0.707105 0 $| +2115809 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1838 28 1848 1 0 0 0 $| +2115810 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1814 28 1832 -0.707107 0 0.707107 0 $| +2115815 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1822 28 1848 1 0 0 0 $| +2115816 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1814 28 1808 0.707108 0 -0.707105 0 $| +2115830 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1814 28 1800 0.707107 0 0.707107 0 $| +2115831 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1862 28 1800 0.707107 0 0.707107 0 $| +2115832 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1862 28 1848 0.707107 0 0.707107 0 $| +2115833 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1814 28 1848 0.707107 0 0.707107 0 $| +2115908 0 object/static/structure/corellia/corl_fountain_brazier_round_s01.iff 0 1839.19 28.5955 2021.34 1 0 0 0 $| +2115955 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1723 28 1997 1 0 0 0 $| +2115956 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1691 28 1997 1 0 0 0 $| +2115957 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1659 28 1997 1 0 0 0 $| +2115958 0 object/static/structure/corellia/corl_imprv_gate_sm_s02.iff 0 1742 28 1997 1 0 0 0 $| +2115965 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1627 28 1997 1 0 0 0 $| +2115966 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1592 28 1986 0.92388 0 -0.382683 0 $| +2115970 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1607 28 1997 1 0 0 0 $| +2115973 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1529.99 28 1926.31 0.382684 0 0.923879 0 $| +2115974 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1516.55 28 1912.87 0.382684 0 0.923879 0 $| +2115975 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1543.42 28 1939.74 0.382684 0 0.923879 0 $| +2115983 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1484.61 28 1903.79 0.92388 0 -0.382683 0 $| +2115984 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1477.54 28 1896.72 0.92388 0 -0.382683 0 $| +2115985 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1491.68 28 1910.86 0.92388 0 -0.382683 0 $| +2115986 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1481.32 28 1888.52 -0.382683 0 0.92388 0 $| +2115987 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1499.74 28 1907.15 -0.382683 0 0.92388 0 $| +2115988 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1505.35 28 1901.61 0.92388 0 -0.382683 0 $| +2115990 0 object/static/structure/corellia/corl_fountain_rectangle_s01.iff 0 1785 28 1957 -0.382684 0 0.923879 0 $| +2115991 0 object/static/structure/corellia/corl_fountain_rectangle_s01.iff 0 1780 28 1945 1 0 0 0 $| +2115992 0 object/static/structure/corellia/corl_fountain_rectangle_s01.iff 0 1785 28 1933 0.382684 0 0.923879 0 $| +2115998 0 object/static/structure/corellia/corl_fountain_brazier_square_s01.iff 0 1791 28 1945 1 0 0 0 $| +2116066 0 object/static/structure/corellia/corl_fountain_circle_s01.iff 0 2033 28 1704 1 0 0 0 $| +2116087 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 2009 33.7048 1717 -0.500001 -0.499999 -0.499999 0.500001 $| +2116095 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 2009 33.7048 1691 -0.500001 -0.499999 -0.499999 0.500001 $| +2116106 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 2035.75 28 1845.48 -0.382683 0 0.92388 0 $| +2116107 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 2035.75 28 1837.48 0.707107 0 0.707107 0 $| +2116109 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1896.75 28 1307.65 0.382684 0 0.923879 0 $| +2116110 0 object/static/structure/corellia/corl_imprv_wall_4x32_s01.iff 0 1908.5 28 1319.39 0.92388 0 -0.382682 0 $| +2116111 0 object/static/structure/corellia/corl_imprv_column_s01.iff 0 1920.01 28 1330.66 0.181687 0 0.983356 0 $| +2116136 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1828.96 28 1349.18 0.707108 0 -0.707105 0 $| +2116138 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1828.96 28 1339.18 0.707108 0 -0.707105 0 $| +2116139 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1919.89 28 1338.72 0.707119 0 -0.707094 0 $| +2116140 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1919.8 28 1348.95 0.707118 0 -0.707095 0 $| +2116141 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1919.84 28 1359.12 0.707124 0 -0.707089 0 $| +2195355 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1863.94 25.3331 1664.03 1 0 0 0 $| +2195356 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1855.94 25.3331 1672.03 0.707111 0 -0.707102 0 $| +2195357 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1871.94 25.3331 1672.03 0.707107 0 0.707107 0 $| +2195358 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1863.94 25.3331 1680.03 0.000000032 0 1 0 $| +2195381 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1871.94 28 1664.03 1 0 0 0 $| +2195382 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1855.94 28 1664.03 1 0 0 0 $| +2195383 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1871.94 28 1680.03 1 0 0 0 $| +2195384 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1855.94 28 1680.03 1 0 0 0 $| +2195395 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1816.17 25.3331 1680.08 0 0 1 0 $| +2195396 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1808.17 28 1680.08 1 0 0 0 $| +2195397 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1824.17 28 1664.08 1 0 0 0 $| +2195398 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1808.17 25.3331 1672.08 0.707128 0 -0.707085 0 $| +2195399 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1808.17 28 1664.08 1 0 0 0 $| +2195400 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1816.17 25.3331 1664.08 1 0 0 0 $| +2195401 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1824.17 25.3331 1672.08 0.707107 0 0.707107 0 $| +2195402 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1824.17 28 1680.08 1 0 0 0 $| +2195427 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1871.88 25.65 1400.12 0 0 1 0 $| +2195428 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1863.88 28 1400.12 1 0 0 0 $| +2195429 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1879.88 28 1384.12 1 0 0 0 $| +2195430 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1863.88 25.65 1392.12 0.70713 0 -0.707083 0 $| +2195431 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1863.88 28 1384.12 1 0 0 0 $| +2195432 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1871.88 25.65 1384.12 1 0 0 0 $| +2195433 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1879.88 25.65 1392.12 0.707107 0 0.707107 0 $| +2195434 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1879.88 28 1400.12 1 0 0 0 $| +2195435 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1848.1 25.65 1336.29 0 0 1 0 $| +2195436 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1840.1 28 1336.29 1 0 0 0 $| +2195437 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1856.1 28 1320.29 1 0 0 0 $| +2195438 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1840.1 25.65 1328.29 0.707126 0 -0.707087 0 $| +2195439 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1840.1 28 1320.29 1 0 0 0 $| +2195440 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1848.1 25.65 1320.29 1 0 0 0 $| +2195441 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1856.1 25.65 1328.29 0.707107 0 0.707107 0 $| +2195442 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1856.1 28 1336.29 1 0 0 0 $| +2195444 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1888.16 28 1336.15 1 0 0 0 $| +2195445 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1904.16 28 1320.15 1 0 0 0 $| +2195446 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1888.16 25.65 1328.15 0.707128 0 -0.707085 0 $| +2195447 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1888.16 28 1320.15 1 0 0 0 $| +2195448 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1896.16 25.65 1320.15 1 0 0 0 $| +2195449 0 object/static/structure/corellia/corl_imprv_wall_4x16_s01.iff 0 1904.16 25.65 1328.15 0.707107 0 0.707107 0 $| +2195450 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1904.16 28 1336.15 1 0 0 0 $| +2195452 0 object/static/structure/corellia/corl_fountain_statue_contemplate_s01.iff 0 1539.5 28 1470.5 1 0 0 0 $| +2195453 0 object/static/structure/general/bench_generic_style_1.iff 0 1565.89 28 1487.04 0.707108 0 -0.707105 0 $| +2195454 0 object/static/structure/general/bench_generic_style_1.iff 0 1565.91 28 1491.03 -0.707107 0 0.707107 0 $| +2195455 0 object/static/structure/general/bench_generic_style_1.iff 0 1565.77 28 1451.03 -0.707107 0 0.707107 0 $| +2195456 0 object/static/structure/general/bench_generic_style_1.iff 0 1565.79 28 1455.03 -0.707107 0 0.707107 0 $| +2195458 0 object/tangible/terminal/terminal_mission.iff 0 1559 28.9803 1478 0.92388 0 -0.382683 0 $| +2195459 0 object/tangible/terminal/terminal_mission.iff 0 1559 28.9803 1464 -0.382684 0 0.923879 0 $| +2195460 0 object/static/structure/general/bench_generic_style_1.iff 0 1536.73 28 1468.99 -0.707107 0 0.707107 0 $| +2195461 0 object/static/structure/general/bench_generic_style_1.iff 0 1536.74 28 1472.98 -0.707107 0 0.707107 0 $| +2195462 0 object/static/structure/general/bench_generic_style_1.iff 0 1542.25 28 1469.07 0.707107 0 0.707107 0 $| +2195463 0 object/static/structure/general/bench_generic_style_1.iff 0 1542.26 28 1473.07 0.707107 0 0.707107 0 $| +2195464 0 object/static/structure/corellia/corl_fountain_rectangle_s01.iff 0 1469.67 28 1531.58 1 0 0 0 $| +2195471 0 object/static/structure/general/bench_generic_style_1.iff 0 1461.7 28 1533.66 0.707107 0 0.707107 0 $| +2195472 0 object/static/structure/general/bench_generic_style_1.iff 0 1461.68 28 1529.66 0.707107 0 0.707107 0 $| +2195473 0 object/static/structure/general/bench_generic_style_1.iff 0 1477.73 28 1529.65 -0.707107 0 0.707107 0 $| +2195474 0 object/static/structure/general/bench_generic_style_1.iff 0 1477.74 28 1533.64 -0.707107 0 0.707107 0 $| +2195475 0 object/static/structure/general/bench_generic_style_1.iff 0 1467.68 28 1522.4 1 0 0 0 $| +2195476 0 object/static/structure/general/bench_generic_style_1.iff 0 1471.67 28 1522.38 1 0 0 0 $| +2195477 0 object/static/structure/general/bench_generic_style_1.iff 0 1471.68 28 1540.59 0.000000348 0 1 0 $| +2195478 0 object/static/structure/general/bench_generic_style_1.iff 0 1467.69 28 1540.61 0.000000348 0 1 0 $| +2195480 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1558.34 28.4782 1537.02 1 0 0 0 $| +2195481 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1616.1 28 1537.63 1 0 0 0 $| +2195482 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1591.01 28 1567.02 0.707108 0 -0.707105 0 $| +2195483 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1635.02 28 1524.98 0.707108 0 -0.707105 0 $| +2195484 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1609.42 28 1500.9 0.934124 0 0.356949 0 $| +2195485 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1609.55 28 1440.95 0.382683 0 0.92388 0 $| +2195490 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1713.04 28 1419.27 1 0 0 0 $| +2195493 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1619.93 28 1414.25 0.92388 0 -0.382681 0 $| +2195494 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1666.7 28 1385.75 0.382683 0 0.92388 0 $| +2195495 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1737.06 28 1389.29 0.000000032 0 1 0 $| +2195497 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1852.22 28 1306.4 0.000000032 0 1 0 $| +2195498 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1896.77 28 1306.35 0.000000032 0 1 0 $| +2215353 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 2013.53 29.4336 1523.36 0.924759 0 -0.380554 0 $| +2215354 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1971.1 29.4369 1523.55 -0.384809 0 0.922996 0 $| +2215355 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1971.3 29.4369 1565.98 0.924757 0 -0.380557 0 $| +2215356 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 2013.72 29.4369 1565.78 -0.384809 0 0.922996 0 $| +2215369 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1867.03 28 1515.27 1 0 0 0 $| +2215370 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1798.73 28 1510.31 0.92388 0 -0.382683 0 $| +2215371 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1783.27 28 1579 0.707107 0 0.707107 0 $| +2215372 0 object/tangible/terminal/terminal_mission.iff 0 1820.77 28 1741.4 0.707109 0 0.707105 0 $| +2215373 0 object/tangible/terminal/terminal_mission.iff 0 1820.78 28 1766.84 0.70712 0 0.707093 0 $| +2215374 0 object/tangible/terminal/terminal_mission.iff 0 1855.31 28 1738.54 -0.707103 0 0.70711 0 $| +2215375 0 object/tangible/terminal/terminal_mission.iff 0 1855.01 28 1769.53 -0.707105 0 0.707108 0 $| +2215376 0 object/tangible/terminal/terminal_mission.iff 0 1853.06 28 1799.68 0.00000178 0 1 0 $| +2215377 0 object/tangible/terminal/terminal_mission.iff 0 1822.97 28 1799.66 0.00000178 0 1 0 $| +2215379 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1977.65 28 1672.16 -0.000000032 0 1 0 $| +2215380 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1937.99 28 1672.65 -0.000000032 0 1 0 $| +2215381 0 object/static/structure/general/streetlamp_large_style_01.iff 0 2013.31 28 1681.08 0.707107 0 0.707107 0 $| +2215382 0 object/static/structure/general/streetlamp_large_style_01.iff 0 2013.23 28 1727.04 0.707108 0 0.707105 0 $| +2365352 0 object/static/structure/general/bench_generic_style_1.iff 0 2033 28 1693 1 0 0 0 $| +2365355 0 object/static/structure/general/bench_generic_style_1.iff 0 2013 28 1720 0.707107 0 0.707107 0 $| +2365356 0 object/static/structure/general/bench_generic_style_1.iff 0 2013 28 1714 0.707107 0 0.707107 0 $| +2365357 0 object/static/structure/general/bench_generic_style_1.iff 0 2013 28 1694 0.707108 0 0.707105 0 $| +2365358 0 object/static/structure/general/bench_generic_style_1.iff 0 2013 28 1688 0.707108 0 0.707105 0 $| +2365359 0 object/static/structure/general/bench_generic_style_1.iff 0 2023 28 1704 0.707108 0 0.707105 0 $| +2365360 0 object/static/structure/general/bench_generic_style_1.iff 0 2043 28 1704 0.707108 0 -0.707105 0 $| +2365361 0 object/static/structure/general/bench_generic_style_1.iff 0 2033 28 1715 0.000000032 0 1 0 $| +2365366 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1975.43 28 1758.05 0.000000032 0 1 0 $| +2365367 0 object/static/structure/general/streetlamp_large_style_01.iff 0 2015.18 28 1799.07 0.707108 0 -0.707105 0 $| +2365368 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1957.65 28 1867.36 0.382683 0 0.92388 0 $| +2365369 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1878.22 28 1867.14 -0.382683 0 0.92388 0 $| +2365370 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1813.89 28 1798.99 -0.000000032 0 1 0 $| +2365371 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1862.02 28 1799 -0.000000032 0 1 0 $| +2365372 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1773 28 1781.93 1 0 0 0 $| +2365373 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1902.55 28 1782.05 1 0 0 0 $| +2365378 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1876.23 28 1688.61 -0.382686 0 0.923878 0 $| +2365379 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1797.46 28 1685.73 0.382683 0 0.92388 0 $| +2365391 0 object/building/corellia/guild_theater_corellia_s01.iff 0 1839.33 28 1995.87 -0.000000032 0 1 0 $| +2365392 2365391 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| +2365393 2365391 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| +2365394 2365391 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| +2365395 2365391 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| +2365396 2365391 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| +2365397 2365391 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| +2365398 2365391 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| +2365399 2365391 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| +2365400 2365391 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| +2365401 2365391 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| +2365402 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1867.4 28.5911 1921.12 0.707108 0 0.707105 0 $| +2365403 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1865.46 28.5911 1919.07 0.000000032 0 1 0 $| +2365404 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1813.34 28.5745 1919.05 0.00000184 0 1 0 $| +2365405 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1811.29 28.5745 1920.99 0.707108 0 -0.707105 0 $| +2365406 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1811.19 28.5255 1965 0.707117 0 -0.707096 0 $| +2365407 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1811.11 28.5453 2005.04 0.707117 0 -0.707096 0 $| +2365408 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1867.41 28.5582 2004.91 0.707103 0 0.70711 0 $| +2365409 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1867.38 28.578 1964.97 0.707103 0 0.70711 0 $| +2365410 0 object/static/structure/general/bench_generic_style_1.iff 0 1810.72 28.5951 1944.95 0.707108 0 -0.707105 0 $| +2365411 0 object/static/structure/general/bench_generic_style_1.iff 0 1810.76 28.5951 1950.94 -0.707107 0 0.707107 0 $| +2365413 0 object/static/structure/general/bench_generic_style_1.iff 0 1810.76 28.5951 1938.9 -0.707107 0 0.707107 0 $| +2365415 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1814.05 28 1849.06 1 0 0 0 $| +2365416 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1862.1 28 1848.85 1 0 0 0 $| +2365417 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1751.07 28 1823.92 0.707108 0 -0.707105 0 $| +2365418 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1659.73 28 1748.33 0.92388 0 -0.382683 0 $| +2365421 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1759.58 28 1909.53 0.92388 0 -0.382684 0 $| +2365423 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1706.26 28 1887.04 0.707108 0 -0.707105 0 $| +2365424 0 object/static/structure/general/bench_generic_style_1.iff 0 1668.49 28 1936.68 -0.707107 0 0.707107 0 $| +2365425 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1666.92 28 1939.15 0.000000348 0 1 0 $| +2365439 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1557.15 28 1878.96 0.92388 0 -0.382683 0 $| +2365440 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1492.98 28 1886.97 0.92388 0 0.382683 0 $| +2365442 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1536.3 28 1921.57 0.923879 0 -0.382684 0 $| +2365443 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1499.22 28 1817.95 0.996192 0 0.0871895 0 $| +2365465 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1508.27 28 1770.23 1 0 0 0 $| +2365466 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1523.15 28 1702.23 0.707107 0 0.707107 0 $| +2365468 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1657.95 28 1705.24 0.000000348 0 1 0 $| +2365469 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1637.06 28 1642.97 0.707107 0 0.707107 0 $| +2365470 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1611.05 28 1591 -0.707107 0 0.707107 0 $| +2365471 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1550.02 28 1579.42 0.92388 0 0.382683 0 $| +2365472 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1499 28 1591.04 0.707107 0 0.707107 0 $| +2365473 0 object/static/structure/general/tankfarm_s01.iff 0 1550.29 28.9172 1625.17 0.000000032 0 1 0 $| +2365474 0 object/static/structure/general/tankfarm_s01.iff 0 1552.86 28.3659 1620.85 0.707109 0 -0.707105 0 $| +2365475 0 object/static/installation/mockup_power_generator_photo_bio_style_1.iff 0 1552.46 29.2789 1667.91 0.707109 0 -0.707104 0 $| +2365476 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1579.01 28 1673.02 0.707108 0 -0.707105 0 $| +2365477 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1525 28 1682.88 0.000000032 0 1 0 $| +2365478 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1505.15 28 1643.84 0.707107 0 -0.707106 0 $| +2365479 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1505.05 28 1715.07 0.707108 0 -0.707105 0 $| +2365480 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1469.86 28 1672.87 0.707108 0 -0.707105 0 $| +2365481 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1454.96 28 1641.11 0.707108 0 -0.707105 0 $| +2365482 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1470.78 28 1579.7 0.707107 0 -0.707106 0 $| +2365492 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1456.33 25.7018 1534.18 0.707108 0 -0.707105 0 $| +2365493 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1472.97 25.7018 1517.56 -0.00000184 0 1 0 $| +2365497 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1498.59 28 1555.21 -0.523366 0 0.852108 0 $| +2365498 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1497.48 28 1552.5 0.990901 0 0.13459 0 $| +2365499 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1501.26 28 1555.09 0.774419 0 -0.632673 0 $| +2365500 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1498.32 28 1557.62 0.0142041 0 0.999899 0 $| +2365501 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1511.36 28 1553.09 0.924909 0 0.380188 0 $| +2365502 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1511.56 28 1556.01 0.0257937 0 0.999667 0 $| +2365503 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1508.79 28 1552.36 0.7485 0 0.663135 0 $| +2365504 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1512.38 28 1550.88 0.984726 0 -0.17411 0 $| +2365505 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1493.15 28 1547.08 1 0 0 0 $| +2365506 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1491.24 28 1549.3 0.403919 0 0.914795 0 $| +2365507 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1491.06 28 1545.18 0.917121 0 0.398609 0 $| +2365508 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1495.22 28 1545.02 0.844588 0 -0.535417 0 $| +2365509 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1495.06 28 1548.99 -0.371658 0 0.92837 0 $| +2365510 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1505.03 28 1544.87 0.92388 0 -0.382683 0 $| +2365511 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1502.11 28 1545.09 0.723244 0 0.690592 0 $| +2365512 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1504.9 28 1542.05 0.99985 0 0.0172997 0 $| +2365513 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1507.96 28 1544.88 -0.575402 0 0.817871 0 $| +2365514 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1505.03 28 1547.57 0.0119048 0 0.999929 0 $| +2365515 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1504.27 28 1562.83 -0.220474 0 0.975393 0 $| +2365516 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1505.04 28 1560.01 0.981338 0 -0.19229 0 $| +2365517 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1506.46 28 1564.37 -0.528897 0 0.848686 0 $| +2365518 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1502.59 28 1564.58 0.336032 0 0.94185 0 $| +2365528 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1743.58 28 1523.5 0.92388 0 -0.382683 0 $| +2365529 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1737.5 28 1592.55 0.92388 0 0.382681 0 $| +2365549 0 object/static/structure/general/streetlamp_large_style_01.iff 0 2043.77 28 1809.09 0.707108 0 0.707105 0 $| +2365554 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1940.38 28 1952.38 0.92388 0 -0.382683 0 $| +2365555 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1756.31 28 1963.31 0.92388 0 -0.382683 0 $| +2365556 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1753.4 28 1963.53 0.723242 0 0.690595 0 $| +2365557 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1756.19 28 1960.49 0.99985 0 0.0173 0 $| +2365558 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1759.24 28 1963.32 -0.575402 0 0.817871 0 $| +2365559 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1756.32 28 1966.02 0.011905 0 0.999929 0 $| +2365560 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1767.56 28 1972.53 0.998988 0 -0.0449854 0 $| +2365561 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1765.46 28 1974.57 0.444662 0 0.895698 0 $| +2365562 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1766.46 28 1970.1 0.958244 0 0.285952 0 $| +2365563 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1769.9 28 1971.89 0.819647 0 -0.572869 0 $| +2365564 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1765.59 28 1956.9 0.761613 0 0.648032 0 $| +2365565 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1767.95 28 1957.49 0.296281 0 0.955101 0 $| +2365566 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1770.78 28 1956.74 0.75405 0 -0.656817 0 $| +2365567 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1767.72 28 1960.15 -0.0341967 0 0.999415 0 $| +2365568 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1774.07 28 1984.42 -0.140331 0 0.990105 0 $| +2365569 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1766.56 28 1942.81 0.541233 0 0.840873 0 $| +2365570 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1769.37 28 1943.63 -0.550616 0 0.834758 0 $| +2365571 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1765.69 28 1945.49 0.161196 0 0.986922 0 $| +2365572 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1763.83 28 1941.77 0.907336 0 0.420405 0 $| +2365573 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1767.51 28 1940.27 0.981794 0 -0.189948 0 $| +2365574 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1773.58 28 1982.04 -0.64864 0 0.761095 0 $| +2365575 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1771.7 28 1979.81 0.958244 0 0.285953 0 $| +2365576 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1776.09 28 1981.11 0.862807 0 -0.505533 0 $| +2365577 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1757.8 28 1950.49 -0.5019 0 0.864926 0 $| +2365578 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1755.8 28 1949.11 0.886995 0 -0.46178 0 $| +2365579 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1752.89 28 1948.82 0.780706 0 0.624898 0 $| +2365580 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1756.95 28 1946.7 0.989506 0 -0.144492 0 $| +2365581 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1871.18 28.6017 1939.87 0.7566 0 -0.653878 0 $| +2365582 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1868.71 28.6017 1938.3 0.903767 0 0.428025 0 $| +2365583 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1872.77 28.6017 1937.53 0.954535 0 -0.298097 0 $| +2365584 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1873.53 28.6017 1941.63 -0.288917 0 0.957354 0 $| +2365585 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1869.57 28.6017 1942.04 0.325845 0 0.945423 0 $| +2365586 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1876.18 28 1929.03 0.927395 0 0.374084 0 $| +2365587 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1880.73 28 1929.5 0.906198 0 -0.422854 0 $| +2365588 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1878.45 28 1930.88 0.716797 0 -0.697282 0 $| +2365589 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1879.36 28 1933.13 -0.232066 0 0.9727 0 $| +2365590 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1869.01 28.6321 1953.29 0.329523 0 0.944147 0 $| +2365591 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1870.68 28.6321 1951.52 -0.2272 0 0.973848 0 $| +2365592 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1872.88 28.6321 1953.02 -0.534743 0 0.845015 0 $| +2365593 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1871.41 28.6321 1948.69 0.982642 0 -0.18551 0 $| +2365594 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1849.15 28 2039.58 0.613748 0 0.789502 0 $| +2365595 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1851.54 28 2039.18 0.0956519 0 0.995415 0 $| +2365596 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1852.39 28 2041.71 -0.236929 0 0.971527 0 $| +2365597 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1853.84 28 2037.36 0.871967 0 -0.489565 0 $| +2365598 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1861.56 28.6176 2028.44 0.325845 0 0.945423 0 $| +2365599 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1865.52 28.6176 2028.03 -0.288917 0 0.957354 0 $| +2365600 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1863.17 28.6176 2026.28 0.7566 0 -0.653878 0 $| +2365601 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1860.71 28.6176 2024.71 0.903767 0 0.428025 0 $| +2365602 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1864.76 28.6176 2023.94 0.954535 0 -0.298098 0 $| +2365603 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1814.08 28.636 2028.33 0.325845 0 0.945423 0 $| +2365604 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1818.03 28.636 2027.91 -0.288917 0 0.957354 0 $| +2365605 0 object/tangible/furniture/modern/table_modern_style_01.iff 0 1815.69 28.636 2026.16 0.7566 0 -0.653878 0 $| +2365606 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1813.22 28.636 2024.59 0.903767 0 0.428025 0 $| +2365607 0 object/tangible/furniture/modern/chair_modern_style_01.iff 0 1817.27 28.636 2023.82 0.954535 0 -0.298098 0 $| +3095428 0 object/tangible/terminal/terminal_mission_bounty.iff 0 1824.93 28 1672.48 0.700285 0 0.713864 0 $| +3095430 0 object/tangible/terminal/terminal_mission_bounty.iff 0 1855.19 28 1672.28 -0.703845 0 0.710353 0 $| +3375491 0 object/building/corellia/filler_building_corellia_style_02.iff 0 1987.62 28 1306.8 1 0 0 0 $| +3555361 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1620 28 1917 0.923879 0 0.382684 0 $| +3555363 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1651 28 1762 0.382683 0 0.92388 0 $| +3555365 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1628 28 1739 0.382683 0 0.92388 0 $| +3555371 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1660 28 1877 -0.382684 0 0.923879 0 $| +3555373 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1690 28 1847 -0.382684 0 0.923879 0 $| +3555374 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1707 28 1830 -0.382684 0 0.923879 0 $| +3555375 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1679 28 1790 0.92388 0 -0.382683 0 $| +3555376 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1707 28 1818 0.92388 0 -0.382683 0 $| +3555377 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1665 28 1776 0.382683 0 0.92388 0 $| +3555378 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1696 28 1807 0.92388 0 -0.382683 0 $| +3555379 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1675 28 1862 -0.382683 0 0.92388 0 $| +3555380 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1633.98 28 1903.02 -0.382683 0 0.92388 0 $| +3555381 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1643 28 1894 0.923879 0 0.382684 0 $| +3555382 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1608.53 28 1928.49 0.92388 0 -0.382683 0 $| +3555384 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1605 28 1739 -0.382684 0 0.923879 0 $| +3555385 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1574 28 1894 0.92388 0 -0.382683 0 $| +3555386 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1582 28 1762 -0.382684 0 0.923879 0 $| +3555387 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1590 28 1754 0.92388 0 0.382683 0 $| +3555388 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1550 28 1794 0.92388 0 0.382683 0 $| +3555389 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1529 28 1849 0.382683 0 0.92388 0 $| +3555390 0 object/static/structure/corellia/corl_imprv_gate_sm_s01.iff 0 1560 28 1880 0.92388 0 -0.382683 0 $| +3555391 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1518 28 1838 0.382683 0 0.92388 0 $| +3555392 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1546 28 1866 0.382683 0 0.92388 0 $| +3555393 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1597 28 1917 0.92388 0 -0.382683 0 $| +3555394 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1518 28 1826 0.923879 0 0.382684 0 $| +3555395 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1535 28 1809 0.923879 0 0.382684 0 $| +3555398 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1565 28 1779 0.923879 0 0.382684 0 $| +3555399 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1511.99 28 1832.02 0.92388 0 -0.382683 0 $| +3555400 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1712.98 28 1824.02 0.92388 0 -0.382683 0 $| +3575352 0 object/static/structure/general/bench_generic_style_1.iff 0 1615.63 28 1854.39 -0.000000032 0 1 0 $| +3575353 0 object/static/structure/general/bench_generic_style_1.iff 0 1593.13 28 1847 0.382683 0 0.92388 0 $| +3575354 0 object/static/structure/general/bench_generic_style_1.iff 0 1586.05 28 1827.95 0.707107 0 0.707106 0 $| +3575355 0 object/static/structure/general/bench_generic_style_1.iff 0 1589.14 28 1816.01 0.833272 0 0.552863 0 $| +3575356 0 object/static/structure/general/bench_generic_style_1.iff 0 1617.53 28 1801.94 1 0 0 0 $| +3575357 0 object/static/structure/general/bench_generic_style_1.iff 0 1604.89 28 1801.93 1 0 0 0 $| +3575358 0 object/static/structure/general/bench_generic_style_1.iff 0 1637.99 28 1834.81 0.707107 0 -0.707106 0 $| +3575359 0 object/static/structure/general/bench_generic_style_1.iff 0 1638 28 1822.17 0.707107 0 -0.707106 0 $| +3575360 0 object/static/structure/general/bench_generic_style_1.iff 0 1632.31 28 1848.25 -0.382684 0 0.923879 0 $| +3575361 0 object/static/structure/general/bench_generic_style_1.iff 0 1633.67 28 1809.95 0.92388 0 -0.382683 0 $| +3575362 0 object/static/structure/general/bench_generic_style_1.iff 0 1641.43 28 1862.25 0.707107 0 -0.707106 0 $| +3575363 0 object/static/structure/general/bench_generic_style_1.iff 0 1633.76 28 1862.62 0.707107 0 0.707107 0 $| +3575365 0 object/static/structure/corellia/corl_fountain_statue_contemplate_s01.iff 0 1545.83 28 1836.2 1 0 0 0 $| +3575366 0 object/static/structure/general/bench_generic_style_1.iff 0 1554.2 28 1833.68 0.707107 0 -0.707106 0 $| +3575367 0 object/static/structure/general/bench_generic_style_1.iff 0 1554.14 28 1838.94 0.707111 0 -0.707102 0 $| +3575369 0 object/static/structure/general/bench_generic_style_1.iff 0 1681.05 28 1823.76 0.95813 0 -0.286334 0 $| +3575370 0 object/static/structure/general/bench_generic_style_1.iff 0 1681.58 28 1832.18 -0.412683 0 0.910875 0 $| +3575371 0 object/static/structure/general/bench_generic_style_1.iff 0 1674.21 28 1828.52 0.707107 0 0.707107 0 $| +3575372 0 object/static/structure/general/bench_generic_style_1.iff 0 1631.96 28 1763.02 0.999808 0 0.0196003 0 $| +3575373 0 object/static/structure/general/bench_generic_style_1.iff 0 1633.42 28 1772.28 -0.343272 0 0.939236 0 $| +3575374 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1639.46 28 1750.48 0.382682 0 0.92388 0 $| +3575375 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1678.54 28 1858.48 -0.382684 0 0.923879 0 $| +3575376 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1671.43 28 1865.47 -0.382684 0 0.923879 0 $| +3575377 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1637.52 28 1899.52 -0.382684 0 0.923879 0 $| +3575379 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1585.45 28 1905.52 0.382683 0 0.92388 0 $| +3575380 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1546.57 28 1797.51 0.923879 0 0.382684 0 $| +3575381 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1553.46 28 1790.52 0.923879 0 0.382684 0 $| +3575382 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1593.45 28 1750.52 0.923879 0 0.382684 0 $| +3575383 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1615.94 28 1855.33 -0.0230952 0 0.999733 0 $| +3575384 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1610.57 28 1800.97 0.999924 0 0.0123006 0 $| +3575385 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1634.7 28 1767.62 -0.691163 0 0.722699 0 $| +3575386 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1550.6 28 1842.99 -0.00809712 0 0.999967 0 $| +3575387 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1637.98 28 1866.71 0.00849535 0 0.999964 0 $| +3625774 0 object/static/structure/corellia/corl_tent_med.iff 0 1998.68 28 1475.68 1 0 0 0 $| +3625805 0 object/tangible/furniture/modern/bar_piece_curve_s2.iff 0 1999.32 28 1477.23 1 0 0 0 $| +3625806 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_sordaan_hunting_trophy.iff 0 1995.55 28.3162 1480.08 0.924909 0 -0.380188 0 $| +3625807 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_bantha_kash.iff 0 2003.32 31.9319 1470.89 0.997551 0 0.0699428 0 $| +3625808 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_bolotaur.iff 0 1995.01 30.2888 1471.07 0.9998 0 -0.0199987 0 $| +3625809 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_katarn.iff 0 1998.51 29.1832 1477.71 -0.662042 0.661515 -0.249195 -0.248996 $| +3625810 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_kkorrwrot.iff 0 1994.14 32.1274 1471.25 0.999388 0 -0.0349929 0 $| +3625813 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_minstyngar.iff 0 1999.96 29.1311 1477.71 -0.477403 0.477015 0.521592 0.522 $| +3626014 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_mouf.iff 0 2004.85 30.3105 1470.68 0.998201 0 0.059964 0 $| +3626015 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_uller.iff 0 2003.01 29.6799 1470.91 0.998988 0 0.0449848 0 $| +3626016 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_walluga.iff 0 1992.7 30.5978 1471.1 0.99955 0 -0.0299955 0 $| +3626017 0 object/tangible/furniture/ep3_rewards/ep3_kash_reward_trophy_webweaver.iff 0 1997.62 29.1593 1476.47 0.710914 -0.703279 0 0 $| +3695444 0 object/tangible/sign/all_sign_city_s02.iff 0 1750.88 27.9978 1358.31 -0.000000032 -0.0203968 0.999792 6.53E-10 $| +3695448 0 object/tangible/sign/all_sign_city_s02.iff 0 1826.12 28 1351.73 -0.000000032 0 1 0 $| +3695449 0 object/tangible/sign/all_sign_city_s02.iff 0 1854 28 1306 -0.000000032 0 1 0 $| +3695450 0 object/tangible/sign/all_sign_city_s02.iff 0 1894 28 1306 -0.000000032 0 1 0 $| +3695458 0 object/tangible/sign/all_sign_city_s02.iff 0 1934.89 28 1939.26 1 0 0 0 $| +3695460 0 object/tangible/sign/all_sign_city_s02.iff 0 1737 28 1999.2 1 0 0 0 $| +3695461 0 object/tangible/sign/all_sign_city_s02.iff 0 1611 28 1999.24 1 0 0 0 $| +3695462 0 object/tangible/sign/all_sign_city_s02.iff 0 1526.26 28 1925.81 0.92388 0 -0.382683 0 $| +3695463 0 object/tangible/sign/all_sign_city_s02.iff 0 1487.51 28 1909.28 0.92388 0 -0.382683 0 $| +3695464 0 object/tangible/sign/all_sign_city_s02.iff 0 1479.17 28 1900.75 0.92388 0 -0.382683 0 $| +3695465 0 object/tangible/sign/all_sign_city_s02.iff 0 1454.96 27.9938 1815.02 0.707107 0 -0.707107 0 $| +3695466 0 object/tangible/sign/all_sign_city_s02.iff 0 1453.75 28 1665.99 0.707107 0 -0.707106 0 $| +3695467 0 object/tangible/sign/all_sign_city_s02.iff 0 1453.93 28 1634.03 0.707107 0 -0.707106 0 $| +3695468 0 object/tangible/sign/all_sign_city_s02.iff 0 1507.55 30.5957 1517.45 5.19E-08 0.707107 0.707107 5.19E-08 $| +3695469 0 object/tangible/sign/all_sign_city_s02.iff 0 1522.22 28 1470.98 -0.707107 0 0.707107 0 $| +3695470 0 object/tangible/sign/all_sign_city_s02.iff 0 1541.38 28 1442.69 -0.000000032 0 1 0 $| +3695471 0 object/tangible/sign/all_sign_city_s02.iff 0 1603.2 30.328 1401.02 -0.270598 0.653282 0.653282 -0.270598 $| +4026465 0 object/static/structure/corellia/corl_tent_small.iff 0 1984.02 28 1577.43 1 0 0 0 $| +4026467 0 object/static/creature/corellia_krahbu.iff 0 1987.34 28 1578.9 1 0 0 0 $| +4026468 0 object/static/creature/corellia_bageraset.iff 0 1980.6 28 1578.45 1 0 0 0 $| +4026469 0 object/static/structure/corellia/corl_tent_med.iff 0 1626.14 28 1490.97 1 0 0 0 $| +4026470 0 object/static/structure/general/data_terminal_free_s1.iff 0 1626.81 28 1489.73 0.962425 0 -0.271547 0 $| +4026471 0 object/static/structure/general/data_terminal_free_s2.iff 0 1626.9 28 1491.61 0.707107 0 -0.707106 0 $| +4026473 0 object/static/creature/corellia_durni.iff 0 1625.52 28 1493.69 -0.667463 0 0.744643 0 $| +4026474 0 object/static/creature/corellia_gulingaw.iff 0 1626.19 31.1015 1491.02 0.721382 0 -0.692538 0 $| +4026476 0 object/static/creature/corellia_krahbu.iff 0 1625.52 28 1487.84 0.875175 0 -0.483807 0 $| +4026491 0 object/static/item/item_medic_bacta_tank_advanced.iff 0 2012.6 28 1706.19 -0.327798 0 0.944748 0 $| +4026492 0 object/static/item/item_medic_bacta_tank_advanced.iff 0 2012.68 28 1701 -0.448109 0 0.893979 0 $| +4026493 0 object/static/item/item_medic_bacta_tank.iff 0 2013.91 28 1701.37 0.808345 0 0.588708 0 $| +4026494 0 object/static/item/item_medic_bacta_tank.iff 0 2013.96 28 1706.7 0.89528 0 -0.445505 0 $| +4026495 0 object/static/item/item_medical_console.iff 0 2013.82 28.759 1703.31 1 0 0 0 $| +4026496 0 object/tangible/furniture/all/frn_all_desk_map_table_insert.iff 0 2019.32 28.115 1699.68 1 0 0 0 $| +4026497 0 object/tangible/furniture/all/frn_all_desk_map_table.iff 0 2019.54 28 1699.68 1 0 0 0 $| +4026498 0 object/tangible/furniture/all/frn_all_professor_desk.iff 0 2013.62 28 1702.95 1 0 0 0 $| +4026499 0 object/static/item/item_medic_bag.iff 0 2014.25 28 1700.94 0.63329 0 0.773915 0 $| +4026501 0 object/static/item/item_drall_medicine.iff 0 2013.31 28 1710.69 0.8956 0 0.44486 0 $| +4026502 0 object/static/item/item_drall_medicine.iff 0 2013.27 28 1710.3 0.8956 0 0.44486 0 $| +4026503 0 object/static/item/item_drall_medicine.iff 0 2013.01 28 1710.55 0.8956 0 0.44486 0 $| +4026504 0 object/static/item/item_diagnostic_screen.iff 0 2013.83 28 1710.39 -0.148651 0 0.98889 0 $| +4026506 0 object/static/item/item_tool_sensor_beacon.iff 0 1992.99 28 1575.33 1 0 0 0 $| +4026507 0 object/static/creature/corellia_durni.iff 0 1991.96 28 1576.16 1 0 0 0 $| +4026509 0 object/static/structure/general/droid_21bmedical_powerdown.iff 0 2012.2 28 1710.49 0.667463 0 0.744643 0 $| +4026510 0 object/static/structure/general/camp_tent_s01.iff 0 1542.22 28 1514.44 -0.148651 0 0.98889 0 $| +4026511 0 object/static/structure/general/campfire_fresh.iff 0 1541.43 28 1511.63 1 0 0 0 $| +4026512 0 object/static/structure/general/camp_lawn_chair_s01.iff 0 1543.09 28 1512.14 -0.453596 0 0.891207 0 $| +4026519 0 object/static/item/item_jar_berries.iff 0 1543.18 28.49 1512.13 0.703919 -0.0670742 -0.0670741 0.703918 $| +4026520 0 object/static/item/item_cage_bamboo.iff 0 1988.48 28 1576.1 1 0 0 0 $| +4026521 0 object/building/corellia/filler_block_corellia_32x16_s01.iff 0 2035.12 28 1310.21 0.707107 0 0.707106 0 $| +4026523 0 object/static/structure/tatooine/debris_tatt_drum_dented_1.iff 0 1930.23 28 1353.66 0.801601 0 0.59786 0 $| +4026524 0 object/static/structure/tatooine/debris_tatt_drum_storage_2.iff 0 1929.32 28 1353.39 0.90687 0 0.42141 0 $| +4026525 0 object/static/structure/tatooine/debris_tatt_crate_1.iff 0 1930.8 28 1352.85 0.731689 0 -0.681639 0 $| +4026526 0 object/static/structure/tatooine/debris_tatt_drum_storage_2.iff 0 1931.49 28 1352.08 1 0 0 0 $| +4026528 0 object/static/structure/corellia/corl_tent_small.iff 0 1929.68 28.1265 1351.7 0.440178 0 0.897911 0 $| +4026529 0 object/static/structure/general/prp_junk_s6.iff 0 2014.09 28 1771.47 0.823129 0 -0.567854 0 $| +4026530 0 object/static/structure/general/prp_junk_s8.iff 0 2013.11 28.3222 1773.86 0.188065 0.188065 -0.681638 0.681639 $| +4026534 0 object/static/structure/tatooine/debris_tatt_drum_storage_2.iff 0 2014.5 28 1773.37 0.751806 0 -0.659384 0 $| +4026535 0 object/static/structure/tatooine/debris_tatt_drum_storage_2.iff 0 2013.98 28 1772.92 0.836463 0 -0.548024 0 $| +4475355 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1648.65 28 1888.32 -0.382684 0 0.923879 0 $| +4475356 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1701.35 28 1835.68 -0.382684 0 0.923879 0 $| +4475357 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1690.3 28 1801.35 0.92388 0 -0.382682 0 $| +4475358 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1576.32 28 1767.67 -0.382684 0 0.923879 0 $| +4475359 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1523.68 28 1820.33 -0.382684 0 0.923879 0 $| +4475360 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1534.67 28 1854.66 0.92388 0 -0.382682 0 $| +5405903 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1933.24 33.8503 1815.28 0.000748027 0.342898 -0.000273051 0.939372 $| +5405982 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1985.01 33.9451 1884.97 -0.0131221 0.382645 -0.00543535 0.923786 $| +5406015 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1864.01 33.9451 1634.97 0.0107962 0 0 0.999942 $| +5406016 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1873.32 33.9451 1620.96 -0.000796377 0 0 1 $| +5406074 0 object/static/structure/general/streetlamp_small_style_01.iff 0 2008.97 33.9134 1640.9 -0.000796366 0 0 1 $| +5406154 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1917.36 33.9135 1609.08 0.00409861 0.707095 0.00409861 0.707095 $| +5406165 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1776.16 33.8502 1532.73 -0.00297242 0.7071 -0.0029724 0.707101 $| +5406221 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1774.16 33.9451 1611.39 0.00409863 0.707095 0.00409864 0.707095 $| +5406286 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1811.96 33.9446 1635.01 0.0323716 0.706365 0.0323716 0.706365 $| +5406391 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1878.75 33.9135 1728.81 0.0100431 0.707035 0.0100432 0.707036 $| +5406407 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1795.89 33.9451 1728.72 0.000563112 0.707106 0.000563109 0.707107 $| +5406413 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1761.77 33.9451 1730.72 0.0029724 0.7071 0.0029724 0.707101 $| +5406653 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1745.89 28 1962.3 0.707107 0 0.707106 0 $| +5406662 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1750.01 28 1939.38 0.707107 0 0.707106 0 $| +5406667 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1633.07 28 1906.02 0.92388 0 0.382683 0 $| +5406669 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1635.51 28 1899.76 -0.382683 0 0.92388 0 $| +5406677 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1563.18 28 1881.47 0.382683 0 0.92388 0 $| +5406688 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1484.62 33.9411 1903.77 0.000305 0.923879 0.000736 0.382683 $| +5406703 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1454.97 27.969 1816.99 -0.707107 0 0.707107 0 $| +5406712 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1511.5 33.9451 1517.6 -0.000563257 0.000000116 0.000563438 0.999999 $| +5406716 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1477.05 28 1539.04 -0.382683 0 0.92388 0 $| +5406720 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1463.08 28 1525.04 0.92388 0 0.382683 0 $| +5406722 0 object/static/structure/general/streetlamp_large_style_02.iff 0 1505 28 1553.02 1 0 0 0 $| +5406725 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1543.98 33.9135 1445.13 0.000563438 0.999999 0.000563257 -0.000000169 $| +5406731 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1523.97 33.9451 1465.04 0.000563438 0.999999 0.000563257 -0.000000169 $| +5406775 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1524.06 33.9451 1477.01 0.000563 0.999999 0.000563 0 $| +5406779 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1543.95 33.9451 1496.97 0.000563 0.999999 0.000563 0 $| +5406790 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1606.06 33.9432 1398.29 0.000304693 0.923879 0.000735595 0.382683 $| +5406794 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1630.01 33.9451 1477.99 0.000563 0.999999 0.000563 0 $| +5406808 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1668 33.9841 1500.04 0.000563 0.999999 0.000563 0 $| +5406817 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1700.58 33.9451 1440.03 0.000563 0.999999 0.000563 0 $| +5406819 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1737.97 33.9135 1461.99 0.000563 0.999999 0.000563 0 $| +5406836 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1746.43 33.9451 1360.46 0.000563 0.999999 0.000563 0 $| +5406853 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1610.4 28 1997.97 1 0 0 0 $| +5406854 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1738.6 28 1998.69 1 0 0 0 $| +5407012 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1798.69 28 1477.59 -0.382683 0 0.92388 0 $| +5407014 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1780.55 28 1484.47 0.382684 0 0.923879 0 $| +5407029 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1787.68 28 1399.94 0.382683 0 0.92388 0 $| +5407031 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1698.4 28 1555.92 -0.382683 0 0.92388 0 $| +5407034 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1737.3 28 1555.67 0.382683 0 0.92388 0 $| +5407036 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1750.59 28 1626.71 -0.382683 0 0.92388 0 $| +5407037 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1750.61 28 1671.57 0.92388 0 -0.382683 0 $| +5407038 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1739.43 28 1708.82 0.382683 0 0.92388 0 $| +5407039 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1739.64 28 1739.57 0.92388 0 0.382683 0 $| +5407041 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1800.16 28 1857.46 0.382683 0 0.92388 0 $| +5407042 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1755.59 28 1857.58 -0.382683 0 0.92388 0 $| +5407045 0 object/static/structure/general/streetlamp_medium_style_01.iff 0 1769.91 28 1976.73 0.92388 0 -0.382683 0 $| +5407046 0 object/static/structure/general/streetlamp_medium_style_01.iff 0 1769.99 28 1951.01 0.707107 0 -0.707107 0 $| +5407047 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1796.33 28 1909.27 0.92388 0 0.382683 0 $| +5407049 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1957.2 28 1900.39 0.92388 0 0.382683 0 $| +5515363 0 object/static/structure/general/streetlamp_large_style_01.iff 0 2005.43 28 1873.22 1 0 0 0 $| +5515402 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1899.91 28 1719.16 0.92388 0 0.382683 0 $| +5515406 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1802.31 28 1667.24 0.92388 0 0.382683 0 $| +5515408 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1891.68 28 1668.87 0.707107 0 -0.707106 0 $| +5515411 0 object/static/structure/general/streetlamp_small_blue_style_01.iff 0 1838.03 36.4433 1613.38 -0.0040986 0.707095 -0.0040986 0.707095 $| +5515432 0 object/static/structure/general/streetlamp_small_blue_style_01.iff 0 1772.44 34.7309 1441.9 0.500199 0.499801 0.500199 0.499801 $| +5515434 0 object/static/structure/general/streetlamp_small_red_style_01.iff 0 1669.72 28 1578.9 1 0 0 0 $| +5535352 0 object/static/structure/general/streetlamp_small_red_style_01.iff 0 1610.13 28 1566.88 1 0 0 0 $| +5535353 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1642.98 33.9451 1709.99 -0.00850288 0.382667 -0.00352199 0.92384 $| +5625467 0 object/tangible/terminal/terminal_bazaar.iff 0 1992.48 28.6 1522.7 1 0 0 0 $| +5625468 0 object/tangible/terminal/terminal_bazaar.iff 0 1970.41 28.6 1544.66 0.707107 0 0.707106 0 $| +5625469 0 object/tangible/terminal/terminal_bazaar.iff 0 1992.66 28.6 1566.69 -0.000000032 0 1 0 $| +5625470 0 object/tangible/terminal/terminal_bazaar.iff 0 2014.4 28.6 1544.63 0.707107 0 -0.707106 0 $| +6035541 0 object/building/corellia/filler_block_corellia_32x16_s01.iff 0 1939.92 28 1322.56 0.978031 0 0.20846 0 $| +6035547 0 object/static/structure/corellia/corl_imprv_arch_lg_s01.iff 0 1943.82 28 1479.36 0.958244 0 0.285952 0 $| +6035548 0 object/building/corellia/filler_block_corellia_32x16_s01.iff 0 1821.38 28 1440.56 1 0 0 0 $| +6035556 0 object/tangible/instrument/nalargon.iff 0 1869.79 28 1403.71 1 0 0 0 $| +6035557 0 object/tangible/microphone/microphone.iff 0 1873.11 28 1405.48 1 0 0 0 $| +6035558 0 object/tangible/instrument/ommni_box.iff 0 1876.55 28 1403.42 1 0 0 0 $| +6035560 0 object/tangible/speaker/speaker.iff 0 1879.67 28 1405.43 0.92388 0 0.382683 0 $| +6035561 0 object/tangible/speaker/speaker.iff 0 1866.42 28 1405.59 0.92388 0 -0.382683 0 $| +6035566 0 object/tangible/terminal/terminal_mission.iff 0 1915.54 28 1436.27 0.755095 0 -0.655615 0 $| +6035568 0 object/static/structure/tatooine/antenna_tatt_style_2.iff 0 1922.16 28 1444.03 0.995491 0 0.0948572 0 $| +6035569 0 object/static/structure/tatooine/antenna_tatt_style_2.iff 0 1916.23 28 1396.24 0.996802 0 0.0799146 0 $| +6035570 0 object/static/structure/corellia/corl_fountain_rectangle_s01.iff 0 1873 28 1435 1 0 0 0 $| +6035571 0 object/tangible/furniture/all/frn_bench_generic.iff 0 1869 28 1435 0.707107 0 -0.707106 0 $| +6035572 0 object/tangible/furniture/all/frn_bench_generic.iff 0 1873 28 1440 1 0 0 0 $| +6035573 0 object/tangible/furniture/all/frn_bench_generic.iff 0 1877 28 1435 0.707107 0 0.707106 0 $| +6035574 0 object/tangible/furniture/all/frn_bench_generic.iff 0 1873 28 1430 -0.000000032 0 1 0 $| +6035575 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1876.99 28 1438.96 0.707107 0 0.707106 0 $| +6035577 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1869.01 28 1439.01 -0.707107 0 0.707107 0 $| +6035579 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1914.18 28 1426.59 0.758362 0 -0.651834 0 $| +6035580 0 object/static/structure/general/streetlamp_large_style_01.iff 0 1912.7 28 1415.51 0.758361 0 -0.651835 0 $| +6035586 0 object/static/structure/general/streetlamp_small_blue_style_02.iff 0 1879.89 28 1401.14 1 0 0 0 $| +6035597 0 object/static/item/item_medic_bacta_tank.iff 0 1877.59 28 1453.99 -0.144901 0 0.989446 0 $| +6035598 0 object/static/item/item_medic_bacta_tank_advanced.iff 0 1877.3 28 1452.52 0.876362 0 0.481652 0 $| +6035599 0 object/static/item/item_medic_bacta_tank_advanced.iff 0 1876.73 28 1453.23 -0.232177 0 0.972674 0 $| +6035600 0 object/static/structure/corellia/corl_imprv_wall_4x32_s02.iff 0 1873 26.57 1456 1 0 0 0 $| +6035601 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1857 26.57 1448 0.707108 0 0.707105 0 $| +6035602 0 object/static/structure/corellia/corl_imprv_wall_4x16_s02.iff 0 1889 26.57 1448 0.707108 0 0.707105 0 $| +6035603 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1857 28 1440 1 0 0 0 $| +6035604 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1889 28 1440 1 0 0 0 $| +6035605 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1889 28 1456 1 0 0 0 $| +6035606 0 object/static/structure/corellia/corl_imprv_column_s02.iff 0 1857 28 1456 1 0 0 0 $| +6035607 0 object/tangible/crafting/station/public_food_station.iff 0 1884.42 28 1453.67 0.000000411 0 1 0 $| +6035609 0 object/tangible/crafting/station/public_weapon_station.iff 0 1859 28 1451 0.707107 0 0.707106 0 $| +6035611 0 object/tangible/crafting/station/public_clothing_station.iff 0 1863 28 1454 0.707107 0 -0.707106 0 $| +6035612 0 object/tangible/crafting/station/public_structure_station.iff 0 1887 28 1450 0.707107 0 -0.707106 0 $| +6035616 0 object/static/structure/dantooine/dant_rack_spears.iff 0 1885.48 28 1388.23 1 0 0 0 $| +6035617 0 object/static/structure/dantooine/dant_rack_spears.iff 0 1881.11 28 1388.13 0.96639 0 0.257081 0 $| +6476154 0 object/tangible/terminal/terminal_mission_artisan.iff 0 1914.62 28 1429.66 0.76161 0 -0.648035 0 $| +6476156 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1912.13 28 1412.13 0.758102 0 -0.652136 0 $| +6476162 0 object/tangible/terminal/terminal_mission_scout.iff 0 1911.24 28 1407.36 0.758102 0 -0.652136 0 $| +6476168 0 object/tangible/terminal/terminal_mission_artisan.iff 0 1677.41 28 1615 0.707107 0 -0.707106 0 $| +6476170 0 object/tangible/terminal/terminal_mission_artisan.iff 0 1677.41 28 1617 0.707107 0 -0.707106 0 $| +6476172 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1690.1 28 1604.88 -0.000000032 0 1 0 $| +6476174 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1688.1 28 1604.88 -0.000000032 0 1 0 $| +6476176 0 object/tangible/terminal/terminal_mission_scout.iff 0 1717.46 28 1699.91 1 0 0 0 $| +6476178 0 object/tangible/terminal/terminal_mission_scout.iff 0 1719.46 28 1699.91 1 0 0 0 $| +6476180 0 object/tangible/terminal/terminal_mission_scout.iff 0 1820.69 28 1769.6 0.707107 0 0.707106 0 $| +6476182 0 object/tangible/terminal/terminal_mission_scout.iff 0 1820.85 28 1738.61 0.707107 0 0.707106 0 $| +6476184 0 object/tangible/terminal/terminal_mission_artisan.iff 0 1855.32 28 1740.65 0.707107 0 -0.707107 0 $| +6476186 0 object/tangible/terminal/terminal_mission_artisan.iff 0 1855.29 28 1767.25 0.707107 0 -0.707106 0 $| +6476188 0 object/tangible/terminal/terminal_mission_scout.iff 0 1560.16 28.9263 1478.95 0.932327 0 -0.361615 0 $| +6476190 0 object/tangible/terminal/terminal_mission_scout.iff 0 1560.19 28.9803 1462.87 -0.376297 0 0.926499 0 $| +6476192 0 object/tangible/terminal/terminal_mission_artisan.iff 0 1819.38 28 1800.18 -0.000000032 0 1 0 $| +6476194 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1821.03 28 1799.73 -0.000000032 0 1 0 $| +6476196 0 object/tangible/terminal/terminal_mission_scout.iff 0 1817.24 28 1799.94 -0.000000032 0 1 0 $| +6476198 0 object/tangible/terminal/terminal_mission_artisan.iff 0 1857.03 28 1799.91 -7.41E-08 0 1 0 $| +6476200 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1854.96 28 1799.54 -7.41E-08 0 1 0 $| +6476202 0 object/tangible/terminal/terminal_mission_scout.iff 0 1858.98 28 1799.73 -7.41E-08 0 1 0 $| +6476204 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1811.3 28.5779 1988.55 0.707108 0 -0.707106 0 $| +6476206 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1811.3 28.5779 1986.55 0.707107 0 -0.707106 0 $| +6476208 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1811.3 28.5779 1984.55 0.707107 0 -0.707106 0 $| +6476210 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1867.48 28.591 1978.97 0.707107 0 0.707107 0 $| +6476212 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1867.48 28.591 1976.97 0.707105 0 0.707108 0 $| +6476214 0 object/tangible/terminal/terminal_mission_entertainer.iff 0 1867.48 28.591 1974.97 0.707105 0 0.707108 0 $| +6625527 0 object/soundobject/soundobject_city_crowd_sentients_large.iff 0 2046.16 28 1468.47 1 0 0 0 $| +6625529 0 object/soundobject/soundobject_city_crowd_sentients_large.iff 0 1950.48 28 1531.22 1 0 0 0 $| +6625531 0 object/soundobject/soundobject_city_crowd_sentients.iff 0 1941.49 28 1607.37 1 0 0 0 $| +6625532 0 object/soundobject/soundobject_city_crowd_sentients_large.iff 0 2010.27 28 1616.48 1 0 0 0 $| +6625533 0 object/soundobject/soundobject_city_crowd_small.iff 0 1882.34 28 1589.61 1 0 0 0 $| +6625540 0 object/soundobject/soundobject_city_crowd_sentients_large.iff 0 1741.2 28 1534.4 1 0 0 0 $| +6625543 0 object/soundobject/soundobject_city_crowd_sentients_large.iff 0 2026.11 28 1719.46 1 0 0 0 $| +6625545 0 object/soundobject/soundobject_city_crowd_sentients_large.iff 0 1838.46 28 2041.09 1 0 0 0 $| +7125370 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1766.68 28 1735.7 1 0 0 0 $| +7125380 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1886 28 1776 0.707107 0 0.707106 0 $| +7125381 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1909.84 28 1735.85 1 0 0 0 $| +7125382 0 object/tangible/crafting/station/public_food_station.iff 0 1907 28 1741 0.707107 0 0.707106 0 $| +7125383 0 object/tangible/crafting/station/public_food_station.iff 0 1906.61 28 1750.01 0.707107 0 0.707107 0 $| +7125384 0 object/tangible/crafting/station/public_food_station.iff 0 1907 28 1757 0.707107 0 0.707107 0 $| +7125385 0 object/tangible/crafting/station/public_food_station.iff 0 1907 28 1766 0.707107 0 0.707107 0 $| +7125386 0 object/tangible/crafting/station/public_clothing_station.iff 0 1901 28 1773 0.707107 0 0.707106 0 $| +7125387 0 object/tangible/crafting/station/public_clothing_station.iff 0 1891 28 1773 0.707107 0 0.707107 0 $| +7125388 0 object/tangible/crafting/station/public_clothing_station.iff 0 1899 28 1779 -0.707107 0 0.707107 0 $| +7125389 0 object/tangible/crafting/station/public_clothing_station.iff 0 1893 28 1779 -0.707107 0 0.707107 0 $| +7335359 0 object/soundobject/soundobject_city_crowd_sentients_large.iff 0 1835.85 28 1708.92 1 0 0 0 $| +7335372 0 object/soundobject/soundobject_city_crowd_small.iff 0 1698.3 28 1722.93 1 0 0 0 $| +7335383 0 object/soundobject/soundobject_city_crowd_small.iff 0 1658.24 28 1652.55 1 0 0 0 $| +7335462 0 object/soundobject/soundobject_city_crowd_medium.iff 0 1767.77 28 1950.1 1 0 0 0 $| +7615528 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1893.96 34.0399 1485.58 -0.000000032 1 0 0 $| +7615529 0 object/static/structure/general/streetlamp_small_style_01.iff 0 1943.86 34.0216 1479.33 0 0.883413 0 0.468594 $| +7755369 0 object/tangible/furniture/all/frn_bench_generic.iff 0 1716 28 1499 -0.000000032 0 1 0 $| +7755370 0 object/tangible/furniture/all/frn_bench_generic.iff 0 1720 28 1499 -0.000000032 0 1 0 $| +7755371 0 object/tangible/furniture/all/frn_bench_generic.iff 0 1724 28 1499 -0.000000032 0 1 0 $| +7755372 0 object/tangible/terminal/terminal_bazaar.iff 0 1708 28 1500 0.707107 0 0.707106 0 $| +7755373 0 object/tangible/terminal/terminal_bank.iff 0 1738 28 1501.35 1 0 0 0 $| +7755374 0 object/tangible/terminal/terminal_bank.iff 0 1705.98 28 1501.57 1 0 0 0 $| +7755375 0 object/tangible/terminal/terminal_bazaar.iff 0 1736 28 1500 0.707107 0 -0.707106 0 $| +7755378 0 object/static/structure/general/streetlamp_large_style_02.iff 0 1713.8 28 1499.05 1 0 0 0 $| +7755379 0 object/static/structure/general/streetlamp_large_style_02.iff 0 1726.15 28 1499.05 1 0 0 0 $| +8105493 0 object/building/corellia/cantina_corellia.iff 0 1705.47 28 1649.5 0.707106 0 0.707107 0 structure.municipal.cantina $| +8105494 8105493 object/cell/cell.iff 1 0 0 0 1 0 0 0 $| +8105495 8105493 object/cell/cell.iff 2 0 0 0 1 0 0 0 $| +8105496 8105493 object/cell/cell.iff 3 0 0 0 1 0 0 0 $| +8105497 8105493 object/cell/cell.iff 4 0 0 0 1 0 0 0 $| +8105498 8105493 object/cell/cell.iff 5 0 0 0 1 0 0 0 $| +8105499 8105493 object/cell/cell.iff 6 0 0 0 1 0 0 0 $| +8105500 8105493 object/cell/cell.iff 7 0 0 0 1 0 0 0 $| +8105501 8105493 object/cell/cell.iff 8 0 0 0 1 0 0 0 $| +8105502 8105493 object/cell/cell.iff 9 0 0 0 1 0 0 0 $| +9766882 8105502 object/tangible/poi/spawnegg/interior_spawnegg.iff 9 -6.8 -0.9 22.4 1 0 0 0 intRandomYaw|0|1|$| +8105503 8105493 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| +8105504 8105493 object/cell/cell.iff 11 0 0 0 1 0 0 0 $| +-11 8105504 object/tangible/npc/rebel_recruiter_spawner.iff 11 -28.5 -0.9 -1.3 0.707107 0 0.707106 0 $| +1487877 8105504 object/tangible/terminal/terminal_mission_rebel.iff 11 -28.83578 -0.894985 -2.352153 1 0 0 0 $| +1487879 8105504 object/tangible/terminal/terminal_mission_rebel.iff 11 -28.77948 -0.894984 3.342379 -0.000000032 0 1 0 $| +8105505 8105493 object/cell/cell.iff 12 0 0 0 1 0 0 0 $| +514454263 8105505 object/tangible/collection/hanging_light_02_07.iff 12 -19.5621 3.01775 15.3171 1 0 0 0 $| +8105506 8105493 object/cell/cell.iff 13 0 0 0 1 0 0 0 $| +4610432 8105506 object/tangible/collection/rare_pistol_blackhand.iff 13 -30.3611 0.090695 12.7987 0.592996 0.404178 0.400115 0.570003 $| +8105507 8105493 object/cell/cell.iff 14 0 0 0 1 0 0 0 $| +8105508 8105493 object/cell/cell.iff 15 0 0 0 1 0 0 0 $| +8105629 0 object/soundobject/soundobject_starport_exterior.iff 0 2033.67 28 1402.12 0.917121 0 0.39861 0 $| +8105630 0 object/soundobject/soundobject_starport_exterior.iff 0 1986.26 28 1436.73 0.917121 0 0.39861 0 $| +8156055 0 object/static/structure/general/streetlamp_large_blue_style_01.iff 0 1693.75 28 1603.27 -0.382683 0 0.92388 0 $| +8156056 0 object/static/structure/general/streetlamp_large_blue_style_01.iff 0 1702.97 28 1598.57 -0.000000032 0 1 0 $| +8156057 0 object/static/structure/general/streetlamp_large_blue_style_01.iff 0 1693.83 28 1699.32 1 0 0 0 $| +8156058 0 object/static/structure/general/streetlamp_large_blue_style_01.iff 0 1683.98 28 1699.21 1 0 0 0 $| +8156092 0 object/static/structure/corellia/corl_imprv_arch_sm_s01.iff 0 1789.91 28 1775.89 -0.707107 0 0.707107 0 $| +8156096 0 object/tangible/terminal/terminal_mission.iff 0 1715.61 28 1699.77 1 0 0 0 $| +8156098 0 object/tangible/terminal/terminal_mission.iff 0 1713.6 28 1699.77 1 0 0 0 $| +8156100 0 object/static/structure/corellia/corl_tent_med.iff 0 1703.42 28 1698.86 0.707107 0 0.707106 0 $| +8156102 0 object/static/item/item_container_inorganic_minerals.iff 0 1701.32 28 1698.43 0.952334 0 -0.305059 0 $| +8156103 0 object/static/item/item_container_organic_food.iff 0 1700.35 28 1700.12 1 0 0 0 $| +8156104 0 object/static/item/item_container_organic_food.iff 0 1700.71 28 1699.67 1 0 0 0 $| +8156105 0 object/static/item/item_container_inorganic_gas.iff 0 1702.89 28 1697.74 1 0 0 0 $| +8156106 0 object/static/item/item_container_energy_liquid.iff 0 1702.79 28 1698.58 1 0 0 0 $| +8156107 0 object/static/item/item_container_energy_liquid.iff 0 1702.42 28 1698.52 1 0 0 0 $| +8215863 0 object/building/corellia/salon_corellia.iff 0 1681.31 28.2635 1446.53 -0.000000032 0 1 0 $| +8675757 0 object/static/structure/corellia/corl_imprv_flagpole_s01.iff 0 1822.76 37.565 1629.27 1 0 0 0 $| +8675758 0 object/static/structure/corellia/corl_imprv_flagpole_s01.iff 0 1853.27 37.565 1629.26 1 0 0 0 $| +8675759 0 object/static/structure/corellia/corl_imprv_flagpole_s01.iff 0 1733.68 37.3083 1512.15 1 0 0 0 $| +8675760 0 object/static/structure/corellia/corl_imprv_bannerpole_s01.iff 0 1776.93 29.6051 1444.89 1 0 0 0 $| +8675761 0 object/static/structure/corellia/corl_imprv_bannerpole_s01.iff 0 1767.89 29.6051 1444.85 1 0 0 0 $| +8675762 0 object/static/structure/corellia/corl_imprv_bannerpole_s01.iff 0 1833.47 29.5094 1803.19 1 0 0 0 $| +8675763 0 object/static/structure/corellia/corl_imprv_bannerpole_s01.iff 0 1842.44 29.5094 1803.2 1 0 0 0 $| +8675765 0 object/static/structure/corellia/corl_imprv_flagpole_s01.iff 0 1484.58 35.3129 1903.75 1 0 0 0 $| +8675767 0 object/static/structure/corellia/corl_imprv_flagpole_s01.iff 0 2021.75 31.5854 1544.59 1 0 0 0 $| +8675768 0 object/static/structure/corellia/corl_imprv_flagpole_s01.iff 0 1963.06 31.5724 1544.8 1 0 0 0 $| +8675769 0 object/static/structure/corellia/corl_imprv_bannerpole_s01.iff 0 1986.25 28 1444.64 0.990901 0 -0.13459 0 $| +8675770 0 object/static/structure/corellia/corl_imprv_bannerpole_s01.iff 0 2003.41 28 1445.68 0.991562 0 0.129635 0 $| +9555352 0 object/static/flora/flora_tree_rori_windswept_s00.iff 0 1811.59 28 1671.09 1 0 0 0 $| +9555353 0 object/static/flora/flora_tree_rori_windswept_s00.iff 0 1814.91 28 1677.38 1 0 0 0 $| +9825673 0 object/static/structure/general/skeleton_human_headandbody.iff 0 290.855 0.195961 556.204 0.202787 0 0.979223 0 $| +9825684 0 object/static/structure/general/skeleton_human_headandbody.iff 0 296.485 0.760898 574.658 1 0 0 0 $| +9825685 0 object/static/structure/general/skeleton_human_headandbody.iff 0 302.396 1.91035 549.391 0.827336 -0.0175209 0.554878 0.0855467 $| +9825686 0 object/static/structure/general/skeleton_human_headandbody.iff 0 310.041 2.99458 570.525 1 0 0 0 $| +9825687 0 object/static/structure/general/skeleton_human_headandbody.iff 0 292.615 0.411037 545.285 0.998738 -0.00499373 0.000249895 0.0499786 $| +9825688 0 object/static/structure/general/skeleton_human_headandbody.iff 0 291.087 0.19285 549.56 0.737352 0.0405953 -0.673268 0.0370671 $| +9825692 0 object/static/structure/general/skeleton_human_headandbody.iff 0 297.564 1.08868 540.706 -0.572939 -0.169071 0.801443 -0.0290591 $| +9825694 0 object/static/structure/corellia/corl_imprv_column_s03.iff 0 279.231 -1.30208 545.642 -0.65859 0.0487988 0.749694 -0.0428687 $| +9825700 0 object/static/structure/corellia/corl_imprv_column_s03.iff 0 279.788 -1.14528 557.855 -0.627132 -0.206947 0.676222 -0.326501 $| +9825703 0 object/static/structure/corellia/corl_imprv_wall_4x16_s03.iff 0 267.643 -4.61372 548.091 0.669337 -0.158811 0.710186 -0.149677 $| +9825716 0 object/static/structure/general/campfire_fresh.iff 0 294.495 1.06328 552.276 1 0 0 0 $| +9825717 0 object/static/item/item_bowl_shallow.iff 0 294.517 0.717 552.251 1 0 0 0 $| +2115951 0 object/building/corellia/filler_slum_24x16_s01.iff 0 1765.21 28 2008.95 0.707107 0 0.707107 0 $| +2115953 0 object/building/corellia/filler_slum_24x16_s02.iff 0 1757.14 28 1994.07 -0.707107 0 0.707107 0 $| +2365494 0 object/building/corellia/filler_slum_24x16_s02.iff 0 1485 28 1561.92 0.707108 0 -0.707105 0 $| +4026531 0 object/static/structure/general/droid_r5_torso.iff 0 2012.64 28 1771.15 -0.0264239 0 0.999651 0 $| +4026532 0 object/static/structure/general/droid_repairdroidtorso.iff 0 2011.94 28 1770.73 -0.312988 0 0.949757 0 $| +4026533 0 object/static/structure/general/droid_r3_head.iff 0 2012.34 27.2962 1770.79 0.956802 -0.29074 0 0 $| +164392 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 296.567383 1.015901566 549.715332 1 0 0 0 $| +5275512 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1996.9339 28 1480.68 1 0 0 0 $| +1211507 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1754.27 28 1482.44 1 0 0 0 $| +1211538 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1872.56 28 1698.85 1 0 0 0 $| +1211562 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1521.08 3.1 1093.45 1 0 0 0 $| +1211563 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1516.17 2.29 1088.36 1 0 0 0 $| +1211572 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1543.27 2.97 1058.79 1 0 0 0 $| +1211573 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1531.74 2.05 1055.59 1 0 0 0 $| +1211574 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1522.41 3.88 1127.54 1 0 0 0 $| +1211575 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1501.12 2.09 1120.41 1 0 0 0 $| +1211576 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1503.23 0.38 1074.9 1 0 0 0 $| +1211577 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1570.2 25.9 1105.48 1 0 0 0 $| +1211578 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1550.72 8.15 1159.73 1 0 0 0 $| +1211579 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1491.68 3.49 1171.71 1 0 0 0 $| +1211580 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1594.57 11.81 1143.14 1 0 0 0 $| +1211588 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1902.73 34.25 1127.54 1 0 0 0 $| +1211589 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1898.43 34.7 1122.34 1 0 0 0 $| +1211590 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1882.08 33.93 1138.54 1 0 0 0 $| +1211591 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1916.2 34.17 1107.76 1 0 0 0 $| +1211592 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1890.72 35.89 1095.53 1 0 0 0 $| +1211593 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1915.15 31.27 1151.5 1 0 0 0 $| +1211599 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1970.92 29.24 1160.6 1 0 0 0 $| +1211600 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1967.01 30.12 1156.21 1 0 0 0 $| +1211601 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1976.61 28.33 1181.23 1 0 0 0 $| +1211602 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1978.34 28.8 1131.74 1 0 0 0 $| +1211603 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1947.21 32.05 1129.31 1 0 0 0 $| +1211604 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1949.86 28.36 1180.29 1 0 0 0 $| +1211610 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1972.61 28.95 1074.3 1 0 0 0 $| +1211611 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1968.87 29.54 1069.48 1 0 0 0 $| +1211613 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1988.13 23.51 1043.7 1 0 0 0 $| +1211614 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1939.85 31.61 1044.88 1 0 0 0 $| +1211615 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 1934.64 32.16 1089.62 1 0 0 0 $| +164639 0 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 0 1910 28 1425 0 0 -1 0 $| +164640 0 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 0 1909 28 1425 0 0 -1 0 $| +164641 0 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 0 1911 28 1425 0 0 -1 0 $| +3375636 0 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 0 1870 28 1454 0 0 1 0 $| +-1 0 object/tangible/spawning/static_npc/herald_corellia_02_karin.iff 0 1864 28 1684 0 0 1 0 $| +-3 0 object/tangible/npc/corellia_spawn/kirkin_liawoon.iff 0 1871 28 1646 0.707106781 0 0.707106781 0 $| +-4 0 object/tangible/npc/corellia_spawn/dannik_malaan.iff 0 1666 28 1601 0.7071067812 0 0.7071067812 0 $| +-9 0 object/tangible/spawning/static_npc/death_watch_herald_rebel.iff 0 1834.74 28 1698.74 1 0 0 0 $| +-10 0 object/tangible/spawning/static_npc/herald_corellia_rogue_corsec.iff 0 1845.86 28 1639.68 1 0 0 0 $| From 86c0dfab2fd291096e5c68295154d4ee7f750ab6 Mon Sep 17 00:00:00 2001 From: IrishDarkshadow Date: Tue, 12 May 2020 08:13:59 -0400 Subject: [PATCH 12/13] moves coronet reb recruiter from objid -11 to -14 to allow Captain Gilad Pallaeon to spawn using objid -11 --- .../game/datatables/buildout/corellia/corellia_4_2_ws.tab | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sku.0/sys.server/compiled/game/datatables/buildout/corellia/corellia_4_2_ws.tab b/sku.0/sys.server/compiled/game/datatables/buildout/corellia/corellia_4_2_ws.tab index 886537729..c28c5b393 100755 --- a/sku.0/sys.server/compiled/game/datatables/buildout/corellia/corellia_4_2_ws.tab +++ b/sku.0/sys.server/compiled/game/datatables/buildout/corellia/corellia_4_2_ws.tab @@ -1158,7 +1158,7 @@ i i h i f f f f f f f s p 9766882 8105502 object/tangible/poi/spawnegg/interior_spawnegg.iff 9 -6.8 -0.9 22.4 1 0 0 0 intRandomYaw|0|1|$| 8105503 8105493 object/cell/cell.iff 10 0 0 0 1 0 0 0 $| 8105504 8105493 object/cell/cell.iff 11 0 0 0 1 0 0 0 $| --11 8105504 object/tangible/npc/rebel_recruiter_spawner.iff 11 -28.5 -0.9 -1.3 0.707107 0 0.707106 0 $| +-14 8105504 object/tangible/npc/rebel_recruiter_spawner.iff 11 -28.5 -0.9 -1.3 0.707107 0 0.707106 0 $| 1487877 8105504 object/tangible/terminal/terminal_mission_rebel.iff 11 -28.83578 -0.894985 -2.352153 1 0 0 0 $| 1487879 8105504 object/tangible/terminal/terminal_mission_rebel.iff 11 -28.77948 -0.894984 3.342379 -0.000000032 0 1 0 $| 8105505 8105493 object/cell/cell.iff 12 0 0 0 1 0 0 0 $| From aff5b687d95da6369f4c62c013c352abc818d4aa Mon Sep 17 00:00:00 2001 From: BloodCommando <49352765+BloodCommando@users.noreply.github.com> Date: Wed, 13 May 2020 13:00:09 -0400 Subject: [PATCH 13/13] Fixed Customization Issues with WoD Hair Styles (#2) Fixes the 3 WoD hairstyles to now correctly use the hue-able versions found in the client. --- .../object/tangible/hair/human/shared_hair_human_female_s44.tpf | 2 +- .../object/tangible/hair/human/shared_hair_human_female_s45.tpf | 2 +- .../object/tangible/hair/human/shared_hair_human_female_s46.tpf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sku.0/sys.shared/compiled/game/object/tangible/hair/human/shared_hair_human_female_s44.tpf b/sku.0/sys.shared/compiled/game/object/tangible/hair/human/shared_hair_human_female_s44.tpf index 1f29026ca..8e5a03e80 100755 --- a/sku.0/sys.shared/compiled/game/object/tangible/hair/human/shared_hair_human_female_s44.tpf +++ b/sku.0/sys.shared/compiled/game/object/tangible/hair/human/shared_hair_human_female_s44.tpf @@ -1,5 +1,5 @@ @base object/tangible/hair/human/base/shared_hair_human_female_base.iff @class tangible_object_template 3 @class object_template 0 -appearanceFilename = "appearance/sing_mt_clan_hair_s01.sat" +appearanceFilename = "appearance/sing_mt_clan_hair_s01_hue.sat" portalLayoutFilename = "" \ No newline at end of file diff --git a/sku.0/sys.shared/compiled/game/object/tangible/hair/human/shared_hair_human_female_s45.tpf b/sku.0/sys.shared/compiled/game/object/tangible/hair/human/shared_hair_human_female_s45.tpf index 96b384509..69a3fe672 100755 --- a/sku.0/sys.shared/compiled/game/object/tangible/hair/human/shared_hair_human_female_s45.tpf +++ b/sku.0/sys.shared/compiled/game/object/tangible/hair/human/shared_hair_human_female_s45.tpf @@ -1,5 +1,5 @@ @base object/tangible/hair/human/base/shared_hair_human_female_base.iff @class tangible_object_template 3 @class object_template 0 -appearanceFilename = "appearance/sing_mt_clan_hair_s02.sat" +appearanceFilename = "appearance/sing_mt_clan_hair_s02_hue.sat" portalLayoutFilename = "" \ No newline at end of file diff --git a/sku.0/sys.shared/compiled/game/object/tangible/hair/human/shared_hair_human_female_s46.tpf b/sku.0/sys.shared/compiled/game/object/tangible/hair/human/shared_hair_human_female_s46.tpf index 9f9cceb3b..2a947dfdb 100755 --- a/sku.0/sys.shared/compiled/game/object/tangible/hair/human/shared_hair_human_female_s46.tpf +++ b/sku.0/sys.shared/compiled/game/object/tangible/hair/human/shared_hair_human_female_s46.tpf @@ -1,5 +1,5 @@ @base object/tangible/hair/human/base/shared_hair_human_female_base.iff @class tangible_object_template 3 @class object_template 0 -appearanceFilename = "appearance/sing_mt_clan_hair_s03.sat" +appearanceFilename = "appearance/sing_mt_clan_hair_s03_hue.sat" portalLayoutFilename = "" \ No newline at end of file