diff --git a/CMakeLists.txt b/CMakeLists.txt index 844e7e15..363edb26 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,6 +19,8 @@ file(GLOB_RECURSE SRC_FILES ) set(DEPS_DIR "${PROJECT_SOURCE_DIR}/deps") +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /bigobj") + add_library(${PROJECT_NAME} MODULE ${SRC_FILES}) set_property(TARGET ${PROJECT_NAME} PROPERTY CXX_STANDARD 23) diff --git a/cmake/imgui.cmake b/cmake/imgui.cmake index 69c866e8..5d324cb0 100644 --- a/cmake/imgui.cmake +++ b/cmake/imgui.cmake @@ -24,7 +24,7 @@ if(NOT imgui_POPULATED) "${imgui_SOURCE_DIR}/misc/cpp/imgui_stdlib.*" ) - add_library(imgui STATIC ${SRC_IMGUI}) + add_library(imgui STATIC ${SRC_IMGUI}) source_group(TREE ${imgui_SOURCE_DIR} PREFIX "imgui" FILES ${SRC_IMGUI}) target_include_directories(imgui PRIVATE "${imgui_SOURCE_DIR}" diff --git a/src/game/features/players/toxic/CagePlayerLarge.cpp b/src/game/features/players/toxic/CagePlayerLarge.cpp index 08f69cff..c173ef97 100644 --- a/src/game/features/players/toxic/CagePlayerLarge.cpp +++ b/src/game/features/players/toxic/CagePlayerLarge.cpp @@ -14,9 +14,9 @@ namespace YimMenu::Features { auto coords = player.GetPed().GetPosition(); coords.z -= 1.0f; - SpawnObject(0x99C0CFCF, coords); + SpawnObject(0x99C0CFCF, coords, 0, 0, 0, true, true, false, false, true); } }; static CagePlayerLarge _CagePlayerLarge{"cageplayerlarge", "Cage Player(Large)", "Cages the player using a larger cage"}; -} \ No newline at end of file +} diff --git a/src/game/features/players/toxic/CagePlayerSmall.cpp b/src/game/features/players/toxic/CagePlayerSmall.cpp index b334b175..80636d88 100644 --- a/src/game/features/players/toxic/CagePlayerSmall.cpp +++ b/src/game/features/players/toxic/CagePlayerSmall.cpp @@ -14,7 +14,7 @@ namespace YimMenu::Features { auto coords = player.GetPed().GetPosition(); coords.z -= 1.0f; - SpawnObject(0xF3D580D3, coords); + SpawnObject(0xF3D580D3, coords, 0, 0, 0, true, true, false, false, true); } }; diff --git a/src/game/features/vehicle/FastTrain.cpp b/src/game/features/vehicle/FastTrain.cpp new file mode 100644 index 00000000..8f2d89cf --- /dev/null +++ b/src/game/features/vehicle/FastTrain.cpp @@ -0,0 +1,48 @@ +#include "core/commands/LoopedCommand.hpp" +#include "core/frontend/Notifications.hpp" +#include "game/features/Features.hpp" +#include "game/rdr/Enums.hpp" +#include "game/rdr/Natives.hpp" +#include "game/backend/Self.hpp" + +namespace YimMenu::Features +{ + class FastTrain : public LoopedCommand + { + using LoopedCommand::LoopedCommand; + + virtual void OnTick() override + { + auto vehicle = Self::GetVehicle(); + if (vehicle) + { + Hash vehicleModelHash = ENTITY::GET_ENTITY_MODEL(vehicle.GetHandle()); + + if (VEHICLE::IS_THIS_MODEL_A_TRAIN(vehicleModelHash)) + { + VEHICLE::SET_TRAIN_SPEED(vehicle.GetHandle(), 1000.0); + VEHICLE::SET_TRAIN_CRUISE_SPEED(vehicle.GetHandle(), 1000.0); + VEHICLE::_SET_TRAIN_MAX_SPEED(vehicle.GetHandle(), 1000.0); + } + } + } + + virtual void OnDisable() override + { + auto vehicle = Self::GetVehicle(); + if (vehicle) + { + Hash vehicleModelHash = ENTITY::GET_ENTITY_MODEL(vehicle.GetHandle()); + + if (VEHICLE::IS_THIS_MODEL_A_TRAIN(vehicleModelHash)) + { + VEHICLE::SET_TRAIN_SPEED(vehicle.GetHandle(), 0.0); + VEHICLE::SET_TRAIN_CRUISE_SPEED(vehicle.GetHandle(), 0.0); + VEHICLE::_SET_TRAIN_MAX_SPEED(vehicle.GetHandle(), 0.0); + } + } + } + }; + + static FastTrain _FastTrain{"fasttrain", "Fast Train", "Makes the train much faster than normal. Instantly stops it when disabled."}; +} \ No newline at end of file diff --git a/src/game/frontend/submenus/Self.cpp b/src/game/frontend/submenus/Self.cpp index 48affc14..04463c14 100644 --- a/src/game/frontend/submenus/Self.cpp +++ b/src/game/frontend/submenus/Self.cpp @@ -204,7 +204,8 @@ namespace YimMenu::Submenus auto vehicle = std::make_shared("Vehicle"); auto vehicleGlobalsGroup = std::make_shared("Globals"); - auto vehicleFunGroup = std::make_shared("Fun"); + auto vehicleFunGroup = std::make_shared("Fun"); + auto trainGroup = std::make_shared("Train"); vehicleGlobalsGroup->AddItem(std::make_shared("vehiclegodmode"_J)); vehicleGlobalsGroup->AddItem(std::make_shared("repairvehicle"_J)); @@ -213,8 +214,12 @@ namespace YimMenu::Submenus vehicleFunGroup->AddItem(std::make_shared("superdrive"_J, std::make_shared("superdrivedirectional"_J, "Directional"))); vehicleFunGroup->AddItem(std::make_shared("superdrive"_J, std::make_shared("superdriveforce"_J, "Force"))); vehicleFunGroup->AddItem(std::make_shared("superbrake"_J)); + + trainGroup->AddItem(std::make_shared("fasttrain"_J)); + vehicle->AddItem(vehicleGlobalsGroup); vehicle->AddItem(vehicleFunGroup); + vehicle->AddItem(trainGroup); AddCategory(std::move(vehicle)); auto animations = std::make_shared("Animations"); diff --git a/src/game/frontend/submenus/World.cpp b/src/game/frontend/submenus/World.cpp index 74817471..fab2415f 100644 --- a/src/game/frontend/submenus/World.cpp +++ b/src/game/frontend/submenus/World.cpp @@ -1,6 +1,7 @@ #include "World.hpp" #include "World/PedSpawner.hpp" +#include "World/ObjectSpawner.hpp" #include "World/Shows.hpp" #include "World/Train.hpp" #include "World/VehicleSpawner.hpp" @@ -12,6 +13,12 @@ #include "game/backend/ScriptMgr.hpp" #include "game/backend/Self.hpp" #include "game/frontend/items/Items.hpp" +#include "game/rdr/Ped.hpp" +#include "game/rdr/data/PedModels.hpp" +#include "game/rdr/data/ObjModels.hpp" + +#include "util/VehicleSpawner.hpp" + #include @@ -75,15 +82,19 @@ namespace YimMenu::Submenus } })); - - auto spawners = std::make_shared("Spawners"); - auto pedSpawnerGroup = std::make_shared("Ped Spawner"); + auto spawners = std::make_shared("Spawners"); + auto pedSpawnerGroup = std::make_shared("Ped Spawner"); + auto objSpawnerGroup = std::make_shared("Object Spawner"); auto vehicleSpawnerGroup = std::make_shared("Vehicle Spawner"); auto trainSpawnerGroup = std::make_shared("Train Spawner"); pedSpawnerGroup->AddItem(std::make_shared([] { RenderPedSpawnerMenu(); })); + + objSpawnerGroup->AddItem(std::make_shared([] { + RenderObjectSpawnerMenu(); + })); vehicleSpawnerGroup->AddItem(std::make_shared([] { RenderVehicleSpawnerMenu(); @@ -94,6 +105,7 @@ namespace YimMenu::Submenus })); spawners->AddItem(pedSpawnerGroup); + spawners->AddItem(objSpawnerGroup); spawners->AddItem(vehicleSpawnerGroup); spawners->AddItem(trainSpawnerGroup); diff --git a/src/game/frontend/submenus/World/ObjectSpawner.cpp b/src/game/frontend/submenus/World/ObjectSpawner.cpp new file mode 100644 index 00000000..dcf06cac --- /dev/null +++ b/src/game/frontend/submenus/World/ObjectSpawner.cpp @@ -0,0 +1,172 @@ +#include "core/commands/Command.hpp" +#include "game/backend/FiberPool.hpp" +#include "game/backend/NativeHooks.hpp" +#include "game/backend/ScriptMgr.hpp" +#include "game/backend/Self.hpp" +#include "game/frontend/items/Items.hpp" +#include "game/rdr/Natives.hpp" +#include "game/rdr/data/ObjModels.hpp" +#include "ObjectSpawner.hpp" +#include "util/SpawnObject.hpp" + +namespace YimMenu::Submenus +{ + static bool IsObjectModelInList(const std::string& model) + { + for (const auto& objModel : YimMenu::Data::g_ObjModels) + { + if (objModel.model == model) + return true; + } + return false; + } + + static int ObjectSpawnerInputCallback(ImGuiInputTextCallbackData* data) + { + if (data->EventFlag == ImGuiInputTextFlags_CallbackCompletion) + { + std::string newText; + std::string inputLower = data->Buf; + std::transform(inputLower.begin(), inputLower.end(), inputLower.begin(), ::tolower); + + for (const auto& objModel : YimMenu::Data::g_ObjModels) + { + std::string modelLower = objModel.model; + std::transform(modelLower.begin(), modelLower.end(), modelLower.begin(), ::tolower); + if (modelLower.find(inputLower) != std::string::npos) + { + newText = objModel.model; + break; + } + } + + if (!newText.empty()) + { + data->DeleteChars(0, data->BufTextLen); + data->InsertChars(0, newText.c_str()); + } + + return 1; + } + return 0; + } + + void RenderObjectSpawnerMenu() + { + static std::string objectModelBuffer; + static float positionOffsetX = 5.0f; + static float positionOffsetY = 5.0f; + static float positionOffsetZ = 0.0f; + static float pitch = 0.0f; + static float yaw = 0.0f; + static float roll = 0.0f; + static float alpha = 125.0f; + static bool onGround = false; + static bool isFrozen = false; + static bool isBurning = false; + static bool isPickup = false; + static bool showPreview = false; + static bool hasCollision = false; + static int modelHash = 0; + + Vector3 playerCoords = Self::GetPed().GetPosition(); + Vector3 forwardVector = ENTITY::GET_ENTITY_FORWARD_VECTOR(Self::GetPed().GetHandle()); + + Vector3 spawnPosition; + spawnPosition.x = playerCoords.x + forwardVector.x * positionOffsetX; + spawnPosition.y = playerCoords.y + forwardVector.y * positionOffsetY; + spawnPosition.z = playerCoords.z + positionOffsetZ; + + char buffer[256]; + strncpy(buffer, objectModelBuffer.c_str(), sizeof(buffer)); + + ImGui::InputTextWithHint("##objectmodel", "Object Model", buffer, sizeof(buffer), ImGuiInputTextFlags_CallbackCompletion, ObjectSpawnerInputCallback); + + objectModelBuffer = buffer; + + if (ImGui::IsItemHovered()) + ImGui::SetTooltip("Press Tab to auto-fill"); + + if (!objectModelBuffer.empty() && !IsObjectModelInList(objectModelBuffer)) + { + ImGui::BeginListBox("##objectmodels", ImVec2(250, 100)); + + std::string bufferLower = objectModelBuffer; + std::transform(bufferLower.begin(), bufferLower.end(), bufferLower.begin(), ::tolower); + for (const auto& objModel : YimMenu::Data::g_ObjModels) + { + std::string objModelLower = objModel.model; + std::transform(objModelLower.begin(), objModelLower.end(), objModelLower.begin(), ::tolower); + if (objModelLower.find(bufferLower) != std::string::npos && ImGui::Selectable(objModel.model.c_str())) + { + objectModelBuffer = objModel.model; + modelHash = Joaat(objectModelBuffer.c_str()); + STREAMING::REQUEST_MODEL(modelHash, false); + while (!STREAMING::HAS_MODEL_LOADED(modelHash)) + { + return; + } + } + } + + ImGui::EndListBox(); + } + + ImGui::SliderFloat("Offset X", &positionOffsetX, -25.0f, 25.0f); + ImGui::SliderFloat("Offset Y", &positionOffsetY, -25.0f, 25.0f); + ImGui::SliderFloat("Offset Z", &positionOffsetZ, -10.0f, 10.0f); + ImGui::Separator(); + ImGui::SliderFloat("Pitch", &pitch, -180.0f, 180.0f); + ImGui::SliderFloat("Yaw", &yaw, -180.0f, 180.0f); + ImGui::SliderFloat("Roll", &roll, -180.0f, 180.0f); + ImGui::Separator(); + ImGui::SliderFloat("Transparency", &alpha, 0.0f, 255.0f); + + ImGui::Checkbox("Place on Ground", &onGround); + if (ImGui::IsItemHovered()) + ImGui::SetTooltip("Places the object properly on the ground when spawned."); + ImGui::SameLine(); + ImGui::Checkbox("Freeze Position", &isFrozen); + if (ImGui::IsItemHovered()) + ImGui::SetTooltip("Locks the object in place when spawned, preventing it from being moved."); + ImGui::SameLine(); + ImGui::Checkbox("Set on Fire", &isBurning); + if (ImGui::IsItemHovered()) + ImGui::SetTooltip("Sets things on fire near the object when spawned."); + ImGui::SameLine(); + ImGui::Checkbox("Set as Pickup", &isPickup); + if (ImGui::IsItemHovered()) + ImGui::SetTooltip("Sets the object as a pickup (if applicable) for spawning lootable items."); + + ImGui::Checkbox("Set Collision", &hasCollision); + if (ImGui::IsItemHovered()) + ImGui::SetTooltip("Sets the collision of the object making it so you cannot pass through it."); + ImGui::SameLine(); + ImGui::Checkbox("Show Preview", &showPreview); + if (ImGui::IsItemHovered()) + ImGui::SetTooltip("Shows a preview of the object in front of you."); + + if (ImGui::Button("Spawn Object")) + { + int modelHash = Joaat(objectModelBuffer.c_str()); + SpawnObject(modelHash, spawnPosition, pitch, yaw, roll, onGround, isFrozen, isBurning, isPickup, hasCollision); + } + ImGui::SameLine(); + if (ImGui::Button("Reset Sliders")) + { + positionOffsetX = 5.0f; + positionOffsetY = 5.0f; + positionOffsetZ = 0.0f; + pitch = 0.0f; + yaw = 0.0f; + roll = 0.0f; + alpha = 125.0f; + } + + if (showPreview) + { + int modelHash = Joaat(objectModelBuffer.c_str()); + PreviewObject(modelHash, spawnPosition, pitch, yaw, roll, alpha, showPreview); + } + } +} \ No newline at end of file diff --git a/src/game/frontend/submenus/World/ObjectSpawner.hpp b/src/game/frontend/submenus/World/ObjectSpawner.hpp new file mode 100644 index 00000000..42c7a85f --- /dev/null +++ b/src/game/frontend/submenus/World/ObjectSpawner.hpp @@ -0,0 +1,6 @@ +#pragma once + +namespace YimMenu::Submenus +{ + void RenderObjectSpawnerMenu(); +} \ No newline at end of file diff --git a/src/game/rdr/data/ObjModels.hpp b/src/game/rdr/data/ObjModels.hpp new file mode 100644 index 00000000..a7c7f3cd --- /dev/null +++ b/src/game/rdr/data/ObjModels.hpp @@ -0,0 +1,20487 @@ +#pragma once +#include +#include + + +namespace YimMenu::Data +{ + struct ObjModelInfo + { + std::string model; + std::string category; + }; + + const ObjModelInfo g_ObjModels[]{ + {"nbx_saplin_palmetto_abl2", "Not Set"}, + {"p_balconyflagnbx01x", "Not Set"}, + {"p_barbpolenbx01x", "Not Set"}, + {"p_barrelhoistnbx01x", "Not Set"}, + {"p_beerboardnbx01x", "Not Set"}, + {"p_bellhangnbx01x", "Not Set"}, + {"p_bellwallnbx01x", "Not Set"}, + {"p_benchironnbx01x", "Not Set"}, + {"p_benchironnbx02x", "Not Set"}, + {"p_benchnbx01x", "Not Set"}, + {"p_benchnbx02x", "Not Set"}, + {"p_benchnbx03x", "Not Set"}, + {"p_bollardnbx01x", "Not Set"}, + {"p_bowlplantnbx01x", "Not Set"}, + {"p_bowlplantnbx01xb", "Not Set"}, + {"p_bowlplantnbx02x", "Not Set"}, + {"p_canalpolenbx01a", "Not Set"}, + {"p_canalpolenbx01x", "Not Set"}, + {"p_canalpolenbx02x", "Not Set"}, + {"p_canalpolenbx03a", "Not Set"}, + {"p_canalpolenbx03b", "Not Set"}, + {"p_canalpolenbx03c", "Not Set"}, + {"p_canalpolenbx03d", "Not Set"}, + {"p_canalpolenbx03x", "Not Set"}, + {"p_candleboxnbx01x", "Not Set"}, + {"p_chairironnbx01x", "Not Set"}, + {"p_chairnbx02x", "Not Set"}, + {"p_chairwicker03x", "Not Set"}, + {"p_cherubstatuenbx01x", "Not Set"}, + {"p_coffeeboardnbx01x", "Not Set"}, + {"p_couchwicker01x", "Not Set"}, + {"p_ctyhal_left_door01x", "Not Set"}, + {"p_ctyhal_ryt_door01x", "Not Set"}, + {"p_debrisboardsstd01x", "Not Set"}, + {"p_debrisboardsstd02x", "Not Set"}, + {"p_debrisboardsstd03x", "Not Set"}, + {"p_debrispilestd01x", "Not Set"}, + {"p_debrispilestd02x", "Not Set"}, + {"p_debrispilestd03x", "Not Set"}, + {"p_debrispilestd04x", "Not Set"}, + {"p_debrispilestd05x", "Not Set"}, + {"p_debrispilestd06x", "Not Set"}, + {"p_debrispilestd07x", "Not Set"}, + {"p_debrispilestd08x", "Not Set"}, + {"p_displaycasenbx01x", "Not Set"}, + {"p_displaycasenbx02x", "Not Set"}, + {"p_dollynbx01x", "Not Set"}, + {"p_doorbronte01x", "Not Set"}, + {"p_door_gatenbx01x", "Not Set"}, + {"p_door_gatenbx01x_static", "Not Set"}, + {"p_door_gatenbx02a", "Not Set"}, + {"p_door_gatenbx02a_static", "Not Set"}, + {"p_door_gatenbx02b", "Not Set"}, + {"p_door_gatenbx03a", "Not Set"}, + {"p_door_gatenbx03x", "Not Set"}, + {"p_doorsaloonnbx01x", "Not Set"}, + {"p_door_sd_hotel01x_l", "Not Set"}, + {"p_door_sd_hotel01x_l_static", "Not Set"}, + {"p_door_sd_hotel01x_r", "Not Set"}, + {"p_door_sd_hotel01x_r_static", "Not Set"}, + {"p_door_traingate_l", "Not Set"}, + {"p_door_traingate_r", "Not Set"}, + {"p_door_warehougate_l", "Not Set"}, + {"p_door_warehougate_l_static", "Not Set"}, + {"p_door_warehougate_r", "Not Set"}, + {"p_door_warehougate_r_static", "Not Set"}, + {"p_door_wrh_02_1_01x", "Not Set"}, + {"p_door_wrh_02_2_l", "Not Set"}, + {"p_door_wrh_02_2_r", "Not Set"}, + {"p_door_wrh_gate_l", "Not Set"}, + {"p_door_wrh_gate_r", "Not Set"}, + {"p_dragon_chinatown01x", "Not Set"}, + {"p_fountainbronzenbx01x", "Not Set"}, + {"p_fountainnbx01x", "Not Set"}, + {"p_fountainnbx02x", "Not Set"}, + {"p_hairpomadeboardnbx01x", "Not Set"}, + {"p_hanginglanternnbx01x", "Not Set"}, + {"p_hanginglightnbx01x", "Not Set"}, + {"p_lamphangnbx01x", "Not Set"}, + {"p_lampstreetnbx02x", "Not Set"}, + {"p_lanternnbx01x", "Not Set"}, + {"p_leveesignnbx01x", "Not Set"}, + {"p_lightcourtnbx01x", "Not Set"}, + {"p_lightcourtnbx02x", "Not Set"}, + {"p_lightpolenbx01x", "Not Set"}, + {"p_lightpolenbx02x", "Not Set"}, + {"p_lightpolenbx03x", "Not Set"}, + {"p_lightpolenbx04x", "Not Set"}, + {"p_lightpostjksqnbx01x", "Not Set"}, + {"p_lightpostnbx01x", "Not Set"}, + {"p_lightwallnbx01x", "Not Set"}, + {"p_lightwallnbx02x", "Not Set"}, + {"p_lightwallnbx03x", "Not Set"}, + {"p_litternbx01x", "Not Set"}, + {"p_litternbx02x", "Not Set"}, + {"p_litternbx03x", "Not Set"}, + {"p_mandolinboardnbx01x", "Not Set"}, + {"p_menuboardnbx01x", "Not Set"}, + {"p_nbxcloseddoor", "Not Set"}, + {"p_nbx_closed_door_02", "Not Set"}, + {"p_nbx_splitdoor01", "Not Set"}, + {"p_nbx_splitdoor02", "Not Set"}, + {"p_nbx_splitdoor02_static", "Not Set"}, + {"p_nbx_splitdoor03lft", "Not Set"}, + {"p_nbx_splitdoor03rht", "Not Set"}, + {"p_newspaperbw01x", "Not Set"}, + {"p_newspapernbx01x", "Not Set"}, + {"p_newspapersdx01x", "Not Set"}, + {"p_newspaperstandbl_01x", "Not Set"}, + {"p_newspaperstandbl_02x", "Not Set"}, + {"p_newspaperstandbl_03x", "Not Set"}, + {"p_newspaperstandbl_04x", "Not Set"}, + {"p_newspaperstandbl_05x", "Not Set"}, + {"p_newspaperstandbl_06x", "Not Set"}, + {"p_newspaperstandbl_07x", "Not Set"}, + {"p_newspaperstandbl_08x", "Not Set"}, + {"p_newspaperstandbl_09x", "Not Set"}, + {"p_newspaperstandbl_10x", "Not Set"}, + {"p_newspaperstandbl_11x", "Not Set"}, + {"p_newspaperstandbl_12x", "Not Set"}, + {"p_newspaperstandbl_13x", "Not Set"}, + {"p_newspaperstandbl_14x", "Not Set"}, + {"p_newspaperstandnh_01x", "Not Set"}, + {"p_newspaperstandnh_02x", "Not Set"}, + {"p_newspaperstandnh_03x", "Not Set"}, + {"p_newspaperstandnh_04x", "Not Set"}, + {"p_newspaperstandnh_05x", "Not Set"}, + {"p_newspaperstandnh_06x", "Not Set"}, + {"p_newspaperstandnh_07x", "Not Set"}, + {"p_newspaperstandnh_08x", "Not Set"}, + {"p_newspaperstandnh_09x", "Not Set"}, + {"p_newspaperstandnh_10x", "Not Set"}, + {"p_newspaperstandnh_11x", "Not Set"}, + {"p_newspaperstandnh_12x", "Not Set"}, + {"p_newspaperstandnh_13x", "Not Set"}, + {"p_newspaperstandnh_14x", "Not Set"}, + {"p_newspaperstandsd_01x", "Not Set"}, + {"p_newspaperstandsd_02x", "Not Set"}, + {"p_newspaperstandsd_03x", "Not Set"}, + {"p_newspaperstandsd_04x", "Not Set"}, + {"p_newspaperstandsd_05x", "Not Set"}, + {"p_newspaperstandsd_06x", "Not Set"}, + {"p_newspaperstandsd_07x", "Not Set"}, + {"p_newspaperstandsd_08x", "Not Set"}, + {"p_newspaperstandsd_09x", "Not Set"}, + {"p_newspaperstandsd_10x", "Not Set"}, + {"p_newspaperstandsd_11x", "Not Set"}, + {"p_newspaperstandsd_12x", "Not Set"}, + {"p_newspaperstandsd_13x", "Not Set"}, + {"p_newspaperstandsd_14x", "Not Set"}, + {"p_newspapervalx01x", "Not Set"}, + {"p_newsstand01x_new", "Not Set"}, + {"p_new_stonebench02x", "Not Set"}, + {"p_palletnbx01a", "Not Set"}, + {"p_palletnbx01b", "Not Set"}, + {"p_pierpolenbx01x", "Not Set"}, + {"p_pie_train_stop", "Not Set"}, + {"p_planter03a", "Not Set"}, + {"p_planternbx01x", "Not Set"}, + {"p_planternbx02x", "Not Set"}, + {"p_planternbx04a", "Not Set"}, + {"p_planternbx04b", "Not Set"}, + {"p_planternbx04c", "Not Set"}, + {"p_plantpothangnbx01x", "Not Set"}, + {"p_plantpothangnbx02x", "Not Set"}, + {"p_plantpotnbx01x", "Not Set"}, + {"p_plantpotnbx02x", "Not Set"}, + {"p_plantpotnbx03x", "Not Set"}, + {"p_plantpotnbx04x", "Not Set"}, + {"p_plantpotnbx05x", "Not Set"}, + {"p_plantpotnbx06x", "Not Set"}, + {"p_plantpotnbx07x", "Not Set"}, + {"p_plantpotnbx08x", "Not Set"}, + {"p_plantpotwallnbx01x", "Not Set"}, + {"p_plantpotwallnbx02x", "Not Set"}, + {"p_playingcards01x", "Not Set"}, + {"p_postironnbx01x", "Not Set"}, + {"p_potceramicnbx01x", "Not Set"}, + {"p_potclaynbx01x", "Not Set"}, + {"p_potsbrokenstd02", "Not Set"}, + {"p_potsbrokenstd03", "Not Set"}, + {"p_potterynbx01x", "Not Set"}, + {"p_potterynbx02x", "Not Set"}, + {"p_railpartsnbx01x", "Not Set"}, + {"p_re_fund_sign01x", "Not Set"}, + {"p_re_fund_sign02x", "Not Set"}, + {"p_sandwichboardlaundry01x", "Not Set"}, + {"p_sandwichboardmrbear01x", "Not Set"}, + {"p_sandwichboardnbx01ax", "Not Set"}, + {"p_sandwichboardnbx01x", "Not Set"}, + {"p_sandwichboardpascal01x", "Not Set"}, + {"p_sbbeaumontburly01x", "Not Set"}, + {"p_sbdirectdamnation01x", "Not Set"}, + {"p_sbfarmersdaughter01x", "Not Set"}, + {"p_sbghastlyserenade01x", "Not Set"}, + {"p_sbmodernmedicine01x", "Not Set"}, + {"p_sboardjosiahblackwate01x", "Not Set"}, + {"p_sboardmanflight01x", "Not Set"}, + {"p_sboardsaviorssavages01x", "Not Set"}, + {"p_sboardsweetheart01x", "Not Set"}, + {"p_sdwhbrddbrngsmith01x", "Not Set"}, + {"p_skylightnbx01x", "Not Set"}, + {"p_skylightnbx02x", "Not Set"}, + {"p_skylightnbx03x", "Not Set"}, + {"p_sraleurtheatre01x", "Not Set"}, + {"p_statueharrisnbx01x", "Not Set"}, + {"p_statuenbcom06x", "Not Set"}, + {"p_storageboxnbx01x", "Not Set"}, + {"p_storagecartnbx01x", "Not Set"}, + {"p_streetcarpolenbx03x", "Not Set"}, + {"p_streetcarpolenbx04x", "Not Set"}, + {"p_streetclockhangnbx01x", "Not Set"}, + {"p_streetclocknbx01x", "Not Set"}, + {"p_streetlampnbx01x", "Not Set"}, + {"p_streetlightnbx01x", "Not Set"}, + {"p_streetlightnbx02x", "Not Set"}, + {"p_streetlightnbx03x", "Not Set"}, + {"p_streetlightnbx04x", "Not Set"}, + {"p_streetlightnbx05x", "Not Set"}, + {"p_streetlightnbx06x", "Not Set"}, + {"p_streetlightnbx07x", "Not Set"}, + {"p_streetlightnbx08x", "Not Set"}, + {"p_streetlightnbx09x", "Not Set"}, + {"p_streettrashcannbx01x", "Not Set"}, + {"p_tableironnbx01x", "Not Set"}, + {"p_tablenbx02x", "Not Set"}, + {"p_tarpnbx01x", "Not Set"}, + {"p_tarppilenbx01x", "Not Set"}, + {"p_tarppilenbx02x", "Not Set"}, + {"p_tarprollnbx01x", "Not Set"}, + {"p_tarrollnbx01x", "Not Set"}, + {"p_telephonepolenbx01x", "Not Set"}, + {"p_telephonepolenbx02b", "Not Set"}, + {"p_telephonepolenbx02x", "Not Set"}, + {"p_telephonepolenbx03b", "Not Set"}, + {"p_telephonepolenbx03x", "Not Set"}, + {"p_telephonepolenbx04x", "Not Set"}, + {"p_telepolelightnbx01x", "Not Set"}, + {"p_telewirebalcony01x", "Not Set"}, + {"p_theaterchair01b01x", "Not Set"}, + {"p_theaterchair02a01x", "Not Set"}, + {"p_theaterchair02b01x", "Not Set"}, + {"p_theaterchair02c01x", "Not Set"}, + {"p_tobaccoboardnbx01x", "Not Set"}, + {"p_umbrellanbx01x", "Not Set"}, + {"p_umbrellanbx01xcs", "Not Set"}, + {"p_umbrellanbx02x", "Not Set"}, + {"p_umbrellanbx02x_static", "Not Set"}, + {"p_umbrellanbx03x", "Not Set"}, + {"p_voyachboardnbx01x", "Not Set"}, + {"p_walllampnbx01x", "Not Set"}, + {"p_walllampnbx02x", "Not Set"}, + {"p_walllampnbx03x", "Not Set"}, + {"p_walllampnbx04x", "Not Set"}, + {"p_walllampnbx05x", "Not Set"}, + {"p_walllampnbx07x", "Not Set"}, + {"p_wellpumpnbx01x", "Not Set"}, + {"p_woodentablenbx_01x", "Not Set"}, + {"p_sha_man_fireplace01", "Not Set"}, + {"sha_man_piano01", "Not Set"}, + {"sha_man_piano02", "Not Set"}, + {"brick-0-rough_01", "Not Set"}, + {"brick-0-rough_02", "Not Set"}, + {"brick-0-smooth_01", "Not Set"}, + {"brick-0-smooth_02", "Not Set"}, + {"fabric-0-flannel", "Not Set"}, + {"fabric-0-linen", "Not Set"}, + {"fabric-0-linen_black", "Not Set"}, + {"fabric-0-satin", "Not Set"}, + {"fabric-0-velvet", "Not Set"}, + {"leather-0-rough_01", "Not Set"}, + {"leather-0-rough_02", "Not Set"}, + {"leather-0-smooth_01", "Not Set"}, + {"leather-0-smooth_02", "Not Set"}, + {"lu_standard", "Not Set"}, + {"lu_standard_2lyr", "Not Set"}, + {"lu_standard_2lyr_pxm", "Not Set"}, + {"lu_standard_alpha", "Not Set"}, + {"lu_standard_cutout", "Not Set"}, + {"lu_standard_decal", "Not Set"}, + {"lu_standard_dirt", "Not Set"}, + {"lu_standard_dirt_pxm", "Not Set"}, + {"lu_standard_pxm", "Not Set"}, + {"lu_terrain", "Not Set"}, + {"lu_terrain_pxm", "Not Set"}, + {"metal-0-aluminium-polish_01", "Not Set"}, + {"metal-0-aluminium-polish_02", "Not Set"}, + {"metal-0-bronze-patina_01", "Not Set"}, + {"metal-0-bronze-patina_02", "Not Set"}, + {"metal-0-bronze-polished_01", "Not Set"}, + {"metal-0-bronze-polished_02", "Not Set"}, + {"metal-0-bronze-rough_01", "Not Set"}, + {"metal-0-bronze-rough_02", "Not Set"}, + {"metal-0-copper-polished_01", "Not Set"}, + {"metal-0-copper-polished_02", "Not Set"}, + {"metal-0-copper-rough_01", "Not Set"}, + {"metal-0-copper-rough_02", "Not Set"}, + {"metal-0-gold-polished_01", "Not Set"}, + {"metal-0-gold_polished_02", "Not Set"}, + {"metal-0-gold-rough_01", "Not Set"}, + {"metal-0-gold-rough_02", "Not Set"}, + {"metal-0-iron-polished_01", "Not Set"}, + {"metal-0-iron-polished_02", "Not Set"}, + {"metal-0-iron_rough_01", "Not Set"}, + {"metal-0-iron_rough_02", "Not Set"}, + {"metal-0-iron_rough2_01", "Not Set"}, + {"metal-0-iron_rough2_02", "Not Set"}, + {"metal-0-nickel-polished_01", "Not Set"}, + {"metal-0-nickel-polished_02", "Not Set"}, + {"metal-0-nickel-rough_01", "Not Set"}, + {"metal-0-nickel-rough_02", "Not Set"}, + {"metal-0-oxidized-rust-_01", "Not Set"}, + {"metal-0-oxidized-rust-_02", "Not Set"}, + {"metal-0-platinum-polished_01", "Not Set"}, + {"metal-0-platinum-polished_02", "Not Set"}, + {"metal-0-silver-polished_01", "Not Set"}, + {"metal-0-silver-polished_02", "Not Set"}, + {"metal-0-titanium-polished_01", "Not Set"}, + {"metal-0-titanium-polished_02", "Not Set"}, + {"mixed-0-asphalt-new_01", "Not Set"}, + {"mixed-0-asphalt-new_02", "Not Set"}, + {"mixed-0-breeze--block_01", "Not Set"}, + {"mixed-0-breeze--block_02", "Not Set"}, + {"paint-0-matte_01", "Not Set"}, + {"paint-0-matte_02", "Not Set"}, + {"plastic-0-gloss_01", "Not Set"}, + {"plastic-0-gloss_02", "Not Set"}, + {"plastic-0-matte_01", "Not Set"}, + {"plastic-0-matte_02", "Not Set"}, + {"ref_macbeth", "Not Set"}, + {"rock-0-cobblestone_01", "Not Set"}, + {"rock-0-cobblestone_02", "Not Set"}, + {"rock-0-marble-polished_01", "Not Set"}, + {"rock-0-marble-polished_02", "Not Set"}, + {"rock-0-marble-rough_01", "Not Set"}, + {"rock-0-marble-rough_02", "Not Set"}, + {"terrain-0-dirt_01", "Not Set"}, + {"terrain-0-dirt_02", "Not Set"}, + {"terrain-0-dirt-damp_01", "Not Set"}, + {"terrain-0-dirt-damp_02", "Not Set"}, + {"terrain-0-grass_01", "Not Set"}, + {"terrain-0-grass_02", "Not Set"}, + {"terrain-0-ice-rough_01", "Not Set"}, + {"terrain-0-ice-rough_02", "Not Set"}, + {"terrain-0-ice-smooth_01", "Not Set"}, + {"terrain-0-ice-smooth_02", "Not Set"}, + {"terrain-0-mud_01", "Not Set"}, + {"terrain-0-mud_02", "Not Set"}, + {"terrain-0-sand-fine_01", "Not Set"}, + {"terrain-0-sand-fine_02", "Not Set"}, + {"terrain-0-snow_01", "Not Set"}, + {"terrain-0-snow_02", "Not Set"}, + {"wood-0-burnt_01", "Not Set"}, + {"wood-0-burnt_02", "Not Set"}, + {"wood-0-frenchpolish_01", "Not Set"}, + {"wood-0-frenchpolish_02", "Not Set"}, + {"wood-0-lacquer_01", "Not Set"}, + {"wood-0-lacquer_02", "Not Set"}, + {"wood-0-smooth_01", "Not Set"}, + {"wood-0-smooth_02", "Not Set"}, + {"wood-0-varnish_01", "Not Set"}, + {"wood-0-varnish_02", "Not Set"}, + {"assetviewer_platform", "Not Set"}, + {"av_platform_fake", "Not Set"}, + {"p_avplatform_whiterender", "Not Set"}, + {"p_avplatform_whiterenderint", "Not Set"}, + {"p_gen_avplatform_horsemeasure", "Not Set"}, + {"p_gen_avplatform_wood", "Not Set"}, + {"p_gen_avplatform_wood2", "Not Set"}, + {"p_gen_avplatform_wood_no_light", "Not Set"}, + {"mp001_p_mp_campfire03x", "Not Set"}, + {"mp001_p_mp_haybalecover01x", "Not Set"}, + {"mp001_p_mp_haybalecover03x", "Not Set"}, + {"mp001_p_mp_endtable02x", "Not Set"}, + {"mp001_p_mp_trap05x_lid", "Not Set"}, + {"mp001_p_mp_trap05x_nolid", "Not Set"}, + {"mp001_p_fort_modular_01", "Not Set"}, + {"mp001_p_fort_modular_02", "Not Set"}, + {"mp001_p_fort_modular_03", "Not Set"}, + {"mp001_p_fort_modular_04", "Not Set"}, + {"mp001_p_fort_modular_05", "Not Set"}, + {"mp001_p_mp_crosssection01", "Not Set"}, + {"mp001_p_mp_crosssection02", "Not Set"}, + {"mp001_p_mp_jump_barrellong01", "Not Set"}, + {"mp001_p_mp_jump_barrelshort01", "Not Set"}, + {"mp001_p_mp_jump_blocklong01", "Not Set"}, + {"mp001_p_mp_jump_blocksmall01", "Not Set"}, + {"mp001_p_mp_jump_dock01", "Not Set"}, + {"mp001_p_mp_jump_fencelong01", "Not Set"}, + {"mp001_p_mp_jump_fenceshort01", "Not Set"}, + {"mp001_p_mp_jump_fenceshort02", "Not Set"}, + {"mp001_p_mp_jump_haybalelong01", "Not Set"}, + {"mp001_p_mp_jump_haybaleshort01", "Not Set"}, + {"mp001_p_mp_jump_logshort01", "Not Set"}, + {"mp001_p_mp_jump_logshort02", "Not Set"}, + {"mp001_p_mp_jump_sackshort01", "Not Set"}, + {"mp001_p_mp_track_joint01", "Not Set"}, + {"mp001_p_mp_track_joint02", "Not Set"}, + {"mp001_p_mp_track_joint03", "Not Set"}, + {"mp001_p_mp_track_joint04", "Not Set"}, + {"mp001_p_mp_track_leftturn01", "Not Set"}, + {"mp001_p_mp_track_leftturn02", "Not Set"}, + {"mp001_p_mp_track_leftturn03", "Not Set"}, + {"mp001_p_mp_track_leftturn04", "Not Set"}, + {"mp001_p_mp_track_narrow01", "Not Set"}, + {"mp001_p_mp_track_narrow02", "Not Set"}, + {"mp001_p_mp_track_narrow03", "Not Set"}, + {"mp001_p_mp_track_narrow04", "Not Set"}, + {"mp001_p_mp_track_narrowjoint01", "Not Set"}, + {"mp001_p_mp_track_narrowjoint02", "Not Set"}, + {"mp001_p_mp_track_narrowjoint03", "Not Set"}, + {"mp001_p_mp_track_narrowjoint04", "Not Set"}, + {"mp001_p_mp_track_rightturn01", "Not Set"}, + {"mp001_p_mp_track_rightturn02", "Not Set"}, + {"mp001_p_mp_track_rightturn03", "Not Set"}, + {"mp001_p_mp_track_rightturn04", "Not Set"}, + {"mp001_p_mp_track_shaped01", "Not Set"}, + {"mp001_p_mp_track_shaped02", "Not Set"}, + {"mp001_p_mp_track_shaped03", "Not Set"}, + {"mp001_p_mp_track_shaped04", "Not Set"}, + {"mp001_p_mp_track_single01", "Not Set"}, + {"mp001_p_mp_track_straight01", "Not Set"}, + {"mp001_p_mp_track_straight02", "Not Set"}, + {"mp001_p_mp_track_straight03", "Not Set"}, + {"mp001_p_mp_track_straight04", "Not Set"}, + {"mp001_p_mp_track_wide01", "Not Set"}, + {"mp001_p_mp_track_wide02", "Not Set"}, + {"mp001_p_mp_track_wide03", "Not Set"}, + {"mp001_p_mp_track_wide04", "Not Set"}, + {"mp001_p_barreltriple01x", "Not Set"}, + {"mp001_p_barreltwin01x", "Not Set"}, + {"mp001_p_cratetriple01x", "Not Set"}, + {"mp001_p_cratetwin01x", "Not Set"}, + {"mp001_p_mp_crateweapon_01a", "Not Set"}, + {"mp004_p_spoonmid01x_liquid", "Not Set"}, + {"mp004_p_fort_modular_05", "Not Set"}, + {"mp004_p_fort_modular_05_ladder", "Not Set"}, + {"mp004_p_barreltriple01x", "Not Set"}, + {"mp004_p_barreltwin01x", "Not Set"}, + {"mp004_p_cratetriple01x", "Not Set"}, + {"mp004_p_cratetwin01x", "Not Set"}, + {"mp005_p_mp_candlegroup03x", "Not Set"}, + {"mp005_p_mp_candlegroup05x", "Not Set"}, + {"mp005_p_mp_moundbase3x", "Not Set"}, + {"mp005_p_mp_moundbase9x", "Not Set"}, + {"p_ammo01x", "Not Set"}, + {"p_ammo_box_001", "Not Set"}, + {"p_ammobox01x", "Not Set"}, + {"p_ammobox02x", "Not Set"}, + {"p_ammoboxempty01x", "Not Set"}, + {"p_ammoboxempty02x", "Not Set"}, + {"p_ammoboxhalf01x", "Not Set"}, + {"p_ammoboxlancaster01x", "Not Set"}, + {"p_ammoboxlancaster02x", "Not Set"}, + {"p_ammo_cache_01x", "Not Set"}, + {"p_beartrap01x", "Not Set"}, + {"p_billyclub01x", "Not Set"}, + {"p_blowgundart01x", "Not Set"}, + {"p_bombswitchopen01x", "Not Set"}, + {"p_breach_cannon1x", "Not Set"}, + {"p_bulletcasing01x", "Not Set"}, + {"p_bulletcasingmulti01x", "Not Set"}, + {"p_bulletcasingmulti02x", "Not Set"}, + {"p_cannon01x", "Not Set"}, + {"p_cannon02x", "Not Set"}, + {"p_cannonaxle01x", "Not Set"}, + {"p_cannonball01x", "Not Set"}, + {"p_cannonball02x", "Not Set"}, + {"p_cannonbarrel01x", "Not Set"}, + {"p_cannonbody01x", "Not Set"}, + {"p_cannonpyramid01x", "Not Set"}, + {"p_cannonwheel01x", "Not Set"}, + {"p_crategatling05x_long", "Not Set"}, + {"p_cratetnt01x", "Not Set"}, + {"p_cratetnt01xa", "Not Set"}, + {"p_cratetnt02x", "Not Set"}, + {"p_cratetnt02xa", "Not Set"}, + {"p_cratetnt03x", "Not Set"}, + {"p_crateweapons01x", "Not Set"}, + {"p_crateweapons02x", "Not Set"}, + {"p_crateweapons03x", "Not Set"}, + {"p_crateweapons04x", "Not Set"}, + {"p_crateweaponsbreak01x", "Not Set"}, + {"p_crateweaponsbreak02x", "Not Set"}, + {"p_detonator01x", "Not Set"}, + {"p_detonator02x", "Not Set"}, + {"p_dynamite01x", "Not Set"}, + {"p_dynamite02x", "Not Set"}, + {"p_dynamite03x", "Not Set"}, + {"p_dynamite04x", "Not Set"}, + {"p_dynamitecrate01x", "Not Set"}, + {"p_dynamitecrate02x", "Not Set"}, + {"p_gatlingmaximshield01x", "Not Set"}, + {"p_gatlingmaximshield02x", "Not Set"}, + {"p_guncase01x", "Not Set"}, + {"p_guncase02x", "Not Set"}, + {"p_guncase03x", "Not Set"}, + {"p_guncase04x", "Not Set"}, + {"p_guncase05x", "Not Set"}, + {"p_guncase05x_large", "Not Set"}, + {"p_gundisplay01x", "Not Set"}, + {"p_gundisplay02x", "Not Set"}, + {"p_gunpart01x", "Not Set"}, + {"p_gunpart02x", "Not Set"}, + {"p_gunpart03x", "Not Set"}, + {"p_gunrack01x", "Not Set"}, + {"p_gunrack02x", "Not Set"}, + {"p_gunrack03x", "Not Set"}, + {"p_gunrack04x", "Not Set"}, + {"p_gunsmithkit01x", "Not Set"}, + {"p_jail01x", "Not Set"}, + {"p_jail02x", "Not Set"}, + {"p_melee_knife01", "Not Set"}, + {"p_molotov01x", "Not Set"}, + {"p_molotovcrate01x", "Not Set"}, + {"p_molotovempty01x", "Not Set"}, + {"p_noose01x", "Not Set"}, + {"p_noose02x", "Not Set"}, + {"p_noose03x", "Not Set"}, + {"p_noose03x_a", "Not Set"}, + {"p_pistol_semiauto_cs01x", "Not Set"}, + {"p_powderkeg01x", "Not Set"}, + {"p_powderkeg02x", "Not Set"}, + {"p_repeater_carbine01", "Not Set"}, + {"p_revolver_cattleman01", "Not Set"}, + {"p_revolver_trelawny", "Not Set"}, + {"p_riflerack01x", "Not Set"}, + {"p_riflewin01x", "Not Set"}, + {"p_shellshotgun01x", "Not Set"}, + {"p_shotgun_doublebarrel01", "Not Set"}, + {"p_stickydymt_bundle", "Not Set"}, + {"p_stickydymt_single", "Not Set"}, + {"p_sword01x", "Not Set"}, + {"p_tnt01x", "Not Set"}, + {"p_tntarmswagon01x", "Not Set"}, + {"p_tnt_trainrobbery_01x", "Not Set"}, + {"p_tntwagon01x", "Not Set"}, + {"p_tntwagon02x", "Not Set"}, + {"p_veh_cratetnt02x", "Not Set"}, + {"s_crateweapons01x", "Not Set"}, + {"s_crateweapons02x", "Not Set"}, + {"s_crateweapons03x", "Not Set"}, + {"s_cs_knifeangel01x", "Not Set"}, + {"p_avoidancebound01x", "Not Set"}, + {"p_barricade01x", "Not Set"}, + {"p_barricade03x", "Not Set"}, + {"p_barricade04x", "Not Set"}, + {"p_barricade05x", "Not Set"}, + {"p_barricadewood_lrg01x", "Not Set"}, + {"p_barricadewood_sml01x", "Not Set"}, + {"p_concretesack01x", "Not Set"}, + {"p_wallnbd01x", "Not Set"}, + {"p_bath02bx", "Not Set"}, + {"p_bath02x", "Not Set"}, + {"p_bath03x", "Not Set"}, + {"p_bathbrush01x", "Not Set"}, + {"p_bathsponge01x", "Not Set"}, + {"p_bedpanladies01x", "Not Set"}, + {"p_comb01x", "Not Set"}, + {"p_cupboard07x", "Not Set"}, + {"p_shavingbox01x", "Not Set"}, + {"p_shavingboxclosed01x", "Not Set"}, + {"p_shavingbrush01x", "Not Set"}, + {"p_shavingcup01x", "Not Set"}, + {"p_shaving_set01x", "Not Set"}, + {"p_soap01x", "Not Set"}, + {"p_straightrazor01x", "Not Set"}, + {"p_towelrack01x", "Not Set"}, + {"p_tub01bx", "Not Set"}, + {"p_tub02x", "Not Set"}, + {"p_val_hotel_int_tub_01x", "Not Set"}, + {"p_washbasin01x", "Not Set"}, + {"p_washbasinregal01x", "Not Set"}, + {"p_washbasinset01ax", "Not Set"}, + {"p_washbasinset01bx", "Not Set"}, + {"p_washbasinset01x", "Not Set"}, + {"p_washboard_01", "Not Set"}, + {"p_washstand02x", "Not Set"}, + {"p_washstand02x_static", "Not Set"}, + {"p_washstand03x", "Not Set"}, + {"p_alarmclock01x", "Not Set"}, + {"p_armoir02x", "Not Set"}, + {"p_armoir02x_loot", "Not Set"}, + {"p_armoir03x", "Not Set"}, + {"p_armoir04x", "Not Set"}, + {"p_armoir04x_loot", "Not Set"}, + {"p_armoir05x", "Not Set"}, + {"p_armoir05x_loot", "Not Set"}, + {"p_armoir06x", "Not Set"}, + {"p_armoir07bx", "Not Set"}, + {"p_armoir07x", "Not Set"}, + {"p_armoir07x_loot", "Not Set"}, + {"p_armoir08x", "Not Set"}, + {"p_armoireregal01", "Not Set"}, + {"p_bed01x", "Not Set"}, + {"p_bed02bx", "Not Set"}, + {"p_bed02x", "Not Set"}, + {"p_bed03x", "Not Set"}, + {"p_bed04x", "Not Set"}, + {"p_bed05x", "Not Set"}, + {"p_bed08x", "Not Set"}, + {"p_bed09x", "Not Set"}, + {"p_bed10x", "Not Set"}, + {"p_bed12x", "Not Set"}, + {"p_bed13x", "Not Set"}, + {"p_bed14x", "Not Set"}, + {"p_bed15brassx", "Not Set"}, + {"p_bed17x", "Not Set"}, + {"p_bed18x", "Not Set"}, + {"p_bed20bloodyx", "Not Set"}, + {"p_bed20madex", "Not Set"}, + {"p_bed20x", "Not Set"}, + {"p_bed21x", "Not Set"}, + {"p_bed22x", "Not Set"}, + {"p_bed_abigail3x", "Not Set"}, + {"p_bedbunk03x", "Not Set"}, + {"p_bedindian01x", "Not Set"}, + {"p_bedking01x", "Not Set"}, + {"p_bedking02x", "Not Set"}, + {"p_bedlog01x", "Not Set"}, + {"p_bedmosquitonet01x", "Not Set"}, + {"p_bedsleptin01x", "Not Set"}, + {"p_bedsleptinold04x", "Not Set"}, + {"p_blanketfolded01x", "Not Set"}, + {"p_cabinet03x", "Not Set"}, + {"p_cabinet04x", "Not Set"}, + {"p_cabinet05x", "Not Set"}, + {"p_chamberpot01x", "Not Set"}, + {"p_chamberpot_pot", "Not Set"}, + {"p_chest01x", "Not Set"}, + {"p_chest02x", "Not Set"}, + {"p_chest03x", "Not Set"}, + {"p_clothingcase01x", "Not Set"}, + {"p_commode01x", "Not Set"}, + {"p_commode02x", "Not Set"}, + {"p_cradle01x", "Not Set"}, + {"p_dresser01x", "Not Set"}, + {"p_dresser03x", "Not Set"}, + {"p_dresser04x", "Not Set"}, + {"p_dresser05x", "Not Set"}, + {"p_dresser06x", "Not Set"}, + {"p_dresser07x", "Not Set"}, + {"p_dresser08x", "Not Set"}, + {"p_dresser09x", "Not Set"}, + {"p_dresserval01x", "Not Set"}, + {"p_dressmirror01x", "Not Set"}, + {"p_foldedblanket01x", "Not Set"}, + {"p_foldedblanket02x", "Not Set"}, + {"p_foldedrug01x", "Not Set"}, + {"p_footlocker01x", "Not Set"}, + {"p_footlocker07x", "Not Set"}, + {"p_footlocker07x_loot", "Not Set"}, + {"p_footlockeranim01x", "Not Set"}, + {"p_lacepillow01x", "Not Set"}, + {"p_lacepillow02x", "Not Set"}, + {"p_mattress03x", "Not Set"}, + {"p_mattress04x", "Not Set"}, + {"p_mattress07x", "Not Set"}, + {"p_mattress08x", "Not Set"}, + {"p_mirror_shave01x", "Not Set"}, + {"p_nightbedking01x", "Not Set"}, + {"p_nightstand03x", "Not Set"}, + {"p_nightstand04x", "Not Set"}, + {"p_nightstandwinter03x", "Not Set"}, + {"p_pillow01x", "Not Set"}, + {"p_pillow01x_sea", "Not Set"}, + {"p_pillow02x", "Not Set"}, + {"p_pillow03x", "Not Set"}, + {"p_pillow06x", "Not Set"}, + {"p_pillow08x", "Not Set"}, + {"p_pillow09x", "Not Set"}, + {"p_pillow10x", "Not Set"}, + {"p_pillow11x", "Not Set"}, + {"p_pillow12x", "Not Set"}, + {"p_singlebrassbed01x", "Not Set"}, + {"p_steamer_trunk_001", "Not Set"}, + {"p_vanity01x", "Not Set"}, + {"p_vanity02x", "Not Set"}, + {"p_ambbed01x", "Not Set"}, + {"p_ambblanketroll01x", "Not Set"}, + {"p_ambbundle01x", "Not Set"}, + {"p_ambburnbarrel01x", "Not Set"}, + {"p_ambcache01x", "Not Set"}, + {"p_ambcart01x", "Not Set"}, + {"p_ambcart02x", "Not Set"}, + {"p_ambchair01x", "Not Set"}, + {"p_ambchair02x", "Not Set"}, + {"p_ambclothdrape01x", "Not Set"}, + {"p_ambclothdrape01x_static", "Not Set"}, + {"p_ambclothhang01x", "Not Set"}, + {"p_ambclothhang02x", "Not Set"}, + {"p_ambclothpile01x", "Not Set"}, + {"p_ambclothseat01x", "Not Set"}, + {"p_ambcorddried01x", "Not Set"}, + {"p_ambcordfresh01x", "Not Set"}, + {"p_ambfishbone02x", "Not Set"}, + {"p_ambfishgut02x", "Not Set"}, + {"p_ambfloorfur01x", "Not Set"}, + {"p_ambfloorfur02x", "Not Set"}, + {"p_ambfloorleaves01x", "Not Set"}, + {"p_ambfloorleaves02x", "Not Set"}, + {"p_ambfloorleaves03x", "Not Set"}, + {"p_ambfloormoss01x", "Not Set"}, + {"p_ambfloorplandecor01x", "Not Set"}, + {"p_ambfloorplantent01x", "Not Set"}, + {"p_ambfloorplantravel01x", "Not Set"}, + {"p_ambfloorroll01x", "Not Set"}, + {"p_ambfloorrug01x", "Not Set"}, + {"p_ambfloorrug02x", "Not Set"}, + {"p_ambfloorrug03x", "Not Set"}, + {"p_ambfloorrug04x", "Not Set"}, + {"p_ambfloorrug05x", "Not Set"}, + {"p_ambfloorrug06x", "Not Set"}, + {"p_ambfloorrug07x", "Not Set"}, + {"p_ambfloorrug08x", "Not Set"}, + {"p_ambfloorscrub01x", "Not Set"}, + {"p_ambfloortarp01x", "Not Set"}, + {"p_ambfloorwood01x", "Not Set"}, + {"p_ambforage01x", "Not Set"}, + {"p_ambforage02x", "Not Set"}, + {"p_ambforage03x", "Not Set"}, + {"p_ambframe01x", "Not Set"}, + {"p_ambframe04x", "Not Set"}, + {"p_amb_mattress04x", "Not Set"}, + {"p_ambpack01x", "Not Set"}, + {"p_ambpack02x", "Not Set"}, + {"p_ambpack04x", "Not Set"}, + {"p_ambpack05x", "Not Set"}, + {"p_ambpelt01x", "Not Set"}, + {"p_ambpelt02x", "Not Set"}, + {"p_ambpelt03x", "Not Set"}, + {"p_ambpeltstack01x", "Not Set"}, + {"p_ambpeltstring01x", "Not Set"}, + {"p_ambropedraped01x", "Not Set"}, + {"p_ambropedraped01x_static", "Not Set"}, + {"p_ambropeloop01x", "Not Set"}, + {"p_ambropepile01x", "Not Set"}, + {"p_ambropepile02x", "Not Set"}, + {"p_ambsack02x", "Not Set"}, + {"p_ambstake01x", "Not Set"}, + {"p_ambsticks01x", "Not Set"}, + {"p_ambstove01x", "Not Set"}, + {"p_ambtentbark01b", "Not Set"}, + {"p_ambtentburlap01b", "Not Set"}, + {"p_ambtentburlap01x", "Not Set"}, + {"p_ambtentdebris01x", "Not Set"}, + {"p_ambtentdebris02x", "Not Set"}, + {"p_ambtentdebris03x", "Not Set"}, + {"p_ambtentgrass01x", "Not Set"}, + {"p_ambtenthide01b", "Not Set"}, + {"p_ambtenthide01x", "Not Set"}, + {"p_ambtentleather01b", "Not Set"}, + {"p_ambtentleather01x", "Not Set"}, + {"p_ambtentmulch01b", "Not Set"}, + {"p_ambtentmulch01x", "Not Set"}, + {"p_ambtentoilskin01b", "Not Set"}, + {"p_ambtentoilskin01x", "Not Set"}, + {"p_ambtentpanel01x", "Not Set"}, + {"p_ambtentpatch01b", "Not Set"}, + {"p_ambtentpatch01x", "Not Set"}, + {"p_ambtentplaid01b", "Not Set"}, + {"p_ambtentplaid01x", "Not Set"}, + {"p_ambtentrope01x", "Not Set"}, + {"p_ambtentrope02x", "Not Set"}, + {"p_ambtentrug01b", "Not Set"}, + {"p_ambtentrug01x", "Not Set"}, + {"p_ambtentscrub01b", "Not Set"}, + {"p_ambtentscrub01x", "Not Set"}, + {"p_ambtentsticks01x", "Not Set"}, + {"p_ambtentstring01b", "Not Set"}, + {"p_ambtentstring01x", "Not Set"}, + {"p_ambtentstripe01x", "Not Set"}, + {"p_ambtentswamp01x", "Not Set"}, + {"p_ambtenttrunk01x", "Not Set"}, + {"p_ambwoodpile01x", "Not Set"}, + {"p_ambwoodstack01x", "Not Set"}, + {"p_barrelladle1x_culture", "Not Set"}, + {"p_barrelladle1x_hobo", "Not Set"}, + {"p_barrelladle1x_military", "Not Set"}, + {"p_barrelladle1x_savage", "Not Set"}, + {"p_barrelladle1x_survivor", "Not Set"}, + {"p_bottlecrate_cul", "Not Set"}, + {"p_bottlecrate_hob", "Not Set"}, + {"p_bottlecrate_mil", "Not Set"}, + {"p_bottlecrate_sav", "Not Set"}, + {"p_bottlecrate_sur", "Not Set"}, + {"p_bucketcampcul01x", "Not Set"}, + {"p_bucketcamphob01x", "Not Set"}, + {"p_bucketcampmil01x", "Not Set"}, + {"p_bucketcampsav01x", "Not Set"}, + {"p_camphitchhook01x", "Not Set"}, + {"p_campropetie02x", "Not Set"}, + {"p_campropetie03x", "Not Set"}, + {"p_chairhob01x", "Not Set"}, + {"p_chairhob02x", "Not Set"}, + {"p_chairrusticsav01x", "Not Set"}, + {"p_cratetablemil01x", "Not Set"}, + {"p_gangbandana01x", "Not Set"}, + {"p_gangbed01x", "Not Set"}, + {"p_gangblanket01x", "Not Set"}, + {"p_gangcratecloth01x", "Not Set"}, + {"p_gangfence01x", "Not Set"}, + {"p_gangfence02x", "Not Set"}, + {"p_gangfence03x", "Not Set"}, + {"p_gangframe01x", "Not Set"}, + {"p_gangodriscollmask01x", "Not Set"}, + {"p_gangpost01x", "Not Set"}, + {"p_gangscarf01x", "Not Set"}, + {"p_gangtablemake01x", "Not Set"}, + {"p_gangtablemake02x", "Not Set"}, + {"p_gangtentlemoyne01x", "Not Set"}, + {"p_gangtenttarp01x", "Not Set"}, + {"p_gangwagoncloth01x", "Not Set"}, + {"p_gangwagoncloth02x", "Not Set"}, + {"p_gangwood01x", "Not Set"}, + {"p_ladlecampcul01x", "Not Set"}, + {"p_ladlecamphob01x", "Not Set"}, + {"p_ladlecampsav01x", "Not Set"}, + {"p_ladlecampsur01x", "Not Set"}, + {"p_mp_feedbaghang01x", "Not Set"}, + {"p_tablecul01x", "Not Set"}, + {"p_tablehob1x", "Not Set"}, + {"p_tablesav01x", "Not Set"}, + {"p_tablesur01x", "Not Set"}, + {"s_awningcul", "Not Set"}, + {"s_awninghob", "Not Set"}, + {"s_awningmil", "Not Set"}, + {"s_awningsav", "Not Set"}, + {"s_awningsur", "Not Set"}, + {"s_cul_cookfire01x", "Not Set"}, + {"s_hobo_cookfire01x", "Not Set"}, + {"s_mil_cookfire01x", "Not Set"}, + {"s_sav_cookfire01x", "Not Set"}, + {"s_sur_cookfire01x", "Not Set"}, + {"p_ambcloth03x", "Not Set"}, + {"p_amb_tent01x", "Not Set"}, + {"p_amb_tent02x", "Not Set"}, + {"p_amb_tent03x", "Not Set"}, + {"p_bandage01x", "Not Set"}, + {"p_bandage02x", "Not Set"}, + {"p_bandage03x", "Not Set"}, + {"p_bedrollclosed01x", "Not Set"}, + {"p_bedrollclosed03x", "Not Set"}, + {"p_bedrollclosed_sml01x", "Not Set"}, + {"p_bedrollclosed_sml02x", "Not Set"}, + {"p_bedrollopen01x", "Not Set"}, + {"p_bedrollopen03x", "Not Set"}, + {"p_boilercamp01x", "Not Set"}, + {"p_camp_cup_01x", "Not Set"}, + {"p_campfire01x", "Not Set"}, + {"p_campfire01x_nofire", "Not Set"}, + {"p_campfire02_amb", "Not Set"}, + {"p_campfire02x", "Not Set"}, + {"p_campfire02xb", "Not Set"}, + {"p_campfire02x_combo", "Not Set"}, + {"p_campfire02x_dynamic", "Not Set"}, + {"p_campfire02x_script", "Not Set"}, + {"p_campfire03x", "Not Set"}, + {"p_campfire03x_nofire", "Not Set"}, + {"p_campfire04x", "Not Set"}, + {"p_campfire05x", "Not Set"}, + {"p_campfire05x_script", "Not Set"}, + {"p_campfire_06x", "Not Set"}, + {"p_campfirebasin01x", "Not Set"}, + {"p_campfireburnedout05x", "Not Set"}, + {"p_campfireburntout02x", "Not Set"}, + {"p_campfirechar01x", "Not Set"}, + {"p_campfirecharsml01x", "Not Set"}, + {"p_campfire_coloursmoke01x", "Not Set"}, + {"p_campfirecombined01x", "Not Set"}, + {"p_campfirecombined01x_off", "Not Set"}, + {"p_campfirecombined02x", "Not Set"}, + {"p_campfirecombined03x", "Not Set"}, + {"p_campfirecombined04x", "Not Set"}, + {"p_campfirecook01x", "Not Set"}, + {"p_campfirecook02x", "Not Set"}, + {"p_campfiredebris01x", "Not Set"}, + {"p_campfiredirt01x", "Not Set"}, + {"p_campfiredirt01x002", "Not Set"}, + {"p_campfiredirtsml01x", "Not Set"}, + {"p_campfireembers01x", "Not Set"}, + {"p_campfirefresh01x", "Not Set"}, + {"p_campfirenosmoke01x", "Not Set"}, + {"p_campfireprop02x", "Not Set"}, + {"p_campfirerock01x", "Not Set"}, + {"p_campfirerock02x", "Not Set"}, + {"p_campfirerocksml01x", "Not Set"}, + {"p_campfirerocksml02x", "Not Set"}, + {"p_campfiresmlsmolder01x", "Not Set"}, + {"p_campfiresmolder01x", "Not Set"}, + {"p_campfiretemplate01x", "Not Set"}, + {"p_campfire_under01x", "Not Set"}, + {"p_campfirewhitefish03x", "Not Set"}, + {"p_campfire_win2_01x", "Not Set"}, + {"p_campfire_win2_smolder01x", "Not Set"}, + {"p_camp_plate_01x", "Not Set"}, + {"p_camp_plate_02x", "Not Set"}, + {"p_camp_plate_03x", "Not Set"}, + {"p_canopy66x", "Not Set"}, + {"p_canopycloth", "Not Set"}, + {"p_canopycloth03x", "Not Set"}, + {"p_clothesline01x", "Not Set"}, + {"p_compass01x", "Not Set"}, + {"p_cookfirestructure02x", "Not Set"}, + {"p_cookgrate01x", "Not Set"}, + {"p_cookgrate02x", "Not Set"}, + {"p_cot01x", "Not Set"}, + {"p_coverboar01x", "Not Set"}, + {"p_coverpronghorn01x", "Not Set"}, + {"p_coverpronghorn02x", "Not Set"}, + {"p_craftingpot01x", "Not Set"}, + {"p_firebarrel01x", "Not Set"}, + {"p_firesignal01x", "Not Set"}, + {"p_firesticks01x", "Not Set"}, + {"p_kindlingpile01x", "Not Set"}, + {"p_leanto02x", "Not Set"}, + {"p_leanto03x", "Not Set"}, + {"p_leantopine01x", "Not Set"}, + {"p_map01x", "Not Set"}, + {"p_map02x", "Not Set"}, + {"p_map03x", "Not Set"}, + {"p_matches01x", "Not Set"}, + {"p_matchstick01x", "Not Set"}, + {"p_matchstick01x_pickup", "Not Set"}, + {"p_platedog01x", "Not Set"}, + {"p_prisoncage01x", "Not Set"}, + {"p_prisoncage02x", "Not Set"}, + {"p_stake01x", "Not Set"}, + {"p_stick01x", "Not Set"}, + {"p_stick02x", "Not Set"}, + {"p_stick03x", "Not Set"}, + {"p_stick04x", "Not Set"}, + {"p_stickfirepoker01x", "Not Set"}, + {"p_stump", "Not Set"}, + {"p_stump_01bx", "Not Set"}, + {"p_stump_01x", "Not Set"}, + {"p_stumpwoodsplit01x", "Not Set"}, + {"p_stumpwoodsplit02x", "Not Set"}, + {"p_tarp01x", "Not Set"}, + {"p_tarp04x", "Not Set"}, + {"p_tarpbutcher01x", "Not Set"}, + {"p_tent0101x", "Not Set"}, + {"p_tentarmypup01bx", "Not Set"}, + {"p_tentarmypup01x", "Not Set"}, + {"p_tentarmypup02x", "Not Set"}, + {"p_tentarmypup02x_open", "Not Set"}, + {"p_tentarmypupbroken01x", "Not Set"}, + {"p_tentarmypupbroken02x", "Not Set"}, + {"p_tentarmypupbroken03x", "Not Set"}, + {"p_tentarmypupbroken04x", "Not Set"}, + {"p_tentarmypupbrokensnow01x", "Not Set"}, + {"p_tentdamaged02x", "Not Set"}, + {"p_tent_leento01x", "Not Set"}, + {"p_tent_leento02x", "Not Set"}, + {"p_tent_leento03x", "Not Set"}, + {"p_tent_leento04x", "Not Set"}, + {"p_tentmexican01x", "Not Set"}, + {"p_tentmountainmen01x", "Not Set"}, + {"p_tentmountainmen02x", "Not Set"}, + {"p_tentnorth01bx", "Not Set"}, + {"p_tentnorth01x", "Not Set"}, + {"p_tentplain01x", "Not Set"}, + {"p_tentrack01x", "Not Set"}, + {"p_tentrack02x", "Not Set"}, + {"p_tentrolled01x", "Not Set"}, + {"p_tentrolled02x", "Not Set"}, + {"p_tentrolled04x", "Not Set"}, + {"p_tentstripebroken01x", "Not Set"}, + {"p_advdecompalligator01x", "Not Set"}, + {"p_advdecompalligator03x", "Not Set"}, + {"p_advdecompalligatorlg02x", "Not Set"}, + {"p_advdecompbear01x", "Not Set"}, + {"p_advdecompbearblack01x", "Not Set"}, + {"p_advdecompbovine01x", "Not Set"}, + {"p_advdecompbuff01x", "Not Set"}, + {"p_advdecompbuffalo01x", "Not Set"}, + {"p_advdecompbull01x", "Not Set"}, + {"p_advdecompcaniform01x", "Not Set"}, + {"p_advdecompcat01x", "Not Set"}, + {"p_advdecompcervidae01x", "Not Set"}, + {"p_advdecompcou01x", "Not Set"}, + {"p_advdecompcow01x", "Not Set"}, + {"p_advdecompcoy02x", "Not Set"}, + {"p_advdecompelk01x", "Not Set"}, + {"p_advdecompelk02x", "Not Set"}, + {"p_advdecompelk03x", "Not Set"}, + {"p_advdecompelk04x", "Not Set"}, + {"p_advdecompequine01x", "Not Set"}, + {"p_advdecompgoat01x", "Not Set"}, + {"p_advdecomphorse01x", "Not Set"}, + {"p_advdecomplionmangyx", "Not Set"}, + {"p_advdecompmoose01x", "Not Set"}, + {"p_advdecompmoose02x", "Not Set"}, + {"p_advdecompmoose03x", "Not Set"}, + {"p_advdecompmoose05x", "Not Set"}, + {"p_advdecompmoose06x", "Not Set"}, + {"p_advdecompox01x", "Not Set"}, + {"p_advdecompram01x", "Not Set"}, + {"p_advdecompskunk02x", "Not Set"}, + {"p_advdecompsuidae01x", "Not Set"}, + {"p_alligatorskull01x", "Not Set"}, + {"p_bodypartarm01x", "Not Set"}, + {"p_bodypartarm02x", "Not Set"}, + {"p_bodypartarmfloat01x", "Not Set"}, + {"p_bodypartarmfloat02x", "Not Set"}, + {"p_bodyparthead01x", "Not Set"}, + {"p_bodyparthead02x", "Not Set"}, + {"p_boneshorse01x", "Not Set"}, + {"p_boneshorse02x", "Not Set"}, + {"p_boneshuman01x", "Not Set"}, + {"p_boneshuman02x", "Not Set"}, + {"p_boneshuman03x", "Not Set"}, + {"p_boneshuman04x", "Not Set"}, + {"p_boneshuman05x", "Not Set"}, + {"p_bonesskeleton01x", "Not Set"}, + {"p_bonesskeleton02x", "Not Set"}, + {"p_bonesskeleton03x", "Not Set"}, + {"p_bonesskeleton04x", "Not Set"}, + {"p_bonesskeletonfloat01x", "Not Set"}, + {"p_carcassboneslg01x", "Not Set"}, + {"p_carcassbonesmd01x", "Not Set"}, + {"p_carcassbonespossum01x", "Not Set"}, + {"p_carcassbonesrat01x", "Not Set"}, + {"p_carcassbonessm01x", "Not Set"}, + {"p_carcassbonessnake02x", "Not Set"}, + {"p_carcassbonestoad01x", "Not Set"}, + {"p_carcassbonesturtle02x", "Not Set"}, + {"p_carcassbonesturtsnap03x", "Not Set"}, + {"p_carcassbonesxl01x", "Not Set"}, + {"p_carcasscow01x", "Not Set"}, + {"p_carcasselk01x", "Not Set"}, + {"p_carcasshorse01x", "Not Set"}, + {"p_carcasshorse02x", "Not Set"}, + {"p_carcasslarge01x", "Not Set"}, + {"p_carcassmedium01x", "Not Set"}, + {"p_carcassmediumextra01x", "Not Set"}, + {"p_carcasssmall01x", "Not Set"}, + {"p_carcasssnake01x", "Not Set"}, + {"p_carcassverysmall01x", "Not Set"}, + {"p_carcassverysmallfloat01x", "Not Set"}, + {"p_corpse01x", "Not Set"}, + {"p_corpse02x", "Not Set"}, + {"p_corpse03x", "Not Set"}, + {"p_corpse04x", "Not Set"}, + {"p_corpse05x", "Not Set"}, + {"p_corpse06x", "Not Set"}, + {"p_corpsepile01x", "Not Set"}, + {"p_corpsepile02x", "Not Set"}, + {"p_corpsepile03x", "Not Set"}, + {"p_deadpokerplayer01x", "Not Set"}, + {"p_deerdeadbones01x", "Not Set"}, + {"p_deerdeadcarcass01x", "Not Set"}, + {"p_deerfresh01x", "Not Set"}, + {"p_dinobone01x", "Not Set"}, + {"p_dinobonesskel01x", "Not Set"}, + {"p_dis_bgv_giant_remains", "Not Set"}, + {"p_dis_hen_desertskel", "Not Set"}, + {"p_dis_roa_deadchaingang01", "Not Set"}, + {"p_dis_roa_deadchaingang02", "Not Set"}, + {"p_dis_roa_deadchaingang03", "Not Set"}, + {"p_dis_roa_deadchaingang04", "Not Set"}, + {"p_dis_roa_deadchaingang05", "Not Set"}, + {"p_dis_roa_deadchaingang06", "Not Set"}, + {"p_dis_roa_deadchaingang08", "Not Set"}, + {"p_dis_roa_deadchaingang09", "Not Set"}, + {"p_dogbone01x", "Not Set"}, + {"p_femur01x", "Not Set"}, + {"p_femur02x", "Not Set"}, + {"p_femur03x", "Not Set"}, + {"p_humanskeleton02x_arml", "Not Set"}, + {"p_humanskeleton02x_calfr", "Not Set"}, + {"p_humanskeleton02x_footr", "Not Set"}, + {"p_humanskeleton02x_forearmr", "Not Set"}, + {"p_humanskeleton02x_handr", "Not Set"}, + {"p_humanskeleton02x_legl", "Not Set"}, + {"p_humanskeleton02x_thighr", "Not Set"}, + {"p_humanskeleton02x_torso", "Not Set"}, + {"p_humanskeleton02x_upperarmr", "Not Set"}, + {"p_humanskull01x", "Not Set"}, + {"p_humanskull02x", "Not Set"}, + {"p_massgrave01x", "Not Set"}, + {"p_massgrave02x", "Not Set"}, + {"p_massgrave03x", "Not Set"}, + {"p_pigfresh01x", "Not Set"}, + {"p_roosterfresh01x", "Not Set"}, + {"p_skelremalligator01x", "Not Set"}, + {"p_skelremalligator02x", "Not Set"}, + {"p_skelremalligator03x", "Not Set"}, + {"p_skelremalligator04x", "Not Set"}, + {"p_skelrembird01x", "Not Set"}, + {"p_skelrembird02x", "Not Set"}, + {"p_skelrembird03x", "Not Set"}, + {"p_skelrembird04x", "Not Set"}, + {"p_skelrembovid01x", "Not Set"}, + {"p_skelrembovid02x", "Not Set"}, + {"p_skelrembovid03x", "Not Set"}, + {"p_skelrembuffalo_01x", "Not Set"}, + {"p_skelrembuffalo04x", "Not Set"}, + {"p_skelrembull03x", "Not Set"}, + {"p_skelremcaniform01x", "Not Set"}, + {"p_skelremcaniform02x", "Not Set"}, + {"p_skelremcaniform03x", "Not Set"}, + {"p_skelremcervidae01x", "Not Set"}, + {"p_skelremcervidae02x", "Not Set"}, + {"p_skelremcervidae03x", "Not Set"}, + {"p_skelremdog02x", "Not Set"}, + {"p_skelremequine01x", "Not Set"}, + {"p_skelremequine02x", "Not Set"}, + {"p_skelremequine03x", "Not Set"}, + {"p_skelremfeline01x", "Not Set"}, + {"p_skelremfeline02x", "Not Set"}, + {"p_skelremfeline03x", "Not Set"}, + {"p_skelremfishlarge", "Not Set"}, + {"p_skelremrat01x", "Not Set"}, + {"p_skelremrodent01x", "Not Set"}, + {"p_skelremrodent02x", "Not Set"}, + {"p_skelremrodent03x", "Not Set"}, + {"p_skelremskunk02x", "Not Set"}, + {"p_skelremsuidae01x", "Not Set"}, + {"p_skelremsuidae02x", "Not Set"}, + {"p_skelremsuidae03x", "Not Set"}, + {"p_skull_animal_small_002", "Not Set"}, + {"p_skullcattle02x", "Not Set"}, + {"p_skulldeer01x", "Not Set"}, + {"p_skullelk01x", "Not Set"}, + {"p_skullmoose01x", "Not Set"}, + {"p_skullpost01x", "Not Set"}, + {"p_skullpost02x", "Not Set"}, + {"p_skullpost03x", "Not Set"}, + {"p_skullram01x", "Not Set"}, + {"p_skullram02x", "Not Set"}, + {"p_static_whalebone01x", "Not Set"}, + {"p_trex_partb", "Not Set"}, + {"p_triceratops_partb", "Not Set"}, + {"p_wolfdead01x", "Not Set"}, + {"p_wolffresh01x", "Not Set"}, + {"p_cl_garment04", "Not Set"}, + {"p_cl_garment05", "Not Set"}, + {"p_cl_garment06", "Not Set"}, + {"p_cl_garment07", "Not Set"}, + {"p_cl_garment08", "Not Set"}, + {"p_cl_garment10", "Not Set"}, + {"p_cl_garment11", "Not Set"}, + {"p_cl_gen_articlea", "Not Set"}, + {"p_cl_gen_articleb", "Not Set"}, + {"p_cl_gen_articlec", "Not Set"}, + {"p_cl_gen_articled", "Not Set"}, + {"p_cl_gen_articlee", "Not Set"}, + {"p_cl_gen_articlef", "Not Set"}, + {"p_cl_pin", "Not Set"}, + {"p_apronground01x", "Not Set"}, + {"p_baghang01x", "Not Set"}, + {"p_baghang02x", "Not Set"}, + {"p_bandanaplayer01x", "Not Set"}, + {"p_bloomershanging01x", "Not Set"}, + {"p_blouseground01x", "Not Set"}, + {"p_bootsconfed01x", "Not Set"}, + {"p_cane01bx", "Not Set"}, + {"p_cane01x", "Not Set"}, + {"p_chemisehanging01x", "Not Set"}, + {"p_clothesfolded01x", "Not Set"}, + {"p_clothesfolded02x", "Not Set"}, + {"p_clothespin01x", "Not Set"}, + {"p_crutchjoe01x", "Not Set"}, + {"p_dressform01x", "Not Set"}, + {"p_folded_gamblersshirt01x", "Not Set"}, + {"p_foldedshirt_02", "Not Set"}, + {"p_foldedundershirt01x", "Not Set"}, + {"p_folded_vest01x", "Not Set"}, + {"p_gen_boots01", "Not Set"}, + {"p_gen_boots02", "Not Set"}, + {"p_gloves01x", "Not Set"}, + {"p_hanger01x", "Not Set"}, + {"p_hat01x", "Not Set"}, + {"p_hat02x", "Not Set"}, + {"p_hat_036", "Not Set"}, + {"p_hat03x", "Not Set"}, + {"p_hatbowler01x", "Not Set"}, + {"p_hatbox01x", "Not Set"}, + {"p_hatconfed01x", "Not Set"}, + {"p_hatconfed02x", "Not Set"}, + {"p_hattophat01x", "Not Set"}, + {"p_jacket01x", "Not Set"}, + {"p_jacket02x", "Not Set"}, + {"p_jacket03x", "Not Set"}, + {"p_jacket04x", "Not Set"}, + {"p_jacketsmokinghang01x", "Not Set"}, + {"p_laundrypile01x", "Not Set"}, + {"p_laundrypile01xb", "Not Set"}, + {"p_laundrypile02x", "Not Set"}, + {"p_mask01x", "Not Set"}, + {"p_mask02x", "Not Set"}, + {"p_mask03x", "Not Set"}, + {"p_mask04x", "Not Set"}, + {"p_mask05x", "Not Set"}, + {"p_maskolmec01x", "Not Set"}, + {"p_overalls01x", "Not Set"}, + {"p_parasol01x", "Not Set"}, + {"p_parasol02x", "Not Set"}, + {"p_parasol03x", "Not Set"}, + {"p_parasol_cs02x", "Not Set"}, + {"p_rag02x", "Not Set"}, + {"p_rag03x", "Not Set"}, + {"p_rag04x", "Not Set"}, + {"p_robeprostitutehang02x", "Not Set"}, + {"p_sadiehat01x", "Not Set"}, + {"p_shoe01x", "Not Set"}, + {"p_shoe02bx", "Not Set"}, + {"p_shoe02x", "Not Set"}, + {"p_shoe_female_01x", "Not Set"}, + {"p_shoe_female_02x", "Not Set"}, + {"p_snoeshoe01x", "Not Set"}, + {"p_thimble01x", "Not Set"}, + {"p_thread01x", "Not Set"}, + {"p_threadneedle01x", "Not Set"}, + {"p_umbrella01x", "Not Set"}, + {"p_valsheriff_hat", "Not Set"}, + {"p_walkingstick01x", "Not Set"}, + {"s_hattophatgold01xtemp", "Not Set"}, + {"app_e_01_forcnpy_01", "Not Set"}, + {"p_awning03_h", "Not Set"}, + {"p_awning06_h", "Not Set"}, + {"p_awning66x", "Not Set"}, + {"p_awningnbd_01x", "Not Set"}, + {"p_awningnbd_02x", "Not Set"}, + {"p_awningnbd_03ax", "Not Set"}, + {"p_awningnbd_03bx", "Not Set"}, + {"p_awningnbd_03x", "Not Set"}, + {"p_awningnbd_04ax", "Not Set"}, + {"p_awningnbd_04bx", "Not Set"}, + {"p_awningnbd_04x", "Not Set"}, + {"p_bannerbalcony01x", "Not Set"}, + {"p_bloodyhangrag01x", "Not Set"}, + {"p_bloodyhangrag02x", "Not Set"}, + {"p_bloodytablerag01x", "Not Set"}, + {"p_butchdetails01x", "Not Set"}, + {"p_butchdetails02x", "Not Set"}, + {"p_canopyframelg", "Not Set"}, + {"p_canopyframesm", "Not Set"}, + {"p_clothbalconya01x", "Not Set"}, + {"p_clothbalconyb01x", "Not Set"}, + {"p_clothbalconyc01x", "Not Set"}, + {"p_clothbalconyd01x", "Not Set"}, + {"p_clothbalconye01x", "Not Set"}, + {"p_clothbalconyf01x", "Not Set"}, + {"p_clothcurtain01x", "Not Set"}, + {"p_clothcurtain02x", "Not Set"}, + {"p_clothcurtain03x", "Not Set"}, + {"p_clothcurtain04x", "Not Set"}, + {"p_clothcurtain05x", "Not Set"}, + {"p_clothcurtain06x", "Not Set"}, + {"p_clothcurtain07x", "Not Set"}, + {"p_clothcurtain08x", "Not Set"}, + {"p_clothcurtain09x", "Not Set"}, + {"p_clothdoors01x", "Not Set"}, + {"p_clothdoors02x", "Not Set"}, + {"p_cs_clothstack01x", "Not Set"}, + {"p_hangrag01", "Not Set"}, + {"p_linegarment02x", "Not Set"}, + {"p_linegarment03x", "Not Set"}, + {"p_linegarment04x", "Not Set"}, + {"p_linegarment05x", "Not Set"}, + {"p_linegarment06x", "Not Set"}, + {"p_linegarment07x", "Not Set"}, + {"p_linegarment08x", "Not Set"}, + {"p_linegarment09x", "Not Set"}, + {"p_linegarment10x", "Not Set"}, + {"p_linegarment12x", "Not Set"}, + {"p_linegarment13x", "Not Set"}, + {"p_merkincloth01x", "Not Set"}, + {"p_merkincloth02x", "Not Set"}, + {"p_merkincloth04x", "Not Set"}, + {"p_tornclothobjets_01x", "Not Set"}, + {"p_tornclothobjets_02x", "Not Set"}, + {"p_tornclothobjets_03x", "Not Set"}, + {"p_tornclothobjets_04x", "Not Set"}, + {"p_tornclothobjets_05x", "Not Set"}, + {"p_valauctarp01x", "Not Set"}, + {"p_veh_flatcarcloth01x", "Not Set"}, + {"p_wagoncloth01x", "Not Set"}, + {"s_cs_clothforrobot01x", "Not Set"}, + {"nbx_bank_curtain2_sim", "Not Set"}, + {"nbx_bank_curtain_sim", "Not Set"}, + {"p_abefrmint_curt01a", "Not Set"}, + {"p_abefrmint_curt01b", "Not Set"}, + {"p_abefrmint_curt02", "Not Set"}, + {"p_abefrmint_curt03a", "Not Set"}, + {"p_abefrmint_curt03b", "Not Set"}, + {"p_abefrmint_curt04a", "Not Set"}, + {"p_abefrmint_curt04b", "Not Set"}, + {"p_abefrmint_curt05a", "Not Set"}, + {"p_abefrmint_curt05b", "Not Set"}, + {"p_abefrmint_curt05c", "Not Set"}, + {"p_abefrmint_curt06a", "Not Set"}, + {"p_abefrmint_curt06b", "Not Set"}, + {"p_abefrmint_curt07a", "Not Set"}, + {"p_abefrmint_curt07b", "Not Set"}, + {"p_abefrmint_curt08a", "Not Set"}, + {"p_abefrmint_curt09a", "Not Set"}, + {"p_abefrmint_curt09b", "Not Set"}, + {"p_abefrmint_curt10a", "Not Set"}, + {"p_abefrmint_curt10b", "Not Set"}, + {"p_abefrmint_curt11a", "Not Set"}, + {"p_abefrmint_curt11b", "Not Set"}, + {"p_abefrmint_curt12a", "Not Set"}, + {"p_abefrmint_curt13a", "Not Set"}, + {"p_blajailint_curt01a", "Not Set"}, + {"p_blajailint_curt01b", "Not Set"}, + {"p_blajailint_curt02a", "Not Set"}, + {"p_blajailint_curt02b", "Not Set"}, + {"p_bla_tailor_curt01a", "Not Set"}, + {"p_bla_tailor_curt01b", "Not Set"}, + {"p_bla_tailorint_curt01a", "Not Set"}, + {"p_bla_tailorint_curt01b", "Not Set"}, + {"p_bla_tailorint_curt02", "Not Set"}, + {"p_bla_tailorint_curt03", "Not Set"}, + {"p_bla_theater_curt01a", "Not Set"}, + {"p_bla_theater_curt01b", "Not Set"}, + {"p_bla_theater_curt02a", "Not Set"}, + {"p_bla_theater_curt02b", "Not Set"}, + {"p_bra_mansion_curtain02a", "Not Set"}, + {"p_bra_mansion_curtain02b", "Not Set"}, + {"p_bra_mansion_curtain03a", "Not Set"}, + {"p_bra_mansion_curtain03b", "Not Set"}, + {"p_bra_mansion_curtain03c", "Not Set"}, + {"p_bra_mansion_curtain03d", "Not Set"}, + {"p_bra_mansion_curtain04a", "Not Set"}, + {"p_bra_mansion_curtain04b", "Not Set"}, + {"p_bra_mansion_curtain05a", "Not Set"}, + {"p_bra_mansion_curtain05b", "Not Set"}, + {"p_cat_hse_int_curt01a", "Not Set"}, + {"p_cat_hse_int_curt01b", "Not Set"}, + {"p_cat_hse_int_curt02a", "Not Set"}, + {"p_cat_hse_int_curt02b", "Not Set"}, + {"p_cat_hse_int_curt03a", "Not Set"}, + {"p_cat_hse_int_curt05a", "Not Set"}, + {"p_cat_hse_int_curt05b", "Not Set"}, + {"p_colcabinint_curt01a", "Not Set"}, + {"p_colcabinint_curt01b", "Not Set"}, + {"p_crahse_curt01a", "Not Set"}, + {"p_crahse_curt02a", "Not Set"}, + {"p_crahse_curt02b", "Not Set"}, + {"p_crahse_curt03", "Not Set"}, + {"p_crahse_curt04", "Not Set"}, + {"p_crahse_curt05a", "Not Set"}, + {"p_crahse_curt05b", "Not Set"}, + {"p_daifarm_int_curt01a", "Not Set"}, + {"p_daifarm_int_curt01b", "Not Set"}, + {"p_daifarm_int_curt03", "Not Set"}, + {"p_daifarm_int_curt04a", "Not Set"}, + {"p_daifarm_int_curt04b", "Not Set"}, + {"p_daifarm_int_curt05a", "Not Set"}, + {"p_daifarm_int_curt05b", "Not Set"}, + {"p_daifarm_int_curt06a", "Not Set"}, + {"p_daifarm_int_curt07a", "Not Set"}, + {"p_daifarm_int_curt07b", "Not Set"}, + {"p_daifarm_int_curt08a", "Not Set"}, + {"p_daifarm_int_curt08b", "Not Set"}, + {"p_din_hseint_curt01a", "Not Set"}, + {"p_din_hseint_curt01b", "Not Set"}, + {"p_din_hseint_curt02a", "Not Set"}, + {"p_din_hseint_curt02b", "Not Set"}, + {"p_din_hseint_curt03a", "Not Set"}, + {"p_din_hseint_curt03b", "Not Set"}, + {"p_dowhseint_curt01a", "Not Set"}, + {"p_dowhseint_curt01b", "Not Set"}, + {"p_dowhseint_curt02a", "Not Set"}, + {"p_dowhseint_curt02b", "Not Set"}, + {"p_dowhseint_curt03a", "Not Set"}, + {"p_dowhseint_curt03b", "Not Set"}, + {"p_hanhseint_curt_01", "Not Set"}, + {"p_lak_dock_curt01a", "Not Set"}, + {"p_lak_dock_curt01b", "Not Set"}, + {"p_lak_dock_curt02a", "Not Set"}, + {"p_lak_dock_curt03a", "Not Set"}, + {"p_lak_dock_curt03b", "Not Set"}, + {"p_lak_dock_curt04a", "Not Set"}, + {"p_lak_dock_curt04b", "Not Set"}, + {"p_lak_dock_curt04c", "Not Set"}, + {"p_lak_dock_curt05a", "Not Set"}, + {"p_lak_dock_curt05b", "Not Set"}, + {"p_lak_dock_curt06a", "Not Set"}, + {"p_lak_dock_curt07a", "Not Set"}, + {"p_lak_dock_curt07b", "Not Set"}, + {"p_lak_dock_curt08a", "Not Set"}, + {"p_lak_dock_curt09a", "Not Set"}, + {"p_lak_dock_curt09b", "Not Set"}, + {"p_lak_dock_curt10a", "Not Set"}, + {"p_lnn_shk_curt01", "Not Set"}, + {"p_lnn_shk_curt02", "Not Set"}, + {"p_lnn_shk_curt03", "Not Set"}, + {"p_lnn_shk_curt04", "Not Set"}, + {"p_lnn_shk_curt05", "Not Set"}, + {"p_machouse01_curt01a", "Not Set"}, + {"p_machouse01_curt01b", "Not Set"}, + {"p_machouse01_curt02a", "Not Set"}, + {"p_machouse01_curt02b", "Not Set"}, + {"p_machouse01_curt03a", "Not Set"}, + {"p_machouse01_curt04a", "Not Set"}, + {"p_machouse01_curt04b", "Not Set"}, + {"p_machouse01_curt05", "Not Set"}, + {"p_new_bronte_cur03a", "Not Set"}, + {"p_new_bronte_cur03b", "Not Set"}, + {"p_new_bronte_cur03c", "Not Set"}, + {"p_new_bronte_cur03d", "Not Set"}, + {"p_newgamint_curt01a", "Not Set"}, + {"p_newgamint_curt01b", "Not Set"}, + {"p_newgamint_curt01c", "Not Set"}, + {"p_newgamint_curt01d", "Not Set"}, + {"p_newgamint_curt02a", "Not Set"}, + {"p_newgamint_curt02b", "Not Set"}, + {"p_newgamint_curt03a", "Not Set"}, + {"p_newgamint_curt03b", "Not Set"}, + {"p_newgamint_curt04a", "Not Set"}, + {"p_newgamint_curt04b", "Not Set"}, + {"p_new_magic_curt01a", "Not Set"}, + {"p_new_magic_curt01b", "Not Set"}, + {"p_new_man_gala_cur01a", "Not Set"}, + {"p_new_man_gala_cur01b", "Not Set"}, + {"p_new_man_gala_cur03b", "Not Set"}, + {"p_new_man_gala_cur03c", "Not Set"}, + {"p_new_man_gala_cur06a", "Not Set"}, + {"p_new_man_gala_cur06b", "Not Set"}, + {"p_new_man_gala_cur06c", "Not Set"}, + {"p_new_man_gala_cur06d", "Not Set"}, + {"p_new_man_gala_cur07a", "Not Set"}, + {"p_new_man_gala_cur07b", "Not Set"}, + {"p_new_man_gala_cur08a", "Not Set"}, + {"p_new_man_gala_cur08b", "Not Set"}, + {"p_new_salint_curt01a", "Not Set"}, + {"p_new_salint_curt01b", "Not Set"}, + {"p_new_salint_curt02a", "Not Set"}, + {"p_new_salint_curt02b", "Not Set"}, + {"p_new_theater_curtain", "Not Set"}, + {"p_new_thtr_curt01a", "Not Set"}, + {"p_new_thtr_curt01b", "Not Set"}, + {"p_orahseint_curt01a", "Not Set"}, + {"p_orahseint_curt01b", "Not Set"}, + {"p_orahseint_curt02a", "Not Set"}, + {"p_orahseint_curt02b", "Not Set"}, + {"p_orahseint_curt02c", "Not Set"}, + {"p_orahseint_curt02d", "Not Set"}, + {"p_paihseint_curt01", "Not Set"}, + {"p_paihseint_curt02a", "Not Set"}, + {"p_paihseint_curt02b", "Not Set"}, + {"p_paihseint_curt03a", "Not Set"}, + {"p_paihseint_curt03b", "Not Set"}, + {"p_prohseint_curt_01a", "Not Set"}, + {"p_prohseint_curt_01b", "Not Set"}, + {"p_radhseint_curt01a", "Not Set"}, + {"p_radhseint_curt01b", "Not Set"}, + {"p_radhseint_curt02a", "Not Set"}, + {"p_radhseint_curt02b", "Not Set"}, + {"p_radhseint_curt02c", "Not Set"}, + {"p_radhseint_curt02d", "Not Set"}, + {"p_radhseint_curt02e", "Not Set"}, + {"p_radhseint_curt02f", "Not Set"}, + {"p_radhseint_curt02g", "Not Set"}, + {"p_radhseint_curt02h", "Not Set"}, + {"p_radhseint_curt03a", "Not Set"}, + {"p_radhseint_curt04a", "Not Set"}, + {"p_radhseint_curt04b", "Not Set"}, + {"p_radhseint_curt05a", "Not Set"}, + {"p_radhseint_curt05b", "Not Set"}, + {"p_radhseint_curt06a", "Not Set"}, + {"p_radhseint_curt06b", "Not Set"}, + {"p_rhoban_curtain01", "Not Set"}, + {"p_rhoban_curtain01a", "Not Set"}, + {"p_rhoban_curtain01b", "Not Set"}, + {"p_rhogen_curtain01a", "Not Set"}, + {"p_rhogen_curtain01b", "Not Set"}, + {"p_rhogen_curtain02", "Not Set"}, + {"p_rho_saloon_curtain02b", "Not Set"}, + {"p_rho_saloon_curtain02c", "Not Set"}, + {"p_rho_saloon_curtain05a", "Not Set"}, + {"p_rho_saloon_curtain05b", "Not Set"}, + {"p_rho_saloon_curtain06a", "Not Set"}, + {"p_rho_saloon_curtain06b", "Not Set"}, + {"p_rho_saloon_curtain07a", "Not Set"}, + {"p_rho_saloon_curtain07b", "Not Set"}, + {"p_rho_saloon_curtain08b", "Not Set"}, + {"p_rho_saloon_curtain08c", "Not Set"}, + {"p_rho_saloon_curtain09a", "Not Set"}, + {"p_rho_saloon_curtain09b", "Not Set"}, + {"p_rho_saloon_curtain09c", "Not Set"}, + {"p_rho_saloon_curtain10a", "Not Set"}, + {"p_rho_saloon_curtain10c", "Not Set"}, + {"p_rho_saloon_curtain11a", "Not Set"}, + {"p_rho_saloon_curtain11b", "Not Set"}, + {"p_rho_saloon_curtain11c", "Not Set"}, + {"p_rho_saloon_curtain11d", "Not Set"}, + {"p_rho_saloon_curtain12c", "Not Set"}, + {"p_rho_saloon_curtain12d", "Not Set"}, + {"p_rho_saloon_curtain13a", "Not Set"}, + {"p_rho_saloon_curtain13b", "Not Set"}, + {"p_rho_saloon_curtain13c", "Not Set"}, + {"p_rho_saloon_curtain14a", "Not Set"}, + {"p_rho_saloon_curtain14b", "Not Set"}, + {"p_rho_saloon_curtain14c", "Not Set"}, + {"p_rho_saloon_curtain15c", "Not Set"}, + {"p_rho_saloon_curtain16b", "Not Set"}, + {"p_rho_saloon_curtain16c", "Not Set"}, + {"p_rho_saloon_curtain17a", "Not Set"}, + {"p_rho_saloon_curtain17b", "Not Set"}, + {"p_rho_saloon_curtain17c", "Not Set"}, + {"p_rho_saloon_curtain17d", "Not Set"}, + {"p_rho_saloon_curtain18c", "Not Set"}, + {"p_rho_saloon_curtain18d", "Not Set"}, + {"p_rho_saloon_curtain19a", "Not Set"}, + {"p_rho_saloon_curtain19b", "Not Set"}, + {"p_rho_saloon_curtain19c", "Not Set"}, + {"p_rho_saloon_curtain20a", "Not Set"}, + {"p_rho_saloon_curtain20c", "Not Set"}, + {"p_rhoshf_curtain01", "Not Set"}, + {"p_rhoshf_curtain02", "Not Set"}, + {"p_rhoshf_curtain03", "Not Set"}, + {"p_rhoshf_curtain04", "Not Set"}, + {"p_rhoslu_curtain01", "Not Set"}, + {"p_rhoslu_curtain02", "Not Set"}, + {"p_rhoslu_curtain03", "Not Set"}, + {"p_rhoslu_curtain03a", "Not Set"}, + {"p_rhoslu_curtain03b", "Not Set"}, + {"p_rhoslu_curtain04", "Not Set"}, + {"p_rochseint_curt01a", "Not Set"}, + {"p_rochseint_curt01b", "Not Set"}, + {"p_rochseint_curt02", "Not Set"}, + {"p_rochseint_curt03", "Not Set"}, + {"p_rochseint_curt04a", "Not Set"}, + {"p_rochseint_curt04b", "Not Set"}, + {"p_rochseint_curt05", "Not Set"}, + {"p_rochseint_curt06a", "Not Set"}, + {"p_rochseint_curt06b", "Not Set"}, + {"p_rochseint_curt07a", "Not Set"}, + {"p_rochseint_curt07b", "Not Set"}, + {"p_rochseint_curt08a", "Not Set"}, + {"p_rochseint_curt08b", "Not Set"}, + {"p_rochseint_curt09a", "Not Set"}, + {"p_rochseint_curt09b", "Not Set"}, + {"p_ser_grand_curtain01a", "Not Set"}, + {"p_ser_grand_curtain01b", "Not Set"}, + {"p_ser_grand_curtain03a", "Not Set"}, + {"p_ser_grand_curtain03b", "Not Set"}, + {"p_sha_mansion_curtain01a", "Not Set"}, + {"p_sha_mansion_curtain01b", "Not Set"}, + {"p_sha_mansion_curtain01c", "Not Set"}, + {"p_sha_mansion_curtain02a", "Not Set"}, + {"p_sha_mansion_curtain02b", "Not Set"}, + {"p_sha_mansion_curtain04a", "Not Set"}, + {"p_sha_mansion_curtain04b", "Not Set"}, + {"p_sha_mansion_curtain05a", "Not Set"}, + {"p_sha_mansion_curtain05b", "Not Set"}, + {"p_sha_mansion_curtain06a", "Not Set"}, + {"p_sha_mansion_curtain06b", "Not Set"}, + {"p_sha_mansion_curtain06c", "Not Set"}, + {"p_str_mayor_curt01a", "Not Set"}, + {"p_valba_curtain01", "Not Set"}, + {"p_valdr_curtain01", "Not Set"}, + {"p_valgen_curtain01a", "Not Set"}, + {"p_valgen_curtain01b", "Not Set"}, + {"p_valhot_curtain01a", "Not Set"}, + {"p_valhot_curtain01b", "Not Set"}, + {"p_valhot_curtain01c", "Not Set"}, + {"p_valhot_curtain01d", "Not Set"}, + {"p_valhot_curtain02", "Not Set"}, + {"p_valhot_curtain03a", "Not Set"}, + {"p_valjailblind_01", "Not Set"}, + {"p_valjailblind_02", "Not Set"}, + {"p_valjailcurtain01", "Not Set"}, + {"p_valjailcurtain02", "Not Set"}, + {"p_val_peepcurtain01x", "Not Set"}, + {"p_valsal2_curt01", "Not Set"}, + {"p_valsal2_curt02b", "Not Set"}, + {"p_valsal2_curt03a", "Not Set"}, + {"p_valsal2_curt03b", "Not Set"}, + {"p_valsal2_curt04a", "Not Set"}, + {"p_valsal_curtain01a", "Not Set"}, + {"p_valsal_curtain01c", "Not Set"}, + {"p_valsal_curtain01d", "Not Set"}, + {"p_valsal_curtain02a", "Not Set"}, + {"p_valsal_curtain02b", "Not Set"}, + {"p_valsal_curtain02c", "Not Set"}, + {"p_valsal_curtain03a", "Not Set"}, + {"p_val_trnstn_curtain01a", "Not Set"}, + {"p_val_trnstn_curtain01b", "Not Set"}, + {"p_vansalint_curt01a", "Not Set"}, + {"p_vansalint_curt01b", "Not Set"}, + {"p_vansalint_curt02a", "Not Set"}, + {"p_vansalint_curt02b", "Not Set"}, + {"p_vansalint_curt03a", "Not Set"}, + {"p_vansalint_curt03b", "Not Set"}, + {"p_vansalint_curt04a", "Not Set"}, + {"p_vansalint_curt04b", "Not Set"}, + {"p_vansalint_curt05a", "Not Set"}, + {"p_vansalint_curt06a", "Not Set"}, + {"p_vansalint_curt08a", "Not Set"}, + {"p_vansalint_curt09a", "Not Set"}, + {"p_vansalint_curt10a", "Not Set"}, + {"p_vethse_curt01a", "Not Set"}, + {"brokensticks_aa", "Not Set"}, + {"brokensticks_ab", "Not Set"}, + {"new_p_debrisboard05x_static", "Not Set"}, + {"new_p_debrisboard10x_static", "Not Set"}, + {"new_p_debrisboard13x_static", "Not Set"}, + {"new_p_debrisboard14x_static", "Not Set"}, + {"new_p_debrisboard16x_static", "Not Set"}, + {"new_p_debrisboard18x_static", "Not Set"}, + {"new_p_debrisboard26x_static", "Not Set"}, + {"new_p_debrisboards01x_static", "Not Set"}, + {"new_p_debrisboards02x_static", "Not Set"}, + {"new_p_debrisboardsstd03x_sta", "Not Set"}, + {"new_p_debrispile07x_static", "Not Set"}, + {"new_p_debrispile08x_static", "Not Set"}, + {"new_p_debrispilestd01x_static", "Not Set"}, + {"new_p_debrispilestd02x_static", "Not Set"}, + {"new_p_debrispilestd03x_static", "Not Set"}, + {"new_p_debrispilestd04x_static", "Not Set"}, + {"new_p_debrispilestd05x_static", "Not Set"}, + {"new_p_debrispilestd07x_static", "Not Set"}, + {"new_p_gen_ramp_static", "Not Set"}, + {"new_p_horsepoop02x_static", "Not Set"}, + {"new_p_litternbx01x_static", "Not Set"}, + {"new_p_litternbx02x_static", "Not Set"}, + {"new_p_litternbx03x_static", "Not Set"}, + {"new_p_newspaper01x_static", "Not Set"}, + {"new_p_newspaperstack01x_ip_sta", "Not Set"}, + {"new_p_potsbrokenstd02_static", "Not Set"}, + {"new_p_potsbrokenstd03_static", "Not Set"}, + {"p_bark01x", "Not Set"}, + {"p_barksnow01x", "Not Set"}, + {"p_brokenparts02x", "Not Set"}, + {"p_cannonwreck01x", "Not Set"}, + {"p_debisdoor01x", "Not Set"}, + {"p_debisdoor02x", "Not Set"}, + {"p_debris01x", "Not Set"}, + {"p_debris02x", "Not Set"}, + {"p_debris03x", "Not Set"}, + {"p_debris07x", "Not Set"}, + {"p_debris08x", "Not Set"}, + {"p_debris_ash01x", "Not Set"}, + {"p_debrisboard01x", "Not Set"}, + {"p_debrisboard02x", "Not Set"}, + {"p_debrisboard03x", "Not Set"}, + {"p_debrisboard03x_sea", "Not Set"}, + {"p_debrisboard04x", "Not Set"}, + {"p_debrisboard05x", "Not Set"}, + {"p_debrisboard05x_sea", "Not Set"}, + {"p_debrisboard06x", "Not Set"}, + {"p_debrisboard07x", "Not Set"}, + {"p_debrisboard08x", "Not Set"}, + {"p_debrisboard09x", "Not Set"}, + {"p_debrisboard10x", "Not Set"}, + {"p_debrisboard10x_sea", "Not Set"}, + {"p_debrisboard11x", "Not Set"}, + {"p_debrisboard12x", "Not Set"}, + {"p_debrisboard13x", "Not Set"}, + {"p_debrisboard14x", "Not Set"}, + {"p_debrisboard16x", "Not Set"}, + {"p_debrisboard16xa", "Not Set"}, + {"p_debrisboard16xa_sea", "Not Set"}, + {"p_debrisboard17x", "Not Set"}, + {"p_debrisboard18x", "Not Set"}, + {"p_debrisboard19x", "Not Set"}, + {"p_debrisboard20x", "Not Set"}, + {"p_debrisboard21x", "Not Set"}, + {"p_debrisboard22x", "Not Set"}, + {"p_debrisboard23x", "Not Set"}, + {"p_debrisboard23x_sea", "Not Set"}, + {"p_debrisboard24x", "Not Set"}, + {"p_debrisboard25x", "Not Set"}, + {"p_debrisboard26x", "Not Set"}, + {"p_debrisboard27x", "Not Set"}, + {"p_debrisboards01x", "Not Set"}, + {"p_debrisboards02x", "Not Set"}, + {"p_debrisboards03x", "Not Set"}, + {"p_debris_nbd_docks_01", "Not Set"}, + {"p_debris_nbd_docks_01_static", "Not Set"}, + {"p_debris_nbd_docks_02", "Not Set"}, + {"p_debris_nbd_docks_02_static", "Not Set"}, + {"p_debris_nbd_docks_03", "Not Set"}, + {"p_debris_nbd_docks_03_l_static", "Not Set"}, + {"p_debris_nbd_docks_mossh2", "Not Set"}, + {"p_debris_nbd_docks_mossh3", "Not Set"}, + {"p_debris_nbd_docks_weed1", "Not Set"}, + {"p_debris_nbd_docks_weed1w", "Not Set"}, + {"p_debris_nbd_docks_weed2", "Not Set"}, + {"p_debris_nbd_docks_weed2w", "Not Set"}, + {"p_debrispile01x", "Not Set"}, + {"p_debrispile02x", "Not Set"}, + {"p_debrispile03x", "Not Set"}, + {"p_debrispile04x", "Not Set"}, + {"p_debrispile04x_static", "Not Set"}, + {"p_debrispile05x", "Not Set"}, + {"p_debrispile05x_static", "Not Set"}, + {"p_debrispile06x", "Not Set"}, + {"p_debrispile06x_static", "Not Set"}, + {"p_debrispile07x", "Not Set"}, + {"p_debrispile08x", "Not Set"}, + {"p_dockdebris01x", "Not Set"}, + {"p_dockdebris01x_static", "Not Set"}, + {"p_dockdebris02x", "Not Set"}, + {"p_dockdebris02x_static", "Not Set"}, + {"p_dockdebris03x", "Not Set"}, + {"p_dockdebris04x", "Not Set"}, + {"p_dockdebris04x_static", "Not Set"}, + {"p_dockdebris05x", "Not Set"}, + {"p_dockdebris06x", "Not Set"}, + {"p_dockdebris06x_static", "Not Set"}, + {"p_dockdebris07x", "Not Set"}, + {"p_dockdebris07x_static", "Not Set"}, + {"p_dockdebris08x", "Not Set"}, + {"p_dockdebris09x", "Not Set"}, + {"p_handcart_wreck_01a", "Not Set"}, + {"p_horsepoop02x", "Not Set"}, + {"p_horsepoop03x", "Not Set"}, + {"p_oldmattress01x", "Not Set"}, + {"p_poop01x", "Not Set"}, + {"p_poop02x", "Not Set"}, + {"p_poopile01x", "Not Set"}, + {"p_potsbroken02", "Not Set"}, + {"p_potsbroken03", "Not Set"}, + {"p_sackapple01x", "Not Set"}, + {"p_sackpear01x", "Not Set"}, + {"p_sheeppoop01x", "Not Set"}, + {"p_sheeppoop02x", "Not Set"}, + {"p_sheeppoop03x", "Not Set"}, + {"p_steamer_coal_fire", "Not Set"}, + {"p_tincan01x", "Not Set"}, + {"p_tincan02x", "Not Set"}, + {"p_wall_wood_0001", "Not Set"}, + {"p_wolfpoop01x", "Not Set"}, + {"p_wolfpoop02x", "Not Set"}, + {"p_wolfpoop03x", "Not Set"}, + {"p_caligabarndoor_l_x", "Not Set"}, + {"p_caligabarndoor_r_x", "Not Set"}, + {"p_com_02_bank_gate_l", "Not Set"}, + {"p_com_02_bank_gate_r", "Not Set"}, + {"p_cornwallbarndoor01x", "Not Set"}, + {"p_door60", "Not Set"}, + {"p_door61", "Not Set"}, + {"p_door_agu_gate_lf01x", "Not Set"}, + {"p_door_agu_gate_rt01x", "Not Set"}, + {"p_door_ann_saloon01x", "Not Set"}, + {"p_doorbarn_bee01x_l", "Not Set"}, + {"p_doorbarn_bee01x_r", "Not Set"}, + {"p_doorbarn_pro01x_l", "Not Set"}, + {"p_doorbarn_pro01x_r", "Not Set"}, + {"p_doorbarn_sml01x_l", "Not Set"}, + {"p_doorbarn_sml01x_r", "Not Set"}, + {"p_door_bla_doc_l_01x", "Not Set"}, + {"p_door_bla_doc_l_02x", "Not Set"}, + {"p_door_bla_doc_r_01x", "Not Set"}, + {"p_door_bla_doc_r_02x", "Not Set"}, + {"p_door_bla_jail_l_01x", "Not Set"}, + {"p_door_bla_jail_l_02x", "Not Set"}, + {"p_door_bla_jail_r_01x", "Not Set"}, + {"p_door_bla_jail_r_02x", "Not Set"}, + {"p_doorblaphoto01x", "Not Set"}, + {"p_door_bla_theater01x", "Not Set"}, + {"p_door_bla_theater02x", "Not Set"}, + {"p_door_blk_carriage01x", "Not Set"}, + {"p_door_blk_carriage02x", "Not Set"}, + {"p_door_cal_carriage_l", "Not Set"}, + {"p_door_cal_carriage_r", "Not Set"}, + {"p_door_carmodydellbarn", "Not Set"}, + {"p_door_carmodydellbarn_new", "Not Set"}, + {"p_door_carmodydellbarnr", "Not Set"}, + {"p_door_carmodydellbarnr_new", "Not Set"}, + {"p_doorcircus01x", "Not Set"}, + {"p_door_dov_lab_l_01x", "Not Set"}, + {"p_door_dov_lab_r_01x", "Not Set"}, + {"p_door_emeraldranchbarn01", "Not Set"}, + {"p_door_emeraldranchbarn02", "Not Set"}, + {"p_door_eme_station", "Not Set"}, + {"p_doorfencetall01x_l", "Not Set"}, + {"p_doorfencetall01x_r", "Not Set"}, + {"p_door_nbx_art01x_l", "Not Set"}, + {"p_door_nbx_art01x_r", "Not Set"}, + {"p_door_nbx_art02x_l", "Not Set"}, + {"p_door_nbx_art02x_r", "Not Set"}, + {"p_door_nbxbank01x", "Not Set"}, + {"p_door_nbxbank02x_l", "Not Set"}, + {"p_door_nbxbank02x_r", "Not Set"}, + {"p_door_nbx_bank03x_l", "Not Set"}, + {"p_door_nbx_bank03x_r", "Not Set"}, + {"p_door_nbx_doc01x_l", "Not Set"}, + {"p_door_nbx_doc01x_r", "Not Set"}, + {"p_doornbxfqgcourt01x", "Not Set"}, + {"p_door_nbx_gamble01x", "Not Set"}, + {"p_door_nbx_gambler01x_static", "Not Set"}, + {"p_doornbx_pontalba01x", "Not Set"}, + {"p_doornbx_pontlba1x_static", "Not Set"}, + {"p_door_nbx_re_l_01x", "Not Set"}, + {"p_door_nbx_re_r_01x", "Not Set"}, + {"p_door_nbx_theater01x_l", "Not Set"}, + {"p_door_nbx_theater01x_r", "Not Set"}, + {"p_door_nbxtheater03x_l", "Not Set"}, + {"p_door_nbxtheater03x_r", "Not Set"}, + {"p_door_nbxtrolleydep01x_l", "Not Set"}, + {"p_door_nbxtrolleydep01x_r", "Not Set"}, + {"p_door_nbxtrolleydep02x", "Not Set"}, + {"p_door_new_pie_1", "Not Set"}, + {"p_door_new_pie_2", "Not Set"}, + {"p_door_new_pie_3", "Not Set"}, + {"p_door_old_jail01x", "Not Set"}, + {"p_door_photo02x", "Not Set"}, + {"p_door_photo02x_l", "Not Set"}, + {"p_doorrhobank01x", "Not Set"}, + {"p_door_sd_carriage01x", "Not Set"}, + {"p_door_sd_carriage02x", "Not Set"}, + {"p_door_sd_carriage03x", "Not Set"}, + {"p_door_sd_conservatory01x", "Not Set"}, + {"p_doorsldprtn01x", "Not Set"}, + {"p_door_str_01", "Not Set"}, + {"p_doorstrawberry01x", "Not Set"}, + {"p_doorstrawberry01x_new", "Not Set"}, + {"p_doorstrawberry01x_static", "Not Set"}, + {"p_door_tax_shack01x", "Not Set"}, + {"p_doortrolley01x", "Not Set"}, + {"p_doortrolley02x", "Not Set"}, + {"p_door_val_bankvault02x", "Not Set"}, + {"p_door_val_carriagehouse01x", "Not Set"}, + {"p_door_van_carriage01x", "Not Set"}, + {"p_door_vanhorne_l_01x", "Not Set"}, + {"p_door_vanhorne_r_01x", "Not Set"}, + {"p_door_wrh_01a_r", "Not Set"}, + {"p_door_wrh_01a_r_static", "Not Set"}, + {"p_door_wrh_01_l", "Not Set"}, + {"p_door_wrh_01_l_static", "Not Set"}, + {"p_dovgate01x", "Not Set"}, + {"p_gatebienville01x", "Not Set"}, + {"p_gatebourbon01x_l", "Not Set"}, + {"p_gatebourbon01x_r", "Not Set"}, + {"p_gate_new_wrh_01a_l", "Not Set"}, + {"p_gate_new_wrh_01a_r", "Not Set"}, + {"p_gate_new_wrh_01b_l", "Not Set"}, + {"p_gate_new_wrh_01b_r", "Not Set"}, + {"p_gate_new_wrh_02a_l", "Not Set"}, + {"p_gate_new_wrh_02a_r", "Not Set"}, + {"p_gateshackhf01x", "Not Set"}, + {"p_gateslum01x", "Not Set"}, + {"p_gate_wrh_02b", "Not Set"}, + {"p_inventorcage_door01x", "Not Set"}, + {"p_metalgatesm_std_1", "Not Set"}, + {"p_metalgatestd01x", "Not Set"}, + {"p_nbx_thea_fredr_v2_l", "Not Set"}, + {"p_nbx_thea_fredr_v2_r", "Not Set"}, + {"p_nbx_theater_fredr_l", "Not Set"}, + {"p_nbx_theater_fredr_r", "Not Set"}, + {"p_newtheatre_door_lx", "Not Set"}, + {"p_newtheatre_door_rx", "Not Set"}, + {"p_new_wrh_02_gate_l", "Not Set"}, + {"p_new_wrh_02_gate_r", "Not Set"}, + {"p_russlingbarnl01x", "Not Set"}, + {"p_russlingbarnlock01x", "Not Set"}, + {"p_russlingbarnr01x", "Not Set"}, + {"p_russlinggate01x", "Not Set"}, + {"p_russlinggatel01x", "Not Set"}, + {"p_russlinggatelg01x", "Not Set"}, + {"p_russlinggatelg02x", "Not Set"}, + {"p_russlinggatelgl01x", "Not Set"}, + {"p_russlinggatelgl02x", "Not Set"}, + {"p_russlinggatelgr01x", "Not Set"}, + {"p_russlinggatelock01x", "Not Set"}, + {"p_russlinggatelock02x", "Not Set"}, + {"p_russlinggater01x", "Not Set"}, + {"ann_jail_cell_door_01", "Not Set"}, + {"ann_jail_main_door_01", "Not Set"}, + {"door_lower_l", "Not Set"}, + {"door_lower_r", "Not Set"}, + {"p_bank_safe_med_l", "Not Set"}, + {"p_bank_safe_r", "Not Set"}, + {"p_barnanimalgate01x", "Not Set"}, + {"p_barnanimalgate02x", "Not Set"}, + {"p_barnanimalgate02x_h", "Not Set"}, + {"p_barndoor_half01x", "Not Set"}, + {"p_barn_door_l", "Not Set"}, + {"p_barn_door_r", "Not Set"}, + {"p_barn_door_v2_l", "Not Set"}, + {"p_bee_barn_door_l", "Not Set"}, + {"p_bigvshk_door", "Not Set"}, + {"p_door01x", "Not Set"}, + {"p_door02x", "Not Set"}, + {"p_door02xl_static", "Not Set"}, + {"p_door02xr_static", "Not Set"}, + {"p_door02x_v2", "Not Set"}, + {"p_door03x", "Not Set"}, + {"p_door04x", "Not Set"}, + {"p_door06x", "Not Set"}, + {"p_door06xl_static", "Not Set"}, + {"p_door06xr_static", "Not Set"}, + {"p_door08x", "Not Set"}, + {"p_door09x", "Not Set"}, + {"p_door10x", "Not Set"}, + {"p_door11x", "Not Set"}, + {"p_door11x_beecher", "Not Set"}, + {"p_door12x", "Not Set"}, + {"p_door13x", "Not Set"}, + {"p_door13x_beecher", "Not Set"}, + {"p_door13xl_static", "Not Set"}, + {"p_door13xr_static", "Not Set"}, + {"p_door15x", "Not Set"}, + {"p_door15x_static", "Not Set"}, + {"p_door32x", "Not Set"}, + {"p_door32xl_static", "Not Set"}, + {"p_door32xr_static", "Not Set"}, + {"p_door33x", "Not Set"}, + {"p_door33x_l_1b", "Not Set"}, + {"p_door33x_l_2a", "Not Set"}, + {"p_door33x_l_2a_static", "Not Set"}, + {"p_door33x_l_2a_static001", "Not Set"}, + {"p_door33x_l_2c", "Not Set"}, + {"p_door33x_r_1a", "Not Set"}, + {"p_door34x", "Not Set"}, + {"p_door35x", "Not Set"}, + {"p_door36x", "Not Set"}, + {"p_door36x_static", "Not Set"}, + {"p_door37x", "Not Set"}, + {"p_door41x", "Not Set"}, + {"p_door41x_static", "Not Set"}, + {"p_door43x", "Not Set"}, + {"p_door43x_static", "Not Set"}, + {"p_door44x", "Not Set"}, + {"p_door45x", "Not Set"}, + {"p_door45x_lh", "Not Set"}, + {"p_door45x_static", "Not Set"}, + {"p_door46x", "Not Set"}, + {"p_door46x_cs", "Not Set"}, + {"p_door48x", "Not Set"}, + {"p_door49x", "Not Set"}, + {"p_door49xl_static_l", "Not Set"}, + {"p_door49xr_static_l", "Not Set"}, + {"p_door51x", "Not Set"}, + {"p_door52x", "Not Set"}, + {"p_door53x", "Not Set"}, + {"p_door54x", "Not Set"}, + {"p_door55x", "Not Set"}, + {"p_door55x_static", "Not Set"}, + {"p_door58x", "Not Set"}, + {"p_door59x", "Not Set"}, + {"p_door62x", "Not Set"}, + {"p_door63a", "Not Set"}, + {"p_door64b", "Not Set"}, + {"p_dooraberdeen01x", "Not Set"}, + {"p_dooraberdeen01x_static", "Not Set"}, + {"p_dooraberdeen02x", "Not Set"}, + {"p_dooraberdeen03x", "Not Set"}, + {"p_dooradlers01x", "Not Set"}, + {"p_dooradlers02x", "Not Set"}, + {"p_doorannbathnroom01x", "Not Set"}, + {"p_door_annsheriff01x", "Not Set"}, + {"p_door_barn02", "Not Set"}, + {"p_door_barn_1x2_static", "Not Set"}, + {"p_door_barn_3m", "Not Set"}, + {"p_door_barn_r", "Not Set"}, + {"p_door_bla_bankvault", "Not Set"}, + {"p_doorbrafrench00lx", "Not Set"}, + {"p_doorbrafrench00rx", "Not Set"}, + {"p_doorbrafrench01lx", "Not Set"}, + {"p_doorbrafrench01rx", "Not Set"}, + {"p_doorbrafrench02lx", "Not Set"}, + {"p_doorbrafrench02lx_static", "Not Set"}, + {"p_doorbrafrench02rx", "Not Set"}, + {"p_doorbrafrench02rx_static", "Not Set"}, + {"p_doorbrait01bx", "Not Set"}, + {"p_doorbrait01x", "Not Set"}, + {"p_doorbrait01xl_static", "Not Set"}, + {"p_doorbrait01xr_static", "Not Set"}, + {"p_doorcatjak_01x", "Not Set"}, + {"p_doorcemetary01x", "Not Set"}, + {"p_door_cinco_l_01x", "Not Set"}, + {"p_door_cinco_r_01x", "Not Set"}, + {"p_door_clemens01", "Not Set"}, + {"p_door_clemens02x", "Not Set"}, + {"p_door_combank01x", "Not Set"}, + {"p_doorcomstead01x", "Not Set"}, + {"p_doorcomstead02x", "Not Set"}, + {"p_doorcorral01x", "Not Set"}, + {"p_doordblarch02x", "Not Set"}, + {"p_doordebris04x", "Not Set"}, + {"p_door_emebarn02x", "Not Set"}, + {"p_doorfortwallacel01x", "Not Set"}, + {"p_doorfortwallacel01x_dmg", "Not Set"}, + {"p_doorfortwallacer01x", "Not Set"}, + {"p_doorfortwallacer01x_dmg", "Not Set"}, + {"p_doorframe_01a", "Not Set"}, + {"p_doorframe_01b", "Not Set"}, + {"p_doorframe_f1", "Not Set"}, + {"p_doorfrench00lx", "Not Set"}, + {"p_doorfrench00rx", "Not Set"}, + {"p_doorfrench01l", "Not Set"}, + {"p_doorfrench01r", "Not Set"}, + {"p_door_frghtslide01x", "Not Set"}, + {"p_door_frghtslide01x_static", "Not Set"}, + {"p_door_frghtslide02x", "Not Set"}, + {"p_doorjailsgl_a", "Not Set"}, + {"p_doorjailsgl_b", "Not Set"}, + {"p_doorlocked01a", "Not Set"}, + {"p_doorlocked03a", "Not Set"}, + {"p_doorlocked04x", "Not Set"}, + {"p_doorlocked04xl_static", "Not Set"}, + {"p_doorlocked04xr_static", "Not Set"}, + {"p_doorlocked04x_static", "Not Set"}, + {"p_doorlocked37a", "Not Set"}, + {"p_doorlocked43a", "Not Set"}, + {"p_doorlocked48a", "Not Set"}, + {"p_doormansiongate01x", "Not Set"}, + {"p_doormausoleum01x", "Not Set"}, + {"p_door_mil01x_l", "Not Set"}, + {"p_door_mil01x_r", "Not Set"}, + {"p_doornbd26x", "Not Set"}, + {"p_doornbd26x_static", "Not Set"}, + {"p_doornbd31a_x", "Not Set"}, + {"p_doornbd31rx", "Not Set"}, + {"p_doornbd31x", "Not Set"}, + {"p_doornbd31x_r_static", "Not Set"}, + {"p_doornbd31x_static", "Not Set"}, + {"p_doornbd32rx", "Not Set"}, + {"p_doornbd32x", "Not Set"}, + {"p_doornbd35x", "Not Set"}, + {"p_doornbd38x", "Not Set"}, + {"p_doornbd39a", "Not Set"}, + {"p_doornbd39bx", "Not Set"}, + {"p_doornbd39x", "Not Set"}, + {"p_doornbd39x_static", "Not Set"}, + {"p_doornbd40a_x", "Not Set"}, + {"p_doornbd40a_x_static", "Not Set"}, + {"p_doornbd40b_x", "Not Set"}, + {"p_doornbd40b_x_static", "Not Set"}, + {"p_doornbd41x", "Not Set"}, + {"p_doornbd6panelfqg01x", "Not Set"}, + {"p_doornbd6pnlfqg01x_static", "Not Set"}, + {"p_doornbdaly01x", "Not Set"}, + {"p_doornbdaly01xl_static", "Not Set"}, + {"p_doornbdaly01xr_static", "Not Set"}, + {"p_doornbfrench1a_x", "Not Set"}, + {"p_doornbfrench1b_x", "Not Set"}, + {"p_doornbfrench2lx", "Not Set"}, + {"p_doornbfrench2lx_static", "Not Set"}, + {"p_doornbfrench2rx", "Not Set"}, + {"p_doornbfrench2rx_static", "Not Set"}, + {"p_door_nbx_dctr01xr_static", "Not Set"}, + {"p_door_nbx_decatur01x_l", "Not Set"}, + {"p_door_nbx_decatur01x_r", "Not Set"}, + {"p_door_new_saloon02x", "Not Set"}, + {"p_door_prong_mans01x", "Not Set"}, + {"p_door_rho_doctor", "Not Set"}, + {"p_door_rho_doctorl_static", "Not Set"}, + {"p_door_rho_doctorr_static", "Not Set"}, + {"p_doorrhogensto01x", "Not Set"}, + {"p_doorrhogensto02x", "Not Set"}, + {"p_doorrhogunsmith01x", "Not Set"}, + {"p_doorrhosaloon01_l", "Not Set"}, + {"p_doorrhosaloon01_r", "Not Set"}, + {"p_doorrhosheriff01x", "Not Set"}, + {"p_doorrhosheriff02x", "Not Set"}, + {"p_door_rho_stable", "Not Set"}, + {"p_doorriverboat01x", "Not Set"}, + {"p_door_sal_lckd_1", "Not Set"}, + {"p_doorsaloon02x", "Not Set"}, + {"p_doorscanwood02", "Not Set"}, + {"p_doorscanwood02_static", "Not Set"}, + {"p_doorsdgala1lx", "Not Set"}, + {"p_doorsdgala1rx", "Not Set"}, + {"p_doorsgl01x", "Not Set"}, + {"p_doorsgl01xl_static", "Not Set"}, + {"p_doorsgl01xr_static", "Not Set"}, + {"p_doorsgl02x", "Not Set"}, + {"p_doorsgllocked01a", "Not Set"}, + {"p_doorsglw01x", "Not Set"}, + {"p_doorsglw01x_static", "Not Set"}, + {"p_doorshadybelle01", "Not Set"}, + {"p_door_sha_man01x", "Not Set"}, + {"p_door_sha_man02x", "Not Set"}, + {"p_door_sha_man03x", "Not Set"}, + {"p_door_sha_man_a", "Not Set"}, + {"p_door_sha_man_l", "Not Set"}, + {"p_doorsnow01x", "Not Set"}, + {"p_doorsnow01x_b", "Not Set"}, + {"p_doorsnow01x_c", "Not Set"}, + {"p_door_stable01x", "Not Set"}, + {"p_door_tum_barn_l", "Not Set"}, + {"p_door_tum_barn_r", "Not Set"}, + {"p_doorval6pnlchl01x_static", "Not Set"}, + {"p_doorval6pnlchr01x_static", "Not Set"}, + {"p_door_val_bank00_lx", "Not Set"}, + {"p_door_val_bank00_rx", "Not Set"}, + {"p_door_val_bank01", "Not Set"}, + {"p_door_val_bank02", "Not Set"}, + {"p_door_val_bankvault", "Not Set"}, + {"p_door_val_barn01", "Not Set"}, + {"p_door_val_barn02", "Not Set"}, + {"p_door_val_barn02_l", "Not Set"}, + {"p_door_val_barn02_r", "Not Set"}, + {"p_door_val_barn03", "Not Set"}, + {"p_door_val_barn_l", "Not Set"}, + {"p_door_val_barn_r", "Not Set"}, + {"p_door_val_barn_static", "Not Set"}, + {"p_doorvaldr01x", "Not Set"}, + {"p_door_val_genstore", "Not Set"}, + {"p_door_val_genstore2", "Not Set"}, + {"p_door_val_genstore3", "Not Set"}, + {"p_door_val_genstore_bell", "Not Set"}, + {"p_door_val_jail01x", "Not Set"}, + {"p_door_val_jail02x", "Not Set"}, + {"p_door_val_jail_bent01x", "Not Set"}, + {"p_door_val_jail_cell01x", "Not Set"}, + {"p_door_val_jail_cell02x", "Not Set"}, + {"p_door_val_jail_lckd_1", "Not Set"}, + {"p_door_val_lckd_1", "Not Set"}, + {"p_door_vault_nbx1", "Not Set"}, + {"p_door_vault_nbx2", "Not Set"}, + {"p_doorvh_bronte_l", "Not Set"}, + {"p_doorvh_bronte_r", "Not Set"}, + {"p_doorvh_saloon_l", "Not Set"}, + {"p_doorvh_saloon_r", "Not Set"}, + {"p_door_wglass01x", "Not Set"}, + {"p_doorwhite01x", "Not Set"}, + {"p_door_wornbarn_l", "Not Set"}, + {"p_door_wornbarn_r", "Not Set"}, + {"p_eme_barn_door3", "Not Set"}, + {"p_eme_barn_shutter", "Not Set"}, + {"p_fence02ax_gate", "Not Set"}, + {"p_fencetall_04ax_gate", "Not Set"}, + {"p_gate_cattle01b", "Not Set"}, + {"p_gate_cattle02a", "Not Set"}, + {"p_gategala01x", "Not Set"}, + {"p_gate_goat01x", "Not Set"}, + {"p_gate_goat02x", "Not Set"}, + {"p_gate_horse01a", "Not Set"}, + {"p_gate_horse02a", "Not Set"}, + {"p_gate_horse03a", "Not Set"}, + {"p_gatemsl_l", "Not Set"}, + {"p_gatemsl_r", "Not Set"}, + {"p_gatenbd01x", "Not Set"}, + {"p_gatenbd02x", "Not Set"}, + {"p_gatenbd03x", "Not Set"}, + {"p_gate_picket_01l", "Not Set"}, + {"p_gate_picket_01r", "Not Set"}, + {"p_gate_stable02x", "Not Set"}, + {"p_gateundrtkr01x", "Not Set"}, + {"p_gate_valbankvlt", "Not Set"}, + {"p_gate_wornbarn01x", "Not Set"}, + {"p_gate_wornbarn02x", "Not Set"}, + {"p_gate_wornbarn02x001", "Not Set"}, + {"p_gate_wornbarn04x", "Not Set"}, + {"p_gate_wornbarn05x_l", "Not Set"}, + {"p_gate_wornbarn05x_r", "Not Set"}, + {"p_new_cs_door30x", "Not Set"}, + {"p_new_cs_door31x", "Not Set"}, + {"p_pro_stabledoor01x", "Not Set"}, + {"p_pro_stabledoor02x", "Not Set"}, + {"p_rhobarngate", "Not Set"}, + {"p_rhobarngate_h", "Not Set"}, + {"p_rhomansionfredr_l", "Not Set"}, + {"p_rhomansionfredr_r", "Not Set"}, + {"p_safebla01x", "Not Set"}, + {"p_safenbd01x", "Not Set"}, + {"p_safenbd02x", "Not Set"}, + {"p_ser_gate", "Not Set"}, + {"p_sis_frontgateb_l", "Not Set"}, + {"p_sis_frontgateb_r", "Not Set"}, + {"p_str03_frtslidel", "Not Set"}, + {"p_str03_frtslider", "Not Set"}, + {"val_p_door_lckd_1", "Not Set"}, + {"val_p_door_sal_lckd_1", "Not Set"}, + {"p_absinthetap01x", "Not Set"}, + {"p_alcoholcontainer", "Not Set"}, + {"p_beermugglass01x", "Not Set"}, + {"p_bottle001x", "Not Set"}, + {"p_bottle002x", "Not Set"}, + {"p_bottle003x", "Not Set"}, + {"p_bottle004x", "Not Set"}, + {"p_bottle005x", "Not Set"}, + {"p_bottle006x", "Not Set"}, + {"p_bottle007x", "Not Set"}, + {"p_bottle008x", "Not Set"}, + {"p_bottle008x_big", "Not Set"}, + {"p_bottle009x", "Not Set"}, + {"p_bottle010x", "Not Set"}, + {"p_bottle011x", "Not Set"}, + {"p_bottle012x", "Not Set"}, + {"p_bottle013x", "Not Set"}, + {"p_bottle01x", "Not Set"}, + {"p_bottle02x", "Not Set"}, + {"p_bottle03x", "Not Set"}, + {"p_bottleabsinthe01x", "Not Set"}, + {"p_bottleBeer01a", "Not Set"}, + {"p_bottlebeer01a_1", "Not Set"}, + {"p_bottlebeer01a_2", "Not Set"}, + {"p_bottlebeer01a_3", "Not Set"}, + {"p_bottlebeer01x", "Not Set"}, + {"p_bottlebeer02x", "Not Set"}, + {"p_bottlebeer03x", "Not Set"}, + {"p_bottlebeer04x", "Not Set"}, + {"p_bottlebrandy01x", "Not Set"}, + {"p_bottlebrandy02x", "Not Set"}, + {"p_bottlecastor01x", "Not Set"}, + {"p_bottlechampagne01x", "Not Set"}, + {"p_bottlecognac01x", "Not Set"}, + {"p_bottlecrate01x", "Not Set"}, + {"p_bottlecrate02x", "Not Set"}, + {"p_bottlecrate02x_dirty", "Not Set"}, + {"p_bottlecrate03x", "Not Set"}, + {"p_bottlecrate05x", "Not Set"}, + {"p_bottlefat01x", "Not Set"}, + {"p_bottlejd01x", "Not Set"}, + {"p_bottlejd_used01x", "Not Set"}, + {"p_bottleopener01x", "Not Set"}, + {"p_bottleredmist01x", "Not Set"}, + {"p_bottlesherry01x", "Not Set"}, + {"p_bottleslim01x", "Not Set"}, + {"p_bottletequila01x", "Not Set"}, + {"p_bottletequila02x", "Not Set"}, + {"p_bottletequilafull02x", "Not Set"}, + {"p_bottletequilafull_cs01x", "Not Set"}, + {"p_bottletoothpwdr01x", "Not Set"}, + {"p_bottlewine01x", "Not Set"}, + {"p_bottlewine02x", "Not Set"}, + {"p_bottlewine03x", "Not Set"}, + {"p_bottlewine04x", "Not Set"}, + {"p_brokenbeerbottle01x", "Not Set"}, + {"p_bucketstand02x", "Not Set"}, + {"p_canteen01x", "Not Set"}, + {"p_canteen02x", "Not Set"}, + {"p_champagnebucket01x", "Not Set"}, + {"p_champagnebucket02x", "Not Set"}, + {"p_cofeeurn01x", "Not Set"}, + {"p_cork01x", "Not Set"}, + {"p_cork02x", "Not Set"}, + {"p_corkscrew01x", "Not Set"}, + {"p_decanter01x", "Not Set"}, + {"p_flask01x", "Not Set"}, + {"p_flask01xb", "Not Set"}, + {"p_flask02x", "Not Set"}, + {"p_glass001x", "Not Set"}, + {"p_glass003x", "Not Set"}, + {"p_glass01x", "Not Set"}, + {"p_glass02x", "Not Set"}, + {"p_glass03x", "Not Set"}, + {"p_glass04x", "Not Set"}, + {"p_glass05x", "Not Set"}, + {"p_glass06x", "Not Set"}, + {"p_glass07x", "Not Set"}, + {"p_glassbrandy01x", "Not Set"}, + {"p_glass_cs06x", "Not Set"}, + {"p_glassfancy01x", "Not Set"}, + {"p_glasstallbeer01x", "Not Set"}, + {"p_glenswhisky01x", "Not Set"}, + {"p_icebucket01x", "Not Set"}, + {"p_jug01bx", "Not Set"}, + {"p_jug01x", "Not Set"}, + {"p_jug01x_a", "Not Set"}, + {"p_jug01x_b", "Not Set"}, + {"p_jug02x", "Not Set"}, + {"p_jug03x", "Not Set"}, + {"p_jugwicker01x", "Not Set"}, + {"p_liqueurset01x", "Not Set"}, + {"p_liqueurset02x", "Not Set"}, + {"p_milkcan01x", "Not Set"}, + {"p_milkcan03x", "Not Set"}, + {"p_moonshinebtl01x", "Not Set"}, + {"p_moonshinebtl02x", "Not Set"}, + {"p_mug01x", "Not Set"}, + {"p_mugcoffee01x", "Not Set"}, + {"p_pitcher01x", "Not Set"}, + {"p_pitcher02x", "Not Set"}, + {"p_pitcher03bx", "Not Set"}, + {"p_saloonpropgroup01x", "Not Set"}, + {"p_saloonpropgroup02x", "Not Set"}, + {"p_saloonpropgroup03x", "Not Set"}, + {"p_saloonpropgroup04x", "Not Set"}, + {"p_shaker01x", "Not Set"}, + {"p_shotglass01x", "Not Set"}, + {"p_siphon01x", "Not Set"}, + {"p_teacup01x", "Not Set"}, + {"p_tiptray01x", "Not Set"}, + {"p_whiskeyfountain01x", "Not Set"}, + {"p_whiskeyglass01x", "Not Set"}, + {"p_winecooler01x", "Not Set"}, + {"p_bag_leather_doctor", "Not Set"}, + {"p_bottlecordial01x", "Not Set"}, + {"p_bottlemedicine01x", "Not Set"}, + {"p_bottlemedicine02x", "Not Set"}, + {"p_bottlemedicine03x", "Not Set"}, + {"p_bottlemedicine04x", "Not Set"}, + {"p_bottlemedicine05x", "Not Set"}, + {"p_bottlemedicine06x", "Not Set"}, + {"p_bottlemedicine07x", "Not Set"}, + {"p_bottlemedicine08x", "Not Set"}, + {"p_bottlemedicine09x", "Not Set"}, + {"p_bottlemedicine10x", "Not Set"}, + {"p_bottlemedicine13x", "Not Set"}, + {"p_bottlemedicine14x", "Not Set"}, + {"p_bottlemedicine15x", "Not Set"}, + {"p_bottlemedicine16x", "Not Set"}, + {"p_bottlemedicine20x", "Not Set"}, + {"p_bottlemedicine21x", "Not Set"}, + {"p_bottlemedicine23x", "Not Set"}, + {"p_bottlemedicine24x", "Not Set"}, + {"p_bottlemedicine25x", "Not Set"}, + {"p_bottlemedicine26x", "Not Set"}, + {"p_bottlemedicine27x", "Not Set"}, + {"p_bottlesnakeoil01x", "Not Set"}, + {"p_bottlesnakeoil02x", "Not Set"}, + {"p_bottlesnakeoil03x", "Not Set"}, + {"p_bottlesnakeoilcork_cs01x", "Not Set"}, + {"p_bottlesnakeoil_cs01x", "Not Set"}, + {"p_cigar01x", "Not Set"}, + {"p_cigar02x", "Not Set"}, + {"p_cigarbox01x", "Not Set"}, + {"p_cigarbox02x", "Not Set"}, + {"p_cigarbox03x", "Not Set"}, + {"p_cigarbox04x", "Not Set"}, + {"p_cigarette01x", "Not Set"}, + {"p_cigarettebox01x", "Not Set"}, + {"p_cigarette_cs01x", "Not Set"}, + {"p_cigarette_cs02x", "Not Set"}, + {"p_cigarette_dynamic_01x", "Not Set"}, + {"p_cigaretteholder01x", "Not Set"}, + {"p_cigarlit01x", "Not Set"}, + {"p_cigarstand", "Not Set"}, + {"p_cigarthin01x", "Not Set"}, + {"p_eyeserum01x", "Not Set"}, + {"p_jarspecimen01x", "Not Set"}, + {"p_jarspecimen02x", "Not Set"}, + {"p_jarspecimen03x", "Not Set"}, + {"p_medicine01x", "Not Set"}, + {"p_medicinechest01x", "Not Set"}, + {"p_medicine_fty", "Not Set"}, + {"p_mortar_01", "Not Set"}, + {"p_opiumpipe01x", "Not Set"}, + {"p_perfume01bx", "Not Set"}, + {"p_perfume01cx", "Not Set"}, + {"p_perfume01x", "Not Set"}, + {"p_pestle_01", "Not Set"}, + {"p_pipe01x", "Not Set"}, + {"p_pipe02x", "Not Set"}, + {"p_pipe03x", "Not Set"}, + {"p_still01x", "Not Set"}, + {"p_still02x", "Not Set"}, + {"p_still03x", "Not Set"}, + {"p_still04x", "Not Set"}, + {"p_tobaccoclump01x", "Not Set"}, + {"p_tobaccotin01x", "Not Set"}, + {"p_tobaccotin02x", "Not Set"}, + {"p_tobaccotin03x", "Not Set"}, + {"p_tonic01x", "Not Set"}, + {"p_tonic02x", "Not Set"}, + {"p_vg_jar01x", "Not Set"}, + {"p_vialmedicine01x", "Not Set"}, + {"p_babyplant", "Not Set"}, + {"p_blanketsadle02x", "Not Set"}, + {"p_brander01x", "Not Set"}, + {"p_brushhorse01x", "Not Set"}, + {"p_brushhorse02x", "Not Set"}, + {"p_bulb01x", "Not Set"}, + {"p_chickencoopcart01x", "Not Set"}, + {"p_chickennest01x", "Not Set"}, + {"p_cloches_01x", "Not Set"}, + {"p_cloches_02x", "Not Set"}, + {"p_cordwood01x", "Not Set"}, + {"p_cordwood02x", "Not Set"}, + {"p_cordwood03x", "Not Set"}, + {"p_cottonbale01x", "Not Set"}, + {"p_cottonbale01x_mp", "Not Set"}, + {"p_cottonbale02x", "Not Set"}, + {"p_cottonbale_03a", "Not Set"}, + {"p_cottonbale_03b", "Not Set"}, + {"p_cottonbale_03c", "Not Set"}, + {"p_cottonbale_03d", "Not Set"}, + {"p_cottonbale03x", "Not Set"}, + {"p_cottonbale04x", "Not Set"}, + {"p_cottonbalecovermp01", "Not Set"}, + {"p_cottonbalenbx01a", "Not Set"}, + {"p_cottonbalenbx01b", "Not Set"}, + {"p_cottonbalenbx01c", "Not Set"}, + {"p_cottonbalenbx02a", "Not Set"}, + {"p_cotton_ground_01", "Not Set"}, + {"p_dirtpot01x", "Not Set"}, + {"p_dockcraneload01x", "Not Set"}, + {"p_feedbag01bx", "Not Set"}, + {"p_feedbag01x", "Not Set"}, + {"p_feedbags01x", "Not Set"}, + {"p_feedbags02x", "Not Set"}, + {"p_feedbags02x_sml", "Not Set"}, + {"p_feed_scoop_001", "Not Set"}, + {"p_feedtrough01x", "Not Set"}, + {"p_feedtroughsml01x", "Not Set"}, + {"p_gndblnd_cotton01x", "Not Set"}, + {"p_gndblnd_cotton02x", "Not Set"}, + {"p_gndblnd_cotton03x", "Not Set"}, + {"p_gndblnd_debris01x", "Not Set"}, + {"p_gndblnd_debris02x", "Not Set"}, + {"p_gndblnd_debris03x", "Not Set"}, + {"p_gndblnd_hay01x", "Not Set"}, + {"p_gndblnd_hay02x", "Not Set"}, + {"p_gndblnd_hay03x", "Not Set"}, + {"p_handfulofhay", "Not Set"}, + {"p_handplow01x", "Not Set"}, + {"p_harness01x", "Not Set"}, + {"p_harness02x", "Not Set"}, + {"p_harness04x", "Not Set"}, + {"p_haybale01x", "Not Set"}, + {"p_haybale03x", "Not Set"}, + {"p_haybale03x_anim", "Not Set"}, + {"p_haybale04x", "Not Set"}, + {"p_haybalebloody01x", "Not Set"}, + {"p_haybalecover01x", "Not Set"}, + {"p_haybalecover02x", "Not Set"}, + {"p_haybalecover03x", "Not Set"}, + {"p_haybalescorched01x", "Not Set"}, + {"p_haybalesit01x", "Not Set"}, + {"p_haybalestack01x", "Not Set"}, + {"p_haybalestack02x", "Not Set"}, + {"p_haybalestack03x", "Not Set"}, + {"p_haycartcover01x", "Not Set"}, + {"p_haycartcover02x", "Not Set"}, + {"p_hayhook01x", "Not Set"}, + {"p_haypile01x", "Not Set"}, + {"p_haypile02x", "Not Set"}, + {"p_haypile03x", "Not Set"}, + {"p_haypile04x", "Not Set"}, + {"p_haypilepitchfork01x", "Not Set"}, + {"p_haypile_wag01x", "Not Set"}, + {"p_haypilewheelbarrel01x", "Not Set"}, + {"p_horsesaddle01x", "Not Set"}, + {"p_horsesaddlepart01x", "Not Set"}, + {"p_horseshoe01x", "Not Set"}, + {"p_outhouse01x", "Not Set"}, + {"p_outhouse02x", "Not Set"}, + {"p_packetseeds01x", "Not Set"}, + {"p_pitchfork01x", "Not Set"}, + {"p_pitchfork02x", "Not Set"}, + {"p_pitchfork03x", "Not Set"}, + {"p_rake01x", "Not Set"}, + {"p_ropehook_01x", "Not Set"}, + {"p_saddlestand01x", "Not Set"}, + {"p_saddlestand02x", "Not Set"}, + {"p_saddlestand03x", "Not Set"}, + {"p_scarecrow01x", "Not Set"}, + {"p_scarecrow03x", "Not Set"}, + {"p_scarecrow04x", "Not Set"}, + {"p_scarecrow05x", "Not Set"}, + {"p_scarecrow_06", "Not Set"}, + {"p_scythe01x", "Not Set"}, + {"p_shedtool01x", "Not Set"}, + {"p_sugarsacknbx01x", "Not Set"}, + {"p_terracottapot01x", "Not Set"}, + {"p_terracottapotstack01x", "Not Set"}, + {"p_tobaccoleavesdried01x", "Not Set"}, + {"p_tobaccoleavesdried02x", "Not Set"}, + {"p_tobacoplant_01x", "Not Set"}, + {"p_tobacoplant_04x", "Not Set"}, + {"p_wallropeinteract01x", "Not Set"}, + {"p_waterbucket01x", "Not Set"}, + {"p_wateringcan01x", "Not Set"}, + {"p_wateringcansm01x", "Not Set"}, + {"p_well03x", "Not Set"}, + {"p_windmillwheel02x", "Not Set"}, + {"s_dockcraneload02x", "Not Set"}, + {"s_scarecrow02x", "Not Set"}, + {"p_app_stablefence01ax", "Not Set"}, + {"p_app_stablefence01x", "Not Set"}, + {"p_app_stablefence02x", "Not Set"}, + {"p_app_stablefence03x", "Not Set"}, + {"p_app_stablefence04x", "Not Set"}, + {"p_app_stablefence05x", "Not Set"}, + {"p_app_stablefence06x", "Not Set"}, + {"p_app_stablegate01x", "Not Set"}, + {"p_app_stablegate02x", "Not Set"}, + {"p_app_stablepost01x", "Not Set"}, + {"p_bra_fence01x", "Not Set"}, + {"p_bra_fence02x", "Not Set"}, + {"p_bra_fence03x", "Not Set"}, + {"p_bra_fencepost01x", "Not Set"}, + {"p_cal_fence01x", "Not Set"}, + {"p_cal_fence02x", "Not Set"}, + {"p_cal_fence03x", "Not Set"}, + {"p_cal_fence04x", "Not Set"}, + {"p_cal_fencepost01x", "Not Set"}, + {"p_cal_gatel01x", "Not Set"}, + {"p_cal_gatel01x_h", "Not Set"}, + {"p_cal_gatel01x_post", "Not Set"}, + {"p_cal_gater01x", "Not Set"}, + {"p_cal_gater01x_h", "Not Set"}, + {"p_chicken_coop01x", "Not Set"}, + {"p_chicken_coop_post01x", "Not Set"}, + {"p_chickenfence01x", "Not Set"}, + {"p_chickenfence02x", "Not Set"}, + {"p_chickenfence03x", "Not Set"}, + {"p_chickenfencepost", "Not Set"}, + {"p_chickengate01x", "Not Set"}, + {"p_chickengate01x_h", "Not Set"}, + {"p_chickengate01x_post", "Not Set"}, + {"p_chickengate02x", "Not Set"}, + {"p_chickengate02x_h", "Not Set"}, + {"p_chickengate02x_post", "Not Set"}, + {"p_emrfence02ax", "Not Set"}, + {"p_emrfence02bx", "Not Set"}, + {"p_emrfence02cx", "Not Set"}, + {"p_emrfence02dx", "Not Set"}, + {"p_emrfence03ax", "Not Set"}, + {"p_emrfence03bx", "Not Set"}, + {"p_emrfence03cx", "Not Set"}, + {"p_emrfencegatel02x", "Not Set"}, + {"p_emrfencegatel02x_h", "Not Set"}, + {"p_emrfencegatel03x", "Not Set"}, + {"p_emrfencegatel03x_h", "Not Set"}, + {"p_emrfencegatel03x_post", "Not Set"}, + {"p_emrfencegater02x", "Not Set"}, + {"p_emrfencegater02x_h", "Not Set"}, + {"p_emrfencegater03x", "Not Set"}, + {"p_emrfencegater03x_h", "Not Set"}, + {"p_emrfencepost02x", "Not Set"}, + {"p_fence01ax", "Not Set"}, + {"p_fence01bx", "Not Set"}, + {"p_fence01bxnew", "Not Set"}, + {"p_fence01cx", "Not Set"}, + {"p_fence01dx", "Not Set"}, + {"p_fence02ax", "Not Set"}, + {"p_fence02bx", "Not Set"}, + {"p_fence02cx", "Not Set"}, + {"p_fence02dx", "Not Set"}, + {"p_fence02_post", "Not Set"}, + {"p_fence02_post_snow", "Not Set"}, + {"p_fence02_postx", "Not Set"}, + {"p_fence02_snglpost", "Not Set"}, + {"p_fence02_snglpostx", "Not Set"}, + {"p_fence02x", "Not Set"}, + {"p_fence03a_sngl_snow", "Not Set"}, + {"p_fence03ax", "Not Set"}, + {"p_fence03b_sngl_snow", "Not Set"}, + {"p_fence03b_sngl_snowx", "Not Set"}, + {"p_fence03bx", "Not Set"}, + {"p_fence03c_sngl_snow", "Not Set"}, + {"p_fence03cx", "Not Set"}, + {"p_fence03d_sngl_snow", "Not Set"}, + {"p_fence03d_sngl_snowx", "Not Set"}, + {"p_fence03dx", "Not Set"}, + {"p_fence03_post_snow", "Not Set"}, + {"p_fence03_post_snowx", "Not Set"}, + {"p_fence04ax", "Not Set"}, + {"p_fence04bx", "Not Set"}, + {"p_fence04cx", "Not Set"}, + {"p_fence06ax", "Not Set"}, + {"p_fence06bx", "Not Set"}, + {"p_fence06cx", "Not Set"}, + {"p_fence06dx", "Not Set"}, + {"p_fence06ex", "Not Set"}, + {"p_fence06fx", "Not Set"}, + {"p_fence06gx", "Not Set"}, + {"p_fence06hx", "Not Set"}, + {"p_fence09ax", "Not Set"}, + {"p_fence10cx", "Not Set"}, + {"p_fence10cx_fall", "Not Set"}, + {"p_fence11bx", "Not Set"}, + {"p_fence11x", "Not Set"}, + {"p_fence12x", "Not Set"}, + {"p_fence13x", "Not Set"}, + {"p_fence14", "Not Set"}, + {"p_fence14x", "Not Set"}, + {"p_fencebeam_01ax", "Not Set"}, + {"p_fencebeamghosttown_qpb_01bx", "Not Set"}, + {"p_fencebeamstandard_qpa_01ax", "Not Set"}, + {"p_fencebeamstd_qpas_03dx", "Not Set"}, + {"p_fencebeamstick_qpc_01bx", "Not Set"}, + {"p_fencebeamstick_qpc_01cx", "Not Set"}, + {"p_fencebeamstick_qpc_01dx", "Not Set"}, + {"p_fencebreakpost01x", "Not Set"}, + {"p_fence_cattle01x", "Not Set"}, + {"p_fence_cattle01x_post01", "Not Set"}, + {"p_fence_cattle02x", "Not Set"}, + {"p_fence_cattle03x", "Not Set"}, + {"p_fence_cattle04x", "Not Set"}, + {"p_fence_cattle05x", "Not Set"}, + {"p_fenceghosttown_qpb_01ax", "Not Set"}, + {"p_fenceghosttown_qpb_01bx", "Not Set"}, + {"p_fence_lorge01x", "Not Set"}, + {"p_fence_lorge02x", "Not Set"}, + {"p_fence_lorgepost01x", "Not Set"}, + {"p_fence_picket_01_rhoa", "Not Set"}, + {"p_fence_picket_02_rhoa", "Not Set"}, + {"p_fence_picket_w_01", "Not Set"}, + {"p_fence_picket_w_02", "Not Set"}, + {"p_fence_picket_w_03", "Not Set"}, + {"p_fence_picket_w_post", "Not Set"}, + {"p_fence_picket_w_postx", "Not Set"}, + {"p_fence_plank01", "Not Set"}, + {"p_fence_plank02", "Not Set"}, + {"p_fence_plank03", "Not Set"}, + {"p_fence_plank04", "Not Set"}, + {"p_fence_plank_post01", "Not Set"}, + {"p_fencepost_01ax", "Not Set"}, + {"p_fencepost_01bx", "Not Set"}, + {"p_fencepost_01cx", "Not Set"}, + {"p_fencepost_01dx", "Not Set"}, + {"p_fencepost_01x", "Not Set"}, + {"p_fencepostghosttown_qpb_01bx", "Not Set"}, + {"p_fencepostghosttown_qpb_01x", "Not Set"}, + {"p_fencepostpicket_qpd_01x", "Not Set"}, + {"p_fencepoststandard01x", "Not Set"}, + {"p_fencepoststandard_qpa_02bx", "Not Set"}, + {"p_fencepoststandard_qpa_02x", "Not Set"}, + {"p_fencepoststandard_qpa_03bx", "Not Set"}, + {"p_fencepoststandard_qpa_03x", "Not Set"}, + {"p_fencepoststick_qpc_01x", "Not Set"}, + {"p_fenceslant01x", "Not Set"}, + {"p_fenceslant02x", "Not Set"}, + {"p_fence_slm_01", "Not Set"}, + {"p_fence_slm_02", "Not Set"}, + {"p_fence_slm_03", "Not Set"}, + {"p_fence_slm_04", "Not Set"}, + {"p_fence_slm_05", "Not Set"}, + {"p_fencestick01ax", "Not Set"}, + {"p_fencestick01bx", "Not Set"}, + {"p_fencetall_04ax", "Not Set"}, + {"p_fencetall_04bx", "Not Set"}, + {"p_fencetall_04cx", "Not Set"}, + {"p_fencetall_04dx", "Not Set"}, + {"p_fencetall_04ex", "Not Set"}, + {"p_fencetall_04fx", "Not Set"}, + {"p_fencetall_04gx", "Not Set"}, + {"p_fencetall_04hx", "Not Set"}, + {"p_fencetall_04icv", "Not Set"}, + {"p_fencetall_04ix", "Not Set"}, + {"p_fencetall_04jx", "Not Set"}, + {"p_fencetall_05a", "Not Set"}, + {"p_fencetall_05b", "Not Set"}, + {"p_fencetall_05c", "Not Set"}, + {"p_fencetall_05d", "Not Set"}, + {"p_fencetall_05e", "Not Set"}, + {"p_fence_wall01x", "Not Set"}, + {"p_fence_wall01x_lt_gate", "Not Set"}, + {"p_fence_wall01x_post", "Not Set"}, + {"p_fence_wall01x_rt_gate", "Not Set"}, + {"p_fence_wall02x", "Not Set"}, + {"p_fence_wall03x", "Not Set"}, + {"p_fence_wall04x", "Not Set"}, + {"p_fencewhite01x", "Not Set"}, + {"p_fence_wht_01", "Not Set"}, + {"p_fence_wht_01x", "Not Set"}, + {"p_fence_wht_post", "Not Set"}, + {"p_fence_wht_postx", "Not Set"}, + {"p_gate_hinge01", "Not Set"}, + {"p_gate_hinge02", "Not Set"}, + {"p_gate_hinge03", "Not Set"}, + {"p_gen_fence_xpost01a", "Not Set"}, + {"p_gen_fence_xpost01b", "Not Set"}, + {"p_gen_fence_xpost01c", "Not Set"}, + {"p_gen_hi_fence01", "Not Set"}, + {"p_propemfence02x", "Not Set"}, + {"p_rho_fencez_posta", "Not Set"}, + {"p_rid_fence01x", "Not Set"}, + {"p_rid_fence02x", "Not Set"}, + {"p_rid_fence03x", "Not Set"}, + {"p_rid_fence04x", "Not Set"}, + {"p_rid_fence_post01x", "Not Set"}, + {"prop_fncwood_09d", "Not Set"}, + {"prop_fncwood_12a", "Not Set"}, + {"prop_fncwood_15c", "Not Set"}, + {"prop_test_fence_cam_01", "Not Set"}, + {"prop_test_fence_cam_2", "Not Set"}, + {"prop_test_fence_cam_3", "Not Set"}, + {"p_snow_stablefence01x", "Not Set"}, + {"p_snow_stablefence02x", "Not Set"}, + {"p_snow_stablefence03x", "Not Set"}, + {"p_snow_stablefence04x", "Not Set"}, + {"p_snow_stablefence05x_post", "Not Set"}, + {"p_val_aucgate1m01x", "Not Set"}, + {"p_val_aucgate1m01x_h", "Not Set"}, + {"p_val_aucgate1m01x_post", "Not Set"}, + {"p_val_aucgate1m02x", "Not Set"}, + {"p_val_aucgate1m02x_h", "Not Set"}, + {"p_val_aucgate2m01x", "Not Set"}, + {"p_val_aucgate2m01x_h", "Not Set"}, + {"p_val_aucgate2m01x_post", "Not Set"}, + {"p_val_fencez_bentl", "Not Set"}, + {"p_val_fencez_bentr", "Not Set"}, + {"p_val_fencez_blcd01x", "Not Set"}, + {"p_val_fencez_blcd02x", "Not Set"}, + {"p_val_fencez_brkna", "Not Set"}, + {"p_val_fencez_brknb", "Not Set"}, + {"p_val_fencez_falla", "Not Set"}, + {"p_val_fencez_fallb", "Not Set"}, + {"p_val_fencez_flata", "Not Set"}, + {"p_val_fencez_flatb", "Not Set"}, + {"p_val_fencez_loosea", "Not Set"}, + {"p_val_fencez_looseb", "Not Set"}, + {"p_val_fencez_loosec", "Not Set"}, + {"p_val_fencez_posta", "Not Set"}, + {"p_val_gate2m01x", "Not Set"}, + {"p_val_gate2m01x_h", "Not Set"}, + {"p_val_gate2m01x_post", "Not Set"}, + {"p_val_gate2m02x", "Not Set"}, + {"p_val_gate2m02x_h", "Not Set"}, + {"p_val_gate2m02x_post", "Not Set"}, + {"p_val_gate2m03x", "Not Set"}, + {"p_val_gate2m03x_h", "Not Set"}, + {"p_val_gate2m03x_post", "Not Set"}, + {"p_val_gate3m01x", "Not Set"}, + {"p_val_gate3m01x_h", "Not Set"}, + {"p_val_gate3m01x_post", "Not Set"}, + {"p_val_gate_snow01x", "Not Set"}, + {"p_val_gate_snow01x_post", "Not Set"}, + {"val_fencepen01_ax", "Not Set"}, + {"val_fencepen01_bx", "Not Set"}, + {"val_fencepen01_cx", "Not Set"}, + {"val_fencepen01_dx", "Not Set"}, + {"val_fencepen01_ex", "Not Set"}, + {"val_fencepen01_fx", "Not Set"}, + {"val_p_fenceaa", "Not Set"}, + {"val_p_fenceab", "Not Set"}, + {"val_p_fenceac", "Not Set"}, + {"val_p_fenceagate", "Not Set"}, + {"val_p_fenceagate_h", "Not Set"}, + {"val_p_fenceagate_post", "Not Set"}, + {"val_p_fenceapost", "Not Set"}, + {"p_apple01x", "Not Set"}, + {"p_apple01x_burnt", "Not Set"}, + {"p_apple02x", "Not Set"}, + {"p_applepile01x", "Not Set"}, + {"p_applerotten01x", "Not Set"}, + {"p_bacon_cabbage01x", "Not Set"}, + {"p_bakingsoda01x", "Not Set"}, + {"p_banana01x", "Not Set"}, + {"p_bananabushel01x", "Not Set"}, + {"p_banana_day_01x", "Not Set"}, + {"p_banana_day_04x", "Not Set"}, + {"p_banana_day_08x", "Not Set"}, + {"p_barrelapples01x", "Not Set"}, + {"p_barrellemons01x", "Not Set"}, + {"p_barreloranges01x", "Not Set"}, + {"p_barrelpears01x", "Not Set"}, + {"p_barrelpotatoes01x", "Not Set"}, + {"p_barrelrabbit01x", "Not Set"}, + {"p_barrelsalt01x", "Not Set"}, + {"p_barrelsaltlid01x", "Not Set"}, + {"p_barrelsaltlid01x_sea", "Not Set"}, + {"p_basketapple01x", "Not Set"}, + {"p_basketorange01x", "Not Set"}, + {"p_beefstew01x", "Not Set"}, + {"p_beefstew_spoon01x", "Not Set"}, + {"p_beet_01x", "Not Set"}, + {"p_biscuitsandwich01x", "Not Set"}, + {"p_blackberry01x", "Not Set"}, + {"p_bluecrab01x", "Not Set"}, + {"p_bread01x", "Not Set"}, + {"p_bread03x", "Not Set"}, + {"p_bread04x", "Not Set"}, + {"p_bread05x", "Not Set"}, + {"p_bread06x", "Not Set"}, + {"p_bread07x", "Not Set"}, + {"p_bread_08_ab", "Not Set"}, + {"p_bread_08_ab_slice_a", "Not Set"}, + {"p_bread_08_ab_slice_b", "Not Set"}, + {"p_bread_08_ab_slice_c", "Not Set"}, + {"p_bread_13_ab", "Not Set"}, + {"p_bread_13_ab_s", "Not Set"}, + {"p_bread_13_ab_s_a", "Not Set"}, + {"p_bread_13_ab_s_b", "Not Set"}, + {"p_bread_14_ab", "Not Set"}, + {"p_bread_14_ab_s", "Not Set"}, + {"p_bread_14_ab_s_a", "Not Set"}, + {"p_bread_14_ab_s_b", "Not Set"}, + {"p_breadbasket01x", "Not Set"}, + {"p_breadbasketsm", "Not Set"}, + {"p_breastmuttoncombo01x", "Not Set"}, + {"p_butterknife01x", "Not Set"}, + {"p_can01x", "Not Set"}, + {"p_can02x", "Not Set"}, + {"p_can03x", "Not Set"}, + {"p_can04x", "Not Set"}, + {"p_can05x", "Not Set"}, + {"p_can06x", "Not Set"}, + {"p_can07x", "Not Set"}, + {"p_can08x", "Not Set"}, + {"p_can09x", "Not Set"}, + {"p_can10x", "Not Set"}, + {"p_can11x", "Not Set"}, + {"p_canclean05x", "Not Set"}, + {"p_canclean06x", "Not Set"}, + {"p_candyjar01x", "Not Set"}, + {"p_candyjar02x", "Not Set"}, + {"p_candyjar03x", "Not Set"}, + {"p_candyjar04x", "Not Set"}, + {"p_candyjar05x", "Not Set"}, + {"p_canempty09x", "Not Set"}, + {"p_canempty11x", "Not Set"}, + {"p_capicola_meat", "Not Set"}, + {"p_capicola_meat_a", "Not Set"}, + {"p_capicola_meat_b", "Not Set"}, + {"p_capicola_meat_b02x", "Not Set"}, + {"p_capicola_meat_b03x", "Not Set"}, + {"p_capicola_meat_b04x", "Not Set"}, + {"p_carrot01x", "Not Set"}, + {"p_carrot02x", "Not Set"}, + {"p_carrot03x", "Not Set"}, + {"p_carrots_01x", "Not Set"}, + {"p_carrots_02x", "Not Set"}, + {"p_carrots_03x", "Not Set"}, + {"p_cartvend01x", "Not Set"}, + {"p_cartvend02x", "Not Set"}, + {"p_caviar01x", "Not Set"}, + {"p_cheeseblock_a", "Not Set"}, + {"p_cheeseblock_b", "Not Set"}, + {"p_cheeseblock_c", "Not Set"}, + {"p_cheeseblock_d", "Not Set"}, + {"p_chicken01x", "Not Set"}, + {"p_chickenbarrel01x", "Not Set"}, + {"p_chickenbarrel02x", "Not Set"}, + {"p_chickenhalf01x", "Not Set"}, + {"p_chickenhalf02x", "Not Set"}, + {"p_chickenhalf03x", "Not Set"}, + {"p_chillicurry01x", "Not Set"}, + {"p_chillicurry_spoon01x", "Not Set"}, + {"p_cinnamon_01x", "Not Set"}, + {"p_clear_consum01x", "Not Set"}, + {"p_collardgreens01x", "Not Set"}, + {"p_corn01bx", "Not Set"}, + {"p_corn01x", "Not Set"}, + {"p_corn02x", "Not Set"}, + {"p_corn03x", "Not Set"}, + {"p_corn04x", "Not Set"}, + {"p_cornbread01x", "Not Set"}, + {"p_cornbread02x", "Not Set"}, + {"p_corndry01x", "Not Set"}, + {"p_crab_cakes01x", "Not Set"}, + {"p_crab_plate", "Not Set"}, + {"p_crab_plate_02", "Not Set"}, + {"p_crab_plate_03", "Not Set"}, + {"p_crab_plate_eaten", "Not Set"}, + {"p_crackedwheatmilk01x", "Not Set"}, + {"p_crackerpile01x", "Not Set"}, + {"p_crateapple01b", "Not Set"}, + {"p_crateapple01x", "Not Set"}, + {"p_crayfish01x", "Not Set"}, + {"p_cutsack_sugar01x", "Not Set"}, + {"p_cutsack_sugar01x_cut", "Not Set"}, + {"p_cutsack_sugar02x", "Not Set"}, + {"p_cutsack_sugar02x_cut", "Not Set"}, + {"p_dinnerfork01x", "Not Set"}, + {"p_dinnerknife01x", "Not Set"}, + {"p_dinnerplate01x", "Not Set"}, + {"p_duckdead01x", "Not Set"}, + {"p_duckdead02x", "Not Set"}, + {"p_fish01x", "Not Set"}, + {"p_fishbasin01x", "Not Set"}, + {"p_fishhalf01x", "Not Set"}, + {"p_fishhalf02x", "Not Set"}, + {"p_fishhalf03x", "Not Set"}, + {"p_fishstew01x", "Not Set"}, + {"p_fishstew_spoon01x", "Not Set"}, + {"p_floursack01x", "Not Set"}, + {"p_floursack02bx", "Not Set"}, + {"p_floursack02x", "Not Set"}, + {"p_floursack04x", "Not Set"}, + {"p_floursack05x", "Not Set"}, + {"p_floursack06x", "Not Set"}, + {"p_floursack07x", "Not Set"}, + {"p_floursack08x", "Not Set"}, + {"p_floursacksm02x", "Not Set"}, + {"p_floursackstack02x", "Not Set"}, + {"p_floursackstack03x", "Not Set"}, + {"p_floursackstack04x", "Not Set"}, + {"p_flourstack01bx", "Not Set"}, + {"p_flourstack01x", "Not Set"}, + {"p_food01ax", "Not Set"}, + {"p_food01ax_eaten", "Not Set"}, + {"p_food01bx", "Not Set"}, + {"p_food01x", "Not Set"}, + {"p_food01x_eaten", "Not Set"}, + {"p_food02ax", "Not Set"}, + {"p_food02x", "Not Set"}, + {"p_food02x_eaten", "Not Set"}, + {"p_food03x", "Not Set"}, + {"p_fork_knife01x", "Not Set"}, + {"p_friedcatfish01x", "Not Set"}, + {"p_garlic_02x", "Not Set"}, + {"p_garlic_02x_burnt", "Not Set"}, + {"p_gourdsbundle01x", "Not Set"}, + {"p_gourdsbundle01xc", "Not Set"}, + {"p_grainbag01x", "Not Set"}, + {"p_green_beans02x", "Not Set"}, + {"p_group_pears01", "Not Set"}, + {"p_ham01x", "Not Set"}, + {"p_hamsandwich01x", "Not Set"}, + {"p_lemon01x", "Not Set"}, + {"p_lemongarnish01x", "Not Set"}, + {"p_lemonsqueezer01x", "Not Set"}, + {"p_lettuce01x", "Not Set"}, + {"p_liversandwich01x", "Not Set"}, + {"p_lobster_bisque01x", "Not Set"}, + {"p_lobster_spoon01x", "Not Set"}, + {"p_main_breastmutton01x", "Not Set"}, + {"p_main_cornedbeef01x", "Not Set"}, + {"p_main_friedcatfish02x", "Not Set"}, + {"p_main_lambfrytoast01x", "Not Set"}, + {"p_main_lamb_heart01x", "Not Set"}, + {"p_main_lobstertail01x", "Not Set"}, + {"p_main_prairiechicken01x", "Not Set"}, + {"p_main_primerib01x", "Not Set"}, + {"p_main_roastbeef01x", "Not Set"}, + {"p_mango01x", "Not Set"}, + {"p_mashedpotato02x", "Not Set"}, + {"p_masonjar01x", "Not Set"}, + {"p_masonjar_empty01x", "Not Set"}, + {"p_masonjarmoonshine01x", "Not Set"}, + {"p_meatchunks01x", "Not Set"}, + {"p_meatchunks01x_raw", "Not Set"}, + {"p_meatchunk_sm01x", "Not Set"}, + {"p_meatchunk_sm02x", "Not Set"}, + {"p_meatchunk_sm03x", "Not Set"}, + {"p_meatchunk_sm04x", "Not Set"}, + {"p_meatfilet01x", "Not Set"}, + {"p_meatpile01x", "Not Set"}, + {"p_nutbowl01x", "Not Set"}, + {"p_oatcake01x", "Not Set"}, + {"p_oatmeal01x", "Not Set"}, + {"p_oatmeal_spoon01x", "Not Set"}, + {"p_oil01x", "Not Set"}, + {"p_oniongreen02x", "Not Set"}, + {"p_oniongreen03x", "Not Set"}, + {"p_onionred01x", "Not Set"}, + {"p_onionred02x", "Not Set"}, + {"p_onionwhite_01x", "Not Set"}, + {"p_oyster_plate", "Not Set"}, + {"p_parsnip_02x", "Not Set"}, + {"p_parsniplarge_01x", "Not Set"}, + {"p_peach_cobbler01x", "Not Set"}, + {"p_peach_spoon01x", "Not Set"}, + {"p_peanuts01x", "Not Set"}, + {"p_peanutsingle01x", "Not Set"}, + {"p_pear01", "Not Set"}, + {"p_pear_01x", "Not Set"}, + {"p_pear_02x", "Not Set"}, + {"p_pecanbowl01x", "Not Set"}, + {"p_pepper02x", "Not Set"}, + {"p_pepper03x", "Not Set"}, + {"p_pepperdry01x", "Not Set"}, + {"p_peppershaker01x", "Not Set"}, + {"p_pickledeggs01x", "Not Set"}, + {"p_pickledpig01x", "Not Set"}, + {"p_pie01x", "Not Set"}, + {"p_pie01x_cut", "Not Set"}, + {"p_pie01x_slice", "Not Set"}, + {"p_pigbarrel01x", "Not Set"}, + {"p_pigpile01x", "Not Set"}, + {"p_pigroast", "Not Set"}, + {"p_platterfruit01x", "Not Set"}, + {"p_platterfruit02x", "Not Set"}, + {"p_pork_meat", "Not Set"}, + {"p_pork_meat_a", "Not Set"}, + {"p_pork_meat_b", "Not Set"}, + {"p_pork_meat_c", "Not Set"}, + {"p_potato01x", "Not Set"}, + {"p_potato01x_burnt", "Not Set"}, + {"p_potatohalf01x", "Not Set"}, + {"p_potatohalf02x", "Not Set"}, + {"p_potatored01x", "Not Set"}, + {"p_potatored02x", "Not Set"}, + {"p_potatosweet01x", "Not Set"}, + {"p_potatosweet02x", "Not Set"}, + {"p_potatowhite01x", "Not Set"}, + {"p_potatowhite02x", "Not Set"}, + {"p_potatowhite03x", "Not Set"}, + {"p_pumpkin_01bx", "Not Set"}, + {"p_pumpkin_01x", "Not Set"}, + {"p_pumpkin_02x", "Not Set"}, + {"p_redbeanrice01x", "Not Set"}, + {"p_redbirdbreast01xa", "Not Set"}, + {"p_redbirdbreast01xb", "Not Set"}, + {"p_redefleshymeat01xa", "Not Set"}, + {"p_redefleshymeat01xb", "Not Set"}, + {"p_redfishfilet01xa", "Not Set"}, + {"p_redfishfilet01xb", "Not Set"}, + {"p_rho_gen_hml_a", "Not Set"}, + {"p_rho_gen_hml_b", "Not Set"}, + {"p_rutabaga_01x", "Not Set"}, + {"p_sack_01x", "Not Set"}, + {"p_sack_02x", "Not Set"}, + {"p_sack_03x", "Not Set"}, + {"p_sack04x", "Not Set"}, + {"p_sack05x", "Not Set"}, + {"p_sack06x", "Not Set"}, + {"p_sack07x", "Not Set"}, + {"p_sackcorn01x", "Not Set"}, + {"p_sack_sugar01x", "Not Set"}, + {"p_sacksugar01x", "Not Set"}, + {"p_saladfork01x", "Not Set"}, + {"p_saladplate01x", "Not Set"}, + {"p_salami_a_meat", "Not Set"}, + {"p_salami_a_meat02bx", "Not Set"}, + {"p_salami_a_meat02x", "Not Set"}, + {"p_salami_a_meat_b", "Not Set"}, + {"p_salami_a_meat_c", "Not Set"}, + {"p_salami_a_meat_d", "Not Set"}, + {"p_salami_a_meat_d2", "Not Set"}, + {"p_salami_a_meat_d4", "Not Set"}, + {"p_saltshaker01x", "Not Set"}, + {"p_side_greenpeaspotato01x", "Not Set"}, + {"p_sidespoon01x", "Not Set"}, + {"p_singleoyster01x", "Not Set"}, + {"p_soppressata_a_meat", "Not Set"}, + {"p_soppressata_a_meat02bx", "Not Set"}, + {"p_soppressata_a_meat02x", "Not Set"}, + {"p_soppressata_a_meat_b", "Not Set"}, + {"p_soppressata_a_meat_c", "Not Set"}, + {"p_soppressata_b_meat", "Not Set"}, + {"p_soppressata_b_meat_b", "Not Set"}, + {"p_soppressata_b_meat_c", "Not Set"}, + {"p_soup_01", "Not Set"}, + {"p_soupbowl01x", "Not Set"}, + {"p_soupbowl03x", "Not Set"}, + {"p_squash01x", "Not Set"}, + {"p_squashacorn01x", "Not Set"}, + {"p_standapple01bx", "Not Set"}, + {"p_standapple01x", "Not Set"}, + {"p_standapple02bx", "Not Set"}, + {"p_standapple02x", "Not Set"}, + {"p_standcorn01x", "Not Set"}, + {"p_standgrain01x", "Not Set"}, + {"p_standgrain02x", "Not Set"}, + {"p_standnbd_02x", "Not Set"}, + {"p_standnbd_05x", "Not Set"}, + {"p_standndb06x", "Not Set"}, + {"p_static_cornsack01", "Not Set"}, + {"p_stewplate01bx", "Not Set"}, + {"p_stewplate01x", "Not Set"}, + {"p_stewplate02x", "Not Set"}, + {"p_stewspoon01x", "Not Set"}, + {"p_sugar", "Not Set"}, + {"p_sunflowerseeds01x", "Not Set"}, + {"p_sunflowerseeds02x", "Not Set"}, + {"p_tea_tin01x", "Not Set"}, + {"p_tiny_sandwiches_01x", "Not Set"}, + {"p_tspoon01x", "Not Set"}, + {"p_turnip01x", "Not Set"}, + {"p_turtlesoup01x", "Not Set"}, + {"p_tutlesoup01x", "Not Set"}, + {"p_vehload_sacks01", "Not Set"}, + {"p_watermelon01bx", "Not Set"}, + {"p_watermelon01x", "Not Set"}, + {"p_watermelon02x", "Not Set"}, + {"p_watermelon03x", "Not Set"}, + {"p_wheat_milk01x", "Not Set"}, + {"p_wheat_spoon01x", "Not Set"}, + {"p_whitefishfilet01xa", "Not Set"}, + {"p_whitefishfilet01xb", "Not Set"}, + {"p_whitefleshymeat01xa", "Not Set"}, + {"p_whitefleshymeat01xb", "Not Set"}, + {"p_wrappedmeat01x", "Not Set"}, + {"p_armchair01x", "Not Set"}, + {"p_buffet01x", "Not Set"}, + {"p_buffet02x", "Not Set"}, + {"p_buffet02x_static", "Not Set"}, + {"p_buffet03x", "Not Set"}, + {"p_cabinet06x", "Not Set"}, + {"p_cabinet07x", "Not Set"}, + {"p_cabinet08x", "Not Set"}, + {"p_cabinet11x", "Not Set"}, + {"p_cabinet13x", "Not Set"}, + {"p_cabinet15x", "Not Set"}, + {"p_cabinetchina01x", "Not Set"}, + {"p_cabinetchina03x", "Not Set"}, + {"p_cabinetchina04x", "Not Set"}, + {"p_cabinetdoctor01x", "Not Set"}, + {"p_cabinetdoctor02x", "Not Set"}, + {"p_cartcabinet01x", "Not Set"}, + {"p_chamberpot02x", "Not Set"}, + {"p_chestchair01x", "Not Set"}, + {"p_chinacabinet01x", "Not Set"}, + {"p_coatstand01x", "Not Set"}, + {"p_coffer01x", "Not Set"}, + {"p_commodini01x", "Not Set"}, + {"p_console02x", "Not Set"}, + {"p_cornercabinet01x", "Not Set"}, + {"p_cornercabinet02x", "Not Set"}, + {"p_counterdoctor01x", "Not Set"}, + {"p_cupboard02bx", "Not Set"}, + {"p_cupboard02x", "Not Set"}, + {"p_cupboard03x", "Not Set"}, + {"p_cupboard04x", "Not Set"}, + {"p_cupboard05x", "Not Set"}, + {"p_cupboard06x", "Not Set"}, + {"p_cupboardcorner01x", "Not Set"}, + {"p_desk10x", "Not Set"}, + {"p_deskorganizer01x", "Not Set"}, + {"p_diningchairs01x", "Not Set"}, + {"p_drawermerchant01x", "Not Set"}, + {"p_drawertrolley01x", "Not Set"}, + {"p_dresser10x", "Not Set"}, + {"p_dresser11x", "Not Set"}, + {"p_dresser11x_static", "Not Set"}, + {"p_drmedcabinet01x", "Not Set"}, + {"p_drysink01x", "Not Set"}, + {"p_drysink03x", "Not Set"}, + {"p_dumbwaiter01x", "Not Set"}, + {"p_endtable01x", "Not Set"}, + {"p_endtable02x", "Not Set"}, + {"p_examtbledoctor01x", "Not Set"}, + {"p_filecabinetdoctor01x", "Not Set"}, + {"p_guncabinet01x", "Not Set"}, + {"p_guncabinet02x", "Not Set"}, + {"p_halltree01x", "Not Set"}, + {"p_hammock01x", "Not Set"}, + {"p_hutch03x", "Not Set"}, + {"p_hutch04x", "Not Set"}, + {"p_hutchwhite01x", "Not Set"}, + {"p_inkwell03x", "Not Set"}, + {"p_inlaidsecretary01x", "Not Set"}, + {"p_kitchenhutch01x", "Not Set"}, + {"p_lamp25x", "Not Set"}, + {"p_lootcabinet02x", "Not Set"}, + {"p_nbmbookshelves01x", "Not Set"}, + {"p_nbmchinacabinet01x", "Not Set"}, + {"p_nbmchinacabinet02x", "Not Set"}, + {"p_nbmchinahutch01x", "Not Set"}, + {"p_nbmclock01x", "Not Set"}, + {"p_nbmnightstand03x", "Not Set"}, + {"p_nbmpiano01x", "Not Set"}, + {"p_nbxpiano01x", "Not Set"}, + {"p_nightstandsix01", "Not Set"}, + {"p_plantstand01x", "Not Set"}, + {"p_sdtheater_chest01x", "Not Set"}, + {"p_servingcart01x", "Not Set"}, + {"p_sideboard01x", "Not Set"}, + {"p_sidetable01x", "Not Set"}, + {"p_sidetable02x", "Not Set"}, + {"p_sidetable03x", "Not Set"}, + {"p_sidetable06x", "Not Set"}, + {"p_sidetable07x", "Not Set"}, + {"p_sidetable08bx", "Not Set"}, + {"p_sidetable08x", "Not Set"}, + {"p_sidetable09x", "Not Set"}, + {"p_sidetable10x", "Not Set"}, + {"p_sidetable11x", "Not Set"}, + {"p_sofa01x", "Not Set"}, + {"p_sofa02x", "Not Set"}, + {"p_spittoon04x", "Not Set"}, + {"p_spittoon05x", "Not Set"}, + {"p_sterilecabinet01x", "Not Set"}, + {"p_stovegasheater01x", "Not Set"}, + {"p_tablework02x", "Not Set"}, + {"p_tablework03x", "Not Set"}, + {"p_toiletchair01x", "Not Set"}, + {"p_traveltrunk01x", "Not Set"}, + {"p_traveltrunk02x", "Not Set"}, + {"p_traveltrunk02x_b", "Not Set"}, + {"p_trolleymaildesk_01x", "Not Set"}, + {"p_victoriansofa01x", "Not Set"}, + {"p_walnuthutch01x", "Not Set"}, + {"p_washbasndoctor01x", "Not Set"}, + {"p_weddingchest01x", "Not Set"}, + {"p_windsorbench01x", "Not Set"}, + {"p_windsorchair03x", "Not Set"}, + {"p_workbenchdesk01x", "Not Set"}, + {"dea_01_grave_010", "Not Set"}, + {"dea_01_grave_011", "Not Set"}, + {"dea_01_grave_012", "Not Set"}, + {"p_alligatorhead01x", "Not Set"}, + {"p_arthur_grave_b", "Not Set"}, + {"p_arthur_grave_g", "Not Set"}, + {"p_blu_rail_plaque", "Not Set"}, + {"p_coffin01x", "Not Set"}, + {"p_coffin01x_open", "Not Set"}, + {"p_coffin02x", "Not Set"}, + {"p_coffin03x", "Not Set"}, + {"p_coffin04x", "Not Set"}, + {"p_coffin04x_sea", "Not Set"}, + {"p_coffinempty01x", "Not Set"}, + {"p_coffinlid01x", "Not Set"}, + {"p_crossflower02x", "Not Set"}, + {"p_davey_grave", "Not Set"}, + {"p_dea_01_grave_04", "Not Set"}, + {"p_dea_01_grave_07", "Not Set"}, + {"p_dea_grave_03", "Not Set"}, + {"p_dea_grave_05", "Not Set"}, + {"p_dea_grave_06", "Not Set"}, + {"p_dea_grave_08", "Not Set"}, + {"p_dea_grave_09", "Not Set"}, + {"p_eagle_grave", "Not Set"}, + {"p_grave06x", "Not Set"}, + {"p_gravediggingopen2x", "Not Set"}, + {"p_gravedug03x", "Not Set"}, + {"p_gravedug06x", "Not Set"}, + {"p_gravedugcover01x", "Not Set"}, + {"p_gravedugcover02x", "Not Set"}, + {"p_gravefather01x", "Not Set"}, + {"p_gravefresh01x", "Not Set"}, + {"p_graveindian01x", "Not Set"}, + {"p_gravemarker01x", "Not Set"}, + {"p_gravemarker02x", "Not Set"}, + {"p_gravemother01x", "Not Set"}, + {"p_gravemound01x", "Not Set"}, + {"p_gravemound02x", "Not Set"}, + {"p_gravemound03x", "Not Set"}, + {"p_gravemound04x", "Not Set"}, + {"p_graveplaque01x", "Not Set"}, + {"p_gravestone01ax", "Not Set"}, + {"p_gravestone01x", "Not Set"}, + {"p_gravestone02x", "Not Set"}, + {"p_gravestone03ax", "Not Set"}, + {"p_gravestone03x", "Not Set"}, + {"p_gravestone04x", "Not Set"}, + {"p_gravestone05x", "Not Set"}, + {"p_gravestone06x", "Not Set"}, + {"p_gravestone07ax", "Not Set"}, + {"p_gravestone07x", "Not Set"}, + {"p_gravestone08ax", "Not Set"}, + {"p_gravestone08x", "Not Set"}, + {"p_gravestone09x", "Not Set"}, + {"p_gravestone10x", "Not Set"}, + {"p_gravestone11x", "Not Set"}, + {"p_gravestone12x", "Not Set"}, + {"p_gravestone13x", "Not Set"}, + {"p_gravestone14ax", "Not Set"}, + {"p_gravestone14x", "Not Set"}, + {"p_gravestone15x", "Not Set"}, + {"p_gravestone16ax", "Not Set"}, + {"p_gravestone16x", "Not Set"}, + {"p_gravestonebroken01x", "Not Set"}, + {"p_gravestonebroken02x", "Not Set"}, + {"p_gravestonebroken05x", "Not Set"}, + {"p_gravestoneclean01x", "Not Set"}, + {"p_gravestoneclean02ax", "Not Set"}, + {"p_gravestoneclean02x", "Not Set"}, + {"p_gravestoneclean03x", "Not Set"}, + {"p_gravestoneclean04ax", "Not Set"}, + {"p_gravestoneclean04x", "Not Set"}, + {"p_gravestoneclean05ax", "Not Set"}, + {"p_gravestoneclean05x", "Not Set"}, + {"p_gravestoneclean06ax", "Not Set"}, + {"p_gravestoneclean06x", "Not Set"}, + {"p_gravestonegunslinger01x", "Not Set"}, + {"p_gravestonejanedoe01x", "Not Set"}, + {"p_gravestonejanedoe02x", "Not Set"}, + {"p_gravestonejohndoe01x", "Not Set"}, + {"p_gravestonejohndoe02x", "Not Set"}, + {"p_gravestone_srd08x", "Not Set"}, + {"p_grvestne_v_01x", "Not Set"}, + {"p_grvestne_v_02x", "Not Set"}, + {"p_grvestne_v_03x", "Not Set"}, + {"p_grvestne_v_04x", "Not Set"}, + {"p_grvestne_v_05x", "Not Set"}, + {"p_grvestne_v_06x", "Not Set"}, + {"p_grvestne_v_07x", "Not Set"}, + {"p_hosea_grave", "Not Set"}, + {"p_jenny_grave", "Not Set"}, + {"p_kieran_grave", "Not Set"}, + {"p_lenny_grave", "Not Set"}, + {"p_sean_grave", "Not Set"}, + {"p_susans_grave", "Not Set"}, + {"p_voodoodoll01x", "Not Set"}, + {"p_voodooskull01x", "Not Set"}, + {"p_williegrave01x", "Not Set"}, + {"p_wreath01x", "Not Set"}, + {"p_2ndflrframe10x", "Not Set"}, + {"p_2ndflrframe11x", "Not Set"}, + {"p_2ndflrframe12x", "Not Set"}, + {"p_2ndflrframe13x", "Not Set"}, + {"p_2ndflrframe3x", "Not Set"}, + {"p_2ndflrframe4x", "Not Set"}, + {"p_2ndflrframe5x", "Not Set"}, + {"p_2ndflrframe7x", "Not Set"}, + {"p_2ndflrframe8x", "Not Set"}, + {"p_ashbucket01x", "Not Set"}, + {"p_ashtray01x", "Not Set"}, + {"p_ashtray02x", "Not Set"}, + {"p_ashtray03x", "Not Set"}, + {"p_baseburner01x", "Not Set"}, + {"p_bible01x", "Not Set"}, + {"p_birdcage01x", "Not Set"}, + {"p_birdcage02x", "Not Set"}, + {"p_birdcagehang01x", "Not Set"}, + {"p_bla_civic_ext_clock01x", "Not Set"}, + {"p_blanket07x", "Not Set"}, + {"p_blanket08x", "Not Set"}, + {"p_blanket10x", "Not Set"}, + {"p_blanketground02x", "Not Set"}, + {"p_blanketground05x", "Not Set"}, + {"p_blankets01x", "Not Set"}, + {"p_bookend01x", "Not Set"}, + {"p_bottlecrystal01x", "Not Set"}, + {"p_brassbox01x", "Not Set"}, + {"p_brushdish01x", "Not Set"}, + {"p_cabinet01x", "Not Set"}, + {"p_cabinet02x", "Not Set"}, + {"p_cellarette01x", "Not Set"}, + {"p_centerpiece01x", "Not Set"}, + {"p_centerpiece02x", "Not Set"}, + {"p_centerpiece03x", "Not Set"}, + {"p_checkerboard01x", "Not Set"}, + {"p_cigarscissors01x", "Not Set"}, + {"p_clock06x", "Not Set"}, + {"p_clock09x", "Not Set"}, + {"p_clock10x", "Not Set"}, + {"p_clockkorrigan01x", "Not Set"}, + {"p_clocktable02x", "Not Set"}, + {"p_clocktable03x", "Not Set"}, + {"p_clocktable04x", "Not Set"}, + {"p_clocktable07x", "Not Set"}, + {"p_clothhorseonwheels01x", "Not Set"}, + {"p_clothinghook01x", "Not Set"}, + {"p_coalbag01x", "Not Set"}, + {"p_coalbag02x", "Not Set"}, + {"p_coalbasket01x", "Not Set"}, + {"p_coalbin02x", "Not Set"}, + {"p_coalhod01x", "Not Set"}, + {"p_coalhod02x", "Not Set"}, + {"p_coalscuttle01x", "Not Set"}, + {"p_coatrack01x", "Not Set"}, + {"p_coatrack02x", "Not Set"}, + {"p_coatrack03x", "Not Set"}, + {"p_coatrack04x", "Not Set"}, + {"p_coffer02x", "Not Set"}, + {"p_coffer02x_mp", "Not Set"}, + {"p_cupboard01x", "Not Set"}, + {"p_cupboardfac01x", "Not Set"}, + {"p_dirttub01x", "Not Set"}, + {"p_divider01x", "Not Set"}, + {"p_divider03x", "Not Set"}, + {"p_divider04x", "Not Set"}, + {"p_divider05x", "Not Set"}, + {"p_dividernbx01x", "Not Set"}, + {"p_dogtoy01x", "Not Set"}, + {"p_doll01x", "Not Set"}, + {"p_doll02x", "Not Set"}, + {"p_door_stop_001", "Not Set"}, + {"p_dryingrack02x", "Not Set"}, + {"p_duster01x", "Not Set"}, + {"p_firegrate01x", "Not Set"}, + {"p_fireguard01x", "Not Set"}, + {"p_fireguard02x", "Not Set"}, + {"p_fireguard04x", "Not Set"}, + {"p_fireplacelogs01x", "Not Set"}, + {"p_fireplacelogs01x_unlit", "Not Set"}, + {"p_fireplacelogs02x", "Not Set"}, + {"p_fireplacelogs02x_embers", "Not Set"}, + {"p_fireplacelogs02x_unlit", "Not Set"}, + {"p_fireplacelogs03x", "Not Set"}, + {"p_fireplacelogs03x_unlit", "Not Set"}, + {"p_fireplacelogs04x", "Not Set"}, + {"p_fireplacelogs04x_unlit", "Not Set"}, + {"p_fireplacetool01x", "Not Set"}, + {"p_fireplacetools01bx", "Not Set"}, + {"p_fireplacetools01cx", "Not Set"}, + {"p_fireplacetools01dx", "Not Set"}, + {"p_fireplacetools01x", "Not Set"}, + {"p_flag05x", "Not Set"}, + {"p_flowerframe01x", "Not Set"}, + {"p_furnace01x", "Not Set"}, + {"p_furnace02x", "Not Set"}, + {"p_gildedmirror01x", "Not Set"}, + {"p_gildedmirror03x", "Not Set"}, + {"p_grandplateau01x", "Not Set"}, + {"p_handheldmirror01x", "Not Set"}, + {"p_handmirror01x", "Not Set"}, + {"p_hatstand01x", "Not Set"}, + {"p_hatstand01xng", "Not Set"}, + {"p_hatstandbear01x", "Not Set"}, + {"p_headbust01x", "Not Set"}, + {"p_headbust02x", "Not Set"}, + {"p_headbust03x", "Not Set"}, + {"p_icepile01x", "Not Set"}, + {"p_incenseburn01x", "Not Set"}, + {"p_jardiniere01x", "Not Set"}, + {"p_jewelrybox02bx", "Not Set"}, + {"p_jewelrybox02x", "Not Set"}, + {"p_keybox01x", "Not Set"}, + {"p_kitchencombo01x", "Not Set"}, + {"p_knittingneedle01x", "Not Set"}, + {"p_knittingsquare01ax", "Not Set"}, + {"p_knittingsquare01x", "Not Set"}, + {"p_mantle_clock_old", "Not Set"}, + {"p_mirror02x", "Not Set"}, + {"p_mirror03x", "Not Set"}, + {"p_mirror04x", "Not Set"}, + {"p_needlework01x", "Not Set"}, + {"p_oldcardbox01x", "Not Set"}, + {"p_painting02x", "Not Set"}, + {"p_paintings01x", "Not Set"}, + {"p_pedestal01x", "Not Set"}, + {"p_pedestal02x", "Not Set"}, + {"p_pedestal03x", "Not Set"}, + {"p_pedestal03x_dmg", "Not Set"}, + {"p_pedestalstand01x", "Not Set"}, + {"p_pictureframe01x", "Not Set"}, + {"p_pictureframe02x", "Not Set"}, + {"p_pictureframe06x", "Not Set"}, + {"p_pictureframe08x", "Not Set"}, + {"p_pictureframe09x", "Not Set"}, + {"p_pictureframe10x", "Not Set"}, + {"p_pictureframe11x", "Not Set"}, + {"p_pictureframe12x", "Not Set"}, + {"p_pictureframe13x", "Not Set"}, + {"p_pictureframe16x", "Not Set"}, + {"p_pictureframe17x", "Not Set"}, + {"p_pictureframe19bx", "Not Set"}, + {"p_pictureframe19x", "Not Set"}, + {"p_pictureframe20x", "Not Set"}, + {"p_pictureframe22x", "Not Set"}, + {"p_pictureframe23x", "Not Set"}, + {"p_pictureframe24x", "Not Set"}, + {"p_pictureframe26x", "Not Set"}, + {"p_pictureframe27x", "Not Set"}, + {"p_pictureframe29x", "Not Set"}, + {"p_picturemirror01x", "Not Set"}, + {"p_picturemirror02x", "Not Set"}, + {"p_pipeholder01x", "Not Set"}, + {"p_planter", "Not Set"}, + {"p_planter01x", "Not Set"}, + {"p_radiator01x", "Not Set"}, + {"p_regulatorclock02x", "Not Set"}, + {"p_rho_bank_ext_clock01x", "Not Set"}, + {"p_ropewall01x", "Not Set"}, + {"p_ropewall_cs02x", "Not Set"}, + {"p_sculpturedeer01x", "Not Set"}, + {"p_sewingmachine02x", "Not Set"}, + {"p_shelf06x", "Not Set"}, + {"p_shelf09x", "Not Set"}, + {"p_shelf10x", "Not Set"}, + {"p_shelfcorner01x", "Not Set"}, + {"p_shelflrg01x", "Not Set"}, + {"p_shelflrg03x", "Not Set"}, + {"p_shelfmail01x", "Not Set"}, + {"p_shelfornate01x", "Not Set"}, + {"p_shelfornate02x", "Not Set"}, + {"p_shelfwall01x", "Not Set"}, + {"p_shelfwall02x", "Not Set"}, + {"p_shelfwall04x", "Not Set"}, + {"p_shelfwall05x", "Not Set"}, + {"p_shelfwall06x", "Not Set"}, + {"p_shelfwall07x", "Not Set"}, + {"p_shelfwine01x", "Not Set"}, + {"p_shoepolish01x", "Not Set"}, + {"p_sink02x", "Not Set"}, + {"p_sink03x", "Not Set"}, + {"p_spinningwheel01x", "Not Set"}, + {"p_spinningwheel02x", "Not Set"}, + {"p_spittoon01x", "Not Set"}, + {"p_spittoon02x", "Not Set"}, + {"p_spittoon03bx", "Not Set"}, + {"p_spittoon03x", "Not Set"}, + {"p_spittoon06x", "Not Set"}, + {"p_standfern01x", "Not Set"}, + {"p_statue07x", "Not Set"}, + {"p_statue08x", "Not Set"}, + {"p_stepstool01x", "Not Set"}, + {"p_stool13x", "Not Set"}, + {"p_storagebox01x", "Not Set"}, + {"p_teacart01x", "Not Set"}, + {"p_throwpillow_01x", "Not Set"}, + {"p_throwpillow_02x", "Not Set"}, + {"p_throwpillow_03x", "Not Set"}, + {"p_throwpillow_04x", "Not Set"}, + {"p_throwpillow_06x", "Not Set"}, + {"p_throwpillow_08x", "Not Set"}, + {"p_tricycle01x", "Not Set"}, + {"p_urn01x", "Not Set"}, + {"p_urn02x", "Not Set"}, + {"p_vase01x", "Not Set"}, + {"p_vase05x", "Not Set"}, + {"p_vase06x", "Not Set"}, + {"p_washboard01x", "Not Set"}, + {"p_washtub01x", "Not Set"}, + {"p_washtub02x", "Not Set"}, + {"p_washtub03x", "Not Set"}, + {"p_washtubblood02x", "Not Set"}, + {"p_washtubblood02x_cloth", "Not Set"}, + {"p_weathervane01x", "Not Set"}, + {"p_weathervane02x", "Not Set"}, + {"p_weathervanebase01x", "Not Set"}, + {"p_weathervanebase02x", "Not Set"}, + {"p_weathervanetop01x", "Not Set"}, + {"p_whittlingwood01x", "Not Set"}, + {"p_wringer01x", "Not Set"}, + {"dne_p_pronghornfurintact01x", "Not Set"}, + {"p_alligatorpelt01x", "Not Set"}, + {"p_antler01x", "Not Set"}, + {"p_antlers01x", "Not Set"}, + {"p_antlers04x", "Not Set"}, + {"p_arrow01x", "Not Set"}, + {"p_badger01x", "Not Set"}, + {"p_badger02x", "Not Set"}, + {"p_badger03x", "Not Set"}, + {"p_bearkillremains01x", "Not Set"}, + {"p_bearkillremains_b01x", "Not Set"}, + {"p_bearscat01x", "Not Set"}, + {"p_bearskin01x", "Not Set"}, + {"p_beartuftsfur01x", "Not Set"}, + {"p_beaverscat01x", "Not Set"}, + {"p_bespokemoosexlpelt01x", "Not Set"}, + {"p_bighornramscat_01x", "Not Set"}, + {"p_bighorntufts01x", "Not Set"}, + {"p_bisonscat01x", "Not Set"}, + {"p_bisontuftsfur01x", "Not Set"}, + {"p_boarscat01x", "Not Set"}, + {"p_bobcatbloodpools01x", "Not Set"}, + {"p_bobcatkillremains01x", "Not Set"}, + {"p_bobcatscat01x", "Not Set"}, + {"p_bobcattuftsfur01x", "Not Set"}, + {"p_boobytrap_guar01x", "Not Set"}, + {"p_boobytrap_roanok02x", "Not Set"}, + {"p_boobytrap_roanoka01x", "Not Set"}, + {"p_boobytrap_roanokb01x", "Not Set"}, + {"p_buckscat01x", "Not Set"}, + {"p_bucktufts01x", "Not Set"}, + {"p_cardinal01bx", "Not Set"}, + {"p_cardinal01cx", "Not Set"}, + {"p_cardinal01x", "Not Set"}, + {"p_cougar_01x", "Not Set"}, + {"p_cougarbloodpools01x", "Not Set"}, + {"p_cougarkillremains01x", "Not Set"}, + {"p_cougarscat01x", "Not Set"}, + {"p_coyotescat01x", "Not Set"}, + {"p_coyotetuftsfur_01x", "Not Set"}, + {"p_deerguts01x", "Not Set"}, + {"p_deerhanging01x", "Not Set"}, + {"p_deerhanging02x", "Not Set"}, + {"p_deerhanging03x", "Not Set"}, + {"p_deerscat01x", "Not Set"}, + {"p_deertuftsfur01x", "Not Set"}, + {"p_dryingmeat01x", "Not Set"}, + {"p_eagle01bx", "Not Set"}, + {"p_eagle01cx", "Not Set"}, + {"p_eagle01x", "Not Set"}, + {"p_elk_horn01x", "Not Set"}, + {"p_elk_horn02x", "Not Set"}, + {"p_elk_horn03x", "Not Set"}, + {"p_elk_horn04x", "Not Set"}, + {"p_elk_horn05x", "Not Set"}, + {"p_elk_horn_albino", "Not Set"}, + {"p_elkscat01x", "Not Set"}, + {"p_elktuftsfur01x", "Not Set"}, + {"p_feather01x", "Not Set"}, + {"p_fishbobber01x", "Not Set"}, + {"p_fishupgradebobber01x", "Not Set"}, + {"p_fishupgradebobber02x", "Not Set"}, + {"p_fishupgradebobber03x", "Not Set"}, + {"p_fishupgradebobber04x", "Not Set"}, + {"p_fleshingboard01x", "Not Set"}, + {"p_fox01x", "Not Set"}, + {"p_fox02x", "Not Set"}, + {"p_fox03x", "Not Set"}, + {"p_foxpelt01x", "Not Set"}, + {"p_foxpheasant01x", "Not Set"}, + {"p_foxscat01x", "Not Set"}, + {"p_foxtuftsfur01x", "Not Set"}, + {"p_fxdecalbearfootprint01x", "Not Set"}, + {"p_fxdecalbearfootprint02x", "Not Set"}, + {"p_gatorgunrack01x", "Not Set"}, + {"p_gator_hook_01x", "Not Set"}, + {"p_gatorkillremain01x", "Not Set"}, + {"p_hanging_badger01x", "Not Set"}, + {"p_hanging_coyote01x", "Not Set"}, + {"p_hanging_fox01x", "Not Set"}, + {"p_heron01bx", "Not Set"}, + {"p_heron01x", "Not Set"}, + {"p_heronloon01x", "Not Set"}, + {"p_hide01x", "Not Set"}, + {"p_hide02x", "Not Set"}, + {"p_hidedisplay01x", "Not Set"}, + {"p_hidedisplay02x", "Not Set"}, + {"p_hidedisplay03x", "Not Set"}, + {"p_hidedisplay05x", "Not Set"}, + {"p_hidedisplay06x", "Not Set"}, + {"p_hidedisplay07x", "Not Set"}, + {"p_hidedisplay09x", "Not Set"}, + {"p_hidedisplay10x", "Not Set"}, + {"p_hidedraped02x", "Not Set"}, + {"p_hideframe01x", "Not Set"}, + {"p_hideframe02x", "Not Set"}, + {"p_hidepile01x", "Not Set"}, + {"p_hidepile02x", "Not Set"}, + {"p_hidewolf01x", "Not Set"}, + {"p_horn01x", "Not Set"}, + {"p_huntingbag01x", "Not Set"}, + {"p_ihide02x", "Not Set"}, + {"p_ihide03x", "Not Set"}, + {"p_ihide04x", "Not Set"}, + {"p_ihide05x", "Not Set"}, + {"p_ihide06x", "Not Set"}, + {"p_ihide10x", "Not Set"}, + {"p_mooseantler01x", "Not Set"}, + {"p_mooseantler02x", "Not Set"}, + {"p_mooseantler03x", "Not Set"}, + {"p_mooseantler04x", "Not Set"}, + {"p_mooseantler_albino", "Not Set"}, + {"p_moosescat01x", "Not Set"}, + {"p_moosetuftsfur01x", "Not Set"}, + {"p_pantherblood01x", "Not Set"}, + {"p_panthescat01x", "Not Set"}, + {"p_peltbeaver01x", "Not Set"}, + {"p_powderhorn01x", "Not Set"}, + {"p_preybunny01x", "Not Set"}, + {"p_pronghornscat01x", "Not Set"}, + {"p_pronghorntuftsfur01x", "Not Set"}, + {"p_quiver01x", "Not Set"}, + {"p_rabbitnoose_01x", "Not Set"}, + {"p_rabbitscat01x", "Not Set"}, + {"p_rabbittufts01x", "Not Set"}, + {"p_sha_l_footprint01x", "Not Set"}, + {"p_sha_l_footprint02x", "Not Set"}, + {"p_sha_r_footprint01x", "Not Set"}, + {"p_sha_r_footprint02x", "Not Set"}, + {"p_skullcattle03x", "Not Set"}, + {"p_skunkpelt01x", "Not Set"}, + {"p_target05x", "Not Set"}, + {"p_target06x", "Not Set"}, + {"p_targetframe01x", "Not Set"}, + {"p_taxibeaver01x", "Not Set"}, + {"p_taxidermycoyote01x", "Not Set"}, + {"p_taxidermycoyote02x", "Not Set"}, + {"p_taxidermycoyote03x", "Not Set"}, + {"p_taxidermydeer01x", "Not Set"}, + {"p_taxidermyhawk01x", "Not Set"}, + {"p_taxidermyhawk02x", "Not Set"}, + {"p_taxidermyhawk03x", "Not Set"}, + {"p_taxidermyowl01x", "Not Set"}, + {"p_taxidermypheasant02x", "Not Set"}, + {"p_taxidermyvulture01x", "Not Set"}, + {"p_taxidermyvulture02x", "Not Set"}, + {"p_taxidermyvulture03x", "Not Set"}, + {"p_taxidermyvulture04x", "Not Set"}, + {"p_trap01x", "Not Set"}, + {"p_trap01x_damaged", "Not Set"}, + {"p_trap02x", "Not Set"}, + {"p_trap03x", "Not Set"}, + {"p_trap04x", "Not Set"}, + {"p_trap05x", "Not Set"}, + {"p_trapperbackpack01x", "Not Set"}, + {"p_tree_fallen_pine_rope01x", "Not Set"}, + {"p_turkeyfeathers01x", "Not Set"}, + {"p_tuxyoungaligator01x", "Not Set"}, + {"p_tuxyoungaligator02x", "Not Set"}, + {"p_vfxbloodspatter", "Not Set"}, + {"p_wolfkillremains01x", "Not Set"}, + {"p_wolfscat01x", "Not Set"}, + {"p_wolfskin01x", "Not Set"}, + {"p_wolftuftsfur01x", "Not Set"}, + {"p_youngalligator01x", "Not Set"}, + {"p_youngalligator02x", "Not Set"}, + {"s_taxidermydiorama010x", "Not Set"}, + {"s_taxidermydiorama01x", "Not Set"}, + {"s_taxidermydiorama02x", "Not Set"}, + {"s_taxidermydiorama03x", "Not Set"}, + {"s_taxidermydiorama04x", "Not Set"}, + {"s_taxidermydiorama05x", "Not Set"}, + {"s_taxidermydiorama06x", "Not Set"}, + {"s_taxidermydiorama07x", "Not Set"}, + {"s_taxidermydiorama08x", "Not Set"}, + {"s_taxidermydiorama09x", "Not Set"}, + {"p_basketindian01x", "Not Set"}, + {"p_basketindian02x", "Not Set"}, + {"p_basketindian03x", "Not Set"}, + {"p_bedindian02x", "Not Set"}, + {"p_bedindian04x", "Not Set"}, + {"p_gourdwater01x", "Not Set"}, + {"p_indianartifact01x", "Not Set"}, + {"p_indianartifact03x", "Not Set"}, + {"p_indianbackrest01x", "Not Set"}, + {"p_indianbedrollclosed01x", "Not Set"}, + {"p_indiandream01x", "Not Set"}, + {"p_indiandream01x_a", "Not Set"}, + {"p_indiandream02x", "Not Set"}, + {"p_indiandream03x", "Not Set"}, + {"p_indianfan01x", "Not Set"}, + {"p_indianfan02x", "Not Set"}, + {"p_indiangarlic01x", "Not Set"}, + {"p_indianpipebag01x", "Not Set"}, + {"p_indianrattle01x", "Not Set"}, + {"p_indiansweetgrass01x", "Not Set"}, + {"p_indiantipibag01x", "Not Set"}, + {"p_peacepipe01x", "Not Set"}, + {"p_peacepipe02x", "Not Set"}, + {"p_smudgestick01x", "Not Set"}, + {"p_staffindian01x", "Not Set"}, + {"p_staffindian03x", "Not Set"}, + {"p_voodoochalice01x", "Not Set"}, + {"p_voodoodrum01x", "Not Set"}, + {"p_accordion_001", "Not Set"}, + {"p_alarmbell01x", "Not Set"}, + {"p_bamboostick01x", "Not Set"}, + {"p_banjo01x", "Not Set"}, + {"p_bell03x", "Not Set"}, + {"p_bell05x", "Not Set"}, + {"p_binoculars01x", "Not Set"}, + {"p_bow01x", "Not Set"}, + {"p_boxsmlhealth01x", "Not Set"}, + {"p_bugle01x", "Not Set"}, + {"p_camera01x", "Not Set"}, + {"p_camerabox01x", "Not Set"}, + {"p_camerabox02x", "Not Set"}, + {"p_camerabox_film01x", "Not Set"}, + {"p_cameraflash01x", "Not Set"}, + {"p_cardcheatholdout01x", "Not Set"}, + {"p_cello01x", "Not Set"}, + {"p_club01x", "Not Set"}, + {"p_doctool01x", "Not Set"}, + {"p_fiddle01x", "Not Set"}, + {"p_firstaidkit01x", "Not Set"}, + {"p_guitar01x", "Not Set"}, + {"p_harmonica01x", "Not Set"}, + {"p_harp01x", "Not Set"}, + {"p_jawharp01x", "Not Set"}, + {"p_jugglingball01x", "Not Set"}, + {"p_mandolin01x", "Not Set"}, + {"p_medirrigator01x", "Not Set"}, + {"p_medsyringe01x", "Not Set"}, + {"p_microscope01x", "Not Set"}, + {"p_microscopecase01x", "Not Set"}, + {"p_monocular01x", "Not Set"}, + {"p_mortarpestle01x", "Not Set"}, + {"p_mortarpestle02bx", "Not Set"}, + {"p_mortarpestle02x", "Not Set"}, + {"p_musicstand01x", "Not Set"}, + {"p_musicstand02x", "Not Set"}, + {"p_phonograph01x", "Not Set"}, + {"p_photoplate01x001", "Not Set"}, + {"p_piano02x", "Not Set"}, + {"p_piano03x", "Not Set"}, + {"p_piano03x_closed", "Not Set"}, + {"p_scalecandy01x", "Not Set"}, + {"p_scalemedicine01x", "Not Set"}, + {"p_scapel01x", "Not Set"}, + {"p_sheetmusic01x", "Not Set"}, + {"p_stethascope01x", "Not Set"}, + {"p_studiocamera01x", "Not Set"}, + {"p_studiocameracap01x", "Not Set"}, + {"p_studiocameraplate01x", "Not Set"}, + {"p_surgicalsaw01x", "Not Set"}, + {"p_surgicalsaw02x", "Not Set"}, + {"p_syringe01x", "Not Set"}, + {"p_syringecase01x", "Not Set"}, + {"p_telescope01x", "Not Set"}, + {"p_tonguedepressor01x", "Not Set"}, + {"p_trumpet01x", "Not Set"}, + {"p_viola01x", "Not Set"}, + {"p_whistle01x", "Not Set"}, + {"s_firstaidkit_sml01x", "Not Set"}, + {"p_barrel_ladle01x", "Not Set"}, + {"p_barrel_wash01x", "Not Set"}, + {"p_basin01sm", "Not Set"}, + {"p_basin01x", "Not Set"}, + {"p_basin02x", "Not Set"}, + {"p_basin03x", "Not Set"}, + {"p_basin04x", "Not Set"}, + {"p_basinblood01x", "Not Set"}, + {"p_basinchicken01x", "Not Set"}, + {"p_basinwater01x", "Not Set"}, + {"p_basket01x", "Not Set"}, + {"p_basket02x", "Not Set"}, + {"p_basket03x", "Not Set"}, + {"p_basket04x", "Not Set"}, + {"p_basket05x", "Not Set"}, + {"p_basket06ax", "Not Set"}, + {"p_basket06bx", "Not Set"}, + {"p_basket06cx", "Not Set"}, + {"p_basket06dx", "Not Set"}, + {"p_basket06x", "Not Set"}, + {"p_basket07x", "Not Set"}, + {"p_basket08x", "Not Set"}, + {"p_basket09x", "Not Set"}, + {"p_basket11x", "Not Set"}, + {"p_basket12x", "Not Set"}, + {"p_basketcarrots01x", "Not Set"}, + {"p_basketcarrots02x", "Not Set"}, + {"p_basketcreel01x", "Not Set"}, + {"p_basketfish01x", "Not Set"}, + {"p_baskethalf01x", "Not Set"}, + {"p_basketonion01x", "Not Set"}, + {"p_basketonion02x", "Not Set"}, + {"p_basketpotato01x", "Not Set"}, + {"p_baskettomato02x", "Not Set"}, + {"p_biscuitbarrel01x", "Not Set"}, + {"p_boiler01x", "Not Set"}, + {"p_boiler02x", "Not Set"}, + {"p_boiler02x_frag_new", "Not Set"}, + {"p_bowl01x", "Not Set"}, + {"p_bowl02x", "Not Set"}, + {"p_bowl03x", "Not Set"}, + {"p_bowl03x_stew", "Not Set"}, + {"p_bowl04x", "Not Set"}, + {"p_bowl04x_stew", "Not Set"}, + {"p_bowlstack01x", "Not Set"}, + {"p_bowlterracotta01x", "Not Set"}, + {"p_brasstray01x", "Not Set"}, + {"p_breadoven01x", "Not Set"}, + {"p_bucket_ladle01a", "Not Set"}, + {"p_butcherknife01x", "Not Set"}, + {"p_butterchurn01x", "Not Set"}, + {"p_cast_iron_pot_001", "Not Set"}, + {"p_cast_iron_pot_002", "Not Set"}, + {"p_cauldron01x", "Not Set"}, + {"p_cauldron02x", "Not Set"}, + {"p_cauldron03x", "Not Set"}, + {"p_cleaver01x", "Not Set"}, + {"p_coaster01x", "Not Set"}, + {"p_coffee_grinder_001", "Not Set"}, + {"p_coffeegrinder02x", "Not Set"}, + {"p_coffeegrinder03x", "Not Set"}, + {"p_cookingtools01x", "Not Set"}, + {"p_copperpan01bx", "Not Set"}, + {"p_copperpan01cx", "Not Set"}, + {"p_copperpan01x", "Not Set"}, + {"p_copperpan02x", "Not Set"}, + {"p_copperpan03x", "Not Set"}, + {"p_copperpan_hang_01cx", "Not Set"}, + {"p_copperpot01x", "Not Set"}, + {"p_copperpot02bx", "Not Set"}, + {"p_copperpot02x", "Not Set"}, + {"p_cup01x", "Not Set"}, + {"p_cupfancy01x", "Not Set"}, + {"p_cuptin01x", "Not Set"}, + {"p_cutleryset01x", "Not Set"}, + {"p_cuttingboard01x", "Not Set"}, + {"p_filletknife01x", "Not Set"}, + {"p_fork01x", "Not Set"}, + {"p_gravybowl01x", "Not Set"}, + {"p_group_cookfire01", "Not Set"}, + {"p_hand_iron_001", "Not Set"}, + {"p_icebox01x", "Not Set"}, + {"p_icebox02x", "Not Set"}, + {"p_jar01", "Not Set"}, + {"p_jar02", "Not Set"}, + {"p_jar03x", "Not Set"}, + {"p_jar04x", "Not Set"}, + {"p_jar05x", "Not Set"}, + {"p_jugglass01x", "Not Set"}, + {"p_jugsilver01x", "Not Set"}, + {"p_jugtin01x", "Not Set"}, + {"p_kettle01x", "Not Set"}, + {"p_kettle02x", "Not Set"}, + {"p_kettle03x", "Not Set"}, + {"p_kettle03x_noboil", "Not Set"}, + {"p_kettlecopper01x", "Not Set"}, + {"p_knife01x", "Not Set"}, + {"p_knife02x", "Not Set"}, + {"p_knife03x", "Not Set"}, + {"p_knife04x", "Not Set"}, + {"p_knifeblock01x", "Not Set"}, + {"p_knifeblock03x", "Not Set"}, + {"p_knifesharpener01x", "Not Set"}, + {"p_ladle01x", "Not Set"}, + {"p_ladle02x", "Not Set"}, + {"p_ladle03x", "Not Set"}, + {"p_ladle04x", "Not Set"}, + {"p_lemonstand01x", "Not Set"}, + {"p_meatcuttingboard01x", "Not Set"}, + {"p_napkins01x", "Not Set"}, + {"p_pan01newx", "Not Set"}, + {"p_pan01x", "Not Set"}, + {"p_pan02x", "Not Set"}, + {"p_panfire01x", "Not Set"}, + {"p_panlg01x", "Not Set"}, + {"p_pansm01x", "Not Set"}, + {"p_peppershaker02x", "Not Set"}, + {"p_petridish01x", "Not Set"}, + {"p_piestand01x", "Not Set"}, + {"p_pitcher03x", "Not Set"}, + {"p_plate01x", "Not Set"}, + {"p_plate02x", "Not Set"}, + {"p_plate03x", "Not Set"}, + {"p_plate04x", "Not Set"}, + {"p_plate10x", "Not Set"}, + {"p_plate11x", "Not Set"}, + {"p_plate12x", "Not Set"}, + {"p_plate13x", "Not Set"}, + {"p_plate14x", "Not Set"}, + {"p_plate15x", "Not Set"}, + {"p_plate16x", "Not Set"}, + {"p_plate17x", "Not Set"}, + {"p_plateeasel01x", "Not Set"}, + {"p_plateshelf01x", "Not Set"}, + {"p_plateterracotta01x", "Not Set"}, + {"p_pot01bx", "Not Set"}, + {"p_pot01x", "Not Set"}, + {"p_pot02lid01x", "Not Set"}, + {"p_pot02x", "Not Set"}, + {"p_pot03newx", "Not Set"}, + {"p_pot03x", "Not Set"}, + {"p_pot04x", "Not Set"}, + {"p_pot05x", "Not Set"}, + {"p_potcrawfish01x", "Not Set"}, + {"p_potcrawfish01xb", "Not Set"}, + {"p_potsm01a", "Not Set"}, + {"p_potsm01x", "Not Set"}, + {"p_rho_srs", "Not Set"}, + {"p_rustyspoon01x", "Not Set"}, + {"p_saladplate02x", "Not Set"}, + {"p_saucer01x", "Not Set"}, + {"p_servingdish01x", "Not Set"}, + {"p_sharpeningstone01x", "Not Set"}, + {"p_sink04x", "Not Set"}, + {"p_soupbowl02x", "Not Set"}, + {"p_spoon01x", "Not Set"}, + {"p_spoon01x_food", "Not Set"}, + {"p_spoon01x_foodb", "Not Set"}, + {"p_spoon01x_foodc", "Not Set"}, + {"p_spoon01x_foodcom", "Not Set"}, + {"p_spoon02x", "Not Set"}, + {"p_spoonlg01x", "Not Set"}, + {"p_spoonmid01x", "Not Set"}, + {"p_spoonmid02x", "Not Set"}, + {"p_spoonshell01x", "Not Set"}, + {"p_spoonsshelf01x", "Not Set"}, + {"p_spoonstrainer", "Not Set"}, + {"p_stein_pewter_001", "Not Set"}, + {"p_stove01x", "Not Set"}, + {"p_stove04x", "Not Set"}, + {"p_stove05x", "Not Set"}, + {"p_stove06x", "Not Set"}, + {"p_stove07x", "Not Set"}, + {"p_stove09x", "Not Set"}, + {"p_stove66", "Not Set"}, + {"p_stovegasbarrel01x", "Not Set"}, + {"p_stoveheater01bx", "Not Set"}, + {"p_stoveiron01x", "Not Set"}, + {"p_stoveiron02x", "Not Set"}, + {"p_stoveparts01x", "Not Set"}, + {"p_strawbundle01x", "Not Set"}, + {"p_teacream", "Not Set"}, + {"p_teacup", "Not Set"}, + {"p_teacup02x", "Not Set"}, + {"p_tealadel", "Not Set"}, + {"p_teapot01x", "Not Set"}, + {"p_teapot02", "Not Set"}, + {"p_teapunchbowl", "Not Set"}, + {"p_teasugar", "Not Set"}, + {"p_teatray01", "Not Set"}, + {"p_tray01x", "Not Set"}, + {"p_tray02x", "Not Set"}, + {"p_tray03ax", "Not Set"}, + {"p_tray03x", "Not Set"}, + {"p_tray04x", "Not Set"}, + {"p_trolley1x", "Not Set"}, + {"p_woodbowl01x", "Not Set"}, + {"p_woodburningstove01x", "Not Set"}, + {"p_woodspoon01x", "Not Set"}, + {"p_woodstove01x", "Not Set"}, + {"s_bucketoblood01x", "Not Set"}, + {"p_candelabra02x", "Not Set"}, + {"p_candelabra04x", "Not Set"}, + {"p_candelabra05x", "Not Set"}, + {"p_candelabra06x", "Not Set"}, + {"p_candlestick01x", "Not Set"}, + {"p_floorlamp01x", "Not Set"}, + {"p_kerosenetablelamp01x", "Not Set"}, + {"p_kersosenelamp01x", "Not Set"}, + {"p_lamp18x", "Not Set"}, + {"p_lamp19x", "Not Set"}, + {"p_lamp21x", "Not Set"}, + {"p_lamp22x", "Not Set"}, + {"p_lamp23x", "Not Set"}, + {"p_lamp24x", "Not Set"}, + {"p_lamp26x", "Not Set"}, + {"p_lamp27x", "Not Set"}, + {"p_lamp28x", "Not Set"}, + {"p_lamp31x", "Not Set"}, + {"p_lamp32x", "Not Set"}, + {"p_lamp33x", "Not Set"}, + {"p_lamp35x", "Not Set"}, + {"p_lamp36x", "Not Set"}, + {"p_lamp37x", "Not Set"}, + {"p_lampexterior06x", "Not Set"}, + {"p_lamphanging03x", "Not Set"}, + {"p_lamphanging04x", "Not Set"}, + {"p_lampkerosene01x", "Not Set"}, + {"p_lampkerosene01xint", "Not Set"}, + {"p_lampkerosene04x", "Not Set"}, + {"p_lampkerosene05x", "Not Set"}, + {"p_lampkerosene06x", "Not Set"}, + {"p_lampstanding01x", "Not Set"}, + {"p_lampstanding02x", "Not Set"}, + {"p_lampstanding03x", "Not Set"}, + {"p_lampstanding04x", "Not Set"}, + {"p_lampstanding05x", "Not Set"}, + {"p_lampstanding06x", "Not Set"}, + {"p_lampstanding07x", "Not Set"}, + {"p_lampstanding09x", "Not Set"}, + {"p_lantern04x", "Not Set"}, + {"p_lantern04xint", "Not Set"}, + {"p_lantern04xlowfuel", "Not Set"}, + {"p_lantern05x", "Not Set"}, + {"p_lantern05xhang", "Not Set"}, + {"p_lantern05xhang02", "Not Set"}, + {"p_lantern05xint", "Not Set"}, + {"p_lantern05xint02", "Not Set"}, + {"p_lantern07newx", "Not Set"}, + {"p_lantern07x", "Not Set"}, + {"p_lantern07xint", "Not Set"}, + {"p_lantern08x", "Not Set"}, + {"p_lantern09x", "Not Set"}, + {"p_lantern09xhang", "Not Set"}, + {"p_lantern09xhangwind", "Not Set"}, + {"p_lantern09xint", "Not Set"}, + {"p_lantern09xmoths", "Not Set"}, + {"p_lanternbrass01x", "Not Set"}, + {"p_lanternbrass02x", "Not Set"}, + {"p_lanternred05x", "Not Set"}, + {"p_lgt_gaslampwall01x", "Not Set"}, + {"p_lightfancy01x", "Not Set"}, + {"p_light_sd_theater01x", "Not Set"}, + {"p_medlight02x", "Not Set"}, + {"p_minelamp01x", "Not Set"}, + {"p_oillamp01x", "Not Set"}, + {"p_oillamp04x", "Not Set"}, + {"p_stageshelllight01x", "Not Set"}, + {"p_stageshelllight_long01x", "Not Set"}, + {"p_stageshelllight_red01x", "Not Set"}, + {"p_steamerlight01x", "Not Set"}, + {"p_torchpost01x", "Not Set"}, + {"p_torchpostalwayson01x", "Not Set"}, + {"s_veh_lantern01_lf", "Not Set"}, + {"s_veh_lantern01_rf", "Not Set"}, + {"s_veh_lantern02_lf", "Not Set"}, + {"s_veh_lantern02_rf", "Not Set"}, + {"s_veh_lantern_lf", "Not Set"}, + {"s_veh_lantern_rf", "Not Set"}, + {"p_bulkheadlight01x", "Not Set"}, + {"p_chandelier01x", "Not Set"}, + {"p_chandelier07x", "Not Set"}, + {"p_chandelier09bx", "Not Set"}, + {"p_chandelier09x", "Not Set"}, + {"p_chandelier10x", "Not Set"}, + {"p_chandelier11ax", "Not Set"}, + {"p_chandelier11x", "Not Set"}, + {"p_chandelier12bx", "Not Set"}, + {"p_chandelier12cx", "Not Set"}, + {"p_chandelier12x", "Not Set"}, + {"p_chandelier13ax", "Not Set"}, + {"p_chandelier13x", "Not Set"}, + {"p_chandelier14ax", "Not Set"}, + {"p_chandelier14x", "Not Set"}, + {"p_chandelier15x", "Not Set"}, + {"p_chandelier16ax", "Not Set"}, + {"p_chandelier16x", "Not Set"}, + {"p_chandelier17x", "Not Set"}, + {"p_chandelier17x_drt", "Not Set"}, + {"p_chandelier18x", "Not Set"}, + {"p_chandelier19x", "Not Set"}, + {"p_chandelier22x", "Not Set"}, + {"p_chandelier24x", "Not Set"}, + {"p_chandelier25x", "Not Set"}, + {"p_chandelier28x", "Not Set"}, + {"p_chandelier29ax", "Not Set"}, + {"p_chandelier29x", "Not Set"}, + {"p_chandelier30x", "Not Set"}, + {"p_chandelier31x", "Not Set"}, + {"p_chandelier33x", "Not Set"}, + {"p_chineselantern01x", "Not Set"}, + {"p_chineselantern02x", "Not Set"}, + {"p_chineselantern03x", "Not Set"}, + {"p_chineselantern04x", "Not Set"}, + {"p_deerantchandelier01x", "Not Set"}, + {"p_gnomeoillamp01x", "Not Set"}, + {"p_gnomeoillamp02ax", "Not Set"}, + {"p_gnomeoillamp02x", "Not Set"}, + {"p_gnomeoillamp03x", "Not Set"}, + {"p_lamp03x", "Not Set"}, + {"p_lamp05ax", "Not Set"}, + {"p_lamp05bx", "Not Set"}, + {"p_lamp05cx", "Not Set"}, + {"p_lamp05dx", "Not Set"}, + {"p_lamp05x", "Not Set"}, + {"p_lamp06x", "Not Set"}, + {"p_lamp08x", "Not Set"}, + {"p_lamp09x", "Not Set"}, + {"p_lamp16x", "Not Set"}, + {"p_lamp17bx", "Not Set"}, + {"p_lamp17x", "Not Set"}, + {"p_lamp30x", "Not Set"}, + {"p_lampbar01x", "Not Set"}, + {"p_lampcandle02x", "Not Set"}, + {"p_lampfactory02x", "Not Set"}, + {"p_lampfactory04x", "Not Set"}, + {"p_lampfactory05x", "Not Set"}, + {"p_lamphanging02x", "Not Set"}, + {"p_lamphanging05bx", "Not Set"}, + {"p_lamphanging05x", "Not Set"}, + {"p_lamphanging06x", "Not Set"}, + {"p_lamphanging07x", "Not Set"}, + {"p_lamphanging08x", "Not Set"}, + {"p_lamphanging10x", "Not Set"}, + {"p_lamphanging11x", "Not Set"}, + {"p_lamphanging12x", "Not Set"}, + {"p_lamphanging13x", "Not Set"}, + {"p_lamphanging14x", "Not Set"}, + {"p_lamphanging15x", "Not Set"}, + {"p_lampmoroccan01x", "Not Set"}, + {"p_lampoilhanging01x", "Not Set"}, + {"p_lanternhang01x", "Not Set"}, + {"p_medlight01x", "Not Set"}, + {"p_mercurylamp01", "Not Set"}, + {"prop_recycle_light", "Not Set"}, + {"p_theatrelamp01x", "Not Set"}, + {"p_train_lamp01x_l", "Not Set"}, + {"p_train_lamp01x_r", "Not Set"}, + {"p_lampstreet01x", "Not Set"}, + {"p_lightpost01x", "Not Set"}, + {"p_nbdstreetlamp01x", "Not Set"}, + {"p_torch01x", "Not Set"}, + {"p_torch_02x", "Not Set"}, + {"p_bulb_g_01x", "Not Set"}, + {"p_bulb_g_02x", "Not Set"}, + {"p_bulb_g_frosted_01x", "Not Set"}, + {"p_bulb_g_stage01x", "Not Set"}, + {"p_bulbs_lights_01", "Not Set"}, + {"p_candle01x", "Not Set"}, + {"p_candle02x", "Not Set"}, + {"p_candle04x", "Not Set"}, + {"p_candlebot01x", "Not Set"}, + {"p_candlegroup03x", "Not Set"}, + {"p_candlegroup04x", "Not Set"}, + {"p_candlegroup05x", "Not Set"}, + {"p_candlegroup06x", "Not Set"}, + {"p_candlegroup07x", "Not Set"}, + {"p_candlegroup08x", "Not Set"}, + {"p_candlegroup09x", "Not Set"}, + {"p_candlelamp01x", "Not Set"}, + {"p_candle_nofx01x", "Not Set"}, + {"p_candlepuddle01x", "Not Set"}, + {"p_candlepuddle02x", "Not Set"}, + {"p_candlepuddle03x", "Not Set"}, + {"p_candlepuddle04x", "Not Set"}, + {"p_candlepuddle05x", "Not Set"}, + {"p_candlepuddle06x", "Not Set"}, + {"p_candlepuddle08x", "Not Set"}, + {"p_candlepuddle09x", "Not Set"}, + {"p_candlepuddle10x", "Not Set"}, + {"p_candlestand", "Not Set"}, + {"p_candlestand02x", "Not Set"}, + {"p_candlestick02x", "Not Set"}, + {"p_candlestick03x", "Not Set"}, + {"p_caustic_01", "Not Set"}, + {"p_lamp20x", "Not Set"}, + {"p_lampkerosene07x", "Not Set"}, + {"p_lantern_brass_001", "Not Set"}, + {"p_lightbulb01x", "Not Set"}, + {"p_lighthouse01x", "Not Set"}, + {"p_lighthouse01x_shield", "Not Set"}, + {"p_moundbase3x", "Not Set"}, + {"p_moundbase9x", "Not Set"}, + {"p_waxdrip01x", "Not Set"}, + {"p_waxdrip02x", "Not Set"}, + {"p_waxdrip03x", "Not Set"}, + {"p_waxdrip04x", "Not Set"}, + {"p_waxdrip05x", "Not Set"}, + {"p_waxdrip07x", "Not Set"}, + {"p_waxdrip08x", "Not Set"}, + {"p_waxdrip10x", "Not Set"}, + {"s_movieprojection01x", "Not Set"}, + {"s_omnilightdummy01x", "Not Set"}, + {"s_spotlightdummy01x", "Not Set"}, + {"p_bulkheadlight02x", "Not Set"}, + {"p_bulkheadlight03x", "Not Set"}, + {"p_bulkheadlight04x", "Not Set"}, + {"p_chandelier17x_dmg", "Not Set"}, + {"p_dblsconcelight01x", "Not Set"}, + {"p_kerosenewalllamp01x", "Not Set"}, + {"p_lamp01x", "Not Set"}, + {"p_lamp04x", "Not Set"}, + {"p_lamp26x_dmg", "Not Set"}, + {"p_lampexterior01x", "Not Set"}, + {"p_lampexterior01x_dmg", "Not Set"}, + {"p_lampexterior02x", "Not Set"}, + {"p_lampexterior03x", "Not Set"}, + {"p_lampexterior04x", "Not Set"}, + {"p_lampexterior04xdmg", "Not Set"}, + {"p_lampexterior05x", "Not Set"}, + {"p_lampexterior07x", "Not Set"}, + {"p_lampfactory03x", "Not Set"}, + {"p_lampkerosene03x", "Not Set"}, + {"p_lamptelegraphpole01x", "Not Set"}, + {"p_lampwall01x", "Not Set"}, + {"p_lampwall02x", "Not Set"}, + {"p_lampwall03x", "Not Set"}, + {"p_lampwall04redx", "Not Set"}, + {"p_lampwall04x", "Not Set"}, + {"p_lampwall05x", "Not Set"}, + {"p_lampwall06x", "Not Set"}, + {"p_lampwall07x", "Not Set"}, + {"p_lampwall08x", "Not Set"}, + {"p_lampwall09x", "Not Set"}, + {"p_lampwall10x", "Not Set"}, + {"p_lampwall11x", "Not Set"}, + {"p_lampwall12x", "Not Set"}, + {"p_lampwall13x", "Not Set"}, + {"p_lampwall14x", "Not Set"}, + {"p_lightind01x", "Not Set"}, + {"p_napoleonlight01x", "Not Set"}, + {"p_napoleonlight01x_dmg", "Not Set"}, + {"p_sconcelight01x", "Not Set"}, + {"p_wallamp09x", "Not Set"}, + {"p_walllampnbx06x", "Not Set"}, + {"p_dis_strongboxsm01x", "Not Set"}, + {"p_opensuitcase01x", "Not Set"}, + {"p_satchel01x", "Not Set"}, + {"p_strongbox01x", "Not Set"}, + {"p_strongbox01x_open", "Not Set"}, + {"p_strongbox_muddy_01x", "Not Set"}, + {"p_strongbox_rusted_01x", "Not Set"}, + {"p_strongboxsm01x001", "Not Set"}, + {"p_strongboxsm_muddy_01x", "Not Set"}, + {"p_strongboxsm_rusted_01x", "Not Set"}, + {"p_strongboxsm_waterlog_01x", "Not Set"}, + {"p_strongbox_snow_01x", "Not Set"}, + {"p_strongbox_waterlogged_01x", "Not Set"}, + {"p_suitcase01x", "Not Set"}, + {"p_suitcase02x", "Not Set"}, + {"p_suitcase03x", "Not Set"}, + {"p_trunk01x", "Not Set"}, + {"p_trunk02x", "Not Set"}, + {"p_trunk02x_b", "Not Set"}, + {"p_trunk03x", "Not Set"}, + {"p_trunk03x_b", "Not Set"}, + {"p_trunk04x", "Not Set"}, + {"p_trunk05ax", "Not Set"}, + {"p_trunk05x", "Not Set"}, + {"p_trunk06ax", "Not Set"}, + {"p_trunk06x", "Not Set"}, + {"p_trunkcover02x", "Not Set"}, + {"p_trunkvar01x", "Not Set"}, + {"p_trunkvar01x_noloot", "Not Set"}, + {"p_bat_lumber02x", "Not Set"}, + {"p_bat_lumber04bx", "Not Set"}, + {"p_bat_lumber04cx", "Not Set"}, + {"p_bat_lumber04dx", "Not Set"}, + {"p_bat_lumber04ex", "Not Set"}, + {"p_bat_lumber04fx", "Not Set"}, + {"p_bat_lumber04x", "Not Set"}, + {"p_bat_lumber05ax", "Not Set"}, + {"p_bat_lumber05ax_stack_01a", "Not Set"}, + {"p_bat_lumber05ax_stack_01b", "Not Set"}, + {"p_bat_lumber05ax_stack_01c", "Not Set"}, + {"p_bat_lumber05x", "Not Set"}, + {"p_cedar_log_01x", "Not Set"}, + {"p_cedar_log_03x", "Not Set"}, + {"p_cedar_log_04x", "Not Set"}, + {"p_cedar_log_06x", "Not Set"}, + {"p_cedar_log_07x", "Not Set"}, + {"p_cedar_log_08x", "Not Set"}, + {"p_cedar_log_09x", "Not Set"}, + {"p_cedar_stump_01x", "Not Set"}, + {"p_group_logpile01", "Not Set"}, + {"p_group_lumberpile01", "Not Set"}, + {"p_group_lumberwall01", "Not Set"}, + {"p_kindling02x", "Not Set"}, + {"p_loghalf01x", "Not Set"}, + {"p_loghalf02x", "Not Set"}, + {"p_logpile_snow01x", "Not Set"}, + {"p_logstack01x", "Not Set"}, + {"p_lumber01x", "Not Set"}, + {"p_lumber02x", "Not Set"}, + {"p_lumber03x", "Not Set"}, + {"p_lumber06x", "Not Set"}, + {"p_lumber07x", "Not Set"}, + {"p_lumber08x", "Not Set"}, + {"p_lumber09_cmb", "Not Set"}, + {"p_lumber09_piece01ax", "Not Set"}, + {"p_lumber09_piece01x", "Not Set"}, + {"p_lumber09_piece02a", "Not Set"}, + {"p_lumber09_piece02x", "Not Set"}, + {"p_lumber09x", "Not Set"}, + {"p_lumber11x", "Not Set"}, + {"p_lumber13x", "Not Set"}, + {"p_lumber13x_stack_01a", "Not Set"}, + {"p_lumber13x_stack_01b", "Not Set"}, + {"p_lumber15x", "Not Set"}, + {"p_lumber16x", "Not Set"}, + {"p_lumber17x", "Not Set"}, + {"p_lumber18bx", "Not Set"}, + {"p_lumber18x", "Not Set"}, + {"p_lumber19x", "Not Set"}, + {"p_lumber20x", "Not Set"}, + {"p_lumbercart01x", "Not Set"}, + {"p_lumbercart02x", "Not Set"}, + {"p_lumbercart03x", "Not Set"}, + {"p_plank_caster01x", "Not Set"}, + {"p_plank_caster02x", "Not Set"}, + {"p_plank_caster02x_sea", "Not Set"}, + {"p_propemfence01x", "Not Set"}, + {"p_railties01x", "Not Set"}, + {"p_railties02x", "Not Set"}, + {"p_railties03x", "Not Set"}, + {"p_railties05x", "Not Set"}, + {"p_static_cedar_log", "Not Set"}, + {"p_static_cedar_log01", "Not Set"}, + {"p_static_cedar_log02", "Not Set"}, + {"p_static_railties01", "Not Set"}, + {"p_static_railties02", "Not Set"}, + {"p_static_woodpile01", "Not Set"}, + {"p_vehload_lumber01", "Not Set"}, + {"p_veh_logwagon01", "Not Set"}, + {"p_veh_logwagonropes01", "Not Set"}, + {"p_veh_lumber01x", "Not Set"}, + {"p_veh_lumber02x", "Not Set"}, + {"p_veh_lumber03x", "Not Set"}, + {"p_wedgestick01x", "Not Set"}, + {"p_wedgestick02x", "Not Set"}, + {"p_woodboard01x", "Not Set"}, + {"p_woodboard01x_debris", "Not Set"}, + {"p_woodboard02x", "Not Set"}, + {"p_woodcarve01x", "Not Set"}, + {"p_woodpiece01x", "Not Set"}, + {"p_woodpiece01x_sml", "Not Set"}, + {"p_woodpiece02x", "Not Set"}, + {"p_woodpiece04x", "Not Set"}, + {"p_woodpiece05x", "Not Set"}, + {"p_woodpile01x", "Not Set"}, + {"p_woodpile02x", "Not Set"}, + {"p_woodpile03x", "Not Set"}, + {"p_woodpile04x", "Not Set"}, + {"p_woodpile05x", "Not Set"}, + {"p_woodpile06x", "Not Set"}, + {"p_woodpilechopped01x", "Not Set"}, + {"p_woodplank01x", "Not Set"}, + {"p_woodplank02x", "Not Set"}, + {"p_woodplank03x", "Not Set"}, + {"p_woodplank04x", "Not Set"}, + {"p_woodplank04x_sea", "Not Set"}, + {"p_woodramp01x", "Not Set"}, + {"p_woodramp01x_sea", "Not Set"}, + {"p_woodramp02x", "Not Set"}, + {"p_woodsliver01x", "Not Set"}, + {"p_woodstake01x", "Not Set"}, + {"p_woodwedge01x", "Not Set"}, + {"p_woodwhittle01x", "Not Set"}, + {"p_woodwhittle02x", "Not Set"}, + {"p_cavesign01x", "Not Set"}, + {"p_cavesign03x", "Not Set"}, + {"p_cavesign05x", "Not Set"}, + {"p_coal01x", "Not Set"}, + {"p_coalbin01x", "Not Set"}, + {"p_coalpile01x", "Not Set"}, + {"p_ironorewagon01x", "Not Set"}, + {"p_ore01x", "Not Set"}, + {"p_pebble01x", "Not Set"}, + {"p_pebble02x", "Not Set"}, + {"p_pebble03x", "Not Set"}, + {"p_pebble04x", "Not Set"}, + {"p_rockbag01x_close", "Not Set"}, + {"p_rockbag01x_open", "Not Set"}, + {"p_torchholder01x", "Not Set"}, + {"p_fortmercerbarricade01x", "Not Set"}, + {"p_mp_covercomb_hl_hdr", "Not Set"}, + {"p_mp_covercomb_hm_ado", "Not Set"}, + {"p_mp_covercomb_hm_bw", "Not Set"}, + {"p_mp_covercomb_hm_ch", "Not Set"}, + {"p_mp_covercomb_hm_col", "Not Set"}, + {"p_mp_covercomb_hm_cr", "Not Set"}, + {"p_mp_covercomb_hm_cwb", "Not Set"}, + {"p_mp_covercomb_hm_hdr", "Not Set"}, + {"p_mp_covercomb_hm_lag", "Not Set"}, + {"p_mp_covercomb_hm_lak", "Not Set"}, + {"p_mp_covercomb_hm_mt", "Not Set"}, + {"p_mp_covercomb_hm_sb", "Not Set"}, + {"p_mp_covercomb_hm_sd", "Not Set"}, + {"p_mp_covercomb_hm_spc", "Not Set"}, + {"p_mp_covercomb_hm_tt", "Not Set"}, + {"p_mp_covercomb_l_ado", "Not Set"}, + {"p_mp_covercomb_l_bw", "Not Set"}, + {"p_mp_covercomb_l_ch", "Not Set"}, + {"p_mp_covercomb_l_col", "Not Set"}, + {"p_mp_covercomb_l_cr", "Not Set"}, + {"p_mp_covercomb_l_cwb", "Not Set"}, + {"p_mp_covercomb_l_hdr", "Not Set"}, + {"p_mp_covercomb_l_lag", "Not Set"}, + {"p_mp_covercomb_l_lak", "Not Set"}, + {"p_mp_covercomb_l_mt", "Not Set"}, + {"p_mp_covercomb_l_sb", "Not Set"}, + {"p_mp_covercomb_l_sd", "Not Set"}, + {"p_mp_covercomb_l_spc", "Not Set"}, + {"p_mp_covercomb_l_tt", "Not Set"}, + {"p_mp_covercomb_lu_ado", "Not Set"}, + {"p_mp_covercomb_lu_bw", "Not Set"}, + {"p_mp_covercomb_lu_ch", "Not Set"}, + {"p_mp_covercomb_lu_col", "Not Set"}, + {"p_mp_covercomb_lu_cr", "Not Set"}, + {"p_mp_covercomb_lu_cwb", "Not Set"}, + {"p_mp_covercomb_lu_hdr", "Not Set"}, + {"p_mp_covercomb_lu_lag", "Not Set"}, + {"p_mp_covercomb_lu_lak", "Not Set"}, + {"p_mp_covercomb_lu_mt", "Not Set"}, + {"p_mp_covercomb_lu_sb", "Not Set"}, + {"p_mp_covercomb_lu_sd", "Not Set"}, + {"p_mp_covercomb_lu_spc", "Not Set"}, + {"p_mp_covercomb_lu_tt", "Not Set"}, + {"p_mp_covercomb_m_ado", "Not Set"}, + {"p_mp_covercomb_m_bw", "Not Set"}, + {"p_mp_covercomb_m_ch", "Not Set"}, + {"p_mp_covercomb_m_col", "Not Set"}, + {"p_mp_covercomb_m_cr", "Not Set"}, + {"p_mp_covercomb_m_cwb", "Not Set"}, + {"p_mp_covercomb_m_hdr", "Not Set"}, + {"p_mp_covercomb_m_lag", "Not Set"}, + {"p_mp_covercomb_m_lak", "Not Set"}, + {"p_mp_covercomb_m_mt", "Not Set"}, + {"p_mp_covercomb_m_sb", "Not Set"}, + {"p_mp_covercomb_m_sd", "Not Set"}, + {"p_mp_covercomb_m_spc", "Not Set"}, + {"p_mp_covercomb_m_tt", "Not Set"}, + {"p_mp_covercomb_mu_ado", "Not Set"}, + {"p_mp_covercomb_mu_bw", "Not Set"}, + {"p_mp_covercomb_mu_ch", "Not Set"}, + {"p_mp_covercomb_mu_col", "Not Set"}, + {"p_mp_covercomb_mu_cr", "Not Set"}, + {"p_mp_covercomb_mu_cwb", "Not Set"}, + {"p_mp_covercomb_mu_hdr", "Not Set"}, + {"p_mp_covercomb_mu_lag", "Not Set"}, + {"p_mp_covercomb_mu_lak", "Not Set"}, + {"p_mp_covercomb_mu_mt", "Not Set"}, + {"p_mp_covercomb_mu_sb", "Not Set"}, + {"p_mp_covercomb_mu_sd", "Not Set"}, + {"p_mp_covercomb_mu_spc", "Not Set"}, + {"p_mp_covercomb_mu_tt", "Not Set"}, + {"p_mp_covercomb_s_ado", "Not Set"}, + {"p_mp_covercomb_s_bw", "Not Set"}, + {"p_mp_covercomb_s_ch", "Not Set"}, + {"p_mp_covercomb_s_col", "Not Set"}, + {"p_mp_covercomb_s_cr", "Not Set"}, + {"p_mp_covercomb_s_cwb", "Not Set"}, + {"p_mp_covercomb_s_hdr", "Not Set"}, + {"p_mp_covercomb_s_lag", "Not Set"}, + {"p_mp_covercomb_s_lak", "Not Set"}, + {"p_mp_covercomb_s_mt", "Not Set"}, + {"p_mp_covercomb_s_sb", "Not Set"}, + {"p_mp_covercomb_s_sd", "Not Set"}, + {"p_mp_covercomb_s_spc", "Not Set"}, + {"p_mp_covercomb_s_tt", "Not Set"}, + {"p_mp_cover_h_ado", "Not Set"}, + {"p_mp_cover_h_bw", "Not Set"}, + {"p_mp_cover_h_ch", "Not Set"}, + {"p_mp_cover_h_col", "Not Set"}, + {"p_mp_cover_h_cr", "Not Set"}, + {"p_mp_cover_h_cwb", "Not Set"}, + {"p_mp_cover_h_hdr", "Not Set"}, + {"p_mp_cover_hl_ado", "Not Set"}, + {"p_mp_cover_h_lag", "Not Set"}, + {"p_mp_cover_h_lak", "Not Set"}, + {"p_mp_cover_hl_bw", "Not Set"}, + {"p_mp_cover_hl_ch", "Not Set"}, + {"p_mp_cover_hl_col", "Not Set"}, + {"p_mp_cover_hl_cr", "Not Set"}, + {"p_mp_cover_hl_cwb", "Not Set"}, + {"p_mp_cover_hl_lag", "Not Set"}, + {"p_mp_cover_hl_lak", "Not Set"}, + {"p_mp_cover_hl_mt", "Not Set"}, + {"p_mp_cover_hl_sb", "Not Set"}, + {"p_mp_cover_hl_sd", "Not Set"}, + {"p_mp_cover_hl_spc", "Not Set"}, + {"p_mp_cover_hl_tt", "Not Set"}, + {"p_mp_cover_h_mt", "Not Set"}, + {"p_mp_cover_h_sb", "Not Set"}, + {"p_mp_cover_h_sd", "Not Set"}, + {"p_mp_cover_h_spc", "Not Set"}, + {"p_mp_cover_h_tt", "Not Set"}, + {"p_mp_cover_s_ado", "Not Set"}, + {"p_mp_cover_s_bw", "Not Set"}, + {"p_mp_cover_s_ch", "Not Set"}, + {"p_mp_cover_s_col", "Not Set"}, + {"p_mp_cover_s_cr", "Not Set"}, + {"p_mp_cover_s_cwb", "Not Set"}, + {"p_mp_cover_sh_ado", "Not Set"}, + {"p_mp_cover_sh_bw", "Not Set"}, + {"p_mp_cover_sh_ch", "Not Set"}, + {"p_mp_cover_sh_col", "Not Set"}, + {"p_mp_cover_sh_cr", "Not Set"}, + {"p_mp_cover_sh_cwb", "Not Set"}, + {"p_mp_cover_s_hdr", "Not Set"}, + {"p_mp_cover_sh_hdr", "Not Set"}, + {"p_mp_cover_sh_lag", "Not Set"}, + {"p_mp_cover_sh_lak", "Not Set"}, + {"p_mp_cover_sh_mt", "Not Set"}, + {"p_mp_cover_sh_sb", "Not Set"}, + {"p_mp_cover_sh_sd", "Not Set"}, + {"p_mp_cover_sh_spc", "Not Set"}, + {"p_mp_cover_sh_tt", "Not Set"}, + {"p_mp_cover_sl_ado", "Not Set"}, + {"p_mp_cover_s_lag", "Not Set"}, + {"p_mp_cover_s_lak", "Not Set"}, + {"p_mp_cover_sl_bw", "Not Set"}, + {"p_mp_cover_sl_ch", "Not Set"}, + {"p_mp_cover_sl_col", "Not Set"}, + {"p_mp_cover_sl_cr", "Not Set"}, + {"p_mp_cover_sl_cwb", "Not Set"}, + {"p_mp_cover_sl_hdr", "Not Set"}, + {"p_mp_cover_sl_lag", "Not Set"}, + {"p_mp_cover_sl_lak", "Not Set"}, + {"p_mp_cover_sl_mt", "Not Set"}, + {"p_mp_cover_sl_sb", "Not Set"}, + {"p_mp_cover_sl_sd", "Not Set"}, + {"p_mp_cover_sl_spc", "Not Set"}, + {"p_mp_cover_sl_tt", "Not Set"}, + {"p_mp_cover_sm_ado", "Not Set"}, + {"p_mp_cover_sm_bw", "Not Set"}, + {"p_mp_cover_sm_ch", "Not Set"}, + {"p_mp_cover_sm_col", "Not Set"}, + {"p_mp_cover_sm_cr", "Not Set"}, + {"p_mp_cover_sm_cwb", "Not Set"}, + {"p_mp_cover_sm_hdr", "Not Set"}, + {"p_mp_cover_sm_lag", "Not Set"}, + {"p_mp_cover_sm_lak", "Not Set"}, + {"p_mp_cover_sm_mt", "Not Set"}, + {"p_mp_cover_sm_sb", "Not Set"}, + {"p_mp_cover_sm_sd", "Not Set"}, + {"p_mp_cover_sm_spc", "Not Set"}, + {"p_mp_cover_s_mt", "Not Set"}, + {"p_mp_cover_sm_tt", "Not Set"}, + {"p_mp_cover_ss_ado", "Not Set"}, + {"p_mp_cover_s_sb", "Not Set"}, + {"p_mp_cover_ss_bw", "Not Set"}, + {"p_mp_cover_ss_ch", "Not Set"}, + {"p_mp_cover_ss_col", "Not Set"}, + {"p_mp_cover_ss_cr", "Not Set"}, + {"p_mp_cover_ss_cwb", "Not Set"}, + {"p_mp_cover_s_sd", "Not Set"}, + {"p_mp_cover_ss_hdr", "Not Set"}, + {"p_mp_cover_ss_lag", "Not Set"}, + {"p_mp_cover_ss_lak", "Not Set"}, + {"p_mp_cover_ss_mt", "Not Set"}, + {"p_mp_cover_s_spc", "Not Set"}, + {"p_mp_cover_ss_sb", "Not Set"}, + {"p_mp_cover_ss_sd", "Not Set"}, + {"p_mp_cover_ss_spc", "Not Set"}, + {"p_mp_cover_ss_tt", "Not Set"}, + {"p_mp_cover_s_tt", "Not Set"}, + {"p_mp_cover_su_ado", "Not Set"}, + {"p_mp_cover_su_bw", "Not Set"}, + {"p_mp_cover_su_ch", "Not Set"}, + {"p_mp_cover_su_col", "Not Set"}, + {"p_mp_cover_su_cr", "Not Set"}, + {"p_mp_cover_su_cwb", "Not Set"}, + {"p_mp_cover_su_hdr", "Not Set"}, + {"p_mp_cover_su_lag", "Not Set"}, + {"p_mp_cover_su_lak", "Not Set"}, + {"p_mp_cover_su_mt", "Not Set"}, + {"p_mp_cover_su_sb", "Not Set"}, + {"p_mp_cover_su_sd", "Not Set"}, + {"p_mp_cover_su_spc", "Not Set"}, + {"p_mp_cover_su_tt", "Not Set"}, + {"p_armoiroffice66x", "Not Set"}, + {"p_bankcheckemboss01x", "Not Set"}, + {"p_banksealpress01x", "Not Set"}, + {"p_blotterroller01x", "Not Set"}, + {"p_book01x", "Not Set"}, + {"p_book02x", "Not Set"}, + {"p_book03x", "Not Set"}, + {"p_book04x", "Not Set"}, + {"p_book05x", "Not Set"}, + {"p_book06x", "Not Set"}, + {"p_book07x", "Not Set"}, + {"p_book08x", "Not Set"}, + {"p_book09x", "Not Set"}, + {"p_bookbible01x", "Not Set"}, + {"p_bookcase01x", "Not Set"}, + {"p_bookcase03x", "Not Set"}, + {"p_bookcase04x", "Not Set"}, + {"p_bookcase05x", "Not Set"}, + {"p_bookend02x", "Not Set"}, + {"p_books01x", "Not Set"}, + {"p_books02x", "Not Set"}, + {"p_books03x", "Not Set"}, + {"p_books04x", "Not Set"}, + {"p_books66x", "Not Set"}, + {"p_bookstwo01x", "Not Set"}, + {"p_bw_desk01x", "Not Set"}, + {"p_cabinet09x", "Not Set"}, + {"p_cabinetpostal01x", "Not Set"}, + {"p_chairrocking03x", "Not Set"}, + {"p_clipboard01x", "Not Set"}, + {"p_clipboard02x", "Not Set"}, + {"p_clipboard03x", "Not Set"}, + {"p_cottonbox01x", "Not Set"}, + {"p_cs_letter01a_x_01", "Not Set"}, + {"p_cs_letter01a_x_02", "Not Set"}, + {"p_deed_cs01x", "Not Set"}, + {"p_depositbag01x", "Not Set"}, + {"p_deputybadge01x", "Not Set"}, + {"p_desk01x", "Not Set"}, + {"p_desk03x", "Not Set"}, + {"p_desk04x", "Not Set"}, + {"p_desk07x", "Not Set"}, + {"p_desk08x", "Not Set"}, + {"p_desk09bx", "Not Set"}, + {"p_desk09x", "Not Set"}, + {"p_desk13x", "Not Set"}, + {"p_desk14x", "Not Set"}, + {"p_desk15x", "Not Set"}, + {"p_desk17x", "Not Set"}, + {"p_desk18x", "Not Set"}, + {"p_deskdrawer01x", "Not Set"}, + {"p_deskpad01x", "Not Set"}, + {"p_deskstand01x", "Not Set"}, + {"p_devtray01x", "Not Set"}, + {"p_drdesk01x", "Not Set"}, + {"p_drmedscale02x", "Not Set"}, + {"p_drmedscale03x", "Not Set"}, + {"p_drsupplycart01x", "Not Set"}, + {"p_fanceiling01ax", "Not Set"}, + {"p_fanceiling01bx", "Not Set"}, + {"p_fanceiling01x", "Not Set"}, + {"p_fandesk01x", "Not Set"}, + {"p_fandesk02x", "Not Set"}, + {"p_fandesk_off01x", "Not Set"}, + {"p_filecabinet02x", "Not Set"}, + {"p_filecabinet03x", "Not Set"}, + {"p_filecabinet04bx", "Not Set"}, + {"p_filecabinet04x", "Not Set"}, + {"p_filecabinet05x", "Not Set"}, + {"p_filecabinet66x", "Not Set"}, + {"p_filecabinet67x", "Not Set"}, + {"p_filecabinet68x", "Not Set"}, + {"p_filecabinet69x", "Not Set"}, + {"p_gen_documentfolder01x", "Not Set"}, + {"p_globe02x", "Not Set"}, + {"p_inkpad01x", "Not Set"}, + {"p_inkpad02x", "Not Set"}, + {"p_inkwell01x", "Not Set"}, + {"p_inkwell02x", "Not Set"}, + {"p_inkwell05x", "Not Set"}, + {"p_inkwell06x", "Not Set"}, + {"p_journal01x", "Not Set"}, + {"p_journal_open01x", "Not Set"}, + {"p_ledger01x", "Not Set"}, + {"p_letter01x", "Not Set"}, + {"p_letterbox_01x", "Not Set"}, + {"p_letterbundle_01x", "Not Set"}, + {"p_letter_cs01x", "Not Set"}, + {"p_letterenvelope_cs01x", "Not Set"}, + {"p_letteropener01x", "Not Set"}, + {"p_lettertray01x", "Not Set"}, + {"p_magiclantern01x", "Not Set"}, + {"p_magiclanternslide01x", "Not Set"}, + {"p_mailbags01x", "Not Set"}, + {"p_mail_shelf01x", "Not Set"}, + {"p_mechanicalcalculator01x", "Not Set"}, + {"p_medbed01x", "Not Set"}, + {"p_nbx_doc_wallclocklrg01x", "Not Set"}, + {"p_numberingstamp01x", "Not Set"}, + {"p_openbook01x", "Not Set"}, + {"p_painting_newgala_lrg01x", "Not Set"}, + {"p_painting_newgala_sml01x", "Not Set"}, + {"P_PAMPHLETSTACK01X", "Not Set"}, + {"p_paper01x", "Not Set"}, + {"p_paper02x", "Not Set"}, + {"p_paper03x", "Not Set"}, + {"p_paperbin01x", "Not Set"}, + {"p_papercert01a", "Not Set"}, + {"p_papercontract01a", "Not Set"}, + {"p_paperdiploma01a", "Not Set"}, + {"p_paperdrafting01a", "Not Set"}, + {"p_paperdrafting01b", "Not Set"}, + {"p_paperreceipt01x", "Not Set"}, + {"p_paperreceipt02x", "Not Set"}, + {"p_paperstack01a", "Not Set"}, + {"p_paperstack01x", "Not Set"}, + {"p_papertyped01a", "Not Set"}, + {"p_pen01x", "Not Set"}, + {"p_pencil01x", "Not Set"}, + {"p_pencil02x", "Not Set"}, + {"p_phoneantique01x", "Not Set"}, + {"p_podium01x", "Not Set"}, + {"p_podium02x", "Not Set"}, + {"p_postaltrolley01x", "Not Set"}, + {"p_printer_board_001", "Not Set"}, + {"p_projector01x", "Not Set"}, + {"p_safe01", "Not Set"}, + {"p_safe_ser", "Not Set"}, + {"p_safetydepositbox01x", "Not Set"}, + {"p_scalepostal01x", "Not Set"}, + {"p_shelf02x", "Not Set"}, + {"p_shelf03x", "Not Set"}, + {"p_shelfpostal01x", "Not Set"}, + {"p_signtellerclosed01x", "Not Set"}, + {"p_specimenbox01x", "Not Set"}, + {"p_specimenbox02x", "Not Set"}, + {"p_stamp01x", "Not Set"}, + {"p_sterlingset01x", "Not Set"}, + {"p_telegram01x", "Not Set"}, + {"p_typewriter01x", "Not Set"}, + {"p_typewriter02x", "Not Set"}, + {"p_valbankclock01x", "Not Set"}, + {"p_wallclocklrg01x", "Not Set"}, + {"p_wastebasket01x", "Not Set"}, + {"p_wickerbox01x", "Not Set"}, + {"p_woodendeskchair01x", "Not Set"}, + {"s_leaflet01x", "Not Set"}, + {"s_leafletstack01x", "Not Set"}, + {"val_bank_clock", "Not Set"}, + {"p_oilcan01x", "Not Set"}, + {"p_oilcan02x", "Not Set"}, + {"p_oildrum01x", "Not Set"}, + {"p_oildrum02x", "Not Set"}, + {"p_oildrum03x", "Not Set"}, + {"p_pipes01x", "Not Set"}, + {"nbx_flowerarng1x", "Not Set"}, + {"oak_branch_rope_swing_aa", "Not Set"}, + {"p_belljarplant01x", "Not Set"}, + {"p_bowlplantbra01x", "Not Set"}, + {"p_chainbalcony01axb_a", "Not Set"}, + {"p_chainbalcony0axb_b", "Not Set"}, + {"p_chainbalcony0axb_c", "Not Set"}, + {"p_fountain02x", "Not Set"}, + {"p_planter03x", "Not Set"}, + {"p_plant_int_03b", "Not Set"}, + {"p_plant_int_04a", "Not Set"}, + {"p_plant_moneytree", "Not Set"}, + {"p_plant_philo", "Not Set"}, + {"p_plant_philo2", "Not Set"}, + {"p_plant_philo3", "Not Set"}, + {"p_potfernbalcony01x", "Not Set"}, + {"p_potfernbalcony02x", "Not Set"}, + {"p_potfernbalcony02xb", "Not Set"}, + {"p_potfernbalcony05xb_a", "Not Set"}, + {"p_potfernbalcony05xb_b", "Not Set"}, + {"p_pot_flowerarng01x", "Not Set"}, + {"p_pot_flowerarng02x", "Not Set"}, + {"p_pot_flowerarng03x", "Not Set"}, + {"p_pot_flowerarng05x", "Not Set"}, + {"p_pot_flowerarng06x", "Not Set"}, + {"p_pot_flowerarng07x", "Not Set"}, + {"p_pot_flowerarng08x", "Not Set"}, + {"p_pot_flowerarng09bx", "Not Set"}, + {"p_pot_flowerarng09x", "Not Set"}, + {"p_pot_flowerarng10x", "Not Set"}, + {"p_pot_flowerarng11x", "Not Set"}, + {"p_pot_flowerarng16x", "Not Set"}, + {"p_pot_flowerarng17x", "Not Set"}, + {"p_pot_flowerarng18x", "Not Set"}, + {"p_pot_flowerarng19x", "Not Set"}, + {"p_pot_flowerarng20x", "Not Set"}, + {"p_pot_flowerarng23x", "Not Set"}, + {"p_pot_flowerarngdead02", "Not Set"}, + {"p_pot_leafyvase", "Not Set"}, + {"p_pot_plant_01b", "Not Set"}, + {"p_pot_plant_01e", "Not Set"}, + {"p_pot_plant_01f", "Not Set"}, + {"p_pot_plant_01g", "Not Set"}, + {"p_pot_plant_03b", "Not Set"}, + {"p_pot_plant_05a", "Not Set"}, + {"p_pot_plant_05b", "Not Set"}, + {"p_pot_plant_08a", "Not Set"}, + {"p_pot_plant_6a", "Not Set"}, + {"p_pot_plant_6b", "Not Set"}, + {"p_pot_plant_7a", "Not Set"}, + {"p_pot_plant_7b", "Not Set"}, + {"p_pot_plant_7c", "Not Set"}, + {"p_pot_plant_7_static", "Not Set"}, + {"p_weed_strip_aa_int", "Not Set"}, + {"p_weed_strip_ab_int", "Not Set"}, + {"p_weed_strip_ac_int", "Not Set"}, + {"p_weed_strip_ad_int", "Not Set"}, + {"p_ceramicpot01x", "Not Set"}, + {"p_gibpotclay01x", "Not Set"}, + {"p_plant04x", "Not Set"}, + {"p_plant05x", "Not Set"}, + {"p_plant06x", "Not Set"}, + {"p_potclay01x", "Not Set"}, + {"p_potclay02x", "Not Set"}, + {"p_potclay03x", "Not Set"}, + {"p_potclay04x", "Not Set"}, + {"p_potclay05x", "Not Set"}, + {"p_potclayshard01x", "Not Set"}, + {"p_potteryindian01x", "Not Set"}, + {"p_potteryindian02x", "Not Set"}, + {"p_potteryindian03x", "Not Set"}, + {"p_potteryindian04x", "Not Set"}, + {"p_potteryindian05x", "Not Set"}, + {"p_potteryindian07x", "Not Set"}, + {"p_potteryindian08x", "Not Set"}, + {"p_potteryindian09x", "Not Set"}, + {"p_potteryindian10x", "Not Set"}, + {"p_bag_voodoo01x", "Not Set"}, + {"p_candlegroup01x", "Not Set"}, + {"p_candlegroup02x", "Not Set"}, + {"p_charmscreepy01x", "Not Set"}, + {"p_charmscreepy01x_a", "Not Set"}, + {"p_charmscreepy01x_b", "Not Set"}, + {"p_charmscreepy01x_small", "Not Set"}, + {"p_crucifix01x", "Not Set"}, + {"p_crucifix02x", "Not Set"}, + {"p_crucifix03x", "Not Set"}, + {"p_goldcrucifix_01x", "Not Set"}, + {"p_iconcross02x", "Not Set"}, + {"p_iconcross03x", "Not Set"}, + {"p_monkeyhead66x", "Not Set"}, + {"p_monkeyskull66x", "Not Set"}, + {"p_rockcircle01x", "Not Set"}, + {"p_snakevoodoo01x", "Not Set"}, + {"p_spookynative01x", "Not Set"}, + {"p_spookynative02x", "Not Set"}, + {"p_spookynative03x", "Not Set"}, + {"p_spookynative04x", "Not Set"}, + {"p_spookynative05x", "Not Set"}, + {"p_spookynative06x", "Not Set"}, + {"p_spookynative06x_a", "Not Set"}, + {"p_spookynative07x", "Not Set"}, + {"p_spookynative08x", "Not Set"}, + {"p_spookynative09x", "Not Set"}, + {"p_spookynative10x", "Not Set"}, + {"p_spookynative10x_a", "Not Set"}, + {"p_spookynative11x", "Not Set"}, + {"p_spookynative11x_a", "Not Set"}, + {"p_spookynative12x", "Not Set"}, + {"p_spookyskulls01x", "Not Set"}, + {"p_spookyskulls02x", "Not Set"}, + {"p_spookyskulls02x_a", "Not Set"}, + {"p_spookyskulls02x_b", "Not Set"}, + {"p_spookyskulls03x", "Not Set"}, + {"p_spookyskulls04x", "Not Set"}, + {"p_spookyskulls05x", "Not Set"}, + {"p_spookyskulls06x", "Not Set"}, + {"p_spookyskulls07ax", "Not Set"}, + {"p_spookyskulls07bx", "Not Set"}, + {"p_spookyskulls08x", "Not Set"}, + {"p_basicstationclock01x", "Not Set"}, + {"p_basicstationclockabg", "Not Set"}, + {"p_basicstationclockrhodes", "Not Set"}, + {"p_bcstationclockvalentine", "Not Set"}, + {"p_fancystationclock01x", "Not Set"}, + {"p_fancystationclocksd", "Not Set"}, + {"p_flaglemoyne01x", "Not Set"}, + {"p_fort_modular_04", "Not Set"}, + {"p_fpole01x", "Not Set"}, + {"p_gen_insulater01a", "Not Set"}, + {"p_gen_insulater01b", "Not Set"}, + {"p_gen_ramp", "Not Set"}, + {"p_gen_ramp_b", "Not Set"}, + {"p_gen_telepole02x", "Not Set"}, + {"p_group_barrelshot03", "Not Set"}, + {"p_heartland_emeraldranch", "Not Set"}, + {"p_heartlandsline_annesburg", "Not Set"}, + {"p_heartlandsline_valentine", "Not Set"}, + {"p_heartlandsline_vanhorn", "Not Set"}, + {"p_hitchingpost01x", "Not Set"}, + {"p_hitchingpost01x_dmg", "Not Set"}, + {"p_hitchingpost04x", "Not Set"}, + {"p_hitchingpost05x", "Not Set"}, + {"p_hitchpostbla01x", "Not Set"}, + {"p_horsehitchnbd01x", "Not Set"}, + {"p_lamppost01x", "Not Set"}, + {"p_railbuffer01x", "Not Set"}, + {"p_railroadtie01x", "Not Set"}, + {"p_railroadtiepile01x", "Not Set"}, + {"p_railroadtrackpile01x", "Not Set"}, + {"p_railroadtrack_single01x", "Not Set"}, + {"p_rhodesstop01x", "Not Set"}, + {"p_ropeswingbroken01x", "Not Set"}, + {"prop_flag_crew01x", "Not Set"}, + {"prop_flagpole_1a", "Not Set"}, + {"prop_flag_us", "Not Set"}, + {"prop_flag_us_mp", "Not Set"}, + {"prop_flag_ussm", "Not Set"}, + {"p_saintdenistop01x", "Not Set"}, + {"p_sandbagcover01x", "Not Set"}, + {"p_sandbagcover02ax", "Not Set"}, + {"p_sandbagcover02bx", "Not Set"}, + {"p_sandbagcover02x", "Not Set"}, + {"p_sandbags01x", "Not Set"}, + {"p_sandbags02x", "Not Set"}, + {"p_sandbags03_static", "Not Set"}, + {"p_sandbags03x", "Not Set"}, + {"p_sandbags04x", "Not Set"}, + {"p_scoachstop_armadillo", "Not Set"}, + {"p_scoachstop_blackwater", "Not Set"}, + {"p_scoachstop_mcfarlaneranch", "Not Set"}, + {"p_scoachstop_strawberry", "Not Set"}, + {"p_scoachstop_tumbleweed", "Not Set"}, + {"p_sha_ext_alarmbell01x", "Not Set"}, + {"p_streetclock01x", "Not Set"}, + {"p_tarroll01x", "Not Set"}, + {"p_telegraphpole02x", "Not Set"}, + {"p_telegraphpole04x", "Not Set"}, + {"p_telegraphpole05x", "Not Set"}, + {"p_telegraphpole06x", "Not Set"}, + {"p_telegraphpole07x", "Not Set"}, + {"p_telegraphpole08x", "Not Set"}, + {"p_telegraphpole09x", "Not Set"}, + {"p_telepole01x", "Not Set"}, + {"p_train_signal_01", "Not Set"}, + {"p_train_signal_02", "Not Set"}, + {"p_train_watercrane01", "Not Set"}, + {"p_train_watercrane02", "Not Set"}, + {"p_trashbin01bx", "Not Set"}, + {"p_trashbin01x", "Not Set"}, + {"p_val_sandbags01x", "Not Set"}, + {"p_waterpump01x", "Not Set"}, + {"p_watertow02x", "Not Set"}, + {"p_watertow05x", "Not Set"}, + {"p_watertrough01x", "Not Set"}, + {"p_watertrough01x_new", "Not Set"}, + {"p_watertrough02x", "Not Set"}, + {"p_watertrough03x", "Not Set"}, + {"p_watertroughsml01x", "Not Set"}, + {"p_well02x", "Not Set"}, + {"p_windmill01x", "Not Set"}, + {"p_windmill01x_new", "Not Set"}, + {"p_windmill_top", "Not Set"}, + {"slod_p_streetcarpole02x", "Not Set"}, + {"p_int_rock01x", "Not Set"}, + {"p_int_rock02x", "Not Set"}, + {"p_int_rock03x", "Not Set"}, + {"p_int_rock04x", "Not Set"}, + {"p_int_rock05x", "Not Set"}, + {"p_int_rockhang01a", "Not Set"}, + {"p_int_rockhang01b", "Not Set"}, + {"p_int_rockhang02a", "Not Set"}, + {"p_int_rockhang02b", "Not Set"}, + {"p_int_rockhang02c", "Not Set"}, + {"p_int_rockhang03x", "Not Set"}, + {"p_int_rockhang04x", "Not Set"}, + {"p_int_rockhang05x", "Not Set"}, + {"p_int_rockhang06x", "Not Set"}, + {"p_int_rockhang07x", "Not Set"}, + {"p_int_rockhang08x", "Not Set"}, + {"p_int_rockhang09x", "Not Set"}, + {"p_int_rockhang10x", "Not Set"}, + {"p_int_rockhang11x", "Not Set"}, + {"p_int_rockpile01x", "Not Set"}, + {"p_int_rockpile02x", "Not Set"}, + {"p_int_rockpile03x", "Not Set"}, + {"p_int_rockpile04x", "Not Set"}, + {"roa_int_rock_05", "Not Set"}, + {"roa_int_rock_07", "Not Set"}, + {"roa_int_rock_08", "Not Set"}, + {"roa_int_rock_09", "Not Set"}, + {"roa_int_rock_10", "Not Set"}, + {"roa_int_rock_11", "Not Set"}, + {"roa_int_rock_scree_06", "Not Set"}, + {"roa_int_rock_scree_07", "Not Set"}, + {"p_chimneyind00x", "Not Set"}, + {"p_vent00x", "Not Set"}, + {"p_ventroof00x", "Not Set"}, + {"p_ventroof01x", "Not Set"}, + {"p_barberchair01x", "Not Set"}, + {"p_barberchair02x", "Not Set"}, + {"p_barberchair03x", "Not Set"}, + {"p_barstool01x", "Not Set"}, + {"p_bench03x", "Not Set"}, + {"p_bench06x", "Not Set"}, + {"p_bench06x_dmg", "Not Set"}, + {"p_bench08bx", "Not Set"}, + {"p_bench09x", "Not Set"}, + {"p_bench11x", "Not Set"}, + {"p_bench15_mjr", "Not Set"}, + {"p_bench15x", "Not Set"}, + {"p_bench16x", "Not Set"}, + {"p_bench17x", "Not Set"}, + {"p_bench18x", "Not Set"}, + {"p_bench20x", "Not Set"}, + {"p_benchbear01x", "Not Set"}, + {"p_benchbroken02x", "Not Set"}, + {"p_benchch01x", "Not Set"}, + {"p_benchch01x_dmg", "Not Set"}, + {"p_bench_log01x", "Not Set"}, + {"p_bench_log02x", "Not Set"}, + {"p_bench_log03x", "Not Set"}, + {"p_bench_log04x", "Not Set"}, + {"p_bench_log05x", "Not Set"}, + {"p_bench_log06x", "Not Set"}, + {"p_bench_log07x", "Not Set"}, + {"p_bench_logsnow07x", "Not Set"}, + {"p_benchlong05x", "Not Set"}, + {"p_benchpiano02x", "Not Set"}, + {"p_birthingchair01x", "Not Set"}, + {"p_bistrochair01x", "Not Set"}, + {"p_chair02x", "Not Set"}, + {"p_chair02x_dmg", "Not Set"}, + {"p_chair04x", "Not Set"}, + {"p_chair05x", "Not Set"}, + {"p_chair05x_sea", "Not Set"}, + {"p_chair06x", "Not Set"}, + {"p_chair06x_dmg", "Not Set"}, + {"p_chair07x", "Not Set"}, + {"p_chair09x", "Not Set"}, + {"p_chair_10x", "Not Set"}, + {"p_chair11x", "Not Set"}, + {"p_chair12bx", "Not Set"}, + {"p_chair12x", "Not Set"}, + {"p_chair13x", "Not Set"}, + {"p_chair14x", "Not Set"}, + {"p_chair15x", "Not Set"}, + {"p_chair16x", "Not Set"}, + {"p_chair17x", "Not Set"}, + {"p_chair18x", "Not Set"}, + {"p_chair19x", "Not Set"}, + {"p_chair20x", "Not Set"}, + {"p_chair21x", "Not Set"}, + {"p_chair21x_fussar", "Not Set"}, + {"p_chair22x", "Not Set"}, + {"p_chair23x", "Not Set"}, + {"p_chair24x", "Not Set"}, + {"p_chair25x", "Not Set"}, + {"p_chair26x", "Not Set"}, + {"p_chair27x", "Not Set"}, + {"p_chair30x", "Not Set"}, + {"p_chair31x", "Not Set"}, + {"p_chair34x", "Not Set"}, + {"p_chair37x", "Not Set"}, + {"p_chair38x", "Not Set"}, + {"p_chair_barrel04b", "Not Set"}, + {"p_chairbroken01x", "Not Set"}, + {"p_chairComfy01x", "Not Set"}, + {"p_chaircomfy02", "Not Set"}, + {"p_chaircomfy03x", "Not Set"}, + {"p_chaircomfy04x", "Not Set"}, + {"p_chaircomfy05x", "Not Set"}, + {"p_chaircomfy06x", "Not Set"}, + {"p_chaircomfy07x", "Not Set"}, + {"p_chaircomfy08x", "Not Set"}, + {"p_chaircomfy09x", "Not Set"}, + {"p_chaircomfy10x", "Not Set"}, + {"p_chaircomfy11x", "Not Set"}, + {"p_chaircomfy12x", "Not Set"}, + {"p_chaircomfy14x", "Not Set"}, + {"p_chaircomfy16x", "Not Set"}, + {"p_chaircomfy17x", "Not Set"}, + {"p_chaircomfy18x", "Not Set"}, + {"p_chaircomfy22x", "Not Set"}, + {"p_chaircomfy23x", "Not Set"}, + {"p_chairconvoround01x", "Not Set"}, + {"p_chair_crate02x", "Not Set"}, + {"p_chair_crate15x", "Not Set"}, + {"p_chair_cs05x", "Not Set"}, + {"p_chairdeck01x", "Not Set"}, + {"p_chairdeckfolded01x", "Not Set"}, + {"p_chairdesk01x", "Not Set"}, + {"p_chairdesk02x", "Not Set"}, + {"p_chairdining01x", "Not Set"}, + {"p_chairdining02x", "Not Set"}, + {"p_chairdining03x", "Not Set"}, + {"p_chairdoctor01x", "Not Set"}, + {"p_chairdoctor02x", "Not Set"}, + {"p_chaireagle01x", "Not Set"}, + {"p_chairfolding02x", "Not Set"}, + {"p_chairmed01x", "Not Set"}, + {"p_chairmed02x", "Not Set"}, + {"p_chairoffice02x", "Not Set"}, + {"p_chairpokerfancy01x", "Not Set"}, + {"p_chairporch01x", "Not Set"}, + {"p_chairrocking02x", "Not Set"}, + {"p_chairrocking04x", "Not Set"}, + {"p_chairrocking05x", "Not Set"}, + {"p_chairrocking06x", "Not Set"}, + {"p_chairrustic01x", "Not Set"}, + {"p_chairrustic02x", "Not Set"}, + {"p_chairrustic03x", "Not Set"}, + {"p_chairrustic04x", "Not Set"}, + {"p_chairrustic05x", "Not Set"}, + {"p_chairsalon01x", "Not Set"}, + {"p_chairtall01x", "Not Set"}, + {"p_chairvictorian01x", "Not Set"}, + {"p_chairwhite01x", "Not Set"}, + {"p_chairwicker01b_static", "Not Set"}, + {"p_chairwicker01x", "Not Set"}, + {"p_chairwicker02x", "Not Set"}, + {"p_couch01x", "Not Set"}, + {"p_couch02x", "Not Set"}, + {"p_couch03x", "Not Set"}, + {"p_couch05x", "Not Set"}, + {"p_couch06x", "Not Set"}, + {"p_couch08x", "Not Set"}, + {"p_couch09x", "Not Set"}, + {"p_couch10x", "Not Set"}, + {"p_couch11x", "Not Set"}, + {"p_hallbench01x", "Not Set"}, + {"p_loveseat01x", "Not Set"}, + {"p_loveseat02x", "Not Set"}, + {"p_medwheelchair01x", "Not Set"}, + {"p_oldarmchair01x", "Not Set"}, + {"p_pianochair01x", "Not Set"}, + {"p_pillowcouch01", "Not Set"}, + {"p_pilloweagle01x", "Not Set"}, + {"p_rhosaloonboothseat01x", "Not Set"}, + {"p_rockingchair01x", "Not Set"}, + {"p_rockingchair02x", "Not Set"}, + {"p_rockingchair03x", "Not Set"}, + {"p_rockstool02x", "Not Set"}, + {"p_seatbench01x", "Not Set"}, + {"p_settee01x", "Not Set"}, + {"p_settee02bx", "Not Set"}, + {"p_settee02x", "Not Set"}, + {"p_settee03bx", "Not Set"}, + {"p_settee03x", "Not Set"}, + {"p_settee04x", "Not Set"}, + {"p_settee_05x", "Not Set"}, + {"p_sit_chairwicker01a", "Not Set"}, + {"p_sit_chairwicker01b", "Not Set"}, + {"p_sit_chairwicker01c", "Not Set"}, + {"p_sit_chairwicker01d", "Not Set"}, + {"p_sit_chairwicker01e", "Not Set"}, + {"p_stool013x", "Not Set"}, + {"p_stool01x", "Not Set"}, + {"p_stool02x", "Not Set"}, + {"p_stool03x", "Not Set"}, + {"p_stool04x", "Not Set"}, + {"p_stool05x", "Not Set"}, + {"p_stool06x", "Not Set"}, + {"p_stool07x", "Not Set"}, + {"p_stool08x", "Not Set"}, + {"p_stool09x", "Not Set"}, + {"p_stool10x", "Not Set"}, + {"p_stool11x", "Not Set"}, + {"p_stool12x", "Not Set"}, + {"p_stool14x", "Not Set"}, + {"p_stool15x", "Not Set"}, + {"p_stool16x", "Not Set"}, + {"p_stoolcomfy01x", "Not Set"}, + {"p_stoolcomfy02x", "Not Set"}, + {"p_stoolfolding01bx", "Not Set"}, + {"p_stoolfolding01x", "Not Set"}, + {"p_stoolwinter01x", "Not Set"}, + {"p_throwpillow_05x", "Not Set"}, + {"p_throwpillow07x", "Not Set"}, + {"p_treestump02x", "Not Set"}, + {"p_windsorchair01x", "Not Set"}, + {"p_windsorchair02x", "Not Set"}, + {"p_woodbench02x", "Not Set"}, + {"p_woodenchair01x", "Not Set"}, + {"p_bee_str_sign_7_2", "Not Set"}, + {"p_bee_val_prong", "Not Set"}, + {"p_bee_val_sign_2", "Not Set"}, + {"p_bee_val_sign_6", "Not Set"}, + {"p_bee_val_sign_7", "Not Set"}, + {"p_bee_var_sign_004", "Not Set"}, + {"p_bee_var_sign_08", "Not Set"}, + {"p_bee_var_sign_1", "Not Set"}, + {"p_bee_var_sign_2_new", "Not Set"}, + {"p_bra_01_cardell_sgn01x", "Not Set"}, + {"p_bra_cal_sgn_tress1a", "Not Set"}, + {"p_bra_cal_sgn_tress1b", "Not Set"}, + {"p_bra_cal_sgn_tress2a", "Not Set"}, + {"p_bra_cal_sgn_tress2b", "Not Set"}, + {"p_bra_cal_sgn_tress3a", "Not Set"}, + {"p_bra_cal_sgn_tress3b", "Not Set"}, + {"p_bra_cal_sgn_tress4a", "Not Set"}, + {"p_bra_cal_sgn_tress4b", "Not Set"}, + {"p_cal_gater_sign01x", "Not Set"}, + {"p_caliga_sign01x", "Not Set"}, + {"p_chalkboard01x", "Not Set"}, + {"p_chalksign01x", "Not Set"}, + {"p_chalksign02x", "Not Set"}, + {"p_chalksign03x", "Not Set"}, + {"p_chalksign04x", "Not Set"}, + {"p_chalksign05x", "Not Set"}, + {"p_chalksign06x", "Not Set"}, + {"p_chalksign07x", "Not Set"}, + {"p_chalksign_buysell01x", "Not Set"}, + {"p_cho_sign_01", "Not Set"}, + {"p_cho_sign_02x", "Not Set"}, + {"p_cho_sign_03x", "Not Set"}, + {"p_cho_sign_04", "Not Set"}, + {"p_cho_sign_05", "Not Set"}, + {"p_cho_sign_06", "Not Set"}, + {"p_cho_sign_08", "Not Set"}, + {"p_cho_sign_09", "Not Set"}, + {"p_closedsignlrg01x", "Not Set"}, + {"p_closedsignmed02x", "Not Set"}, + {"p_closedsignsml03x", "Not Set"}, + {"p_dne_sca_mea_rd02", "Not Set"}, + {"p_donationsign01x", "Not Set"}, + {"p_gap_sign_01", "Not Set"}, + {"p_gap_sign_02", "Not Set"}, + {"p_gap_sign_03", "Not Set"}, + {"p_gap_sign_04", "Not Set"}, + {"p_gap_sign_05", "Not Set"}, + {"p_gap_sign_06", "Not Set"}, + {"p_gap_sign_07", "Not Set"}, + {"p_gap_sign_08", "Not Set"}, + {"p_gre_ogsign_3", "Not Set"}, + {"p_gre_ogsign_6", "Not Set"}, + {"p_gre_p_01_signpost_01x", "Not Set"}, + {"p_gre_p_01_signpost_02", "Not Set"}, + {"p_gre_p_01_signpost_03", "Not Set"}, + {"p_gre_p_01_signpost_04x", "Not Set"}, + {"p_gre_p_01_signpost_05x", "Not Set"}, + {"p_gre_p_01_signpost_06x", "Not Set"}, + {"p_gre_p_01_signpost_07", "Not Set"}, + {"p_gre_p_01_signpost_08", "Not Set"}, + {"p_han_sign_01x", "Not Set"}, + {"p_hea_sign_01", "Not Set"}, + {"p_hea_sign_02", "Not Set"}, + {"p_hea_sign_03", "Not Set"}, + {"p_hea_sign_04", "Not Set"}, + {"p_hea_sign_06", "Not Set"}, + {"p_hea_sign_07", "Not Set"}, + {"p_hea_sign_08", "Not Set"}, + {"p_hea_sign_09", "Not Set"}, + {"p_hea_sign_10", "Not Set"}, + {"p_hea_sign_11", "Not Set"}, + {"p_hea_sign_12", "Not Set"}, + {"p_hea_sign_13", "Not Set"}, + {"p_hea_sign_14", "Not Set"}, + {"p_hea_sign_15x", "Not Set"}, + {"p_hea_sign_16", "Not Set"}, + {"p_hea_sign_18x", "Not Set"}, + {"p_hea_sign_19", "Not Set"}, + {"p_hea_sign_20", "Not Set"}, + {"p_hea_sign_21", "Not Set"}, + {"p_hea_sign_22", "Not Set"}, + {"p_hea_sign_23", "Not Set"}, + {"p_hea_sign_24", "Not Set"}, + {"p_hea_sign_25", "Not Set"}, + {"p_hea_sign_26", "Not Set"}, + {"p_hea_sign_5x", "Not Set"}, + {"p_helpwanted01x", "Not Set"}, + {"p_helpwantedsign01x", "Not Set"}, + {"p_hen_sign_02", "Not Set"}, + {"p_hen_sign_03", "Not Set"}, + {"p_hen_sign_04", "Not Set"}, + {"p_hen_sign_05", "Not Set"}, + {"p_hen_sign_06", "Not Set"}, + {"p_hen_sign_07", "Not Set"}, + {"p_mailbox01x", "Not Set"}, + {"p_matches01x_new", "Not Set"}, + {"p_medicalchart01x", "Not Set"}, + {"p_medicalchart02x", "Not Set"}, + {"p_menusign01x", "Not Set"}, + {"p_poster_troub01x_lrg", "Not Set"}, + {"p_rbo_sign_01", "Not Set"}, + {"p_rbo_sign_02", "Not Set"}, + {"p_rbo_sign_03", "Not Set"}, + {"p_rho_roadsign01x", "Not Set"}, + {"p_rho_roadsign02x", "Not Set"}, + {"p_roadsign06x", "Not Set"}, + {"p_roadsign08x", "Not Set"}, + {"p_roa_rd_sign_1", "Not Set"}, + {"p_roa_rd_sign_10", "Not Set"}, + {"p_roa_rd_sign_11", "Not Set"}, + {"p_roa_rd_sign_2", "Not Set"}, + {"p_roa_rd_sign_7", "Not Set"}, + {"p_roa_rd_sign_7a", "Not Set"}, + {"p_roa_rd_sign_9", "Not Set"}, + {"p_sandwichboard01x", "Not Set"}, + {"p_sandwichboard02x", "Not Set"}, + {"p_sandwichboard03x", "Not Set"}, + {"p_sandwichboard04x", "Not Set"}, + {"p_sandwichboard05x", "Not Set"}, + {"p_sandwichboard06x", "Not Set"}, + {"p_sandwichboard07x", "Not Set"}, + {"p_sandwichboard08x", "Not Set"}, + {"p_sandwichboard09x", "Not Set"}, + {"p_sandwichboardwomen01x", "Not Set"}, + {"p_sca_lemoynebordersign", "Not Set"}, + {"p_sca_lemoyne_sign", "Not Set"}, + {"p_sca_mea_newaustin", "Not Set"}, + {"p_sca_mea_rd00", "Not Set"}, + {"p_sca_mea_rd010", "Not Set"}, + {"p_sca_mea_rd03", "Not Set"}, + {"p_sca_mea_rd04", "Not Set"}, + {"p_sca_mea_rd05", "Not Set"}, + {"p_sca_mea_rd056", "Not Set"}, + {"p_sca_mea_rd06", "Not Set"}, + {"p_sca_mea_rd07x", "Not Set"}, + {"p_sca_mea_rd08", "Not Set"}, + {"p_sca_mea_rd55x", "Not Set"}, + {"p_sca_mea_stables", "Not Set"}, + {"p_sca_sign", "Not Set"}, + {"p_sca_state_bridge", "Not Set"}, + {"p_sca_westelizabeth_sign", "Not Set"}, + {"p_sca_westelizabeth_sign_lod", "Not Set"}, + {"p_sca_westelizabeth_sign_slod", "Not Set"}, + {"p_sign01x", "Not Set"}, + {"p_sign02x", "Not Set"}, + {"p_sign_03x", "Not Set"}, + {"p_sign03x", "Not Set"}, + {"p_sign05x", "Not Set"}, + {"p_sign4x_rho_l", "Not Set"}, + {"p_signammo01x", "Not Set"}, + {"p_sign_church01x", "Not Set"}, + {"p_signdoctorrho_a", "Not Set"}, + {"p_signdoctorrho_b", "Not Set"}, + {"p_signgunrho_a", "Not Set"}, + {"p_sign_miners01x", "Not Set"}, + {"p_sign_miners02x", "Not Set"}, + {"p_sign_miners03x", "Not Set"}, + {"p_sign_miners04x", "Not Set"}, + {"p_signmorgrho_a", "Not Set"}, + {"p_sign_open_close01x", "Not Set"}, + {"p_sign_open_close02x", "Not Set"}, + {"p_sign_open_close03x", "Not Set"}, + {"p_sign_open_close04x", "Not Set"}, + {"p_sign_open_close05x", "Not Set"}, + {"p_sign_open_close06x", "Not Set"}, + {"p_sign_roomsval_a", "Not Set"}, + {"p_sign_stationrho_a", "Not Set"}, + {"p_sign_stationrho_b", "Not Set"}, + {"p_sign_stationrho_c", "Not Set"}, + {"p_sign_suffragette01x", "Not Set"}, + {"p_sign_suffragette02x", "Not Set"}, + {"p_sign_suffragette03x", "Not Set"}, + {"p_sign_suffragette04x", "Not Set"}, + {"p_sign_suffragette05x", "Not Set"}, + {"p_signtorn01x", "Not Set"}, + {"p_signtorn02x", "Not Set"}, + {"p_signtorn03x", "Not Set"}, + {"p_signtorn04x", "Not Set"}, + {"p_swa_rd_02", "Not Set"}, + {"p_swa_rd_03", "Not Set"}, + {"p_swa_rd_04", "Not Set"}, + {"p_swa_rd_05", "Not Set"}, + {"p_swa_rd_06", "Not Set"}, + {"p_tinsign01x", "Not Set"}, + {"p_tinsign02x", "Not Set"}, + {"p_tinsign03x", "Not Set"}, + {"p_tinsign04x", "Not Set"}, + {"p_tinsignbloodeyes01x", "Not Set"}, + {"p_tinsignschiffer01x", "Not Set"}, + {"p_trainstationsign01x", "Not Set"}, + {"p_trainstationsign02x", "Not Set"}, + {"p_valhotelsign_01x", "Not Set"}, + {"p_valhotelsign_01x_dmg", "Not Set"}, + {"p_valsmithsign01x", "Not Set"}, + {"p_vaudevilleband", "Not Set"}, + {"p_vaudevilleband_frm", "Not Set"}, + {"p_vaudevillecancan", "Not Set"}, + {"p_vaudevillecancan_frm", "Not Set"}, + {"p_vaudeville_fire", "Not Set"}, + {"p_vaudeville_fire_frm", "Not Set"}, + {"p_vaudevillemagician", "Not Set"}, + {"p_vaudevillemagician_frm", "Not Set"}, + {"p_vaudevilleoddfellows_frm", "Not Set"}, + {"p_vaudevillesdance", "Not Set"}, + {"p_vaudevillesdance_frm", "Not Set"}, + {"p_vaudevilleswoman", "Not Set"}, + {"p_vaudevilleswoman_frm", "Not Set"}, + {"p_grz_icechunk01", "Not Set"}, + {"p_grz_icechunk02", "Not Set"}, + {"p_grz_icechunk03", "Not Set"}, + {"p_grz_icechunk04", "Not Set"}, + {"p_grz_icechunk06", "Not Set"}, + {"p_grz_icechunk07", "Not Set"}, + {"p_grz_icechunk08", "Not Set"}, + {"p_ice_medium01x", "Not Set"}, + {"p_ice_medium02x", "Not Set"}, + {"p_ice_medium03x", "Not Set"}, + {"p_ice_small01x", "Not Set"}, + {"p_ice_small02x", "Not Set"}, + {"p_ice_small03x", "Not Set"}, + {"p_icicles08x", "Not Set"}, + {"p_icicles09x", "Not Set"}, + {"p_icicles10x", "Not Set"}, + {"p_icicles11x", "Not Set"}, + {"p_icicles11x_child3", "Not Set"}, + {"p_barrel010x", "Not Set"}, + {"p_barrel01ax", "Not Set"}, + {"p_barrel01ax_sea", "Not Set"}, + {"p_barrel02_opencs01x", "Not Set"}, + {"p_barrel02x", "Not Set"}, + {"p_barrel02x_group_01", "Not Set"}, + {"p_barrel02x_group_02", "Not Set"}, + {"p_barrel02x_group_03", "Not Set"}, + {"p_barrel03x", "Not Set"}, + {"p_barrel04b", "Not Set"}, + {"p_barrel04x", "Not Set"}, + {"p_barrel05b", "Not Set"}, + {"p_barrel05x", "Not Set"}, + {"p_barrel06x", "Not Set"}, + {"p_barrel08x", "Not Set"}, + {"p_barrel09x", "Not Set"}, + {"p_barrel11x", "Not Set"}, + {"p_barrel12x", "Not Set"}, + {"p_barrel_cor01x", "Not Set"}, + {"p_barrel_cor01x_dmg", "Not Set"}, + {"p_barrel_cor02x", "Not Set"}, + {"p_barrelhalf01x", "Not Set"}, + {"p_barrelhalf02x", "Not Set"}, + {"p_barrelhalf03x", "Not Set"}, + {"p_barrelhalf04x", "Not Set"}, + {"p_barrelhalf05x", "Not Set"}, + {"p_barrelhalf06x", "Not Set"}, + {"p_barrelhalf07x", "Not Set"}, + {"p_barrelhalf08x", "Not Set"}, + {"p_barrelhalf09bx", "Not Set"}, + {"p_barrelhalf09bx_dmg", "Not Set"}, + {"p_barrelhalf09dx", "Not Set"}, + {"p_barrelmoonshine", "Not Set"}, + {"p_barrelshavingbase01x", "Not Set"}, + {"p_barrelwater01x", "Not Set"}, + {"p_basketfruit02x", "Not Set"}, + {"p_basketrope01x", "Not Set"}, + {"p_cask01x", "Not Set"}, + {"p_crate012ax", "Not Set"}, + {"p_crate02x", "Not Set"}, + {"p_crate05x_group_01", "Not Set"}, + {"p_crate08x", "Not Set"}, + {"p_crate15bx", "Not Set"}, + {"p_crate22x", "Not Set"}, + {"p_crate22x_s_group_01", "Not Set"}, + {"p_crate22x_small", "Not Set"}, + {"p_crate23x", "Not Set"}, + {"p_crate23x_group_01", "Not Set"}, + {"p_crate25x", "Not Set"}, + {"p_crate27x", "Not Set"}, + {"p_cratebrand03x", "Not Set"}, + {"p_cratebrand03x_dmg", "Not Set"}, + {"p_cratecover06x", "Not Set"}, + {"p_cratecover06x_mp", "Not Set"}, + {"p_cratefloat01x", "Not Set"}, + {"p_cratestack02x", "Not Set"}, + {"p_cs_barrel04x", "Not Set"}, + {"p_group_barrel05b", "Not Set"}, + {"p_group_barrel06x", "Not Set"}, + {"p_group_barrel09x", "Not Set"}, + {"p_oliveoilrice01x", "Not Set"}, + {"p_static_barrel_01a", "Not Set"}, + {"p_static_barrel_01b", "Not Set"}, + {"p_static_barrel_02a", "Not Set"}, + {"p_static_barrel_02b", "Not Set"}, + {"p_static_barrel_03a", "Not Set"}, + {"p_static_barrel_03b", "Not Set"}, + {"p_static_barrel_04a", "Not Set"}, + {"p_static_barrel_04b", "Not Set"}, + {"p_static_barrel_05a", "Not Set"}, + {"p_static_barrel_05b", "Not Set"}, + {"p_static_barrel_06a", "Not Set"}, + {"p_static_barrel_07a", "Not Set"}, + {"p_static_barrel_08a", "Not Set"}, + {"p_static_barrel_09a", "Not Set"}, + {"p_static_barrel_cor01a", "Not Set"}, + {"p_static_barrel_cor01b", "Not Set"}, + {"p_static_barrel_cor02a", "Not Set"}, + {"p_static_barrel_cor02b", "Not Set"}, + {"p_static_barrel_cor03a", "Not Set"}, + {"p_static_barrel_cor03b", "Not Set"}, + {"p_static_barrel_cor04a", "Not Set"}, + {"p_static_barrel_cor04b", "Not Set"}, + {"p_static_barrel_cor05a", "Not Set"}, + {"p_static_barrel_cor05b", "Not Set"}, + {"p_static_barrel_cor06a", "Not Set"}, + {"p_static_crate06_01", "Not Set"}, + {"p_static_cratebarrel01", "Not Set"}, + {"p_static_cratecover01", "Not Set"}, + {"p_static_cratecover02", "Not Set"}, + {"p_static_cratecover03", "Not Set"}, + {"p_static_cratecover04", "Not Set"}, + {"p_static_cratecover07", "Not Set"}, + {"p_static_cratecover08", "Not Set"}, + {"p_static_oildrum01", "Not Set"}, + {"p_static_oildrum01b", "Not Set"}, + {"p_static_oildrum02", "Not Set"}, + {"p_static_oildrum03", "Not Set"}, + {"p_tmtsaucebarrel02x", "Not Set"}, + {"p_tmtsaucebarrels01x", "Not Set"}, + {"p_whiskeybarrel01x", "Not Set"}, + {"p_winebarrel01x", "Not Set"}, + {"p_woodbin01_group_01", "Not Set"}, + {"p_bag01x", "Not Set"}, + {"p_barreltobacco01x", "Not Set"}, + {"p_bat_cratestack01x", "Not Set"}, + {"p_bespoketable01x", "Not Set"}, + {"p_bucket01x", "Not Set"}, + {"p_bucket02x", "Not Set"}, + {"p_bucket03x", "Not Set"}, + {"p_bucket04x", "Not Set"}, + {"p_bucket06x", "Not Set"}, + {"p_bucket07x", "Not Set"}, + {"p_bucketfish01x", "Not Set"}, + {"p_buckethin01x", "Not Set"}, + {"p_bucketore03x", "Not Set"}, + {"p_bucketpigfeed02x", "Not Set"}, + {"p_bucketpigfeed03x", "Not Set"}, + {"p_canvasrafter01x", "Not Set"}, + {"p_crate012x", "Not Set"}, + {"p_crate012x_sea", "Not Set"}, + {"p_crate01x", "Not Set"}, + {"p_crate01x_var02", "Not Set"}, + {"p_crate03b", "Not Set"}, + {"p_crate03c", "Not Set"}, + {"p_crate03d", "Not Set"}, + {"p_crate03x", "Not Set"}, + {"p_crate04x", "Not Set"}, + {"p_crate05x", "Not Set"}, + {"p_crate06bx", "Not Set"}, + {"p_crate06x", "Not Set"}, + {"p_crate08b", "Not Set"}, + {"p_crate14bx", "Not Set"}, + {"p_crate14cx", "Not Set"}, + {"p_crate14x", "Not Set"}, + {"p_crate15x", "Not Set"}, + {"p_crate16x", "Not Set"}, + {"p_crate17x", "Not Set"}, + {"p_crate20x", "Not Set"}, + {"p_crate24x", "Not Set"}, + {"p_crate26bx", "Not Set"}, + {"p_crate26x", "Not Set"}, + {"p_cratebottles01x", "Not Set"}, + {"p_cratebrand01x", "Not Set"}, + {"p_cratebrand02x", "Not Set"}, + {"p_crateburn02x", "Not Set"}, + {"p_cratecanvase01x", "Not Set"}, + {"p_cratecanvase02x", "Not Set"}, + {"p_cratechicken01x", "Not Set"}, + {"p_cratechicken02x", "Not Set"}, + {"p_cratechicken03x", "Not Set"}, + {"p_cratechicken03x_anim", "Not Set"}, + {"p_crateconf01x", "Not Set"}, + {"p_cratecover01x", "Not Set"}, + {"p_cratecover02x", "Not Set"}, + {"p_cratecover03x", "Not Set"}, + {"p_cratecover04x", "Not Set"}, + {"p_cratecover05x", "Not Set"}, + {"p_cratecover07x", "Not Set"}, + {"p_cratecover09x", "Not Set"}, + {"p_cratedamagedebris01x", "Not Set"}, + {"p_cratedamagedebris01x_sea", "Not Set"}, + {"p_crategatling01x", "Not Set"}, + {"p_crategatling01x_long", "Not Set"}, + {"p_crategatling02x", "Not Set"}, + {"p_cratemedicine01x", "Not Set"}, + {"p_cratemedicine02x", "Not Set"}, + {"p_crate_snow01x", "Not Set"}, + {"p_cratestack01x", "Not Set"}, + {"p_cratestack02bx", "Not Set"}, + {"p_cratestack03x", "Not Set"}, + {"p_foundationwood01x", "Not Set"}, + {"p_foundationwood02x", "Not Set"}, + {"p_foundationwood03x", "Not Set"}, + {"p_group_applecratelar01", "Not Set"}, + {"p_group_applestack01", "Not Set"}, + {"p_group_barrelcor01", "Not Set"}, + {"p_group_chair05x", "Not Set"}, + {"p_group_crate03", "Not Set"}, + {"p_group_crate06", "Not Set"}, + {"p_group_cratefruit_01", "Not Set"}, + {"p_group_cratefruit_02", "Not Set"}, + {"p_group_cratemed", "Not Set"}, + {"p_group_cratesma", "Not Set"}, + {"p_group_crateveg_01", "Not Set"}, + {"p_group_crateveg_02", "Not Set"}, + {"p_group_fishstall01", "Not Set"}, + {"p_group_flowertable01", "Not Set"}, + {"p_group_generalstore", "Not Set"}, + {"p_group_hanging01", "Not Set"}, + {"p_group_hanging02", "Not Set"}, + {"p_group_hanging03", "Not Set"}, + {"p_group_newspaper01", "Not Set"}, + {"p_group_newspaper02", "Not Set"}, + {"p_group_newspaper03", "Not Set"}, + {"p_group_newspaper04", "Not Set"}, + {"p_group_newspapercart01x", "Not Set"}, + {"p_group_pot01x", "Not Set"}, + {"p_group_potatoes01", "Not Set"}, + {"p_group_trainparts01", "Not Set"}, + {"p_group_valbasin01", "Not Set"}, + {"p_group_valcrates01", "Not Set"}, + {"p_group_valcrates02", "Not Set"}, + {"p_group_vallogs01", "Not Set"}, + {"p_kerosenecan01x", "Not Set"}, + {"p_kerosenecan02x", "Not Set"}, + {"p_lootablecrate01x", "Not Set"}, + {"p_pallet01ax", "Not Set"}, + {"p_pallet01ax_sea", "Not Set"}, + {"p_pallet01x", "Not Set"}, + {"p_pallet02x", "Not Set"}, + {"p_pallet02x_sea", "Not Set"}, + {"p_pallet03x", "Not Set"}, + {"p_pallet03x_sea", "Not Set"}, + {"p_planktemp01x", "Not Set"}, + {"p_rubblebag01x", "Not Set"}, + {"p_static_barrelcrate01", "Not Set"}, + {"p_static_basketfruit02x", "Not Set"}, + {"p_static_basketsmall01", "Not Set"}, + {"p_static_cratebrand01_01", "Not Set"}, + {"p_static_cratecover05", "Not Set"}, + {"p_static_cratecover06", "Not Set"}, + {"p_static_cratecover09", "Not Set"}, + {"p_static_cratecover10", "Not Set"}, + {"p_static_cratesack01", "Not Set"}, + {"p_static_fence_sack01", "Not Set"}, + {"p_static_floursack02", "Not Set"}, + {"p_static_floursacks", "Not Set"}, + {"p_static_floursacks01", "Not Set"}, + {"p_trouardscrate01x", "Not Set"}, + {"p_whiskeyCrate01x", "Not Set"}, + {"p_whiskeycrate01x_dmg", "Not Set"}, + {"p_whiskeycrate02x", "Not Set"}, + {"p_wood_barrel_001", "Not Set"}, + {"p_woodbin01x", "Not Set"}, + {"s_crate23x", "Not Set"}, + {"s_re_crate14xtop", "Not Set"}, + {"p_apothecary01x", "Not Set"}, + {"p_apothecary02x", "Not Set"}, + {"p_apothecaryjars01x", "Not Set"}, + {"p_apothecaryjars02x", "Not Set"}, + {"p_apothecaryjars03x", "Not Set"}, + {"p_apothecaryjars04x", "Not Set"}, + {"p_barberbottles01x", "Not Set"}, + {"p_barberbottles02x", "Not Set"}, + {"p_barberbottles03x", "Not Set"}, + {"p_barbpole01x", "Not Set"}, + {"p_basket13x", "Not Set"}, + {"p_basketdishes02x", "Not Set"}, + {"p_binocular_case_closed", "Not Set"}, + {"p_binocular_case_open", "Not Set"}, + {"p_biscuits02x", "Not Set"}, + {"p_boot_leather_001", "Not Set"}, + {"p_bottleconklin01x", "Not Set"}, + {"p_bottlefacewash01x", "Not Set"}, + {"p_bottlenavyrum01x", "Not Set"}, + {"p_bowlna01x", "Not Set"}, + {"p_bowlna03x", "Not Set"}, + {"p_bowlna04x", "Not Set"}, + {"p_boxcereal01x", "Not Set"}, + {"p_boxgelatin01x", "Not Set"}, + {"p_boxrazor01x", "Not Set"}, + {"p_boxsoap02x", "Not Set"}, + {"p_boxsupport01x", "Not Set"}, + {"p_buysellbox01bx", "Not Set"}, + {"p_buysellbox01x", "Not Set"}, + {"p_buysellbox02x", "Not Set"}, + {"p_buysellbox03x", "Not Set"}, + {"p_buysellboxsm01x", "Not Set"}, + {"p_candybrittle01x", "Not Set"}, + {"p_candyjar06x", "Not Set"}, + {"p_candyjar07x", "Not Set"}, + {"p_candyjarchoc01x", "Not Set"}, + {"p_candyjarmarsh01x", "Not Set"}, + {"p_canlard01x", "Not Set"}, + {"p_ceilinghook01x", "Not Set"}, + {"p_colognebox01x", "Not Set"}, + {"p_cutlery02x", "Not Set"}, + {"p_delidisplaycabinet01x", "Not Set"}, + {"p_display01x", "Not Set"}, + {"p_display02x", "Not Set"}, + {"p_displaytux01x", "Not Set"}, + {"p_driedmushroom01x", "Not Set"}, + {"p_fabricfolded01x", "Not Set"}, + {"p_fabricfolded02x", "Not Set"}, + {"p_fabricfolded03x", "Not Set"}, + {"p_fabricroll05x", "Not Set"}, + {"p_fabricstack01x", "Not Set"}, + {"p_facewash01x", "Not Set"}, + {"p_floursack03x", "Not Set"}, + {"p_glovebox01x", "Not Set"}, + {"p_goochvanilla01x", "Not Set"}, + {"p_group_newspaperstack", "Not Set"}, + {"p_hatbox03x", "Not Set"}, + {"p_hatbox04x", "Not Set"}, + {"p_hatbox05x", "Not Set"}, + {"p_hatstand_vg01x", "Not Set"}, + {"p_herbsdry01x", "Not Set"}, + {"p_herbsdry02x", "Not Set"}, + {"p_herbsdry03x", "Not Set"}, + {"p_herbsdry04x", "Not Set"}, + {"p_hookpulley01x", "Not Set"}, + {"p_hookpulley02x", "Not Set"}, + {"p_hookwall01x", "Not Set"}, + {"p_hutch01x", "Not Set"}, + {"p_hutch02x", "Not Set"}, + {"p_jar_coffee01x", "Not Set"}, + {"p_large_basket13x", "Not Set"}, + {"p_manaquin01x", "Not Set"}, + {"p_manaquincorset01x", "Not Set"}, + {"p_mannequinhead01x", "Not Set"}, + {"p_meathooks02x", "Not Set"}, + {"p_merchbox01x", "Not Set"}, + {"p_merchbox02x", "Not Set"}, + {"p_merchbox03x", "Not Set"}, + {"p_moneycoinchanger01x", "Not Set"}, + {"p_newspaper01x", "Not Set"}, + {"p_newspaper01x001", "Not Set"}, + {"p_newspaperbox_cs01x", "Not Set"}, + {"p_newspaper_cs02x", "Not Set"}, + {"p_newspaper_cs02xnhg", "Not Set"}, + {"p_newspaper_cs02xsdtt", "Not Set"}, + {"p_newspaperlivestock01x", "Not Set"}, + {"p_newspaperroll01x", "Not Set"}, + {"p_newspaperstack01x", "Not Set"}, + {"p_newspaperstack02x", "Not Set"}, + {"p_newspaperstack03x", "Not Set"}, + {"p_oilolive01x", "Not Set"}, + {"p_oldscale01x", "Not Set"}, + {"p_package01x", "Not Set"}, + {"p_package02x", "Not Set"}, + {"p_package03x", "Not Set"}, + {"p_package04bx", "Not Set"}, + {"p_package04cx", "Not Set"}, + {"p_package04x", "Not Set"}, + {"p_package05x", "Not Set"}, + {"p_package06x", "Not Set"}, + {"p_package07x", "Not Set"}, + {"p_package08x", "Not Set"}, + {"p_package09", "Not Set"}, + {"p_package10", "Not Set"}, + {"p_package11x", "Not Set"}, + {"p_package12x", "Not Set"}, + {"p_package13x", "Not Set"}, + {"p_package13xvar02", "Not Set"}, + {"p_package_fowlers01x", "Not Set"}, + {"p_packagerig01x", "Not Set"}, + {"p_package_soap01x", "Not Set"}, + {"p_package_vg", "Not Set"}, + {"p_paperrollcutter01x", "Not Set"}, + {"p_penbox01x", "Not Set"}, + {"p_powderwash01x", "Not Set"}, + {"p_rack01x", "Not Set"}, + {"p_rebarrack01x", "Not Set"}, + {"p_register01x", "Not Set"}, + {"p_register03x", "Not Set"}, + {"p_register04x", "Not Set"}, + {"p_register05x", "Not Set"}, + {"p_register06x", "Not Set"}, + {"p_register07x", "Not Set"}, + {"p_register08x", "Not Set"}, + {"p_rolledoats01x", "Not Set"}, + {"p_ropenail01x", "Not Set"}, + {"p_scale_valgen01x", "Not Set"}, + {"p_scissorbox01x", "Not Set"}, + {"p_servicebell01x", "Not Set"}, + {"p_sewing_dresser01x", "Not Set"}, + {"p_sewingkit01bx", "Not Set"}, + {"p_sewingkit01x", "Not Set"}, + {"p_shoe_form_001", "Not Set"}, + {"p_shoeshinestand01x", "Not Set"}, + {"p_shopbait01x", "Not Set"}, + {"p_shopbottlesmall01x", "Not Set"}, + {"p_shopmap01x", "Not Set"}, + {"p_shoppeltbuffalo01x", "Not Set"}, + {"p_shoppeltwolf01x", "Not Set"}, + {"p_shoprabbitfoot01x", "Not Set"}, + {"p_showglobe01x", "Not Set"}, + {"p_soapbox01x", "Not Set"}, + {"p_soapbox02x", "Not Set"}, + {"p_sodafountain01x", "Not Set"}, + {"p_spiceset01x", "Not Set"}, + {"p_spike01x", "Not Set"}, + {"p_starchlaundry01x", "Not Set"}, + {"p_string_bundle_001", "Not Set"}, + {"p_sugar02x", "Not Set"}, + {"p_syrup01x", "Not Set"}, + {"p_telegraph01x", "Not Set"}, + {"p_telegraphregister01x", "Not Set"}, + {"p_tin_bakingp01x", "Not Set"}, + {"p_tin_biscuit_empty01x", "Not Set"}, + {"p_tin_coffee02x", "Not Set"}, + {"p_tin_kidney01x", "Not Set"}, + {"p_tin_pomade01x", "Not Set"}, + {"p_tin_pomadeempty01x", "Not Set"}, + {"p_tin_powder01x", "Not Set"}, + {"p_tin_salve01x", "Not Set"}, + {"p_tin_soap01x", "Not Set"}, + {"p_tin_tea01x", "Not Set"}, + {"p_vg_canister_03x", "Not Set"}, + {"p_vg_canister_04bx", "Not Set"}, + {"p_vg_canister_04cx", "Not Set"}, + {"p_vg_canister_04dx", "Not Set"}, + {"p_vg_canister_04ex", "Not Set"}, + {"p_vg_canister_04fx", "Not Set"}, + {"p_vg_canister_04x", "Not Set"}, + {"p_vg_jar02x", "Not Set"}, + {"p_vg_jar03x", "Not Set"}, + {"p_vg_jar05x", "Not Set"}, + {"p_vg_jar06x", "Not Set"}, + {"p_vg_jar07x", "Not Set"}, + {"p_vg_jar09x", "Not Set"}, + {"p_vg_jar10x", "Not Set"}, + {"p_vg_tin012", "Not Set"}, + {"p_vg_tin01x", "Not Set"}, + {"p_vg_tin02", "Not Set"}, + {"p_vg_tin02x", "Not Set"}, + {"p_vg_tin04", "Not Set"}, + {"p_vg_tin05x", "Not Set"}, + {"p_vg_tin09", "Not Set"}, + {"p_vg_tray", "Not Set"}, + {"p_water01x", "Not Set"}, + {"p_winebox01x", "Not Set"}, + {"p_woodholder01x", "Not Set"}, + {"s_mission_rolledoats01x", "Not Set"}, + {"p_bamboosidetable01x", "Not Set"}, + {"p_benchannsaloon01x", "Not Set"}, + {"p_blackjacktable02x", "Not Set"}, + {"p_bla_lumbdesk", "Not Set"}, + {"p_countertravel01x", "Not Set"}, + {"p_cratetable01x", "Not Set"}, + {"p_endtable03x", "Not Set"}, + {"p_itable03x", "Not Set"}, + {"p_latchdesk01x", "Not Set"}, + {"p_sawbucktable01x", "Not Set"}, + {"p_sidetable13x", "Not Set"}, + {"p_sidetable18x", "Not Set"}, + {"p_sidetable19x", "Not Set"}, + {"p_sidetable20x", "Not Set"}, + {"p_table01x", "Not Set"}, + {"p_table02x", "Not Set"}, + {"p_table04x", "Not Set"}, + {"p_table05x", "Not Set"}, + {"p_table06cloth01x", "Not Set"}, + {"p_table06x", "Not Set"}, + {"p_table10x", "Not Set"}, + {"p_table11x", "Not Set"}, + {"p_table12x", "Not Set"}, + {"p_table13x", "Not Set"}, + {"p_table14x", "Not Set"}, + {"p_table31_largex", "Not Set"}, + {"p_table31x", "Not Set"}, + {"p_table31x_cover", "Not Set"}, + {"p_table32x", "Not Set"}, + {"p_table34x", "Not Set"}, + {"p_table38x", "Not Set"}, + {"p_table39x", "Not Set"}, + {"p_table40x", "Not Set"}, + {"p_table40x_static", "Not Set"}, + {"p_table41x", "Not Set"}, + {"p_table42_cs", "Not Set"}, + {"p_table42x", "Not Set"}, + {"p_table43x", "Not Set"}, + {"p_table43xb", "Not Set"}, + {"p_table44x", "Not Set"}, + {"p_table45x", "Not Set"}, + {"p_table46x", "Not Set"}, + {"p_table46x_cover", "Not Set"}, + {"p_table47x", "Not Set"}, + {"p_table48x", "Not Set"}, + {"p_table50x", "Not Set"}, + {"p_table51x", "Not Set"}, + {"p_table52x", "Not Set"}, + {"p_table53x", "Not Set"}, + {"p_table55x", "Not Set"}, + {"p_table56x", "Not Set"}, + {"p_table57x", "Not Set"}, + {"p_table58x", "Not Set"}, + {"p_tableannsaloon01x", "Not Set"}, + {"p_tablebedside01x", "Not Set"}, + {"p_tablebedside02x", "Not Set"}, + {"p_tableblackjack01x", "Not Set"}, + {"p_tablebooth01x", "Not Set"}, + {"p_tablebra01x", "Not Set"}, + {"p_tablebrass01x", "Not Set"}, + {"p_tablechop01x", "Not Set"}, + {"p_tablechop02x", "Not Set"}, + {"p_tableclothlace02x", "Not Set"}, + {"p_tablecoffee01x", "Not Set"}, + {"p_tablecoffee02x", "Not Set"}, + {"p_tablecoffee04x", "Not Set"}, + {"p_tablecoffee05x", "Not Set"}, + {"p_tablecoffee06a", "Not Set"}, + {"p_tablecoffee06x", "Not Set"}, + {"p_tablecoffee07x", "Not Set"}, + {"p_table_col01x", "Not Set"}, + {"p_table_col02x", "Not Set"}, + {"p_tableconsole01x", "Not Set"}, + {"p_tableconsole02x", "Not Set"}, + {"p_tableconsole03bx", "Not Set"}, + {"p_tableconsole03x", "Not Set"}, + {"p_tableconsole04x", "Not Set"}, + {"p_tableconsole05bx", "Not Set"}, + {"p_tableconsole05x", "Not Set"}, + {"p_tableconsole06x", "Not Set"}, + {"p_tableconsole07x", "Not Set"}, + {"p_table_cs34_sml", "Not Set"}, + {"p_tabledining03x", "Not Set"}, + {"p_tabledining03xb", "Not Set"}, + {"p_tabledining04x", "Not Set"}, + {"p_tabledining05x", "Not Set"}, + {"p_tablegiltconsole01_static", "Not Set"}, + {"p_tablegiltconsole01x", "Not Set"}, + {"p_tablegiltwood01x", "Not Set"}, + {"p_tablemahogany01x", "Not Set"}, + {"p_tableplank04x", "Not Set"}, + {"p_tablepoker01x", "Not Set"}, + {"p_tablepoker02x", "Not Set"}, + {"p_tablepoker04ax", "Not Set"}, + {"p_tablepoker04x", "Not Set"}, + {"p_tableprep01x", "Not Set"}, + {"p_tableprep02x", "Not Set"}, + {"p_tablereccloth01x", "Not Set"}, + {"p_tablerndcloth02x", "Not Set"}, + {"p_tablerndnwhite01x", "Not Set"}, + {"p_table_saloon01x", "Not Set"}, + {"p_table_sd_theater01x", "Not Set"}, + {"p_tableset01x", "Not Set"}, + {"p_tablesix01", "Not Set"}, + {"p_tablesnakeoil01x", "Not Set"}, + {"p_tablevoodoo01x", "Not Set"}, + {"p_tablewinter01x", "Not Set"}, + {"p_troughtable01x", "Not Set"}, + {"p_tum_pokertable01x", "Not Set"}, + {"p_workbench02x", "Not Set"}, + {"p_writingdesk01x", "Not Set"}, + {"p_agu_handles", "Not Set"}, + {"p_agu_shuttersaopen", "Not Set"}, + {"p_agu_shuttersbopen", "Not Set"}, + {"p_agu_shutterscopen", "Not Set"}, + {"p_agu_shuttersdopen", "Not Set"}, + {"p_anvil01x", "Not Set"}, + {"p_axe01x", "Not Set"}, + {"p_axe02x", "Not Set"}, + {"p_bellows01x", "Not Set"}, + {"p_benchwork01x", "Not Set"}, + {"p_broom01x", "Not Set"}, + {"p_broom02x", "Not Set"}, + {"p_broom03x", "Not Set"}, + {"p_broom04x", "Not Set"}, + {"p_broom09x", "Not Set"}, + {"p_brush01x", "Not Set"}, + {"p_bugkiller01x", "Not Set"}, + {"p_bulletpress01x", "Not Set"}, + {"p_clamp01x", "Not Set"}, + {"p_clamp02x", "Not Set"}, + {"p_clamp03x", "Not Set"}, + {"p_clamphand01x", "Not Set"}, + {"p_cottongin01x_x", "Not Set"}, + {"p_cratetools01x", "Not Set"}, + {"p_drillpress01x", "Not Set"}, + {"p_file01x", "Not Set"}, + {"p_fleshingknife01x", "Not Set"}, + {"p_flintpiece01x", "Not Set"}, + {"p_flintpiece02x", "Not Set"}, + {"p_forge01x", "Not Set"}, + {"p_gardenscoop01x", "Not Set"}, + {"p_gardentool01x", "Not Set"}, + {"p_gauge_lg", "Not Set"}, + {"p_gauge_s", "Not Set"}, + {"p_gavel01x", "Not Set"}, + {"p_goldcradle01x", "Not Set"}, + {"p_goldcradlestand01x", "Not Set"}, + {"p_goldsmeltburner01x", "Not Set"}, + {"p_grindingwheel01x", "Not Set"}, + {"p_hammer01x", "Not Set"}, + {"p_hammer02x", "Not Set"}, + {"p_hammer03x", "Not Set"}, + {"p_hammer04x", "Not Set"}, + {"p_hammerclaw01x", "Not Set"}, + {"p_hammerhorse01x", "Not Set"}, + {"p_hammerslate01x", "Not Set"}, + {"p_handcuffs01x", "Not Set"}, + {"p_handcuffs02x", "Not Set"}, + {"p_handdrill01x", "Not Set"}, + {"p_hand_plane_001", "Not Set"}, + {"p_handpress01x", "Not Set"}, + {"p_handrivettool01x", "Not Set"}, + {"p_hatchet01x", "Not Set"}, + {"p_hoe01x", "Not Set"}, + {"p_hoe02x", "Not Set"}, + {"p_hoofknife01x", "Not Set"}, + {"p_hoofnippers01x", "Not Set"}, + {"p_hook01x", "Not Set"}, + {"p_hook02x", "Not Set"}, + {"p_hook02x_small", "Not Set"}, + {"p_hookgaff01x", "Not Set"}, + {"p_hook_metal_001", "Not Set"}, + {"p_horserasp01x", "Not Set"}, + {"p_ilathe01x", "Not Set"}, + {"p_imold01x", "Not Set"}, + {"p_iron01x", "Not Set"}, + {"p_ironbookpress01x", "Not Set"}, + {"p_isewingmachine01x", "Not Set"}, + {"p_itoolshed02x", "Not Set"}, + {"p_ladder01x", "Not Set"}, + {"p_ladder02x", "Not Set"}, + {"p_lathetool01x", "Not Set"}, + {"p_lighter01x", "Not Set"}, + {"p_lockpick01x", "Not Set"}, + {"p_machete01x", "Not Set"}, + {"p_magnifyingglass01x", "Not Set"}, + {"p_mallet01x", "Not Set"}, + {"p_metalbar01x", "Not Set"}, + {"p_metalstake01x", "Not Set"}, + {"p_miningpan01x", "Not Set"}, + {"p_mold01x", "Not Set"}, + {"p_mold02x", "Not Set"}, + {"p_nailbox01x", "Not Set"}, + {"p_nailfile01x", "Not Set"}, + {"p_nailsingle01x", "Not Set"}, + {"p_needle01x", "Not Set"}, + {"p_needle02x", "Not Set"}, + {"p_pickaxe01x", "Not Set"}, + {"p_poopwheelbarrow02x", "Not Set"}, + {"p_prybar01x", "Not Set"}, + {"p_pulley01x", "Not Set"}, + {"p_rake02x", "Not Set"}, + {"p_rake03x", "Not Set"}, + {"p_rugbeater01x", "Not Set"}, + {"p_saw01", "Not Set"}, + {"p_sawbucking01x", "Not Set"}, + {"p_sawhand01x", "Not Set"}, + {"p_sawhand02x", "Not Set"}, + {"p_sawhorse01x", "Not Set"}, + {"p_sawhorse02x", "Not Set"}, + {"p_sawhorse03x", "Not Set"}, + {"p_sawhorse04x", "Not Set"}, + {"p_sawmeat01x", "Not Set"}, + {"p_scissors01x", "Not Set"}, + {"p_scissors02x", "Not Set"}, + {"p_scoop01x", "Not Set"}, + {"p_screwdriver01x", "Not Set"}, + {"p_sheepsheers01x", "Not Set"}, + {"p_shovel01x", "Not Set"}, + {"p_shovel02x", "Not Set"}, + {"p_shovel03x", "Not Set"}, + {"p_shovel04x", "Not Set"}, + {"p_shovel05x", "Not Set"}, + {"p_shovelhang05x", "Not Set"}, + {"p_skinscraper01x", "Not Set"}, + {"p_skinscraper01x_2", "Not Set"}, + {"p_sledgehammer01x", "Not Set"}, + {"p_sledgehammer02x", "Not Set"}, + {"p_sledgehammer03x", "Not Set"}, + {"p_snipper01x", "Not Set"}, + {"p_spade01x", "Not Set"}, + {"p_steam_donkey01x", "Not Set"}, + {"p_stick_railroad01x", "Not Set"}, + {"p_tackpile01x", "Not Set"}, + {"p_tacksingle01x", "Not Set"}, + {"p_toolbox01x", "Not Set"}, + {"p_toolpegboard01x", "Not Set"}, + {"p_toolrack01x", "Not Set"}, + {"p_toolshed01x", "Not Set"}, + {"p_toolshed02x", "Not Set"}, + {"p_toothpick01x", "Not Set"}, + {"p_trowel01x", "Not Set"}, + {"p_viceclamp01x", "Not Set"}, + {"p_wheelbarrel01x", "Not Set"}, + {"p_wheelbarrow01x", "Not Set"}, + {"p_wheelbarrow02x", "Not Set"}, + {"p_wheelbarrow03x", "Not Set"}, + {"p_wheelwinch01x", "Not Set"}, + {"p_winch01x", "Not Set"}, + {"p_winchdocks0lrg", "Not Set"}, + {"p_woodplane01x", "Not Set"}, + {"p_workbench01x", "Not Set"}, + {"p_wrench01x", "Not Set"}, + {"p_wrench02x", "Not Set"}, + {"p_coin01x", "Not Set"}, + {"p_coin02x", "Not Set"}, + {"p_coinstack01", "Not Set"}, + {"p_coinstack02", "Not Set"}, + {"p_foldedbills01x", "Not Set"}, + {"p_foldedbillsmedium01bx", "Not Set"}, + {"p_foldedbillsmedium01x", "Not Set"}, + {"p_foldedbillssmall01bx", "Not Set"}, + {"p_foldedbillssmall01x", "Not Set"}, + {"p_foldedbillsxsmall01bx", "Not Set"}, + {"p_foldedbillsxsmall01x", "Not Set"}, + {"p_gen_statue01x", "Not Set"}, + {"p_gen_statue02b", "Not Set"}, + {"p_gen_statue03b", "Not Set"}, + {"p_gen_statue03x", "Not Set"}, + {"p_goldnugget01x", "Not Set"}, + {"p_goldnugget02x", "Not Set"}, + {"p_goldnugget03x", "Not Set"}, + {"p_goldnugget04x", "Not Set"}, + {"p_goldnuggetgroup01x", "Not Set"}, + {"p_goldstack01x", "Not Set"}, + {"p_inv_treasuregoldbar01x", "Not Set"}, + {"p_inv_treasuregoldbar02x", "Not Set"}, + {"p_inv_treasuregoldcross01x", "Not Set"}, + {"p_key02x", "Not Set"}, + {"p_key03x", "Not Set"}, + {"p_key_dis01x", "Not Set"}, + {"p_keys01x", "Not Set"}, + {"p_moneybag01x", "Not Set"}, + {"P_MONEYBAG02X", "Not Set"}, + {"p_moneybag04x", "Not Set"}, + {"p_moneybag05x", "Not Set"}, + {"p_moneybaggen02x", "Not Set"}, + {"p_moneystack01x", "Not Set"}, + {"p_moneystack02x", "Not Set"}, + {"p_moneystack03x", "Not Set"}, + {"p_watch01x", "Not Set"}, + {"p_worm_moneystack01x", "Not Set"}, + {"p_babystroller", "Not Set"}, + {"p_bea_brokencoach", "Not Set"}, + {"p_bea_brokencoach_wheel", "Not Set"}, + {"p_boatlrg01x", "Not Set"}, + {"p_boatsm01x", "Not Set"}, + {"p_boatsm02x", "Not Set"}, + {"p_brokenwagon01x", "Not Set"}, + {"p_cart01x", "Not Set"}, + {"p_cart03b", "Not Set"}, + {"p_cart03x", "Not Set"}, + {"p_cart04x", "Not Set"}, + {"p_cartmaximgun01x", "Not Set"}, + {"p_cartmine01x", "Not Set"}, + {"p_cartmine_snow01x", "Not Set"}, + {"p_cartstreetvendor01b", "Not Set"}, + {"p_cartstreetvendor01x", "Not Set"}, + {"p_cartstreetvendor01x_snow", "Not Set"}, + {"p_chuckwagon01b", "Not Set"}, + {"p_chuckwagon01x", "Not Set"}, + {"p_chuckwagon02x", "Not Set"}, + {"p_chuckwagonbreak01x", "Not Set"}, + {"p_chuckwagonburned01x", "Not Set"}, + {"p_chuckwagonburned02x", "Not Set"}, + {"p_clivewagon01x", "Not Set"}, + {"p_clm_wagon05", "Not Set"}, + {"p_gap_wagon01", "Not Set"}, + {"p_group_trainparts02", "Not Set"}, + {"p_guncarriagewreck01x", "Not Set"}, + {"p_hotairballoon01x", "Not Set"}, + {"p_hrt_wagon01", "Not Set"}, + {"p_hrt_wagon02", "Not Set"}, + {"p_hrt_wagon06", "Not Set"}, + {"p_kittywagon04x", "Not Set"}, + {"p_marketcart01x", "Not Set"}, + {"p_scm_wagon04", "Not Set"}, + {"p_shack_03_wagon04", "Not Set"}, + {"p_stagecoachwheel01x", "Not Set"}, + {"p_static_tcar_01", "Not Set"}, + {"p_supplywagon_step01x", "Not Set"}, + {"p_train_boxcar03x", "Not Set"}, + {"p_train_cattlecar01x", "Not Set"}, + {"p_train_coalhopper01x", "Not Set"}, + {"p_traindoor01x", "Not Set"}, + {"p_train_northflatcar01x", "Not Set"}, + {"p_trainparts01x", "Not Set"}, + {"p_trainparts02x", "Not Set"}, + {"p_trainparts03x", "Not Set"}, + {"p_utilliwag01x", "Not Set"}, + {"p_veh_horseboathook01", "Not Set"}, + {"p_wagon01x", "Not Set"}, + {"p_wagon01x_snow", "Not Set"}, + {"p_wagon02x", "Not Set"}, + {"p_wagon05x", "Not Set"}, + {"p_wagonbroken01x", "Not Set"}, + {"p_wagonbroken02x", "Not Set"}, + {"p_wagonparked01x", "Not Set"}, + {"p_wagonparts01x", "Not Set"}, + {"p_wagonparts03x", "Not Set"}, + {"p_wagonpin01x", "Not Set"}, + {"p_wagonspring01x", "Not Set"}, + {"p_wagonwheel01", "Not Set"}, + {"p_wagonwrecked01x", "Not Set"}, + {"p_anchor01x", "Not Set"}, + {"p_baitbread01x", "Not Set"}, + {"p_baitcheese01x", "Not Set"}, + {"p_baitcorn01x", "Not Set"}, + {"p_baitcrawfish01x", "Not Set"}, + {"p_baitcricket01x", "Not Set"}, + {"p_baitworm01x", "Not Set"}, + {"p_bell04x", "Not Set"}, + {"p_boatsmall02x_sunken", "Not Set"}, + {"p_boattie01x", "Not Set"}, + {"p_boattie02x", "Not Set"}, + {"p_buoy01x", "Not Set"}, + {"p_canoe01x", "Not Set"}, + {"p_canoeconst01x", "Not Set"}, + {"p_canoepole01x", "Not Set"}, + {"p_carvedlegendlure01x", "Not Set"}, + {"p_cratedock01x", "Not Set"}, + {"p_cratedock02x", "Not Set"}, + {"p_crawdad01x", "Not Set"}, + {"p_dlc_cratedock03x", "Not Set"}, + {"p_dragonfly01x", "Not Set"}, + {"p_eaglefeathers01x", "Not Set"}, + {"p_finisdfishlure01x", "Not Set"}, + {"p_finisdfishlure01x_ef", "Not Set"}, + {"p_finisdfishlurelegendary01x", "Not Set"}, + {"p_finisdsquid01x", "Not Set"}, + {"p_finisdsquid01x_pf", "Not Set"}, + {"p_finisdsquidlegendary01x", "Not Set"}, + {"p_finishdcrawd01x", "Not Set"}, + {"p_finishdcrawd01x_hf", "Not Set"}, + {"p_finishdcrawdlegendary01x", "Not Set"}, + {"p_finishedragonfly01x", "Not Set"}, + {"p_finishedragonfly01x_hf", "Not Set"}, + {"p_finishedragonflylegendary01x", "Not Set"}, + {"p_fishguts01x", "Not Set"}, + {"p_fishhanging01x", "Not Set"}, + {"p_fishhanging10x", "Not Set"}, + {"p_fishhangings1x", "Not Set"}, + {"p_fishhangings2x", "Not Set"}, + {"p_fishhook01x", "Not Set"}, + {"p_fishhook02x", "Not Set"}, + {"p_fishhook03x", "Not Set"}, + {"p_fishinglure01x", "Not Set"}, + {"p_fishingpole01bx", "Not Set"}, + {"p_fishingpole01x", "Not Set"}, + {"p_fishingpole02x", "Not Set"}, + {"p_fishingpole03x", "Not Set"}, + {"p_goldenteeth01x", "Not Set"}, + {"p_hawkfeathers01x", "Not Set"}, + {"p_heronfeathers01x", "Not Set"}, + {"p_ivorychunk01x", "Not Set"}, + {"p_legendaryfwspinner", "Not Set"}, + {"p_lgfwaterspinner01x", "Not Set"}, + {"p_lgoc_spinner_v4", "Not Set"}, + {"p_lgoc_spinner_v6", "Not Set"}, + {"p_minnow01x", "Not Set"}, + {"p_netfish01x", "Not Set"}, + {"p_oar01x", "Not Set"}, + {"p_oar02x", "Not Set"}, + {"p_oar03x", "Not Set"}, + {"p_parrotfeathers01x", "Not Set"}, + {"p_pearlring01x", "Not Set"}, + {"p_rackropechains01x", "Not Set"}, + {"p_raftpole02x", "Not Set"}, + {"p_ropecoil01x", "Not Set"}, + {"p_shinycoin01x", "Not Set"}, + {"p_shipcutter1x", "Not Set"}, + {"p_shipcutter2x", "Not Set"}, + {"p_shipcutter3x", "Not Set"}, + {"p_shipcutter4x", "Not Set"}, + {"p_shipcutter5x", "Not Set"}, + {"p_shipcutter6x", "Not Set"}, + {"p_shipmed1x", "Not Set"}, + {"p_shipmed_bs1x", "Not Set"}, + {"p_shipmed_detail1x", "Not Set"}, + {"p_shipmed_lb1x", "Not Set"}, + {"p_shipriver1x", "Not Set"}, + {"p_shipriver2x", "Not Set"}, + {"p_shipriver2x_derails", "Not Set"}, + {"p_shipsloop1x", "Not Set"}, + {"p_shipsloop2x", "Not Set"}, + {"p_shipsloop3x", "Not Set"}, + {"p_shipsmal1x", "Not Set"}, + {"p_shipsmal2x", "Not Set"}, + {"p_silverearing01x", "Not Set"}, + {"p_skiff02x", "Not Set"}, + {"p_smoc_spinner_v4", "Not Set"}, + {"p_smoc_spinner_v6", "Not Set"}, + {"p_spool01x", "Not Set"}, + {"p_squid01x", "Not Set"}, + {"p_tacklebox01x", "Not Set"}, + {"p_winchdock01x", "Not Set"}, + {"s_shipropes01x", "Not Set"}, + {"test_bouyancetest", "Not Set"}, + {"p_agu_shuttersclosed_01x", "Not Set"}, + {"p_agu_shuttersingleclosed_01x", "Not Set"}, + {"p_agu_shuttersopen_01x", "Not Set"}, + {"p_bra_cornmil_window01x", "Not Set"}, + {"p_bra_shutter05a", "Not Set"}, + {"p_bra_shutter07x", "Not Set"}, + {"p_cabinshutterdemoonly01x", "Not Set"}, + {"p_curtainmansion02x", "Not Set"}, + {"p_curtains_int_rag01x", "Not Set"}, + {"p_curtainslace01x", "Not Set"}, + {"p_curtainslace02b", "Not Set"}, + {"p_curtainslace02x", "Not Set"}, + {"p_curtainslace02x_static", "Not Set"}, + {"p_curtainslace03x", "Not Set"}, + {"p_curtains_noentryinterior", "Not Set"}, + {"p_curtains_ragged01x", "Not Set"}, + {"p_glass_nbx_bankcounter01x", "Not Set"}, + {"p_glass_nbx_bankcounter02x", "Not Set"}, + {"p_glass_nbx_bankcounter03x", "Not Set"}, + {"p_glass_nbx_bankcounter04x", "Not Set"}, + {"p_glass_nbx_bankcounter05x", "Not Set"}, + {"p_glass_nbx_bankcounter06x", "Not Set"}, + {"p_glass_nbx_bankcounter07x", "Not Set"}, + {"p_glass_nbx_bankcounter08x", "Not Set"}, + {"p_glass_nbx_banklobby01x", "Not Set"}, + {"p_glass_nbx_banklobby02x", "Not Set"}, + {"p_glass_nbx_banklobby03x", "Not Set"}, + {"p_glass_nbx_banklobby04x", "Not Set"}, + {"p_glass_nbx_banklobby05x", "Not Set"}, + {"p_glass_nbx_banklobby06x", "Not Set"}, + {"p_glass_strdoc01x", "Not Set"}, + {"p_guamansionshutter", "Not Set"}, + {"p_new_tailor01_glass01x", "Not Set"}, + {"p_new_tailor01_glass02x", "Not Set"}, + {"p_rho_bankl_win01x", "Not Set"}, + {"p_rhomansion_doorshtrgf_l", "Not Set"}, + {"p_rhomansion_doorshtrgf_r", "Not Set"}, + {"p_rhomansion_doorshtruf_l", "Not Set"}, + {"p_rhomansion_doorshtruf_r", "Not Set"}, + {"p_rhomansion_shuttergf_l", "Not Set"}, + {"p_rhomansion_shuttergf_r", "Not Set"}, + {"p_rhomansionshutters", "Not Set"}, + {"p_rhomansion_shutteruf_l", "Not Set"}, + {"p_rhomansion_shutteruf_r", "Not Set"}, + {"p_sha_l_shutter_l", "Not Set"}, + {"p_sha_l_shutter_r", "Not Set"}, + {"p_sha_m_shutter_l001", "Not Set"}, + {"p_sha_m_shutter_r", "Not Set"}, + {"p_shutter01", "Not Set"}, + {"p_shutter01_lg", "Not Set"}, + {"p_shutter01wood", "Not Set"}, + {"p_shutter02", "Not Set"}, + {"p_shutter04_tnt_l", "Not Set"}, + {"p_shutter04_tnt_r", "Not Set"}, + {"p_shutter05", "Not Set"}, + {"p_shutter07", "Not Set"}, + {"p_shutter10_main", "Not Set"}, + {"p_shutter11", "Not Set"}, + {"p_shutterbrait01x", "Not Set"}, + {"p_shuttercal01", "Not Set"}, + {"p_shuttercal02", "Not Set"}, + {"p_shutter_lakay_l", "Not Set"}, + {"p_shutter_lakay_r", "Not Set"}, + {"p_shutter_old_l", "Not Set"}, + {"p_shutter_old_r", "Not Set"}, + {"p_shutter_rho_mansbuildings", "Not Set"}, + {"p_shutterrhosaloon", "Not Set"}, + {"p_shutterrhostable02", "Not Set"}, + {"p_shutterrhostable02_clsd", "Not Set"}, + {"p_strmillwindow01ax", "Not Set"}, + {"p_strmillwindow01bx", "Not Set"}, + {"p_strmillwindow01cx", "Not Set"}, + {"p_strmillwindow01dx", "Not Set"}, + {"p_val_jts_post_01x", "Not Set"}, + {"p_win8pane_b", "Not Set"}, + {"p_win_abe_dblside01x", "Not Set"}, + {"p_win_abe_double01x", "Not Set"}, + {"p_win_ann_depot_01x", "Not Set"}, + {"p_win_annsheriff01x", "Not Set"}, + {"p_win_blabarbershop_01x", "Not Set"}, + {"p_win_blabarbershop_02x", "Not Set"}, + {"p_win_blabarbershop_03x", "Not Set"}, + {"p_win_blabarbershop_04x", "Not Set"}, + {"p_win_blakbank01x", "Not Set"}, + {"p_win_blakgenstore_01x", "Not Set"}, + {"p_win_blakgenstore_02x", "Not Set"}, + {"p_win_blakgenstore_03x", "Not Set"}, + {"p_win_blakgenstore_04x", "Not Set"}, + {"p_win_blasaloon01x", "Not Set"}, + {"p_win_blasaloon02x", "Not Set"}, + {"p_win_blasaloon03x", "Not Set"}, + {"p_win_bla_tailor01x", "Not Set"}, + {"p_win_bla_train01", "Not Set"}, + {"p_win_bla_train02", "Not Set"}, + {"p_win_bronte01x", "Not Set"}, + {"p_win_bronte02x", "Not Set"}, + {"p_win_brostained01x", "Not Set"}, + {"p_win_coloured01x", "Not Set"}, + {"p_win_coloured02x", "Not Set"}, + {"p_win_cs_genstore", "Not Set"}, + {"p_win_curtain01b", "Not Set"}, + {"p_win_dov_lab01x", "Not Set"}, + {"p_windowa_newpaint", "Not Set"}, + {"p_windowa_newwood", "Not Set"}, + {"p_windowa_oldpaint", "Not Set"}, + {"p_windowa_oldwood", "Not Set"}, + {"p_windowvalbank01x", "Not Set"}, + {"p_win_exitdepot02x", "Not Set"}, + {"p_win_gala_01x", "Not Set"}, + {"p_win_gala_02x", "Not Set"}, + {"p_win_jtc_broken01x", "Not Set"}, + {"p_win_jtc_broken02x", "Not Set"}, + {"p_win_jtc_broken_dirty01x", "Not Set"}, + {"p_win_jtl_broken01x", "Not Set"}, + {"p_win_jtl_clean02x", "Not Set"}, + {"p_win_jtl_dirty01x", "Not Set"}, + {"p_win_jtl_han01x", "Not Set"}, + {"p_win_jtl_nc_clean01x", "Not Set"}, + {"p_win_jtl_nc_dirty01x", "Not Set"}, + {"p_win_jtm2_nc_clean01x", "Not Set"}, + {"p_win_jtm_clean01x", "Not Set"}, + {"p_win_jtm_frost01x", "Not Set"}, + {"p_win_jtm_nc_clean01x", "Not Set"}, + {"p_win_jts_clean01x", "Not Set"}, + {"p_win_jts_clean3pane01x", "Not Set"}, + {"p_win_jts_clean3pane02x", "Not Set"}, + {"p_win_jts_dirty1x", "Not Set"}, + {"p_win_jts_nc_filthy01x", "Not Set"}, + {"p_win_jts_sash_clean02x", "Not Set"}, + {"p_win_jts_sash_clean03x", "Not Set"}, + {"p_win_jtxl_broken01x", "Not Set"}, + {"p_win_jtxl_dirty01x", "Not Set"}, + {"p_win_jtxl_rhobank01x", "Not Set"}, + {"p_win_nbd01_dirty01x", "Not Set"}, + {"p_win_nbd03_clean01x", "Not Set"}, + {"p_win_nbd03_justglass01x", "Not Set"}, + {"p_win_nbd04_justglass01x", "Not Set"}, + {"p_win_nbd04_white01x", "Not Set"}, + {"p_win_nbd_art01x", "Not Set"}, + {"p_win_nbd_bank01x", "Not Set"}, + {"p_win_nbd_bank02x", "Not Set"}, + {"p_win_njmpl_clean03x", "Not Set"}, + {"p_win_njmpm_clean01x", "Not Set"}, + {"p_win_njmpm_clean02x", "Not Set"}, + {"p_win_njmpm_frost01x", "Not Set"}, + {"p_win_rhochurch_01x", "Not Set"}, + {"p_win_rhosheriff01x", "Not Set"}, + {"p_win_salon_dirt01x", "Not Set"}, + {"p_win_sergk01", "Not Set"}, + {"p_win_shack_it02", "Not Set"}, + {"p_win_trolleydpt01x", "Not Set"}, + {"p_win_valbank_justglass01x", "Not Set"}, + {"p_win_valbank_justglass02x", "Not Set"}, + {"p_win_valbank_justglass03x", "Not Set"}, + {"p_win_valbank_justglass04x", "Not Set"}, + {"p_win_valbank_justglass05x", "Not Set"}, + {"p_win_valbank_justglass06x", "Not Set"}, + {"p_win_valbank_justglass07x", "Not Set"}, + {"p_win_valdepot01x", "Not Set"}, + {"p_win_valdepot02x", "Not Set"}, + {"p_win_valdepot03x", "Not Set"}, + {"p_win_valdepot04x", "Not Set"}, + {"p_win_val_shrffhs_01x", "Not Set"}, + {"p_barber_propset01x", "Not Set"}, + {"p_barber_propset02x", "Not Set"}, + {"p_barber_propset03x", "Not Set"}, + {"p_barber_propset04x", "Not Set"}, + {"p_barber_propset05x", "Not Set"}, + {"p_barber_propset06x", "Not Set"}, + {"p_barber_propset07x", "Not Set"}, + {"p_barber_propset08x", "Not Set"}, + {"p_barber_propset09x", "Not Set"}, + {"p_barber_propset10x", "Not Set"}, + {"p_barber_propset11x", "Not Set"}, + {"p_barber_propset12x", "Not Set"}, + {"p_shavingcups", "Not Set"}, + {"p_shavingcups02", "Not Set"}, + {"p_bookset01x", "Not Set"}, + {"p_clipboardset01x", "Not Set"}, + {"p_clockset01x", "Not Set"}, + {"p_crateset01x", "Not Set"}, + {"p_crateset02x", "Not Set"}, + {"p_crateset03x", "Not Set"}, + {"p_depositboxset01x", "Not Set"}, + {"p_depotgroup01x", "Not Set"}, + {"p_depotgroup02x", "Not Set"}, + {"p_depotgroup03x", "Not Set"}, + {"p_depotgroup04x", "Not Set"}, + {"p_depotgroup05x", "Not Set"}, + {"p_depotgroup06x", "Not Set"}, + {"p_depotgroup07x", "Not Set"}, + {"p_depotgroup08x", "Not Set"}, + {"p_depotgroup09x", "Not Set"}, + {"p_depotgroup10x", "Not Set"}, + {"p_depotgroup11x", "Not Set"}, + {"p_depotpapers01x", "Not Set"}, + {"p_lanternset01x", "Not Set"}, + {"p_letterset01x", "Not Set"}, + {"p_newspaperset01x", "Not Set"}, + {"p_paperset01x", "Not Set"}, + {"p_suitcaseset01x", "Not Set"}, + {"p_suitcaseset02x", "Not Set"}, + {"p_telegramset01x", "Not Set"}, + {"p_trashbinset01x", "Not Set"}, + {"p_trolley_furnclockhands", "Not Set"}, + {"p_trolleygroup01x", "Not Set"}, + {"p_trolleygroup02ax", "Not Set"}, + {"p_trolleygroup02x", "Not Set"}, + {"p_trolleygroup03x", "Not Set"}, + {"p_trolleygroup04x", "Not Set"}, + {"p_trolleygroup05x", "Not Set"}, + {"p_trolleygroup06x", "Not Set"}, + {"p_trolleygroup07x", "Not Set"}, + {"p_trolleygroup08x", "Not Set"}, + {"p_trunkset01x", "Not Set"}, + {"p_trunkset02x", "Not Set"}, + {"p_doc_ashbucket01x", "Not Set"}, + {"p_doc_blankets01x", "Not Set"}, + {"p_doc_books01x", "Not Set"}, + {"p_doc_botset01x", "Not Set"}, + {"p_doc_botset02x", "Not Set"}, + {"p_doc_botset03x", "Not Set"}, + {"p_doc_botset04x", "Not Set"}, + {"p_doc_botset05x", "Not Set"}, + {"p_doc_botset06x", "Not Set"}, + {"p_doc_botset07x", "Not Set"}, + {"p_doc_botset08x", "Not Set"}, + {"p_doc_botset09x", "Not Set"}, + {"p_doc_botset10x", "Not Set"}, + {"p_doc_botset11x", "Not Set"}, + {"p_doc_botset12x", "Not Set"}, + {"p_doc_botset13x", "Not Set"}, + {"p_doc_botset14x", "Not Set"}, + {"p_doc_botset15x", "Not Set"}, + {"p_doc_botset16x", "Not Set"}, + {"p_doc_botset17x", "Not Set"}, + {"p_doc_botset18x", "Not Set"}, + {"p_doc_botset19x", "Not Set"}, + {"p_doc_botset20x", "Not Set"}, + {"p_doc_botset21x", "Not Set"}, + {"p_doc_coatstandrack01x", "Not Set"}, + {"p_doc_firstaidkit01x", "Not Set"}, + {"p_docgroup01x", "Not Set"}, + {"p_docgroup02x", "Not Set"}, + {"p_docgroup03x", "Not Set"}, + {"p_docgroup04x", "Not Set"}, + {"p_docgroup05x", "Not Set"}, + {"p_docgroup06x", "Not Set"}, + {"p_docgroup07x", "Not Set"}, + {"p_docgroup08x", "Not Set"}, + {"p_docgroup09x", "Not Set"}, + {"p_docgroup10x", "Not Set"}, + {"p_docgroup11x", "Not Set"}, + {"p_docgroup12x", "Not Set"}, + {"p_docgroup13x", "Not Set"}, + {"p_docgroup14bx", "Not Set"}, + {"p_docgroup14x", "Not Set"}, + {"p_docgroup15x", "Not Set"}, + {"p_doc_papercert01x", "Not Set"}, + {"p_doc_stack01x", "Not Set"}, + {"p_doc_stack02x", "Not Set"}, + {"p_doc_stack03x", "Not Set"}, + {"p_doc_syringeset01x", "Not Set"}, + {"p_doctorsbookpile01x", "Not Set"}, + {"p_rc_creolenogooddeed01x", "Not Set"}, + {"s_chocolatebox01x_grp01", "Not Set"}, + {"p_apple01group02", "Not Set"}, + {"p_apple01xgroup", "Not Set"}, + {"p_barrelgroup01x", "Not Set"}, + {"p_basketgroup01x", "Not Set"}, + {"p_beardtonic01xgroup", "Not Set"}, + {"p_bla_coffee01x", "Not Set"}, + {"p_blanketbox01x", "Not Set"}, + {"p_blashelfprops01x", "Not Set"}, + {"p_botmedgroup01x", "Not Set"}, + {"p_cangoods01x", "Not Set"}, + {"p_cangoods02x", "Not Set"}, + {"p_cigardressing01x", "Not Set"}, + {"p_cigarettebox01group2x", "Not Set"}, + {"p_cigarettebox01group3x", "Not Set"}, + {"p_cigarettebox01groupx", "Not Set"}, + {"p_corn02group01x", "Not Set"}, + {"p_corn02xgroup", "Not Set"}, + {"p_crateveg01x", "Not Set"}, + {"p_exoticprops01x", "Not Set"}, + {"p_exoticprops02x", "Not Set"}, + {"p_exoticprops03x", "Not Set"}, + {"p_exoticprops04x", "Not Set"}, + {"p_exoticprops05x", "Not Set"}, + {"p_exoticprops06x", "Not Set"}, + {"p_exoticprops07x", "Not Set"}, + {"p_exoticprops08x", "Not Set"}, + {"p_exoticprops09x", "Not Set"}, + {"p_exoticprops10x", "Not Set"}, + {"p_exoticprops11x", "Not Set"}, + {"p_exoticprops12x", "Not Set"}, + {"p_exoticprops13x", "Not Set"}, + {"p_exoticprops14x", "Not Set"}, + {"p_exoticprops15x", "Not Set"}, + {"p_exoticprops16x", "Not Set"}, + {"p_exoticprops17x", "Not Set"}, + {"p_exoticprops18x", "Not Set"}, + {"p_exoticprops19x", "Not Set"}, + {"p_exoticprops20x", "Not Set"}, + {"p_exoticprops21x", "Not Set"}, + {"p_exoticprops22x", "Not Set"}, + {"p_exoticprops23x", "Not Set"}, + {"p_exoticprops24x", "Not Set"}, + {"p_exoticprops25x", "Not Set"}, + {"p_gindressing", "Not Set"}, + {"p_group_n_grocery_basket01x", "Not Set"}, + {"p_group_n_grocery_basket02x", "Not Set"}, + {"p_group_n_grocery_basket03x", "Not Set"}, + {"p_group_n_grocery_basket04x", "Not Set"}, + {"p_group_n_grocery_basket05x", "Not Set"}, + {"p_group_n_grocery_basket06x", "Not Set"}, + {"p_group_n_grocery_bcrate02x", "Not Set"}, + {"p_group_n_grocery_box01x", "Not Set"}, + {"p_group_n_grocery_bread01x", "Not Set"}, + {"p_group_n_grocery_bread02x", "Not Set"}, + {"p_group_n_grocery_canister05x", "Not Set"}, + {"p_group_n_grocery_cgrinder02x", "Not Set"}, + {"p_group_n_grocery_cheese01x", "Not Set"}, + {"p_group_n_grocery_cheese02x", "Not Set"}, + {"p_group_n_grocery_cigbox01x", "Not Set"}, + {"p_group_n_grocery_cjar01x", "Not Set"}, + {"p_group_n_grocery_cjar02x", "Not Set"}, + {"p_group_n_grocery_cjar03x", "Not Set"}, + {"p_group_n_grocery_cpot01x", "Not Set"}, + {"p_group_n_grocery_cpot02x", "Not Set"}, + {"p_group_n_grocery_crate01x", "Not Set"}, + {"p_group_n_grocery_crate02x", "Not Set"}, + {"p_group_n_grocery_crate03x", "Not Set"}, + {"p_group_n_grocery_crate04x", "Not Set"}, + {"p_group_n_grocery_crate05x", "Not Set"}, + {"p_group_n_grocery_crate06x", "Not Set"}, + {"p_group_n_grocery_crate07x", "Not Set"}, + {"p_group_n_grocery_crate08x", "Not Set"}, + {"p_group_n_grocery_crate09x", "Not Set"}, + {"p_group_n_grocery_crate10x", "Not Set"}, + {"p_group_n_grocery_crate11x", "Not Set"}, + {"p_group_n_grocery_crate12x", "Not Set"}, + {"p_group_n_grocery_crate14x", "Not Set"}, + {"p_group_n_grocery_crate15x", "Not Set"}, + {"p_group_n_grocery_crate16x", "Not Set"}, + {"p_group_n_grocery_crate17x", "Not Set"}, + {"p_group_n_grocery_crate18x", "Not Set"}, + {"p_group_n_grocery_crate19x", "Not Set"}, + {"p_group_n_grocery_crate20x", "Not Set"}, + {"p_group_n_grocery_crate21x", "Not Set"}, + {"p_group_n_grocery_crate22x", "Not Set"}, + {"p_group_n_grocery_crate23x", "Not Set"}, + {"p_group_n_grocery_curn01x", "Not Set"}, + {"p_group_n_grocery_doll01x", "Not Set"}, + {"p_group_n_grocery_gbag01x", "Not Set"}, + {"p_group_n_grocery_jug01x", "Not Set"}, + {"p_group_n_grocery_jug02x", "Not Set"}, + {"p_group_n_grocery_lantern01x", "Not Set"}, + {"p_group_n_grocery_pillow01x", "Not Set"}, + {"p_group_n_grocery_pillow02x", "Not Set"}, + {"p_group_n_grocery_pillow03x", "Not Set"}, + {"p_group_n_grocery_plate01x", "Not Set"}, + {"p_group_n_grocery_sack01x", "Not Set"}, + {"p_group_n_grocery_sack02x", "Not Set"}, + {"p_group_n_grocery_sdish01x", "Not Set"}, + {"p_group_n_grocery_sdish02x", "Not Set"}, + {"p_group_n_grocery_syrup01x", "Not Set"}, + {"p_group_n_grocery_tray01x", "Not Set"}, + {"p_group_n_grocery_twriter01x", "Not Set"}, + {"p_group_n_grocery_wbasin01x", "Not Set"}, + {"p_grp_w_tra_barrelhalf01x", "Not Set"}, + {"p_grp_w_tra_bclosed01x", "Not Set"}, + {"p_grp_w_tra_bclosed02x", "Not Set"}, + {"p_grp_w_tra_blankets01x", "Not Set"}, + {"p_grp_w_tra_boots01x", "Not Set"}, + {"p_grp_w_tra_botset01x", "Not Set"}, + {"p_grp_w_tra_crate01x", "Not Set"}, + {"p_grp_w_tra_crate02x", "Not Set"}, + {"p_grp_w_tra_crate03x", "Not Set"}, + {"p_grp_w_tra_crate04x", "Not Set"}, + {"p_grp_w_tra_crate05x", "Not Set"}, + {"p_grp_w_tra_crate07x", "Not Set"}, + {"p_grp_w_tra_crate08x", "Not Set"}, + {"p_grp_w_tra_crate09x", "Not Set"}, + {"p_grp_w_tra_crate10x", "Not Set"}, + {"p_grp_w_tra_crate11x", "Not Set"}, + {"p_grp_w_tra_crate12x", "Not Set"}, + {"p_grp_w_tra_cup01x", "Not Set"}, + {"p_grp_w_tra_floursack01x", "Not Set"}, + {"p_grp_w_tra_floursack02x", "Not Set"}, + {"p_grp_w_tra_horsesaddle01x", "Not Set"}, + {"p_grp_w_tra_hprops01x", "Not Set"}, + {"p_grp_w_tra_jug01x", "Not Set"}, + {"p_grp_w_tra_jug02x", "Not Set"}, + {"p_grp_w_tra_jug03x", "Not Set"}, + {"p_grp_w_tra_letterbundle01x", "Not Set"}, + {"p_grp_w_tra_ropewall01x", "Not Set"}, + {"p_grp_w_tra_sack01x", "Not Set"}, + {"p_grp_w_tra_sack02x", "Not Set"}, + {"p_grp_w_tra_shirt01x", "Not Set"}, + {"p_grp_w_tra_shovel01x", "Not Set"}, + {"p_grp_w_tra_sidetable01x", "Not Set"}, + {"p_grp_w_tra_skull01x", "Not Set"}, + {"p_grp_w_tra_stool01x", "Not Set"}, + {"p_grp_w_tra_tentrolled01x", "Not Set"}, + {"p_grp_w_tra_washtub01x", "Not Set"}, + {"p_grp_w_tra_wedgestick01x", "Not Set"}, + {"p_gunoilgroup01x", "Not Set"}, + {"p_gunoilgroup02x", "Not Set"}, + {"p_hanggarlicgroup01x", "Not Set"}, + {"p_horsemedsgroup01x", "Not Set"}, + {"p_horsemedsgroup02x", "Not Set"}, + {"p_horsemedsgroup03x", "Not Set"}, + {"p_horseprops01x", "Not Set"}, + {"p_horseprops02x", "Not Set"}, + {"p_horseprops03x", "Not Set"}, + {"p_horseprops04x", "Not Set"}, + {"p_horseprops05x", "Not Set"}, + {"p_int_alligatorcallbox01x", "Not Set"}, + {"p_int_bandanaset01", "Not Set"}, + {"p_int_bearcallbox01x", "Not Set"}, + {"p_int_biscuitset01", "Not Set"}, + {"p_int_biscuitset02", "Not Set"}, + {"p_int_biscuitset03", "Not Set"}, + {"p_int_camping01", "Not Set"}, + {"p_int_camping02", "Not Set"}, + {"p_int_camping03", "Not Set"}, + {"p_int_camping04", "Not Set"}, + {"p_int_camping05", "Not Set"}, + {"p_int_camping06", "Not Set"}, + {"p_int_candy01", "Not Set"}, + {"p_int_candy02", "Not Set"}, + {"p_int_candy03", "Not Set"}, + {"p_int_cheeseblock01", "Not Set"}, + {"p_int_clothing01", "Not Set"}, + {"p_int_cougarcallbox01x", "Not Set"}, + {"p_int_deercallbox01x", "Not Set"}, + {"p_int_dishware01", "Not Set"}, + {"p_int_duckcallbox01x", "Not Set"}, + {"p_int_elkcallbox01x", "Not Set"}, + {"p_int_fishing01", "Not Set"}, + {"p_int_food01", "Not Set"}, + {"p_int_food02", "Not Set"}, + {"p_int_food03", "Not Set"}, + {"p_int_food04", "Not Set"}, + {"p_int_food05", "Not Set"}, + {"p_int_food05_var2", "Not Set"}, + {"p_int_food06", "Not Set"}, + {"p_int_gen_books01", "Not Set"}, + {"p_int_gen_coffee", "Not Set"}, + {"p_int_gen_coffee02", "Not Set"}, + {"p_int_gen_coffee03", "Not Set"}, + {"p_int_gen_liquor01", "Not Set"}, + {"p_int_gen_shaving01", "Not Set"}, + {"p_int_gen_tobacco01", "Not Set"}, + {"p_int_gen_tobacco02", "Not Set"}, + {"p_int_gen_tobacco03", "Not Set"}, + {"p_int_gloveset01", "Not Set"}, + {"p_int_grooming01", "Not Set"}, + {"p_int_grooming02", "Not Set"}, + {"p_int_horse01", "Not Set"}, + {"p_int_horse02", "Not Set"}, + {"p_int_horse03", "Not Set"}, + {"p_int_houseware01", "Not Set"}, + {"p_int_houseware02", "Not Set"}, + {"p_int_houseware03", "Not Set"}, + {"p_int_houseware04", "Not Set"}, + {"p_int_hunting01", "Not Set"}, + {"p_int_hunting01_carn", "Not Set"}, + {"p_int_hunting01_carn02", "Not Set"}, + {"p_int_hunting01_herb", "Not Set"}, + {"p_int_hunting01_herb02", "Not Set"}, + {"p_int_meat01", "Not Set"}, + {"p_int_meat02", "Not Set"}, + {"p_int_moosecallbox01x", "Not Set"}, + {"p_int_panthercallbox01x", "Not Set"}, + {"p_int_playingcardset01", "Not Set"}, + {"p_int_pocketwatch01", "Not Set"}, + {"p_int_pomadeset01", "Not Set"}, + {"p_int_pomadesetlrg01", "Not Set"}, + {"p_int_pomadesetlrg02", "Not Set"}, + {"p_int_produce01", "Not Set"}, + {"p_int_produce01_var02", "Not Set"}, + {"p_int_produce02", "Not Set"}, + {"p_int_produce03", "Not Set"}, + {"p_int_produce04", "Not Set"}, + {"p_int_produce04top", "Not Set"}, + {"p_int_produce05", "Not Set"}, + {"p_int_razorset01", "Not Set"}, + {"p_int_scissorset01", "Not Set"}, + {"p_int_shavingset01", "Not Set"}, + {"p_int_shavingset02", "Not Set"}, + {"p_int_tobaccoset01", "Not Set"}, + {"p_int_windowdisplay01", "Not Set"}, + {"p_int_wolfcallbox01x", "Not Set"}, + {"p_inv_tabaccopotntset01x", "Not Set"}, + {"p_inv_tabaccoset01x", "Not Set"}, + {"p_lagrasprops01x", "Not Set"}, + {"p_lanterngroup01x", "Not Set"}, + {"p_merchboxgroup01x", "Not Set"}, + {"p_mortardressing", "Not Set"}, + {"p_package13xlarge", "Not Set"}, + {"p_packfowgroup01x", "Not Set"}, + {"p_packsoapgroup01x", "Not Set"}, + {"p_pangroup01x", "Not Set"}, + {"p_peagrouplrg", "Not Set"}, + {"p_pumpkingroup01x", "Not Set"}, + {"p_rakegroup01x", "Not Set"}, + {"p_rhodesgroup01x", "Not Set"}, + {"p_rhodesgroup02x", "Not Set"}, + {"p_rhodesgroup03x", "Not Set"}, + {"p_rhodesgroup04x", "Not Set"}, + {"p_rhodesgroup05x", "Not Set"}, + {"p_rhodesgroup06x", "Not Set"}, + {"p_rhodesgroup07x", "Not Set"}, + {"p_rhodesgroup08x", "Not Set"}, + {"p_rhodesgroup09x", "Not Set"}, + {"p_rhodesgroup10x", "Not Set"}, + {"p_ropegroup01x", "Not Set"}, + {"p_rumdressing", "Not Set"}, + {"p_saltedmeatgroup01x", "Not Set"}, + {"p_sharpeningstoneset", "Not Set"}, + {"p_sharpeningstonesetv2", "Not Set"}, + {"p_soap01group", "Not Set"}, + {"p_squashacorn01xgroup", "Not Set"}, + {"p_squashacorn01xgroup02", "Not Set"}, + {"p_stableprops01x", "Not Set"}, + {"p_stableprops01xhighhooks", "Not Set"}, + {"p_stableprops01xhooks", "Not Set"}, + {"p_stableprops02x", "Not Set"}, + {"p_stableprops03x", "Not Set"}, + {"p_stableprops04x", "Not Set"}, + {"p_static_w_tra_barrel01x", "Not Set"}, + {"p_static_w_tra_crate13x", "Not Set"}, + {"p_stdengenprops01x", "Not Set"}, + {"p_stdengenprops02x", "Not Set"}, + {"p_sto_bakingsoda01x", "Not Set"}, + {"p_sto_barrel01x", "Not Set"}, + {"p_sto_barrelsalt01x", "Not Set"}, + {"p_sto_basketdishes02x", "Not Set"}, + {"p_sto_boiler01x", "Not Set"}, + {"p_sto_boxcereal01x", "Not Set"}, + {"p_sto_boxcereal02x", "Not Set"}, + {"p_sto_boxgelatin02x", "Not Set"}, + {"p_sto_bread08x", "Not Set"}, + {"p_sto_broom02x", "Not Set"}, + {"p_sto_brushhorse01x", "Not Set"}, + {"p_sto_butcherknife01x", "Not Set"}, + {"p_sto_buysellbox02x", "Not Set"}, + {"p_sto_can01x", "Not Set"}, + {"p_sto_can03x", "Not Set"}, + {"p_sto_can04x", "Not Set"}, + {"p_sto_can08x", "Not Set"}, + {"p_sto_can10x", "Not Set"}, + {"p_sto_can11x", "Not Set"}, + {"p_sto_canister04cx", "Not Set"}, + {"p_sto_canister04dx", "Not Set"}, + {"p_sto_canister04fx", "Not Set"}, + {"p_sto_canister04x", "Not Set"}, + {"p_sto_canister05x", "Not Set"}, + {"p_sto_cigarstand01x", "Not Set"}, + {"p_sto_cleanprod01x", "Not Set"}, + {"p_sto_cleanprod02x", "Not Set"}, + {"p_sto_crateset01x", "Not Set"}, + {"p_sto_crateset02x", "Not Set"}, + {"p_sto_crate_veg01x", "Not Set"}, + {"p_sto_crate_veg02x", "Not Set"}, + {"p_sto_cuttingboard01x", "Not Set"}, + {"p_sto_fans01x", "Not Set"}, + {"p_sto_female_shoes_01x", "Not Set"}, + {"p_sto_female_shoes_02x", "Not Set"}, + {"p_sto_fiddle01x", "Not Set"}, + {"p_sto_gardenset01x", "Not Set"}, + {"p_sto_gelatin01x", "Not Set"}, + {"p_sto_goods01x", "Not Set"}, + {"p_sto_goods02x", "Not Set"}, + {"p_sto_goods03x", "Not Set"}, + {"p_sto_goods04x", "Not Set"}, + {"p_sto_goods05x", "Not Set"}, + {"p_sto_goods06x", "Not Set"}, + {"p_sto_goods07x", "Not Set"}, + {"p_sto_goods08x", "Not Set"}, + {"p_sto_goods09x", "Not Set"}, + {"p_sto_goods10x", "Not Set"}, + {"p_sto_goods11x", "Not Set"}, + {"p_sto_goods12x", "Not Set"}, + {"p_sto_goods13x", "Not Set"}, + {"p_sto_goods14x", "Not Set"}, + {"p_sto_goods15x", "Not Set"}, + {"p_sto_goods16x", "Not Set"}, + {"p_sto_goods17x", "Not Set"}, + {"p_sto_goods18x", "Not Set"}, + {"p_sto_goods19x", "Not Set"}, + {"p_sto_goods20x", "Not Set"}, + {"p_sto_goods21x", "Not Set"}, + {"p_sto_goods22x", "Not Set"}, + {"p_sto_goods23x", "Not Set"}, + {"p_sto_goods24x", "Not Set"}, + {"p_sto_goods25x", "Not Set"}, + {"p_sto_goods26x", "Not Set"}, + {"p_sto_goods27x", "Not Set"}, + {"p_sto_goods28x", "Not Set"}, + {"p_sto_goods29x", "Not Set"}, + {"p_sto_goods30x", "Not Set"}, + {"p_sto_goods31x", "Not Set"}, + {"p_sto_goods32x", "Not Set"}, + {"p_sto_goods33x", "Not Set"}, + {"p_sto_goods34x", "Not Set"}, + {"p_sto_goods35x", "Not Set"}, + {"p_sto_goods36x", "Not Set"}, + {"p_sto_goods37x", "Not Set"}, + {"p_sto_goods38x", "Not Set"}, + {"p_sto_hang01x", "Not Set"}, + {"p_sto_hang02x", "Not Set"}, + {"p_sto_hangoods01x", "Not Set"}, + {"p_sto_hangoods02x", "Not Set"}, + {"p_sto_hangoods03x", "Not Set"}, + {"p_sto_hangoods04x", "Not Set"}, + {"p_sto_hangoods05x", "Not Set"}, + {"p_sto_hatbox01x", "Not Set"}, + {"p_sto_hatstand01x", "Not Set"}, + {"p_sto_hide01x", "Not Set"}, + {"p_sto_jar01x", "Not Set"}, + {"p_sto_jarcoffee01x", "Not Set"}, + {"p_sto_jug02x", "Not Set"}, + {"p_sto_jugset01x", "Not Set"}, + {"p_sto_lampkero01x", "Not Set"}, + {"p_sto_meatfilet01x", "Not Set"}, + {"p_sto_meats01x", "Not Set"}, + {"p_sto_meats02x", "Not Set"}, + {"p_sto_meats03x", "Not Set"}, + {"p_sto_meats04x", "Not Set"}, + {"p_sto_merchbox01x", "Not Set"}, + {"p_sto_merchbox02x", "Not Set"}, + {"p_sto_microscope01x", "Not Set"}, + {"p_sto_miningpan01x", "Not Set"}, + {"p_sto_package01x", "Not Set"}, + {"p_sto_pan02x", "Not Set"}, + {"p_sto_potatoes01x", "Not Set"}, + {"p_sto_produce01x", "Not Set"}, + {"p_sto_produce02x", "Not Set"}, + {"p_sto_produce03x", "Not Set"}, + {"p_sto_proset01x", "Not Set"}, + {"p_sto_proset02x", "Not Set"}, + {"p_sto_proset03x", "Not Set"}, + {"p_sto_proset04x", "Not Set"}, + {"p_sto_proset05x", "Not Set"}, + {"p_sto_sack03x", "Not Set"}, + {"p_sto_sausages01x", "Not Set"}, + {"p_sto_sugar01x", "Not Set"}, + {"p_sto_syrup01x", "Not Set"}, + {"p_sto_tin01x", "Not Set"}, + {"p_sto_tinsalve01x", "Not Set"}, + {"p_sto_tinstack01x", "Not Set"}, + {"p_sto_tinstack02x", "Not Set"}, + {"p_sto_tinstack03x", "Not Set"}, + {"p_sto_tinstack04x", "Not Set"}, + {"p_sto_tinstack05x", "Not Set"}, + {"p_sto_tinstack06x", "Not Set"}, + {"p_sto_tomatoes01x", "Not Set"}, + {"p_sto_tools01x", "Not Set"}, + {"p_sto_veg02x", "Not Set"}, + {"p_sto_vegbaskets01x", "Not Set"}, + {"p_sto_washbasinset01x", "Not Set"}, + {"p_strawbgroup01x", "Not Set"}, + {"p_strawbgroup02x", "Not Set"}, + {"p_strawbgroup03x", "Not Set"}, + {"p_strawbgroup04x", "Not Set"}, + {"p_strawbgroup05x", "Not Set"}, + {"p_strawbgroup06x", "Not Set"}, + {"p_strawbgroup07x", "Not Set"}, + {"p_strawbgroup08x", "Not Set"}, + {"p_strawbgroup09x", "Not Set"}, + {"p_strawbgroup10x", "Not Set"}, + {"p_strawbgroup11x", "Not Set"}, + {"p_strawbgroup12x", "Not Set"}, + {"p_tin_pomade01xgroupsml", "Not Set"}, + {"p_tin_salve01x_group01", "Not Set"}, + {"p_tin_soap01groupx", "Not Set"}, + {"p_vanstoreprops01x", "Not Set"}, + {"p_vanstoreprops02x", "Not Set"}, + {"p_vanstoreprops03x", "Not Set"}, + {"p_vanstoreprops04x", "Not Set"}, + {"p_vanstoreprops05x", "Not Set"}, + {"p_vanstoreprops06x", "Not Set"}, + {"p_vg_tin02x_group", "Not Set"}, + {"p_whittleknifedressing", "Not Set"}, + {"p_wormcangroup", "Not Set"}, + {"s_canapricots01x_group01", "Not Set"}, + {"s_cancorn01x_group01", "Not Set"}, + {"s_cancorn01x_group02", "Not Set"}, + {"s_cankidney01x_group01", "Not Set"}, + {"s_canpeas01xgroup", "Not Set"}, + {"s_canpeas01x_group01", "Not Set"}, + {"s_canpineapple01group", "Not Set"}, + {"s_canstrawberries01group", "Not Set"}, + {"s_chocolatebox01group01", "Not Set"}, + {"s_chocolatebox01group02", "Not Set"}, + {"s_chocolatebox01group03", "Not Set"}, + {"s_cornedbeef01x_group01", "Not Set"}, + {"s_cornedbeef01x_group02", "Not Set"}, + {"s_crackers01x_group01", "Not Set"}, + {"s_crackers01x_group02", "Not Set"}, + {"s_crackersgroup", "Not Set"}, + {"s_craft_horsestim_group", "Not Set"}, + {"s_crickettin01group", "Not Set"}, + {"s_flask01dressing", "Not Set"}, + {"s_inv_cocainegumgroup", "Not Set"}, + {"s_inv_horsestim_group01", "Not Set"}, + {"s_lettuce01group", "Not Set"}, + {"s_lettuce01group2", "Not Set"}, + {"s_oatcakes01xgroup", "Not Set"}, + {"s_offal01x_group01", "Not Set"}, + {"s_offal01x_group02", "Not Set"}, + {"s_peach01xgroup", "Not Set"}, + {"s_peach01xgroup02", "Not Set"}, + {"s_shavingsoap1x_group01", "Not Set"}, + {"s_shavingsoap1x_group02", "Not Set"}, + {"p_ammoboxset01x", "Not Set"}, + {"p_arrowdisplay01x", "Not Set"}, + {"p_arrowdisplay02x", "Not Set"}, + {"p_asign_anngun01", "Not Set"}, + {"p_asign_tumgun01", "Not Set"}, + {"p_barstoolset01x", "Not Set"}, + {"p_bowdisplay01x", "Not Set"}, + {"p_bowdisplay02x", "Not Set"}, + {"p_clamphandset01x", "Not Set"}, + {"p_clampset03x", "Not Set"}, + {"p_crategroup02x", "Not Set"}, + {"p_crategroup03x", "Not Set"}, + {"p_crategroup04x", "Not Set"}, + {"p_crategroup05x", "Not Set"}, + {"p_crategroup06x", "Not Set"}, + {"p_crategroup07x", "Not Set"}, + {"p_crategroup08x", "Not Set"}, + {"p_crategroup09x", "Not Set"}, + {"p_crategroup10x", "Not Set"}, + {"p_crategroup11x", "Not Set"}, + {"p_crategroup12x", "Not Set"}, + {"p_crategroup13x", "Not Set"}, + {"p_crategroup14x", "Not Set"}, + {"p_crategroup15x", "Not Set"}, + {"p_crategroup16x", "Not Set"}, + {"p_crategroup18x", "Not Set"}, + {"p_crategroup19x", "Not Set"}, + {"p_crategroup20x", "Not Set"}, + {"p_crategroup21x", "Not Set"}, + {"p_crategroup22x", "Not Set"}, + {"p_crategroup23x", "Not Set"}, + {"p_crateset04x", "Not Set"}, + {"p_crateset05x", "Not Set"}, + {"p_crateset06x", "Not Set"}, + {"p_crateset15x", "Not Set"}, + {"p_grp_ann_gsmith01x", "Not Set"}, + {"p_grp_ann_gsmith02x", "Not Set"}, + {"p_grp_ann_gsmith03x", "Not Set"}, + {"p_grp_ann_gsmith04x", "Not Set"}, + {"p_grp_ann_gsmith05x", "Not Set"}, + {"p_grp_ann_gsmith06x", "Not Set"}, + {"p_grp_ann_gsmith07x", "Not Set"}, + {"p_grp_ann_gsmith08x", "Not Set"}, + {"p_grp_rho_gsmith01x", "Not Set"}, + {"p_grp_rho_gsmith02x", "Not Set"}, + {"p_grp_rho_gsmith03x", "Not Set"}, + {"p_grp_rho_gsmith06x", "Not Set"}, + {"p_grp_rho_gsmith07x", "Not Set"}, + {"p_grp_rho_gsmith09x", "Not Set"}, + {"p_grp_rho_gsmith10x", "Not Set"}, + {"p_grp_rho_gsmith11x", "Not Set"}, + {"p_grp_rho_gsmith12x", "Not Set"}, + {"p_grp_rho_gsmith14x", "Not Set"}, + {"p_grp_rho_gsmith15x", "Not Set"}, + {"p_gunbarrelset01x", "Not Set"}, + {"p_gun_crateset01x", "Not Set"}, + {"p_gun_crateset02x", "Not Set"}, + {"p_gun_crateset03x", "Not Set"}, + {"p_gun_crateset04x", "Not Set"}, + {"p_gun_display01x", "Not Set"}, + {"p_gun_gunset01x", "Not Set"}, + {"p_gun_hangitem01x", "Not Set"}, + {"p_gun_hangitem02x", "Not Set"}, + {"p_gun_packages01x", "Not Set"}, + {"p_gunsmithbarrels01x", "Not Set"}, + {"p_gunsmithboxes01x", "Not Set"}, + {"p_gunsmithprops01x", "Not Set"}, + {"p_gunsmithprops02x", "Not Set"}, + {"p_gunsmithprops03x", "Not Set"}, + {"p_gunsmithprops04x", "Not Set"}, + {"p_gunsmithprops05x", "Not Set"}, + {"p_gunsmithprops06x", "Not Set"}, + {"p_gunsmithprops07x", "Not Set"}, + {"p_gunsmithprops08x", "Not Set"}, + {"p_gunsmithprops09x", "Not Set"}, + {"p_gunsmithprops10x", "Not Set"}, + {"p_gunsmithprops11x", "Not Set"}, + {"p_gunsmithprops12x", "Not Set"}, + {"p_gunsmithprops13x", "Not Set"}, + {"p_gunsmithprops15x", "Not Set"}, + {"p_gunsmithprops16x", "Not Set"}, + {"p_gunsmithprops17x", "Not Set"}, + {"p_gunsmithprops18x", "Not Set"}, + {"p_gunsmithprops19x", "Not Set"}, + {"p_gunsmithprops20x", "Not Set"}, + {"p_gunsmithprops21x", "Not Set"}, + {"p_gunsmithprops22x", "Not Set"}, + {"p_gunsmithprops23x", "Not Set"}, + {"p_gunsmithprops24x", "Not Set"}, + {"p_gunsmithprops25x", "Not Set"}, + {"p_gunsmithprops26x", "Not Set"}, + {"p_gunsmithprops27x", "Not Set"}, + {"p_gunsmithprops28x", "Not Set"}, + {"p_gunsmithprops29x", "Not Set"}, + {"p_gunsmithsprops14x", "Not Set"}, + {"p_gun_tools01x", "Not Set"}, + {"p_gun_tools02x", "Not Set"}, + {"p_gun_tools03x", "Not Set"}, + {"p_gun_tools04x", "Not Set"}, + {"p_gun_tools05x", "Not Set"}, + {"p_latheset01x", "Not Set"}, + {"p_lathetoolgroup01x", "Not Set"}, + {"p_lathetoolgroup02", "Not Set"}, + {"p_nailboxset01x", "Not Set"}, + {"p_newspapergroup01x", "Not Set"}, + {"p_newspapergroup02x", "Not Set"}, + {"p_oilcanset02x", "Not Set"}, + {"p_oillampset01x", "Not Set"}, + {"p_packageset06x", "Not Set"}, + {"p_packageset08x", "Not Set"}, + {"p_pistolgroup_01x", "Not Set"}, + {"p_powderhornset01x", "Not Set"}, + {"p_riflegroup_01x", "Not Set"}, + {"p_spittoonset03x", "Not Set"}, + {"p_static_crategroup01x", "Not Set"}, + {"p_static_rho_gsmith08x", "Not Set"}, + {"p_taxideerset01x", "Not Set"}, + {"p_asign_strvis01", "Not Set"}, + {"p_asign_valhot01", "Not Set"}, + {"p_candlelampcombo01x", "Not Set"}, + {"p_candlelampcombo02x", "Not Set"}, + {"p_chaircomfycombo01x", "Not Set"}, + {"p_coatrackcombo01x", "Not Set"}, + {"p_dressercombo01x", "Not Set"}, + {"p_flaskcombo01x", "Not Set"}, + {"p_hatstandcombo01x", "Not Set"}, + {"p_letterboxcombo01x", "Not Set"}, + {"p_letterbundlecombo01x", "Not Set"}, + {"p_packagecombo01x", "Not Set"}, + {"p_sidetablecombo01x", "Not Set"}, + {"p_suitcasecombo01x", "Not Set"}, + {"p_teatraycombo01x", "Not Set"}, + {"p_teatraycombo02x", "Not Set"}, + {"p_telegramcombo01x", "Not Set"}, + {"p_tequilacombo01x", "Not Set"}, + {"p_washbascombo01x", "Not Set"}, + {"int_industrial_deleteme", "Not Set"}, + {"p_jailgroup01x", "Not Set"}, + {"p_jailgroup02x", "Not Set"}, + {"p_jailgroup03x", "Not Set"}, + {"p_lampcombine01x", "Not Set"}, + {"p_maskcombined01x", "Not Set"}, + {"p_mattresscombined01x", "Not Set"}, + {"p_paperstackcom01x", "Not Set"}, + {"p_sealsetcombined01x", "Not Set"}, + {"p_spittooncombined01x", "Not Set"}, + {"p_abe_cabinet01", "Not Set"}, + {"p_adl_cabinet01x", "Not Set"}, + {"p_adl_cabinet_l", "Not Set"}, + {"p_adl_cabinet_r", "Not Set"}, + {"p_adl_chestlrg01x", "Not Set"}, + {"p_adl_drwsng01x", "Not Set"}, + {"p_baggage01x_cabinet_dr01", "Not Set"}, + {"p_baggage01x_cabinet_dr02", "Not Set"}, + {"p_baggage01x_tre_dr01", "Not Set"}, + {"p_baggage01x_tre_dr02", "Not Set"}, + {"p_boxlrgbirch01x", "Not Set"}, + {"p_boxlrgcotton01x", "Not Set"}, + {"p_boxlrgice01x", "Not Set"}, + {"p_boxlrgleather01x", "Not Set"}, + {"p_boxlrgmeat01x", "Not Set"}, + {"p_boxlrgproduce01x", "Not Set"}, + {"p_boxlrgstool01x", "Not Set"}, + {"p_boxlrgtin01x", "Not Set"}, + {"p_boxlrgtool01x", "Not Set"}, + {"p_boxlrgwicker01x", "Not Set"}, + {"p_boxlrgwoven01x", "Not Set"}, + {"p_boxmedburied01x", "Not Set"}, + {"p_boxmedcharred01x", "Not Set"}, + {"p_boxmeddeposit01x", "Not Set"}, + {"p_boxmedmedical01x", "Not Set"}, + {"p_boxmedpaint01x", "Not Set"}, + {"p_boxmedsuitcase01x", "Not Set"}, + {"p_boxmedwicker01x", "Not Set"}, + {"p_boxsmlammo01x", "Not Set"}, + {"p_boxsmlbirch01x", "Not Set"}, + {"p_boxsmljewelery01x", "Not Set"}, + {"p_boxsmlleather01x", "Not Set"}, + {"p_boxsmltackle01x", "Not Set"}, + {"p_bra_int_drwdressing01x", "Not Set"}, + {"p_bra_int_drwdressing02x", "Not Set"}, + {"p_bra_int_drwdressing03x", "Not Set"}, + {"p_bra_int_drwdressing04x", "Not Set"}, + {"p_bra_int_drwdressing05x", "Not Set"}, + {"p_bra_int_drwdressing06x", "Not Set"}, + {"p_bra_int_drwdressing07x", "Not Set"}, + {"p_bra_int_drwdressing08x", "Not Set"}, + {"p_bra_int_drwdressing09x", "Not Set"}, + {"p_bra_int_drwdressing10x", "Not Set"}, + {"p_bra_int_drwdressing11x", "Not Set"}, + {"p_bra_int_drwdressing12x", "Not Set"}, + {"p_bra_int_drwdressing13x", "Not Set"}, + {"p_bra_int_drwdressing14x", "Not Set"}, + {"p_caboose01x_cupboard", "Not Set"}, + {"p_caboose01x_drawers", "Not Set"}, + {"p_caboose03x_cupboard", "Not Set"}, + {"p_caboose03x_drawers", "Not Set"}, + {"p_carcasshangfish01a", "Not Set"}, + {"p_carcasshanglrg01x", "Not Set"}, + {"p_carcasshanglrg02x", "Not Set"}, + {"p_carcasshangmed01a", "Not Set"}, + {"p_carcasshangmed01b", "Not Set"}, + {"p_carcasshangmed01x", "Not Set"}, + {"p_carcasshangsml01x", "Not Set"}, + {"p_carcasshangsml02x", "Not Set"}, + {"p_car_int_armclosdressing01x", "Not Set"}, + {"p_car_int_armdrwdressing01x", "Not Set"}, + {"p_car_int_armdrwdressing02x", "Not Set"}, + {"p_car_int_chestdressing01x", "Not Set"}, + {"p_car_int_chestdressing02x", "Not Set"}, + {"p_car_int_drwdressing01x", "Not Set"}, + {"p_car_int_drwdressing02x", "Not Set"}, + {"p_car_int_drwdressing03x", "Not Set"}, + {"p_car_int_drwdressing04x", "Not Set"}, + {"p_cat_cabinet01x", "Not Set"}, + {"p_cat_cabinet_l", "Not Set"}, + {"p_cat_cabinet_r", "Not Set"}, + {"p_chest_lrg", "Not Set"}, + {"p_chest_med", "Not Set"}, + {"p_chestmedbin01x", "Not Set"}, + {"p_chestmedburied01x", "Not Set"}, + {"p_chestmedhunt01x", "Not Set"}, + {"p_chestmedice01x", "Not Set"}, + {"p_chestmedlivestock01x", "Not Set"}, + {"p_chestmedlog01x", "Not Set"}, + {"p_chestmedproduce01x", "Not Set"}, + {"p_chestmedtrap01x", "Not Set"}, + {"p_chestmedwicker01x", "Not Set"}, + {"p_chestmedwilderness01x", "Not Set"}, + {"p_cupboards_narrow", "Not Set"}, + {"p_cupboards_wide", "Not Set"}, + {"p_drawer_dbl", "Not Set"}, + {"p_drawer_sgl", "Not Set"}, + {"p_dressinglblbutcher01x", "Not Set"}, + {"p_dressinglblbutcher02x", "Not Set"}, + {"p_dressinglblcamp01x", "Not Set"}, + {"p_dressinglbldairy01x", "Not Set"}, + {"p_dressinglblfarm01x", "Not Set"}, + {"p_dressinglblfish01x", "Not Set"}, + {"p_dressinglblfood02x", "Not Set"}, + {"p_dressinglblhay01x", "Not Set"}, + {"p_dressinglblhorse01x", "Not Set"}, + {"p_dressinglblhunt01x", "Not Set"}, + {"p_dressinglblice02x", "Not Set"}, + {"p_dressinglbllinen01x", "Not Set"}, + {"p_dressinglblpackage01x", "Not Set"}, + {"p_dressinglblproduce01x", "Not Set"}, + {"p_dressinglbltool01x", "Not Set"}, + {"p_dressinglbltool02x", "Not Set"}, + {"p_dressinglblutility01x", "Not Set"}, + {"p_dressinglbmammo01x", "Not Set"}, + {"p_dressinglbmart01x", "Not Set"}, + {"p_dressinglbmart02x", "Not Set"}, + {"p_dressinglbmcamp01x", "Not Set"}, + {"p_dressinglbmfish01x", "Not Set"}, + {"p_dressinglbmhay01x", "Not Set"}, + {"p_dressinglbmlice02x", "Not Set"}, + {"p_dressinglbmmed01x", "Not Set"}, + {"p_dressinglbmmed02x", "Not Set"}, + {"p_dressinglbmtool01x", "Not Set"}, + {"p_dressinglbmutility01x", "Not Set"}, + {"p_dressinglbmvanity01x", "Not Set"}, + {"p_dressinglbmvanity02x", "Not Set"}, + {"p_dressinglbmweathered01x", "Not Set"}, + {"p_dressinglbmweathered02x", "Not Set"}, + {"p_dressinglbmweeds01x", "Not Set"}, + {"p_dressinglbsammo01x", "Not Set"}, + {"p_dressinglbscamp01x", "Not Set"}, + {"p_dressinglbsfish01x", "Not Set"}, + {"p_dressinglbshay01x", "Not Set"}, + {"p_dressinglbsmed01x", "Not Set"}, + {"p_dressinglbstool01x", "Not Set"}, + {"p_dressinglbsutility01x", "Not Set"}, + {"p_dressinglbsvanity01x", "Not Set"}, + {"p_dressinglbsvanity02x", "Not Set"}, + {"p_dressinglclfood02x", "Not Set"}, + {"p_dressinglclhay01x", "Not Set"}, + {"p_dressinglclhorse01x", "Not Set"}, + {"p_dressinglclhunt02x", "Not Set"}, + {"p_dressinglcllinen01x", "Not Set"}, + {"p_dressinglcltool01x", "Not Set"}, + {"p_dressinglclutility01x", "Not Set"}, + {"p_dressinglcmbutcher01x", "Not Set"}, + {"p_dressinglcmbutcher02x", "Not Set"}, + {"p_dressinglcmcoal01x", "Not Set"}, + {"p_dressinglcmdairy01x", "Not Set"}, + {"p_dressinglcmfarm01x", "Not Set"}, + {"p_dressinglcmfish01x", "Not Set"}, + {"p_dressinglcmfood02x", "Not Set"}, + {"p_dressinglcmhay01x", "Not Set"}, + {"p_dressinglcmhorse01x", "Not Set"}, + {"p_dressinglcmhunt02x", "Not Set"}, + {"p_dressinglcmice02x", "Not Set"}, + {"p_dressinglcmlinen01x", "Not Set"}, + {"p_dressinglcmpackage01x", "Not Set"}, + {"p_dressinglcmproduce01x", "Not Set"}, + {"p_dressinglcmtool01x", "Not Set"}, + {"p_dressinglcmtool02x", "Not Set"}, + {"p_dressinglcmutility01x", "Not Set"}, + {"p_dressinglcmweathered01x", "Not Set"}, + {"p_dressinglcmweathered02x", "Not Set"}, + {"p_dressinglcmweeds01x", "Not Set"}, + {"p_hangracklrg01x", "Not Set"}, + {"p_hangrackmed01x", "Not Set"}, + {"p_hangrackmix01x", "Not Set"}, + {"p_hangracksml01x", "Not Set"}, + {"p_hathang01x", "Not Set"}, + {"p_lar_sng_drawer_01x", "Not Set"}, + {"p_lar_sng_drawer_02x", "Not Set"}, + {"p_lar_sng_drawer_03x", "Not Set"}, + {"p_lar_sng_drawer_04x", "Not Set"}, + {"p_lockbox_lrg", "Not Set"}, + {"p_lockbox_med", "Not Set"}, + {"p_lockbox_sml", "Not Set"}, + {"p_rho_int_drwdressing01x", "Not Set"}, + {"p_rho_int_drwdressing02x", "Not Set"}, + {"p_rho_int_drwdressing03x", "Not Set"}, + {"p_ser_int_closdressing01x", "Not Set"}, + {"p_six_cabin_sng_drawer_01x", "Not Set"}, + {"p_six_cabin_sng_drawer_02x", "Not Set"}, + {"p_six_int_drwdressing01x", "Not Set"}, + {"p_val_hotel_dbl_drawer_01x", "Not Set"}, + {"p_val_hotel_sng_drawer_01x", "Not Set"}, + {"p_val_int_drwdressing01x", "Not Set"}, + {"p_val_int_drwdressing02x", "Not Set"}, + {"p_valsal2_sng_drawer_01x", "Not Set"}, + {"p_val_sal_chestdressing01x", "Not Set"}, + {"p_val_sal_chestdressing02x", "Not Set"}, + {"p_van_man_chestdressing01x", "Not Set"}, + {"p_wnt4_drwdbl01x", "Not Set"}, + {"p_wnt4_drwdressing01x", "Not Set"}, + {"t_dresser10_groupa", "Not Set"}, + {"t_dresser10_multi", "Not Set"}, + {"p_bookset03x", "Not Set"}, + {"p_bookset04x", "Not Set"}, + {"p_bookset05x", "Not Set"}, + {"p_calculatorset01x", "Not Set"}, + {"p_calculatorset02x", "Not Set"}, + {"p_calculatorset03x", "Not Set"}, + {"p_clipboardset02x", "Not Set"}, + {"p_coinchangerset01x", "Not Set"}, + {"p_fireplacetoolset01x", "Not Set"}, + {"p_hatstandset01x", "Not Set"}, + {"p_inkpadset02x", "Not Set"}, + {"p_journalset01x", "Not Set"}, + {"p_journalset02x", "Not Set"}, + {"p_lanternset02x", "Not Set"}, + {"p_ledgerset01x", "Not Set"}, + {"p_letterboxset01x", "Not Set"}, + {"p_paperbinset01x", "Not Set"}, + {"p_paperset02x", "Not Set"}, + {"p_paperset03x", "Not Set"}, + {"p_paperset04x", "Not Set"}, + {"p_paperset05x", "Not Set"}, + {"p_penset01x", "Not Set"}, + {"p_phoneset01x", "Not Set"}, + {"p_servicebellset01x", "Not Set"}, + {"p_spittoonset01x", "Not Set"}, + {"p_stampset01x", "Not Set"}, + {"p_stampset02x", "Not Set"}, + {"p_typewriterset01x", "Not Set"}, + {"p_valuablesset01x", "Not Set"}, + {"p_valuablesset02x", "Not Set"}, + {"p_wastebasket02x", "Not Set"}, + {"p_bookgroup01x", "Not Set"}, + {"p_bookgroup02x", "Not Set"}, + {"p_bramanbooks01x", "Not Set"}, + {"p_bramanbooks02x", "Not Set"}, + {"p_bramanbooks03x", "Not Set"}, + {"p_bramanbooks04x", "Not Set"}, + {"p_bramanbooks05x", "Not Set"}, + {"p_bramanprops01x", "Not Set"}, + {"p_bramanprops02x", "Not Set"}, + {"p_bramanprops03x", "Not Set"}, + {"p_bramanprops04x", "Not Set"}, + {"p_bramanprops05x", "Not Set"}, + {"p_bramanprops06x", "Not Set"}, + {"p_bramanprops07x", "Not Set"}, + {"p_bramanprops08x", "Not Set"}, + {"p_bramanprops09x", "Not Set"}, + {"p_bramanprops10x", "Not Set"}, + {"p_bramanprops11x", "Not Set"}, + {"p_bramanprops12x", "Not Set"}, + {"p_bramanprops13x", "Not Set"}, + {"p_bramanprops14x", "Not Set"}, + {"p_bramanprops15x", "Not Set"}, + {"p_brontemanbooks01x", "Not Set"}, + {"p_brontemanbooks02ax", "Not Set"}, + {"p_brontemanbooks02x", "Not Set"}, + {"p_brontemanbooks03x", "Not Set"}, + {"p_brontemanbooks04x", "Not Set"}, + {"p_champbucketstand01x", "Not Set"}, + {"p_clockgroup01x", "Not Set"}, + {"p_dressergroup01x", "Not Set"}, + {"p_glassgroup01x", "Not Set"}, + {"p_group_baowl01x_sd", "Not Set"}, + {"p_group_barrel01x_sd", "Not Set"}, + {"p_group_beermug01x_sd", "Not Set"}, + {"p_group_book01x_sd", "Not Set"}, + {"p_group_bottlewine01x_sd", "Not Set"}, + {"p_group_bottlewine02x_sd", "Not Set"}, + {"p_group_bottlewine03x_sd", "Not Set"}, + {"p_group_bottlewine04x_sd", "Not Set"}, + {"p_group_bottlewine05x_sd", "Not Set"}, + {"p_group_copperpan01x_sd", "Not Set"}, + {"p_group_copperpan02x_sd", "Not Set"}, + {"p_group_copperpan03x_sd", "Not Set"}, + {"p_group_copperpan04x_sd", "Not Set"}, + {"p_group_copperpan05x_sd", "Not Set"}, + {"p_group_cup01_sd", "Not Set"}, + {"p_group_dishes01x_sd", "Not Set"}, + {"p_group_glass01x_sd", "Not Set"}, + {"p_group_gravybow01x_sd", "Not Set"}, + {"p_group_inkwell01x_sd", "Not Set"}, + {"p_group_man01x_longtable", "Not Set"}, + {"p_group_man01x_longt_drink2", "Not Set"}, + {"p_group_man01x_longt_f2", "Not Set"}, + {"p_group_man01x_smltable", "Not Set"}, + {"p_group_man01x_tableround", "Not Set"}, + {"p_group_man1x_long_t_f1", "Not Set"}, + {"p_group_piestand01x_sd", "Not Set"}, + {"p_group_plate01x_sd", "Not Set"}, + {"p_group_plate02x_sd", "Not Set"}, + {"p_group_plate03x_sd", "Not Set"}, + {"p_group_plate04x_sd", "Not Set"}, + {"p_group_plate05x_sd", "Not Set"}, + {"p_group_plate06x_sd", "Not Set"}, + {"p_group_plate07x_sd", "Not Set"}, + {"p_group_plate08x_sd", "Not Set"}, + {"p_group_plate09x_sd", "Not Set"}, + {"p_group_plate10x_sd", "Not Set"}, + {"p_group_plate11x_sd", "Not Set"}, + {"p_group_teacup01x_sd", "Not Set"}, + {"p_lampgroup01x", "Not Set"}, + {"p_lampgroup02x", "Not Set"}, + {"p_mansionprops01x", "Not Set"}, + {"p_mansionprops02x", "Not Set"}, + {"p_mansionprops03x", "Not Set"}, + {"p_mansionprops04x", "Not Set"}, + {"p_mansionprops05x", "Not Set"}, + {"p_mansionprops06x", "Not Set"}, + {"p_mansionprops07x", "Not Set"}, + {"p_mansionprops08x", "Not Set"}, + {"p_mansionprops09x", "Not Set"}, + {"p_mansionprops10x", "Not Set"}, + {"p_mansionprops11x", "Not Set"}, + {"p_mansionprops12x", "Not Set"}, + {"p_mansionprops13x", "Not Set"}, + {"p_mansionprops14x", "Not Set"}, + {"p_mansionprops15x", "Not Set"}, + {"p_mansionprops16x", "Not Set"}, + {"p_mansionprops17x", "Not Set"}, + {"p_mansionprops18x", "Not Set"}, + {"p_mansionprops19x", "Not Set"}, + {"p_mansionprops20x", "Not Set"}, + {"p_mansionprops21x", "Not Set"}, + {"p_mansionprops22x", "Not Set"}, + {"p_mansionprops23x", "Not Set"}, + {"p_mansionprops24x", "Not Set"}, + {"p_mansionprops25x", "Not Set"}, + {"p_pillowgroup01x", "Not Set"}, + {"p_raggroup01x", "Not Set"}, + {"p_standgroup01x", "Not Set"}, + {"p_asign_blasal01", "Not Set"}, + {"p_asign_rhosal01", "Not Set"}, + {"p_asign_sdnsal01", "Not Set"}, + {"p_bal_beermug01x", "Not Set"}, + {"p_bal_whiskeycrate01", "Not Set"}, + {"p_basin_dirty_01x", "Not Set"}, + {"p_grp_barrel01x_sal_sd", "Not Set"}, + {"p_grp_book01x_sal_sd", "Not Set"}, + {"p_grp_bot01x_sal_sd", "Not Set"}, + {"p_grp_bottle03x_sal_sd", "Not Set"}, + {"p_grp_bottle04x_sal_sd", "Not Set"}, + {"p_grp_bottle05x_sal_sd", "Not Set"}, + {"p_grp_bottle06x_sal_sd", "Not Set"}, + {"p_grp_bottle07x_sal_sd", "Not Set"}, + {"p_grp_bottle08x_sal_sd", "Not Set"}, + {"p_grp_cellar01x_sal_sd", "Not Set"}, + {"p_grp_chdressing_sal_sd", "Not Set"}, + {"p_grp_drwdre01x_sal_sd", "Not Set"}, + {"p_grp_glass02x_sal_sd", "Not Set"}, + {"p_grp_glass_sal_sd", "Not Set"}, + {"p_grp_jug01x_sal_sd", "Not Set"}, + {"p_grp_jug02x_sal_sd", "Not Set"}, + {"p_grp_lset01x_sal_sd", "Not Set"}, + {"p_grp_lset02x_sal_sd", "Not Set"}, + {"p_grp_lset03x_sal_sd", "Not Set"}, + {"p_grp_new_sal02_props01x", "Not Set"}, + {"p_grp_new_sal02_props02x", "Not Set"}, + {"p_grp_new_sal02_props03x", "Not Set"}, + {"p_grp_new_sal02_props04x", "Not Set"}, + {"p_grp_new_sal02_props05x", "Not Set"}, + {"p_grp_new_sal02_props06x", "Not Set"}, + {"p_grp_new_sal02_props07x", "Not Set"}, + {"p_grp_new_sal02_props08x", "Not Set"}, + {"p_grp_new_sal02_props09x", "Not Set"}, + {"p_grp_new_sal02_props10x", "Not Set"}, + {"p_grp_new_sal02_props11x", "Not Set"}, + {"p_grp_new_sal02_props12x", "Not Set"}, + {"p_grp_new_sal02_props13x", "Not Set"}, + {"p_grp_new_sal02_props14x", "Not Set"}, + {"p_grp_new_sal02_props15x", "Not Set"}, + {"p_grp_new_sal02_props16x", "Not Set"}, + {"p_grp_new_sal02_props17x", "Not Set"}, + {"p_grp_new_sal02_props18x", "Not Set"}, + {"p_grp_new_sal02_props19x", "Not Set"}, + {"p_grp_new_sal02_props20x", "Not Set"}, + {"p_grp_shset01x_sal_sd", "Not Set"}, + {"p_grp_urn01x_sal_sd", "Not Set"}, + {"p_grp_wbasin01x_sal_sd", "Not Set"}, + {"p_grp_whglass01x_sal_sd", "Not Set"}, + {"p_plates_dishes_01x", "Not Set"}, + {"p_sal_botset01x", "Not Set"}, + {"p_sal_botset03x", "Not Set"}, + {"p_sal_botset04x", "Not Set"}, + {"p_sal_botset05x", "Not Set"}, + {"p_sal_crateset01x", "Not Set"}, + {"p_sal_glasset01x", "Not Set"}, + {"p_sal_glasset02x", "Not Set"}, + {"p_sal_glasset03x", "Not Set"}, + {"p_sal_glasset04x", "Not Set"}, + {"p_sal_jugset01x", "Not Set"}, + {"p_sal_mugset01x", "Not Set"}, + {"p_sal_mugset02x", "Not Set"}, + {"p_sal_shelfset01x", "Not Set"}, + {"p_sal_shelfset03x", "Not Set"}, + {"p_sal_shelfset04x", "Not Set"}, + {"p_shelfset02x", "Not Set"}, + {"p_static_new_sal02_props01x", "Not Set"}, + {"p_static_new_sal02_props02x", "Not Set"}, + {"s_bla_menuclipboard01", "Not Set"}, + {"s_rho_menuclipboard", "Not Set"}, + {"s_sdn_menuclipboard01", "Not Set"}, + {"s_tum_menuclipboard01", "Not Set"}, + {"s_van_menuclipboard01", "Not Set"}, + {"p_artgallerygrp01", "Not Set"}, + {"p_artgallerygrp02", "Not Set"}, + {"p_bankdeskgroup01x", "Not Set"}, + {"p_bankdeskgroup02x", "Not Set"}, + {"p_barrelhalfgroup01x", "Not Set"}, + {"p_bellgroup01x", "Not Set"}, + {"p_booksgroup01x", "Not Set"}, + {"p_booksgroup02x", "Not Set"}, + {"p_boxgroup01x", "Not Set"}, + {"p_boxgroup02x", "Not Set"}, + {"p_boxgroup03x", "Not Set"}, + {"p_clothgroup01x", "Not Set"}, + {"p_depositboxgroup01x", "Not Set"}, + {"p_depositboxgroup02x", "Not Set"}, + {"p_group_gamble_books01x", "Not Set"}, + {"p_group_gamble_books02x", "Not Set"}, + {"p_group_gamble_books03x", "Not Set"}, + {"p_group_gamble_bottlebeer01x", "Not Set"}, + {"p_group_gamble_bottlecrate01x", "Not Set"}, + {"p_group_gamble_bottlewine01x", "Not Set"}, + {"p_group_gamble_bottlewine02x", "Not Set"}, + {"p_group_gamble_bottlewine03x", "Not Set"}, + {"p_group_gamble_drwdressing01x", "Not Set"}, + {"p_group_gamble_glass01x", "Not Set"}, + {"p_group_gamble_jar01x", "Not Set"}, + {"p_group_gamble_jar02x", "Not Set"}, + {"p_group_gamble_jarcoffee01x", "Not Set"}, + {"p_group_gamble_jug01x", "Not Set"}, + {"p_group_gamble_jugwicker01x", "Not Set"}, + {"p_group_gamble_package01x", "Not Set"}, + {"p_group_gamble_plate01x", "Not Set"}, + {"p_group_gamble_plate02x", "Not Set"}, + {"p_group_gamble_tobacotin01x", "Not Set"}, + {"p_group_tobaccodried", "Not Set"}, + {"p_grp_a_tstation_board01x", "Not Set"}, + {"p_grp_a_tstation_books01x", "Not Set"}, + {"p_grp_a_tstation_crate01x", "Not Set"}, + {"p_grp_a_tstation_crate02x", "Not Set"}, + {"p_grp_a_tstation_crate03x", "Not Set"}, + {"p_grp_a_tstation_crate04x", "Not Set"}, + {"p_grp_a_tstation_crate05x", "Not Set"}, + {"p_grp_a_tstation_crate06x", "Not Set"}, + {"p_grp_a_tstation_crate07x", "Not Set"}, + {"p_grp_a_tstation_letters01x", "Not Set"}, + {"p_grp_a_tstation_package01x", "Not Set"}, + {"p_grp_a_tstation_package02x", "Not Set"}, + {"p_grp_a_tstation_package03x", "Not Set"}, + {"p_grp_a_tstation_package04x", "Not Set"}, + {"p_grp_a_tstation_package05x", "Not Set"}, + {"p_grp_a_tstation_package06x", "Not Set"}, + {"p_grp_a_tstation_package07x", "Not Set"}, + {"p_grp_a_tstation_package08x", "Not Set"}, + {"p_grp_boot01x_car_sd", "Not Set"}, + {"p_grp_botphotosd_01x", "Not Set"}, + {"p_grp_botphotosd_02x", "Not Set"}, + {"p_grp_botphotosd_03x", "Not Set"}, + {"p_grp_box01x_car_sd", "Not Set"}, + {"p_grp_box02x_car_sd", "Not Set"}, + {"p_grp_box03x_car_sd", "Not Set"}, + {"p_grp_box04x_car_sd", "Not Set"}, + {"p_grp_box05x_car_sd", "Not Set"}, + {"p_grp_box06x_car_sd", "Not Set"}, + {"p_grp_feedbag01x_car_sd", "Not Set"}, + {"p_grp_harness01xcar_bla", "Not Set"}, + {"p_grp_harness01x_car_sd", "Not Set"}, + {"p_grp_harness02xcar_bla", "Not Set"}, + {"p_grp_harness02x_car_sd", "Not Set"}, + {"p_grp_harness03xcar_bla", "Not Set"}, + {"p_grp_harness03x_car_sd", "Not Set"}, + {"p_grp_harness04xcar_bla", "Not Set"}, + {"p_grp_harness04x_car_sd", "Not Set"}, + {"p_grp_harness05xcar_bla", "Not Set"}, + {"p_grp_harness05x_car_sd", "Not Set"}, + {"p_grp_harness06x_car_sd", "Not Set"}, + {"p_grp_harness07x_car_sd", "Not Set"}, + {"p_grp_harness08x_car_sd", "Not Set"}, + {"p_grp_lathetool01x_car_sd", "Not Set"}, + {"p_grp_lathetool02x_car_sd", "Not Set"}, + {"p_grp_sdlstand01x_car_sd", "Not Set"}, + {"p_hatgroup01x", "Not Set"}, + {"p_hatgroup02x", "Not Set"}, + {"p_horse_cratestack01x", "Not Set"}, + {"p_inkwellgroup01x", "Not Set"}, + {"p_papergroup01x", "Not Set"}, + {"p_papergroup02x", "Not Set"}, + {"p_papergroup03x", "Not Set"}, + {"p_papergroup04x", "Not Set"}, + {"p_papergroup05x", "Not Set"}, + {"p_papergroup06x", "Not Set"}, + {"p_papergroup07x", "Not Set"}, + {"p_papergroup08x", "Not Set"}, + {"p_sewingkitgroup01x", "Not Set"}, + {"p_shadyprops01x", "Not Set"}, + {"p_shadyprops02x", "Not Set"}, + {"p_shadyprops03x", "Not Set"}, + {"p_shadyprops04x", "Not Set"}, + {"p_shadyprops05x", "Not Set"}, + {"p_shadyprops06x", "Not Set"}, + {"p_shadyprops07x", "Not Set"}, + {"p_shadyprops08x", "Not Set"}, + {"p_shadyprops09x", "Not Set"}, + {"p_shadyprops10x", "Not Set"}, + {"p_shadyprops11x", "Not Set"}, + {"p_shadyprops12x", "Not Set"}, + {"p_static_gamble_crate01x", "Not Set"}, + {"p_stdenbankprops01x", "Not Set"}, + {"p_stdenbankprops02x", "Not Set"}, + {"p_stdenbankprops03x", "Not Set"}, + {"p_stdenbankprops04x", "Not Set"}, + {"p_stdenbankprops05x", "Not Set"}, + {"p_stdenbankprops06x", "Not Set"}, + {"p_stdenbankprops07x", "Not Set"}, + {"p_tailorgroup01", "Not Set"}, + {"p_tailorgroup02", "Not Set"}, + {"p_tailorgroup03", "Not Set"}, + {"p_tailorgroup04", "Not Set"}, + {"p_tailorgroup05", "Not Set"}, + {"p_tailorgroup06", "Not Set"}, + {"p_tailorgroup07", "Not Set"}, + {"int_vehicle_deleteme", "Not Set"}, + {"l_door02x", "Not Set"}, + {"mp001_mp_photo_alfredomontez_01x", "Not Set"}, + {"mp001_mp_photo_jacksonjames_01x", "Not Set"}, + {"mp001_mp_photo_shaky_01x", "Not Set"}, + {"mp001_p_cs_dynamite01x", "Not Set"}, + {"mp001_p_gunvoutd3_hat01x", "Not Set"}, + {"mp001_p_jumphurdles01x", "Not Set"}, + {"mp001_p_mp_belt_mr1_018", "Not Set"}, + {"mp001_p_mp_finishline_bonfire01x", "Not Set"}, + {"mp001_p_mp_finishline_bonfire02x", "Not Set"}, + {"mp001_p_mp_finishlinefire01x", "Not Set"}, + {"mp001_p_mp_fishbag01x", "Not Set"}, + {"mp001_p_mp_fishbagblood02x", "Not Set"}, + {"mp001_p_mp_fishingline01x", "Not Set"}, + {"mp001_p_mp_kettle03_fire01x", "Not Set"}, + {"mp001_p_mp_pickup_barrel_gun01a", "Not Set"}, + {"mp001_p_mp_pickup_barrel_gun02a", "Not Set"}, + {"mp001_p_mp_pickup_barrel_logo10x", "Not Set"}, + {"mp001_p_mp_pickup_barrel_logo11x", "Not Set"}, + {"mp001_p_mp_pickup_barrel_logo12x", "Not Set"}, + {"mp001_p_mp_pickup_barrel_logo13x", "Not Set"}, + {"mp001_p_mp_pickup_barrel_logo14x", "Not Set"}, + {"mp001_p_mp_pickup_barrel_logo15x", "Not Set"}, + {"mp001_p_mp_pickup_barrel_logo16x", "Not Set"}, + {"mp001_p_mp_pickup_barrel_logo17x", "Not Set"}, + {"mp001_p_mp_pickup_barrel_logo18x", "Not Set"}, + {"mp001_p_mp_pickup_barrel_logo19x", "Not Set"}, + {"mp001_p_mp_pickup_barrel_logo1x", "Not Set"}, + {"mp001_p_mp_pickup_barrel_logo20x", "Not Set"}, + {"mp001_p_mp_pickup_barrel_logo2x", "Not Set"}, + {"mp001_p_mp_pickup_barrel_logo3x", "Not Set"}, + {"mp001_p_mp_pickup_barrel_logo4x", "Not Set"}, + {"mp001_p_mp_pickup_barrel_logo5x", "Not Set"}, + {"mp001_p_mp_pickup_barrel_logo6x", "Not Set"}, + {"mp001_p_mp_pickup_barrel_logo7x", "Not Set"}, + {"mp001_p_mp_pickup_barrel_logo8x", "Not Set"}, + {"mp001_p_mp_pickup_barrel_logo9x", "Not Set"}, + {"mp001_p_mp_still01x", "Not Set"}, + {"mp001_p_mp_still02x", "Not Set"}, + {"mp001_p_mp_still03x", "Not Set"}, + {"mp001_p_mp_still04x", "Not Set"}, + {"mp001_prop_mp_cant_place_lrg", "Not Set"}, + {"mp001_prop_mp_cant_place_med", "Not Set"}, + {"mp001_prop_mp_cant_place_sm", "Not Set"}, + {"mp001_prop_mp_max_out_lrg", "Not Set"}, + {"mp001_prop_mp_max_out_med", "Not Set"}, + {"mp001_prop_mp_max_out_sm", "Not Set"}, + {"mp001_prop_mp_placement", "Not Set"}, + {"mp001_prop_mp_placement_lrg", "Not Set"}, + {"mp001_prop_mp_placement_maxd", "Not Set"}, + {"mp001_prop_mp_placement_med", "Not Set"}, + {"mp001_prop_mp_placement_red", "Not Set"}, + {"mp001_prop_mp_placement_sm", "Not Set"}, + {"mp001_s_cairnmp01x", "Not Set"}, + {"mp001_s_campfire01x_mp", "Not Set"}, + {"mp001_s_fasttravelmarker01x", "Not Set"}, + {"mp001_s_healthpack01x", "Not Set"}, + {"mp001_s_moonshinesack01x", "Not Set"}, + {"mp001_s_moonshinesack02x", "Not Set"}, + {"mp001_s_moonshinesupplies_m01", "Not Set"}, + {"mp001_s_moonshinesupplies_m02", "Not Set"}, + {"mp001_s_moonshinesupplies_s01", "Not Set"}, + {"mp001_s_moonshinesupplies_s02", "Not Set"}, + {"mp001_s_mp_campflagpole02x", "Not Set"}, + {"mp001_s_mp_catalogue01x_noanim", "Not Set"}, + {"mp001_s_mp_clothesfolded02x", "Not Set"}, + {"mp001_s_mp_clothingcorona01x", "Not Set"}, + {"mp001_s_mprockcircle01x", "Not Set"}, + {"mp001_s_mprockcircle_10m", "Not Set"}, + {"mp001_s_mprockcircle_15m", "Not Set"}, + {"mp001_s_mprockline01x", "Not Set"}, + {"mp001_s_mprockline_18m", "Not Set"}, + {"mp001_s_mprockline_4m", "Not Set"}, + {"mp001_s_mprockline_9m", "Not Set"}, + {"mp001_s_mp_stone_marker01a", "Not Set"}, + {"mp001_s_mp_stone_marker02a", "Not Set"}, + {"mp001_s_mp_stone_marker03a", "Not Set"}, + {"mp001_s_mp_stone_marker04a", "Not Set"}, + {"mp001_s_mp_tin_soap01x", "Not Set"}, + {"mp001_s_pulleysack02x", "Not Set"}, + {"mp001_s_racecheckpoint01x", "Not Set"}, + {"mp001_s_racefinish01x", "Not Set"}, + {"mp001_s_splitfirelog01x", "Not Set"}, + {"mp001_s_splitfirelog01x_nofire", "Not Set"}, + {"mp001_s_splitfirelog02x", "Not Set"}, + {"mp001_s_splitfirelog02x_nofire", "Not Set"}, + {"mp001_s_traphingewire01x", "Not Set"}, + {"mp001_s_weaponblocker5x5x5", "Not Set"}, + {"mp001_s_whittlingwolf01a", "Not Set"}, + {"mp001_s_whittlingwolf01b", "Not Set"}, + {"mp001_s_whittlingwolf01c", "Not Set"}, + {"mp001_s_whittlingwolf01d", "Not Set"}, + {"mp001_s_whittlingwolf01e", "Not Set"}, + {"mp001_s_whittlingwolf02a", "Not Set"}, + {"mp001_s_whittlingwolf02b", "Not Set"}, + {"mp001_s_whittlingwolf02c", "Not Set"}, + {"mp001_s_whittlingwolf02d", "Not Set"}, + {"mp001_s_whittlingwolf02e", "Not Set"}, + {"mp001_p_cs_photo_amos", "Not Set"}, + {"mp001_p_cs_photo_grace", "Not Set"}, + {"mp001_p_cs_photo_jeremiah", "Not Set"}, + {"mp001_p_cs_photo_teddy", "Not Set"}, + {"mp001_p_cs_teddyhelmet01x", "Not Set"}, + {"mp001_s_horsearmourbox_left", "Not Set"}, + {"mp001_collision_explorergear_left", "Not Set"}, + {"mp001_collision_explorergear_right", "Not Set"}, + {"mp004_p_veh_gunforhire01x", "Not Set"}, + {"mp004_p_veh_gunforhire02x", "Not Set"}, + {"mp004_p_veh_gunforhire03x", "Not Set"}, + {"mp004_p_cs_alleyblock_fallen", "Not Set"}, + {"mp004_p_cs_jessicapurse01x", "Not Set"}, + {"mp004_p_cs_jessicapurse02x", "Not Set"}, + {"mp004_p_goatball_02a", "Not Set"}, + {"mp004_p_mp_gallows_rope01x", "Not Set"}, + {"mp004_p_mptenttanner01x", "Not Set"}, + {"mp004_p_rockpilegoal01x", "Not Set"}, + {"mp004_p_rockpile_marker01x", "Not Set"}, + {"mp004_p_torchposttall01x", "Not Set"}, + {"mp004_s_mp_coffin01x", "Not Set"}, + {"mp004_s_mp_coffindecor01x", "Not Set"}, + {"mp004_s_mp_securityfolded01x", "Not Set"}, + {"mp004_s_weaponblocker5x5x5", "Not Set"}, + {"mp004_s_ammo_lemat_pistol", "Not Set"}, + {"mp004_s_ammo_lemat_shotgun", "Not Set"}, + {"mp005_p_mp_cover_hl_ado", "Not Set"}, + {"mp005_p_mp_cover_s_ado", "Not Set"}, + {"mp005_p_mp_cover_ss_ado", "Not Set"}, + {"mp005_p_mp_covercomb_hm_bw", "Not Set"}, + {"mp005_p_mp_covercomb_l_bw", "Not Set"}, + {"mp005_p_mp_covercomb_lu_bw", "Not Set"}, + {"mp005_p_mp_covercomb_m_bw", "Not Set"}, + {"mp005_p_mp_covercomb_mu_bw", "Not Set"}, + {"mp005_p_mp_cover_h_bw", "Not Set"}, + {"mp005_p_mp_cover_hl_bw", "Not Set"}, + {"mp005_p_mp_cover_su_bw", "Not Set"}, + {"mp005_p_mp_covercomb_hm_ch", "Not Set"}, + {"mp005_p_mp_covercomb_l_ch", "Not Set"}, + {"mp005_p_mp_cover_h_ch", "Not Set"}, + {"mp005_p_mp_cover_hl_ch", "Not Set"}, + {"mp005_p_mp_cover_su_ch", "Not Set"}, + {"mp005_p_mp_covercomb_hm_col", "Not Set"}, + {"mp005_p_mp_cover_s_cr", "Not Set"}, + {"mp005_p_mp_covercomb_hm_cwb", "Not Set"}, + {"mp005_p_mp_covercomb_l_cwb", "Not Set"}, + {"mp005_p_mp_covercomb_mu_cwb", "Not Set"}, + {"mp005_p_mp_cover_hl_cwb", "Not Set"}, + {"mp005_p_mp_cover_s_cwb", "Not Set"}, + {"mp005_p_mp_cover_sm_cwb", "Not Set"}, + {"mp005_p_fortmercerbarricade01x", "Not Set"}, + {"mp005_p_mp_covercomb_hl_hdr", "Not Set"}, + {"mp005_p_mp_covercomb_hm_hdr", "Not Set"}, + {"mp005_p_mp_covercomb_l_hdr", "Not Set"}, + {"mp005_p_mp_covercomb_lu_hdr", "Not Set"}, + {"mp005_p_mp_covercomb_mu_hdr", "Not Set"}, + {"mp005_p_mp_cover_h_hdr", "Not Set"}, + {"mp005_p_mp_cover_s_hdr", "Not Set"}, + {"mp005_p_mp_covercomb_lu_lag", "Not Set"}, + {"mp005_p_mp_covercomb_m_lag", "Not Set"}, + {"mp005_p_mp_cover_h_lag", "Not Set"}, + {"mp005_p_mp_cover_hl_lag", "Not Set"}, + {"mp005_p_mp_cover_sh_lag", "Not Set"}, + {"mp005_p_mp_cover_s_lag", "Not Set"}, + {"mp005_p_mp_cover_ss_lag", "Not Set"}, + {"mp005_p_mp_covercomb_hm_lak", "Not Set"}, + {"mp005_p_mp_covercomb_l_lak", "Not Set"}, + {"mp005_p_mp_covercomb_mu_lak", "Not Set"}, + {"mp005_p_mp_cover_hl_lak", "Not Set"}, + {"mp005_p_mp_cover_sm_lak", "Not Set"}, + {"mp005_p_mp_covercomb_hm_mt", "Not Set"}, + {"mp005_p_mp_covercomb_lu_mt", "Not Set"}, + {"mp005_p_mp_covercomb_mu_mt", "Not Set"}, + {"mp005_p_mp_cover_s_mt", "Not Set"}, + {"mp005_p_mp_covercomb_l_sb", "Not Set"}, + {"mp005_p_mp_covercomb_lu_sb", "Not Set"}, + {"mp005_p_mp_covercomb_mu_sb", "Not Set"}, + {"mp005_p_mp_cover_h_sb", "Not Set"}, + {"mp005_p_mp_cover_sh_sb", "Not Set"}, + {"mp005_p_mp_cover_sl_sb", "Not Set"}, + {"mp005_p_mp_covercomb_l_sd", "Not Set"}, + {"mp005_p_mp_covercomb_lu_sd", "Not Set"}, + {"mp005_p_mp_cover_hl_sd", "Not Set"}, + {"mp005_p_mp_cover_sl_sd", "Not Set"}, + {"mp005_p_mp_cover_s_sd", "Not Set"}, + {"mp005_p_mp_cover_su_sd", "Not Set"}, + {"mp005_p_mp_covercomb_hm_spc", "Not Set"}, + {"mp005_p_mp_covercomb_l_spc", "Not Set"}, + {"mp005_p_mp_cover_h_spc", "Not Set"}, + {"mp005_p_mp_cover_s_spc", "Not Set"}, + {"mp005_p_mp_covercomb_hm_tt", "Not Set"}, + {"mp005_p_mp_covercomb_lu_tt", "Not Set"}, + {"mp005_p_mp_cover_sm_tt", "Not Set"}, + {"mp005_p_mp_cover_ss_tt", "Not Set"}, + {"mp005_p_mp_cover_su_tt", "Not Set"}, + {"mp005_p_collector_cigholder01x", "Not Set"}, + {"mp005_p_cs_bandana01x", "Not Set"}, + {"mp005_p_cs_bandana02x", "Not Set"}, + {"mp005_p_cs_collectors01x", "Not Set"}, + {"mp005_p_cs_rollupcig01x_mp", "Not Set"}, + {"mp005_p_cs_sackcorn01x", "Not Set"}, + {"mp005_p_mp_bondsfolder01x", "Not Set"}, + {"mp005_p_mp_bottlebrandy01x", "Not Set"}, + {"mp005_p_mp_map_firetower01x", "Not Set"}, + {"mp005_p_mp_rock_stash01", "Not Set"}, + {"mp005_p_mp_trader_gen_bag01x", "Not Set"}, + {"mp005_p_mp_trader_gen_bag02x", "Not Set"}, + {"mp005_s_mp_lassoknot01x", "Not Set"}, + {"mp005_s_mp_lassoloop01x", "Not Set"}, + {"mp005_s_mp_lassorope01x", "Not Set"}, + {"mp005_s_mp_moonshinesack02x", "Not Set"}, + {"mp005_s_mp_tradegoods01x_dam", "Not Set"}, + {"mp005_s_mp_tradegoods01x_norig", "Not Set"}, + {"mp005_s_mp_tradegoodswrapped01x", "Not Set"}, + {"mp005_mp_cratetrader01x", "Not Set"}, + {"mp005_mp_nondes_cratetrader01x", "Not Set"}, + {"mp005_p_bla_photo01x_bla", "Not Set"}, + {"mp005_p_bla_photo01x_std", "Not Set"}, + {"mp005_p_car_int_chestdressing02x_1", "Not Set"}, + {"mp005_p_collectorshovel01", "Not Set"}, + {"mp005_p_collectorwagon01", "Not Set"}, + {"mp005_p_collectorwagon01b", "Not Set"}, + {"mp005_p_collectorwagon01_draw", "Not Set"}, + {"mp005_p_collectorwagon01_draw2", "Not Set"}, + {"mp005_p_dressinglbmhay01x", "Not Set"}, + {"mp005_p_dressinglbmhay02x", "Not Set"}, + {"mp005_p_dressinglbmhay03x", "Not Set"}, + {"mp005_p_dressinglbmhay04x", "Not Set"}, + {"mp005_p_horselantern01", "Not Set"}, + {"mp005_p_huntingwagontarp01", "Not Set"}, + {"mp005_p_mp_banjo01x", "Not Set"}, + {"mp005_p_mp_bountyboard01x", "Not Set"}, + {"mp005_p_mp_bountyboard02x", "Not Set"}, + {"mp005_p_mp_bountylicense01x", "Not Set"}, + {"mp005_p_mp_collectorbox01x", "Not Set"}, + {"mp005_p_mp_collectorsign01x", "Not Set"}, + {"mp005_p_mp_collectorsign02x", "Not Set"}, + {"mp005_p_mpcover_gunslinger03", "Not Set"}, + {"mp005_p_mpcover_gunslinger05", "Not Set"}, + {"mp005_p_mp_crystalball01x", "Not Set"}, + {"mp005_p_mp_crystalball01x_stand", "Not Set"}, + {"mp005_p_mp_hideframe02x", "Not Set"}, + {"mp005_p_mp_lettertradecripps01x", "Not Set"}, + {"mp005_p_mp_map03x_foldhalf", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP01X", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP01X_BH", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP01X_BOR", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP01X_CAN", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP01X_COL", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP01X_CON", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP01X_D", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP01X_INT", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP01X_LR", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP01X_NF", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP01X_PBM", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP01X_PLN", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP01X_SPT", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP01X_TR", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP01X_VLC", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP01X_WS", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP02X", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP02X_BH", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP02X_BOR", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP02X_CAN", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP02X_COL", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP02X_CON", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP02X_D", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP02X_INT", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP02X_LR", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP02X_NF", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP02X_PBM", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP02X_PLN", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP02X_SPT", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP02X_TR", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP02X_VLC", "Not Set"}, + {"MP005_P_MP_PHOTOBACKDROP02X_WS", "Not Set"}, + {"mp005_p_mp_photobackdropbox01x", "Not Set"}, + {"mp005_p_mp_predhunt_post01x", "Not Set"}, + {"mp005_p_mp_predhunt_skull01x", "Not Set"}, + {"mp005_p_mp_predhunt_skull02x", "Not Set"}, + {"mp005_p_mp_predhunt_skull03x", "Not Set"}, + {"mp005_p_mp_predhunt_skull04x", "Not Set"}, + {"mp005_p_mp_predhunt_skull05x", "Not Set"}, + {"mp005_p_mp_predhunt_skull06x", "Not Set"}, + {"mp005_p_mp_predhunt_skull07x", "Not Set"}, + {"mp005_p_mp_predhunt_skull08x", "Not Set"}, + {"mp005_p_mp_predhunt_skull09x", "Not Set"}, + {"mp005_p_mp_shadybirdcage01x", "Not Set"}, + {"mp005_p_mp_stirStick01x", "Not Set"}, + {"mp005_p_mp_tableplank04x", "Not Set"}, + {"mp005_p_wagonparked01x", "Not Set"}, + {"mp005_p_wildanimalcage01", "Not Set"}, + {"mp005_s_flag01x_ace", "Not Set"}, + {"mp005_s_flag01x_alligator", "Not Set"}, + {"mp005_s_flag01x_ambarino", "Not Set"}, + {"mp005_s_flag01x_anchour", "Not Set"}, + {"mp005_s_flag01x_baltz", "Not Set"}, + {"mp005_s_flag01x_bear", "Not Set"}, + {"mp005_s_flag01x_buck", "Not Set"}, + {"mp005_s_flag01x_clamjuice", "Not Set"}, + {"mp005_s_flag01x_coyote", "Not Set"}, + {"mp005_s_flag01x_eagle", "Not Set"}, + {"mp005_s_flag01x_festa", "Not Set"}, + {"mp005_s_flag01x_fish", "Not Set"}, + {"mp005_s_flag01x_gelatin", "Not Set"}, + {"mp005_s_flag01x_gilamonster", "Not Set"}, + {"mp005_s_flag01x_guarma", "Not Set"}, + {"mp005_s_flag01x_jollyjacks", "Not Set"}, + {"mp005_s_flag01x_lallycola", "Not Set"}, + {"mp005_s_flag01x_lemoyne", "Not Set"}, + {"mp005_s_flag01x_lucifers", "Not Set"}, + {"mp005_s_flag01x_morgan", "Not Set"}, + {"mp005_s_flag01x_newhanover", "Not Set"}, + {"mp005_s_flag01x_oldbloodeyes", "Not Set"}, + {"mp005_s_flag01x_pirateskulls", "Not Set"}, + {"mp005_s_flag01x_prairiemoongin", "Not Set"}, + {"mp005_s_flag01x_schiffer", "Not Set"}, + {"mp005_s_flag01x_stdenis", "Not Set"}, + {"mp005_s_flag01x_sturgeon", "Not Set"}, + {"mp005_s_flag01x_tennessee", "Not Set"}, + {"mp005_s_flag01x_vulture", "Not Set"}, + {"mp005_s_flag01x_westelizabeth", "Not Set"}, + {"mp005_s_mp_boatsunk_wreck01", "Not Set"}, + {"mp005_s_mp_campflag01x", "Not Set"}, + {"mp005_s_mp_moonshinesack03x", "Not Set"}, + {"mp005_s_mp_moonshinesack04x", "Not Set"}, + {"mp005_s_mp_rockpentagram01x", "Not Set"}, + {"mp005_p_mp_bountyPoster01x", "Not Set"}, + {"mp005_p_mp_bountyPoster02x", "Not Set"}, + {"mp005_p_mp_bountyPoster03x", "Not Set"}, + {"mp005_p_mp_filecabinet04x", "Not Set"}, + {"mp005_s_interact_detectorm01x", "Not Set"}, + {"mp005_s_melee_bolas01", "Not Set"}, + {"mp005_s_melee_bolascoiled", "Not Set"}, + {"mp005_s_tentdoctor01x", "Not Set"}, + {"mp005_s_inv_bitterweed01bx", "Not Set"}, + {"mp005_s_inv_bitterweed01cx", "Not Set"}, + {"mp005_s_inv_bloodflw01bx", "Not Set"}, + {"mp005_s_inv_bloodflw01cx", "Not Set"}, + {"mp005_s_inv_cardinal01bx", "Not Set"}, + {"mp005_s_inv_cardinal01cx", "Not Set"}, + {"mp005_s_inv_chocdaisy01bx", "Not Set"}, + {"mp005_s_inv_chocdaisy01cx", "Not Set"}, + {"mp005_s_inv_rhub01cx", "Not Set"}, + {"mp005_s_inv_rhub01dx", "Not Set"}, + {"mp005_s_inv_rhub01ex", "Not Set"}, + {"mp005_s_inv_texasbon01bx", "Not Set"}, + {"mp005_s_inv_texasbon01cx", "Not Set"}, + {"mp005_mp_awhd_agate", "Not Set"}, + {"mp005_mp_awhd_bone", "Not Set"}, + {"mp005_mp_awhd_chipped", "Not Set"}, + {"mp005_mp_awhd_crude", "Not Set"}, + {"mp005_mp_awhd_feldspar", "Not Set"}, + {"mp005_mp_awhd_granite", "Not Set"}, + {"mp005_mp_awhd_obsidian", "Not Set"}, + {"mp005_mp_awhd_quartz", "Not Set"}, + {"mp005_mp_awhd_raw", "Not Set"}, + {"mp005_mp_awhd_rough", "Not Set"}, + {"mp005_mp_awhd_slate", "Not Set"}, + {"mp005_mp_awhd_splntr", "Not Set"}, + {"mp005_s_bdeg_condor_egg01x", "Not Set"}, + {"mp005_s_bdeg_condornest01x", "Not Set"}, + {"mp005_s_bdeg_ducknest01x", "Not Set"}, + {"mp005_s_bdeg_eagle_egg01x", "Not Set"}, + {"mp005_s_bdeg_eaglenest01x", "Not Set"}, + {"mp005_s_bdeg_egretnest01x", "Not Set"}, + {"mp005_s_bdeg_goosenest01x", "Not Set"}, + {"mp005_s_bdeg_hawk_egg01x", "Not Set"}, + {"mp005_s_bdeg_heronnest01x", "Not Set"}, + {"mp005_s_bdeg_loonnest01x", "Not Set"}, + {"mp005_s_bdeg_spoonbillnest01x", "Not Set"}, + {"mp005_s_bdeg_vulture_egg01x", "Not Set"}, + {"mp005_s_bdeg_vulturenest01x", "Not Set"}, + {"mp005_s_bdeg_vulturenest02x", "Not Set"}, + {"mp005_s_cn_1700_nyt", "Not Set"}, + {"mp005_s_cn_1787_1c_apt", "Not Set"}, + {"mp005_s_cn_1789_pctm", "Not Set"}, + {"mp005_s_cn_1792_1866_5cnick", "Not Set"}, + {"mp005_s_cn_1792_1870_qpd", "Not Set"}, + {"mp005_s_cn_1792_qlp", "Not Set"}, + {"mp005_s_cn_1794_1795_sd_fh", "Not Set"}, + {"mp005_s_cn_1795_1797_5d_shetr", "Not Set"}, + {"mp005_s_cn_1796_halfpen_ctn", "Not Set"}, + {"mp005_s_cn_1797_1804_10d_lc", "Not Set"}, + {"mp005_s_cn_1798_1804_sd_db", "Not Set"}, + {"mp005_s_cn_1800_1805_s5c_dbhd", "Not Set"}, + {"mp005_s_cn_1800_1888_5d_cb", "Not Set"}, + {"mp005_s_cn_1800_1899_25c_sg", "Not Set"}, + {"mp005_s_cn_1800_1899_gd_lo", "Not Set"}, + {"mp005_p_dirtpile_bay_buried", "Not Set"}, + {"MP005_P_DIRTPILE_BAY_UNBURIED", "Not Set"}, + {"MP005_P_DIRTPILE_BIG01_BURIED", "Not Set"}, + {"MP005_P_DIRTPILE_BIG01_UNBURIED", "Not Set"}, + {"MP005_P_DIRTPILE_BIG02_MINE_BURIED", "Not Set"}, + {"MP005_P_DIRTPILE_BIG02_MINE_UNBURIED", "Not Set"}, + {"MP005_P_DIRTPILE_BIG03_BURIED", "Not Set"}, + {"MP005_P_DIRTPILE_BIG03_UNBURIED", "Not Set"}, + {"MP005_P_DIRTPILE_CUM_BURIED", "Not Set"}, + {"MP005_P_DIRTPILE_CUM_UNBURIED", "Not Set"}, + {"mp005_p_dirtpile_gen_buried", "Not Set"}, + {"MP005_P_DIRTPILE_GRI_MINES_UNBURIED", "Not Set"}, + {"MP005_P_DIRTPILE_HEA_BURIED", "Not Set"}, + {"MP005_P_DIRTPILE_HEA_UNBURIED", "Not Set"}, + {"mp005_p_dirtpile_hen_b_buried", "Not Set"}, + {"MP005_P_DIRTPILE_HEN_BURIED", "Not Set"}, + {"MP005_P_DIRTPILE_HEN_UNBURIED", "Not Set"}, + {"MP005_P_DIRTPILE_RIO_BURIED", "Not Set"}, + {"MP005_P_DIRTPILE_RIO_UNBURIED", "Not Set"}, + {"MP005_P_DIRTPILE_ROA_BURIED", "Not Set"}, + {"MP005_P_DIRTPILE_ROA_UNBURIED", "Not Set"}, + {"MP005_P_DIRTPILE_SCA01_BURIED", "Not Set"}, + {"MP005_P_DIRTPILE_SCA01_UNBURIED", "Not Set"}, + {"MP005_P_DIRTPILE_SCA02_BURIED", "Not Set"}, + {"MP005_P_DIRTPILE_SCA02_UNBURIED", "Not Set"}, + {"mp005_p_dirtpile_sca03_buried", "Not Set"}, + {"MP005_P_DIRTPILE_SHOVEL01X", "Not Set"}, + {"MP005_P_DIRTPILE_TALL_BURIED", "Not Set"}, + {"MP005_P_DIRTPILE_TALL_UNBURIED", "Not Set"}, + {"mp005_example_thickness", "Not Set"}, + {"mp005_s_hl_br_boarbristle", "Not Set"}, + {"mp005_s_hl_br_ebny", "Not Set"}, + {"mp005_s_hl_br_goat", "Not Set"}, + {"mp005_s_hl_br_horse", "Not Set"}, + {"mp005_s_hl_br_ng_rsewd", "Not Set"}, + {"mp005_s_hl_br_rsewd", "Not Set"}, + {"mp005_s_hl_cmb_boxwood", "Not Set"}, + {"mp005_s_hl_cmb_chrywd", "Not Set"}, + {"mp005_s_hl_cmb_ivry", "Not Set"}, + {"mp005_s_hl_cmb_tortshell", "Not Set"}, + {"mp005_s_hl_hp_crvdwd", "Not Set"}, + {"mp005_s_hl_hp_crvdwd001", "Not Set"}, + {"mp005_s_hl_hp_ebny", "Not Set"}, + {"mp005_s_hl_hp_ivry", "Not Set"}, + {"mp005_s_hl_hp_ivry_example", "Not Set"}, + {"mp005_s_hl_hp_jde", "Not Set"}, + {"mp005_s_hl_hp_mtl", "Not Set"}, + {"mp005_s_hl_hp_mtl001", "Not Set"}, + {"mp005_s_brclt_dmd_gld", "Not Set"}, + {"mp005_s_brclt_edw_prl", "Not Set"}, + {"mp005_s_brclt_gld", "Not Set"}, + {"mp005_s_brclt_gld_bngl", "Not Set"}, + {"mp005_s_brclt_sap", "Not Set"}, + {"mp005_s_brclt_sap_bngl", "Not Set"}, + {"mp005_s_brclt_slv", "Not Set"}, + {"mp005_s_brclt_slv_bngl", "Not Set"}, + {"mp005_s_errng_cit_drop", "Not Set"}, + {"mp005_s_errng_crl_dngl", "Not Set"}, + {"mp005_s_errng_elk_tht", "Not Set"}, + {"mp005_s_errng_emr", "Not Set"}, + {"mp005_s_errng_flrl_dmd", "Not Set"}, + {"mp005_s_errng_gld_prl", "Not Set"}, + {"mp005_s_errng_gld_rdy_dngl", "Not Set"}, + {"mp005_s_errng_grn_slv", "Not Set"}, + {"mp005_s_errng_old_mine", "Not Set"}, + {"mp005_s_errng_qns_dmd", "Not Set"}, + {"mp005_s_errng_trq_stud", "Not Set"}, + {"mp005_s_nklc_blk_prl", "Not Set"}, + {"mp005_s_nklc_gld_ame", "Not Set"}, + {"mp005_s_nklc_gld_cross", "Not Set"}, + {"mp005_s_nklc_gld_lav", "Not Set"}, + {"mp005_s_nklc_mthr_prl", "Not Set"}, + {"mp005_s_nklc_ori_prl", "Not Set"}, + {"mp005_s_nklc_plt_tpz", "Not Set"}, + {"mp005_s_nklc_pnt_por", "Not Set"}, + {"mp005_s_nklc_slv_prl", "Not Set"}, + {"mp005_s_rng_coral", "Not Set"}, + {"mp005_s_rng_dmnd_onyx", "Not Set"}, + {"mp005_s_rng_emr_gld", "Not Set"}, + {"mp005_s_rng_frn_dmd", "Not Set"}, + {"mp005_s_rng_gld_dmd", "Not Set"}, + {"mp005_s_rng_gld_prl", "Not Set"}, + {"mp005_s_rng_mnstn", "Not Set"}, + {"mp005_s_rng_ptrn_dmd", "Not Set"}, + {"mp005_s_rng_top_wed", "Not Set"}, + {"mp005_s_rng_trq_gld", "Not Set"}, + {"mp005_s_rng_trq_mot", "Not Set"}, + {"mp005_s_cardt_10c", "Not Set"}, + {"mp005_s_cardt_10p", "Not Set"}, + {"mp005_s_cardt_10s", "Not Set"}, + {"mp005_s_cardt_10w", "Not Set"}, + {"mp005_s_cardt_2c", "Not Set"}, + {"mp005_s_cardt_2p", "Not Set"}, + {"mp005_s_cardt_2s", "Not Set"}, + {"mp005_s_cardt_2w", "Not Set"}, + {"mp005_s_cardt_3c", "Not Set"}, + {"mp005_s_cardt_3p", "Not Set"}, + {"mp005_s_cardt_3s", "Not Set"}, + {"mp005_s_cardt_3w", "Not Set"}, + {"mp005_s_cardt_4c", "Not Set"}, + {"mp005_s_cardt_4p", "Not Set"}, + {"mp005_s_cardt_4s", "Not Set"}, + {"mp005_s_cardt_4w", "Not Set"}, + {"mp005_s_cardt_5c", "Not Set"}, + {"mp005_s_cardt_5p", "Not Set"}, + {"mp005_s_cardt_5s", "Not Set"}, + {"mp005_s_cardt_5w", "Not Set"}, + {"mp005_s_cardt_6c", "Not Set"}, + {"mp005_s_cardt_6p", "Not Set"}, + {"mp005_s_cardt_6s", "Not Set"}, + {"mp005_s_cardt_6w", "Not Set"}, + {"mp005_s_cardt_7c", "Not Set"}, + {"mp005_s_cardt_7p", "Not Set"}, + {"mp005_s_cardt_7s", "Not Set"}, + {"mp005_s_cardt_7w", "Not Set"}, + {"mp005_s_cardt_8c", "Not Set"}, + {"mp005_s_cardt_8p", "Not Set"}, + {"mp005_s_cardt_8s", "Not Set"}, + {"mp005_s_cardt_8w", "Not Set"}, + {"mp005_s_cardt_9c", "Not Set"}, + {"mp005_s_cardt_9p", "Not Set"}, + {"mp005_s_cardt_9s", "Not Set"}, + {"mp005_s_cardt_9w", "Not Set"}, + {"mp005_s_cardt_acc", "Not Set"}, + {"mp005_s_cardt_acp", "Not Set"}, + {"mp005_s_cardt_acs", "Not Set"}, + {"mp005_s_cardt_acw", "Not Set"}, + {"mp005_s_cardt_kic", "Not Set"}, + {"mp005_s_cardt_kip", "Not Set"}, + {"mp005_s_cardt_kis", "Not Set"}, + {"mp005_s_cardt_kiw", "Not Set"}, + {"mp005_s_cardt_knc", "Not Set"}, + {"mp005_s_cardt_knp", "Not Set"}, + {"mp005_s_cardt_kns", "Not Set"}, + {"mp005_s_cardt_knw", "Not Set"}, + {"mp005_s_cardt_pac", "Not Set"}, + {"mp005_s_cardt_pap", "Not Set"}, + {"mp005_s_cardt_pas", "Not Set"}, + {"mp005_s_cardt_paw", "Not Set"}, + {"mp005_s_cardt_quc", "Not Set"}, + {"mp005_s_cardt_qup", "Not Set"}, + {"mp005_s_cardt_qus", "Not Set"}, + {"mp005_s_cardt_quw", "Not Set"}, + {"mp005_s_awb_c", "Not Set"}, + {"mp005_s_awb_cb", "Not Set"}, + {"mp005_s_awb_cr", "Not Set"}, + {"mp005_s_awb_iw", "Not Set"}, + {"mp005_s_awb_ldg", "Not Set"}, + {"mp005_s_awb_otg", "Not Set"}, + {"mp005_s_awb_pg", "Not Set"}, + {"mp005_s_awb_sw", "Not Set"}, + {"mp005_s_awb_tw", "Not Set"}, + {"mp005_draped_hide01x", "Not Set"}, + {"mp005_draped_hide02x", "Not Set"}, + {"mp005_draped_hide03x", "Not Set"}, + {"mp005_s_posse_foldingchair_01x", "Not Set"}, + {"mp005_s_posse_guncleaningkit_01x", "Not Set"}, + {"mp005_s_posse_gunpowdertin_01x", "Not Set"}, + {"mp005_s_posse_leatherbag_01x", "Not Set"}, + {"mp005_s_posse_leatherbag_02x", "Not Set"}, + {"mp005_s_posse_scrapbook01x", "Not Set"}, + {"mp005_s_posse_ammotable01x", "Not Set"}, + {"mp005_s_posse_ammotable02x", "Not Set"}, + {"mp005_s_posse_ammotable03x", "Not Set"}, + {"mp005_s_posse_ammotable04x", "Not Set"}, + {"mp005_s_posse_bnty_decorlrg01x", "Not Set"}, + {"mp005_s_posse_bnty_decorlrg02x", "Not Set"}, + {"mp005_s_posse_butcher01x", "Not Set"}, + {"mp005_s_posse_butcher02x", "Not Set"}, + {"mp005_s_posse_butcher03x", "Not Set"}, + {"mp005_s_posse_butcher04x", "Not Set"}, + {"mp005_s_posse_col_cloth01x", "Not Set"}, + {"mp005_s_posse_col_cloth02x", "Not Set"}, + {"mp005_s_posse_col_cloth03x", "Not Set"}, + {"mp005_s_posse_col_decorlrg01x", "Not Set"}, + {"mp005_s_posse_col_decorlrg02x", "Not Set"}, + {"mp005_s_posse_foodpile01x", "Not Set"}, + {"mp005_s_posse_foodpile02x", "Not Set"}, + {"mp005_s_posse_foodpile03x", "Not Set"}, + {"mp005_s_posse_foodpile04x", "Not Set"}, + {"mp005_s_posse_goods01bx", "Not Set"}, + {"mp005_s_posse_goods01x", "Not Set"}, + {"mp005_s_posse_goods02bx", "Not Set"}, + {"mp005_s_posse_goods02x", "Not Set"}, + {"mp005_s_posse_goods03bx", "Not Set"}, + {"mp005_s_posse_goods03x", "Not Set"}, + {"mp005_s_posse_goods04bx", "Not Set"}, + {"mp005_s_posse_goods04x", "Not Set"}, + {"mp005_s_posse_medtable01x", "Not Set"}, + {"mp005_s_posse_medtable02x", "Not Set"}, + {"mp005_s_posse_medtable03x", "Not Set"}, + {"mp005_s_posse_medtable04x", "Not Set"}, + {"mp005_s_posse_table_bountyhunter02x", "Not Set"}, + {"mp005_s_posse_tent_bountyhunter01x", "Not Set"}, + {"mp005_s_posse_tent_bountyhunter02x", "Not Set"}, + {"mp005_s_posse_tent_bountyhunter04x", "Not Set"}, + {"mp005_s_posse_tent_bountyhunter06x", "Not Set"}, + {"mp005_s_posse_tent_bountyhunter07x", "Not Set"}, + {"mp005_s_posse_tent_collector01x", "Not Set"}, + {"mp005_s_posse_tent_collector02x", "Not Set"}, + {"mp005_s_posse_tent_collector03x", "Not Set"}, + {"mp005_s_posse_tent_collector04x", "Not Set"}, + {"mp005_s_posse_tent_collector05x", "Not Set"}, + {"mp005_s_posse_tent_collector06x", "Not Set"}, + {"mp005_s_posse_tent_collector07x", "Not Set"}, + {"mp005_s_posse_tent_trader01x", "Not Set"}, + {"mp005_s_posse_tent_trader02x", "Not Set"}, + {"mp005_s_posse_tent_trader03x", "Not Set"}, + {"mp005_s_posse_tent_trader04x", "Not Set"}, + {"mp005_s_posse_tent_trader05x", "Not Set"}, + {"mp005_s_posse_tent_trader06x", "Not Set"}, + {"mp005_s_posse_tent_trader07x", "Not Set"}, + {"mp005_s_posse_trad_decorlrg01x", "Not Set"}, + {"mp005_s_posse_trad_decorlrg02x", "Not Set"}, + {"mp005_s_posse_trader_candle01x", "Not Set"}, + {"mp005_s_posse_trader_cloth01x", "Not Set"}, + {"mp005_s_posse_trader_cloth02x", "Not Set"}, + {"mp005_s_posse_trader_fireset01x", "Not Set"}, + {"mp005_s_posse_trader_fireset02x", "Not Set"}, + {"mp005_s_posse_weaponslocker01x", "Not Set"}, + {"mp005_s_posse_bottleterrarium01x", "Not Set"}, + {"mp005_s_posse_col_bat01x", "Not Set"}, + {"mp005_s_posse_col_book01x", "Not Set"}, + {"mp005_s_posse_col_chair01x", "Not Set"}, + {"mp005_s_posse_col_net01x", "Not Set"}, + {"mp005_s_posse_col_posters01x", "Not Set"}, + {"mp005_s_posse_col_posters02x", "Not Set"}, + {"mp005_s_posse_col_posters03x", "Not Set"}, + {"mp005_s_posse_col_tel_astro_01x", "Not Set"}, + {"mp005_s_posse_capotecoat_hang01x", "Not Set"}, + {"mp005_s_posse_capotecoat_sew01x", "Not Set"}, + {"mp005_s_posse_fleshingboard01x", "Not Set"}, + {"mp005_s_posse_goodsbundle01x", "Not Set"}, + {"mp005_s_posse_lardbarrels01x", "Not Set"}, + {"mp005_s_posse_lardbarrels02x", "Not Set"}, + {"mp005_s_posse_paintedhide01x", "Not Set"}, + {"mp005_s_posse_raccoonpelt01x", "Not Set"}, + {"mp005_s_posse_trad_blanket01x", "Not Set"}, + {"mp005_s_posse_trad_chair01x", "Not Set"}, + {"mp005_s_posse_trader_cloth03x", "Not Set"}, + {"mp005_s_posse_trader_cloth04x", "Not Set"}, + {"mp005_s_posse_trader_cloth05x", "Not Set"}, + {"mp005_s_posse_turkeyplume01x", "Not Set"}, + {"s_cateyetrinket01x_1", "Not Set"}, + {"s_crowbeaktrinket01x_1", "Not Set"}, + {"s_hawktalontrinket01x_1", "Not Set"}, + {"s_sharkteeth_01x_1", "Not Set"}, + {"s_turtleshelltrinket01x_1", "Not Set"}, + {"s_wallplaque02x", "Not Set"}, + {"p_cs_blackwater_hunt01x", "Not Set"}, + {"p_cs_camp_return01x", "Not Set"}, + {"p_cs_laramie_sleeping01x", "Not Set"}, + {"p_ancientarrowhead01x", "Not Set"}, + {"p_ancientarrowhead02x", "Not Set"}, + {"p_ancientarrowhead03x", "Not Set"}, + {"s_ammo_22wrf", "Not Set"}, + {"s_ammo_45mm", "Not Set"}, + {"s_ammo_9mm", "Not Set"}, + {"s_ammo_grenade", "Not Set"}, + {"s_ammo_hotkiss_cannon", "Not Set"}, + {"s_ammo_repeater", "Not Set"}, + {"s_ammo_rifle", "Not Set"}, + {"s_ammo_shotgun", "Not Set"}, + {"s_blakesleetube01x", "Not Set"}, + {"s_breachcannonshell", "Not Set"}, + {"s_bullet_45mm", "Not Set"}, + {"s_bullet_9mm", "Not Set"}, + {"s_bullet_9mm_exit", "Not Set"}, + {"s_bullet_9mmsnub", "Not Set"}, + {"s_bullet_leadball", "Not Set"}, + {"s_bullet_rifle", "Not Set"}, + {"s_bullet_sgpellet", "Not Set"}, + {"s_bullet_standard", "Not Set"}, + {"s_cannonball", "Not Set"}, + {"s_gatlinggunmagazine", "Not Set"}, + {"s_hotchkiss_cannon_clip", "Not Set"}, + {"s_maximammobox01x", "Not Set"}, + {"s_melee_knife05", "Not Set"}, + {"s_shell_22wrf", "Not Set"}, + {"s_shell_45mm", "Not Set"}, + {"s_shell_9mm", "Not Set"}, + {"s_shell_grenade", "Not Set"}, + {"s_shell_rifle", "Not Set"}, + {"s_shell_sg", "Not Set"}, + {"s_shell_sg_mod1", "Not Set"}, + {"s_shell_sg_mod2", "Not Set"}, + {"s_shell_sg_mod3", "Not Set"}, + {"w_dis_pis_mauser01", "Not Set"}, + {"w_dis_pis_semiauto01", "Not Set"}, + {"w_dis_pistol_derringer01", "Not Set"}, + {"w_dis_pis_volcanic01", "Not Set"}, + {"w_dis_rep_carbine01_1", "Not Set"}, + {"w_dis_rep_henry01", "Not Set"}, + {"w_dis_rep_pumpaction01", "Not Set"}, + {"w_dis_rep_winchester01", "Not Set"}, + {"w_dis_rev_cattleman01_2", "Not Set"}, + {"w_dis_rev_doubleaction01", "Not Set"}, + {"w_dis_rev_lemat01", "Not Set"}, + {"w_dis_rev_schofield01", "Not Set"}, + {"w_dis_rif_blunderbuss01", "Not Set"}, + {"w_dis_rif_boltaction01", "Not Set"}, + {"w_dis_rif_buffalo01", "Not Set"}, + {"w_dis_rif_carcano01", "Not Set"}, + {"w_dis_rif_elephant01", "Not Set"}, + {"w_dis_rif_rollingblock01", "Not Set"}, + {"w_dis_rif_springfield01", "Not Set"}, + {"w_dis_sho_doublebarrel01", "Not Set"}, + {"w_dis_sho_pumpaction01", "Not Set"}, + {"w_dis_sho_repeating01", "Not Set"}, + {"w_dis_sho_sawed01", "Not Set"}, + {"w_dis_sho_semiauto01", "Not Set"}, + {"marstonskin", "Not Set"}, + {"marstontentbk", "Not Set"}, + {"marstontentdr", "Not Set"}, + {"marstontentfly", "Not Set"}, + {"marstontentft", "Not Set"}, + {"marstontentsdllt", "Not Set"}, + {"marstontentsdlrt", "Not Set"}, + {"p_awningbills01a", "Not Set"}, + {"p_awningbills01b", "Not Set"}, + {"p_awningbills01x", "Not Set"}, + {"p_craftedpillow01x", "Not Set"}, + {"p_craftedrag01x", "Not Set"}, + {"p_craftedrool01x", "Not Set"}, + {"p_craftedtable01x", "Not Set"}, + {"p_flask03x", "Not Set"}, + {"p_flask04x", "Not Set"}, + {"p_hangingbones01x", "Not Set"}, + {"p_lanternnotexplosive07x", "Not Set"}, + {"p_lanternnotexplosive09x", "Not Set"}, + {"p_lanternstick09x", "Not Set"}, + {"p_pronghornskull01x", "Not Set"}, + {"p_scoutfireelkantlers01x", "Not Set"}, + {"p_scoutfiregcover01x", "Not Set"}, + {"p_scoutfiregcover02x", "Not Set"}, + {"p_target02x", "Not Set"}, + {"p_tentdutchbl", "Not Set"}, + {"p_tentdutchbr", "Not Set"}, + {"p_tentdutchfl", "Not Set"}, + {"p_tentdutchfr", "Not Set"}, + {"p_tentdutchpanel01x", "Not Set"}, + {"p_tentdutchrf", "Not Set"}, + {"p_tentdutchsl", "Not Set"}, + {"p_tentdutchsr", "Not Set"}, + {"p_tentgenclothbl", "Not Set"}, + {"p_tentgenclothbl001", "Not Set"}, + {"p_tentgenclothbr", "Not Set"}, + {"p_tentgenclothbr001", "Not Set"}, + {"p_tentgenclothfl", "Not Set"}, + {"p_tentgenclothfl001", "Not Set"}, + {"p_tentgenclothfr", "Not Set"}, + {"p_tentgenclothfr001", "Not Set"}, + {"p_tentgenclothrf", "Not Set"}, + {"p_tentgenclothrf001", "Not Set"}, + {"p_tentgenclothsl", "Not Set"}, + {"p_tentgenclothsl001", "Not Set"}, + {"p_tentgenclothsr", "Not Set"}, + {"p_tentgenclothsr001", "Not Set"}, + {"reviewbuildwagon", "Not Set"}, + {"s_alligatorskull01x", "Not Set"}, + {"s_arthurswagon01a", "Not Set"}, + {"s_arthurswagon01b", "Not Set"}, + {"s_arthurswagon01x", "Not Set"}, + {"s_arthurswagoncloth01a", "Not Set"}, + {"s_arthurswagoncloth01b", "Not Set"}, + {"s_arthurswagoncloth01x", "Not Set"}, + {"s_awning66x", "Not Set"}, + {"s_awningwagon01a", "Not Set"}, + {"s_awningwagon01b", "Not Set"}, + {"s_awningwagon01old", "Not Set"}, + {"s_awningwagon01x", "Not Set"}, + {"s_awningwagon02a", "Not Set"}, + {"s_awningwagon02b", "Not Set"}, + {"s_awningwagon02x", "Not Set"}, + {"s_awningwagon03a", "Not Set"}, + {"s_awningwagon03b", "Not Set"}, + {"s_awningwagon03x", "Not Set"}, + {"s_banjosnakeskin01x", "Not Set"}, + {"s_bedarthur01x", "Not Set"}, + {"s_bedrollfurlined01x", "Not Set"}, + {"s_bedrollopen01x", "Not Set"}, + {"s_bench01x", "Not Set"}, + {"s_buckskull01x", "Not Set"}, + {"s_campfire01_fresh", "Not Set"}, + {"s_campfire01x", "Not Set"}, + {"s_campfire02x", "Not Set"}, + {"s_caravancot01x", "Not Set"}, + {"s_chair04x", "Not Set"}, + {"s_chuckwagon01a", "Not Set"}, + {"s_chuckwagon01abox", "Not Set"}, + {"s_chuckwagon01b", "Not Set"}, + {"s_chuckwagon01x", "Not Set"}, + {"s_chuckwagon01xcoth01x", "Not Set"}, + {"s_chuckwagon01xcoth02a", "Not Set"}, + {"s_chuckwagon01xcoth02b", "Not Set"}, + {"s_chuckwagon01xcoth02x", "Not Set"}, + {"s_chuckwagon01xcoth03x", "Not Set"}, + {"s_chuckwagon01xsetup", "Not Set"}, + {"s_chuckwagonawning01a", "Not Set"}, + {"s_chuckwagonawning01b", "Not Set"}, + {"s_chuckwagonawning01x", "Not Set"}, + {"s_cookfire01x", "Not Set"}, + {"s_craftedarthurchest01x", "Not Set"}, + {"s_craftedbed01x", "Not Set"}, + {"s_crateseat03x", "Not Set"}, + {"s_crateseat03x_lidanim", "Not Set"}, + {"s_cvan_barrel", "Not Set"}, + {"s_cvan_chest01", "Not Set"}, + {"s_cvan_chest02", "Not Set"}, + {"s_cvan_hideroll01", "Not Set"}, + {"s_cvan_hideroll02", "Not Set"}, + {"s_cvan_table", "Not Set"}, + {"s_cvan_tentpoles", "Not Set"}, + {"s_cvan_tentroll01", "Not Set"}, + {"s_cvan_tentroll02", "Not Set"}, + {"s_cvan_wagon02canvas", "Not Set"}, + {"s_floor_platform01x", "Not Set"}, + {"s_floor_platform02x", "Not Set"}, + {"s_furcoverscrate01x", "Not Set"}, + {"s_furhorseblanket01x", "Not Set"}, + {"s_furhorseblanket02x", "Not Set"}, + {"s_gen_barrelhalf02x", "Not Set"}, + {"s_grndcovercbr01x", "Not Set"}, + {"s_grndcovercow01x", "Not Set"}, + {"s_hitchpo01x", "Not Set"}, + {"s_hitchpo02x", "Not Set"}, + {"s_hitchpo03x", "Not Set"}, + {"s_jug01x", "Not Set"}, + {"s_leatherfeedbucket01x", "Not Set"}, + {"s_mastercloth01x", "Not Set"}, + {"s_mountedmooseantlers01x", "Not Set"}, + {"s_pan01x", "Not Set"}, + {"s_quartermaster", "Not Set"}, + {"s_quartermaster_d", "Not Set"}, + {"s_quartmastcloth01x", "Not Set"}, + {"s_ramskull01x", "Not Set"}, + {"s_seatingwolfhead01x", "Not Set"}, + {"s_shavebucket01x", "Not Set"}, + {"s_stagecoach01x", "Not Set"}, + {"s_stockade01x", "Not Set"}, + {"s_stockade02x", "Not Set"}, + {"s_table02x", "Not Set"}, + {"s_tabledominoes01x", "Not Set"}, + {"s_tablefarkle01x", "Not Set"}, + {"s_tablepierson01x", "Not Set"}, + {"s_tablepoker01x", "Not Set"}, + {"s_tablepokercaravan01x", "Not Set"}, + {"s_tent02_cloth01a", "Not Set"}, + {"s_tent02_cloth01a_cs", "Not Set"}, + {"s_tent02_cloth01a_drty", "Not Set"}, + {"s_tent02_cloth01a_drty_cs", "Not Set"}, + {"s_tent02_cloth01a_mid", "Not Set"}, + {"s_tent02_cloth01a_mid_cs", "Not Set"}, + {"s_tent02_cloth01b", "Not Set"}, + {"s_tent02_cloth01b_dty", "Not Set"}, + {"s_tent02_cloth01b_mid", "Not Set"}, + {"s_tent02_cloth01c", "Not Set"}, + {"s_tent02_cloth01d", "Not Set"}, + {"s_tent02_cloth01d_drty", "Not Set"}, + {"s_tent02_cloth01d_mid", "Not Set"}, + {"s_tent02_cloth01x", "Not Set"}, + {"s_tent02_cloth01x_drty", "Not Set"}, + {"s_tent02_cloth01x_mid", "Not Set"}, + {"s_tent02_d", "Not Set"}, + {"s_tent02x", "Not Set"}, + {"s_tent02x_setup", "Not Set"}, + {"s_tent03x", "Not Set"}, + {"s_tent04x", "Not Set"}, + {"s_tentbison01x", "Not Set"}, + {"s_tentblacksmith01x", "Not Set"}, + {"s_tentcaravan01c", "Not Set"}, + {"s_tentcaravan01d", "Not Set"}, + {"s_tentcaravan01x", "Not Set"}, + {"s_tentcaravancloth01x", "Not Set"}, + {"s_tentcaravanframe01x", "Not Set"}, + {"s_tentcaravanpartsa", "Not Set"}, + {"s_tentcaravanpartscrate", "Not Set"}, + {"s_tentcaravanpartspoles", "Not Set"}, + {"s_tentcloth02ax", "Not Set"}, + {"s_tentcloth02ax_drty", "Not Set"}, + {"s_tentcloth02ax_mid", "Not Set"}, + {"s_tentcloth02x", "Not Set"}, + {"s_tentclothdoors01x", "Not Set"}, + {"s_tentdoctor01x", "Not Set"}, + {"s_tentgunsmith01x", "Not Set"}, + {"s_tenthome01x", "Not Set"}, + {"s_tenthome01x_setup", "Not Set"}, + {"s_tentmain01x", "Not Set"}, + {"s_tent_marclosed01a", "Not Set"}, + {"s_tent_marclosed01b", "Not Set"}, + {"s_tent_marclosed01x", "Not Set"}, + {"s_tent_maropen01a", "Not Set"}, + {"s_tent_maropen01b", "Not Set"}, + {"s_tent_maropen01x", "Not Set"}, + {"s_tentmarston", "Not Set"}, + {"s_tentmarstoncloth01x", "Not Set"}, + {"s_tentmarstoncloth02x", "Not Set"}, + {"s_tentmarstonclothfly01a", "Not Set"}, + {"s_tentmarstonclothfly01b", "Not Set"}, + {"s_tentmarstonclothfly01x", "Not Set"}, + {"s_tentmarston_setup", "Not Set"}, + {"s_tenttradepost01x", "Not Set"}, + {"s_tentwedge01a", "Not Set"}, + {"s_tentwedge01b", "Not Set"}, + {"s_tentwedge01x", "Not Set"}, + {"s_tentwedge02a", "Not Set"}, + {"s_tentwedge02b", "Not Set"}, + {"s_tentwedge02x", "Not Set"}, + {"s_tentwedgecloth01x", "Not Set"}, + {"s_wagon07x", "Not Set"}, + {"s_wagoncaravan01a", "Not Set"}, + {"s_wagoncaravan01a_c", "Not Set"}, + {"s_wagoncaravan01b", "Not Set"}, + {"s_wagoncaravan01b_c", "Not Set"}, + {"s_wagoncaravan01_mid_c", "Not Set"}, + {"s_wagoncaravan01x", "Not Set"}, + {"s_wagoncaravan01x_c", "Not Set"}, + {"s_wagoncaravan02b_c", "Not Set"}, + {"s_wagonclothesline01x", "Not Set"}, + {"s_wagonparked01x", "Not Set"}, + {"s_wagontoung01x", "Not Set"}, + {"s_whorewagon01x", "Not Set"}, + {"s_whorewagon02x", "Not Set"}, + {"s_whorewgnclth01x", "Not Set"}, + {"s_wolfskull01x", "Not Set"}, + {"s_woodpile01x", "Not Set"}, + {"tentarthurbk", "Not Set"}, + {"tentarthurfl", "Not Set"}, + {"tentarthurfr", "Not Set"}, + {"tentarthurrf01", "Not Set"}, + {"tentarthurrf02", "Not Set"}, + {"tentarthursl", "Not Set"}, + {"tentarthursr", "Not Set"}, + {"p_cardssplit01x_bla", "Not Set"}, + {"p_cardssplit01x_camp", "Not Set"}, + {"p_cardssplit01x_gk", "Not Set"}, + {"p_cardssplit01x_rho", "Not Set"}, + {"p_cardssplit01x_rrs", "Not Set"}, + {"p_cardssplit01x_std_labastille", "Not Set"}, + {"p_cardssplit01x_std_opium", "Not Set"}, + {"p_cardssplit01x_val", "Not Set"}, + {"p_cardssplit01x_van", "Not Set"}, + {"p_crd_01x_bla", "Not Set"}, + {"p_crd_01x_camp", "Not Set"}, + {"p_crd_01x_gk", "Not Set"}, + {"p_crd_01x_rho", "Not Set"}, + {"p_crd_01x_rrs", "Not Set"}, + {"p_crd_01x_std_labastille", "Not Set"}, + {"p_crd_01x_std_opium", "Not Set"}, + {"p_crd_01x_val", "Not Set"}, + {"p_crd_01x_van", "Not Set"}, + {"p_crd_10_c01x_bla", "Not Set"}, + {"p_crd_10_c01x_camp", "Not Set"}, + {"p_crd_10_c01x_gk", "Not Set"}, + {"p_crd_10_c01x_rho", "Not Set"}, + {"p_crd_10_c01x_rrs", "Not Set"}, + {"p_crd_10_c01x_std_labastille", "Not Set"}, + {"p_crd_10_c01x_std_opium", "Not Set"}, + {"p_crd_10_c01x_val", "Not Set"}, + {"p_crd_10_c01x_van", "Not Set"}, + {"p_crd_10_d01x_bla", "Not Set"}, + {"p_crd_10_d01x_camp", "Not Set"}, + {"p_crd_10_d01x_gk", "Not Set"}, + {"p_crd_10_d01x_rho", "Not Set"}, + {"p_crd_10_d01x_rrs", "Not Set"}, + {"p_crd_10_d01x_std_labastille", "Not Set"}, + {"p_crd_10_d01x_std_opium", "Not Set"}, + {"p_crd_10_d01x_val", "Not Set"}, + {"p_crd_10_d01x_van", "Not Set"}, + {"p_crd_10_h01x_bla", "Not Set"}, + {"p_crd_10_h01x_camp", "Not Set"}, + {"p_crd_10_h01x_gk", "Not Set"}, + {"p_crd_10_h01x_rho", "Not Set"}, + {"p_crd_10_h01x_rrs", "Not Set"}, + {"p_crd_10_h01x_std_labastille", "Not Set"}, + {"p_crd_10_h01x_std_opium", "Not Set"}, + {"p_crd_10_h01x_val", "Not Set"}, + {"p_crd_10_h01x_van", "Not Set"}, + {"p_crd_10_s01x_bla", "Not Set"}, + {"p_crd_10_s01x_camp", "Not Set"}, + {"p_crd_10_s01x_gk", "Not Set"}, + {"p_crd_10_s01x_rho", "Not Set"}, + {"p_crd_10_s01x_rrs", "Not Set"}, + {"p_crd_10_s01x_std_labastille", "Not Set"}, + {"p_crd_10_s01x_std_opium", "Not Set"}, + {"p_crd_10_s01x_val", "Not Set"}, + {"p_crd_10_s01x_van", "Not Set"}, + {"p_crd_2_c01x_bla", "Not Set"}, + {"p_crd_2_c01x_camp", "Not Set"}, + {"p_crd_2_c01x_gk", "Not Set"}, + {"p_crd_2_c01x_rho", "Not Set"}, + {"p_crd_2_c01x_rrs", "Not Set"}, + {"p_crd_2_c01x_std_labastille", "Not Set"}, + {"p_crd_2_c01x_std_opium", "Not Set"}, + {"p_crd_2_c01x_val", "Not Set"}, + {"p_crd_2_c01x_van", "Not Set"}, + {"p_crd_2_d01x_bla", "Not Set"}, + {"p_crd_2_d01x_camp", "Not Set"}, + {"p_crd_2_d01x_gk", "Not Set"}, + {"p_crd_2_d01x_rho", "Not Set"}, + {"p_crd_2_d01x_rrs", "Not Set"}, + {"p_crd_2_d01x_std_labastille", "Not Set"}, + {"p_crd_2_d01x_std_opium", "Not Set"}, + {"p_crd_2_d01x_val", "Not Set"}, + {"p_crd_2_d01x_van", "Not Set"}, + {"p_crd_2_h01x_bla", "Not Set"}, + {"p_crd_2_h01x_camp", "Not Set"}, + {"p_crd_2_h01x_gk", "Not Set"}, + {"p_crd_2_h01x_rho", "Not Set"}, + {"p_crd_2_h01x_rrs", "Not Set"}, + {"p_crd_2_h01x_std_labastille", "Not Set"}, + {"p_crd_2_h01x_std_opium", "Not Set"}, + {"p_crd_2_h01x_val", "Not Set"}, + {"p_crd_2_h01x_van", "Not Set"}, + {"p_crd_2_s01x_bla", "Not Set"}, + {"p_crd_2_s01x_camp", "Not Set"}, + {"p_crd_2_s01x_gk", "Not Set"}, + {"p_crd_2_s01x_rho", "Not Set"}, + {"p_crd_2_s01x_rrs", "Not Set"}, + {"p_crd_2_s01x_std_labastille", "Not Set"}, + {"p_crd_2_s01x_std_opium", "Not Set"}, + {"p_crd_2_s01x_val", "Not Set"}, + {"p_crd_2_s01x_van", "Not Set"}, + {"p_crd_3_c01x_bla", "Not Set"}, + {"p_crd_3_c01x_camp", "Not Set"}, + {"p_crd_3_c01x_gk", "Not Set"}, + {"p_crd_3_c01x_rho", "Not Set"}, + {"p_crd_3_c01x_rrs", "Not Set"}, + {"p_crd_3_c01x_std_labastille", "Not Set"}, + {"p_crd_3_c01x_std_opium", "Not Set"}, + {"p_crd_3_c01x_val", "Not Set"}, + {"p_crd_3_c01x_van", "Not Set"}, + {"p_crd_3_d01x_bla", "Not Set"}, + {"p_crd_3_d01x_camp", "Not Set"}, + {"p_crd_3_d01x_gk", "Not Set"}, + {"p_crd_3_d01x_rho", "Not Set"}, + {"p_crd_3_d01x_rrs", "Not Set"}, + {"p_crd_3_d01x_std_labastille", "Not Set"}, + {"p_crd_3_d01x_std_opium", "Not Set"}, + {"p_crd_3_d01x_val", "Not Set"}, + {"p_crd_3_d01x_van", "Not Set"}, + {"p_crd_3_h01x_bla", "Not Set"}, + {"p_crd_3_h01x_camp", "Not Set"}, + {"p_crd_3_h01x_gk", "Not Set"}, + {"p_crd_3_h01x_rho", "Not Set"}, + {"p_crd_3_h01x_rrs", "Not Set"}, + {"p_crd_3_h01x_std_labastille", "Not Set"}, + {"p_crd_3_h01x_std_opium", "Not Set"}, + {"p_crd_3_h01x_val", "Not Set"}, + {"p_crd_3_h01x_van", "Not Set"}, + {"p_crd_3_s01x_bla", "Not Set"}, + {"p_crd_3_s01x_camp", "Not Set"}, + {"p_crd_3_s01x_gk", "Not Set"}, + {"p_crd_3_s01x_rho", "Not Set"}, + {"p_crd_3_s01x_rrs", "Not Set"}, + {"p_crd_3_s01x_std_labastille", "Not Set"}, + {"p_crd_3_s01x_std_opium", "Not Set"}, + {"p_crd_3_s01x_val", "Not Set"}, + {"p_crd_3_s01x_van", "Not Set"}, + {"p_crd_4_c01x_bla", "Not Set"}, + {"p_crd_4_c01x_camp", "Not Set"}, + {"p_crd_4_c01x_gk", "Not Set"}, + {"p_crd_4_c01x_rho", "Not Set"}, + {"p_crd_4_c01x_rrs", "Not Set"}, + {"p_crd_4_c01x_std_labastille", "Not Set"}, + {"p_crd_4_c01x_std_opium", "Not Set"}, + {"p_crd_4_c01x_val", "Not Set"}, + {"p_crd_4_c01x_van", "Not Set"}, + {"p_crd_4_d01x_bla", "Not Set"}, + {"p_crd_4_d01x_camp", "Not Set"}, + {"p_crd_4_d01x_gk", "Not Set"}, + {"p_crd_4_d01x_rho", "Not Set"}, + {"p_crd_4_d01x_rrs", "Not Set"}, + {"p_crd_4_d01x_std_labastille", "Not Set"}, + {"p_crd_4_d01x_std_opium", "Not Set"}, + {"p_crd_4_d01x_val", "Not Set"}, + {"p_crd_4_d01x_van", "Not Set"}, + {"p_crd_4_h01x_bla", "Not Set"}, + {"p_crd_4_h01x_camp", "Not Set"}, + {"p_crd_4_h01x_gk", "Not Set"}, + {"p_crd_4_h01x_rho", "Not Set"}, + {"p_crd_4_h01x_rrs", "Not Set"}, + {"p_crd_4_h01x_std_labastille", "Not Set"}, + {"p_crd_4_h01x_std_opium", "Not Set"}, + {"p_crd_4_h01x_val", "Not Set"}, + {"p_crd_4_h01x_van", "Not Set"}, + {"p_crd_4_s01x_bla", "Not Set"}, + {"p_crd_4_s01x_camp", "Not Set"}, + {"p_crd_4_s01x_gk", "Not Set"}, + {"p_crd_4_s01x_rho", "Not Set"}, + {"p_crd_4_s01x_rrs", "Not Set"}, + {"p_crd_4_s01x_std_labastille", "Not Set"}, + {"p_crd_4_s01x_std_opium", "Not Set"}, + {"p_crd_4_s01x_val", "Not Set"}, + {"p_crd_4_s01x_van", "Not Set"}, + {"p_crd_5_c01x_bla", "Not Set"}, + {"p_crd_5_c01x_camp", "Not Set"}, + {"p_crd_5_c01x_gk", "Not Set"}, + {"p_crd_5_c01x_rho", "Not Set"}, + {"p_crd_5_c01x_rrs", "Not Set"}, + {"p_crd_5_c01x_std_labastille", "Not Set"}, + {"p_crd_5_c01x_std_opium", "Not Set"}, + {"p_crd_5_c01x_val", "Not Set"}, + {"p_crd_5_c01x_van", "Not Set"}, + {"p_crd_5_d01x_bla", "Not Set"}, + {"p_crd_5_d01x_camp", "Not Set"}, + {"p_crd_5_d01x_gk", "Not Set"}, + {"p_crd_5_d01x_rho", "Not Set"}, + {"p_crd_5_d01x_rrs", "Not Set"}, + {"p_crd_5_d01x_std_labastille", "Not Set"}, + {"p_crd_5_d01x_std_opium", "Not Set"}, + {"p_crd_5_d01x_val", "Not Set"}, + {"p_crd_5_d01x_van", "Not Set"}, + {"p_crd_5_h01x_bla", "Not Set"}, + {"p_crd_5_h01x_camp", "Not Set"}, + {"p_crd_5_h01x_gk", "Not Set"}, + {"p_crd_5_h01x_rho", "Not Set"}, + {"p_crd_5_h01x_rrs", "Not Set"}, + {"p_crd_5_h01x_std_labastille", "Not Set"}, + {"p_crd_5_h01x_std_opium", "Not Set"}, + {"p_crd_5_h01x_val", "Not Set"}, + {"p_crd_5_h01x_van", "Not Set"}, + {"p_crd_5_s01x_bla", "Not Set"}, + {"p_crd_5_s01x_camp", "Not Set"}, + {"p_crd_5_s01x_gk", "Not Set"}, + {"p_crd_5_s01x_rho", "Not Set"}, + {"p_crd_5_s01x_rrs", "Not Set"}, + {"p_crd_5_s01x_std_labastille", "Not Set"}, + {"p_crd_5_s01x_std_opium", "Not Set"}, + {"p_crd_5_s01x_val", "Not Set"}, + {"p_crd_5_s01x_van", "Not Set"}, + {"p_crd_6_c01x_bla", "Not Set"}, + {"p_crd_6_c01x_camp", "Not Set"}, + {"p_crd_6_c01x_gk", "Not Set"}, + {"p_crd_6_c01x_rho", "Not Set"}, + {"p_crd_6_c01x_rrs", "Not Set"}, + {"p_crd_6_c01x_std_labastille", "Not Set"}, + {"p_crd_6_c01x_std_opium", "Not Set"}, + {"p_crd_6_c01x_val", "Not Set"}, + {"p_crd_6_c01x_van", "Not Set"}, + {"p_crd_6_d01x_bla", "Not Set"}, + {"p_crd_6_d01x_camp", "Not Set"}, + {"p_crd_6_d01x_gk", "Not Set"}, + {"p_crd_6_d01x_rho", "Not Set"}, + {"p_crd_6_d01x_rrs", "Not Set"}, + {"p_crd_6_d01x_std_labastille", "Not Set"}, + {"p_crd_6_d01x_std_opium", "Not Set"}, + {"p_crd_6_d01x_val", "Not Set"}, + {"p_crd_6_d01x_van", "Not Set"}, + {"p_crd_6_h01x_bla", "Not Set"}, + {"p_crd_6_h01x_camp", "Not Set"}, + {"p_crd_6_h01x_gk", "Not Set"}, + {"p_crd_6_h01x_rho", "Not Set"}, + {"p_crd_6_h01x_rrs", "Not Set"}, + {"p_crd_6_h01x_std_labastille", "Not Set"}, + {"p_crd_6_h01x_std_opium", "Not Set"}, + {"p_crd_6_h01x_val", "Not Set"}, + {"p_crd_6_h01x_van", "Not Set"}, + {"p_crd_6_s01x_bla", "Not Set"}, + {"p_crd_6_s01x_camp", "Not Set"}, + {"p_crd_6_s01x_gk", "Not Set"}, + {"p_crd_6_s01x_rho", "Not Set"}, + {"p_crd_6_s01x_rrs", "Not Set"}, + {"p_crd_6_s01x_std_labastille", "Not Set"}, + {"p_crd_6_s01x_std_opium", "Not Set"}, + {"p_crd_6_s01x_val", "Not Set"}, + {"p_crd_6_s01x_van", "Not Set"}, + {"p_crd_7_c01x_bla", "Not Set"}, + {"p_crd_7_c01x_camp", "Not Set"}, + {"p_crd_7_c01x_gk", "Not Set"}, + {"p_crd_7_c01x_rho", "Not Set"}, + {"p_crd_7_c01x_rrs", "Not Set"}, + {"p_crd_7_c01x_std_labastille", "Not Set"}, + {"p_crd_7_c01x_std_opium", "Not Set"}, + {"p_crd_7_c01x_val", "Not Set"}, + {"p_crd_7_c01x_van", "Not Set"}, + {"p_crd_7_d01x_bla", "Not Set"}, + {"p_crd_7_d01x_camp", "Not Set"}, + {"p_crd_7_d01x_gk", "Not Set"}, + {"p_crd_7_d01x_rho", "Not Set"}, + {"p_crd_7_d01x_rrs", "Not Set"}, + {"p_crd_7_d01x_std_labastille", "Not Set"}, + {"p_crd_7_d01x_std_opium", "Not Set"}, + {"p_crd_7_d01x_val", "Not Set"}, + {"p_crd_7_d01x_van", "Not Set"}, + {"p_crd_7_h01x_bla", "Not Set"}, + {"p_crd_7_h01x_camp", "Not Set"}, + {"p_crd_7_h01x_gk", "Not Set"}, + {"p_crd_7_h01x_rho", "Not Set"}, + {"p_crd_7_h01x_rrs", "Not Set"}, + {"p_crd_7_h01x_std_labastille", "Not Set"}, + {"p_crd_7_h01x_std_opium", "Not Set"}, + {"p_crd_7_h01x_val", "Not Set"}, + {"p_crd_7_h01x_van", "Not Set"}, + {"p_crd_7_s01x_bla", "Not Set"}, + {"p_crd_7_s01x_camp", "Not Set"}, + {"p_crd_7_s01x_gk", "Not Set"}, + {"p_crd_7_s01x_rho", "Not Set"}, + {"p_crd_7_s01x_rrs", "Not Set"}, + {"p_crd_7_s01x_std_labastille", "Not Set"}, + {"p_crd_7_s01x_std_opium", "Not Set"}, + {"p_crd_7_s01x_val", "Not Set"}, + {"p_crd_7_s01x_van", "Not Set"}, + {"p_crd_8_c01x_bla", "Not Set"}, + {"p_crd_8_c01x_camp", "Not Set"}, + {"p_crd_8_c01x_gk", "Not Set"}, + {"p_crd_8_c01x_rho", "Not Set"}, + {"p_crd_8_c01x_rrs", "Not Set"}, + {"p_crd_8_c01x_std_labastille", "Not Set"}, + {"p_crd_8_c01x_std_opium", "Not Set"}, + {"p_crd_8_c01x_val", "Not Set"}, + {"p_crd_8_c01x_van", "Not Set"}, + {"p_crd_8_d01x_bla", "Not Set"}, + {"p_crd_8_d01x_camp", "Not Set"}, + {"p_crd_8_d01x_gk", "Not Set"}, + {"p_crd_8_d01x_rho", "Not Set"}, + {"p_crd_8_d01x_rrs", "Not Set"}, + {"p_crd_8_d01x_std_labastille", "Not Set"}, + {"p_crd_8_d01x_std_opium", "Not Set"}, + {"p_crd_8_d01x_val", "Not Set"}, + {"p_crd_8_d01x_van", "Not Set"}, + {"p_crd_8_h01x_bla", "Not Set"}, + {"p_crd_8_h01x_camp", "Not Set"}, + {"p_crd_8_h01x_gk", "Not Set"}, + {"p_crd_8_h01x_rho", "Not Set"}, + {"p_crd_8_h01x_rrs", "Not Set"}, + {"p_crd_8_h01x_std_labastille", "Not Set"}, + {"p_crd_8_h01x_std_opium", "Not Set"}, + {"p_crd_8_h01x_val", "Not Set"}, + {"p_crd_8_h01x_van", "Not Set"}, + {"p_crd_8_s01x_bla", "Not Set"}, + {"p_crd_8_s01x_camp", "Not Set"}, + {"p_crd_8_s01x_gk", "Not Set"}, + {"p_crd_8_s01x_rho", "Not Set"}, + {"p_crd_8_s01x_rrs", "Not Set"}, + {"p_crd_8_s01x_std_labastille", "Not Set"}, + {"p_crd_8_s01x_std_opium", "Not Set"}, + {"p_crd_8_s01x_val", "Not Set"}, + {"p_crd_8_s01x_van", "Not Set"}, + {"p_crd_9_c01x_bla", "Not Set"}, + {"p_crd_9_c01x_camp", "Not Set"}, + {"p_crd_9_c01x_gk", "Not Set"}, + {"p_crd_9_c01x_rho", "Not Set"}, + {"p_crd_9_c01x_rrs", "Not Set"}, + {"p_crd_9_c01x_std_labastille", "Not Set"}, + {"p_crd_9_c01x_std_opium", "Not Set"}, + {"p_crd_9_c01x_val", "Not Set"}, + {"p_crd_9_c01x_van", "Not Set"}, + {"p_crd_9_d01x_bla", "Not Set"}, + {"p_crd_9_d01x_camp", "Not Set"}, + {"p_crd_9_d01x_gk", "Not Set"}, + {"p_crd_9_d01x_rho", "Not Set"}, + {"p_crd_9_d01x_rrs", "Not Set"}, + {"p_crd_9_d01x_std_labastille", "Not Set"}, + {"p_crd_9_d01x_std_opium", "Not Set"}, + {"p_crd_9_d01x_val", "Not Set"}, + {"p_crd_9_d01x_van", "Not Set"}, + {"p_crd_9_h01x_bla", "Not Set"}, + {"p_crd_9_h01x_camp", "Not Set"}, + {"p_crd_9_h01x_gk", "Not Set"}, + {"p_crd_9_h01x_rho", "Not Set"}, + {"p_crd_9_h01x_rrs", "Not Set"}, + {"p_crd_9_h01x_std_labastille", "Not Set"}, + {"p_crd_9_h01x_std_opium", "Not Set"}, + {"p_crd_9_h01x_val", "Not Set"}, + {"p_crd_9_h01x_van", "Not Set"}, + {"p_crd_9_s01x_bla", "Not Set"}, + {"p_crd_9_s01x_camp", "Not Set"}, + {"p_crd_9_s01x_gk", "Not Set"}, + {"p_crd_9_s01x_rho", "Not Set"}, + {"p_crd_9_s01x_rrs", "Not Set"}, + {"p_crd_9_s01x_std_labastille", "Not Set"}, + {"p_crd_9_s01x_std_opium", "Not Set"}, + {"p_crd_9_s01x_val", "Not Set"}, + {"p_crd_9_s01x_van", "Not Set"}, + {"p_crd_a_c01x_bla", "Not Set"}, + {"p_crd_a_c01x_camp", "Not Set"}, + {"p_crd_a_c01x_gk", "Not Set"}, + {"p_crd_a_c01x_rho", "Not Set"}, + {"p_crd_a_c01x_rrs", "Not Set"}, + {"p_crd_a_c01x_std_labastille", "Not Set"}, + {"p_crd_a_c01x_std_opium", "Not Set"}, + {"p_crd_a_c01x_val", "Not Set"}, + {"p_crd_a_c01x_van", "Not Set"}, + {"p_crd_a_d01x_bla", "Not Set"}, + {"p_crd_a_d01x_camp", "Not Set"}, + {"p_crd_a_d01x_gk", "Not Set"}, + {"p_crd_a_d01x_rho", "Not Set"}, + {"p_crd_a_d01x_rrs", "Not Set"}, + {"p_crd_a_d01x_std_labastille", "Not Set"}, + {"p_crd_a_d01x_std_opium", "Not Set"}, + {"p_crd_a_d01x_val", "Not Set"}, + {"p_crd_a_d01x_van", "Not Set"}, + {"p_crd_a_h01x_bla", "Not Set"}, + {"p_crd_a_h01x_camp", "Not Set"}, + {"p_crd_a_h01x_gk", "Not Set"}, + {"p_crd_a_h01x_rho", "Not Set"}, + {"p_crd_a_h01x_rrs", "Not Set"}, + {"p_crd_a_h01x_std_labastille", "Not Set"}, + {"p_crd_a_h01x_std_opium", "Not Set"}, + {"p_crd_a_h01x_val", "Not Set"}, + {"p_crd_a_h01x_van", "Not Set"}, + {"p_crd_a_s01x_bla", "Not Set"}, + {"p_crd_a_s01x_camp", "Not Set"}, + {"p_crd_a_s01x_gk", "Not Set"}, + {"p_crd_a_s01x_rho", "Not Set"}, + {"p_crd_a_s01x_rrs", "Not Set"}, + {"p_crd_a_s01x_std_labastille", "Not Set"}, + {"p_crd_a_s01x_std_opium", "Not Set"}, + {"p_crd_a_s01x_val", "Not Set"}, + {"p_crd_a_s01x_van", "Not Set"}, + {"p_crd_j_c01x_bla", "Not Set"}, + {"p_crd_j_c01x_camp", "Not Set"}, + {"p_crd_j_c01x_gk", "Not Set"}, + {"p_crd_j_c01x_rho", "Not Set"}, + {"p_crd_j_c01x_rrs", "Not Set"}, + {"p_crd_j_c01x_std_labastille", "Not Set"}, + {"p_crd_j_c01x_std_opium", "Not Set"}, + {"p_crd_j_c01x_val", "Not Set"}, + {"p_crd_j_c01x_van", "Not Set"}, + {"p_crd_j_d01x_bla", "Not Set"}, + {"p_crd_j_d01x_camp", "Not Set"}, + {"p_crd_j_d01x_gk", "Not Set"}, + {"p_crd_j_d01x_rho", "Not Set"}, + {"p_crd_j_d01x_rrs", "Not Set"}, + {"p_crd_j_d01x_std_labastille", "Not Set"}, + {"p_crd_j_d01x_std_opium", "Not Set"}, + {"p_crd_j_d01x_val", "Not Set"}, + {"p_crd_j_d01x_van", "Not Set"}, + {"p_crd_j_h01x_bla", "Not Set"}, + {"p_crd_j_h01x_camp", "Not Set"}, + {"p_crd_j_h01x_gk", "Not Set"}, + {"p_crd_j_h01x_rho", "Not Set"}, + {"p_crd_j_h01x_rrs", "Not Set"}, + {"p_crd_j_h01x_std_labastille", "Not Set"}, + {"p_crd_j_h01x_std_opium", "Not Set"}, + {"p_crd_j_h01x_val", "Not Set"}, + {"p_crd_j_h01x_van", "Not Set"}, + {"p_crd_joker01x_bla", "Not Set"}, + {"p_crd_joker01x_camp", "Not Set"}, + {"p_crd_joker01x_gk", "Not Set"}, + {"p_crd_joker01x_rho", "Not Set"}, + {"p_crd_joker01x_rrs", "Not Set"}, + {"p_crd_joker01x_std_labastille", "Not Set"}, + {"p_crd_joker01x_std_opium", "Not Set"}, + {"p_crd_joker01x_val", "Not Set"}, + {"p_crd_joker01x_van", "Not Set"}, + {"p_crd_j_s01x_bla", "Not Set"}, + {"p_crd_j_s01x_camp", "Not Set"}, + {"p_crd_j_s01x_gk", "Not Set"}, + {"p_crd_j_s01x_rho", "Not Set"}, + {"p_crd_j_s01x_rrs", "Not Set"}, + {"p_crd_j_s01x_std_labastille", "Not Set"}, + {"p_crd_j_s01x_std_opium", "Not Set"}, + {"p_crd_j_s01x_val", "Not Set"}, + {"p_crd_j_s01x_van", "Not Set"}, + {"p_crd_k_c01x_bla", "Not Set"}, + {"p_crd_k_c01x_camp", "Not Set"}, + {"p_crd_k_c01x_gk", "Not Set"}, + {"p_crd_k_c01x_rho", "Not Set"}, + {"p_crd_k_c01x_rrs", "Not Set"}, + {"p_crd_k_c01x_std_labastille", "Not Set"}, + {"p_crd_k_c01x_std_opium", "Not Set"}, + {"p_crd_k_c01x_val", "Not Set"}, + {"p_crd_k_c01x_van", "Not Set"}, + {"p_crd_k_d01x_bla", "Not Set"}, + {"p_crd_k_d01x_camp", "Not Set"}, + {"p_crd_k_d01x_gk", "Not Set"}, + {"p_crd_k_d01x_rho", "Not Set"}, + {"p_crd_k_d01x_rrs", "Not Set"}, + {"p_crd_k_d01x_std_labastille", "Not Set"}, + {"p_crd_k_d01x_std_opium", "Not Set"}, + {"p_crd_k_d01x_val", "Not Set"}, + {"p_crd_k_d01x_van", "Not Set"}, + {"p_crd_k_h01x_bla", "Not Set"}, + {"p_crd_k_h01x_camp", "Not Set"}, + {"p_crd_k_h01x_gk", "Not Set"}, + {"p_crd_k_h01x_rho", "Not Set"}, + {"p_crd_k_h01x_rrs", "Not Set"}, + {"p_crd_k_h01x_std_labastille", "Not Set"}, + {"p_crd_k_h01x_std_opium", "Not Set"}, + {"p_crd_k_h01x_val", "Not Set"}, + {"p_crd_k_h01x_van", "Not Set"}, + {"p_crd_k_s01x_bla", "Not Set"}, + {"p_crd_k_s01x_camp", "Not Set"}, + {"p_crd_k_s01x_gk", "Not Set"}, + {"p_crd_k_s01x_rho", "Not Set"}, + {"p_crd_k_s01x_rrs", "Not Set"}, + {"p_crd_k_s01x_std_labastille", "Not Set"}, + {"p_crd_k_s01x_std_opium", "Not Set"}, + {"p_crd_k_s01x_val", "Not Set"}, + {"p_crd_k_s01x_van", "Not Set"}, + {"p_crd_q_c01x_bla", "Not Set"}, + {"p_crd_q_c01x_camp", "Not Set"}, + {"p_crd_q_c01x_gk", "Not Set"}, + {"p_crd_q_c01x_rho", "Not Set"}, + {"p_crd_q_c01x_rrs", "Not Set"}, + {"p_crd_q_c01x_std_labastille", "Not Set"}, + {"p_crd_q_c01x_std_opium", "Not Set"}, + {"p_crd_q_c01x_val", "Not Set"}, + {"p_crd_q_c01x_van", "Not Set"}, + {"p_crd_q_d01x_bla", "Not Set"}, + {"p_crd_q_d01x_camp", "Not Set"}, + {"p_crd_q_d01x_gk", "Not Set"}, + {"p_crd_q_d01x_rho", "Not Set"}, + {"p_crd_q_d01x_rrs", "Not Set"}, + {"p_crd_q_d01x_std_labastille", "Not Set"}, + {"p_crd_q_d01x_std_opium", "Not Set"}, + {"p_crd_q_d01x_val", "Not Set"}, + {"p_crd_q_d01x_van", "Not Set"}, + {"p_crd_q_h01x_bla", "Not Set"}, + {"p_crd_q_h01x_camp", "Not Set"}, + {"p_crd_q_h01x_gk", "Not Set"}, + {"p_crd_q_h01x_rho", "Not Set"}, + {"p_crd_q_h01x_rrs", "Not Set"}, + {"p_crd_q_h01x_std_labastille", "Not Set"}, + {"p_crd_q_h01x_std_opium", "Not Set"}, + {"p_crd_q_h01x_val", "Not Set"}, + {"p_crd_q_h01x_van", "Not Set"}, + {"p_crd_q_s01x_bla", "Not Set"}, + {"p_crd_q_s01x_camp", "Not Set"}, + {"p_crd_q_s01x_gk", "Not Set"}, + {"p_crd_q_s01x_rho", "Not Set"}, + {"p_crd_q_s01x_rrs", "Not Set"}, + {"p_crd_q_s01x_std_labastille", "Not Set"}, + {"p_crd_q_s01x_std_opium", "Not Set"}, + {"p_crd_q_s01x_val", "Not Set"}, + {"p_crd_q_s01x_van", "Not Set"}, + {"p_anim_armypup02x", "Not Set"}, + {"p_bloodywedgestick01x", "Not Set"}, + {"p_crate04x_b", "Not Set"}, + {"p_crate15x_a", "Not Set"}, + {"p_crate22x_a", "Not Set"}, + {"p_crate26bx_a", "Not Set"}, + {"p_crate26bx_b", "Not Set"}, + {"p_crate26x_a", "Not Set"}, + {"p_crate26x_b", "Not Set"}, + {"p_crate26x_c", "Not Set"}, + {"p_cs_arthurpolicedressroll1x", "Not Set"}, + {"p_cs_buildingplan01x", "Not Set"}, + {"p_cs_bullgator_xlarge_roll", "Not Set"}, + {"p_cs_camptent01x", "Not Set"}, + {"p_cs_canteen_hercule", "Not Set"}, + {"p_cs_chucksidebarrel03", "Not Set"}, + {"p_cs_cobalt_wood01x", "Not Set"}, + {"p_cs_collectorsbusinescard", "Not Set"}, + {"p_cs_dogliongut", "Not Set"}, + {"p_cs_dollarbill3stack01x", "Not Set"}, + {"p_cs_dollarbillstack01x", "Not Set"}, + {"p_cs_dusterarthur01x", "Not Set"}, + {"p_cs_dusterbill01x", "Not Set"}, + {"p_cs_dusterlenny01x", "Not Set"}, + {"p_cs_exoticcollectornb", "Not Set"}, + {"p_cs_fishcollector_bag", "Not Set"}, + {"p_cs_fishlargemouthbass01x", "Not Set"}, + {"p_cs_frame01x_02", "Not Set"}, + {"p_cs_frame02x_02", "Not Set"}, + {"p_cs_frame03x_02", "Not Set"}, + {"p_cs_frame04x_02", "Not Set"}, + {"p_cs_frame05x_02", "Not Set"}, + {"p_cs_frame07x_02", "Not Set"}, + {"p_cs_frame08x_02", "Not Set"}, + {"p_cs_frame09x_02", "Not Set"}, + {"p_cs_goggles01x", "Not Set"}, + {"p_cs_hectornecktie", "Not Set"}, + {"p_cs_johnmarstontrunk", "Not Set"}, + {"p_cs_knittingyarn01x", "Not Set"}, + {"p_cs_lenny_bandana01x", "Not Set"}, + {"p_cs_magiccurtain_01x", "Not Set"}, + {"p_cs_megaphone01x", "Not Set"}, + {"p_cs_micahswatch", "Not Set"}, + {"p_cs_monocle_01x", "Not Set"}, + {"p_cs_noose01x_norope", "Not Set"}, + {"p_cs_oldpaper1889", "Not Set"}, + {"p_cs_pelt_elklegendary", "Not Set"}, + {"p_cs_pelt_med_armadillo", "Not Set"}, + {"p_cs_pelt_xlarge_bearlegendary", "Not Set"}, + {"p_cs_pelt_xlarge_tbuffalo", "Not Set"}, + {"p_cs_pelt_xlarge_wbuffalo", "Not Set"}, + {"p_cs_playerbelt01x", "Not Set"}, + {"p_cs_playerbelt02x", "Not Set"}, + {"p_cs_rabbitmeatbowl01x", "Not Set"}, + {"p_cs_ripped_paper01bx", "Not Set"}, + {"p_cs_ripped_paper01cx", "Not Set"}, + {"p_cs_ripped_paper01x", "Not Set"}, + {"p_cs_rope06x", "Not Set"}, + {"p_cs_ropehandssplit_sml_2", "Not Set"}, + {"p_cs_sacksugarcornwall01x", "Not Set"}, + {"p_cs_saddle01x", "Not Set"}, + {"p_cs_saddle02x", "Not Set"}, + {"p_cs_saddle03x", "Not Set"}, + {"p_cs_saddlebundle01x", "Not Set"}, + {"p_cs_sausage01x", "Not Set"}, + {"p_cs_stackcholera01x", "Not Set"}, + {"p_cs_stackscarlet01x", "Not Set"}, + {"p_cs_statue_button01x", "Not Set"}, + {"p_cs_statue_int_lid01x", "Not Set"}, + {"p_cs_tourniquet04x", "Not Set"}, + {"p_cs_tourniquetstick03x", "Not Set"}, + {"p_decapitated_head01x", "Not Set"}, + {"p_decapitated_head01x_2", "Not Set"}, + {"p_decapitated_head02x", "Not Set"}, + {"p_decapitated_head02x_2", "Not Set"}, + {"p_decapitated_head03x", "Not Set"}, + {"p_decapitated_head3x_2", "Not Set"}, + {"p_flamboyanthat_01x", "Not Set"}, + {"p_guarmarumcase", "Not Set"}, + {"p_hat_band_000", "Not Set"}, + {"p_hat_band_001", "Not Set"}, + {"p_hat_band_002", "Not Set"}, + {"p_hat_band_003", "Not Set"}, + {"p_hat_band_004", "Not Set"}, + {"p_hat_band_006", "Not Set"}, + {"p_hat_band_007", "Not Set"}, + {"p_hat_band_008", "Not Set"}, + {"p_hat_band_009", "Not Set"}, + {"p_hat_band_010", "Not Set"}, + {"p_hat_band_011", "Not Set"}, + {"p_hat_band_012", "Not Set"}, + {"p_jorgemontezhead01x", "Not Set"}, + {"p_lgrymoosexlpelt01x", "Not Set"}, + {"p_melee_knife09_cs", "Not Set"}, + {"p_picketpin01x", "Not Set"}, + {"p_player_spurs023", "Not Set"}, + {"prop_stuntdoll_01", "Not Set"}, + {"p_stdenismap01x", "Not Set"}, + {"p_tentarmypup02x_anim", "Not Set"}, + {"p_traprope01x", "Not Set"}, + {"p_woodentrap01x", "Not Set"}, + {"s_barrelartshop01x", "Not Set"}, + {"s_beermugglass01x", "Not Set"}, + {"s_bucketmilk01x", "Not Set"}, + {"s_bucketmilk02x", "Not Set"}, + {"s_cft_arrow", "Not Set"}, + {"s_cft_arrow_dynamite", "Not Set"}, + {"s_cft_arrow_fire", "Not Set"}, + {"s_cft_arrow_smallgame", "Not Set"}, + {"s_cft_molotov01", "Not Set"}, + {"s_cft_molotov02", "Not Set"}, + {"s_champagne_gold", "Not Set"}, + {"s_champbasket01x", "Not Set"}, + {"s_champbottle01x", "Not Set"}, + {"s_champglass01x", "Not Set"}, + {"s_charlessmithshirt01x", "Not Set"}, + {"s_charmsnecklace01x", "Not Set"}, + {"s_cratejunk01x", "Not Set"}, + {"s_cs_bandanagag01x", "Not Set"}, + {"s_cs_bl_newspaper01x", "Not Set"}, + {"s_cs_bl_newspaper02x", "Not Set"}, + {"s_cs_bl_newspaper03x", "Not Set"}, + {"s_cs_bl_newspaper04x", "Not Set"}, + {"s_cs_bl_newspaper05x", "Not Set"}, + {"s_cs_bl_newspaper06x", "Not Set"}, + {"s_cs_bl_newspaper07x", "Not Set"}, + {"s_cs_bl_newspaper08x", "Not Set"}, + {"s_cs_bl_newspaper09x", "Not Set"}, + {"s_cs_bl_newspaper10x", "Not Set"}, + {"s_cs_bl_newspaper11x", "Not Set"}, + {"s_cs_bl_newspaper12x", "Not Set"}, + {"s_cs_bl_newspaper13x", "Not Set"}, + {"s_cs_bl_newspaper14x", "Not Set"}, + {"s_cs_coiledrope01x", "Not Set"}, + {"s_cs_detonator02x", "Not Set"}, + {"s_cs_fusedynamite02x", "Not Set"}, + {"s_cs_locket01x", "Not Set"}, + {"s_cs_nh_newspaper01x", "Not Set"}, + {"s_cs_nh_newspaper02x", "Not Set"}, + {"s_cs_nh_newspaper03x", "Not Set"}, + {"s_cs_nh_newspaper04x", "Not Set"}, + {"s_cs_nh_newspaper05x", "Not Set"}, + {"s_cs_nh_newspaper06x", "Not Set"}, + {"s_cs_nh_newspaper07x", "Not Set"}, + {"s_cs_nh_newspaper08x", "Not Set"}, + {"s_cs_nh_newspaper09x", "Not Set"}, + {"s_cs_nh_newspaper10x", "Not Set"}, + {"s_cs_nh_newspaper11x", "Not Set"}, + {"s_cs_nh_newspaper12x", "Not Set"}, + {"s_cs_nh_newspaper13x", "Not Set"}, + {"s_cs_nh_newspaper14x", "Not Set"}, + {"s_cs_sd_newspaper01x", "Not Set"}, + {"s_cs_sd_newspaper02x", "Not Set"}, + {"s_cs_sd_newspaper03x", "Not Set"}, + {"s_cs_sd_newspaper04x", "Not Set"}, + {"s_cs_sd_newspaper05x", "Not Set"}, + {"s_cs_sd_newspaper06x", "Not Set"}, + {"s_cs_sd_newspaper07x", "Not Set"}, + {"s_cs_sd_newspaper08x", "Not Set"}, + {"s_cs_sd_newspaper09x", "Not Set"}, + {"s_cs_sd_newspaper10x", "Not Set"}, + {"s_cs_sd_newspaper11x", "Not Set"}, + {"s_cs_sd_newspaper12x", "Not Set"}, + {"s_cs_sd_newspaper13x", "Not Set"}, + {"s_cs_sd_newspaper14x", "Not Set"}, + {"s_doglion_guts01x", "Not Set"}, + {"s_exotichat02x", "Not Set"}, + {"s_exotichat03x", "Not Set"}, + {"s_exotichat04x", "Not Set"}, + {"s_exotichat05x", "Not Set"}, + {"s_exotichat06x", "Not Set"}, + {"s_flatstraps01x", "Not Set"}, + {"s_hangingropes01x", "Not Set"}, + {"s_horseboatdoor01x", "Not Set"}, + {"s_horseboatdoor01x_a", "Not Set"}, + {"s_horsetack01x", "Not Set"}, + {"s_horsetack02x", "Not Set"}, + {"s_horsetack03x", "Not Set"}, + {"s_horsetack_strap", "Not Set"}, + {"s_inv_necklace01x_pearl", "Not Set"}, + {"s_inv_test", "Not Set"}, + {"s_johnmarstonboots_01x", "Not Set"}, + {"s_johnmarstonbootsl_01x", "Not Set"}, + {"s_johnmarstonbootsr_01x", "Not Set"}, + {"s_lionmangypaw01x", "Not Set"}, + {"s_loginteract01x", "Not Set"}, + {"s_moneysackbig01x", "Not Set"}, + {"s_oldhorseshoe01x", "Not Set"}, + {"s_pulleysackgeneric01x", "Not Set"}, + {"s_quasifuturisticrock01x", "Not Set"}, + {"s_ropehogtiehandsmedium01x_a", "Not Set"}, + {"s_ropehogtielegsmedium01x_a", "Not Set"}, + {"s_saddlewinter01x", "Not Set"}, + {"s_saddlewinter02_01x", "Not Set"}, + {"s_saddlewinter02_02x", "Not Set"}, + {"s_saddlewinter02_03x", "Not Set"}, + {"s_saddlewinter02x", "Not Set"}, + {"s_saddlewinter03_01x", "Not Set"}, + {"s_saddlewinter03_02x", "Not Set"}, + {"s_saddlewinter03x", "Not Set"}, + {"s_saddlewinter04_01x", "Not Set"}, + {"s_saddlewinter04_02x", "Not Set"}, + {"s_saddlewinter04_03x", "Not Set"}, + {"s_saddlewinter05_01x", "Not Set"}, + {"s_saddlewinter05_02x", "Not Set"}, + {"s_saddlewinter05_03x", "Not Set"}, + {"s_saddlewinter07_01x", "Not Set"}, + {"s_saddlewinter07_02x", "Not Set"}, + {"s_saddlewinter07_03x", "Not Set"}, + {"s_saddlewinter10_01x", "Not Set"}, + {"s_saddlewinter10_02x", "Not Set"}, + {"s_saddlewinter10_03x", "Not Set"}, + {"s_saddlewinter10_04x", "Not Set"}, + {"s_saddlewinter10_05x", "Not Set"}, + {"s_saddlewinter10_06x", "Not Set"}, + {"s_saintdenismap01x", "Not Set"}, + {"s_scrap_metal01x", "Not Set"}, + {"s_severedleg_l", "Not Set"}, + {"s_severedleg_r", "Not Set"}, + {"s_shotglass01x_brown", "Not Set"}, + {"s_shotglass01x_clear", "Not Set"}, + {"s_sketchbook01x", "Not Set"}, + {"s_snowminecart", "Not Set"}, + {"s_spoonbillfeather01x", "Not Set"}, + {"s_spur02x", "Not Set"}, + {"s_stagecoach004x_utp2", "Not Set"}, + {"s_sugarcanebundle_01x", "Not Set"}, + {"s_sugarcanebundle_02x", "Not Set"}, + {"s_sugarcanedebris_01x", "Not Set"}, + {"s_sugarsackgeneric01x", "Not Set"}, + {"s_sugarsackgeneric02x", "Not Set"}, + {"s_tumbler01x_brown", "Not Set"}, + {"s_tumbler01x_clear", "Not Set"}, + {"s_tumbler02x_brown", "Not Set"}, + {"s_wagonwheel01x", "Not Set"}, + {"s_wineglass01x_red", "Not Set"}, + {"boattable01x", "Not Set"}, + {"kill", "Not Set"}, + {"p_blalever01x", "Not Set"}, + {"p_bookbox01x", "Not Set"}, + {"p_chair21_leg01x", "Not Set"}, + {"p_club02x", "Not Set"}, + {"p_cs_adlblanket01x", "Not Set"}, + {"p_cs_adlblanket02x", "Not Set"}, + {"p_cs_adl_jacket", "Not Set"}, + {"p_cs_admitticket01x", "Not Set"}, + {"p_cs_alligatorpelt_large", "Not Set"}, + {"p_cs_ann_wrkr_bed01x", "Not Set"}, + {"p_cs_arrow01x", "Not Set"}, + {"p_cs_arrow01x_broken", "Not Set"}, + {"p_cs_arrow02x", "Not Set"}, + {"p_cs_arrowfletchsting", "Not Set"}, + {"p_cs_arthurbandolier", "Not Set"}, + {"p_cs_arthurhat01x", "Not Set"}, + {"p_cs_babyintro01x", "Not Set"}, + {"p_cs_baganders01x", "Not Set"}, + {"p_cs_baglevin01x", "Not Set"}, + {"p_cs_bagstrauss01x", "Not Set"}, + {"p_cs_bandage01x", "Not Set"}, + {"p_cs_bandage02x", "Not Set"}, + {"p_cs_bandana01x", "Not Set"}, + {"p_cs_bandana02x", "Not Set"}, + {"p_cs_bandana03x", "Not Set"}, + {"p_cs_barrag01x", "Not Set"}, + {"p_cs_barrel_ladle01x", "Not Set"}, + {"p_cs_basfishonthewal01x", "Not Set"}, + {"p_cs_bearskin_xlarge_roll", "Not Set"}, + {"p_cs_bed20madex", "Not Set"}, + {"p_cs_bedrollclsd01x", "Not Set"}, + {"p_cs_bedsleptinbed08x", "Not Set"}, + {"p_cs_beggarhat01x", "Not Set"}, + {"p_cs_bell03x", "Not Set"}, + {"p_cs_belt01x", "Not Set"}, + {"p_cs_bfloskin_xlarge_roll", "Not Set"}, + {"p_cs_bigfishbythefire01x", "Not Set"}, + {"p_cs_billsingle01bx", "Not Set"}, + {"p_cs_billsingle01x", "Not Set"}, + {"p_cs_billstack01x", "Not Set"}, + {"p_cs_billstack02x", "Not Set"}, + {"p_cs_billstack03x", "Not Set"}, + {"p_cs_blackbearskin_medlarge", "Not Set"}, + {"p_cs_blanket01x", "Not Set"}, + {"p_cs_boardonwall01x", "Not Set"}, + {"p_cs_bolt_strap", "Not Set"}, + {"p_cs_boots01x", "Not Set"}, + {"p_cs_boots01x_l", "Not Set"}, + {"p_cs_boots01x_r", "Not Set"}, + {"p_cs_bottleslim01x", "Not Set"}, + {"p_cs_bracelet01x", "Not Set"}, + {"p_cs_bread01x", "Not Set"}, + {"p_cs_bucket01bx", "Not Set"}, + {"p_cs_bucket01x", "Not Set"}, + {"p_cs_bucket03x", "Not Set"}, + {"p_cs_bullet_r45", "Not Set"}, + {"p_cs_bullwhip01x", "Not Set"}, + {"p_cs_burdock01x", "Not Set"}, + {"p_cs_burdock02x", "Not Set"}, + {"p_cs_burdock03x", "Not Set"}, + {"p_cs_burdockpeeled01x", "Not Set"}, + {"p_cs_camera", "Not Set"}, + {"p_cs_camerabag01x", "Not Set"}, + {"p_cs_camerahood", "Not Set"}, + {"p_cs_cameratripod", "Not Set"}, + {"p_cs_campfirecmbnd01x", "Not Set"}, + {"p_cs_candy01x", "Not Set"}, + {"p_cs_carcasselk01x", "Not Set"}, + {"p_cs_carcasspig01x", "Not Set"}, + {"p_cs_carrotslice01x", "Not Set"}, + {"p_cs_carrotstew01x", "Not Set"}, + {"p_cs_carrotstewsmall01x", "Not Set"}, + {"p_cs_catfish_chop01x", "Not Set"}, + {"p_cs_catfish_whole01bx", "Not Set"}, + {"p_cs_catfish_whole01x", "Not Set"}, + {"p_cs_cedar_trimmed", "Not Set"}, + {"p_cs_chain01x", "Not Set"}, + {"p_cs_chainlink01x", "Not Set"}, + {"p_cs_chainlink02x", "Not Set"}, + {"p_cs_champagne01x", "Not Set"}, + {"p_cs_charlesbelt01x", "Not Set"}, + {"p_cs_charlesbelt02x", "Not Set"}, + {"p_cs_charleshat01x", "Not Set"}, + {"p_cs_charlesshirt01x", "Not Set"}, + {"p_cs_check01x", "Not Set"}, + {"p_cs_chessset01x", "Not Set"}, + {"p_cs_chicken01x", "Not Set"}, + {"p_cs_chicken02x", "Not Set"}, + {"p_cs_churn01x", "Not Set"}, + {"p_cs_coachroutes01x", "Not Set"}, + {"p_cs_coffee01x", "Not Set"}, + {"p_cs_colmhat01x", "Not Set"}, + {"p_cs_compbarnplank01x", "Not Set"}, + {"p_cs_concertina01x", "Not Set"}, + {"p_cs_contrabass01x", "Not Set"}, + {"p_cs_cowpelt2_xlarge", "Not Set"}, + {"p_cs_crate03x_fixed", "Not Set"}, + {"p_cs_crateammo01x", "Not Set"}, + {"p_cs_cratetnt01x", "Not Set"}, + {"p_cs_cratetnt02x", "Not Set"}, + {"p_cs_cratetntwp01x", "Not Set"}, + {"p_cs_crocskin_medium_flat", "Not Set"}, + {"p_cs_crocskin_medium_roll", "Not Set"}, + {"p_cs_cuttingboard01x", "Not Set"}, + {"p_cs_cyteskin_medium_flat", "Not Set"}, + {"p_cs_deadtree01x", "Not Set"}, + {"p_cs_deed01x", "Not Set"}, + {"p_cs_deer01x", "Not Set"}, + {"p_cs_deercarcass", "Not Set"}, + {"p_cs_deercarcassarm", "Not Set"}, + {"p_cs_deercarcasslower", "Not Set"}, + {"p_cs_deerskin01x", "Not Set"}, + {"p_cs_deerskin02x", "Not Set"}, + {"p_cs_deerskin_medium_flat", "Not Set"}, + {"p_cs_detonator01x", "Not Set"}, + {"p_cs_dirtybag01x", "Not Set"}, + {"p_cs_dogcostumepiece01x", "Not Set"}, + {"p_cs_donation01x", "Not Set"}, + {"p_cs_dressbox01x", "Not Set"}, + {"p_cs_driscollmouthgag01x", "Not Set"}, + {"p_cs_drumkit01x", "Not Set"}, + {"p_cs_duckfeathers01x", "Not Set"}, + {"p_cs_duck_head", "Not Set"}, + {"p_cs_duck_leg", "Not Set"}, + {"p_cs_duckmeat01x", "Not Set"}, + {"p_cs_duckmeat02x", "Not Set"}, + {"p_cs_duckskinned01x", "Not Set"}, + {"p_cs_duck_wingl", "Not Set"}, + {"p_cs_duck_wingr", "Not Set"}, + {"p_cs_dusterjacket01x", "Not Set"}, + {"p_cs_dutchbelt01x", "Not Set"}, + {"p_cs_dutchhattux", "Not Set"}, + {"p_cs_eaglefeather01x", "Not Set"}, + {"p_cs_eaglefeather02x", "Not Set"}, + {"p_cs_eaglefeather03x", "Not Set"}, + {"p_cs_eaglefeather04x", "Not Set"}, + {"p_cs_easel01x", "Not Set"}, + {"p_cs_easel02x", "Not Set"}, + {"p_cs_egretplumes01x", "Not Set"}, + {"p_cs_electricchair01x", "Not Set"}, + {"p_cs_electrichelmet01x", "Not Set"}, + {"p_cs_elephant_strap", "Not Set"}, + {"p_cs_escapeartist_mask", "Not Set"}, + {"p_cs_fabriccut02x", "Not Set"}, + {"p_cs_fan01x", "Not Set"}, + {"p_cs_filet_1_chunks", "Not Set"}, + {"p_cs_filet_2_chunks", "Not Set"}, + {"p_cs_filet_3_chunks", "Not Set"}, + {"p_cs_filet_4_chunks", "Not Set"}, + {"p_cs_fishbag01x", "Not Set"}, + {"p_cs_fishingline01x", "Not Set"}, + {"p_cs_fishingpolebag01x", "Not Set"}, + {"p_cs_fishingpoleclps01x", "Not Set"}, + {"p_cs_flourbag01x", "Not Set"}, + {"p_cs_flowernecklace", "Not Set"}, + {"p_cs_flowers01x", "Not Set"}, + {"p_cs_flowers01x_single", "Not Set"}, + {"p_cs_flyinggoggle01x", "Not Set"}, + {"p_cs_footlocker01x", "Not Set"}, + {"p_cs_frame01ax", "Not Set"}, + {"p_cs_frame01x", "Not Set"}, + {"p_cs_frame02ax", "Not Set"}, + {"p_cs_frame02x", "Not Set"}, + {"p_cs_frame03ax", "Not Set"}, + {"p_cs_frame03x", "Not Set"}, + {"p_cs_frame04ax", "Not Set"}, + {"p_cs_frame04x", "Not Set"}, + {"p_cs_frame05ax", "Not Set"}, + {"p_cs_frame05x", "Not Set"}, + {"p_cs_frame06ax", "Not Set"}, + {"p_cs_frame06x", "Not Set"}, + {"p_cs_frame07ax", "Not Set"}, + {"p_cs_frame07x", "Not Set"}, + {"p_cs_frame08ax", "Not Set"}, + {"p_cs_frame08x", "Not Set"}, + {"p_cs_frame09ax", "Not Set"}, + {"p_cs_frame09x", "Not Set"}, + {"p_cs_fusedynamite01x", "Not Set"}, + {"p_cs_fusespool01x", "Not Set"}, + {"p_cs_fusespoolwire01x", "Not Set"}, + {"p_cs_fusespoolwire02x", "Not Set"}, + {"p_cs_gag01x", "Not Set"}, + {"p_cs_gatlingbulletbelt", "Not Set"}, + {"p_cs_generator01x", "Not Set"}, + {"p_cs_giftbox01x", "Not Set"}, + {"p_cs_gilamonsterpelt01x", "Not Set"}, + {"p_cs_gillbook01x", "Not Set"}, + {"p_cs_glass02x", "Not Set"}, + {"p_cs_grainbag01x", "Not Set"}, + {"p_cs_grapplehook01x", "Not Set"}, + {"p_cs_grindingwheelx", "Not Set"}, + {"p_cs_gua_branch01x", "Not Set"}, + {"p_cs_gun_strap", "Not Set"}, + {"p_cs_hammock01x", "Not Set"}, + {"p_cs_hammock02x", "Not Set"}, + {"p_cs_handkerchief01bx", "Not Set"}, + {"p_cs_handkerchief01x", "Not Set"}, + {"p_cs_harness01x", "Not Set"}, + {"p_cs_haypiece01x", "Not Set"}, + {"p_cs_holdemhand01x", "Not Set"}, + {"p_cs_holdemhand02x", "Not Set"}, + {"p_cs_hookpulley01x", "Not Set"}, + {"p_cs_horsegelding01x", "Not Set"}, + {"p_cs_horseharness01x", "Not Set"}, + {"p_cs_horsereins01x", "Not Set"}, + {"p_cs_horsereins02x", "Not Set"}, + {"p_cs_horseswitch01x", "Not Set"}, + {"p_cs_hoseahat", "Not Set"}, + {"p_cs_iguanapelt", "Not Set"}, + {"p_cs_iguanapelt02x", "Not Set"}, + {"p_cs_indianpipebag01x", "Not Set"}, + {"p_cs_jack01x", "Not Set"}, + {"p_cs_jackhat01x", "Not Set"}, + {"p_cs_javierbelt01x", "Not Set"}, + {"p_cs_jerky01x", "Not Set"}, + {"p_cs_johnbelt01x", "Not Set"}, + {"p_cs_jug01x", "Not Set"}, + {"p_cs_kettle01x", "Not Set"}, + {"p_cs_kindling01x", "Not Set"}, + {"p_cs_knitting01x", "Not Set"}, + {"p_cs_lasso_bountyhunter", "Not Set"}, + {"p_cs_leonsnieceveil_01x", "Not Set"}, + {"p_cs_liquid01x", "Not Set"}, + {"p_cs_liquidpour01x", "Not Set"}, + {"p_cs_lockjail01bx", "Not Set"}, + {"p_cs_lockjail01x", "Not Set"}, + {"p_cs_lockjail01x_lock", "Not Set"}, + {"p_cs_lockjail02x_lock", "Not Set"}, + {"p_cs_log01x", "Not Set"}, + {"p_cs_lon_basedr", "Not Set"}, + {"p_cs_lon_basedr_1", "Not Set"}, + {"p_cs_lootsack01x", "Not Set"}, + {"p_cs_lootsack02x", "Not Set"}, + {"p_cs_lootsack03x", "Not Set"}, + {"p_cs_luc_basedr", "Not Set"}, + {"p_cs_luc_basedr_1", "Not Set"}, + {"p_cs_madelineveil_01x", "Not Set"}, + {"p_cs_magnifico_pouch", "Not Set"}, + {"p_cs_makeshiftstretcher01x", "Not Set"}, + {"p_cs_map01x", "Not Set"}, + {"p_cs_mapprisoner01x", "Not Set"}, + {"p_cs_marstonhat01x", "Not Set"}, + {"p_cs_marstonlocker01x", "Not Set"}, + {"p_cs_marston_vest01x", "Not Set"}, + {"p_cs_mattress01x", "Not Set"}, + {"p_cs_mayorcurtains_01x", "Not Set"}, + {"p_cs_meatbowl01x", "Not Set"}, + {"p_cs_meathanger01x", "Not Set"}, + {"p_cs_meatstew01x", "Not Set"}, + {"p_cs_meatstewsmall01x", "Not Set"}, + {"p_cs_melee_lasso01", "Not Set"}, + {"p_cs_miltonandrewshat", "Not Set"}, + {"p_cs_miningpan01x", "Not Set"}, + {"p_cs_molotov_cloth", "Not Set"}, + {"p_cs_moonshine01x", "Not Set"}, + {"p_cs_moonshinerag01x", "Not Set"}, + {"p_cs_mooringrope01x", "Not Set"}, + {"p_cs_mradlerfrozen01x", "Not Set"}, + {"p_cs_mtsaloontable", "Not Set"}, + {"p_cs_nailbarrel01x", "Not Set"}, + {"p_cs_napkin01x", "Not Set"}, + {"p_cs_nblpolicehat01x", "Not Set"}, + {"p_cs_necklacecrss01x", "Not Set"}, + {"p_cs_necklacecrss02x", "Not Set"}, + {"p_cs_noose01x", "Not Set"}, + {"p_cs_noose01xb", "Not Set"}, + {"p_cs_nooseshort01x", "Not Set"}, + {"p_cs_oilcan01x", "Not Set"}, + {"p_cs_onionslice01x", "Not Set"}, + {"p_cs_owlfeathertrinket", "Not Set"}, + {"p_cs_pelt_large", "Not Set"}, + {"p_cs_pelt_med_badger", "Not Set"}, + {"p_cs_pelt_medium", "Not Set"}, + {"p_cs_pelt_medium_og", "Not Set"}, + {"p_cs_pelt_medlarge", "Not Set"}, + {"p_cs_pelt_medlarge_roll", "Not Set"}, + {"p_cs_pelt_med_muskrat", "Not Set"}, + {"p_cs_pelt_med_possum", "Not Set"}, + {"p_cs_pelt_med_raccoon", "Not Set"}, + {"p_cs_pelt_med_skunk", "Not Set"}, + {"p_cs_pelt_wolf", "Not Set"}, + {"p_cs_pelt_wolf_roll", "Not Set"}, + {"p_cs_pelt_ws_alligator", "Not Set"}, + {"p_cs_pelt_xlarge", "Not Set"}, + {"p_cs_pelt_xlarge_alligator", "Not Set"}, + {"p_cs_pelt_xlarge_bear", "Not Set"}, + {"p_cs_pelt_xlarge_buffalo", "Not Set"}, + {"p_cs_pelt_xlarge_elk", "Not Set"}, + {"p_cs_photoplate01x", "Not Set"}, + {"p_cs_pick01x", "Not Set"}, + {"p_cs_pick02x", "Not Set"}, + {"p_cs_pickledeggs01x", "Not Set"}, + {"p_cs_pieceofpaperlist01x", "Not Set"}, + {"p_cs_pillow01x", "Not Set"}, + {"p_cs_pitcher03bx", "Not Set"}, + {"p_cs_platestew01x", "Not Set"}, + {"p_cs_platestew02x_noanim", "Not Set"}, + {"p_cs_platestew03x_clean", "Not Set"}, + {"p_cs_platestew03x_emty", "Not Set"}, + {"p_cs_playersatchel", "Not Set"}, + {"p_cs_pokerhand01x", "Not Set"}, + {"p_cs_pokerhand02x", "Not Set"}, + {"p_cs_policejacket01x", "Not Set"}, + {"p_cs_portfolio01x", "Not Set"}, + {"p_cs_portfolio02x", "Not Set"}, + {"p_cs_pot01x", "Not Set"}, + {"p_cs_pot02x", "Not Set"}, + {"p_cs_potatoslice01x", "Not Set"}, + {"p_cs_potatostew01x", "Not Set"}, + {"p_cs_potatostewsmall01x", "Not Set"}, + {"p_cs_pro_bed_unmade", "Not Set"}, + {"p_cs_prostheticleg_01bx", "Not Set"}, + {"p_cs_prostheticleg_01x", "Not Set"}, + {"p_cs_purse01x", "Not Set"}, + {"p_cs_rabbit01x", "Not Set"}, + {"p_cs_rabbit02x", "Not Set"}, + {"p_cs_rabbitfeetless", "Not Set"}, + {"p_cs_rabbitgut", "Not Set"}, + {"p_cs_rabbithead01x", "Not Set"}, + {"p_cs_rabbitheadless", "Not Set"}, + {"p_cs_rabbitmeat01x", "Not Set"}, + {"p_cs_rabbitmeat02x", "Not Set"}, + {"p_cs_rabbitskin_flat", "Not Set"}, + {"p_cs_rag01x", "Not Set"}, + {"p_cs_rag02x", "Not Set"}, + {"p_cs_railroadbond01x", "Not Set"}, + {"p_cs_railroadtrack01x", "Not Set"}, + {"p_cs_railroadtrack02x", "Not Set"}, + {"p_cs_rifle_strap", "Not Set"}, + {"p_cs_roc_hse_bed", "Not Set"}, + {"p_cs_rollupcig01x", "Not Set"}, + {"p_cs_roots_01x", "Not Set"}, + {"p_cs_roots_02x", "Not Set"}, + {"p_cs_rope01x", "Not Set"}, + {"p_cs_rope02x", "Not Set"}, + {"p_cs_rope03bx", "Not Set"}, + {"p_cs_rope03x", "Not Set"}, + {"p_cs_rope04x", "Not Set"}, + {"p_cs_rope05x", "Not Set"}, + {"p_cs_rope05x_coiled", "Not Set"}, + {"p_cs_ropehandssplit", "Not Set"}, + {"p_cs_ropehandssplit_sml", "Not Set"}, + {"p_cs_ropelasso01x", "Not Set"}, + {"p_cs_ropelegsplit", "Not Set"}, + {"p_cs_ropelegsplit02", "Not Set"}, + {"p_cs_rosary01x", "Not Set"}, + {"p_cs_rufusblanket01x", "Not Set"}, + {"p_cs_rug01x", "Not Set"}, + {"p_cs_russlinggate01x", "Not Set"}, + {"p_cs_sackcoal01x", "Not Set"}, + {"p_cs_sackcorn01x", "Not Set"}, + {"p_cs_sacklarge01x", "Not Set"}, + {"p_cs_sacklarge02x", "Not Set"}, + {"p_cs_saddle_bag01x", "Not Set"}, + {"p_cs_sandbag01x", "Not Set"}, + {"p_cs_sandwich01x", "Not Set"}, + {"p_cs_sardine0x", "Not Set"}, + {"p_cs_satchel01x", "Not Set"}, + {"p_cs_sauce01x", "Not Set"}, + {"p_cs_scroll01x", "Not Set"}, + {"p_cs_seanhat01x01", "Not Set"}, + {"p_cs_seanmask01x", "Not Set"}, + {"p_cs_severedhand01x", "Not Set"}, + {"p_cs_shackleleg01x", "Not Set"}, + {"p_cs_shackleleg02x", "Not Set"}, + {"p_cs_shackleleg03x", "Not Set"}, + {"p_cs_shackleleg04x", "Not Set"}, + {"p_cs_shackleleg05x", "Not Set"}, + {"p_cs_shacklewrist01x", "Not Set"}, + {"p_cs_shacklewrist02x", "Not Set"}, + {"p_cs_shadbmnt_shkl01x", "Not Set"}, + {"p_cs_shoplist01x", "Not Set"}, + {"p_cs_shotglass01x", "Not Set"}, + {"p_cs_shotglass02x", "Not Set"}, + {"p_cs_shotgun_bullet", "Not Set"}, + {"p_cs_shutterrelease", "Not Set"}, + {"p_cs_singlerailtrack01x", "Not Set"}, + {"p_cs_sink03x", "Not Set"}, + {"p_cs_sketch01x", "Not Set"}, + {"p_cs_snowball01x", "Not Set"}, + {"p_cs_sock01x", "Not Set"}, + {"p_cs_stagecoach001x", "Not Set"}, + {"p_cs_statue01x", "Not Set"}, + {"p_cs_steakslice01x", "Not Set"}, + {"p_cs_steakslice02x", "Not Set"}, + {"p_cs_stethascope01x", "Not Set"}, + {"p_cs_stmdnky01x", "Not Set"}, + {"p_cs_stolen02x", "Not Set"}, + {"p_cs_stolen03x", "Not Set"}, + {"p_cs_stolen04x", "Not Set"}, + {"p_cs_stolen05x", "Not Set"}, + {"p_cs_stolen06x", "Not Set"}, + {"p_cs_straightjacket", "Not Set"}, + {"p_cs_sugarbag01x", "Not Set"}, + {"p_cs_suitcase01x", "Not Set"}, + {"p_cs_suitcase02x", "Not Set"}, + {"p_cs_suitcase03x", "Not Set"}, + {"p_cs_suitcase04x", "Not Set"}, + {"p_cs_suitcase05x", "Not Set"}, + {"p_cs_suitcase05x_up", "Not Set"}, + {"p_cs_supplies01x", "Not Set"}, + {"p_cs_supplies02x", "Not Set"}, + {"p_cs_supplies03x", "Not Set"}, + {"p_cs_surgicalneedle", "Not Set"}, + {"p_cs_suspender01x", "Not Set"}, + {"p_cs_syringe01x", "Not Set"}, + {"p_cs_syringe02x", "Not Set"}, + {"p_cs_tablecoffee04x", "Not Set"}, + {"p_cs_tapemeasure01x", "Not Set"}, + {"p_cs_tourniquet01x", "Not Set"}, + {"p_cs_tourniquet02x", "Not Set"}, + {"p_cs_tourniquet03x", "Not Set"}, + {"p_cs_tourniquetstick01x", "Not Set"}, + {"p_cs_towel01x", "Not Set"}, + {"p_cs_towel02x", "Not Set"}, + {"p_cs_towel02x_trans", "Not Set"}, + {"p_cs_toyhorse", "Not Set"}, + {"p_cs_traincratetnt01x", "Not Set"}, + {"p_cs_traincratetnt02x", "Not Set"}, + {"p_cs_trainplans01x", "Not Set"}, + {"p_cs_tray01x", "Not Set"}, + {"p_cs_treefallen01x", "Not Set"}, + {"p_cs_treestanding01x", "Not Set"}, + {"p_cs_trkybreastmeat01x", "Not Set"}, + {"p_cs_trout01x", "Not Set"}, + {"p_cs_trout02x", "Not Set"}, + {"p_cs_trout03bx", "Not Set"}, + {"p_cs_trout03x", "Not Set"}, + {"p_cs_turtlemeat01x", "Not Set"}, + {"p_cs_unclehat01x", "Not Set"}, + {"p_cs_v2_rope04x", "Not Set"}, + {"p_cs_valjailblind_01", "Not Set"}, + {"p_cs_valjailblind_02", "Not Set"}, + {"p_cs_valsal2_curtain01x", "Not Set"}, + {"p_cs_vegsack_com", "Not Set"}, + {"p_cs_vegsack_down", "Not Set"}, + {"p_cs_vegsack_up", "Not Set"}, + {"p_cs_wagon02x", "Not Set"}, + {"p_cs_wagon02xbroken", "Not Set"}, + {"p_cs_wagonwheel01x", "Not Set"}, + {"p_cs_warcoin01x", "Not Set"}, + {"p_cs_warmedal01x", "Not Set"}, + {"p_cs_watergls01x", "Not Set"}, + {"p_cs_whiskeygls01x", "Not Set"}, + {"p_cs_wire01x", "Not Set"}, + {"p_cs_wolfpelt_large", "Not Set"}, + {"p_cs_woodpile01x", "Not Set"}, + {"p_door12x_destruct", "Not Set"}, + {"p_doornbd39x_destruct", "Not Set"}, + {"p_drumstick01x", "Not Set"}, + {"p_egg01x", "Not Set"}, + {"p_hotchkisscrate01x", "Not Set"}, + {"p_javierknife_temp", "Not Set"}, + {"p_molararthur01x", "Not Set"}, + {"p_pocketmirror01x", "Not Set"}, + {"pr_areawarn", "Not Set"}, + {"p_sc_cupid_statue01x", "Not Set"}, + {"p_smokebomb01x", "Not Set"}, + {"p_sunburncover01x", "Not Set"}, + {"p_test_butterfly", "Not Set"}, + {"p_tntwagon02x_r", "Not Set"}, + {"p_wallet01x", "Not Set"}, + {"p_xraymachine01x", "Not Set"}, + {"s_agu_pipetest002_a", "Not Set"}, + {"s_agu_pipetestweel01x", "Not Set"}, + {"s_alligatoregg01x", "Not Set"}, + {"s_bearbaitconsumable01x", "Not Set"}, + {"s_beausbracelet01x", "Not Set"}, + {"s_cinderblock01x", "Not Set"}, + {"s_cs_californiafeather_01x", "Not Set"}, + {"s_cs_cranewhooping_01x", "Not Set"}, + {"s_cs_hawkfeather_01x", "Not Set"}, + {"s_cs_heron_01_plumes_01x", "Not Set"}, + {"s_cs_heronfeather_04x", "Not Set"}, + {"s_cs_mrsadlerboots01x_l", "Not Set"}, + {"s_cs_mrsadlerboots01x_r", "Not Set"}, + {"s_cs_owlfeather_01x", "Not Set"}, + {"s_cs_pelicanfeather_01x", "Not Set"}, + {"s_cs_roseatefeather_04x", "Not Set"}, + {"s_cs_roseatespoonbill01x", "Not Set"}, + {"s_cs_shamanbag01x", "Not Set"}, + {"s_cs_smalllfeather01x", "Not Set"}, + {"s_cs_vulturefeather_01x", "Not Set"}, + {"s_escapebox01x", "Not Set"}, + {"s_escapeboxknife01x", "Not Set"}, + {"s_escapeboxpaddock01x", "Not Set"}, + {"s_firebaton01x", "Not Set"}, + {"s_firestick01x", "Not Set"}, + {"s_fishcolectorsatchel01x", "Not Set"}, + {"s_hotairballoon_sandbag", "Not Set"}, + {"s_lon_mule_rope01x", "Not Set"}, + {"s_lotusfirepalm_01x", "Not Set"}, + {"s_marstonblanket01x", "Not Set"}, + {"s_marstonblanket01x_colter", "Not Set"}, + {"s_noosestand01x", "Not Set"}, + {"s_sackcloth", "Not Set"}, + {"train_coupler01x", "Not Set"}, + {"p_12moonshinecrate01", "Not Set"}, + {"p_ancientbnrztray01x", "Not Set"}, + {"p_ancientfertilityfgr01x", "Not Set"}, + {"p_ancienthoe01x", "Not Set"}, + {"p_caveentryblock01x", "Not Set"}, + {"p_cigarettecardsmcase01x", "Not Set"}, + {"p_conductrodtele01x", "Not Set"}, + {"p_crackpotloudspeaker01x", "Not Set"}, + {"p_crackpotmicrophone01x", "Not Set"}, + {"p_crackpotpasystem01x", "Not Set"}, + {"p_cratecover06x_tnt", "Not Set"}, + {"p_cratemaxim02x", "Not Set"}, + {"p_cs_cratetntcover01x", "Not Set"}, + {"p_cs_hordervetray01x", "Not Set"}, + {"p_cs_hordervetray03x", "Not Set"}, + {"p_disdreamcatcherwind01x", "Not Set"}, + {"p_disdreamcatcherwind02x", "Not Set"}, + {"p_disdreamcatcherwind03x", "Not Set"}, + {"p_disdreamcatcherwind04x", "Not Set"}, + {"p_disdreamcatcherwind05x", "Not Set"}, + {"p_dis_hat_mr1_051", "Not Set"}, + {"p_dislantern01x", "Not Set"}, + {"p_dispan01x", "Not Set"}, + {"p_dis_prisonerescape01", "Not Set"}, + {"p_dis_prisonerescape02", "Not Set"}, + {"p_dis_scm_deadsnake", "Not Set"}, + {"p_disskull01x", "Not Set"}, + {"p_dis_stuffedgorilla_01", "Not Set"}, + {"p_diswiskeytreebottlewind01x", "Not Set"}, + {"p_diswiskeytreebottlewind02x", "Not Set"}, + {"p_diswiskeytreebottlewind03x", "Not Set"}, + {"p_eaglependant01x", "Not Set"}, + {"p_egretparts01x", "Not Set"}, + {"p_egretparts02x", "Not Set"}, + {"p_egretparts03x", "Not Set"}, + {"p_electricfielddetector01x", "Not Set"}, + {"p_electricfielddetector01x_010", "Not Set"}, + {"p_electricfielddetector01x_020", "Not Set"}, + {"p_electricfielddetector01x_030", "Not Set"}, + {"p_electricfielddetector01x_040", "Not Set"}, + {"p_electricfielddetector01x_050", "Not Set"}, + {"p_electricfielddetector01x_060", "Not Set"}, + {"p_electricfielddetector01x_070", "Not Set"}, + {"p_electricfielddetector01x_080", "Not Set"}, + {"p_electricfielddetector01x_090", "Not Set"}, + {"p_electricfielddetector01x_150", "Not Set"}, + {"p_electricfielddetector01x_200", "Not Set"}, + {"p_electricfielddetector01x_250", "Not Set"}, + {"p_electricfielddetector01x_300", "Not Set"}, + {"p_electricfielddetector01x_350", "Not Set"}, + {"p_electricfielddetector01x_g", "Not Set"}, + {"p_fffboard01x", "Not Set"}, + {"p_icechestlrg01x", "Not Set"}, + {"p_lanternhang", "Not Set"}, + {"p_lght_rhosalbrt1x", "Not Set"}, + {"p_mailcatcherbag01x", "Not Set"}, + {"p_mis_mud1_wagon02x", "Not Set"}, + {"p_mission_br2_01", "Not Set"}, + {"p_mission_br2_02", "Not Set"}, + {"p_mission_caravanwagon02x", "Not Set"}, + {"p_mission_crategatling01x", "Not Set"}, + {"p_mission_marston2", "Not Set"}, + {"p_new_gang01door", "Not Set"}, + {"p_newpie_tranlever01x", "Not Set"}, + {"p_newpie_tranlever02x", "Not Set"}, + {"p_panhang", "Not Set"}, + {"p_schoolhousebell01x", "Not Set"}, + {"p_si_bracelet01x", "Not Set"}, + {"p_si_cathbrooch01x", "Not Set"}, + {"p_si_drugbible01x", "Not Set"}, + {"p_si_pocketwatch01x", "Not Set"}, + {"p_si_wanted_javier01x", "Not Set"}, + {"p_skullhang", "Not Set"}, + {"p_test_tinthorse", "Not Set"}, + {"p_whiskeyempty01x", "Not Set"}, + {"s_airshipcrashed02x", "Not Set"}, + {"s_alligatorlimb_collectable", "Not Set"}, + {"s_ann05_hosptentdoor", "Not Set"}, + {"s_aplsd_hook", "Not Set"}, + {"s_aplsd_hrsatt", "Not Set"}, + {"s_aplsd_log", "Not Set"}, + {"s_bed17x", "Not Set"}, + {"s_bed17x_blanket", "Not Set"}, + {"s_boatsm01x_std", "Not Set"}, + {"s_boobytrap01x", "Not Set"}, + {"s_boobytrap01xb", "Not Set"}, + {"s_bookcart01x", "Not Set"}, + {"s_bookcart02x", "Not Set"}, + {"s_bottlemessage01x", "Not Set"}, + {"s_bottlemessage02x", "Not Set"}, + {"s_businesscard01x", "Not Set"}, + {"s_catfishtail01_collectable", "Not Set"}, + {"s_catfishtail02_collectable", "Not Set"}, + {"s_champholder01x", "Not Set"}, + {"s_champholder02x", "Not Set"}, + {"s_cheatcode_aslabd", "Not Set"}, + {"s_cheatcode_iisotw", "Not Set"}, + {"s_cheatcode_kydl", "Not Set"}, + {"s_cheatcode_share", "Not Set"}, + {"s_cheatcode_vaiv", "Not Set"}, + {"s_cheatcode_yfbyd", "Not Set"}, + {"s_cheatcode_ywmtyh", "Not Set"}, + {"s_cheatcode_ywp", "Not Set"}, + {"s_che_woodbin01x", "Not Set"}, + {"s_circuswagon_piece01x", "Not Set"}, + {"s_clotharthurcover01x", "Not Set"}, + {"s_clothesrolled01x", "Not Set"}, + {"s_clothpile01x", "Not Set"}, + {"s_cntlrdoboat_cmbd", "Not Set"}, + {"s_coach2crashedutopia2", "Not Set"}, + {"s_combvikingancient01x", "Not Set"}, + {"s_concarddamsen01x", "Not Set"}, + {"s_controlradioboat01x", "Not Set"}, + {"s_cowrib_collectable", "Not Set"}, + {"s_cowspine_collectable", "Not Set"}, + {"s_cs_hidewolf01x", "Not Set"}, + {"s_cs_hidewolf01x_sm", "Not Set"}, + {"s_dd_lock", "Not Set"}, + {"s_dd_lock_2", "Not Set"}, + {"s_deadgrandma01x", "Not Set"}, + {"s_dearantlers_collectable", "Not Set"}, + {"s_disc_ghosttrain", "Not Set"}, + {"s_disc_pamphlet01x", "Not Set"}, + {"s_disc_pearl01x", "Not Set"}, + {"s_disc_spookybell01x", "Not Set"}, + {"s_doorsglw01x", "Not Set"}, + {"s_dynamitelootbox01x", "Not Set"}, + {"s_edsauruship_collectible", "Not Set"}, + {"s_edsaurustail_collectable", "Not Set"}, + {"s_featherhat01x", "Not Set"}, + {"s_fertilitystatue01x", "Not Set"}, + {"s_fortuneteller01x", "Not Set"}, + {"s_gatoregg01x", "Not Set"}, + {"s_gatoregg02x", "Not Set"}, + {"s_gatoreggnest01x", "Not Set"}, + {"s_gry_rock01x", "Not Set"}, + {"s_hat_miner01x", "Not Set"}, + {"s_horsearm02_collectable", "Not Set"}, + {"s_horsearrm01_collectable", "Not Set"}, + {"s_hoseahuntingbag01x", "Not Set"}, + {"s_hotairballoon01x", "Not Set"}, + {"s_humnahand01_collectable", "Not Set"}, + {"s_ind1_redrope01x", "Not Set"}, + {"s_jackdrawing01x", "Not Set"}, + {"s_knapsack01x", "Not Set"}, + {"s_knapsack_static01x", "Not Set"}, + {"s_leverradioboat01x", "Not Set"}, + {"s_loansharkundertaker01x", "Not Set"}, + {"s_masknative01x", "Not Set"}, + {"s_mask_pig01x", "Not Set"}, + {"s_maximcrate01x", "Not Set"}, + {"s_maximtripod01x", "Not Set"}, + {"s_mayorswifepackage01x", "Not Set"}, + {"s_mission_trainwrecked01x", "Not Set"}, + {"s_neckerchief01x", "Not Set"}, + {"s_necklacebearclaw", "Not Set"}, + {"s_necklacegoldring01x", "Not Set"}, + {"s_neclaceemerald01x", "Not Set"}, + {"s_neclacemayan01x", "Not Set"}, + {"s_penelopebag01x", "Not Set"}, + {"s_penelopebracelet01x", "Not Set"}, + {"s_penelopepurse01x", "Not Set"}, + {"s_pie_train_stop", "Not Set"}, + {"s_privatearmoured_desdoors", "Not Set"}, + {"s_privatearmoured_doors", "Not Set"}, + {"s_prwindow", "Not Set"}, + {"s_pumajaw_collectable", "Not Set"}, + {"s_pumalimb01_collectable", "Not Set"}, + {"s_pumalimb02_collectable", "Not Set"}, + {"s_racoonhand_collectable", "Not Set"}, + {"s_racoonskull_collectable", "Not Set"}, + {"s_rc_camprug01x", "Not Set"}, + {"s_rc_poisonedwater01x", "Not Set"}, + {"s_rev_schofieldammo02x", "Not Set"}, + {"s_rhodgunsmithboard", "Not Set"}, + {"s_rock01x", "Not Set"}, + {"s_scriptropeattach", "Not Set"}, + {"s_shipdebris01x_sea", "Not Set"}, + {"s_shoeicide01x", "Not Set"}, + {"s_slotharm01_collectable", "Not Set"}, + {"s_slotharm02_collectable", "Not Set"}, + {"s_slothchest02_collectible", "Not Set"}, + {"s_slothchest_collectible", "Not Set"}, + {"s_slothhip_collectable", "Not Set"}, + {"s_slothlimb01_collectable", "Not Set"}, + {"s_slothlimb02_collectable", "Not Set"}, + {"s_slothlimb03_collectable", "Not Set"}, + {"s_slothlimb_collectable", "Not Set"}, + {"s_slothribs_collectable", "Not Set"}, + {"s_spinosaurus_collectable", "Not Set"}, + {"s_squirrelmarston01x", "Not Set"}, + {"s_stagecoach004xcrashedutopia2", "Not Set"}, + {"s_switchpuzzle01x", "Not Set"}, + {"s_switchpuzzle01x_lever_2", "Not Set"}, + {"s_switchpuzzle01x_lever_3", "Not Set"}, + {"s_trainpin01x", "Not Set"}, + {"s_trapdoorphoto", "Not Set"}, + {"s_trunkvanhorn01x", "Not Set"}, + {"s_turtleshell_collectable", "Not Set"}, + {"s_ufo01x", "Not Set"}, + {"s_ufo02x", "Not Set"}, + {"s_urndiscoverable01x", "Not Set"}, + {"s_wagon05xbr2cover", "Not Set"}, + {"s_wagonconestoga01x", "Not Set"}, + {"s_wagonprison_lock", "Not Set"}, + {"s_walrus_collectable", "Not Set"}, + {"p_group_skull01x", "Not Set"}, + {"p_jumphurdles01x", "Not Set"}, + {"p_mp_bookset05x", "Not Set"}, + {"p_mp_crate06x", "Not Set"}, + {"p_mp_map02x", "Not Set"}, + {"p_mptenttanner01x", "Not Set"}, + {"p_mptenttrack301x", "Not Set"}, + {"p_mptenttrack303x", "Not Set"}, + {"p_mptenttrack306x", "Not Set"}, + {"p_veh_gunforhire01x", "Not Set"}, + {"p_veh_gunforhire02x", "Not Set"}, + {"p_veh_gunforhire03x", "Not Set"}, + {"s_descratebooze01x", "Not Set"}, + {"s_descratefuel01x", "Not Set"}, + {"s_descrategoods01x", "Not Set"}, + {"s_descratetobacco01x", "Not Set"}, + {"s_descrateweapons01x", "Not Set"}, + {"s_fasttravelmarker01x", "Not Set"}, + {"s_healthpack01x", "Not Set"}, + {"s_moonshinesack01x", "Not Set"}, + {"s_moonshinesack02x", "Not Set"}, + {"s_moonshinesupplies_m01", "Not Set"}, + {"s_moonshinesupplies_m02", "Not Set"}, + {"s_moonshinesupplies_s01", "Not Set"}, + {"s_moonshinesupplies_s02", "Not Set"}, + {"s_mp_campflagus", "Not Set"}, + {"s_mp_stone_marker03a", "Not Set"}, + {"s_mp_stone_marker04a", "Not Set"}, + {"s_pulleysack01x", "Not Set"}, + {"s_pulleysack02x", "Not Set"}, + {"s_racecheckpoint01x", "Not Set"}, + {"s_racefinish01x", "Not Set"}, + {"s_splitfirelog01x", "Not Set"}, + {"s_splitfirelog01x_nofire", "Not Set"}, + {"s_splitfirelog02x", "Not Set"}, + {"s_splitfirelog02x_nofire", "Not Set"}, + {"s_weaponblocker5x5x5", "Not Set"}, + {"s_whittlingwolf01a", "Not Set"}, + {"s_whittlingwolf01b", "Not Set"}, + {"s_whittlingwolf01c", "Not Set"}, + {"s_whittlingwolf01d", "Not Set"}, + {"s_whittlingwolf01e", "Not Set"}, + {"s_whittlingwolf02a", "Not Set"}, + {"s_whittlingwolf02b", "Not Set"}, + {"s_whittlingwolf02c", "Not Set"}, + {"s_whittlingwolf02d", "Not Set"}, + {"s_whittlingwolf02e", "Not Set"}, + {"p_book_w13_9_h18_4_bible", "Not Set"}, + {"p_cs_advertposter01x", "Not Set"}, + {"p_cs_album01x", "Not Set"}, + {"p_cs_bandito_mine01x", "Not Set"}, + {"p_cs_bandito_shack01x", "Not Set"}, + {"p_cs_bear_fight01x", "Not Set"}, + {"p_cs_bible01x", "Not Set"}, + {"p_cs_blackbelle_bounty01x", "Not Set"}, + {"p_cs_book01x", "Not Set"}, + {"p_cs_book02x", "Not Set"}, + {"p_cs_book03x", "Not Set"}, + {"p_cs_book04x", "Not Set"}, + {"p_cs_book04x_frag_dup", "Not Set"}, + {"p_cs_book05x", "Not Set"}, + {"p_cs_bookartofwar01x", "Not Set"}, + {"p_cs_bookdutchnovel01x", "Not Set"}, + {"p_cs_bookevelynmiller", "Not Set"}, + {"p_cs_bookevelynmiller_eden01x", "Not Set"}, + {"p_cs_bookevelynmiller_inferno", "Not Set"}, + {"p_cs_bookevelynmillerinferno1", "Not Set"}, + {"p_cs_book_existenceoblivion", "Not Set"}, + {"p_cs_book_forage", "Not Set"}, + {"p_cs_bookhardcv01x", "Not Set"}, + {"p_cs_bookhardcv02x", "Not Set"}, + {"p_cs_bookhardcv02x_dupe", "Not Set"}, + {"p_cs_bookhardcv03x", "Not Set"}, + {"p_cs_bookhardcv04x", "Not Set"}, + {"p_cs_bookhardcv05x", "Not Set"}, + {"p_cs_bookhardcv06x", "Not Set"}, + {"p_cs_bookhardcv06x_a", "Not Set"}, + {"p_cs_bookhardcv07x", "Not Set"}, + {"p_cs_bookhardcv07x_a", "Not Set"}, + {"p_cs_bookhardcv08x", "Not Set"}, + {"p_cs_bookhardcv08x_a", "Not Set"}, + {"p_cs_bookhardcv09x", "Not Set"}, + {"p_cs_bookhardcv09x_a", "Not Set"}, + {"p_cs_bookhardcv10x", "Not Set"}, + {"p_cs_bookhardcv11x", "Not Set"}, + {"p_cs_bookhardcv11x_a", "Not Set"}, + {"p_cs_book_hunting", "Not Set"}, + {"p_cs_bookjaneeyre01x", "Not Set"}, + {"p_cs_bookkelonian", "Not Set"}, + {"p_cs_book_ladyofmanor", "Not Set"}, + {"p_cs_book_oldfieldguide", "Not Set"}, + {"p_cs_book_shrew", "Not Set"}, + {"p_cs_book_shrew_a", "Not Set"}, + {"p_cs_book_small01x", "Not Set"}, + {"p_cs_bridecatalogue01x", "Not Set"}, + {"p_cs_bridecatpage01x", "Not Set"}, + {"p_cs_catalogue01x", "Not Set"}, + {"p_cs_catalogue01x_noanim", "Not Set"}, + {"p_cs_chain_gang01x", "Not Set"}, + {"p_cs_contractsilo01x", "Not Set"}, + {"p_cs_deed02x", "Not Set"}, + {"p_cs_envelope01x", "Not Set"}, + {"p_cs_envelope02x", "Not Set"}, + {"p_cs_envelope_cls_blank", "Not Set"}, + {"p_cs_envelope_mayor", "Not Set"}, + {"p_cs_getrich_book01x", "Not Set"}, + {"p_cs_gunslingerphoto01x", "Not Set"}, + {"p_cs_gunslingerphoto02x", "Not Set"}, + {"p_cs_gunslingerphoto03x", "Not Set"}, + {"p_cs_gunslingerphoto04x", "Not Set"}, + {"p_cs_gunslingerphoto05x", "Not Set"}, + {"p_cs_gunslingerphoto06x", "Not Set"}, + {"p_cs_hat01x", "Not Set"}, + {"p_cs_jeremygillbook01x", "Not Set"}, + {"p_cs_journal01x", "Not Set"}, + {"p_cs_ledger01x", "Not Set"}, + {"p_cs_ledgersmall01x", "Not Set"}, + {"p_cs_lemoyne_raiders01x", "Not Set"}, + {"p_cs_letter01a_x", "Not Set"}, + {"p_cs_letter01b_x", "Not Set"}, + {"p_cs_letter01c_x", "Not Set"}, + {"p_cs_letter01d_x", "Not Set"}, + {"p_cs_letter01e_x", "Not Set"}, + {"p_cs_letter02x", "Not Set"}, + {"p_cs_letter02x_bundle", "Not Set"}, + {"p_cs_letter02x_env", "Not Set"}, + {"p_cs_letter03x", "Not Set"}, + {"p_cs_letter03xa", "Not Set"}, + {"p_cs_letter03x_color", "Not Set"}, + {"p_cs_letter04x", "Not Set"}, + {"p_cs_letter05x", "Not Set"}, + {"p_cs_letter06x", "Not Set"}, + {"p_cs_letter07x", "Not Set"}, + {"p_cs_letter08x", "Not Set"}, + {"p_cs_letter09x", "Not Set"}, + {"p_cs_letterfolded01x", "Not Set"}, + {"p_cs_letterfolded02x", "Not Set"}, + {"p_cs_letterfolded_old", "Not Set"}, + {"p_cs_letterfrzdth", "Not Set"}, + {"p_cs_letterrolled01x", "Not Set"}, + {"p_cs_lettersandy01x", "Not Set"}, + {"p_cs_lettersandy01x_env", "Not Set"}, + {"p_cs_lillianbook01x", "Not Set"}, + {"p_cs_madscibook01x", "Not Set"}, + {"p_cs_millermanuscript", "Not Set"}, + {"p_cs_musicbook01x", "Not Set"}, + {"p_cs_newsclip01x", "Not Set"}, + {"p_cs_newsclip02x", "Not Set"}, + {"p_cs_newsclip03x", "Not Set"}, + {"p_cs_newspaper_01x", "Not Set"}, + {"p_cs_newspaper_02x", "Not Set"}, + {"p_cs_newspaper_02x_noanim", "Not Set"}, + {"p_cs_newspaper_03x", "Not Set"}, + {"p_cs_note01x", "Not Set"}, + {"p_cs_note02x", "Not Set"}, + {"p_cs_pamphlet01x", "Not Set"}, + {"p_cs_pamphlet02x", "Not Set"}, + {"p_cs_pamphlet03x", "Not Set"}, + {"p_cs_paperpetition01x", "Not Set"}, + {"p_cs_photo_17_8x10_5", "Not Set"}, + {"p_cs_photo_4x6", "Not Set"}, + {"p_cs_photo_5x7", "Not Set"}, + {"p_cs_photogunslgr", "Not Set"}, + {"p_cs_photogunslgrdead", "Not Set"}, + {"p_cs_photohillbilly", "Not Set"}, + {"p_cs_photonudie01x_4x6", "Not Set"}, + {"p_cs_photonudie02x_4x6", "Not Set"}, + {"p_cs_photonudie03x_4x6", "Not Set"}, + {"p_cs_photonudie04x_4x6", "Not Set"}, + {"p_cs_photonudie05x_4x6", "Not Set"}, + {"p_cs_photor_4x6", "Not Set"}, + {"p_cs_photor_5x7", "Not Set"}, + {"p_cs_photoslimgrnt", "Not Set"}, + {"p_cs_photowolves", "Not Set"}, + {"p_cs_poster2horfold", "Not Set"}, + {"p_cs_rcridethelightning", "Not Set"}, + {"p_cs_rhodes_rancher01x", "Not Set"}, + {"p_cs_rockcarvings01x", "Not Set"}, + {"p_cs_rt_envelope01x", "Not Set"}, + {"p_cs_rt_letterl_dbl", "Not Set"}, + {"p_cs_saintdenis_saloon01x", "Not Set"}, + {"p_cs_shack_escape01x", "Not Set"}, + {"p_cs_siloinstruction01x", "Not Set"}, + {"p_cs_sketchingbook01x", "Not Set"}, + {"p_cs_skinner_brother01x", "Not Set"}, + {"p_cs_skinner_search01x", "Not Set"}, + {"p_cs_slavebook01x", "Not Set"}, + {"p_cs_slavebook01x_burned", "Not Set"}, + {"p_cs_slavebook_book13_9", "Not Set"}, + {"p_cs_smallnotecard01x", "Not Set"}, + {"p_cs_snakeoil_salesman01x", "Not Set"}, + {"p_cs_strawberry_duel01x", "Not Set"}, + {"p_cs_wantedalive01x", "Not Set"}, + {"p_cs_wantedalive01x_copy", "Not Set"}, + {"p_cs_wantedalive01x_sct", "Not Set"}, + {"p_cs_wanted_bounty01x", "Not Set"}, + {"p_cs_wanted_bounty_2fold", "Not Set"}, + {"p_cs_wanted_dead01x", "Not Set"}, + {"p_cs_wife_and_lover01x", "Not Set"}, + {"p_fivefingerfillet_rt", "Not Set"}, + {"p_scr_chalkboard", "Not Set"}, + {"p_sketchbook01x", "Not Set"}, + {"p_sketchbook02x", "Not Set"}, + {"s_campledger01x", "Not Set"}, + {"s_centralunion_env", "Not Set"}, + {"s_cs_bookhardpaper01x", "Not Set"}, + {"s_ins_millermanuscript", "Not Set"}, + {"s_lev_journal_book", "Not Set"}, + {"s_mollyloveletter", "Not Set"}, + {"s_playerjournal01x", "Not Set"}, + {"s_rhodesbankplan01x", "Not Set"}, + {"s_rippablebook01x", "Not Set"}, + {"s_sp_catalogue01x", "Not Set"}, + {"p_corpseburnedfemale01x", "Not Set"}, + {"p_corpseburnedmale01x", "Not Set"}, + {"p_mast_debris01x", "Not Set"}, + {"p_moneybox_open01x", "Not Set"}, + {"p_nestfeather06x", "Not Set"}, + {"p_re_beartrapgroup01x", "Not Set"}, + {"p_re_beartrapgroup02x", "Not Set"}, + {"p_re_bedrollopen01x", "Not Set"}, + {"p_re_jug01x", "Not Set"}, + {"p_re_jug02x", "Not Set"}, + {"p_re_rope01x", "Not Set"}, + {"p_re_tentrolled01x", "Not Set"}, + {"p_re_tentrolled02x", "Not Set"}, + {"p_re_tentrolled04x", "Not Set"}, + {"p_rockthrow01x", "Not Set"}, + {"p_rockthrow02x", "Not Set"}, + {"p_rope_frayed01x", "Not Set"}, + {"p_tree_hangtreeoak_ropeswing", "Not Set"}, + {"s_antiquerevolver01x", "Not Set"}, + {"s_armleft_amputated01x", "Not Set"}, + {"s_baseball01x", "Not Set"}, + {"s_bloomers01x_anim", "Not Set"}, + {"s_chemise01x_anim", "Not Set"}, + {"s_dis_ammolite01x", "Not Set"}, + {"s_dis_flourite01x", "Not Set"}, + {"s_dis_nestitems01x", "Not Set"}, + {"s_dis_nestitems02x", "Not Set"}, + {"s_dis_nestitems03x", "Not Set"}, + {"s_dis_nestitems04x", "Not Set"}, + {"s_dis_nestitems05x", "Not Set"}, + {"s_dis_well_quilt_piece", "Not Set"}, + {"s_dis_well_quilt_piece_fold", "Not Set"}, + {"s_dov_lab_panel01x", "Not Set"}, + {"s_dov_lab_panel02x", "Not Set"}, + {"s_dov_lab_switch01x", "Not Set"}, + {"s_firework01x", "Not Set"}, + {"s_gatling_mag", "Not Set"}, + {"s_headsevered01x", "Not Set"}, + {"s_herbalistset01x", "Not Set"}, + {"s_horsnack_beet01x", "Not Set"}, + {"s_horsnack_carrot01x", "Not Set"}, + {"s_horsnack_celery01x", "Not Set"}, + {"s_horsnack_haycube01x", "Not Set"}, + {"s_horsnack_peppermint01x", "Not Set"}, + {"s_horsnack_sugarcube01x", "Not Set"}, + {"s_hotchkisscannon_clip", "Not Set"}, + {"s_kieranhead01x", "Not Set"}, + {"s_lak_trapdoor", "Not Set"}, + {"s_lak_trapdoordst", "Not Set"}, + {"s_moonshinedestroy01x", "Not Set"}, + {"s_mradlerfrozen_blkt", "Not Set"}, + {"s_murdercamphead01x", "Not Set"}, + {"s_murdercamphead02x", "Not Set"}, + {"s_platechickenrstd01x", "Not Set"}, + {"s_pot_serialkiller01x", "Not Set"}, + {"s_pursefancy01x", "Not Set"}, + {"s_pursefancy02bx", "Not Set"}, + {"s_pursefancy02x", "Not Set"}, + {"s_rc_emerald01x", "Not Set"}, + {"s_rc_woodboard01x", "Not Set"}, + {"s_re_birdbox01x", "Not Set"}, + {"s_re_chocolate01x", "Not Set"}, + {"s_re_chocolate_single", "Not Set"}, + {"s_re_dancersword01x", "Not Set"}, + {"s_re_goldrelicguama01x", "Not Set"}, + {"s_re_letterguama01x", "Not Set"}, + {"s_re_pocketknife01x", "Not Set"}, + {"s_re_rcboatbox01x", "Not Set"}, + {"s_re_relicguama01x", "Not Set"}, + {"s_re_relicguama02x", "Not Set"}, + {"s_re_silver_relicguama01x", "Not Set"}, + {"s_re_strongbar01x", "Not Set"}, + {"s_re_toyboat01x", "Not Set"}, + {"s_re_toytorpedo01x", "Not Set"}, + {"s_re_toytorpedoclip01x", "Not Set"}, + {"s_re_toytorpedoclip02x", "Not Set"}, + {"s_robot_table_top", "Not Set"}, + {"s_saddiessupply01x", "Not Set"}, + {"s_scalpfemale01x", "Not Set"}, + {"s_scalpfemale02x", "Not Set"}, + {"s_scalpmale01x", "Not Set"}, + {"s_scalpmale02x", "Not Set"}, + {"s_sk2_trapdoor", "Not Set"}, + {"s_skippingstone01x", "Not Set"}, + {"s_umbrellanbx01x", "Not Set"}, + {"s_wig_timmins", "Not Set"}, + {"alaskanginseng_p", "Not Set"}, + {"blackcurrant_p", "Not Set"}, + {"bra_01_bell01x", "Not Set"}, + {"branch01_script", "Not Set"}, + {"branch02_script", "Not Set"}, + {"bulrush_p", "Not Set"}, + {"burdock_p", "Not Set"}, + {"crowsgarlic_p", "Not Set"}, + {"desertsage_p", "Not Set"}, + {"des_tree_fall_neutral", "Not Set"}, + {"eag_eye_trck_bear_aa", "Not Set"}, + {"eag_eye_trck_bear_ab", "Not Set"}, + {"eag_eye_trck_bear_ba", "Not Set"}, + {"eag_eye_trck_bear_bb", "Not Set"}, + {"eag_eye_trck_bear_ca", "Not Set"}, + {"eag_eye_trck_bear_cb", "Not Set"}, + {"eag_eye_trck_bear_da", "Not Set"}, + {"eag_eye_trck_bear_db", "Not Set"}, + {"eag_eye_trck_bear_ea", "Not Set"}, + {"eag_eye_trck_bear_eb", "Not Set"}, + {"eag_eye_trck_bear_fa", "Not Set"}, + {"eag_eye_trck_bear_fb", "Not Set"}, + {"eag_eye_trck_bear_gb", "Not Set"}, + {"eag_eye_trck_buck_aa", "Not Set"}, + {"eag_eye_trck_debris_aa", "Not Set"}, + {"eag_eye_trck_deer_aa", "Not Set"}, + {"eag_eye_trck_elk_aa", "Not Set"}, + {"eag_eye_trck_moose_aa", "Not Set"}, + {"eag_eye_trck_ram_aa", "Not Set"}, + {"engmace_p", "Not Set"}, + {"feverfew_p", "Not Set"}, + {"ginseng_p", "Not Set"}, + {"goldencurrant_p", "Not Set"}, + {"humbirdsage_p", "Not Set"}, + {"indtobacco_p", "Not Set"}, + {"milkweed_p", "Not Set"}, + {"mp_big_rock_scan_02", "Not Set"}, + {"mp_big_rock_scan_07", "Not Set"}, + {"mp_p_rock_mssgry_lrg_b", "Not Set"}, + {"mp_roa_rock_grp_l_03", "Not Set"}, + {"mp_sca_rock_grp_l_01", "Not Set"}, + {"mp_sca_rock_grp_l_02", "Not Set"}, + {"mp_sca_rock_grp_l_03", "Not Set"}, + {"orchid_v_p", "Not Set"}, + {"oregano_p", "Not Set"}, + {"orleander_p", "Not Set"}, + {"p_amb_clipboard_01", "Not Set"}, + {"p_basementdoors01x", "Not Set"}, + {"p_basketcloth01x", "Not Set"}, + {"p_beechers_ladder01x", "Not Set"}, + {"p_bla_photo01x", "Not Set"}, + {"p_bla_photo02x", "Not Set"}, + {"p_boatramp01x", "Not Set"}, + {"p_bookcasenb01x", "Not Set"}, + {"p_brickoblisk01x", "Not Set"}, + {"p_brickplug01x", "Not Set"}, + {"p_churchbell01x", "Not Set"}, + {"p_churchbell02x", "Not Set"}, + {"p_crackpotrod01x", "Not Set"}, + {"p_cratemultiplayerammo01x", "Not Set"}, + {"p_cratemultiplayerammofull01x", "Not Set"}, + {"p_cratemultiplayeritem01x", "Not Set"}, + {"p_cratemultiplayerweapon01x", "Not Set"}, + {"p_cs_gua_vines03x", "Not Set"}, + {"p_dandyclump_01x", "Not Set"}, + {"p_gunsmithtrapdoor01x", "Not Set"}, + {"p_minimine01x", "Not Set"}, + {"p_moneysack01x", "Not Set"}, + {"p_moneysack02x", "Not Set"}, + {"p_railroadlever01x", "Not Set"}, + {"p_railroadlever02x", "Not Set"}, + {"p_railroadlever03x", "Not Set"}, + {"prariepoppy_p", "Not Set"}, + {"prop_sandwich_01", "Not Set"}, + {"p_trapdoor01x", "Not Set"}, + {"p_trapdoor02x", "Not Set"}, + {"p_tree_branchswamp_01", "Not Set"}, + {"p_tree_oak_01_script", "Not Set"}, + {"p_tree_oak_decalhole", "Not Set"}, + {"p_tree_w_r_cedar_01_script", "Not Set"}, + {"p_wallplaque01x", "Not Set"}, + {"redsage_p", "Not Set"}, + {"s_amedmush", "Not Set"}, + {"s_ammocase_loot", "Not Set"}, + {"s_armmale01x", "Not Set"}, + {"s_armoredcar02xladder01x", "Not Set"}, + {"s_armoredcar02xladder02x", "Not Set"}, + {"s_armoredcarladderinterior01x", "Not Set"}, + {"s_armoredcarladders01x", "Not Set"}, + {"s_armoredcarladders02x", "Not Set"}, + {"s_arthurchest01x", "Not Set"}, + {"s_beartrapanimated01x", "Not Set"}, + {"s_bottlemessagepaper01x", "Not Set"}, + {"s_burdock01x", "Not Set"}, + {"s_burdockpicked01x", "Not Set"}, + {"s_butterflyweed01x", "Not Set"}, + {"s_butterflyweedpicked01x", "Not Set"}, + {"s_campfire02_amb", "Not Set"}, + {"s_campfire02_amb2", "Not Set"}, + {"s_campfirecombined01x", "Not Set"}, + {"s_campfireset01x", "Not Set"}, + {"s_campfireset02x", "Not Set"}, + {"s_campfireset03x", "Not Set"}, + {"s_campfireset04x", "Not Set"}, + {"s_campfire_under01x", "Not Set"}, + {"s_celltrapdoor01x", "Not Set"}, + {"s_chamomile01x", "Not Set"}, + {"s_chamomilepicked01x", "Not Set"}, + {"s_clothingcasebook01x", "Not Set"}, + {"s_clothingcasedoor01x", "Not Set"}, + {"s_coachlanterns01x", "Not Set"}, + {"s_coachlock02x", "Not Set"}, + {"s_coachrobbery01bx", "Not Set"}, + {"s_coachrobbery01x", "Not Set"}, + {"s_confedtarget", "Not Set"}, + {"s_convictionlist01x", "Not Set"}, + {"s_corpsepit01x", "Not Set"}, + {"s_craftedhorsestim_02x", "Not Set"}, + {"s_craftedhorsestim_03x", "Not Set"}, + {"s_crate01_10_2_4_h", "Not Set"}, + {"s_crate01_1_1_4_h", "Not Set"}, + {"s_crate01_2_2_4_h", "Not Set"}, + {"s_crate01_5_2_4_h", "Not Set"}, + {"s_crate17xblue_01", "Not Set"}, + {"s_crate17xblue_02", "Not Set"}, + {"s_crate17xblue_03", "Not Set"}, + {"s_crate17xblue_04", "Not Set"}, + {"s_crate17xblue_05", "Not Set"}, + {"s_crate17xgreen_01", "Not Set"}, + {"s_crate17xgreen_02", "Not Set"}, + {"s_crate17xgreen_03", "Not Set"}, + {"s_crate17xgreen_04", "Not Set"}, + {"s_crate17xgreen_05", "Not Set"}, + {"s_crate17xorange_01", "Not Set"}, + {"s_crate17xorange_02", "Not Set"}, + {"s_crate17xorange_03", "Not Set"}, + {"s_crate17xorange_04", "Not Set"}, + {"s_crate17xorange_05", "Not Set"}, + {"s_crate17xred_01", "Not Set"}, + {"s_crate17xred_02", "Not Set"}, + {"s_crate17xred_03", "Not Set"}, + {"s_crate17xred_04", "Not Set"}, + {"s_crate17xred_05", "Not Set"}, + {"s_crate17xyellow_01", "Not Set"}, + {"s_crate17xyellow_02", "Not Set"}, + {"s_crate17xyellow_03", "Not Set"}, + {"s_crate17xyellow_04", "Not Set"}, + {"s_crate17xyellow_05", "Not Set"}, + {"scriptedball", "Not Set"}, + {"scriptedilo_r1m", "Not Set"}, + {"scriptedilo_r2_5m", "Not Set"}, + {"scriptedilo_r5m", "Not Set"}, + {"script_rt_bla_theater", "Not Set"}, + {"script_rt_std_theater", "Not Set"}, + {"script_rt_val_magiclantern", "Not Set"}, + {"s_deerfence01x", "Not Set"}, + {"s_desertsage01x", "Not Set"}, + {"s_desertsagepicked01x", "Not Set"}, + {"s_dogbowl01x", "Not Set"}, + {"s_door_gunslinger01x", "Not Set"}, + {"s_doorrobbery01x", "Not Set"}, + {"s_doorrobbery02x", "Not Set"}, + {"s_doorrobbery03x", "Not Set"}, + {"s_doorrobbery04x", "Not Set"}, + {"s_doorrobbery05x", "Not Set"}, + {"s_doorrobbery06x", "Not Set"}, + {"s_doorrobbery07x", "Not Set"}, + {"s_doorrobbery08x", "Not Set"}, + {"s_doorsldprtn01x", "Not Set"}, + {"s_doorsldprtnbrd01x", "Not Set"}, + {"s_door_val_bankvault", "Not Set"}, + {"s_door_vault_nbx1", "Not Set"}, + {"s_door_vault_nbx2", "Not Set"}, + {"s_door_vault_nbx3", "Not Set"}, + {"s_eagleeyescratch_01x", "Not Set"}, + {"s_fasttravelmap01x", "Not Set"}, + {"s_flgblack01x", "Not Set"}, + {"s_flgblue01x", "Not Set"}, + {"s_flggreen01x", "Not Set"}, + {"s_flgorange01x", "Not Set"}, + {"s_flgpurple01x", "Not Set"}, + {"s_flgred01x", "Not Set"}, + {"s_flgtest01x", "Not Set"}, + {"s_flgwhite01x", "Not Set"}, + {"s_flgyellow01x", "Not Set"}, + {"s_flyamush", "Not Set"}, + {"s_flyamush02x", "Not Set"}, + {"s_flyswarm01x", "Not Set"}, + {"s_foodmenuclipboard01x", "Not Set"}, + {"s_foodmenuclipboard02x", "Not Set"}, + {"s_foodmenuclipboard03x", "Not Set"}, + {"s_fpole01x", "Not Set"}, + {"s_frozennote01x", "Not Set"}, + {"s_frozenpeds01x", "Not Set"}, + {"s_gallowdoornbx01x", "Not Set"}, + {"s_gallowlever01x", "Not Set"}, + {"s_gallowlevernbx01x", "Not Set"}, + {"s_gallowsdoor01x", "Not Set"}, + {"s_gallowsstairs01x", "Not Set"}, + {"s_gallowsstairs02x", "Not Set"}, + {"s_gallowsstairs_03x", "Not Set"}, + {"s_gallowsstairs03x", "Not Set"}, + {"s_gallowsstairs04x", "Not Set"}, + {"s_gallowsstairs05x", "Not Set"}, + {"s_ginseng01x", "Not Set"}, + {"s_ginsengpicked01x", "Not Set"}, + {"s_goldencurrant01x", "Not Set"}, + {"s_goldencurrantpicked01x", "Not Set"}, + {"s_gri_rock_l_03", "Not Set"}, + {"s_gri_rock_m_03", "Not Set"}, + {"s_gri_rock_s_03", "Not Set"}, + {"s_grizzlybait01x", "Not Set"}, + {"s_hangingtree_baldcypress_01", "Not Set"}, + {"s_hangingtree_maple_01", "Not Set"}, + {"s_haybale01x", "Not Set"}, + {"s_herbalpouch01x", "Not Set"}, + {"s_herbalpouch02x", "Not Set"}, + {"s_herbalpouch03x", "Not Set"}, + {"s_herbalpouch04x", "Not Set"}, + {"s_hidemap01x", "Not Set"}, + {"s_hidemap01xpiece1", "Not Set"}, + {"s_hidemap01xpiece2", "Not Set"}, + {"s_hidemap01xpiece3", "Not Set"}, + {"s_hidemap01xpiece4", "Not Set"}, + {"s_hm_bayoubluegill", "Not Set"}, + {"s_hm_bigvalley", "Not Set"}, + {"s_hm_cumberland", "Not Set"}, + {"s_hm_grizzlies", "Not Set"}, + {"s_hm_heartlands", "Not Set"}, + {"s_hm_roanokeridge", "Not Set"}, + {"s_hm_scarlettmeadows", "Not Set"}, + {"s_hm_talltreesgrtplns", "Not Set"}, + {"s_hornetnest_01x", "Not Set"}, + {"s_horselantern01x", "Not Set"}, + {"s_hotairballoonflame01x", "Not Set"}, + {"s_hotbox01x", "Not Set"}, + {"s_hummingbirdsage01x", "Not Set"}, + {"s_hummingbirdsagepicked01x", "Not Set"}, + {"s_indiantobacco01x", "Not Set"}, + {"s_indiantobaccopicked01x", "Not Set"}, + {"s_interact_bottle", "Not Set"}, + {"s_interact_cleaver", "Not Set"}, + {"s_interact_hatchet", "Not Set"}, + {"s_interact_jug", "Not Set"}, + {"s_interact_jug_pickup", "Not Set"}, + {"s_interact_lantern01x", "Not Set"}, + {"s_interact_lantern02x", "Not Set"}, + {"s_interact_lantern03x", "Not Set"}, + {"s_interact_lantern03x_pickup", "Not Set"}, + {"s_interact_miningpan", "Not Set"}, + {"s_interact_torch", "Not Set"}, + {"s_interact_torch_crowd", "Not Set"}, + {"s_inv_alaskanginseng01bx", "Not Set"}, + {"s_inv_alaskanginseng01cx", "Not Set"}, + {"s_inv_alaskanginseng01dx", "Not Set"}, + {"s_inv_alaskanginseng01x", "Not Set"}, + {"s_inv_apple01x", "Not Set"}, + {"s_inv_arrowammo01p", "Not Set"}, + {"s_inv_arrowammo01x", "Not Set"}, + {"s_inv_arrowammo02x", "Not Set"}, + {"s_inv_baitherb01x", "Not Set"}, + {"s_inv_baitmeat01x", "Not Set"}, + {"s_inv_baybolete", "Not Set"}, + {"s_inv_baybolete01bx", "Not Set"}, + {"s_inv_blackberry01bx", "Not Set"}, + {"s_inv_blackberry01x", "Not Set"}, + {"s_inv_blackcurrant01bx", "Not Set"}, + {"s_inv_blackcurrant01cx", "Not Set"}, + {"s_inv_blackcurrant01x", "Not Set"}, + {"s_inv_bloodflower01bx", "Not Set"}, + {"s_inv_bloodflower01cx", "Not Set"}, + {"s_inv_bloodflower01x", "Not Set"}, + {"s_inv_bloodflower_bunch01x", "Not Set"}, + {"s_inv_brooch01x", "Not Set"}, + {"s_inv_brooch02x", "Not Set"}, + {"s_inv_brooch03x", "Not Set"}, + {"s_inv_bulrush01bx", "Not Set"}, + {"s_inv_bulrush01cx", "Not Set"}, + {"s_inv_bulrush01dx", "Not Set"}, + {"s_inv_bulrush01x", "Not Set"}, + {"s_inv_burdock01bx", "Not Set"}, + {"s_inv_burdock01cx", "Not Set"}, + {"s_inv_burdock01dx", "Not Set"}, + {"s_inv_burdock01x", "Not Set"}, + {"s_inv_businesscard01x", "Not Set"}, + {"s_inv_businesscard02x", "Not Set"}, + {"s_inv_businesscard03x", "Not Set"}, + {"s_inv_cardinalflw01bx", "Not Set"}, + {"s_inv_cardinalflw01cx", "Not Set"}, + {"s_inv_cardinalflw01dx", "Not Set"}, + {"s_inv_cardinalflw01x", "Not Set"}, + {"s_inv_chanterelles", "Not Set"}, + {"s_inv_chanterelles01bx", "Not Set"}, + {"s_inv_cigcard01x", "Not Set"}, + {"s_inv_cigcard_act_01x", "Not Set"}, + {"s_inv_cigcard_act_02x", "Not Set"}, + {"s_inv_cigcard_act_03x", "Not Set"}, + {"s_inv_cigcard_act_04x", "Not Set"}, + {"s_inv_cigcard_act_05x", "Not Set"}, + {"s_inv_cigcard_act_06x", "Not Set"}, + {"s_inv_cigcard_act_07x", "Not Set"}, + {"s_inv_cigcard_act_08x", "Not Set"}, + {"s_inv_cigcard_act_09x", "Not Set"}, + {"s_inv_cigcard_act_10x", "Not Set"}, + {"s_inv_cigcard_act_11x", "Not Set"}, + {"s_inv_cigcard_act_12x", "Not Set"}, + {"s_inv_cigcard_amer_01x", "Not Set"}, + {"s_inv_cigcard_amer_02x", "Not Set"}, + {"s_inv_cigcard_amer_03x", "Not Set"}, + {"s_inv_cigcard_amer_04x", "Not Set"}, + {"s_inv_cigcard_amer_05x", "Not Set"}, + {"s_inv_cigcard_amer_06x", "Not Set"}, + {"s_inv_cigcard_amer_07x", "Not Set"}, + {"s_inv_cigcard_amer_08x", "Not Set"}, + {"s_inv_cigcard_amer_09x", "Not Set"}, + {"s_inv_cigcard_amer_10x", "Not Set"}, + {"s_inv_cigcard_amer_11x", "Not Set"}, + {"s_inv_cigcard_amer_12x", "Not Set"}, + {"s_inv_cigcard_aml_01x", "Not Set"}, + {"s_inv_cigcard_aml_02x", "Not Set"}, + {"s_inv_cigcard_aml_03x", "Not Set"}, + {"s_inv_cigcard_aml_04x", "Not Set"}, + {"s_inv_cigcard_aml_05x", "Not Set"}, + {"s_inv_cigcard_aml_06x", "Not Set"}, + {"s_inv_cigcard_aml_07x", "Not Set"}, + {"s_inv_cigcard_aml_08x", "Not Set"}, + {"s_inv_cigcard_aml_09x", "Not Set"}, + {"s_inv_cigcard_aml_10x", "Not Set"}, + {"s_inv_cigcard_aml_11x", "Not Set"}, + {"s_inv_cigcard_aml_12x", "Not Set"}, + {"s_inv_cigcard_art_01x", "Not Set"}, + {"s_inv_cigcard_art_02x", "Not Set"}, + {"s_inv_cigcard_art_03x", "Not Set"}, + {"s_inv_cigcard_art_04x", "Not Set"}, + {"s_inv_cigcard_art_05x", "Not Set"}, + {"s_inv_cigcard_art_06x", "Not Set"}, + {"s_inv_cigcard_art_07x", "Not Set"}, + {"s_inv_cigcard_art_08x", "Not Set"}, + {"s_inv_cigcard_art_09x", "Not Set"}, + {"s_inv_cigcard_art_10x", "Not Set"}, + {"s_inv_cigcard_art_11x", "Not Set"}, + {"s_inv_cigcard_art_12x", "Not Set"}, + {"s_inv_cigcard_grl_01x", "Not Set"}, + {"s_inv_cigcard_grl_02x", "Not Set"}, + {"s_inv_cigcard_grl_03x", "Not Set"}, + {"s_inv_cigcard_grl_04x", "Not Set"}, + {"s_inv_cigcard_grl_05x", "Not Set"}, + {"s_inv_cigcard_grl_06x", "Not Set"}, + {"s_inv_cigcard_grl_07x", "Not Set"}, + {"s_inv_cigcard_grl_08x", "Not Set"}, + {"s_inv_cigcard_grl_09x", "Not Set"}, + {"s_inv_cigcard_grl_10x", "Not Set"}, + {"s_inv_cigcard_grl_11x", "Not Set"}, + {"s_inv_cigcard_grl_12x", "Not Set"}, + {"s_inv_cigcard_gun_01x", "Not Set"}, + {"s_inv_cigcard_gun_02x", "Not Set"}, + {"s_inv_cigcard_gun_03x", "Not Set"}, + {"s_inv_cigcard_gun_04x", "Not Set"}, + {"s_inv_cigcard_gun_05x", "Not Set"}, + {"s_inv_cigcard_gun_06x", "Not Set"}, + {"s_inv_cigcard_gun_07x", "Not Set"}, + {"s_inv_cigcard_gun_08x", "Not Set"}, + {"s_inv_cigcard_gun_09x", "Not Set"}, + {"s_inv_cigcard_gun_10x", "Not Set"}, + {"s_inv_cigcard_gun_11x", "Not Set"}, + {"s_inv_cigcard_gun_12x", "Not Set"}, + {"s_inv_cigcard_hrs_01x", "Not Set"}, + {"s_inv_cigcard_hrs_02x", "Not Set"}, + {"s_inv_cigcard_hrs_03x", "Not Set"}, + {"s_inv_cigcard_hrs_04x", "Not Set"}, + {"s_inv_cigcard_hrs_05x", "Not Set"}, + {"s_inv_cigcard_hrs_06x", "Not Set"}, + {"s_inv_cigcard_hrs_07x", "Not Set"}, + {"s_inv_cigcard_hrs_08x", "Not Set"}, + {"s_inv_cigcard_hrs_09x", "Not Set"}, + {"s_inv_cigcard_hrs_10x", "Not Set"}, + {"s_inv_cigcard_hrs_11x", "Not Set"}, + {"s_inv_cigcard_hrs_12x", "Not Set"}, + {"s_inv_cigcard_inv_01x", "Not Set"}, + {"s_inv_cigcard_inv_02x", "Not Set"}, + {"s_inv_cigcard_inv_03x", "Not Set"}, + {"s_inv_cigcard_inv_04x", "Not Set"}, + {"s_inv_cigcard_inv_05x", "Not Set"}, + {"s_inv_cigcard_inv_06x", "Not Set"}, + {"s_inv_cigcard_inv_07x", "Not Set"}, + {"s_inv_cigcard_inv_08x", "Not Set"}, + {"s_inv_cigcard_inv_09x", "Not Set"}, + {"s_inv_cigcard_inv_10x", "Not Set"}, + {"s_inv_cigcard_inv_11x", "Not Set"}, + {"s_inv_cigcard_inv_12x", "Not Set"}, + {"s_inv_cigcard_lnd_01x", "Not Set"}, + {"s_inv_cigcard_lnd_02x", "Not Set"}, + {"s_inv_cigcard_lnd_03x", "Not Set"}, + {"s_inv_cigcard_lnd_04x", "Not Set"}, + {"s_inv_cigcard_lnd_05x", "Not Set"}, + {"s_inv_cigcard_lnd_06x", "Not Set"}, + {"s_inv_cigcard_lnd_07x", "Not Set"}, + {"s_inv_cigcard_lnd_08x", "Not Set"}, + {"s_inv_cigcard_lnd_09x", "Not Set"}, + {"s_inv_cigcard_lnd_10x", "Not Set"}, + {"s_inv_cigcard_lnd_11x", "Not Set"}, + {"s_inv_cigcard_lnd_12x", "Not Set"}, + {"s_inv_cigcard_plt_01x", "Not Set"}, + {"s_inv_cigcard_plt_02x", "Not Set"}, + {"s_inv_cigcard_plt_03x", "Not Set"}, + {"s_inv_cigcard_plt_04x", "Not Set"}, + {"s_inv_cigcard_plt_05x", "Not Set"}, + {"s_inv_cigcard_plt_06x", "Not Set"}, + {"s_inv_cigcard_plt_07x", "Not Set"}, + {"s_inv_cigcard_plt_08x", "Not Set"}, + {"s_inv_cigcard_plt_09x", "Not Set"}, + {"s_inv_cigcard_plt_10x", "Not Set"}, + {"s_inv_cigcard_plt_11x", "Not Set"}, + {"s_inv_cigcard_plt_12x", "Not Set"}, + {"s_inv_cigcard_spt_01x", "Not Set"}, + {"s_inv_cigcard_spt_02x", "Not Set"}, + {"s_inv_cigcard_spt_03x", "Not Set"}, + {"s_inv_cigcard_spt_04x", "Not Set"}, + {"s_inv_cigcard_spt_05x", "Not Set"}, + {"s_inv_cigcard_spt_06x", "Not Set"}, + {"s_inv_cigcard_spt_07x", "Not Set"}, + {"s_inv_cigcard_spt_08x", "Not Set"}, + {"s_inv_cigcard_spt_09x", "Not Set"}, + {"s_inv_cigcard_spt_10x", "Not Set"}, + {"s_inv_cigcard_spt_11x", "Not Set"}, + {"s_inv_cigcard_spt_12x", "Not Set"}, + {"s_inv_cigcard_veh_01x", "Not Set"}, + {"s_inv_cigcard_veh_02x", "Not Set"}, + {"s_inv_cigcard_veh_03x", "Not Set"}, + {"s_inv_cigcard_veh_04x", "Not Set"}, + {"s_inv_cigcard_veh_05x", "Not Set"}, + {"s_inv_cigcard_veh_06x", "Not Set"}, + {"s_inv_cigcard_veh_07x", "Not Set"}, + {"s_inv_cigcard_veh_08x", "Not Set"}, + {"s_inv_cigcard_veh_09x", "Not Set"}, + {"s_inv_cigcard_veh_10x", "Not Set"}, + {"s_inv_cigcard_veh_11x", "Not Set"}, + {"s_inv_cigcard_veh_12x", "Not Set"}, + {"s_inv_clothscrap01x", "Not Set"}, + {"s_inv_cocainegum01x", "Not Set"}, + {"s_inv_coinpurse01x", "Not Set"}, + {"s_inv_coinsack01x", "Not Set"}, + {"s_inv_compass01x", "Not Set"}, + {"s_inv_craftedhreviver01x", "Not Set"}, + {"s_inv_crowsgarlic01bx", "Not Set"}, + {"s_inv_crowsgarlic01cx", "Not Set"}, + {"s_inv_crowsgarlic01x", "Not Set"}, + {"s_inv_desertsage01bx", "Not Set"}, + {"s_inv_desertsage01cx", "Not Set"}, + {"s_inv_desertsage01dx", "Not Set"}, + {"s_inv_desertsage01ex", "Not Set"}, + {"s_inv_desertsage01x", "Not Set"}, + {"s_inv_earring01x", "Not Set"}, + {"s_inv_earring02x", "Not Set"}, + {"s_inv_earring03x", "Not Set"}, + {"s_inv_earring04x", "Not Set"}, + {"s_inv_earring05x", "Not Set"}, + {"s_inv_engmace01bx", "Not Set"}, + {"s_inv_engmace01cx", "Not Set"}, + {"s_inv_engmace01dx", "Not Set"}, + {"s_inv_engmace01x", "Not Set"}, + {"s_inv_feverfew01bx", "Not Set"}, + {"s_inv_feverfew01cx", "Not Set"}, + {"s_inv_feverfew01dx", "Not Set"}, + {"s_inv_feverfew01x", "Not Set"}, + {"s_inv_flask01x", "Not Set"}, + {"s_inv_gin01x", "Not Set"}, + {"s_inv_ginseng01bx", "Not Set"}, + {"s_inv_ginseng01cx", "Not Set"}, + {"s_inv_ginseng01dx", "Not Set"}, + {"s_inv_ginseng01x", "Not Set"}, + {"s_inv_gin_used01x", "Not Set"}, + {"s_inv_goldencurrant01bx", "Not Set"}, + {"s_inv_goldencurrant01cx", "Not Set"}, + {"s_inv_goldencurrant01x", "Not Set"}, + {"s_inv_goldtooth01x", "Not Set"}, + {"s_inv_horseointment01x", "Not Set"}, + {"s_inv_horsepills01x", "Not Set"}, + {"s_inv_horsepills_fty", "Not Set"}, + {"s_inv_horsereviver01x", "Not Set"}, + {"s_inv_horsestim", "Not Set"}, + {"s_inv_huckleberry01bx", "Not Set"}, + {"s_inv_huckleberry01x", "Not Set"}, + {"s_inv_humbirdsage01bx", "Not Set"}, + {"s_inv_humbirdsage01cx", "Not Set"}, + {"s_inv_humbirdsage01dx", "Not Set"}, + {"s_inv_humbirdsage01x", "Not Set"}, + {"s_inv_indtobacco01bx", "Not Set"}, + {"s_inv_indtobacco01cx", "Not Set"}, + {"s_inv_indtobacco01dx", "Not Set"}, + {"s_inv_indtobacco01x", "Not Set"}, + {"s_inv_marybrooch04x", "Not Set"}, + {"s_inv_medicine01x", "Not Set"}, + {"s_inv_medicine_fty", "Not Set"}, + {"s_inv_medicine_ftyhalf01x", "Not Set"}, + {"s_inv_medicinehalf01x", "Not Set"}, + {"s_inv_milkweed01bx", "Not Set"}, + {"s_inv_milkweed01cx", "Not Set"}, + {"s_inv_milkweed01dx", "Not Set"}, + {"s_inv_milkweed01x", "Not Set"}, + {"s_inv_moneyclip01x", "Not Set"}, + {"s_inv_necklace01x", "Not Set"}, + {"s_inv_necklace02x", "Not Set"}, + {"s_inv_necklace03x", "Not Set"}, + {"s_inv_orchid_acunastar_01x", "Not Set"}, + {"s_inv_orchid_blackbat02", "Not Set"}, + {"s_inv_orchid_cigar_01x", "Not Set"}, + {"s_inv_orchid_clam_01bx", "Not Set"}, + {"s_inv_orchid_clam_01x", "Not Set"}, + {"s_inv_orchid_dm_01bx_temp", "Not Set"}, + {"s_inv_orchid_dm_01x", "Not Set"}, + {"s_inv_orchid_dm_01x_temp", "Not Set"}, + {"s_inv_orchid_ghost_01bx", "Not Set"}, + {"s_inv_orchid_ghost_01x", "Not Set"}, + {"s_inv_orchid_ghost_02x", "Not Set"}, + {"s_inv_orchid_lnight_01bx", "Not Set"}, + {"s_inv_orchid_lnight_01x", "Not Set"}, + {"s_inv_orchid_ls_01x", "Not Set"}, + {"s_inv_orchid_mf_01bx_temp", "Not Set"}, + {"s_inv_orchid_mf_01x", "Not Set"}, + {"s_inv_orchid_mf_01x_temp", "Not Set"}, + {"s_inv_orchid_nghtscnt_01x", "Not Set"}, + {"s_inv_orchid_q_01bx_temp", "Not Set"}, + {"s_inv_orchid_q_01x", "Not Set"}, + {"s_inv_orchid_q_01x_temp", "Not Set"}, + {"s_inv_orchid_rattail_01x", "Not Set"}, + {"s_inv_orchid_se_01bx_temp", "Not Set"}, + {"s_inv_orchid_se_01x", "Not Set"}, + {"s_inv_orchid_se_01x_temp", "Not Set"}, + {"s_inv_orchid_spider_01bx", "Not Set"}, + {"s_inv_orchid_spider_01x", "Not Set"}, + {"s_inv_orchid_v_01bx", "Not Set"}, + {"s_inv_orchid_v_01bx_temp", "Not Set"}, + {"s_inv_orchid_v_01x", "Not Set"}, + {"s_inv_orchid_v_01x_temp", "Not Set"}, + {"s_inv_oregano01bx", "Not Set"}, + {"s_inv_oregano01cx", "Not Set"}, + {"s_inv_oregano01dx", "Not Set"}, + {"s_inv_oregano01x", "Not Set"}, + {"s_inv_orleander01bx", "Not Set"}, + {"s_inv_orleander01cx", "Not Set"}, + {"s_inv_orleander01dx", "Not Set"}, + {"s_inv_orleander01x", "Not Set"}, + {"s_inv_pamppothorse01x", "Not Set"}, + {"s_inv_paper01a_x", "Not Set"}, + {"s_inv_paper01b_x", "Not Set"}, + {"s_inv_paper01c_x", "Not Set"}, + {"s_inv_paper01d_x", "Not Set"}, + {"s_inv_paper01e_x", "Not Set"}, + {"s_inv_paper02a_x", "Not Set"}, + {"s_inv_paper02b_x", "Not Set"}, + {"s_inv_paper02c_x", "Not Set"}, + {"s_inv_paper02d_x", "Not Set"}, + {"s_inv_paper02e_x", "Not Set"}, + {"s_inv_parasol", "Not Set"}, + {"s_inv_parasol01bx", "Not Set"}, + {"s_inv_piraterum01x", "Not Set"}, + {"s_inv_pistolammo01x", "Not Set"}, + {"s_inv_pocketwatch01x", "Not Set"}, + {"s_inv_pocketwatch02x", "Not Set"}, + {"s_inv_pocketwatch03x", "Not Set"}, + {"s_inv_pocketwatch04x", "Not Set"}, + {"s_inv_pocketwatch05x", "Not Set"}, + {"s_inv_pocketwatch06x", "Not Set"}, + {"s_inv_pocketwatch07x", "Not Set"}, + {"s_inv_potenthreviver01x", "Not Set"}, + {"s_inv_pothorsestim", "Not Set"}, + {"s_inv_prariepoppy01bx", "Not Set"}, + {"s_inv_prariepoppy01cx", "Not Set"}, + {"s_inv_prariepoppy01dx", "Not Set"}, + {"s_inv_prariepoppy01x", "Not Set"}, + {"s_inv_ramshead", "Not Set"}, + {"s_inv_ramshead01bx", "Not Set"}, + {"s_inv_raspberry01bx", "Not Set"}, + {"s_inv_raspberry01x", "Not Set"}, + {"s_inv_redsage01bx", "Not Set"}, + {"s_inv_redsage01cx", "Not Set"}, + {"s_inv_redsage01dx", "Not Set"}, + {"s_inv_redsage01x", "Not Set"}, + {"s_inv_revolverammo01x", "Not Set"}, + {"s_inv_rhubarb01bx", "Not Set"}, + {"s_inv_rhubarb01cx", "Not Set"}, + {"s_inv_rhubarb01dx", "Not Set"}, + {"s_inv_rhubarb01ex", "Not Set"}, + {"s_inv_rhubarb01x", "Not Set"}, + {"s_inv_rifleammo01x", "Not Set"}, + {"s_inv_ring01x", "Not Set"}, + {"s_inv_ring02x", "Not Set"}, + {"s_inv_ring03x", "Not Set"}, + {"s_inv_ring04x", "Not Set"}, + {"s_inv_ring05x", "Not Set"}, + {"s_inv_ring_box", "Not Set"}, + {"s_inv_rum01x", "Not Set"}, + {"s_inv_saltbush01bx", "Not Set"}, + {"s_inv_saltbush01cx", "Not Set"}, + {"s_inv_saltbush01dx", "Not Set"}, + {"s_inv_saltbush01ex", "Not Set"}, + {"s_inv_saltbush01x", "Not Set"}, + {"s_inv_shotgunammo01x", "Not Set"}, + {"s_inv_silvertooth01x", "Not Set"}, + {"s_inv_snakeoil01x", "Not Set"}, + {"s_inv_snakeoilextrahalf01x", "Not Set"}, + {"s_inv_snakeoil_fty", "Not Set"}, + {"s_inv_snakeoilhalf01x", "Not Set"}, + {"s_inv_specialhreviver01x", "Not Set"}, + {"s_inv_supertonic01x", "Not Set"}, + {"s_inv_supertonichalf01x", "Not Set"}, + {"s_inv_tabacco01x", "Not Set"}, + {"s_inv_tabaccopotent01x", "Not Set"}, + {"s_inv_thyme01bx", "Not Set"}, + {"s_inv_thyme01cx", "Not Set"}, + {"s_inv_thyme01x", "Not Set"}, + {"s_inv_tonic01x", "Not Set"}, + {"s_inv_tonichalf01x", "Not Set"}, + {"s_inv_usedcocainegum01x", "Not Set"}, + {"s_inv_usedhorsereviver01x", "Not Set"}, + {"s_inv_usedphreviver01x", "Not Set"}, + {"s_inv_usedrum01x", "Not Set"}, + {"s_inv_viosnwdrp01bx", "Not Set"}, + {"s_inv_viosnwdrp01cx", "Not Set"}, + {"s_inv_viosnwdrp01x", "Not Set"}, + {"s_inv_voodoodoll01x", "Not Set"}, + {"s_inv_whiskey01x", "Not Set"}, + {"s_inv_whiskey_used01x", "Not Set"}, + {"s_inv_wildcarrot01bx", "Not Set"}, + {"s_inv_wildcarrot01cx", "Not Set"}, + {"s_inv_wildcarrot01dx", "Not Set"}, + {"s_inv_wildcarrot01x", "Not Set"}, + {"s_inv_wildmint01bx", "Not Set"}, + {"s_inv_wildmint01cx", "Not Set"}, + {"s_inv_wildmint01x", "Not Set"}, + {"s_inv_wintergreen01bx", "Not Set"}, + {"s_inv_wintergreen01x", "Not Set"}, + {"s_inv_yarrow01bx", "Not Set"}, + {"s_inv_yarrow01cx", "Not Set"}, + {"s_inv_yarrow01dx", "Not Set"}, + {"s_inv_yarrow01x", "Not Set"}, + {"s_inv_yarrow02bx", "Not Set"}, + {"s_inv_yarrow03bx", "Not Set"}, + {"s_inv_yarrow04bx", "Not Set"}, + {"s_knifemap01", "Not Set"}, + {"s_knifemap02", "Not Set"}, + {"s_knifemap03", "Not Set"}, + {"s_knifemap04", "Not Set"}, + {"s_log_beechers_01", "Not Set"}, + {"s_loot01x", "Not Set"}, + {"s_loot02x", "Not Set"}, + {"s_lootableammocase", "Not Set"}, + {"s_lootablebedchest", "Not Set"}, + {"s_lootablebedchest_a", "Not Set"}, + {"s_lootablebedchest_b", "Not Set"}, + {"s_lootablebedchest_c", "Not Set"}, + {"s_lootablebedchest_d", "Not Set"}, + {"s_lootablebigmiscchest", "Not Set"}, + {"s_lootablebignarrowmiscchest", "Not Set"}, + {"s_lootablecampcase", "Not Set"}, + {"s_lootablecampcase_broken", "Not Set"}, + {"s_lootablecampcase_bx", "Not Set"}, + {"s_lootablecampcase_cx", "Not Set"}, + {"s_lootablecampcase_med", "Not Set"}, + {"s_lootablecampcase_sml", "Not Set"}, + {"s_lootableframe01x", "Not Set"}, + {"s_lootableluggage01x", "Not Set"}, + {"s_lootablemedcase", "Not Set"}, + {"s_lootablemedicinecrate", "Not Set"}, + {"s_lootablemidmiscchest", "Not Set"}, + {"s_lootablemidmiscchest_demo", "Not Set"}, + {"s_lootablemiscchest", "Not Set"}, + {"s_lootablemiscchest_a", "Not Set"}, + {"s_lootablemiscchest_b", "Not Set"}, + {"s_lootablemiscchest_c", "Not Set"}, + {"s_lootablemiscchest_d", "Not Set"}, + {"s_lootablemiscchest_wagon", "Not Set"}, + {"s_lootablemoneybox", "Not Set"}, + {"s_lootablemoneybox_a", "Not Set"}, + {"s_lootablemoneybox_a001", "Not Set"}, + {"s_lootablemoneybox_b", "Not Set"}, + {"s_lootablemoneybox_b001", "Not Set"}, + {"s_lootablemoneybox_c", "Not Set"}, + {"s_lootablemoneybox_c001", "Not Set"}, + {"s_lootablepistolchest", "Not Set"}, + {"s_lootablepoorcase", "Not Set"}, + {"s_lootableriflechest", "Not Set"}, + {"s_luggage01x_loot", "Not Set"}, + {"s_luggagepile01x", "Not Set"}, + {"s_maprolled01x", "Not Set"}, + {"s_maprolled02x", "Not Set"}, + {"s_maprolled03x", "Not Set"}, + {"s_maprolled04x", "Not Set"}, + {"s_maprolled05x", "Not Set"}, + {"s_maprolledxglue_01x", "Not Set"}, + {"s_maryrubyring01x", "Not Set"}, + {"s_medcase_loot", "Not Set"}, + {"s_medicinecrate_loot", "Not Set"}, + {"s_milkweed01x", "Not Set"}, + {"s_milkweedpicked01x", "Not Set"}, + {"s_minimap01x", "Not Set"}, + {"s_miscchest_loot", "Not Set"}, + {"s_miscchest_loot_a", "Not Set"}, + {"s_miscchest_loot_b", "Not Set"}, + {"s_miscchest_loot_c", "Not Set"}, + {"s_miscchest_loot_d", "Not Set"}, + {"s_misclockbox_loot_a", "Not Set"}, + {"s_misclockbox_loot_b", "Not Set"}, + {"s_misclockbox_loot_c", "Not Set"}, + {"s_misclockbox_loot_d", "Not Set"}, + {"s_misclockbox_loot_e", "Not Set"}, + {"s_misclockbox_loot_f", "Not Set"}, + {"s_misclockbox_loot_g", "Not Set"}, + {"s_misclockbox_loot_h", "Not Set"}, + {"s_misclockbox_loot_i", "Not Set"}, + {"s_misclockbox_loot_j", "Not Set"}, + {"s_mocap_stage", "Not Set"}, + {"s_mocap_stage80ft", "Not Set"}, + {"s_moneybox_loot", "Not Set"}, + {"s_moneybox_loot_a", "Not Set"}, + {"s_moneybox_loot_b", "Not Set"}, + {"s_moneybox_loot_c", "Not Set"}, + {"s_mp_flag01x", "Not Set"}, + {"s_mp_foldmoneybag02x", "Not Set"}, + {"s_mp_foldpostalbag01x", "Not Set"}, + {"s_mp_moneybag01x", "Not Set"}, + {"s_mp_moneybag02x", "Not Set"}, + {"s_mp_moneybag03x", "Not Set"}, + {"s_mp_postalbag01x", "Not Set"}, + {"s_murdervic01x", "Not Set"}, + {"s_murdervic02x", "Not Set"}, + {"s_murdervic03a", "Not Set"}, + {"s_murdervic03b", "Not Set"}, + {"s_ninefoldmap", "Not Set"}, + {"s_ninefoldmap_123", "Not Set"}, + {"s_ninefoldmap_147", "Not Set"}, + {"s_ninefoldmap_258", "Not Set"}, + {"s_ninefoldmap_369", "Not Set"}, + {"s_ninefoldmap_456", "Not Set"}, + {"s_ninefoldmap_789", "Not Set"}, + {"s_oldpocketwatch01x", "Not Set"}, + {"s_oldpocketwatch02x", "Not Set"}, + {"s_oldrifle01x", "Not Set"}, + {"s_oleander01x", "Not Set"}, + {"s_oleanderpicked01x", "Not Set"}, + {"s_passengercover01x", "Not Set"}, + {"s_phonewall01x", "Not Set"}, + {"s_pistolchest_loot", "Not Set"}, + {"s_pocketwatch_reutlinge", "Not Set"}, + {"s_prairiepoppy01x", "Not Set"}, + {"s_prairiepoppypicked01x", "Not Set"}, + {"s_prehistoricmanskull_01x", "Not Set"}, + {"s_pricklypearcluster02x", "Not Set"}, + {"s_pricklypearclusterpicked02x", "Not Set"}, + {"s_privatesteamerlever01x", "Not Set"}, + {"s_railswitch01x", "Not Set"}, + {"s_railswitch01x_cmbd", "Not Set"}, + {"s_redsage01x", "Not Set"}, + {"s_redsagepicked01x", "Not Set"}, + {"s_rock_beechers_01", "Not Set"}, + {"s_rock_beechers_02", "Not Set"}, + {"s_ropebundle01x", "Not Set"}, + {"s_ropecanoeend01x", "Not Set"}, + {"s_ropecanoeend02x", "Not Set"}, + {"s_ropehogtiehands01x", "Not Set"}, + {"s_ropehogtiehandslarge01x", "Not Set"}, + {"s_ropehogtiehandsmedium01x", "Not Set"}, + {"s_ropehogtiehandssmall01x", "Not Set"}, + {"s_ropehogtielegs01x", "Not Set"}, + {"s_ropehogtielegslarge01x", "Not Set"}, + {"s_ropehogtielegsmedium01x", "Not Set"}, + {"s_ropetie01x", "Not Set"}, + {"s_safe01x", "Not Set"}, + {"s_safe02x", "Not Set"}, + {"s_safe03x", "Not Set"}, + {"s_serramp01x", "Not Set"}, + {"s_shackle01x", "Not Set"}, + {"s_shackle02x", "Not Set"}, + {"s_shacklel01x", "Not Set"}, + {"s_shackler01x", "Not Set"}, + {"s_shawl01x", "Not Set"}, + {"s_shrunkenhead01x", "Not Set"}, + {"s_stagecoachtimetable01x", "Not Set"}, + {"s_stoneplug01x", "Not Set"}, + {"s_stoolfoldingstatic01x", "Not Set"}, + {"s_suppliesraft01x", "Not Set"}, + {"s_tentlargescript01x", "Not Set"}, + {"s_tentrandomevent01x", "Not Set"}, + {"s_tentsnap01x", "Not Set"}, + {"s_tm_hearlands", "Not Set"}, + {"s_trainplanrolled01x", "Not Set"}, + {"s_trainplatform01x", "Not Set"}, + {"s_treasurecoins01x", "Not Set"}, + {"s_treasureheartlands01x", "Not Set"}, + {"s_treasureheartlands02x", "Not Set"}, + {"s_treasuremap_01x", "Not Set"}, + {"s_treasuremap_02x", "Not Set"}, + {"s_treasuremap_03x", "Not Set"}, + {"s_treasuremap_04x", "Not Set"}, + {"s_tree_stump_08_bc", "Not Set"}, + {"s_tree_stump_08_bc_d", "Not Set"}, + {"s_twofoldmap01x", "Not Set"}, + {"s_twofoldmap01x_us", "Not Set"}, + {"s_twofoldmap02x", "Not Set"}, + {"s_valbeartrap01x", "Not Set"}, + {"s_valbeartrap02x", "Not Set"}, + {"s_vault_lrg_l_set", "Not Set"}, + {"s_vault_lrg_l_val01x", "Not Set"}, + {"s_vault_lrg_r_set", "Not Set"}, + {"s_vault_lrg_r_val01x", "Not Set"}, + {"s_vault_lrg_r_val01x_high", "Not Set"}, + {"s_vault_med_l_set", "Not Set"}, + {"s_vault_med_l_val01x", "Not Set"}, + {"s_vault_med_r_set", "Not Set"}, + {"s_vault_med_r_val01x", "Not Set"}, + {"s_vault_med_r_val01x_high", "Not Set"}, + {"s_vault_med_r_val_bent01x", "Not Set"}, + {"s_vault_med_r_val_bent02x", "Not Set"}, + {"s_vault_sml_l_set", "Not Set"}, + {"s_vault_sml_l_set_std", "Not Set"}, + {"s_vault_sml_l_val01x", "Not Set"}, + {"s_vault_sml_l_val01x_high", "Not Set"}, + {"s_vault_sml_l_val_bent01x", "Not Set"}, + {"s_vault_sml_r_set", "Not Set"}, + {"s_vault_sml_r_val01x", "Not Set"}, + {"s_vault_sml_r_val01x_high", "Not Set"}, + {"s_vault_sml_r_val_bent01x", "Not Set"}, + {"s_violetsnowdrop01x", "Not Set"}, + {"s_violetsnowdroppicked01x", "Not Set"}, + {"s_warship01x", "Not Set"}, + {"s_warship02x", "Not Set"}, + {"s_whiskeyempty01x", "Not Set"}, + {"s_wildfeverfew01x", "Not Set"}, + {"s_wildfeverfewpicked01x", "Not Set"}, + {"s_yarrow01_herbalist02x", "Not Set"}, + {"s_yarrow01_herbalistx", "Not Set"}, + {"s_yarrow01x", "Not Set"}, + {"s_yarrowpicked01x", "Not Set"}, + {"thyme_p", "Not Set"}, + {"viosnwdrp_p", "Not Set"}, + {"wildcarrot_p", "Not Set"}, + {"wildmint_p", "Not Set"}, + {"yarrow01_p", "Not Set"}, + {"yarrow02_p", "Not Set"}, + {"yarrow03_p", "Not Set"}, + {"yarrow04_p", "Not Set"}, + {"p_anncoalbin01x", "Not Set"}, + {"p_annconveyor01x", "Not Set"}, + {"p_annconveyor02x", "Not Set"}, + {"p_annconveyor03x", "Not Set"}, + {"p_annconveyor04x", "Not Set"}, + {"p_annconvmid1x_belt", "Not Set"}, + {"p_annconvmid1x_frame", "Not Set"}, + {"p_annpulleys03x", "Not Set"}, + {"p_annpulleys04x", "Not Set"}, + {"p_annsifter01x", "Not Set"}, + {"p_annsteameng01x", "Not Set"}, + {"p_boat_oar_01_s", "Not Set"}, + {"p_boat_oar_01_s_sea", "Not Set"}, + {"p_cs_cedarlog01x", "Not Set"}, + {"p_cs_cedarlog02x", "Not Set"}, + {"p_cs_cedarlog03x", "Not Set"}, + {"p_cs_loader01x", "Not Set"}, + {"p_cs_steamdonkey01x", "Not Set"}, + {"p_cs_steamdonkey02x", "Not Set"}, + {"p_cs_steamdonkey03x", "Not Set"}, + {"p_enginefactory01x", "Not Set"}, + {"p_enginefactory02x", "Not Set"}, + {"p_horseflies", "Not Set"}, + {"p_oar02_s", "Not Set"}, + {"p_rustlinglock01x", "Not Set"}, + {"p_steamoilpump01x", "Not Set"}, + {"p_steamoilpump01x_noanim", "Not Set"}, + {"p_tree_fallen_pineprop", "Not Set"}, + {"s_ann_coalchutes01x", "Not Set"}, + {"s_ann_coalchutes02x", "Not Set"}, + {"s_hat_scarecrow01x", "Not Set"}, + {"s_hat_viking01x", "Not Set"}, + {"s_horsepoop01x", "Not Set"}, + {"s_horsepoop02x", "Not Set"}, + {"s_horsepoop03x", "Not Set"}, + {"s_humandecayposey_01", "Not Set"}, + {"s_humandecayposey_02", "Not Set"}, + {"s_humandecayposey_03", "Not Set"}, + {"s_humandecayposey_04", "Not Set"}, + {"s_male_skeleton01", "Not Set"}, + {"s_male_skeleton02", "Not Set"}, + {"s_male_skeleton03", "Not Set"}, + {"s_male_skeleton04", "Not Set"}, + {"s_meatbit_chunck_large01x", "Not Set"}, + {"s_meatbit_chunck_medium01x", "Not Set"}, + {"s_meatbit_chunck_small01x", "Not Set"}, + {"s_meatbit_chunck_xlarge01x", "Not Set"}, + {"s_meatbit_organ_large01x", "Not Set"}, + {"s_meatbit_organ_medium01x", "Not Set"}, + {"s_meatbit_organ_small01x", "Not Set"}, + {"s_meatbit_rib_large01x", "Not Set"}, + {"s_meatbit_rib_medium01x", "Not Set"}, + {"s_meatbit_rib_small01x", "Not Set"}, + {"s_pro_bunkbeds01x", "Not Set"}, + {"s_ratcooked_01x", "Not Set"}, + {"s_ratdead_01x", "Not Set"}, + {"s_rugstand01x", "Not Set"}, + {"s_scissors01x", "Not Set"}, + {"s_scissors02x", "Not Set"}, + {"s_theatercurtain01x", "Not Set"}, + {"s_woodsling01x", "Not Set"}, + {"s_woodslingfull01x", "Not Set"}, + {"treefall_accident_endprop", "Not Set"}, + {"cs4_13_props_veg24_107_lod", "Not Set"}, + {"p_bbishop_01x", "Not Set"}, + {"p_bking_01x", "Not Set"}, + {"p_bknight_01x", "Not Set"}, + {"p_blackjackcaddy01x", "Not Set"}, + {"p_blackjacktable01x", "Not Set"}, + {"p_bocceballgreen01x", "Not Set"}, + {"p_bocceballjack01x", "Not Set"}, + {"p_bocceballred01x", "Not Set"}, + {"p_bpawn_01x", "Not Set"}, + {"p_bqueen_01x", "Not Set"}, + {"p_brook_01x", "Not Set"}, + {"p_cards01x", "Not Set"}, + {"p_cards02x", "Not Set"}, + {"p_cards_cs01x", "Not Set"}, + {"p_cardssplit01x", "Not Set"}, + {"p_chessset01x", "Not Set"}, + {"p_chip01x", "Not Set"}, + {"p_chips01x10_rho", "Not Set"}, + {"p_chips02x10_rho", "Not Set"}, + {"p_chips03x10_rho", "Not Set"}, + {"p_chips04x10_rho", "Not Set"}, + {"p_chips05x10_rho", "Not Set"}, + {"p_chips_bla01x", "Not Set"}, + {"p_chips_bla02x", "Not Set"}, + {"p_chips_bla03x", "Not Set"}, + {"p_chips_bla04x", "Not Set"}, + {"p_chips_bla05x", "Not Set"}, + {"p_chips_bla06x", "Not Set"}, + {"p_chips_camp01x", "Not Set"}, + {"p_chips_camp02x", "Not Set"}, + {"p_chips_camp03x", "Not Set"}, + {"p_chips_camp04x", "Not Set"}, + {"p_chips_camp05x", "Not Set"}, + {"p_chips_camp06x", "Not Set"}, + {"p_chips_fla01x", "Not Set"}, + {"p_chips_fla02x", "Not Set"}, + {"p_chips_fla03x", "Not Set"}, + {"p_chips_fla04x", "Not Set"}, + {"p_chips_fla05x", "Not Set"}, + {"p_chips_fla06x", "Not Set"}, + {"p_chips_gar_kor01x", "Not Set"}, + {"p_chips_gar_kor02x", "Not Set"}, + {"p_chips_gar_kor03x", "Not Set"}, + {"p_chips_gar_kor04x", "Not Set"}, + {"p_chips_gar_kor05x", "Not Set"}, + {"p_chips_gar_kor06x", "Not Set"}, + {"p_chips_la_bas01x", "Not Set"}, + {"p_chips_la_bas02x", "Not Set"}, + {"p_chips_la_bas03x", "Not Set"}, + {"p_chips_la_bas04x", "Not Set"}, + {"p_chips_la_bas05x", "Not Set"}, + {"p_chips_la_bas06x", "Not Set"}, + {"p_chips_opi01x", "Not Set"}, + {"p_chips_opi02x", "Not Set"}, + {"p_chips_opi03x", "Not Set"}, + {"p_chips_opi04x", "Not Set"}, + {"p_chips_opi05x", "Not Set"}, + {"p_chips_opi06x", "Not Set"}, + {"p_chips_val01x", "Not Set"}, + {"p_chips_val02x", "Not Set"}, + {"p_chips_val03x", "Not Set"}, + {"p_chips_val04x", "Not Set"}, + {"p_chips_val05x", "Not Set"}, + {"p_chips_val06x", "Not Set"}, + {"p_crapsonoff01x", "Not Set"}, + {"p_crapsrake01x", "Not Set"}, + {"p_crapstable01x", "Not Set"}, + {"p_crd_01x", "Not Set"}, + {"p_crd_01x_new", "Not Set"}, + {"p_crd_10_c01x", "Not Set"}, + {"p_crd_10_c01x_new", "Not Set"}, + {"p_crd_10_d01x", "Not Set"}, + {"p_crd_10_d01x_new", "Not Set"}, + {"p_crd_10_h01x", "Not Set"}, + {"p_crd_10_h01x_new", "Not Set"}, + {"p_crd_10_s01x", "Not Set"}, + {"p_crd_10_s01x_new", "Not Set"}, + {"p_crd_2_c01x", "Not Set"}, + {"p_crd_2_c01x_new", "Not Set"}, + {"p_crd_2_d01x", "Not Set"}, + {"p_crd_2_d01x_new", "Not Set"}, + {"p_crd_2_h01x", "Not Set"}, + {"p_crd_2_h01x_new", "Not Set"}, + {"p_crd_2_s01x", "Not Set"}, + {"p_crd_2_s01x_new", "Not Set"}, + {"p_crd_3_c01x", "Not Set"}, + {"p_crd_3_c01x_new", "Not Set"}, + {"p_crd_3_d01x", "Not Set"}, + {"p_crd_3_d01x_new", "Not Set"}, + {"p_crd_3_h01x", "Not Set"}, + {"p_crd_3_h01x_new", "Not Set"}, + {"p_crd_3_s01x", "Not Set"}, + {"p_crd_3_s01x_new", "Not Set"}, + {"p_crd_4_c01x", "Not Set"}, + {"p_crd_4_c01x_new", "Not Set"}, + {"p_crd_4_d01x", "Not Set"}, + {"p_crd_4_d01x_new", "Not Set"}, + {"p_crd_4_h01x", "Not Set"}, + {"p_crd_4_h01x_new", "Not Set"}, + {"p_crd_4_s01x", "Not Set"}, + {"p_crd_4_s01x_new", "Not Set"}, + {"p_crd_5_c01x", "Not Set"}, + {"p_crd_5_c01x_new", "Not Set"}, + {"p_crd_5_d01x", "Not Set"}, + {"p_crd_5_d01x_new", "Not Set"}, + {"p_crd_5_h01x", "Not Set"}, + {"p_crd_5_h01x_new", "Not Set"}, + {"p_crd_5_s01x", "Not Set"}, + {"p_crd_5_s01x_new", "Not Set"}, + {"p_crd_6_c01x", "Not Set"}, + {"p_crd_6_c01x_new", "Not Set"}, + {"p_crd_6_d01x", "Not Set"}, + {"p_crd_6_d01x_new", "Not Set"}, + {"p_crd_6_h01x", "Not Set"}, + {"p_crd_6_h01x_new", "Not Set"}, + {"p_crd_6_s01x", "Not Set"}, + {"p_crd_6_s01x_new", "Not Set"}, + {"p_crd_7_c01x", "Not Set"}, + {"p_crd_7_c01x_new", "Not Set"}, + {"p_crd_7_d01x", "Not Set"}, + {"p_crd_7_d01x_new", "Not Set"}, + {"p_crd_7_h01x", "Not Set"}, + {"p_crd_7_h01x_new", "Not Set"}, + {"p_crd_7_s01x", "Not Set"}, + {"p_crd_7_s01x_new", "Not Set"}, + {"p_crd_8_c01x", "Not Set"}, + {"p_crd_8_c01x_new", "Not Set"}, + {"p_crd_8_d01x", "Not Set"}, + {"p_crd_8_d01x_new", "Not Set"}, + {"p_crd_8_h01x", "Not Set"}, + {"p_crd_8_h01x_new", "Not Set"}, + {"p_crd_8_s01x", "Not Set"}, + {"p_crd_8_s01x_new", "Not Set"}, + {"p_crd_9_c01x", "Not Set"}, + {"p_crd_9_c01x_new", "Not Set"}, + {"p_crd_9_d01x", "Not Set"}, + {"p_crd_9_d01x_new", "Not Set"}, + {"p_crd_9_h01x", "Not Set"}, + {"p_crd_9_h01x_new", "Not Set"}, + {"p_crd_9_s01x", "Not Set"}, + {"p_crd_9_s01x_new", "Not Set"}, + {"p_crd_a_c01x", "Not Set"}, + {"p_crd_a_c01x_new", "Not Set"}, + {"p_crd_a_d01x", "Not Set"}, + {"p_crd_a_d01x_new", "Not Set"}, + {"p_crd_a_h01x", "Not Set"}, + {"p_crd_a_h01x_new", "Not Set"}, + {"p_crd_a_s01x", "Not Set"}, + {"p_crd_a_s01x_new", "Not Set"}, + {"p_crd_chipblue01x", "Not Set"}, + {"p_crd_chipbluepoker01x", "Not Set"}, + {"p_crd_chipgreen01x", "Not Set"}, + {"p_crd_chipgreenpoker01x", "Not Set"}, + {"p_crd_chipred01x", "Not Set"}, + {"p_crd_chipredpoker01x", "Not Set"}, + {"p_crd_chips004x", "Not Set"}, + {"p_crd_chips009x", "Not Set"}, + {"p_crd_chips040x", "Not Set"}, + {"p_crd_chips044x", "Not Set"}, + {"p_crd_chips049x", "Not Set"}, + {"p_crd_chips090x", "Not Set"}, + {"p_crd_chips094x", "Not Set"}, + {"p_crd_chips099x", "Not Set"}, + {"p_crd_chips400x", "Not Set"}, + {"p_crd_chips404x", "Not Set"}, + {"p_crd_chips409x", "Not Set"}, + {"p_crd_chips440x", "Not Set"}, + {"p_crd_chips444x", "Not Set"}, + {"p_crd_chips449x", "Not Set"}, + {"p_crd_chips490x", "Not Set"}, + {"p_crd_chips494x", "Not Set"}, + {"p_crd_chips499x", "Not Set"}, + {"p_crd_chips900x", "Not Set"}, + {"p_crd_chips904x", "Not Set"}, + {"p_crd_chips909x", "Not Set"}, + {"p_crd_chips940x", "Not Set"}, + {"p_crd_chips944x", "Not Set"}, + {"p_crd_chips949x", "Not Set"}, + {"p_crd_chips990x", "Not Set"}, + {"p_crd_chips994x", "Not Set"}, + {"p_crd_chips999x", "Not Set"}, + {"p_crd_j_c01x", "Not Set"}, + {"p_crd_j_c01x_new", "Not Set"}, + {"p_crd_j_d01x", "Not Set"}, + {"p_crd_j_d01x_new", "Not Set"}, + {"p_crd_j_h01x", "Not Set"}, + {"p_crd_j_h01x_new", "Not Set"}, + {"p_crd_joker01x", "Not Set"}, + {"p_crd_joker01x_new", "Not Set"}, + {"p_crd_j_s01x", "Not Set"}, + {"p_crd_j_s01x_new", "Not Set"}, + {"p_crd_k_c01x", "Not Set"}, + {"p_crd_k_c01x_new", "Not Set"}, + {"p_crd_k_d01x", "Not Set"}, + {"p_crd_k_d01x_new", "Not Set"}, + {"p_crd_k_h01x", "Not Set"}, + {"p_crd_k_h01x_new", "Not Set"}, + {"p_crd_k_s01x", "Not Set"}, + {"p_crd_k_s01x_new", "Not Set"}, + {"p_crd_q_c01x", "Not Set"}, + {"p_crd_q_c01x_new", "Not Set"}, + {"p_crd_q_d01x", "Not Set"}, + {"p_crd_q_d01x_new", "Not Set"}, + {"p_crd_q_h01x", "Not Set"}, + {"p_crd_q_h01x_new", "Not Set"}, + {"p_crd_q_s01x", "Not Set"}, + {"p_crd_q_s01x_new", "Not Set"}, + {"p_cribbage01x", "Not Set"}, + {"p_cribbagepeg01x", "Not Set"}, + {"p_cribbagepeg02x", "Not Set"}, + {"p_dice01x", "Not Set"}, + {"p_dice02x", "Not Set"}, + {"p_diveflag01x", "Not Set"}, + {"p_domino_0_0", "Not Set"}, + {"p_domino_0_1", "Not Set"}, + {"p_domino01_0_0", "Not Set"}, + {"p_domino01_0_1", "Not Set"}, + {"p_domino01_0_2", "Not Set"}, + {"p_domino01_0_3", "Not Set"}, + {"p_domino01_0_4", "Not Set"}, + {"p_domino01_0_5", "Not Set"}, + {"p_domino01_0_6", "Not Set"}, + {"p_domino01_1_1", "Not Set"}, + {"p_domino01_1_2", "Not Set"}, + {"p_domino01_1_3", "Not Set"}, + {"p_domino01_1_4", "Not Set"}, + {"p_domino01_1_5", "Not Set"}, + {"p_domino01_1_6", "Not Set"}, + {"p_domino01_2_2", "Not Set"}, + {"p_domino01_2_3", "Not Set"}, + {"p_domino01_2_4", "Not Set"}, + {"p_domino01_2_5", "Not Set"}, + {"p_domino01_2_6", "Not Set"}, + {"p_domino01_3_3", "Not Set"}, + {"p_domino01_3_4", "Not Set"}, + {"p_domino01_3_5", "Not Set"}, + {"p_domino01_3_6", "Not Set"}, + {"p_domino01_4_4", "Not Set"}, + {"p_domino01_4_5", "Not Set"}, + {"p_domino01_4_6", "Not Set"}, + {"p_domino01_5_5", "Not Set"}, + {"p_domino01_5_6", "Not Set"}, + {"p_domino01_6_6", "Not Set"}, + {"p_domino_0_2", "Not Set"}, + {"p_domino02_0_0", "Not Set"}, + {"p_domino02_0_1", "Not Set"}, + {"p_domino02_0_2", "Not Set"}, + {"p_domino02_0_3", "Not Set"}, + {"p_domino02_0_4", "Not Set"}, + {"p_domino02_0_5", "Not Set"}, + {"p_domino02_0_6", "Not Set"}, + {"p_domino02_1_1", "Not Set"}, + {"p_domino02_1_2", "Not Set"}, + {"p_domino02_1_3", "Not Set"}, + {"p_domino02_1_4", "Not Set"}, + {"p_domino02_1_5", "Not Set"}, + {"p_domino02_1_6", "Not Set"}, + {"p_domino02_2_2", "Not Set"}, + {"p_domino02_2_3", "Not Set"}, + {"p_domino02_2_4", "Not Set"}, + {"p_domino02_2_5", "Not Set"}, + {"p_domino02_2_6", "Not Set"}, + {"p_domino02_3_3", "Not Set"}, + {"p_domino02_3_4", "Not Set"}, + {"p_domino02_3_5", "Not Set"}, + {"p_domino02_3_6", "Not Set"}, + {"p_domino02_4_4", "Not Set"}, + {"p_domino02_4_5", "Not Set"}, + {"p_domino02_4_6", "Not Set"}, + {"p_domino02_5_5", "Not Set"}, + {"p_domino02_5_6", "Not Set"}, + {"p_domino02_6_6", "Not Set"}, + {"p_domino_0_3", "Not Set"}, + {"p_domino03_0_0", "Not Set"}, + {"p_domino03_0_1", "Not Set"}, + {"p_domino03_0_2", "Not Set"}, + {"p_domino03_0_3", "Not Set"}, + {"p_domino03_0_4", "Not Set"}, + {"p_domino03_0_5", "Not Set"}, + {"p_domino03_0_6", "Not Set"}, + {"p_domino03_1_1", "Not Set"}, + {"p_domino03_1_2", "Not Set"}, + {"p_domino03_1_3", "Not Set"}, + {"p_domino03_1_4", "Not Set"}, + {"p_domino03_1_5", "Not Set"}, + {"p_domino03_1_6", "Not Set"}, + {"p_domino03_2_2", "Not Set"}, + {"p_domino03_2_3", "Not Set"}, + {"p_domino03_2_4", "Not Set"}, + {"p_domino03_2_5", "Not Set"}, + {"p_domino03_2_6", "Not Set"}, + {"p_domino03_3_3", "Not Set"}, + {"p_domino03_3_4", "Not Set"}, + {"p_domino03_3_5", "Not Set"}, + {"p_domino03_3_6", "Not Set"}, + {"p_domino03_4_4", "Not Set"}, + {"p_domino03_4_5", "Not Set"}, + {"p_domino03_4_6", "Not Set"}, + {"p_domino03_5_5", "Not Set"}, + {"p_domino03_5_6", "Not Set"}, + {"p_domino03_6_6", "Not Set"}, + {"p_domino_0_4", "Not Set"}, + {"p_domino04_0_0", "Not Set"}, + {"p_domino04_0_1", "Not Set"}, + {"p_domino04_0_2", "Not Set"}, + {"p_domino04_0_3", "Not Set"}, + {"p_domino04_0_4", "Not Set"}, + {"p_domino04_0_5", "Not Set"}, + {"p_domino04_0_6", "Not Set"}, + {"p_domino04_1_1", "Not Set"}, + {"p_domino04_1_2", "Not Set"}, + {"p_domino04_1_3", "Not Set"}, + {"p_domino04_1_4", "Not Set"}, + {"p_domino04_1_5", "Not Set"}, + {"p_domino04_1_6", "Not Set"}, + {"p_domino04_2_2", "Not Set"}, + {"p_domino04_2_3", "Not Set"}, + {"p_domino04_2_4", "Not Set"}, + {"p_domino04_2_5", "Not Set"}, + {"p_domino04_2_6", "Not Set"}, + {"p_domino04_3_3", "Not Set"}, + {"p_domino04_3_4", "Not Set"}, + {"p_domino04_3_5", "Not Set"}, + {"p_domino04_3_6", "Not Set"}, + {"p_domino04_4_4", "Not Set"}, + {"p_domino04_4_5", "Not Set"}, + {"p_domino04_4_6", "Not Set"}, + {"p_domino04_5_5", "Not Set"}, + {"p_domino04_5_6", "Not Set"}, + {"p_domino04_6_6", "Not Set"}, + {"p_domino_0_5", "Not Set"}, + {"p_domino05_0_0", "Not Set"}, + {"p_domino05_0_1", "Not Set"}, + {"p_domino05_0_2", "Not Set"}, + {"p_domino05_0_3", "Not Set"}, + {"p_domino05_0_4", "Not Set"}, + {"p_domino05_0_5", "Not Set"}, + {"p_domino05_0_6", "Not Set"}, + {"p_domino05_1_1", "Not Set"}, + {"p_domino05_1_2", "Not Set"}, + {"p_domino05_1_3", "Not Set"}, + {"p_domino05_1_4", "Not Set"}, + {"p_domino05_1_5", "Not Set"}, + {"p_domino05_1_6", "Not Set"}, + {"p_domino05_2_2", "Not Set"}, + {"p_domino05_2_3", "Not Set"}, + {"p_domino05_2_4", "Not Set"}, + {"p_domino05_2_5", "Not Set"}, + {"p_domino05_2_6", "Not Set"}, + {"p_domino05_3_3", "Not Set"}, + {"p_domino05_3_4", "Not Set"}, + {"p_domino05_3_5", "Not Set"}, + {"p_domino05_3_6", "Not Set"}, + {"p_domino05_4_4", "Not Set"}, + {"p_domino05_4_5", "Not Set"}, + {"p_domino05_4_6", "Not Set"}, + {"p_domino05_5_5", "Not Set"}, + {"p_domino05_5_6", "Not Set"}, + {"p_domino05_6_6", "Not Set"}, + {"p_domino_0_6", "Not Set"}, + {"p_domino06_0_0", "Not Set"}, + {"p_domino06_0_1", "Not Set"}, + {"p_domino06_0_2", "Not Set"}, + {"p_domino06_0_3", "Not Set"}, + {"p_domino06_0_4", "Not Set"}, + {"p_domino06_0_5", "Not Set"}, + {"p_domino06_0_6", "Not Set"}, + {"p_domino06_1_1", "Not Set"}, + {"p_domino06_1_2", "Not Set"}, + {"p_domino06_1_3", "Not Set"}, + {"p_domino06_1_4", "Not Set"}, + {"p_domino06_1_5", "Not Set"}, + {"p_domino06_1_6", "Not Set"}, + {"p_domino06_2_2", "Not Set"}, + {"p_domino06_2_3", "Not Set"}, + {"p_domino06_2_4", "Not Set"}, + {"p_domino06_2_5", "Not Set"}, + {"p_domino06_2_6", "Not Set"}, + {"p_domino06_3_3", "Not Set"}, + {"p_domino06_3_4", "Not Set"}, + {"p_domino06_3_5", "Not Set"}, + {"p_domino06_3_6", "Not Set"}, + {"p_domino06_4_4", "Not Set"}, + {"p_domino06_4_5", "Not Set"}, + {"p_domino06_4_6", "Not Set"}, + {"p_domino06_5_5", "Not Set"}, + {"p_domino06_5_6", "Not Set"}, + {"p_domino06_6_6", "Not Set"}, + {"p_domino_1_1", "Not Set"}, + {"p_domino1_2", "Not Set"}, + {"p_domino_1_3", "Not Set"}, + {"p_domino_1_4", "Not Set"}, + {"p_domino_1_5", "Not Set"}, + {"p_domino_1_6", "Not Set"}, + {"p_domino_2_2", "Not Set"}, + {"p_domino_2_3", "Not Set"}, + {"p_domino_2_4", "Not Set"}, + {"p_domino_2_5", "Not Set"}, + {"p_domino_2_6", "Not Set"}, + {"p_domino_3_3", "Not Set"}, + {"p_domino_3_4", "Not Set"}, + {"p_domino_3_5", "Not Set"}, + {"p_domino_3_6", "Not Set"}, + {"p_domino_4_4", "Not Set"}, + {"p_domino_4_5", "Not Set"}, + {"p_domino_4_6", "Not Set"}, + {"p_domino_5_5", "Not Set"}, + {"p_domino_5_6", "Not Set"}, + {"p_domino_6_6", "Not Set"}, + {"p_dominocase01x", "Not Set"}, + {"p_dominorack01x", "Not Set"}, + {"p_domino_set_01x", "Not Set"}, + {"p_domino_set_02x", "Not Set"}, + {"p_domino_set_03x", "Not Set"}, + {"p_domino_set_04x", "Not Set"}, + {"p_domino_set_05x", "Not Set"}, + {"p_domino_set_06x", "Not Set"}, + {"p_fencebroken_pro_01x", "Not Set"}, + {"p_fencebroken_pro_02x", "Not Set"}, + {"p_horseshoestake01x", "Not Set"}, + {"p_pokercaddy01x", "Not Set"}, + {"p_pokercaddy02x", "Not Set"}, + {"p_pokerchipante01x", "Not Set"}, + {"p_pokerchipavarage01x", "Not Set"}, + {"p_pokerchipavarage02x", "Not Set"}, + {"p_pokerchipavarage03x", "Not Set"}, + {"p_pokerchipblue01x", "Not Set"}, + {"p_pokerchipgreen01x", "Not Set"}, + {"p_pokerchiplosingstack01x", "Not Set"}, + {"p_pokerchipred01x", "Not Set"}, + {"p_pokerchipwhite01x", "Not Set"}, + {"p_pokerchipwinningstack01x", "Not Set"}, + {"p_pokerhand01x", "Not Set"}, + {"p_pokerhand02x", "Not Set"}, + {"p_pokerhand03x", "Not Set"}, + {"p_pokerhand04x", "Not Set"}, + {"p_pokerhand05x", "Not Set"}, + {"p_pokerhand06x", "Not Set"}, + {"p_pokerhand07x", "Not Set"}, + {"p_pokerhand08x", "Not Set"}, + {"p_pokertable01x", "Not Set"}, + {"prop_chip_all_x10", "Not Set"}, + {"prop_chip_black_x1", "Not Set"}, + {"prop_chip_black_x10", "Not Set"}, + {"prop_chip_black_x2", "Not Set"}, + {"prop_chip_black_x3", "Not Set"}, + {"prop_chip_black_x4", "Not Set"}, + {"prop_chip_black_x5", "Not Set"}, + {"prop_chip_black_x7", "Not Set"}, + {"prop_chip_black_x8", "Not Set"}, + {"prop_chip_black_x9", "Not Set"}, + {"prop_chip_blue_x1", "Not Set"}, + {"prop_chip_blue_x10", "Not Set"}, + {"prop_chip_blue_x2", "Not Set"}, + {"prop_chip_blue_x3", "Not Set"}, + {"prop_chip_blue_x4", "Not Set"}, + {"prop_chip_blue_x5", "Not Set"}, + {"prop_chip_blue_x6", "Not Set"}, + {"prop_chip_blue_x7", "Not Set"}, + {"prop_chip_blue_x8", "Not Set"}, + {"prop_chip_blue_x9", "Not Set"}, + {"prop_chip_green_x1", "Not Set"}, + {"prop_chip_green_x10", "Not Set"}, + {"prop_chip_green_x2", "Not Set"}, + {"prop_chip_green_x3", "Not Set"}, + {"prop_chip_green_x4", "Not Set"}, + {"prop_chip_green_x5", "Not Set"}, + {"prop_chip_green_x6", "Not Set"}, + {"prop_chip_green_x7", "Not Set"}, + {"prop_chip_green_x8", "Not Set"}, + {"prop_chip_green_x9", "Not Set"}, + {"prop_chip_pink_x1", "Not Set"}, + {"prop_chip_pink_x10", "Not Set"}, + {"prop_chip_pink_x2", "Not Set"}, + {"prop_chip_pink_x3", "Not Set"}, + {"prop_chip_pink_x4", "Not Set"}, + {"prop_chip_pink_x5", "Not Set"}, + {"prop_chip_pink_x6", "Not Set"}, + {"prop_chip_pink_x7", "Not Set"}, + {"prop_chip_pink_x8", "Not Set"}, + {"prop_chip_pink_x9", "Not Set"}, + {"prop_chip_red_x1", "Not Set"}, + {"prop_chip_red_x10", "Not Set"}, + {"prop_chip_red_x2", "Not Set"}, + {"prop_chip_red_x3", "Not Set"}, + {"prop_chip_red_x4", "Not Set"}, + {"prop_chip_red_x5", "Not Set"}, + {"prop_chip_red_x6", "Not Set"}, + {"prop_chip_red_x7", "Not Set"}, + {"prop_chip_red_x8", "Not Set"}, + {"prop_chip_red_x9", "Not Set"}, + {"prop_chip_white_x1", "Not Set"}, + {"prop_chip_white_x10", "Not Set"}, + {"prop_chip_white_x2", "Not Set"}, + {"prop_chip_white_x3", "Not Set"}, + {"prop_chip_white_x4", "Not Set"}, + {"prop_chip_white_x5", "Not Set"}, + {"prop_chip_white_x6", "Not Set"}, + {"prop_chip_white_x7", "Not Set"}, + {"prop_chip_white_x8", "Not Set"}, + {"prop_chip_white_x9", "Not Set"}, + {"p_rouletteball01x", "Not Set"}, + {"p_roulettemarker01x", "Not Set"}, + {"p_rouletterake01x", "Not Set"}, + {"p_roulettetable01x", "Not Set"}, + {"p_roulettewheel01x", "Not Set"}, + {"p_target01x", "Not Set"}, + {"p_targetarchery01x", "Not Set"}, + {"p_targetarchery01x_2", "Not Set"}, + {"p_targetarchery01x_3", "Not Set"}, + {"p_targetarchery02x", "Not Set"}, + {"p_targetarchery02x_2", "Not Set"}, + {"p_targetarchery02x_3", "Not Set"}, + {"p_targetarchery03x", "Not Set"}, + {"p_targetarchery03x_2", "Not Set"}, + {"p_targetarchery03x_3", "Not Set"}, + {"p_targetarcheryframe02x", "Not Set"}, + {"p_targetlarge01x", "Not Set"}, + {"p_targetsmall01x", "Not Set"}, + {"p_threecardmonte01bx", "Not Set"}, + {"p_threecardmonte01x", "Not Set"}, + {"p_threecrdmonte01x", "Not Set"}, + {"p_threecrdmonte02x", "Not Set"}, + {"p_threecrdmonte03x", "Not Set"}, + {"p_wbishop_01x", "Not Set"}, + {"p_wking_01x", "Not Set"}, + {"p_wknight_01x", "Not Set"}, + {"p_wpawn_01x", "Not Set"}, + {"p_wqueen_01x", "Not Set"}, + {"p_wrook_01x", "Not Set"}, + {"saint_denis_1x", "Not Set"}, + {"s_drinkshootmg01x", "Not Set"}, + {"s_drinkshootmg02x", "Not Set"}, + {"s_drinkshootmg03x", "Not Set"}, + {"s_drinkshootmg04x", "Not Set"}, + {"s_drinkshootmg05x", "Not Set"}, + {"s_drugpackage_02x", "Not Set"}, + {"arrow_grip_info", "Not Set"}, + {"bill_stack", "Not Set"}, + {"binoculars", "Not Set"}, + {"book_w13_9h18_4", "Not Set"}, + {"book_w15_8h20_6", "Not Set"}, + {"book_w21_3h27_7", "Not Set"}, + {"botc_d1_3_h30_5_n13_2_5", "Not Set"}, + {"botc_d1_55_h18_na8_1_8", "Not Set"}, + {"boto_l5_5w9_5h10n5__2_5", "Not Set"}, + {"boto_l6_5w12h9_5n12_5__4", "Not Set"}, + {"botr_l2_8w5h7n4_5__2", "Not Set"}, + {"botr_l4_5w7_5h11_5n6_5_2_002", "Not Set"}, + {"botr_l4_5w7_5h11_5n6_5_2_1", "Not Set"}, + {"botr_l4_8w9_5h13n12_5__2_8", "Not Set"}, + {"car_w10_7h6_5", "Not Set"}, + {"car_w6_5h10_7", "Not Set"}, + {"cup_d8h6_5y", "Not Set"}, + {"cup_sti_d8h6_5y", "Not Set"}, + {"cyl_d12h6_7y", "Not Set"}, + {"cyl_d4_5h14y", "Not Set"}, + {"cyl_d6_5h1_5z_102", "Not Set"}, + {"cyl_d8_2h10_5y", "Not Set"}, + {"cyl_d8_8h2_9z", "Not Set"}, + {"env_w18_2h9_5", "Not Set"}, + {"frmovl_l1_5_w11h14_5a2y", "Not Set"}, + {"frmovl_l1_5_w20h26_5y", "Not Set"}, + {"frmovl_l1_5_w20h26_5y_standa12", "Not Set"}, + {"frmrct_l1_5_w18h25_a3y", "Not Set"}, + {"frmrct_l1_5_w26_h20_4_inspecty", "Not Set"}, + {"frmrct_l2_w28h34_a4y", "Not Set"}, + {"horsebrush", "Not Set"}, + {"money_clip", "Not Set"}, + {"money_stack", "Not Set"}, + {"newspaper", "Not Set"}, + {"oval_d1_5_h5_z", "Not Set"}, + {"oval_d1_5_h5_z001", "Not Set"}, + {"oval_l5_5w9_5h10y", "Not Set"}, + {"pac_l16w10h3_3z", "Not Set"}, + {"pac_l19w15h6z", "Not Set"}, + {"p_alligato_tooth01x", "Not Set"}, + {"p_ancientmayanhead01x", "Not Set"}, + {"paper_d2_h32_rolled", "Not Set"}, + {"pap_w10_16h15_24", "Not Set"}, + {"pap_w11_5h20_5", "Not Set"}, + {"pap_w12_7h17_78", "Not Set"}, + {"pap_w15_1h24fv", "Not Set"}, + {"pap_w17_78h12_7", "Not Set"}, + {"pap_w18_9h28_2fvx2", "Not Set"}, + {"pap_w24h15_1fh", "Not Set"}, + {"pap_w32_2h48_2_fvh", "Not Set"}, + {"pap_w34h48_8_fvh", "Not Set"}, + {"pap_w38_6h51_1_fv", "Not Set"}, + {"pap_w48_8h32_2_fvh", "Not Set"}, + {"p_arrowbundle01x", "Not Set"}, + {"p_arrowbundle02x", "Not Set"}, + {"p_buffalohorn01x", "Not Set"}, + {"p_buffalohorn02x", "Not Set"}, + {"p_buffalohorn03x", "Not Set"}, + {"p_cigarettecheapbox01x", "Not Set"}, + {"p_cigarettecheapused01x", "Not Set"}, + {"p_corpsenecklace01x", "Not Set"}, + {"p_cs_armyid01x", "Not Set"}, + {"p_gunpowder01x", "Not Set"}, + {"pin_rod_d2_5h19z", "Not Set"}, + {"pin_rod_d6h26_5z", "Not Set"}, + {"pin_w0_5x", "Not Set"}, + {"pin_w0_5y", "Not Set"}, + {"pin_w0_8z", "Not Set"}, + {"pin_w2_4z", "Not Set"}, + {"pin_w3_5z", "Not Set"}, + {"pipe", "Not Set"}, + {"p_knivesbundle02p", "Not Set"}, + {"p_knivesbundle02x", "Not Set"}, + {"p_owlfeathertrinket", "Not Set"}, + {"p_pickup_bread01x", "Not Set"}, + {"p_pickup_cheese01x", "Not Set"}, + {"p_pickup_cheesecrumbs01x", "Not Set"}, + {"p_pickup_cheeseknife01x", "Not Set"}, + {"p_pickup_cuttingboard01x", "Not Set"}, + {"p_pickup_foodcloth01x", "Not Set"}, + {"p_piratesklkey01x", "Not Set"}, + {"p_piratesklkeyring01x", "Not Set"}, + {"prop_pickup_flagus_01x", "Not Set"}, + {"p_stick_dynamite01x", "Not Set"}, + {"p_throw_molotov01", "Not Set"}, + {"p_tin_soapused01x", "Not Set"}, + {"p_uniqletterbundle01x", "Not Set"}, + {"rec_l11w6_7h2_5z", "Not Set"}, + {"rec_l13_5w8h2_5z", "Not Set"}, + {"rec_l13_5w8h2_5z001", "Not Set"}, + {"rec_l15w4_5h2_5z", "Not Set"}, + {"rec_l16w7h3z", "Not Set"}, + {"rec_l16w7h3z001", "Not Set"}, + {"rec_l4_5w15h2_5z", "Not Set"}, + {"rec_l4_8w11_7h8_7y", "Not Set"}, + {"rec_l4_8w11_7h8_7yref", "Not Set"}, + {"rec_l5w5_5h3_3z", "Not Set"}, + {"rec_l5w5_5h3_3z001", "Not Set"}, + {"rec_l5w5_5h3_3z002", "Not Set"}, + {"rec_l6_5w6_5h7y", "Not Set"}, + {"rec_l6w11_5h4_5z", "Not Set"}, + {"rec_l6w11_5h4_5z001", "Not Set"}, + {"rec_l6w11_5h4_5z002", "Not Set"}, + {"rec_l6w14h5_5z", "Not Set"}, + {"rec_l7_6w9_2h7_4_z", "Not Set"}, + {"rec_l7_6w9_2h7_4_z001", "Not Set"}, + {"s_abaloneshellfragment01x", "Not Set"}, + {"s_abaloneshellsmall", "Not Set"}, + {"s_abigaikeynecklac", "Not Set"}, + {"s_agedpiraterum01x", "Not Set"}, + {"s_alligatorcall01x", "Not Set"}, + {"s_alligatorcallbox01x", "Not Set"}, + {"s_animalcall01x", "Not Set"}, + {"s_animatablegloves01x", "Not Set"}, + {"s_asteroidchunktrinket", "Not Set"}, + {"s_badgedeputy01x", "Not Set"}, + {"s_badgepinkerton01x", "Not Set"}, + {"s_badgepolice01x", "Not Set"}, + {"s_badgerclawtrinket01x", "Not Set"}, + {"s_badgesherif01x", "Not Set"}, + {"s_badgeusmarshal01x", "Not Set"}, + {"s_balledragcloth01x", "Not Set"}, + {"s_bandana01x", "Not Set"}, + {"s_barberscissors01x", "Not Set"}, + {"s_batwingtrinket01x", "Not Set"}, + {"s_bearcall01x", "Not Set"}, + {"s_bearcallbox01x", "Not Set"}, + {"s_beardtonic01x", "Not Set"}, + {"s_bearfat01x", "Not Set"}, + {"s_bearhearttrinket01x", "Not Set"}, + {"s_beavertoothtrinket01x", "Not Set"}, + {"s_beavertoothtrinket02x", "Not Set"}, + {"s_biscuits01x", "Not Set"}, + {"s_bit_apple01x", "Not Set"}, + {"s_bit_bread06", "Not Set"}, + {"s_bit_carrot01x", "Not Set"}, + {"s_bit_celery01x", "Not Set"}, + {"s_bit_cheesewedge1x", "Not Set"}, + {"s_bit_peach01x", "Not Set"}, + {"s_bit_pear_02x", "Not Set"}, + {"s_blankethang01x", "Not Set"}, + {"s_blanketrolled01x", "Not Set"}, + {"s_boarlegendarytuskprop", "Not Set"}, + {"s_boartusk01x", "Not Set"}, + {"s_boartuskprop", "Not Set"}, + {"s_bobcatclaw01x", "Not Set"}, + {"s_braithwaitecrest01x", "Not Set"}, + {"s_brandy01x", "Not Set"}, + {"s_brandy_used01x", "Not Set"}, + {"s_bulkcigarettes01x", "Not Set"}, + {"s_bullgatortrinket01x", "Not Set"}, + {"s_bullhorntrinket01x", "Not Set"}, + {"s_canapricots01x", "Not Set"}, + {"s_canbeans01x", "Not Set"}, + {"s_canbeansused01x", "Not Set"}, + {"s_cancorn01x", "Not Set"}, + {"s_cancornused01x", "Not Set"}, + {"s_candybag01x_blue", "Not Set"}, + {"s_candybag01x_red", "Not Set"}, + {"s_cankidney01x", "Not Set"}, + {"s_canpeaches01x", "Not Set"}, + {"s_canpeas01x", "Not Set"}, + {"s_canpineapple01x", "Not Set"}, + {"s_canrigapricots01x", "Not Set"}, + {"s_canrigbeans01x", "Not Set"}, + {"s_canrigbeef01x", "Not Set"}, + {"s_canrigcorn01x", "Not Set"}, + {"s_canrigkidney01x", "Not Set"}, + {"s_canrigpeaches01x", "Not Set"}, + {"s_canrigpeas01x", "Not Set"}, + {"s_canrigpineapple01x", "Not Set"}, + {"s_canrigstrawberrie01x", "Not Set"}, + {"s_canstrawberries01x", "Not Set"}, + {"s_cansweetcorn01x", "Not Set"}, + {"s_canyonflowerjar01x", "Not Set"}, + {"s_cateyetrinket01x", "Not Set"}, + {"s_cheaprum01x", "Not Set"}, + {"s_cheesewedge1x", "Not Set"}, + {"s_chelonianmastertrinket01x", "Not Set"}, + {"s_chocolatebar01x", "Not Set"}, + {"s_chocolatebar02x", "Not Set"}, + {"s_chocolatebox01x", "Not Set"}, + {"s_cmbitters_crafted_tl", "Not Set"}, + {"s_cmbitters_specia_tl", "Not Set"}, + {"s_cmbitters_used_sl", "Not Set"}, + {"s_cmbitters_used_tl", "Not Set"}, + {"s_cmountainbitters_sl", "Not Set"}, + {"s_cmountainbitters_tl", "Not Set"}, + {"s_coffeetin01x", "Not Set"}, + {"s_coffeetipper01x", "Not Set"}, + {"s_compass01x", "Not Set"}, + {"s_compass02x", "Not Set"}, + {"s_condorbeaktrinket", "Not Set"}, + {"s_cornedbeef01x", "Not Set"}, + {"s_cougarcall01x", "Not Set"}, + {"s_cougarcallbox01x", "Not Set"}, + {"s_crackers01x", "Not Set"}, + {"s_craftedhorsestim_01x", "Not Set"}, + {"s_craftedmedicine_01x", "Not Set"}, + {"s_craftedmedicine_02x", "Not Set"}, + {"s_craftedsnakeoil_01x", "Not Set"}, + {"s_craftedsnakeoil_02x", "Not Set"}, + {"s_craftedtonic_01x", "Not Set"}, + {"s_craftedtonic_02x", "Not Set"}, + {"s_craft_horsestimulant01x", "Not Set"}, + {"s_craft_horsestimulant02x", "Not Set"}, + {"s_craft_horsestimulant03x", "Not Set"}, + {"s_craft_horsestimulant04x", "Not Set"}, + {"s_craft_horsestimulant05x", "Not Set"}, + {"s_craft_horsestimulant06x", "Not Set"}, + {"s_crafthorsestimulant_nocork", "Not Set"}, + {"s_cranefeathertrinket01x", "Not Set"}, + {"s_crickettin01x", "Not Set"}, + {"s_crowbeaktrinket01x", "Not Set"}, + {"s_deercall01x", "Not Set"}, + {"s_deercallbox01x", "Not Set"}, + {"s_deputystartrinket01x", "Not Set"}, + {"s_dropperbottle01xa", "Not Set"}, + {"s_duckcall01x", "Not Set"}, + {"s_duckcallbox01x", "Not Set"}, + {"s_duckfeather01x", "Not Set"}, + {"s_dutchpipebox01x", "Not Set"}, + {"s_dynamitehusk01x", "Not Set"}, + {"s_dynamitewick01x", "Not Set"}, + {"s_eaglefeathertrinket01x", "Not Set"}, + {"s_egret_feather01x", "Not Set"}, + {"s_egretplumes01x", "Not Set"}, + {"s_elkcall01x", "Not Set"}, + {"s_elkcallbox01x", "Not Set"}, + {"s_exotichat01x", "Not Set"}, + {"s_fishingline01x", "Not Set"}, + {"s_fishlrgmouthbasswrap_01", "Not Set"}, + {"s_flask01x", "Not Set"}, + {"s_flowertweezers01x", "Not Set"}, + {"s_fr_landscape01x", "Not Set"}, + {"s_fr_landscape02x", "Not Set"}, + {"s_futuristictrinket01x", "Not Set"}, + {"s_ghostaligatortrinket01x", "Not Set"}, + {"s_giantboartrinket01x", "Not Set"}, + {"s_giantrabbittrinket01x", "Not Set"}, + {"s_gilamonstertrinket", "Not Set"}, + {"s_ginsengelixir01x", "Not Set"}, + {"s_glassdropper01xa", "Not Set"}, + {"s_glovebox01x", "Not Set"}, + {"s_gunoil01x", "Not Set"}, + {"s_harmonicabox01x", "Not Set"}, + {"s_hatband01x", "Not Set"}, + {"s_hatband02x", "Not Set"}, + {"s_hatband03x", "Not Set"}, + {"s_hawktalontrinket01x", "Not Set"}, + {"s_healthboost01x", "Not Set"}, + {"s_heronfeathertrinket", "Not Set"}, + {"s_horseointment01x", "Not Set"}, + {"s_immunitybooster01x", "Not Set"}, + {"s_im_woodenbox01x", "Not Set"}, + {"s_inv_antidote01x", "Not Set"}, + {"s_inv_antidote_fty01x", "Not Set"}, + {"s_inv_cougarfangtrinket01x", "Not Set"}, + {"s_inv_crowbeaktrinket01x", "Not Set"}, + {"s_inv_fire_shotgunammo01x", "Not Set"}, + {"s_inv_fishrainbowtrout01x_ms", "Not Set"}, + {"s_inv_gin02x", "Not Set"}, + {"s_inv_highvlcty_pstammo01x", "Not Set"}, + {"s_inv_highvlcty_revammo01x", "Not Set"}, + {"s_inv_highvlcty_rifleammo01x", "Not Set"}, + {"s_inv_hivlcty_snprammo01x001", "Not Set"}, + {"s_inv_horsemed01x", "Not Set"}, + {"s_inv_horsemed_fty", "Not Set"}, + {"s_inv_moonshine01x", "Not Set"}, + {"s_inv_pipe01x", "Not Set"}, + {"s_inv_repeater_revammo01x", "Not Set"}, + {"s_inv_repeathv_rifleammo01x", "Not Set"}, + {"s_inv_repeat_rifleammo01x", "Not Set"}, + {"s_inv_repeatused_rifleammo01x", "Not Set"}, + {"s_inv_repeatxs_rifleammo01x", "Not Set"}, + {"s_inv_silverbracelet01x", "Not Set"}, + {"s_inv_silverearrings01x", "Not Set"}, + {"s_inv_slug_shotgunammo01x", "Not Set"}, + {"s_inv_syringe01x", "Not Set"}, + {"s_inv_tabptntused01x", "Not Set"}, + {"s_inv_trinket_buck_antler", "Not Set"}, + {"s_inv_trinket_flower_spun", "Not Set"}, + {"s_inv_trinket_rabtft01x", "Not Set"}, + {"s_inv_trinket_ramhorn01x", "Not Set"}, + {"s_inv_used_pistolammo01x", "Not Set"}, + {"s_inv_used_revammo01x", "Not Set"}, + {"s_inv_used_rifleammo01x", "Not Set"}, + {"s_inv_used_shotgunammo01x", "Not Set"}, + {"s_inv_varmint_rifleammo01x", "Not Set"}, + {"s_inv_whiskey02x", "Not Set"}, + {"s_inv_xpres_pstammo01x", "Not Set"}, + {"s_inv_xpres_revammo01x", "Not Set"}, + {"s_inv_xpres_rifleammo01x", "Not Set"}, + {"s_inv_xpres_sniperammo01x", "Not Set"}, + {"s_javelinatusktrinket01x", "Not Set"}, + {"s_jawharpcase01x", "Not Set"}, + {"s_jerky01bx", "Not Set"}, + {"s_jerky01x", "Not Set"}, + {"s_jerkypaper01x", "Not Set"}, + {"s_jewelrybox02x_a", "Not Set"}, + {"s_jewlerybox_lrg_fancy01x", "Not Set"}, + {"s_jewlerybox_lrg_fancy02x", "Not Set"}, + {"s_jewlerybox_lrg_plain01x", "Not Set"}, + {"s_jewlerybox_lrg_plain02x", "Not Set"}, + {"s_jewlerybox_lrg_poor01x", "Not Set"}, + {"s_jewlerybox_lrg_poor02x", "Not Set"}, + {"s_jewlerybox_sm_fancy01x", "Not Set"}, + {"s_jewlerybox_sm_fancy02x", "Not Set"}, + {"s_jewlerybox_sm_plain01x", "Not Set"}, + {"s_jewlerybox_sm_plain02x", "Not Set"}, + {"s_jewlerybox_sm_poor01x", "Not Set"}, + {"s_jewlerybox_sm_poor02x", "Not Set"}, + {"s_juggernauthelmet01x", "Not Set"}, + {"s_juggernautoutfit", "Not Set"}, + {"s_lettuce01x", "Not Set"}, + {"s_lionspawtrinket01x", "Not Set"}, + {"s_littleegrettrinket01x", "Not Set"}, + {"s_loupelensdevice01x", "Not Set"}, + {"s_lurebox01x", "Not Set"}, + {"s_map01x", "Not Set"}, + {"s_mapbayou01x", "Not Set"}, + {"s_mapbigvalley01x", "Not Set"}, + {"s_mapbluegillm01x", "Not Set"}, + {"s_mapcumberland01x", "Not Set"}, + {"s_mapgreatpl01x", "Not Set"}, + {"s_mapgrizzlies01x", "Not Set"}, + {"s_mapguama01x", "Not Set"}, + {"s_mapheartlands01x", "Not Set"}, + {"s_maproanoker01x", "Not Set"}, + {"s_mapscarlettm01x", "Not Set"}, + {"s_maptalltrees01x", "Not Set"}, + {"s_maptreasure01x", "Not Set"}, + {"s_mayantrinket01x", "Not Set"}, + {"s_meteoriteshard01x", "Not Set"}, + {"s_miningpan01x", "Not Set"}, + {"s_moosecall01x", "Not Set"}, + {"s_moosecallbox01x", "Not Set"}, + {"s_mortarpestle01x", "Not Set"}, + {"s_npc_binoculars01x", "Not Set"}, + {"s_oatcakes01x", "Not Set"}, + {"s_obsidianarowhead01x", "Not Set"}, + {"s_offal01x", "Not Set"}, + {"s_offalrig01x", "Not Set"}, + {"s_offalrig02x", "Not Set"}, + {"s_ornategoldtrinket01x", "Not Set"}, + {"s_oxenhorntrinket01x", "Not Set"}, + {"s_oxhorn01x", "Not Set"}, + {"s_pamphlet01x", "Not Set"}, + {"s_panthercall01x", "Not Set"}, + {"s_panthercallbox01x", "Not Set"}, + {"s_pantherclawtrinket01x", "Not Set"}, + {"s_parcelranchercloth01x", "Not Set"}, + {"s_peach01x", "Not Set"}, + {"s_pearlnecklace01x", "Not Set"}, + {"sph_d10_inspecty_ref", "Not Set"}, + {"sph_d10y", "Not Set"}, + {"sph_d8_4y", "Not Set"}, + {"sph_d8_4y002", "Not Set"}, + {"s_pickup_bond01x", "Not Set"}, + {"s_pickup_coincup01x", "Not Set"}, + {"s_pickup_coincup02x", "Not Set"}, + {"s_pickup_goldbar01x", "Not Set"}, + {"s_pickup_goldbar02x", "Not Set"}, + {"s_pickup_jewelrybag01x", "Not Set"}, + {"s_pickup_jewelrybag02x", "Not Set"}, + {"s_pickup_quartzchunk_01x", "Not Set"}, + {"s_pipette01x", "Not Set"}, + {"s_playingcardpack01x", "Not Set"}, + {"s_poisonedbluegill01x", "Not Set"}, + {"s_pst_mauserammo01x", "Not Set"}, + {"s_pst_semiautoammo01x", "Not Set"}, + {"s_pst_volammo01x", "Not Set"}, + {"s_pst_volammo02x", "Not Set"}, + {"s_pu_coinpurse02x", "Not Set"}, + {"s_pu_plate13x", "Not Set"}, + {"squirrel_and_meteor", "Not Set"}, + {"s_raccoonclaw01x", "Not Set"}, + {"s_reddishegrettrinket01x", "Not Set"}, + {"s_rep_henryammo01x", "Not Set"}, + {"s_rif_boltammo01x", "Not Set"}, + {"s_rif_carbinammo01x", "Not Set"}, + {"s_rif_lanammo01x", "Not Set"}, + {"s_rif_sprngammo01x", "Not Set"}, + {"s_saltedbeef01x", "Not Set"}, + {"s_saltedbeef02x", "Not Set"}, + {"s_scissorbox01x", "Not Set"}, + {"s_seasoning01x", "Not Set"}, + {"s_sharkteeth_01x", "Not Set"}, + {"s_shavingkit01x", "Not Set"}, + {"s_shavingsoap1x", "Not Set"}, + {"s_sh_doubleammo01x", "Not Set"}, + {"s_sherry01x", "Not Set"}, + {"s_sh_pumpammo01x", "Not Set"}, + {"s_sh_rollbackammo01x", "Not Set"}, + {"s_sh_sawdammo01x", "Not Set"}, + {"s_sh_semiammo01x", "Not Set"}, + {"s_sniper_carcanoammo01x", "Not Set"}, + {"s_snowyegrettrinket01x", "Not Set"}, + {"s_spur01x", "Not Set"}, + {"s_squirreltoothtrinket01x", "Not Set"}, + {"s_staminaboost01x", "Not Set"}, + {"s_steadyaimused01x", "Not Set"}, + {"s_straussglasscase01x", "Not Set"}, + {"s_tabaccoused01x", "Not Set"}, + {"s_tal_goldbracelet01x", "Not Set"}, + {"s_tatankabuffalohorn01x", "Not Set"}, + {"s_toadlegtrinket01x", "Not Set"}, + {"s_tobaccotin01x", "Not Set"}, + {"s_tobaccotin02x", "Not Set"}, + {"s_tomato01x", "Not Set"}, + {"s_turtleshelltrinket01x", "Not Set"}, + {"s_tusk_pedestal01x", "Not Set"}, + {"s_usedpotentrestoret01x", "Not Set"}, + {"s_valerianroot01x", "Not Set"}, + {"s_whiskeycheap01x", "Not Set"}, + {"s_whittlingblock01x", "Not Set"}, + {"s_whittlingknife01x", "Not Set"}, + {"s_wolfcall01x", "Not Set"}, + {"s_wolfcallbox01x", "Not Set"}, + {"s_wormcan01x", "Not Set"}, + {"s_wrappedbeef01x", "Not Set"}, + {"s_wrappedbison01x", "Not Set"}, + {"s_wrappedcapicola01x", "Not Set"}, + {"s_wrappedfish01x", "Not Set"}, + {"s_wrappedmeat01x", "Not Set"}, + {"s_wrappedmutton01x", "Not Set"}, + {"s_wrappedpork01x", "Not Set"}, + {"s_wrappedsausage01x", "Not Set"}, + {"s_wrappedvenison01x", "Not Set"}, + {"throwing_knives_info", "Not Set"}, + {"wed_4_2__0_75w8h9_4y", "Not Set"}, + {"wedge", "Not Set"}, + {"p_beaumontburly01x", "Not Set"}, + {"p_directdamnation01x", "Not Set"}, + {"p_farmersdaughter01x", "Not Set"}, + {"p_fiddle_de01x", "Not Set"}, + {"p_fitcherbrothe01x", "Not Set"}, + {"p_gen_posterwanted05x", "Not Set"}, + {"p_ghastlyserenade01x", "Not Set"}, + {"p_josiahblackwate01x", "Not Set"}, + {"p_lily_lucife01x", "Not Set"}, + {"p_lovepotions01x", "Not Set"}, + {"p_manflight01x", "Not Set"}, + {"p_modernmedicine01x", "Not Set"}, + {"p_mr_bear01x", "Not Set"}, + {"p_pos_wanted01x", "Not Set"}, + {"p_pos_wantedalive01x", "Not Set"}, + {"p_pos_wanteddead01x", "Not Set"}, + {"p_saviorssavages01x", "Not Set"}, + {"p_sweetheart01x", "Not Set"}, + {"p_troubadours01x", "Not Set"}, + {"p_yodellingyeoman01x", "Not Set"}, + {"s_charactermtest", "Not Set"}, + {"s_easterntraintime01x", "Not Set"}, + {"s_lannahecheetraintime01x", "Not Set"}, + {"s_purchasenotice01x", "Not Set"}, + {"s_trainschedule01x", "Not Set"}, + {"p_che_cornerdest01x", "Not Set"}, + {"p_che_cornerdest02x", "Not Set"}, + {"p_che_windowsilldest01x", "Not Set"}, + {"p_chewinsilldest02x", "Not Set"}, + {"p_chewooddest01x", "Not Set"}, + {"p_chewooddest02x", "Not Set"}, + {"p_colorchart", "Not Set"}, + {"p_doorframedest01x", "Not Set"}, + {"p_doorframedest02x", "Not Set"}, + {"p_focuschart", "Not Set"}, + {"p_fragconnectiontest", "Not Set"}, + {"p_potcaravan043dofx", "Not Set"}, + {"p_potcaravan04x", "Not Set"}, + {"p_repeater_strap01", "Not Set"}, + {"prop_parasol_01", "Not Set"}, + {"p_roughball", "Not Set"}, + {"p_roughrow", "Not Set"}, + {"p_roughtrio", "Not Set"}, + {"p_tbm_tintprop", "Not Set"}, + {"p_tentcollapse03x", "Not Set"}, + {"p_test_cl_articlea", "Not Set"}, + {"p_test_cl_articleb", "Not Set"}, + {"p_test_cl_articlec", "Not Set"}, + {"p_test_cl_articled", "Not Set"}, + {"p_test_cl_articlee", "Not Set"}, + {"p_test_cl_articlef", "Not Set"}, + {"p_test_cl_cluster_a", "Not Set"}, + {"p_testtintbox", "Not Set"}, + {"p_torturetest01x", "Not Set"}, + {"p_torturetest02x", "Not Set"}, + {"s_chainlink01x_inst", "Not Set"}, + {"s_deerpelttestani01x", "Not Set"}, + {"s_door_vault_damage", "Not Set"}, + {"s_pvtsteamlighttemp01x", "Not Set"}, + {"s_tentcaravancloth01bx", "Not Set"}, + {"s_tint_test_sphere_001", "Not Set"}, + {"thea_bush_ficus_aa_alpha", "Not Set"}, + {"thea_bush_ficus_aa_cutout", "Not Set"}, + {"zz_preview", "Not Set"}, + {"p_lnnhouse_stash02", "Not Set"}, + {"p_ann_coalbreaker01x", "Not Set"}, + {"p_bedundone_trelawny01x", "Not Set"}, + {"p_beecherrooftile01x", "Not Set"}, + {"p_beecherrooftile02x", "Not Set"}, + {"p_beecherrooftile03x", "Not Set"}, + {"p_beecherswall01", "Not Set"}, + {"p_beecherswall02", "Not Set"}, + {"p_beecherswall03", "Not Set"}, + {"p_beecherswall04", "Not Set"}, + {"p_beecherswall05", "Not Set"}, + {"p_birdspawnpoint01x", "Not Set"}, + {"p_blackwater_josiah_01x", "Not Set"}, + {"p_blood01x_cart06", "Not Set"}, + {"p_blood_trelawny01x", "Not Set"}, + {"p_bootsmarston01x", "Not Set"}, + {"p_boxcar0401x", "Not Set"}, + {"p_brick01x", "Not Set"}, + {"p_cheshutterinteract01x", "Not Set"}, + {"p_cheshutterinteract02x", "Not Set"}, + {"p_chimneybrick01x", "Not Set"}, + {"p_chimneybrick02x", "Not Set"}, + {"p_chimneybrick03x", "Not Set"}, + {"p_chimneyslab01x", "Not Set"}, + {"p_cin_damage01x", "Not Set"}, + {"p_cs_win1_wag1_01x", "Not Set"}, + {"p_cs_win1_wag2_01x", "Not Set"}, + {"p_cs_win1_wag3_01x", "Not Set"}, + {"p_cs_win1_wag4_01x", "Not Set"}, + {"p_devilcave_bridge", "Not Set"}, + {"p_dis_ropebridge", "Not Set"}, + {"p_dis_ropebridge2", "Not Set"}, + {"p_dis_ropebridge3", "Not Set"}, + {"p_dis_ropebridge4", "Not Set"}, + {"p_dov_lab_generator01", "Not Set"}, + {"p_dov_lab_generator01_lever", "Not Set"}, + {"p_dov_lab_generator02", "Not Set"}, + {"p_dzo_01_cpr_engn01", "Not Set"}, + {"p_dzo_01_cpr_engn02", "Not Set"}, + {"p_flatcar0102x", "Not Set"}, + {"p_flatcar0103x", "Not Set"}, + {"p_flatcar0104x", "Not Set"}, + {"p_flatcar0105x", "Not Set"}, + {"p_floorboard01x", "Not Set"}, + {"p_foundjoist01x", "Not Set"}, + {"p_handprint_trelawny01x", "Not Set"}, + {"p_lnnhouse_stash01", "Not Set"}, + {"p_lnnhouse_stash03", "Not Set"}, + {"p_lnnhouse_stash04", "Not Set"}, + {"p_lnnhouse_stash05", "Not Set"}, + {"p_lnnhouse_stash06", "Not Set"}, + {"p_lnnhouse_stash07", "Not Set"}, + {"p_magneto01x", "Not Set"}, + {"p_magneto02x", "Not Set"}, + {"p_marstonwagonpiece01x", "Not Set"}, + {"p_marstonwagonpiece02x", "Not Set"}, + {"p_nbx_cratestack03a_90", "Not Set"}, + {"p_nbx_cratestack03x_96", "Not Set"}, + {"p_ndb_hotelplank01x", "Not Set"}, + {"p_ndb_hotelplank01x_sea", "Not Set"}, + {"p_new_aus_pikebr01", "Not Set"}, + {"p_new_aus_pikebr02", "Not Set"}, + {"p_new_aus_pikebr03", "Not Set"}, + {"p_newcivstatuebirds01x", "Not Set"}, + {"p_pai_stash01", "Not Set"}, + {"p_rho_cottongin_03", "Not Set"}, + {"p_rho_cottongin_03_slod", "Not Set"}, + {"p_rock_stash01", "Not Set"}, + {"prop_binoc_01", "Not Set"}, + {"p_si_photomanor01x", "Not Set"}, + {"p_strgenstore_board01", "Not Set"}, + {"p_tailor_int_door_01x", "Not Set"}, + {"p_taxishouse_board01", "Not Set"}, + {"p_trolleypanel01x", "Not Set"}, + {"p_val_saloon2_r01", "Not Set"}, + {"p_val_saloon2_r02", "Not Set"}, + {"p_val_saloon2_r03", "Not Set"}, + {"p_val_saloon2_r04", "Not Set"}, + {"p_valveboiler01x", "Not Set"}, + {"p_van_rope_bridge", "Not Set"}, + {"p_vanslidingdoor01x", "Not Set"}, + {"p_wallplank01x", "Not Set"}, + {"p_wallplank01x_sea", "Not Set"}, + {"s_abe_cabinet01x", "Not Set"}, + {"s_abe_grandmapic01x", "Not Set"}, + {"s_abe_grandmapic02x", "Not Set"}, + {"s_abe_swingbot01", "Not Set"}, + {"s_abe_swingbot02", "Not Set"}, + {"s_abe_swingtop01", "Not Set"}, + {"s_abe_swingtop02", "Not Set"}, + {"s_armoir02x", "Not Set"}, + {"s_beechers_frame01x", "Not Set"}, + {"s_beechers_frame02x", "Not Set"}, + {"s_bee_shingle01x", "Not Set"}, + {"s_bfchair04x", "Not Set"}, + {"s_bfmoonshine01x", "Not Set"}, + {"s_bfmoonshinebox01x", "Not Set"}, + {"s_bftable01x", "Not Set"}, + {"s_boat_gua3_ramp", "Not Set"}, + {"s_canvasbundle01x", "Not Set"}, + {"s_canvasbundle02x", "Not Set"}, + {"s_castors_frame01x", "Not Set"}, + {"s_coathanger04x", "Not Set"}, + {"s_coatloot01x", "Not Set"}, + {"s_coffinempty01x", "Not Set"}, + {"s_coffinlid01x", "Not Set"}, + {"s_cottonbale02x", "Not Set"}, + {"s_cottonginned01x", "Not Set"}, + {"s_cottonginnedstack01x", "Not Set"}, + {"s_cottonraw01x", "Not Set"}, + {"s_cottonrawstack01x", "Not Set"}, + {"s_cotton_wheel01", "Not Set"}, + {"s_coverluggagetrain01x", "Not Set"}, + {"s_crateballoon01x", "Not Set"}, + {"s_crateballoon02x", "Not Set"}, + {"s_crateballoon03x", "Not Set"}, + {"s_crossburning01x", "Not Set"}, + {"s_deed_cs01x", "Not Set"}, + {"s_desk01x", "Not Set"}, + {"s_doctortable01x", "Not Set"}, + {"s_electricchair01x", "Not Set"}, + {"s_filecabinet02x", "Not Set"}, + {"s_footlocker01x", "Not Set"}, + {"s_footlocker02x", "Not Set"}, + {"s_footlocker03x", "Not Set"}, + {"s_footlocker04x", "Not Set"}, + {"s_footlocker05x", "Not Set"}, + {"s_footlocker06x", "Not Set"}, + {"s_footlockermud02x", "Not Set"}, + {"s_footlockersnow03x", "Not Set"}, + {"s_guaboat_hallway01x", "Not Set"}, + {"s_gua_crate19x", "Not Set"}, + {"s_guncase01", "Not Set"}, + {"s_gunsmithchain01x", "Not Set"}, + {"s_gunsmithframe01x", "Not Set"}, + {"s_jug02x", "Not Set"}, + {"s_lootablebigbluechest01x", "Not Set"}, + {"s_lootablebigbluechest02x", "Not Set"}, + {"s_lootablebigbluechest03x", "Not Set"}, + {"s_medicinebox01x", "Not Set"}, + {"s_nbd_bankdrawer01x", "Not Set"}, + {"s_nbd_bankdrawer02x", "Not Set"}, + {"s_nbd_bankdrawer03x", "Not Set"}, + {"s_new_boats_crane", "Not Set"}, + {"s_pic_adlermarriage01x", "Not Set"}, + {"s_pic_arthursmom01x", "Not Set"}, + {"s_pic_bronte01x", "Not Set"}, + {"s_pic_charlesparent01x", "Not Set"}, + {"s_pic_gunslingerbilly01x", "Not Set"}, + {"s_pic_gunslingerblack01x", "Not Set"}, + {"s_pic_gunslingeremmet01x", "Not Set"}, + {"s_pic_gunslingerflaco01x", "Not Set"}, + {"s_pic_gunslingerfrank01x", "Not Set"}, + {"s_pic_gunslingerslim01x", "Not Set"}, + {"s_pic_hoseaandwife", "Not Set"}, + {"s_pic_mary01x", "Not Set"}, + {"s_pic_missinghusband01x", "Not Set"}, + {"s_pic_norlady01x", "Not Set"}, + {"s_pic_rhodesgunsmith01x", "Not Set"}, + {"s_pic_rockymansion01x", "Not Set"}, + {"s_pictureframe11x", "Not Set"}, + {"s_pictureframe12x", "Not Set"}, + {"s_pictureframe13x", "Not Set"}, + {"s_pictureframe14x", "Not Set"}, + {"s_pic_younggrimshaw", "Not Set"}, + {"s_proghornfence01x", "Not Set"}, + {"s_proghornfence02x", "Not Set"}, + {"s_rcboat01x", "Not Set"}, + {"s_rcboat02x", "Not Set"}, + {"s_rcboatantenna01x", "Not Set"}, + {"s_rcboatantenna02x", "Not Set"}, + {"s_rcboatantenna03x", "Not Set"}, + {"s_rustedchest01x", "Not Set"}, + {"s_ship01x", "Not Set"}, + {"s_ship_beams01x", "Not Set"}, + {"s_ship_beams02x", "Not Set"}, + {"s_spc_schematic01x", "Not Set"}, + {"s_strap_marston01x", "Not Set"}, + {"s_strwaterwheel", "Not Set"}, + {"s_wagonwrecked01x", "Not Set"}, + {"s_wap_rainsfalls", "Not Set"}, + {"s_waterloggedchest01x", "Not Set"}, + {"collision_arm", "Not Set"}, + {"collision_bedroll", "Not Set"}, + {"collision_bighornram1_lowr_000", "Not Set"}, + {"collision_bighornram1_lowr_001", "Not Set"}, + {"collision_bighornram1_lowr_002", "Not Set"}, + {"collision_buck_lowr_000", "Not Set"}, + {"collision_buck_lowr_002", "Not Set"}, + {"collision_bull_horn_0", "Not Set"}, + {"collision_chelonianmaster", "Not Set"}, + {"collision_cow_horn_000", "Not Set"}, + {"collision_cow_horn_001", "Not Set"}, + {"collision_cow_horn_002", "Not Set"}, + {"collision_elk_01_lowr_000", "Not Set"}, + {"collision_elk_01_lowr_001", "Not Set"}, + {"collision_elk_01_lowr_002", "Not Set"}, + {"collision_elk_01_lowr_003", "Not Set"}, + {"collision_elk_01_lowr_004", "Not Set"}, + {"collision_explorergear", "Not Set"}, + {"collision_glasses", "Not Set"}, + {"collision_gore_calf", "Not Set"}, + {"collision_gorefoot", "Not Set"}, + {"collision_gore_forearm", "Not Set"}, + {"collision_goreh", "Not Set"}, + {"collision_gorehand", "Not Set"}, + {"collision_gore_thigh", "Not Set"}, + {"collision_gore_upperarm", "Not Set"}, + {"collision_hat", "Not Set"}, + {"collision_hat_bear", "Not Set"}, + {"collision_hat_bucket", "Not Set"}, + {"collision_hat_catmask", "Not Set"}, + {"collision_hat_cowmask", "Not Set"}, + {"collision_hat_large", "Not Set"}, + {"collision_hat_largeshort", "Not Set"}, + {"collision_hat_rammask", "Not Set"}, + {"collision_hat_small", "Not Set"}, + {"collision_hat_tall", "Not Set"}, + {"collision_hat_viking", "Not Set"}, + {"collision_head_male", "Not Set"}, + {"collision_horseloadout_001", "Not Set"}, + {"collision_horseloadout_002", "Not Set"}, + {"collision_horseloadout_003", "Not Set"}, + {"collision_horseloadout_004", "Not Set"}, + {"collision_horseloadout_005", "Not Set"}, + {"collision_moose_lowr_000", "Not Set"}, + {"collision_moose_lowr_001", "Not Set"}, + {"collision_moose_lowr_002", "Not Set"}, + {"collision_ox_01_horns_000", "Not Set"}, + {"collision_player_satchel", "Not Set"}, + {"collision_pronghorn_horn0", "Not Set"}, + {"collision_prospectgear", "Not Set"}, + {"collision_saddle", "Not Set"}, + {"collision_saddle_bag", "Not Set"}, + {"physics_glasses", "Not Set"}, + {"physics_hat", "Not Set"}, + {"w_binocular_inner01", "Not Set"}, + {"w_binoculars01x", "Not Set"}, + {"w_camerabox01x", "Not Set"}, + {"w_camera_inner01", "Not Set"}, + {"w_electricfielddetector01", "Not Set"}, + {"w_leftshoulder_strap01", "Not Set"}, + {"w_melee_brassknuckles01", "Not Set"}, + {"w_melee_brokensword01", "Not Set"}, + {"w_melee_fishingpole01", "Not Set"}, + {"w_melee_fishingpole02", "Not Set"}, + {"w_melee_fishingpole03", "Not Set"}, + {"w_melee_hammer02", "Not Set"}, + {"w_melee_hatchet01", "Not Set"}, + {"w_melee_hatchet02", "Not Set"}, + {"w_melee_hatchet03", "Not Set"}, + {"w_melee_hatchet04", "Not Set"}, + {"w_melee_hatchet05", "Not Set"}, + {"w_melee_hatchet06", "Not Set"}, + {"w_melee_hatchet07", "Not Set"}, + {"w_melee_knife01", "Not Set"}, + {"w_melee_knife02", "Not Set"}, + {"w_melee_knife02_grip1", "Not Set"}, + {"w_melee_knife03", "Not Set"}, + {"w_melee_knife04", "Not Set"}, + {"w_melee_knife05", "Not Set"}, + {"w_melee_knife06", "Not Set"}, + {"w_melee_knife07", "Not Set"}, + {"w_melee_knife08", "Not Set"}, + {"w_melee_knife09", "Not Set"}, + {"w_melee_knife10", "Not Set"}, + {"w_melee_knife11", "Not Set"}, + {"w_melee_knife12", "Not Set"}, + {"w_melee_knife13", "Not Set"}, + {"w_melee_knife14", "Not Set"}, + {"w_melee_knife15", "Not Set"}, + {"w_melee_knife16", "Not Set"}, + {"w_melee_knife17", "Not Set"}, + {"w_melee_knife18", "Not Set"}, + {"w_melee_knife19", "Not Set"}, + {"w_melee_knife20", "Not Set"}, + {"w_melee_knife21", "Not Set"}, + {"w_melee_knife22", "Not Set"}, + {"w_melee_lasso01", "Not Set"}, + {"w_melee_lasso03", "Not Set"}, + {"w_melee_machete01", "Not Set"}, + {"w_melee_machete03", "Not Set"}, + {"w_melee_tomahawk01", "Not Set"}, + {"w_melee_tomahawk02", "Not Set"}, + {"w_melee_tomahawk03", "Not Set"}, + {"w_melee_tomahawk04", "Not Set"}, + {"w_mp_bowarrow_arrow_tracking", "Not Set"}, + {"w_pistol_m189902", "Not Set"}, + {"w_pistol_m189902_barrel01", "Not Set"}, + {"w_pistol_m189902_barrel02", "Not Set"}, + {"w_pistol_m189902_clip1", "Not Set"}, + {"w_pistol_m189902_grip1", "Not Set"}, + {"w_pistol_m189902_grip2", "Not Set"}, + {"w_pistol_m189902_grip3", "Not Set"}, + {"w_pistol_m189902_grip4", "Not Set"}, + {"w_pistol_m189902_sight1", "Not Set"}, + {"w_pistol_m189902_sight2", "Not Set"}, + {"w_pistol_mauser01", "Not Set"}, + {"w_pistol_mauser01_barrel1", "Not Set"}, + {"w_pistol_mauser01_barrel2", "Not Set"}, + {"w_pistol_mauser01_clip", "Not Set"}, + {"w_pistol_mauser01_clip2", "Not Set"}, + {"w_pistol_mauser01_grip1", "Not Set"}, + {"w_pistol_mauser01_grip2", "Not Set"}, + {"w_pistol_mauser01_grip3", "Not Set"}, + {"w_pistol_mauser01_grip4", "Not Set"}, + {"w_pistol_mauser01_sight1", "Not Set"}, + {"w_pistol_mauser01_sight2", "Not Set"}, + {"w_pistol_mauser02", "Not Set"}, + {"w_pistol_semiauto01", "Not Set"}, + {"w_pistol_semiauto01_barrel1", "Not Set"}, + {"w_pistol_semiauto01_barrel2", "Not Set"}, + {"w_pistol_semiauto01_clip", "Not Set"}, + {"w_pistol_semiauto01_grip1", "Not Set"}, + {"w_pistol_semiauto01_grip2", "Not Set"}, + {"w_pistol_semiauto01_grip3", "Not Set"}, + {"w_pistol_semiauto01_grip4", "Not Set"}, + {"w_pistol_semiauto01_sight1", "Not Set"}, + {"w_pistol_semiauto01_sight2", "Not Set"}, + {"w_pistol_volcanic01", "Not Set"}, + {"w_pistol_volcanic01_barrel01", "Not Set"}, + {"w_pistol_volcanic01_barrel02", "Not Set"}, + {"w_pistol_volcanic01_grip1", "Not Set"}, + {"w_pistol_volcanic01_grip2", "Not Set"}, + {"w_pistol_volcanic01_grip3", "Not Set"}, + {"w_pistol_volcanic01_grip4", "Not Set"}, + {"w_pistol_volcanic01_sight1", "Not Set"}, + {"w_pistol_volcanic01_sight2", "Not Set"}, + {"w_pistol_volcanic03", "Not Set"}, + {"w_pistol_volcanic03_grip1", "Not Set"}, + {"w_pistol_volcanic03_sight1", "Not Set"}, + {"w_repeater_carbine01", "Not Set"}, + {"w_repeater_carbine01_clip1", "Not Set"}, + {"w_repeater_carbine01_grip1", "Not Set"}, + {"w_repeater_carbine01_grip2", "Not Set"}, + {"w_repeater_carbine01_grip3", "Not Set"}, + {"w_repeater_carbine01_sight1", "Not Set"}, + {"w_repeater_carbine01_sight2", "Not Set"}, + {"w_repeater_carbine01_wrap1", "Not Set"}, + {"w_repeater_cloth_strap01", "Not Set"}, + {"w_repeater_evans01", "Not Set"}, + {"w_repeater_evans01_grip1", "Not Set"}, + {"w_repeater_evans01_grip2", "Not Set"}, + {"w_repeater_evans01_grip3", "Not Set"}, + {"w_repeater_evans01_sight1", "Not Set"}, + {"w_repeater_evans01_sight2", "Not Set"}, + {"w_repeater_evans01_wrap1", "Not Set"}, + {"w_repeater_henry01", "Not Set"}, + {"w_repeater_henry01_grip1", "Not Set"}, + {"w_repeater_henry01_grip2", "Not Set"}, + {"w_repeater_henry01_grip3", "Not Set"}, + {"w_repeater_henry01_sight1", "Not Set"}, + {"w_repeater_henry01_sight2", "Not Set"}, + {"w_repeater_henry01_wrap1", "Not Set"}, + {"w_repeater_pumpaction01", "Not Set"}, + {"w_repeater_pumpaction01_clip1", "Not Set"}, + {"w_repeater_pumpaction01_clip2", "Not Set"}, + {"w_repeater_pumpaction01_clip3", "Not Set"}, + {"w_repeater_pumpaction01_grip1", "Not Set"}, + {"w_repeater_pumpaction01_grip2", "Not Set"}, + {"w_repeater_pumpaction01_grip3", "Not Set"}, + {"w_repeater_pumpaction01_sight1", "Not Set"}, + {"w_repeater_pumpaction01_sight2", "Not Set"}, + {"w_repeater_pumpaction01_wrap1", "Not Set"}, + {"w_repeater_strap01", "Not Set"}, + {"w_repeater_winchester01", "Not Set"}, + {"w_repeater_winchester01_grip1", "Not Set"}, + {"w_repeater_winchester01_grip2", "Not Set"}, + {"w_repeater_winchester01_grip3", "Not Set"}, + {"w_repeater_winchester01_sight1", "Not Set"}, + {"w_repeater_winchester01_sight2", "Not Set"}, + {"w_repeater_winchester01_wrap1", "Not Set"}, + {"w_repeater_winchester03_grip1", "Not Set"}, + {"w_repeater_winchester03_wrap1", "Not Set"}, + {"w_revolver_cattleman01", "Not Set"}, + {"w_revolver_cattleman01_barrel01", "Not Set"}, + {"w_revolver_cattleman01_barrel02", "Not Set"}, + {"w_revolver_cattleman01_grip1", "Not Set"}, + {"w_revolver_cattleman01_grip2", "Not Set"}, + {"w_revolver_cattleman01_grip3", "Not Set"}, + {"w_revolver_cattleman01_grip4", "Not Set"}, + {"w_revolver_cattleman01_grip5", "Not Set"}, + {"w_revolver_cattleman01_sight1", "Not Set"}, + {"w_revolver_cattleman01_sight2", "Not Set"}, + {"w_revolver_cattleman02", "Not Set"}, + {"w_revolver_cattleman03", "Not Set"}, + {"w_revolver_doubleaction01", "Not Set"}, + {"w_revolver_doubleaction01_barrel01", "Not Set"}, + {"w_revolver_doubleaction01_barrel02", "Not Set"}, + {"w_revolver_doubleaction01_grip1", "Not Set"}, + {"w_revolver_doubleaction01_grip2", "Not Set"}, + {"w_revolver_doubleaction01_grip3", "Not Set"}, + {"w_revolver_doubleaction01_grip4", "Not Set"}, + {"w_revolver_doubleaction01_grip5", "Not Set"}, + {"w_revolver_doubleaction01_sight1", "Not Set"}, + {"w_revolver_doubleaction01_sight2", "Not Set"}, + {"w_revolver_doubleaction02", "Not Set"}, + {"w_revolver_doubleaction02_grip01", "Not Set"}, + {"w_revolver_doubleaction03", "Not Set"}, + {"w_revolver_doubleaction04", "Not Set"}, + {"w_revolver_doubleaction06", "Not Set"}, + {"w_revolver_lemat01", "Not Set"}, + {"w_revolver_lemat01_barrel01", "Not Set"}, + {"w_revolver_lemat01_barrel02", "Not Set"}, + {"w_revolver_lemat01_grip1", "Not Set"}, + {"w_revolver_lemat01_grip2", "Not Set"}, + {"w_revolver_lemat01_grip3", "Not Set"}, + {"w_revolver_lemat01_grip4", "Not Set"}, + {"w_revolver_lemat01_sight1", "Not Set"}, + {"w_revolver_lemat01_sight2", "Not Set"}, + {"w_revolver_schofield01", "Not Set"}, + {"w_revolver_schofield01_barrel01", "Not Set"}, + {"w_revolver_schofield01_barrel02", "Not Set"}, + {"w_revolver_schofield01_grip1", "Not Set"}, + {"w_revolver_schofield01_grip2", "Not Set"}, + {"w_revolver_schofield01_grip3", "Not Set"}, + {"w_revolver_schofield01_grip4", "Not Set"}, + {"w_revolver_schofield01_sight1", "Not Set"}, + {"w_revolver_schofield01_sight2", "Not Set"}, + {"w_revolver_schofield02", "Not Set"}, + {"w_revolver_schofield03", "Not Set"}, + {"w_revolver_schofield04", "Not Set"}, + {"w_revolver_schofield05_grip1", "Not Set"}, + {"w_revolver_schofield05_sight1", "Not Set"}, + {"w_rifle_boltaction01", "Not Set"}, + {"w_rifle_boltaction01_grip1", "Not Set"}, + {"w_rifle_boltaction01_grip2", "Not Set"}, + {"w_rifle_boltaction01_grip3", "Not Set"}, + {"w_rifle_boltaction01_sight1", "Not Set"}, + {"w_rifle_boltaction01_sight2", "Not Set"}, + {"w_rifle_boltaction01_wrap1", "Not Set"}, + {"w_rifle_boltaction03_grip1", "Not Set"}, + {"w_rifle_carcano01", "Not Set"}, + {"w_rifle_carcano01_clip", "Not Set"}, + {"w_rifle_carcano01_clip2", "Not Set"}, + {"w_rifle_carcano01_grip1", "Not Set"}, + {"w_rifle_carcano01_grip2", "Not Set"}, + {"w_rifle_carcano01_grip3", "Not Set"}, + {"w_rifle_carcano01_sight1", "Not Set"}, + {"w_rifle_carcano01_sight2", "Not Set"}, + {"w_rifle_carcano01_wrap1", "Not Set"}, + {"w_rifle_cs_strap01", "Not Set"}, + {"w_rifle_rollingblock01", "Not Set"}, + {"w_rifle_rollingblock01_grip1", "Not Set"}, + {"w_rifle_rollingblock01_grip2", "Not Set"}, + {"w_rifle_rollingblock01_grip3", "Not Set"}, + {"w_rifle_rollingblock01_sight1", "Not Set"}, + {"w_rifle_rollingblock01_sight2", "Not Set"}, + {"w_rifle_rollingblock01_wrap1", "Not Set"}, + {"w_rifle_rollingblock02", "Not Set"}, + {"w_rifle_rollingblock02_grip1", "Not Set"}, + {"w_rifle_scope02", "Not Set"}, + {"w_rifle_scope03", "Not Set"}, + {"w_rifle_scope04", "Not Set"}, + {"w_rifle_scopeinner01", "Not Set"}, + {"w_rifle_springfield01", "Not Set"}, + {"w_rifle_springfield01_grip1", "Not Set"}, + {"w_rifle_springfield01_grip2", "Not Set"}, + {"w_rifle_springfield01_grip3", "Not Set"}, + {"w_rifle_springfield01_sight1", "Not Set"}, + {"w_rifle_springfield01_sight2", "Not Set"}, + {"w_rifle_springfield01_wrap1", "Not Set"}, + {"w_shotgun_doublebarrel01", "Not Set"}, + {"w_shotgun_doublebarrel01_barrel1", "Not Set"}, + {"w_shotgun_doublebarrel01_barrel2", "Not Set"}, + {"w_shotgun_doublebarrel01_grip1", "Not Set"}, + {"w_shotgun_doublebarrel01_grip2", "Not Set"}, + {"w_shotgun_doublebarrel01_grip3", "Not Set"}, + {"w_shotgun_doublebarrel01_mag1", "Not Set"}, + {"w_shotgun_doublebarrel01_mag2", "Not Set"}, + {"w_shotgun_doublebarrel01_mag3", "Not Set"}, + {"w_shotgun_doublebarrel01_sight1", "Not Set"}, + {"w_shotgun_doublebarrel01_sight2", "Not Set"}, + {"w_shotgun_doublebarrel01_wrap1", "Not Set"}, + {"w_shotgun_doublebarrel02", "Not Set"}, + {"w_shotgun_doublebarrel02_grip1", "Not Set"}, + {"w_shotgun_doublebarrel02_mag1", "Not Set"}, + {"w_shotgun_pumpaction01", "Not Set"}, + {"w_shotgun_pumpaction01_barrel1", "Not Set"}, + {"w_shotgun_pumpaction01_barrel2", "Not Set"}, + {"w_shotgun_pumpaction01_clip1", "Not Set"}, + {"w_shotgun_pumpaction01_clip2", "Not Set"}, + {"w_shotgun_pumpaction01_clip3", "Not Set"}, + {"w_shotgun_pumpaction01_grip1", "Not Set"}, + {"w_shotgun_pumpaction01_grip2", "Not Set"}, + {"w_shotgun_pumpaction01_grip3", "Not Set"}, + {"w_shotgun_pumpaction01_sight1", "Not Set"}, + {"w_shotgun_pumpaction01_sight2", "Not Set"}, + {"w_shotgun_pumpaction01_wrap1", "Not Set"}, + {"w_shotgun_pumpaction03_clip1", "Not Set"}, + {"w_shotgun_pumpaction03_grip1", "Not Set"}, + {"w_shotgun_repeating01", "Not Set"}, + {"w_shotgun_repeating01_barrel1", "Not Set"}, + {"w_shotgun_repeating01_barrel2", "Not Set"}, + {"w_shotgun_repeating01_grip1", "Not Set"}, + {"w_shotgun_repeating01_grip2", "Not Set"}, + {"w_shotgun_repeating01_grip3", "Not Set"}, + {"w_shotgun_repeating01_sight1", "Not Set"}, + {"w_shotgun_repeating01_sight2", "Not Set"}, + {"w_shotgun_repeating01_wrap1", "Not Set"}, + {"w_shotgun_sawed01", "Not Set"}, + {"w_shotgun_sawed01_grip1", "Not Set"}, + {"w_shotgun_sawed01_grip2", "Not Set"}, + {"w_shotgun_sawed01_grip3", "Not Set"}, + {"w_shotgun_sawed01_sight1", "Not Set"}, + {"w_shotgun_sawed01_sight2", "Not Set"}, + {"w_shotgun_sawed01_stock1", "Not Set"}, + {"w_shotgun_sawed01_stock2", "Not Set"}, + {"w_shotgun_sawed01_stock3", "Not Set"}, + {"w_shotgun_sawed01_wrap1", "Not Set"}, + {"w_shotgun_semiauto01", "Not Set"}, + {"w_shotgun_semiauto01_barrel1", "Not Set"}, + {"w_shotgun_semiauto01_barrel2", "Not Set"}, + {"w_shotgun_semiauto01_grip1", "Not Set"}, + {"w_shotgun_semiauto01_grip2", "Not Set"}, + {"w_shotgun_semiauto01_grip3", "Not Set"}, + {"w_shotgun_semiauto01_sight1", "Not Set"}, + {"w_shotgun_semiauto01_sight2", "Not Set"}, + {"w_shotgun_semiauto01_wrap1", "Not Set"}, + {"w_sight_rear01", "Not Set"}, + {"w_sight_rear02", "Not Set"}, + {"w_sp_bowarrow", "Not Set"}, + {"w_sp_bowarrow_arrow", "Not Set"}, + {"w_sp_bowarrow_arrow_smallgame", "Not Set"}, + {"w_sp_bowarrow_charles", "Not Set"}, + {"w_sp_bowarrow_dynamite", "Not Set"}, + {"w_sp_bowarrow_fire", "Not Set"}, + {"w_stick_dynamite01", "Not Set"}, + {"w_throw_dynamite01", "Not Set"}, + {"w_throw_dynamite02", "Not Set"}, + {"w_throw_dynamite03", "Not Set"}, + {"w_throw_dynamite04", "Not Set"}, + {"w_throw_lantern01", "Not Set"}, + {"w_throw_molotov01", "Not Set"}, + {"w_throw_molotov02", "Not Set"}, + {"w_binoculars02", "Not Set"}, + {"A_C_Alligator_01", "Not Set"}, + {"a_c_alligator_02", "Not Set"}, + {"a_c_alligator_03", "Not Set"}, + {"a_c_armadillo_01", "Not Set"}, + {"A_C_Badger_01", "Not Set"}, + {"A_C_Bat_01", "Not Set"}, + {"A_C_Bear_01", "Not Set"}, + {"A_C_BearBlack_01", "Not Set"}, + {"A_C_Beaver_01", "Not Set"}, + {"A_C_BigHornRam_01", "Not Set"}, + {"A_C_BlueJay_01", "Not Set"}, + {"A_C_Boar_01", "Not Set"}, + {"a_c_boarlegendary_01", "Not Set"}, + {"A_C_Buck_01", "Not Set"}, + {"A_C_Buffalo_01", "Not Set"}, + {"a_c_buffalo_tatanka_01", "Not Set"}, + {"a_c_bull_01", "Not Set"}, + {"A_C_CaliforniaCondor_01", "Not Set"}, + {"A_C_Cardinal_01", "Not Set"}, + {"A_C_CarolinaParakeet_01", "Not Set"}, + {"a_c_cat_01", "Not Set"}, + {"A_C_Cedarwaxwing_01", "Not Set"}, + {"a_c_chicken_01", "Not Set"}, + {"a_c_chipmunk_01", "Not Set"}, + {"a_c_cormorant_01", "Not Set"}, + {"A_C_Cougar_01", "Not Set"}, + {"a_c_cow", "Not Set"}, + {"A_C_Coyote_01", "Not Set"}, + {"a_c_crab_01", "Not Set"}, + {"A_C_CraneWhooping_01", "Not Set"}, + {"a_c_crawfish_01", "Not Set"}, + {"A_C_Crow_01", "Not Set"}, + {"A_C_Deer_01", "Not Set"}, + {"a_c_dogamericanfoxhound_01", "Not Set"}, + {"A_C_DogAustralianSheperd_01", "Not Set"}, + {"a_c_dogbluetickcoonhound_01", "Not Set"}, + {"a_c_dogcatahoulacur_01", "Not Set"}, + {"a_c_dogchesbayretriever_01", "Not Set"}, + {"a_c_dogcollie_01", "Not Set"}, + {"a_c_doghobo_01", "Not Set"}, + {"a_c_doghound_01", "Not Set"}, + {"a_c_doghusky_01", "Not Set"}, + {"a_c_doglab_01", "Not Set"}, + {"a_c_doglion_01", "Not Set"}, + {"a_c_dogpoodle_01", "Not Set"}, + {"a_c_dogrufus_01", "Not Set"}, + {"a_c_dogstreet_01", "Not Set"}, + {"a_c_donkey_01", "Not Set"}, + {"A_C_Duck_01", "Not Set"}, + {"A_C_Eagle_01", "Not Set"}, + {"A_C_Egret_01", "Not Set"}, + {"A_C_Elk_01", "Not Set"}, + {"a_c_fishbluegil_01_ms", "Not Set"}, + {"a_c_fishbluegil_01_sm", "Not Set"}, + {"a_c_fishbullheadcat_01_ms", "Not Set"}, + {"a_c_fishbullheadcat_01_sm", "Not Set"}, + {"a_c_fishchainpickerel_01_ms", "Not Set"}, + {"a_c_fishchainpickerel_01_sm", "Not Set"}, + {"a_c_fishchannelcatfish_01_lg", "Not Set"}, + {"a_c_fishchannelcatfish_01_xl", "Not Set"}, + {"a_c_fishlakesturgeon_01_lg", "Not Set"}, + {"a_c_fishlargemouthbass_01_lg", "Not Set"}, + {"a_c_fishlargemouthbass_01_ms", "Not Set"}, + {"a_c_fishlongnosegar_01_lg", "Not Set"}, + {"a_c_fishmuskie_01_lg", "Not Set"}, + {"a_c_fishnorthernpike_01_lg", "Not Set"}, + {"a_c_fishperch_01_ms", "Not Set"}, + {"a_c_fishperch_01_sm", "Not Set"}, + {"a_c_fishrainbowtrout_01_lg", "Not Set"}, + {"a_c_fishrainbowtrout_01_ms", "Not Set"}, + {"a_c_fishredfinpickerel_01_ms", "Not Set"}, + {"a_c_fishredfinpickerel_01_sm", "Not Set"}, + {"a_c_fishrockbass_01_ms", "Not Set"}, + {"a_c_fishrockbass_01_sm", "Not Set"}, + {"a_c_fishsalmonsockeye_01_lg", "Not Set"}, + {"a_c_fishsalmonsockeye_01_ml", "Not Set"}, + {"a_c_fishsalmonsockeye_01_ms", "Not Set"}, + {"a_c_fishsmallmouthbass_01_lg", "Not Set"}, + {"a_c_fishsmallmouthbass_01_ms", "Not Set"}, + {"A_C_Fox_01", "Not Set"}, + {"a_c_frogbull_01", "Not Set"}, + {"a_c_gilamonster_01", "Not Set"}, + {"a_c_goat_01", "Not Set"}, + {"A_C_GooseCanada_01", "Not Set"}, + {"A_C_Hawk_01", "Not Set"}, + {"A_C_Heron_01", "Not Set"}, + {"a_c_horse_americanpaint_greyovero", "Not Set"}, + {"a_c_horse_americanpaint_overo", "Not Set"}, + {"a_c_horse_americanpaint_splashedwhite", "Not Set"}, + {"a_c_horse_americanpaint_tobiano", "Not Set"}, + {"a_c_horse_americanstandardbred_black", "Not Set"}, + {"a_c_horse_americanstandardbred_buckskin", "Not Set"}, + {"A_C_Horse_AmericanStandardbred_LightBuckskin", "Not Set"}, + {"a_c_horse_americanstandardbred_palominodapple", "Not Set"}, + {"a_c_horse_americanstandardbred_silvertailbuckskin", "Not Set"}, + {"a_c_horse_andalusian_darkbay", "Not Set"}, + {"a_c_horse_andalusian_perlino", "Not Set"}, + {"a_c_horse_andalusian_rosegray", "Not Set"}, + {"a_c_horse_appaloosa_blacksnowflake", "Not Set"}, + {"a_c_horse_appaloosa_blanket", "Not Set"}, + {"a_c_horse_appaloosa_brownleopard", "Not Set"}, + {"A_C_Horse_Appaloosa_FewSpotted_PC", "Not Set"}, + {"a_c_horse_appaloosa_leopard", "Not Set"}, + {"a_c_horse_appaloosa_leopardblanket", "Not Set"}, + {"a_c_horse_arabian_black", "Not Set"}, + {"a_c_horse_arabian_grey", "Not Set"}, + {"A_C_Horse_Arabian_RedChestnut", "Not Set"}, + {"A_C_Horse_Arabian_RedChestnut_PC", "Not Set"}, + {"a_c_horse_arabian_rosegreybay", "Not Set"}, + {"A_C_Horse_Arabian_WarpedBrindle_PC", "Not Set"}, + {"a_c_horse_arabian_white", "Not Set"}, + {"a_c_horse_ardennes_bayroan", "Not Set"}, + {"a_c_horse_ardennes_irongreyroan", "Not Set"}, + {"a_c_horse_ardennes_strawberryroan", "Not Set"}, + {"a_c_horse_belgian_blondchestnut", "Not Set"}, + {"a_c_horse_belgian_mealychestnut", "Not Set"}, + {"A_C_Horse_Breton_GrulloDun", "Not Set"}, + {"A_C_Horse_Breton_MealyDappleBay", "Not Set"}, + {"A_C_Horse_Breton_RedRoan", "Not Set"}, + {"A_C_Horse_Breton_SealBrown", "Not Set"}, + {"A_C_Horse_Breton_Sorrel", "Not Set"}, + {"A_C_Horse_Breton_SteelGrey", "Not Set"}, + {"a_c_horse_buell_warvets", "Not Set"}, + {"A_C_Horse_Criollo_BayBrindle", "Not Set"}, + {"A_C_Horse_Criollo_BayFrameOvero", "Not Set"}, + {"A_C_Horse_Criollo_BlueRoanOvero", "Not Set"}, + {"A_C_Horse_Criollo_Dun", "Not Set"}, + {"A_C_Horse_Criollo_MarbleSabino", "Not Set"}, + {"A_C_Horse_Criollo_SorrelOvero", "Not Set"}, + {"a_c_horse_dutchwarmblood_chocolateroan", "Not Set"}, + {"a_c_horse_dutchwarmblood_sealbrown", "Not Set"}, + {"a_c_horse_dutchwarmblood_sootybuckskin", "Not Set"}, + {"a_c_horse_eagleflies", "Not Set"}, + {"a_c_horse_gang_bill", "Not Set"}, + {"a_c_horse_gang_charles", "Not Set"}, + {"a_c_horse_gang_charles_endlesssummer", "Not Set"}, + {"a_c_horse_gang_dutch", "Not Set"}, + {"a_c_horse_gang_hosea", "Not Set"}, + {"a_c_horse_gang_javier", "Not Set"}, + {"a_c_horse_gang_john", "Not Set"}, + {"a_c_horse_gang_karen", "Not Set"}, + {"a_c_horse_gang_kieran", "Not Set"}, + {"a_c_horse_gang_lenny", "Not Set"}, + {"a_c_horse_gang_micah", "Not Set"}, + {"a_c_horse_gang_sadie", "Not Set"}, + {"a_c_horse_gang_sadie_endlesssummer", "Not Set"}, + {"a_c_horse_gang_sean", "Not Set"}, + {"a_c_horse_gang_trelawney", "Not Set"}, + {"a_c_horse_gang_uncle", "Not Set"}, + {"a_c_horse_gang_uncle_endlesssummer", "Not Set"}, + {"a_c_horse_hungarianhalfbred_darkdapplegrey", "Not Set"}, + {"a_c_horse_hungarianhalfbred_flaxenchestnut", "Not Set"}, + {"a_c_horse_hungarianhalfbred_liverchestnut", "Not Set"}, + {"a_c_horse_hungarianhalfbred_piebaldtobiano", "Not Set"}, + {"a_c_horse_john_endlesssummer", "Not Set"}, + {"a_c_horse_kentuckysaddle_black", "Not Set"}, + {"A_C_HORSE_KENTUCKYSADDLE_ButtermilkBuckskin_PC", "Not Set"}, + {"a_c_horse_kentuckysaddle_chestnutpinto", "Not Set"}, + {"a_c_horse_kentuckysaddle_grey", "Not Set"}, + {"a_c_horse_kentuckysaddle_silverbay", "Not Set"}, + {"A_C_Horse_Kladruber_Black", "Not Set"}, + {"A_C_Horse_Kladruber_Cremello", "Not Set"}, + {"A_C_Horse_Kladruber_DappleRoseGrey", "Not Set"}, + {"A_C_Horse_Kladruber_Grey", "Not Set"}, + {"A_C_Horse_Kladruber_Silver", "Not Set"}, + {"A_C_Horse_Kladruber_White", "Not Set"}, + {"a_c_horse_missourifoxtrotter_amberchampagne", "Not Set"}, + {"a_c_horse_missourifoxtrotter_sablechampagne", "Not Set"}, + {"a_c_horse_missourifoxtrotter_silverdapplepinto", "Not Set"}, + {"a_c_horse_morgan_bay", "Not Set"}, + {"a_c_horse_morgan_bayroan", "Not Set"}, + {"a_c_horse_morgan_flaxenchestnut", "Not Set"}, + {"A_C_HORSE_Morgan_LiverChestnut_PC", "Not Set"}, + {"a_c_horse_morgan_palomino", "Not Set"}, + {"A_C_Horse_MP_Mangy_Backup", "Not Set"}, + {"a_c_horsemule_01", "Not Set"}, + {"a_c_horsemulepainted_01", "Not Set"}, + {"a_c_horse_murfreebrood_mange_01", "Not Set"}, + {"a_c_horse_murfreebrood_mange_02", "Not Set"}, + {"a_c_horse_murfreebrood_mange_03", "Not Set"}, + {"a_c_horse_mustang_goldendun", "Not Set"}, + {"a_c_horse_mustang_grullodun", "Not Set"}, + {"a_c_horse_mustang_tigerstripedbay", "Not Set"}, + {"a_c_horse_mustang_wildbay", "Not Set"}, + {"a_c_horse_nokota_blueroan", "Not Set"}, + {"a_c_horse_nokota_reversedappleroan", "Not Set"}, + {"a_c_horse_nokota_whiteroan", "Not Set"}, + {"a_c_horse_shire_darkbay", "Not Set"}, + {"a_c_horse_shire_lightgrey", "Not Set"}, + {"a_c_horse_shire_ravenblack", "Not Set"}, + {"a_c_horse_suffolkpunch_redchestnut", "Not Set"}, + {"a_c_horse_suffolkpunch_sorrel", "Not Set"}, + {"a_c_horse_tennesseewalker_blackrabicano", "Not Set"}, + {"a_c_horse_tennesseewalker_chestnut", "Not Set"}, + {"a_c_horse_tennesseewalker_dapplebay", "Not Set"}, + {"a_c_horse_tennesseewalker_flaxenroan", "Not Set"}, + {"A_C_Horse_TennesseeWalker_GoldPalomino_PC", "Not Set"}, + {"a_c_horse_tennesseewalker_mahoganybay", "Not Set"}, + {"a_c_horse_tennesseewalker_redroan", "Not Set"}, + {"a_c_horse_thoroughbred_blackchestnut", "Not Set"}, + {"a_c_horse_thoroughbred_bloodbay", "Not Set"}, + {"a_c_horse_thoroughbred_brindle", "Not Set"}, + {"a_c_horse_thoroughbred_dapplegrey", "Not Set"}, + {"a_c_horse_thoroughbred_reversedappleblack", "Not Set"}, + {"a_c_horse_turkoman_darkbay", "Not Set"}, + {"a_c_horse_turkoman_gold", "Not Set"}, + {"a_c_horse_turkoman_silver", "Not Set"}, + {"a_c_horse_winter02_01", "Not Set"}, + {"a_c_iguana_01", "Not Set"}, + {"a_c_iguanadesert_01", "Not Set"}, + {"a_c_javelina_01", "Not Set"}, + {"a_c_lionmangy_01", "Not Set"}, + {"A_C_Loon_01", "Not Set"}, + {"A_C_Moose_01", "Not Set"}, + {"A_C_Muskrat_01", "Not Set"}, + {"A_C_ORIOLE_01", "Not Set"}, + {"A_C_Owl_01", "Not Set"}, + {"a_c_ox_01", "Not Set"}, + {"A_C_Panther_01", "Not Set"}, + {"A_C_Parrot_01", "Not Set"}, + {"A_C_Pelican_01", "Not Set"}, + {"A_C_Pheasant_01", "Not Set"}, + {"a_c_pig_01", "Not Set"}, + {"a_c_pigeon", "Not Set"}, + {"A_C_Possum_01", "Not Set"}, + {"A_C_Prairiechicken_01", "Not Set"}, + {"A_C_Pronghorn_01", "Not Set"}, + {"A_C_Quail_01", "Not Set"}, + {"A_C_Rabbit_01", "Not Set"}, + {"A_C_Raccoon_01", "Not Set"}, + {"A_C_Rat_01", "Not Set"}, + {"A_C_Raven_01", "Not Set"}, + {"a_c_redfootedbooby_01", "Not Set"}, + {"a_c_robin_01", "Not Set"}, + {"a_c_rooster_01", "Not Set"}, + {"A_C_RoseateSpoonbill_01", "Not Set"}, + {"A_C_Seagull_01", "Not Set"}, + {"a_c_sharkhammerhead_01", "Not Set"}, + {"a_c_sharktiger", "Not Set"}, + {"a_c_sheep_01", "Not Set"}, + {"A_C_Skunk_01", "Not Set"}, + {"A_C_SNAKE_01", "Not Set"}, + {"a_c_snakeblacktailrattle_01", "Not Set"}, + {"a_c_snakeblacktailrattle_pelt_01", "Not Set"}, + {"a_c_snakeferdelance_01", "Not Set"}, + {"a_c_snakeferdelance_pelt_01", "Not Set"}, + {"a_c_snake_pelt_01", "Not Set"}, + {"A_C_SNAKEREDBOA_01", "Not Set"}, + {"a_c_snakeredboa10ft_01", "Not Set"}, + {"a_c_snakeredboa_pelt_01", "Not Set"}, + {"a_c_snakewater_01", "Not Set"}, + {"a_c_snakewater_pelt_01", "Not Set"}, + {"A_C_SongBird_01", "Not Set"}, + {"A_C_Sparrow_01", "Not Set"}, + {"A_C_Squirrel_01", "Not Set"}, + {"a_c_toad_01", "Not Set"}, + {"A_C_Turkey_01", "Not Set"}, + {"a_c_turkey_02", "Not Set"}, + {"A_C_TurkeyWild_01", "Not Set"}, + {"a_c_turtlesea_01", "Not Set"}, + {"a_c_turtlesnapping_01", "Not Set"}, + {"A_C_Vulture_01", "Not Set"}, + {"A_C_Wolf", "Not Set"}, + {"a_c_wolf_medium", "Not Set"}, + {"A_C_Wolf_Small", "Not Set"}, + {"A_C_Woodpecker_01", "Not Set"}, + {"a_c_woodpecker_02", "Not Set"}, + {"western_saddle_01", "Not Set"}, + {"western_saddle_02", "Not Set"}, + {"western_saddle_03", "Not Set"}, + {"western_saddle_04", "Not Set"}, + {"a_f_m_armcholeracorpse_01", "Not Set"}, + {"a_f_m_armtownfolk_01", "Not Set"}, + {"a_f_m_armtownfolk_02", "Not Set"}, + {"a_f_m_asbtownfolk_01", "Not Set"}, + {"a_f_m_bivfancytravellers_01", "Not Set"}, + {"a_f_m_blwtownfolk_01", "Not Set"}, + {"a_f_m_blwtownfolk_02", "Not Set"}, + {"a_f_m_blwupperclass_01", "Not Set"}, + {"a_f_m_btchillbilly_01", "Not Set"}, + {"a_f_m_btcobesewomen_01", "Not Set"}, + {"a_f_m_bynfancytravellers_01", "Not Set"}, + {"a_f_m_familytravelers_cool_01", "Not Set"}, + {"a_f_m_familytravelers_warm_01", "Not Set"}, + {"a_f_m_gamhighsociety_01", "Not Set"}, + {"a_f_m_grifancytravellers_01", "Not Set"}, + {"a_f_m_guatownfolk_01", "Not Set"}, + {"a_f_m_htlfancytravellers_01", "Not Set"}, + {"a_f_m_lagtownfolk_01", "Not Set"}, + {"a_f_m_lowersdtownfolk_01", "Not Set"}, + {"a_f_m_lowersdtownfolk_02", "Not Set"}, + {"a_f_m_lowersdtownfolk_03", "Not Set"}, + {"a_f_m_lowertrainpassengers_01", "Not Set"}, + {"a_f_m_middlesdtownfolk_01", "Not Set"}, + {"a_f_m_middlesdtownfolk_02", "Not Set"}, + {"a_f_m_middlesdtownfolk_03", "Not Set"}, + {"a_f_m_middletrainpassengers_01", "Not Set"}, + {"a_f_m_nbxslums_01", "Not Set"}, + {"a_f_m_nbxupperclass_01", "Not Set"}, + {"a_f_m_nbxwhore_01", "Not Set"}, + {"a_f_m_rhdprostitute_01", "Not Set"}, + {"a_f_m_rhdtownfolk_01", "Not Set"}, + {"a_f_m_rhdtownfolk_02", "Not Set"}, + {"a_f_m_rhdupperclass_01", "Not Set"}, + {"a_f_m_rkrfancytravellers_01", "Not Set"}, + {"a_f_m_roughtravellers_01", "Not Set"}, + {"a_f_m_sclfancytravellers_01", "Not Set"}, + {"a_f_m_sdchinatown_01", "Not Set"}, + {"a_f_m_sdfancywhore_01", "Not Set"}, + {"a_f_m_sdobesewomen_01", "Not Set"}, + {"a_f_m_sdserversformal_01", "Not Set"}, + {"a_f_m_sdslums_02", "Not Set"}, + {"a_f_m_skpprisononline_01", "Not Set"}, + {"a_f_m_strtownfolk_01", "Not Set"}, + {"a_f_m_tumtownfolk_01", "Not Set"}, + {"a_f_m_tumtownfolk_02", "Not Set"}, + {"a_f_m_unicorpse_01", "Not Set"}, + {"a_f_m_uppertrainpassengers_01", "Not Set"}, + {"a_f_m_valprostitute_01", "Not Set"}, + {"a_f_m_valtownfolk_01", "Not Set"}, + {"a_f_m_vhtprostitute_01", "Not Set"}, + {"a_f_m_vhttownfolk_01", "Not Set"}, + {"a_f_m_waptownfolk_01", "Not Set"}, + {"a_f_o_blwupperclass_01", "Not Set"}, + {"a_f_o_btchillbilly_01", "Not Set"}, + {"a_f_o_guatownfolk_01", "Not Set"}, + {"a_f_o_lagtownfolk_01", "Not Set"}, + {"a_f_o_sdchinatown_01", "Not Set"}, + {"a_f_o_sdupperclass_01", "Not Set"}, + {"a_f_o_waptownfolk_01", "Not Set"}, + {"a_m_m_armcholeracorpse_01", "Not Set"}, + {"a_m_m_armdeputyresident_01", "Not Set"}, + {"a_m_m_armtownfolk_01", "Not Set"}, + {"a_m_m_armtownfolk_02", "Not Set"}, + {"a_m_m_asbboatcrew_01", "Not Set"}, + {"a_m_m_asbdeputyresident_01", "Not Set"}, + {"a_m_m_asbminer_01", "Not Set"}, + {"a_m_m_asbminer_02", "Not Set"}, + {"a_m_m_asbminer_03", "Not Set"}, + {"a_m_m_asbminer_04", "Not Set"}, + {"a_m_m_asbtownfolk_01", "Not Set"}, + {"a_m_m_asbtownfolk_01_laborer", "Not Set"}, + {"a_m_m_bivfancydrivers_01", "Not Set"}, + {"a_m_m_bivfancytravellers_01", "Not Set"}, + {"a_m_m_bivroughtravellers_01", "Not Set"}, + {"a_m_m_bivworker_01", "Not Set"}, + {"a_m_m_blwforeman_01", "Not Set"}, + {"a_m_m_blwlaborer_01", "Not Set"}, + {"a_m_m_blwlaborer_02", "Not Set"}, + {"a_m_m_blwobesemen_01", "Not Set"}, + {"a_m_m_blwtownfolk_01", "Not Set"}, + {"a_m_m_blwupperclass_01", "Not Set"}, + {"a_m_m_btchillbilly_01", "Not Set"}, + {"a_m_m_btcobesemen_01", "Not Set"}, + {"a_m_m_bynfancydrivers_01", "Not Set"}, + {"a_m_m_bynfancytravellers_01", "Not Set"}, + {"a_m_m_bynroughtravellers_01", "Not Set"}, + {"a_m_m_bynsurvivalist_01", "Not Set"}, + {"a_m_m_cardgameplayers_01", "Not Set"}, + {"a_m_m_chelonian_01", "Not Set"}, + {"a_m_m_deliverytravelers_cool_01", "Not Set"}, + {"a_m_m_deliverytravelers_warm_01", "Not Set"}, + {"a_m_m_dominoesplayers_01", "Not Set"}, + {"a_m_m_emrfarmhand_01", "Not Set"}, + {"a_m_m_familytravelers_cool_01", "Not Set"}, + {"a_m_m_familytravelers_warm_01", "Not Set"}, + {"a_m_m_farmtravelers_cool_01", "Not Set"}, + {"a_m_m_farmtravelers_warm_01", "Not Set"}, + {"a_m_m_fivefingerfilletplayers_01", "Not Set"}, + {"a_m_m_foreman", "Not Set"}, + {"a_m_m_gamhighsociety_01", "Not Set"}, + {"a_m_m_grifancydrivers_01", "Not Set"}, + {"a_m_m_grifancytravellers_01", "Not Set"}, + {"a_m_m_griroughtravellers_01", "Not Set"}, + {"a_m_m_grisurvivalist_01", "Not Set"}, + {"a_m_m_guatownfolk_01", "Not Set"}, + {"a_m_m_htlfancydrivers_01", "Not Set"}, + {"a_m_m_htlfancytravellers_01", "Not Set"}, + {"a_m_m_htlroughtravellers_01", "Not Set"}, + {"a_m_m_htlsurvivalist_01", "Not Set"}, + {"a_m_m_huntertravelers_cool_01", "Not Set"}, + {"a_m_m_huntertravelers_warm_01", "Not Set"}, + {"a_m_m_jamesonguard_01", "Not Set"}, + {"a_m_m_lagtownfolk_01", "Not Set"}, + {"a_m_m_lowersdtownfolk_01", "Not Set"}, + {"a_m_m_lowersdtownfolk_02", "Not Set"}, + {"a_m_m_lowertrainpassengers_01", "Not Set"}, + {"a_m_m_middlesdtownfolk_01", "Not Set"}, + {"a_m_m_middlesdtownfolk_02", "Not Set"}, + {"a_m_m_middlesdtownfolk_03", "Not Set"}, + {"a_m_m_middletrainpassengers_01", "Not Set"}, + {"a_m_m_moonshiners_01", "Not Set"}, + {"a_m_m_nbxdockworkers_01", "Not Set"}, + {"a_m_m_nbxlaborers_01", "Not Set"}, + {"a_m_m_nbxslums_01", "Not Set"}, + {"a_m_m_nbxupperclass_01", "Not Set"}, + {"a_m_m_nearoughtravellers_01", "Not Set"}, + {"a_m_m_rancher_01", "Not Set"}, + {"a_m_m_ranchertravelers_cool_01", "Not Set"}, + {"a_m_m_ranchertravelers_warm_01", "Not Set"}, + {"a_m_m_rhddeputyresident_01", "Not Set"}, + {"a_m_m_rhdforeman_01", "Not Set"}, + {"a_m_m_rhdobesemen_01", "Not Set"}, + {"a_m_m_rhdtownfolk_01", "Not Set"}, + {"a_m_m_rhdtownfolk_01_laborer", "Not Set"}, + {"a_m_m_rhdtownfolk_02", "Not Set"}, + {"a_m_m_rhdupperclass_01", "Not Set"}, + {"a_m_m_rkrfancydrivers_01", "Not Set"}, + {"a_m_m_rkrfancytravellers_01", "Not Set"}, + {"a_m_m_rkrroughtravellers_01", "Not Set"}, + {"a_m_m_rkrsurvivalist_01", "Not Set"}, + {"a_m_m_sclfancydrivers_01", "Not Set"}, + {"a_m_m_sclfancytravellers_01", "Not Set"}, + {"a_m_m_sclroughtravellers_01", "Not Set"}, + {"a_m_m_sdchinatown_01", "Not Set"}, + {"a_m_m_sddockforeman_01", "Not Set"}, + {"a_m_m_sddockworkers_02", "Not Set"}, + {"a_m_m_sdfancytravellers_01", "Not Set"}, + {"a_m_m_sdlaborers_02", "Not Set"}, + {"a_m_m_sdobesemen_01", "Not Set"}, + {"a_m_m_sdroughtravellers_01", "Not Set"}, + {"a_m_m_sdserversformal_01", "Not Set"}, + {"a_m_m_sdslums_02", "Not Set"}, + {"a_m_m_skpprisoner_01", "Not Set"}, + {"a_m_m_skpprisonline_01", "Not Set"}, + {"a_m_m_smhthug_01", "Not Set"}, + {"a_m_m_strdeputyresident_01", "Not Set"}, + {"a_m_m_strfancytourist_01", "Not Set"}, + {"a_m_m_strlaborer_01", "Not Set"}, + {"a_m_m_strtownfolk_01", "Not Set"}, + {"a_m_m_tumtownfolk_01", "Not Set"}, + {"a_m_m_tumtownfolk_02", "Not Set"}, + {"a_m_m_uniboatcrew_01", "Not Set"}, + {"a_m_m_unicoachguards_01", "Not Set"}, + {"a_m_m_unicorpse_01", "Not Set"}, + {"a_m_m_unigunslinger_01", "Not Set"}, + {"a_m_m_uppertrainpassengers_01", "Not Set"}, + {"a_m_m_valcriminals_01", "Not Set"}, + {"a_m_m_valdeputyresident_01", "Not Set"}, + {"a_m_m_valfarmer_01", "Not Set"}, + {"a_m_m_vallaborer_01", "Not Set"}, + {"a_m_m_valtownfolk_01", "Not Set"}, + {"a_m_m_valtownfolk_02", "Not Set"}, + {"a_m_m_vhtboatcrew_01", "Not Set"}, + {"a_m_m_vhtthug_01", "Not Set"}, + {"a_m_m_vhttownfolk_01", "Not Set"}, + {"a_m_m_wapwarriors_01", "Not Set"}, + {"a_m_o_blwupperclass_01", "Not Set"}, + {"a_m_o_btchillbilly_01", "Not Set"}, + {"a_m_o_guatownfolk_01", "Not Set"}, + {"a_m_o_lagtownfolk_01", "Not Set"}, + {"a_m_o_sdchinatown_01", "Not Set"}, + {"a_m_o_sdupperclass_01", "Not Set"}, + {"a_m_o_waptownfolk_01", "Not Set"}, + {"amsp_robsdgunsmith_males_01", "Not Set"}, + {"am_valentinedoctors_females_01", "Not Set"}, + {"a_m_y_asbminer_01", "Not Set"}, + {"a_m_y_asbminer_02", "Not Set"}, + {"a_m_y_asbminer_03", "Not Set"}, + {"a_m_y_asbminer_04", "Not Set"}, + {"a_m_y_nbxstreetkids_01", "Not Set"}, + {"a_m_y_nbxstreetkids_slums_01", "Not Set"}, + {"a_m_y_sdstreetkids_slums_02", "Not Set"}, + {"a_m_y_unicorpse_01", "Not Set"}, + {"casp_coachrobbery_lenny_males_01", "Not Set"}, + {"casp_coachrobbery_micah_males_01", "Not Set"}, + {"casp_hunting02_males_01", "Not Set"}, + {"charro_saddle_01", "Not Set"}, + {"cr_strawberry_males_01", "Not Set"}, + {"cs_abe", "Not Set"}, + {"cs_aberdeenpigfarmer", "Not Set"}, + {"cs_aberdeensister", "Not Set"}, + {"cs_abigailroberts", "Not Set"}, + {"cs_acrobat", "Not Set"}, + {"cs_adamgray", "Not Set"}, + {"cs_agnesdowd", "Not Set"}, + {"cs_albertcakeesquire", "Not Set"}, + {"cs_albertmason", "Not Set"}, + {"cs_andershelgerson", "Not Set"}, + {"cs_angel", "Not Set"}, + {"cs_angryhusband", "Not Set"}, + {"cs_angusgeddes", "Not Set"}, + {"cs_ansel_atherton", "Not Set"}, + {"cs_antonyforemen", "Not Set"}, + {"cs_archerfordham", "Not Set"}, + {"cs_archibaldjameson", "Not Set"}, + {"cs_archiedown", "Not Set"}, + {"cs_artappraiser", "Not Set"}, + {"cs_asbdeputy_01", "Not Set"}, + {"cs_ashton", "Not Set"}, + {"cs_balloonoperator", "Not Set"}, + {"cs_bandbassist", "Not Set"}, + {"cs_banddrummer", "Not Set"}, + {"cs_bandpianist", "Not Set"}, + {"cs_bandsinger", "Not Set"}, + {"cs_baptiste", "Not Set"}, + {"cs_bartholomewbraithwaite", "Not Set"}, + {"cs_bathingladies_01", "Not Set"}, + {"cs_beatenupcaptain", "Not Set"}, + {"cs_beaugray", "Not Set"}, + {"cs_billwilliamson", "Not Set"}, + {"cs_bivcoachdriver", "Not Set"}, + {"cs_blwphotographer", "Not Set"}, + {"cs_blwwitness", "Not Set"}, + {"cs_braithwaitebutler", "Not Set"}, + {"cs_braithwaitemaid", "Not Set"}, + {"cs_braithwaiteservant", "Not Set"}, + {"cs_brendacrawley", "Not Set"}, + {"cs_bronte", "Not Set"}, + {"cs_brontesbutler", "Not Set"}, + {"cs_brotherdorkins", "Not Set"}, + {"cs_brynntildon", "Not Set"}, + {"cs_bubba", "Not Set"}, + {"cs_cabaretmc", "Not Set"}, + {"cs_cajun", "Not Set"}, + {"cs_cancan_01", "Not Set"}, + {"cs_cancan_02", "Not Set"}, + {"cs_cancan_03", "Not Set"}, + {"cs_cancan_04", "Not Set"}, + {"cs_cancanman_01", "Not Set"}, + {"cs_captainmonroe", "Not Set"}, + {"cs_cassidy", "Not Set"}, + {"cs_catherinebraithwaite", "Not Set"}, + {"cs_cattlerustler", "Not Set"}, + {"cs_cavehermit", "Not Set"}, + {"cs_chainprisoner_01", "Not Set"}, + {"cs_chainprisoner_02", "Not Set"}, + {"cs_charlessmith", "Not Set"}, + {"cs_chelonianmaster", "Not Set"}, + {"cs_cigcardguy", "Not Set"}, + {"cs_clay", "Not Set"}, + {"cs_cleet", "Not Set"}, + {"cs_clive", "Not Set"}, + {"cs_colfavours", "Not Set"}, + {"cs_colmodriscoll", "Not Set"}, + {"cs_cooper", "Not Set"}, + {"cs_cornwalltrainconductor", "Not Set"}, + {"cs_crackpotinventor", "Not Set"}, + {"cs_crackpotrobot", "Not Set"}, + {"cs_creepyoldlady", "Not Set"}, + {"cs_creolecaptain", "Not Set"}, + {"cs_creoledoctor", "Not Set"}, + {"cs_creoleguy", "Not Set"}, + {"cs_dalemaroney", "Not Set"}, + {"cs_daveycallender", "Not Set"}, + {"cs_davidgeddes", "Not Set"}, + {"cs_desmond", "Not Set"}, + {"cs_didsbury", "Not Set"}, + {"cs_dinoboneslady", "Not Set"}, + {"cs_disguisedduster_01", "Not Set"}, + {"cs_disguisedduster_02", "Not Set"}, + {"cs_disguisedduster_03", "Not Set"}, + {"cs_doroetheawicklow", "Not Set"}, + {"cs_drhiggins", "Not Set"}, + {"cs_drmalcolmmacintosh", "Not Set"}, + {"cs_duncangeddes", "Not Set"}, + {"cs_dusterinformant_01", "Not Set"}, + {"cs_dutch", "Not Set"}, + {"cs_eagleflies", "Not Set"}, + {"cs_edgarross", "Not Set"}, + {"cs_edithdown", "Not Set"}, + {"cs_edith_john", "Not Set"}, + {"cs_edmundlowry", "Not Set"}, + {"cs_escapeartist", "Not Set"}, + {"cs_escapeartistassistant", "Not Set"}, + {"cs_evelynmiller", "Not Set"}, + {"cs_exconfedinformant", "Not Set"}, + {"cs_exconfedsleader_01", "Not Set"}, + {"cs_exoticcollector", "Not Set"}, + {"cs_famousgunslinger_01", "Not Set"}, + {"cs_famousgunslinger_02", "Not Set"}, + {"cs_famousgunslinger_03", "Not Set"}, + {"cs_famousgunslinger_04", "Not Set"}, + {"cs_famousgunslinger_05", "Not Set"}, + {"cs_famousgunslinger_06", "Not Set"}, + {"cs_featherstonchambers", "Not Set"}, + {"cs_featsofstrength", "Not Set"}, + {"cs_fightref", "Not Set"}, + {"cs_fire_breather", "Not Set"}, + {"cs_fishcollector", "Not Set"}, + {"cs_forgivenhusband_01", "Not Set"}, + {"cs_forgivenwife_01", "Not Set"}, + {"cs_formyartbigwoman", "Not Set"}, + {"cs_francis_sinclair", "Not Set"}, + {"cs_frenchartist", "Not Set"}, + {"cs_frenchman_01", "Not Set"}, + {"cs_fussar", "Not Set"}, + {"cs_garethbraithwaite", "Not Set"}, + {"cs_gavin", "Not Set"}, + {"cs_genstoryfemale", "Not Set"}, + {"cs_genstorymale", "Not Set"}, + {"cs_geraldbraithwaite", "Not Set"}, + {"cs_germandaughter", "Not Set"}, + {"cs_germanfather", "Not Set"}, + {"cs_germanmother", "Not Set"}, + {"cs_germanson", "Not Set"}, + {"cs_gilbertknightly", "Not Set"}, + {"cs_gloria", "Not Set"}, + {"cs_grizzledjon", "Not Set"}, + {"cs_guidomartelli", "Not Set"}, + {"cs_hamish", "Not Set"}, + {"cs_hectorfellowes", "Not Set"}, + {"cs_henrilemiux", "Not Set"}, + {"cs_herbalist", "Not Set"}, + {"cs_hercule", "Not Set"}, + {"cs_hestonjameson", "Not Set"}, + {"cs_hobartcrawley", "Not Set"}, + {"cs_hoseamatthews", "Not Set"}, + {"cs_iangray", "Not Set"}, + {"cs_jackmarston", "Not Set"}, + {"cs_jackmarston_teen", "Not Set"}, + {"cs_jamie", "Not Set"}, + {"cs_janson", "Not Set"}, + {"cs_javierescuella", "Not Set"}, + {"cs_jeb", "Not Set"}, + {"cs_jimcalloway", "Not Set"}, + {"cs_jockgray", "Not Set"}, + {"cs_joe", "Not Set"}, + {"cs_joebutler", "Not Set"}, + {"cs_johnmarston", "Not Set"}, + {"cs_johnthebaptisingmadman", "Not Set"}, + {"cs_johnweathers", "Not Set"}, + {"cs_josiahtrelawny", "Not Set"}, + {"cs_jules", "Not Set"}, + {"cs_karen", "Not Set"}, + {"cs_karensjohn_01", "Not Set"}, + {"cs_kieran", "Not Set"}, + {"cs_laramie", "Not Set"}, + {"cs_leighgray", "Not Set"}, + {"cs_lemiuxassistant", "Not Set"}, + {"cs_lenny", "Not Set"}, + {"cs_leon", "Not Set"}, + {"cs_leostrauss", "Not Set"}, + {"cs_levisimon", "Not Set"}, + {"cs_leviticuscornwall", "Not Set"}, + {"cs_lillianpowell", "Not Set"}, + {"cs_lillymillet", "Not Set"}, + {"cs_londonderryson", "Not Set"}, + {"cs_lucanapoli", "Not Set"}, + {"cs_magnifico", "Not Set"}, + {"cs_mamawatson", "Not Set"}, + {"cs_marshall_thurwell", "Not Set"}, + {"cs_marybeth", "Not Set"}, + {"cs_marylinton", "Not Set"}, + {"cs_meditatingmonk", "Not Set"}, + {"cs_meredith", "Not Set"}, + {"cs_meredithsmother", "Not Set"}, + {"cs_micahbell", "Not Set"}, + {"cs_micahsnemesis", "Not Set"}, + {"cs_mickey", "Not Set"}, + {"cs_miltonandrews", "Not Set"}, + {"cs_missmarjorie", "Not Set"}, + {"cs_mixedracekid", "Not Set"}, + {"cs_moira", "Not Set"}, + {"cs_mollyoshea", "Not Set"}, + {"cs_mp_alfredo_montez", "Not Set"}, + {"CS_MP_Alfredo_Montez_MS1_Eyelashes_000_c0_001_nm", "Not Set"}, + {"cs_mp_allison", "Not Set"}, + {"cs_mp_amos_lansing", "Not Set"}, + {"cs_mp_bonnie", "Not Set"}, + {"cs_mp_bountyhunter", "Not Set"}, + {"CS_MP_CAMP_COOK", "Not Set"}, + {"cs_mp_cliff", "Not Set"}, + {"cs_mp_cripps", "Not Set"}, + {"cs_mp_grace_lancing", "Not Set"}, + {"cs_mp_hans", "Not Set"}, + {"cs_mp_henchman", "Not Set"}, + {"cs_mp_horley", "Not Set"}, + {"cs_mp_jeremiah_shaw", "Not Set"}, + {"cs_mp_jessica", "Not Set"}, + {"cs_mp_jorge_montez", "Not Set"}, + {"cs_mp_langston", "Not Set"}, + {"cs_mp_lee", "Not Set"}, + {"cs_mp_mabel", "Not Set"}, + {"cs_mp_marshall_davies", "Not Set"}, + {"cs_mp_moonshiner", "Not Set"}, + {"cs_mp_mradler", "Not Set"}, + {"cs_mp_oldman_jones", "Not Set"}, + {"cs_mp_revenge_marshall", "Not Set"}, + {"cs_mp_samson_finch", "Not Set"}, + {"cs_mp_shaky", "Not Set"}, + {"cs_mp_sherifffreeman", "Not Set"}, + {"cs_mp_teddybrown", "Not Set"}, + {"cs_mp_terrance", "Not Set"}, + {"cs_mp_the_boy", "Not Set"}, + {"cs_mp_travellingsaleswoman", "Not Set"}, + {"cs_mp_went", "Not Set"}, + {"cs_mradler", "Not Set"}, + {"cs_mrdevon", "Not Set"}, + {"cs_mrlinton", "Not Set"}, + {"cs_mrpearson", "Not Set"}, + {"cs_mrsadler", "Not Set"}, + {"cs_mrs_calhoun", "Not Set"}, + {"cs_mrsfellows", "Not Set"}, + {"cs_mrsgeddes", "Not Set"}, + {"cs_mrslondonderry", "Not Set"}, + {"cs_mrs_sinclair", "Not Set"}, + {"cs_mrsweathers", "Not Set"}, + {"cs_mrwayne", "Not Set"}, + {"cs_mud2bigguy", "Not Set"}, + {"cs_mysteriousstranger", "Not Set"}, + {"cs_nbxdrunk", "Not Set"}, + {"cs_nbxexecuted", "Not Set"}, + {"cs_nbxpolicechiefformal", "Not Set"}, + {"cs_nbxreceptionist_01", "Not Set"}, + {"cs_nial_whelan", "Not Set"}, + {"cs_nicholastimmins", "Not Set"}, + {"cs_nils", "Not Set"}, + {"cs_norrisforsythe", "Not Set"}, + {"cs_obediahhinton", "Not Set"}, + {"cs_oddfellowspinhead", "Not Set"}, + {"cs_odprostitute", "Not Set"}, + {"cs_operasinger", "Not Set"}, + {"cs_paytah", "Not Set"}, + {"cs_penelopebraithwaite", "Not Set"}, + {"cs_pinkertongoon", "Not Set"}, + {"cs_poisonwellshaman", "Not Set"}, + {"cs_poorjoe", "Not Set"}, + {"cs_priest_wedding", "Not Set"}, + {"cs_princessisabeau", "Not Set"}, + {"cs_professorbell", "Not Set"}, + {"cs_rainsfall", "Not Set"}, + {"cs_ramon_cortez", "Not Set"}, + {"cs_reverendfortheringham", "Not Set"}, + {"cs_revswanson", "Not Set"}, + {"cs_rhodeputy_01", "Not Set"}, + {"cs_rhodeputy_02", "Not Set"}, + {"cs_rhodesassistant", "Not Set"}, + {"cs_rhodeskidnapvictim", "Not Set"}, + {"cs_rhodessaloonbouncer", "Not Set"}, + {"cs_ringmaster", "Not Set"}, + {"cs_rockyseven_widow", "Not Set"}, + {"cs_samaritan", "Not Set"}, + {"cs_scottgray", "Not Set"}, + {"cs_sddoctor_01", "Not Set"}, + {"cs_sdpriest", "Not Set"}, + {"cs_sdsaloondrunk_01", "Not Set"}, + {"cs_sd_streetkid_01", "Not Set"}, + {"cs_sd_streetkid_01a", "Not Set"}, + {"cs_sd_streetkid_01b", "Not Set"}, + {"cs_sd_streetkid_02", "Not Set"}, + {"cs_sdstreetkidthief", "Not Set"}, + {"cs_sean", "Not Set"}, + {"cs_sherifffreeman", "Not Set"}, + {"cs_sheriffowens", "Not Set"}, + {"cs_sistercalderon", "Not Set"}, + {"cs_slavecatcher", "Not Set"}, + {"cs_soothsayer", "Not Set"}, + {"cs_strawberryoutlaw_01", "Not Set"}, + {"cs_strawberryoutlaw_02", "Not Set"}, + {"cs_strdeputy_01", "Not Set"}, + {"cs_strdeputy_02", "Not Set"}, + {"cs_strsheriff_01", "Not Set"}, + {"cs_sunworshipper", "Not Set"}, + {"cs_susangrimshaw", "Not Set"}, + {"cs_swampfreak", "Not Set"}, + {"cs_swampweirdosonny", "Not Set"}, + {"cs_sworddancer", "Not Set"}, + {"cs_tavishgray", "Not Set"}, + {"cs_taxidermist", "Not Set"}, + {"cs_theodorelevin", "Not Set"}, + {"cs_thomasdown", "Not Set"}, + {"cs_tigerhandler", "Not Set"}, + {"cs_tilly", "Not Set"}, + {"cs_timothydonahue", "Not Set"}, + {"cs_tinyhermit", "Not Set"}, + {"cs_tomdickens", "Not Set"}, + {"cs_towncrier", "Not Set"}, + {"cs_treasurehunter", "Not Set"}, + {"cs_twinbrother_01", "Not Set"}, + {"cs_twinbrother_02", "Not Set"}, + {"cs_twingroupie_01", "Not Set"}, + {"cs_twingroupie_02", "Not Set"}, + {"cs_uncle", "Not Set"}, + {"cs_unidusterjail_01", "Not Set"}, + {"cs_valauctionboss_01", "Not Set"}, + {"cs_valdeputy_01", "Not Set"}, + {"cs_valprayingman", "Not Set"}, + {"cs_valprostitute_01", "Not Set"}, + {"cs_valprostitute_02", "Not Set"}, + {"cs_valsheriff", "Not Set"}, + {"cs_vampire", "Not Set"}, + {"cs_vht_bathgirl", "Not Set"}, + {"cs_wapitiboy", "Not Set"}, + {"cs_warvet", "Not Set"}, + {"cs_watson_01", "Not Set"}, + {"cs_watson_02", "Not Set"}, + {"cs_watson_03", "Not Set"}, + {"cs_welshfighter", "Not Set"}, + {"cs_wintonholmes", "Not Set"}, + {"cs_wrobel", "Not Set"}, + {"female_skeleton", "Not Set"}, + {"gc_lemoynecaptive_males_01", "Not Set"}, + {"gc_skinnertorture_males_01", "Not Set"}, + {"ge_delloboparty_females_01", "Not Set"}, + {"g_f_m_uniduster_01", "Not Set"}, + {"g_m_m_bountyhunters_01", "Not Set"}, + {"g_m_m_uniafricanamericangang_01", "Not Set"}, + {"g_m_m_unibanditos_01", "Not Set"}, + {"g_m_m_unibraithwaites_01", "Not Set"}, + {"g_m_m_unibrontegoons_01", "Not Set"}, + {"g_m_m_unicornwallgoons_01", "Not Set"}, + {"g_m_m_unicriminals_01", "Not Set"}, + {"g_m_m_unicriminals_02", "Not Set"}, + {"g_m_m_uniduster_01", "Not Set"}, + {"g_m_m_uniduster_02", "Not Set"}, + {"g_m_m_uniduster_03", "Not Set"}, + {"g_m_m_uniduster_04", "Not Set"}, + {"g_m_m_uniduster_05", "Not Set"}, + {"g_m_m_unigrays_01", "Not Set"}, + {"g_m_m_unigrays_02", "Not Set"}, + {"g_m_m_uniinbred_01", "Not Set"}, + {"g_m_m_unilangstonboys_01", "Not Set"}, + {"g_m_m_unimicahgoons_01", "Not Set"}, + {"g_m_m_unimountainmen_01", "Not Set"}, + {"g_m_m_uniranchers_01", "Not Set"}, + {"g_m_m_uniswamp_01", "Not Set"}, + {"g_m_o_uniexconfeds_01", "Not Set"}, + {"g_m_y_uniexconfeds_01", "Not Set"}, + {"g_m_y_uniexconfeds_02", "Not Set"}, + {"loansharking_asbminer_males_01", "Not Set"}, + {"loansharking_horsechase1_males_01", "Not Set"}, + {"loansharking_undertaker_females_01", "Not Set"}, + {"loansharking_undertaker_males_01", "Not Set"}, + {"male_skeleton", "Not Set"}, + {"mbh_rhodesrancher_females_01", "Not Set"}, + {"mbh_rhodesrancher_teens_01", "Not Set"}, + {"mbh_skinnersearch_males_01", "Not Set"}, + {"mcclellan_saddle_01", "Not Set"}, + {"mes_abigail2_males_01", "Not Set"}, + {"mes_finale2_females_01", "Not Set"}, + {"mes_finale2_males_01", "Not Set"}, + {"mes_finale3_males_01", "Not Set"}, + {"mes_marston1_males_01", "Not Set"}, + {"mes_marston2_males_01", "Not Set"}, + {"mes_marston5_2_males_01", "Not Set"}, + {"mes_marston6_females_01", "Not Set"}, + {"mes_marston6_males_01", "Not Set"}, + {"mes_marston6_teens_01", "Not Set"}, + {"mes_sadie4_males_01", "Not Set"}, + {"mes_sadie5_males_01", "Not Set"}, + {"motherhubbard_saddle_01", "Not Set"}, + {"MP_A_C_HORSECORPSE_01", "Not Set"}, + {"MP_A_F_M_CARDGAMEPLAYERS_01", "Not Set"}, + {"MP_A_F_M_UniCorpse_01", "Not Set"}, + {"MP_A_M_M_LABORUPRISERS_01", "Not Set"}, + {"MP_A_M_M_UniCorpse_01", "Not Set"}, + {"MP_ASN_BENEDICTPOINT_FEMALES_01", "Not Set"}, + {"MP_ASN_BENEDICTPOINT_MALES_01", "Not Set"}, + {"MP_ASN_BLACKWATER_MALES_01", "Not Set"}, + {"MP_ASN_BRAITHWAITEMANOR_MALES_01", "Not Set"}, + {"MP_ASN_BRAITHWAITEMANOR_MALES_02", "Not Set"}, + {"MP_ASN_BRAITHWAITEMANOR_MALES_03", "Not Set"}, + {"MP_ASN_CIVILWARFORT_MALES_01", "Not Set"}, + {"MP_ASN_GAPTOOTHBREACH_MALES_01", "Not Set"}, + {"MP_ASN_PikesBasin_Males_01", "Not Set"}, + {"MP_ASN_SDPOLICESTATION_MALES_01", "Not Set"}, + {"MP_ASN_SDWEDDING_FEMALES_01", "Not Set"}, + {"MP_ASN_SDWEDDING_MALES_01", "Not Set"}, + {"MP_ASN_SHADYBELLE_FEMALES_01", "Not Set"}, + {"MP_ASN_STILLWATER_MALES_01", "Not Set"}, + {"MP_ASNTRK_ELYSIANPOOL_MALES_01", "Not Set"}, + {"mp_ASNTRK_GRIZZLIESWEST_MALES_01", "Not Set"}, + {"MP_ASNTRK_HAGENORCHARD_MALES_01", "Not Set"}, + {"MP_ASNTRK_ISABELLA_MALES_01", "Not Set"}, + {"MP_ASNTRK_TALLTREES_MALES_01", "Not Set"}, + {"MP_CAMPDEF_BLUEWATER_FEMALES_01", "Not Set"}, + {"MP_CAMPDEF_BLUEWATER_MALES_01", "Not Set"}, + {"MP_CAMPDEF_CHOLLASPRINGS_FEMALES_01", "Not Set"}, + {"MP_CAMPDEF_CHOLLASPRINGS_MALES_01", "Not Set"}, + {"MP_CAMPDEF_EASTNEWHANOVER_FEMALES_01", "Not Set"}, + {"mp_campdef_EASTNEWHANOVER_MALES_01", "Not Set"}, + {"MP_CAMPDEF_GAPTOOTHBREACH_FEMALES_01", "Not Set"}, + {"MP_CAMPDEF_GAPTOOTHBREACH_MALES_01", "Not Set"}, + {"MP_CAMPDEF_GAPTOOTHRIDGE_FEMALES_01", "Not Set"}, + {"MP_CAMPDEF_GAPTOOTHRIDGE_MALES_01", "Not Set"}, + {"MP_CAMPDEF_GREATPLAINS_MALES_01", "Not Set"}, + {"mp_CAMPDEF_GRIZZLIES_MALES_01", "Not Set"}, + {"MP_CAMPDEF_HEARTLANDS1_MALES_01", "Not Set"}, + {"MP_CAMPDEF_HEARTLANDS2_FEMALES_01", "Not Set"}, + {"MP_CAMPDEF_HEARTLANDS2_MALES_01", "Not Set"}, + {"MP_CAMPDEF_HENNIGANS_FEMALES_01", "Not Set"}, + {"MP_CAMPDEF_HENNIGANS_MALES_01", "Not Set"}, + {"MP_CAMPDEF_LITTLECREEK_FEMALES_01", "Not Set"}, + {"MP_CAMPDEF_LITTLECREEK_MALES_01", "Not Set"}, + {"MP_CAMPDEF_RADLEYSPASTURE_FEMALES_01", "Not Set"}, + {"mp_CAMPDEF_RADLEYSPASTURE_MALES_01", "Not Set"}, + {"MP_CAMPDEF_RIOBRAVO_FEMALES_01", "Not Set"}, + {"MP_CAMPDEF_RIOBRAVO_MALES_01", "Not Set"}, + {"MP_CAMPDEF_ROANOKE_FEMALES_01", "Not Set"}, + {"MP_CAMPDEF_ROANOKE_MALES_01", "Not Set"}, + {"MP_CAMPDEF_TALLTREES_FEMALES_01", "Not Set"}, + {"MP_CAMPDEF_TALLTREES_MALES_01", "Not Set"}, + {"MP_CAMPDEF_TWOROCKS_FEMALES_01", "Not Set"}, + {"MP_CHU_KID_ARMADILLO_MALES_01", "Not Set"}, + {"MP_CHU_KID_DIABLORIDGE_MALES_01", "Not Set"}, + {"MP_CHU_KID_EMRSTATION_MALES_01", "Not Set"}, + {"MP_CHU_KID_GREATPLAINS2_MALES_01", "Not Set"}, + {"MP_CHU_KID_GREATPLAINS_MALES_01", "Not Set"}, + {"MP_CHU_KID_HEARTLANDS_MALES_01", "Not Set"}, + {"MP_CHU_KID_LAGRAS_MALES_01", "Not Set"}, + {"mp_CHU_KID_LEMOYNE_FEMALES_01", "Not Set"}, + {"mp_CHU_KID_LEMOYNE_MALES_01", "Not Set"}, + {"MP_CHU_KID_RECIPIENT_MALES_01", "Not Set"}, + {"MP_CHU_KID_RHODES_MALES_01", "Not Set"}, + {"MP_CHU_KID_SAINTDENIS_FEMALES_01", "Not Set"}, + {"MP_CHU_KID_SAINTDENIS_MALES_01", "Not Set"}, + {"MP_CHU_KID_SCARLETTMEADOWS_MALES_01", "Not Set"}, + {"MP_CHU_KID_TUMBLEWEED_MALES_01", "Not Set"}, + {"MP_CHU_KID_VALENTINE_MALES_01", "Not Set"}, + {"MP_CHU_ROB_AMBARINO_MALES_01", "Not Set"}, + {"MP_CHU_ROB_ANNESBURG_MALES_01", "Not Set"}, + {"MP_CHU_ROB_BENEDICTPOINT_FEMALES_01", "Not Set"}, + {"MP_CHU_ROB_BENEDICTPOINT_MALES_01", "Not Set"}, + {"MP_CHU_ROB_BLACKWATER_MALES_01", "Not Set"}, + {"MP_CHU_ROB_CALIGAHALL_MALES_01", "Not Set"}, + {"MP_CHU_ROB_CORONADO_MALES_01", "Not Set"}, + {"MP_CHU_ROB_CUMBERLAND_MALES_01", "Not Set"}, + {"MP_CHU_ROB_FORTMERCER_FEMALES_01", "Not Set"}, + {"MP_CHU_ROB_FORTMERCER_MALES_01", "Not Set"}, + {"MP_CHU_ROB_GREENHOLLOW_MALES_01", "Not Set"}, + {"MP_CHU_ROB_MACFARLANES_FEMALES_01", "Not Set"}, + {"MP_CHU_ROB_MACFARLANES_MALES_01", "Not Set"}, + {"MP_CHU_ROB_MACLEANS_MALES_01", "Not Set"}, + {"MP_CHU_ROB_MILLESANI_MALES_01", "Not Set"}, + {"MP_CHU_ROB_MONTANARIVER_MALES_01", "Not Set"}, + {"MP_CHU_ROB_PAINTEDSKY_MALES_01", "Not Set"}, + {"MP_CHU_ROB_RATHSKELLER_MALES_01", "Not Set"}, + {"MP_CHU_ROB_RECIPIENT_MALES_01", "Not Set"}, + {"MP_CHU_ROB_RHODES_MALES_01", "Not Set"}, + {"MP_CHU_ROB_STRAWBERRY_MALES_01", "Not Set"}, + {"mp_CLAY", "Not Set"}, + {"MP_CONVOY_RECIPIENT_FEMALES_01", "Not Set"}, + {"MP_CONVOY_RECIPIENT_MALES_01", "Not Set"}, + {"MP_DE_U_F_M_BIGVALLEY_01", "Not Set"}, + {"MP_DE_U_F_M_BLUEWATERMARSH_01", "Not Set"}, + {"mp_de_u_f_m_BRAITHWAITE_01", "Not Set"}, + {"mp_de_u_f_m_DOVERHILL_01", "Not Set"}, + {"MP_DE_U_F_M_GREATPLAINS_01", "Not Set"}, + {"mp_dE_U_F_M_HANGINGROCK_01", "Not Set"}, + {"mp_de_u_f_m_HEARTLANDS_01", "Not Set"}, + {"mp_dE_U_F_M_HENNIGANSSTEAD_01", "Not Set"}, + {"MP_DE_U_F_M_SILENTSTEAD_01", "Not Set"}, + {"MP_DE_U_M_M_AURORABASIN_01", "Not Set"}, + {"mp_de_u_m_m_BARROWLAGOON_01", "Not Set"}, + {"mp_de_u_m_m_BIGVALLEYGRAVES_01", "Not Set"}, + {"MP_DE_U_M_M_CENTRALUNIONRR_01", "Not Set"}, + {"MP_DE_U_M_M_PLEASANCE_01", "Not Set"}, + {"MP_DE_U_M_M_RILEYSCHARGE_01", "Not Set"}, + {"MP_DE_U_M_M_VANHORN_01", "Not Set"}, + {"MP_DE_U_M_M_WESTERNHOMESTEAD_01", "Not Set"}, + {"mp_dr_u_f_m_bayougatorfood_01", "Not Set"}, + {"MP_DR_U_F_M_BIGVALLEYCAVE_01", "Not Set"}, + {"MP_DR_U_F_M_BIGVALLEYCLIFF_01", "Not Set"}, + {"MP_DR_U_F_M_BLUEWATERKIDNAP_01", "Not Set"}, + {"MP_DR_U_F_M_COLTERBANDITS_01", "Not Set"}, + {"MP_DR_U_F_M_COLTERBANDITS_02", "Not Set"}, + {"mp_dr_u_f_m_MISSINGFISHERMAN_01", "Not Set"}, + {"mp_dr_u_f_m_MISSINGFISHERMAN_02", "Not Set"}, + {"mp_dr_u_f_m_MISTAKENBOUNTIES_01", "Not Set"}, + {"MP_DR_U_F_M_PLAGUETOWN_01", "Not Set"}, + {"mp_dr_u_f_m_QUAKERSCOVE_01", "Not Set"}, + {"mp_dr_u_f_m_QUAKERSCOVE_02", "Not Set"}, + {"MP_DR_U_F_M_SDGRAVEYARD_01", "Not Set"}, + {"MP_DR_U_M_M_BIGVALLEYCAVE_01", "Not Set"}, + {"MP_DR_U_M_M_BIGVALLEYCLIFF_01", "Not Set"}, + {"MP_DR_U_M_M_BLUEWATERKIDNAP_01", "Not Set"}, + {"mp_dr_u_m_m_CANOEESCAPE_01", "Not Set"}, + {"MP_DR_U_M_M_HWYROBBERY_01", "Not Set"}, + {"mp_dr_u_m_m_MISTAKENBOUNTIES_01", "Not Set"}, + {"MP_DR_U_M_M_PIKESBASIN_01", "Not Set"}, + {"MP_DR_U_M_M_PIKESBASIN_02", "Not Set"}, + {"MP_DR_U_M_M_PLAGUETOWN_01", "Not Set"}, + {"mp_dr_u_m_m_ROANOKESTANDOFF_01", "Not Set"}, + {"MP_DR_U_M_M_SDGRAVEYARD_01", "Not Set"}, + {"MP_DR_U_M_M_SDMUGGING_01", "Not Set"}, + {"MP_DR_U_M_M_SDMUGGING_02", "Not Set"}, + {"mp_female", "Not Set"}, + {"MP_FREEROAM_TUT_FEMALES_01", "Not Set"}, + {"MP_FREEROAM_TUT_MALES_01", "Not Set"}, + {"MP_G_F_M_LAPERLEGANG_01", "Not Set"}, + {"MP_G_F_M_LAPERLEVIPS_01", "Not Set"}, + {"MP_G_F_M_OWLHOOTFAMILY_01", "Not Set"}, + {"MP_G_M_M_ARMOREDJUGGERNAUTS_01", "Not Set"}, + {"MP_G_M_M_BOUNTYHUNTERS_01", "Not Set"}, + {"MP_G_M_M_OWLHOOTFAMILY_01", "Not Set"}, + {"MP_G_M_M_REDBENGANG_01", "Not Set"}, + {"MP_G_M_M_UniAfricanAmericanGang_01", "Not Set"}, + {"MP_G_M_M_UniBanditos_01", "Not Set"}, + {"MP_G_M_M_UniBraithwaites_01", "Not Set"}, + {"MP_G_M_M_UniBronteGoons_01", "Not Set"}, + {"MP_G_M_M_UniCornwallGoons_01", "Not Set"}, + {"MP_G_M_M_UniCriminals_01", "Not Set"}, + {"MP_G_M_M_UniCriminals_02", "Not Set"}, + {"MP_G_M_M_UNIDUSTER_01", "Not Set"}, + {"MP_G_M_M_UNIDUSTER_02", "Not Set"}, + {"MP_G_M_M_UNIDUSTER_03", "Not Set"}, + {"MP_G_M_M_UniGrays_01", "Not Set"}, + {"MP_G_M_M_UniInbred_01", "Not Set"}, + {"MP_G_M_M_UNILANGSTONBOYS_01", "Not Set"}, + {"MP_G_M_M_UniMountainMen_01", "Not Set"}, + {"MP_G_M_M_UniRanchers_01", "Not Set"}, + {"MP_G_M_M_UNISWAMP_01", "Not Set"}, + {"MP_G_M_O_UniExConfeds_01", "Not Set"}, + {"MP_G_M_Y_UniExConfeds_01", "Not Set"}, + {"MP_GUNVOUTD2_MALES_01", "Not Set"}, + {"MP_GUNVOUTD3_BHT_01", "Not Set"}, + {"MP_GUNVOUTD3_MALES_01", "Not Set"}, + {"MP_HORSE_OWLHOOTVICTIM_01", "Not Set"}, + {"MP_INTERCEPT_RECIPIENT_FEMALES_01", "Not Set"}, + {"MP_INTERCEPT_RECIPIENT_MALES_01", "Not Set"}, + {"MP_INTRO_FEMALES_01", "Not Set"}, + {"MP_INTRO_MALES_01", "Not Set"}, + {"MP_JAILBREAK_MALES_01", "Not Set"}, + {"MP_JAILBREAK_RECIPIENT_MALES_01", "Not Set"}, + {"MP_LBT_M3_MALES_01", "Not Set"}, + {"MP_LBT_M6_FEMALES_01", "Not Set"}, + {"MP_LBT_M6_MALES_01", "Not Set"}, + {"MP_LBT_M7_MALES_01", "Not Set"}, + {"mp_male", "Not Set"}, + {"MP_OTH_RECIPIENT_MALES_01", "Not Set"}, + {"MP_OUTLAW1_MALES_01", "Not Set"}, + {"MP_OUTLAW2_MALES_01", "Not Set"}, + {"MP_POST_MULTIPACKAGE_FEMALES_01", "Not Set"}, + {"MP_POST_MULTIPACKAGE_MALES_01", "Not Set"}, + {"MP_POST_MULTIRELAY_FEMALES_01", "Not Set"}, + {"MP_POST_MULTIRELAY_MALES_01", "Not Set"}, + {"MP_POST_RELAY_FEMALES_01", "Not Set"}, + {"MP_POST_RELAY_MALES_01", "Not Set"}, + {"MP_PREDATOR", "Not Set"}, + {"MP_PRSN_ASN_MALES_01", "Not Set"}, + {"MP_RE_ANIMALATTACK_FEMALES_01", "Not Set"}, + {"MP_RE_ANIMALATTACK_MALES_01", "Not Set"}, + {"MP_RECOVER_RECIPIENT_FEMALES_01", "Not Set"}, + {"MP_RECOVER_RECIPIENT_MALES_01", "Not Set"}, + {"MP_RE_DUEL_FEMALES_01", "Not Set"}, + {"MP_RE_DUEL_MALES_01", "Not Set"}, + {"MP_RE_GRAVEROBBER_FEMALES_01", "Not Set"}, + {"MP_RE_GRAVEROBBER_MALES_01", "Not Set"}, + {"MP_RE_HOBODOG_FEMALES_01", "Not Set"}, + {"MP_RE_HOBODOG_MALES_01", "Not Set"}, + {"MP_RE_KIDNAPPED_FEMALES_01", "Not Set"}, + {"MP_RE_KIDNAPPED_MALES_01", "Not Set"}, + {"MP_RE_PHOTOGRAPHY_FEMALES_01", "Not Set"}, + {"MP_RE_PHOTOGRAPHY_FEMALES_02", "Not Set"}, + {"MP_RE_PHOTOGRAPHY_MALES_01", "Not Set"}, + {"MP_REPOBOAT_RECIPIENT_FEMALES_01", "Not Set"}, + {"MP_REPOBOAT_RECIPIENT_MALES_01", "Not Set"}, + {"MP_REPO_RECIPIENT_FEMALES_01", "Not Set"}, + {"MP_REPO_RECIPIENT_MALES_01", "Not Set"}, + {"MP_RE_RIVALCOLLECTOR_MALES_01", "Not Set"}, + {"MP_RE_RUNAWAYWAGON_FEMALES_01", "Not Set"}, + {"MP_RE_RUNAWAYWAGON_MALES_01", "Not Set"}, + {"MP_RESCUE_BOTTLETREE_FEMALES_01", "Not Set"}, + {"MP_RESCUE_BOTTLETREE_MALES_01", "Not Set"}, + {"MP_RESCUE_COLTER_MALES_01", "Not Set"}, + {"MP_Rescue_Cratersacrifice_Males_01", "Not Set"}, + {"MP_RESCUE_HEARTLANDS_MALES_01", "Not Set"}, + {"MP_RESCUE_LOFTKIDNAP_MALES_01", "Not Set"}, + {"MP_RESCUE_LONNIESSHACK_MALES_01", "Not Set"}, + {"MP_RESCUE_MOONSTONE_MALES_01", "Not Set"}, + {"MP_RESCUE_MTNMANSHACK_MALES_01", "Not Set"}, + {"MP_RESCUE_RECIPIENT_FEMALES_01", "Not Set"}, + {"MP_RESCUE_RECIPIENT_MALES_01", "Not Set"}, + {"MP_Rescue_RivalShack_Males_01", "Not Set"}, + {"MP_RESCUE_SCARLETTMEADOWS_MALES_01", "Not Set"}, + {"MP_RESCUE_SDDOGFIGHT_FEMALES_01", "Not Set"}, + {"MP_RESCUE_SDDOGFIGHT_MALES_01", "Not Set"}, + {"MP_RESUPPLY_RECIPIENT_FEMALES_01", "Not Set"}, + {"MP_RESUPPLY_RECIPIENT_MALES_01", "Not Set"}, + {"MP_RE_TREASUREHUNTER_FEMALES_01", "Not Set"}, + {"MP_RE_TREASUREHUNTER_MALES_01", "Not Set"}, + {"MP_REVENGE1_MALES_01", "Not Set"}, + {"MP_RE_WILDMAN_MALES_01", "Not Set"}, + {"MP_S_M_M_CornwallGuard_01", "Not Set"}, + {"MP_S_M_M_PinLaw_01", "Not Set"}, + {"MP_STEALBOAT_RECIPIENT_MALES_01", "Not Set"}, + {"MP_STEALHORSE_RECIPIENT_MALES_01", "Not Set"}, + {"MP_STEALWAGON_RECIPIENT_MALES_01", "Not Set"}, + {"MP_TATTOO_FEMALE", "Not Set"}, + {"MP_TATTOO_MALE", "Not Set"}, + {"mp_u_f_m_bountytarget_001", "Not Set"}, + {"mp_u_f_m_bountytarget_002", "Not Set"}, + {"mp_u_f_m_bountytarget_003", "Not Set"}, + {"mp_u_f_m_bountytarget_004", "Not Set"}, + {"mp_u_f_m_bountytarget_005", "Not Set"}, + {"mp_u_f_m_bountytarget_006", "Not Set"}, + {"mp_u_f_m_bountytarget_007", "Not Set"}, + {"mp_u_f_m_bountytarget_008", "Not Set"}, + {"mp_u_f_m_bountytarget_009", "Not Set"}, + {"mp_u_f_m_bountytarget_010", "Not Set"}, + {"mp_u_f_m_bountytarget_011", "Not Set"}, + {"mp_u_f_m_bountytarget_012", "Not Set"}, + {"mp_u_f_m_bountytarget_013", "Not Set"}, + {"mp_u_f_m_bountytarget_014", "Not Set"}, + {"MP_U_F_M_GUNSLINGER3_RIFLEMAN_02", "Not Set"}, + {"mp_u_f_m_GUNSLINGER3_SHARPSHOOTER_01", "Not Set"}, + {"MP_U_F_M_LAPERLEVIPMASKED_01", "Not Set"}, + {"MP_U_F_M_LAPERLEVIPMASKED_02", "Not Set"}, + {"MP_U_F_M_LAPERLEVIPMASKED_03", "Not Set"}, + {"MP_U_F_M_LAPERLEVIPMASKED_04", "Not Set"}, + {"MP_U_F_M_LAPERLEVIPUNMASKED_01", "Not Set"}, + {"MP_U_F_M_LAPERLEVIPUNMASKED_02", "Not Set"}, + {"MP_U_F_M_LAPERLEVIPUNMASKED_03", "Not Set"}, + {"MP_U_F_M_LAPERLEVIPUNMASKED_04", "Not Set"}, + {"MP_U_F_M_LBT_OWLHOOTVICTIM_01", "Not Set"}, + {"MP_U_F_M_LEGENDARYBOUNTY_001", "Not Set"}, + {"MP_U_F_M_LEGENDARYBOUNTY_002", "Not Set"}, + {"MP_U_F_M_OUTLAW3_WARNER_01", "Not Set"}, + {"MP_U_F_M_OUTLAW3_WARNER_02", "Not Set"}, + {"MP_U_F_M_REVENGE2_PASSERBY_01", "Not Set"}, + {"MP_U_M_M_ARMSHERIFF_01", "Not Set"}, + {"MP_U_M_M_BOUNTYINJUREDMAN_01", "Not Set"}, + {"mp_u_m_m_bountytarget_001", "Not Set"}, + {"mp_u_m_m_bountytarget_002", "Not Set"}, + {"mp_u_m_m_bountytarget_003", "Not Set"}, + {"mp_u_m_m_bountytarget_005", "Not Set"}, + {"mp_u_m_m_bountytarget_008", "Not Set"}, + {"mp_u_m_m_bountytarget_009", "Not Set"}, + {"mp_u_m_m_bountytarget_010", "Not Set"}, + {"mp_u_m_m_bountytarget_011", "Not Set"}, + {"mp_u_m_m_bountytarget_012", "Not Set"}, + {"mp_u_m_m_bountytarget_013", "Not Set"}, + {"mp_u_m_m_bountytarget_014", "Not Set"}, + {"mp_u_m_m_bountytarget_015", "Not Set"}, + {"mp_u_m_m_bountytarget_016", "Not Set"}, + {"mp_u_m_m_bountytarget_017", "Not Set"}, + {"mp_u_m_m_bountytarget_018", "Not Set"}, + {"mp_u_m_m_bountytarget_019", "Not Set"}, + {"mp_u_m_m_bountytarget_020", "Not Set"}, + {"mp_u_m_m_bountytarget_021", "Not Set"}, + {"mp_u_m_m_bountytarget_022", "Not Set"}, + {"mp_u_m_m_bountytarget_023", "Not Set"}, + {"mp_u_m_m_bountytarget_024", "Not Set"}, + {"mp_u_m_m_bountytarget_025", "Not Set"}, + {"mp_u_m_m_bountytarget_026", "Not Set"}, + {"mp_u_m_m_bountytarget_027", "Not Set"}, + {"mp_u_m_m_bountytarget_028", "Not Set"}, + {"mp_u_m_m_bountytarget_029", "Not Set"}, + {"mp_u_m_m_bountytarget_030", "Not Set"}, + {"mp_u_m_m_bountytarget_031", "Not Set"}, + {"mp_u_m_m_bountytarget_032", "Not Set"}, + {"mp_u_m_m_bountytarget_033", "Not Set"}, + {"mp_u_m_m_bountytarget_034", "Not Set"}, + {"mp_u_m_m_bountytarget_035", "Not Set"}, + {"mp_u_m_m_bountytarget_036", "Not Set"}, + {"mp_u_m_m_bountytarget_037", "Not Set"}, + {"mp_u_m_m_bountytarget_038", "Not Set"}, + {"mp_u_m_m_bountytarget_039", "Not Set"}, + {"mp_u_m_m_bountytarget_044", "Not Set"}, + {"mp_u_m_m_bountytarget_045", "Not Set"}, + {"mp_u_m_m_bountytarget_046", "Not Set"}, + {"mp_u_m_m_bountytarget_047", "Not Set"}, + {"mp_u_m_m_bountytarget_048", "Not Set"}, + {"mp_u_m_m_bountytarget_049", "Not Set"}, + {"mp_u_m_m_bountytarget_050", "Not Set"}, + {"mp_u_m_m_bountytarget_051", "Not Set"}, + {"mp_u_m_m_bountytarget_052", "Not Set"}, + {"mp_u_m_m_bountytarget_053", "Not Set"}, + {"mp_u_m_m_bountytarget_054", "Not Set"}, + {"mp_u_m_m_bountytarget_055", "Not Set"}, + {"MP_U_M_M_GUNFORHIRECLERK_01", "Not Set"}, + {"MP_U_M_M_GUNSLINGER3_RIFLEMAN_01", "Not Set"}, + {"mp_U_M_M_GUNSLINGER3_SHARPSHOOTER_02", "Not Set"}, + {"MP_U_M_M_GUNSLINGER3_SHOTGUNNER_01", "Not Set"}, + {"MP_U_M_M_GUNSLINGER3_SHOTGUNNER_02", "Not Set"}, + {"MP_U_M_M_GUNSLINGER4_WARNER_01", "Not Set"}, + {"MP_U_M_M_LBT_ACCOMPLICE_01", "Not Set"}, + {"MP_U_M_M_LBT_BARBSVICTIM_01", "Not Set"}, + {"MP_U_M_M_LBT_BRIBEINFORMANT_01", "Not Set"}, + {"MP_U_M_M_LBT_COACHDRIVER_01", "Not Set"}, + {"MP_U_M_M_LBT_HOSTAGEMARSHAL_01", "Not Set"}, + {"MP_U_M_M_LBT_OWLHOOTVICTIM_01", "Not Set"}, + {"MP_U_M_M_LBT_OWLHOOTVICTIM_02", "Not Set"}, + {"MP_U_M_M_LBT_PHILIPSVICTIM_01", "Not Set"}, + {"MP_U_M_M_LEGENDARYBOUNTY_001", "Not Set"}, + {"MP_U_M_M_LEGENDARYBOUNTY_002", "Not Set"}, + {"MP_U_M_M_LEGENDARYBOUNTY_003", "Not Set"}, + {"MP_U_M_M_LEGENDARYBOUNTY_004", "Not Set"}, + {"MP_U_M_M_LEGENDARYBOUNTY_005", "Not Set"}, + {"MP_U_M_M_LEGENDARYBOUNTY_006", "Not Set"}, + {"MP_U_M_M_LEGENDARYBOUNTY_007", "Not Set"}, + {"MP_U_M_M_OUTLAW3_PRISONER_01", "Not Set"}, + {"MP_U_M_M_OUTLAW3_PRISONER_02", "Not Set"}, + {"MP_U_M_M_OUTLAW3_WARNER_01", "Not Set"}, + {"MP_U_M_M_OUTLAW3_WARNER_02", "Not Set"}, + {"MP_U_M_M_PRISONWAGON_01", "Not Set"}, + {"MP_U_M_M_PRISONWAGON_02", "Not Set"}, + {"MP_U_M_M_PRISONWAGON_03", "Not Set"}, + {"MP_U_M_M_PRISONWAGON_04", "Not Set"}, + {"MP_U_M_M_PRISONWAGON_05", "Not Set"}, + {"MP_U_M_M_PRISONWAGON_06", "Not Set"}, + {"MP_U_M_M_REVENGE2_HANDSHAKER_01", "Not Set"}, + {"MP_U_M_M_REVENGE2_PASSERBY_01", "Not Set"}, + {"MP_U_M_M_TRADER_01", "Not Set"}, + {"MP_U_M_M_TRADERINTROCLERK_01", "Not Set"}, + {"MP_U_M_M_TVLFENCE_01", "Not Set"}, + {"MP_U_M_O_BlWPoliceChief_01", "Not Set"}, + {"MP_WGNBRKOUT_RECIPIENT_MALES_01", "Not Set"}, + {"MP_WGNTHIEF_RECIPIENT_MALES_01", "Not Set"}, + {"msp_bountyhunter1_females_01", "Not Set"}, + {"msp_braithwaites1_males_01", "Not Set"}, + {"msp_feud1_males_01", "Not Set"}, + {"msp_fussar2_males_01", "Not Set"}, + {"msp_gang2_males_01", "Not Set"}, + {"msp_gang3_males_01", "Not Set"}, + {"msp_grays1_males_01", "Not Set"}, + {"msp_grays2_males_01", "Not Set"}, + {"msp_guarma2_males_01", "Not Set"}, + {"msp_industry1_females_01", "Not Set"}, + {"msp_industry1_males_01", "Not Set"}, + {"msp_industry3_females_01", "Not Set"}, + {"msp_industry3_males_01", "Not Set"}, + {"msp_mary1_females_01", "Not Set"}, + {"msp_mary1_males_01", "Not Set"}, + {"msp_mary3_males_01", "Not Set"}, + {"msp_mob0_males_01", "Not Set"}, + {"msp_mob1_females_01", "Not Set"}, + {"msp_mob1_males_01", "Not Set"}, + {"msp_mob1_teens_01", "Not Set"}, + {"msp_mob3_females_01", "Not Set"}, + {"msp_mob3_males_01", "Not Set"}, + {"msp_mudtown3b_females_01", "Not Set"}, + {"msp_mudtown3b_males_01", "Not Set"}, + {"msp_mudtown3_males_01", "Not Set"}, + {"msp_mudtown5_males_01", "Not Set"}, + {"msp_native1_males_01", "Not Set"}, + {"msp_reverend1_males_01", "Not Set"}, + {"msp_saintdenis1_females_01", "Not Set"}, + {"msp_saintdenis1_males_01", "Not Set"}, + {"msp_saloon1_females_01", "Not Set"}, + {"msp_saloon1_males_01", "Not Set"}, + {"msp_smuggler2_males_01", "Not Set"}, + {"msp_trainrobbery2_males_01", "Not Set"}, + {"msp_trelawny1_males_01", "Not Set"}, + {"msp_utopia1_males_01", "Not Set"}, + {"msp_winter4_males_01", "Not Set"}, + {"p_c_horse_01", "Not Set"}, + {"player_three", "Not Set"}, + {"player_zero", "Not Set"}, + {"rces_abigail3_females_01", "Not Set"}, + {"rces_abigail3_males_01", "Not Set"}, + {"rces_beechers1_males_01", "Not Set"}, + {"rces_evelynmiller_males_01", "Not Set"}, + {"rcsp_beauandpenelope1_females_01", "Not Set"}, + {"rcsp_beauandpenelope_males_01", "Not Set"}, + {"rcsp_calderon_males_01", "Not Set"}, + {"rcsp_calderonstage2_males_01", "Not Set"}, + {"rcsp_calderonstage2_teens_01", "Not Set"}, + {"rcsp_calloway_males_01", "Not Set"}, + {"rcsp_coachrobbery_males_01", "Not Set"}, + {"rcsp_crackpot_females_01", "Not Set"}, + {"rcsp_crackpot_males_01", "Not Set"}, + {"rcsp_creole_males_01", "Not Set"}, + {"rcsp_dutch1_males_01", "Not Set"}, + {"rcsp_dutch3_males_01", "Not Set"}, + {"rcsp_edithdownes2_males_01", "Not Set"}, + {"rcsp_formyart_females_01", "Not Set"}, + {"rcsp_formyart_males_01", "Not Set"}, + {"rcsp_gunslingerduel4_males_01", "Not Set"}, + {"rcsp_herekittykitty_males_01", "Not Set"}, + {"rcsp_hunting1_males_01", "Not Set"}, + {"rcsp_mrmayor_males_01", "Not Set"}, + {"rcsp_native1s2_males_01", "Not Set"}, + {"rcsp_native_americanfathers_males_01", "Not Set"}, + {"rcsp_oddfellows_males_01", "Not Set"}, + {"rcsp_odriscolls2_females_01", "Not Set"}, + {"rcsp_poisonedwell_females_01", "Not Set"}, + {"rcsp_poisonedwell_males_01", "Not Set"}, + {"rcsp_poisonedwell_teens_01", "Not Set"}, + {"rcsp_ridethelightning_males_01", "Not Set"}, + {"rcsp_sadie1_males_01", "Not Set"}, + {"rcsp_slavecatcher_males_01", "Not Set"}, + {"re_animalattack_females_01", "Not Set"}, + {"re_animalattack_males_01", "Not Set"}, + {"re_animalmauling_males_01", "Not Set"}, + {"re_approach_males_01", "Not Set"}, + {"re_beartrap_males_01", "Not Set"}, + {"re_boatattack_males_01", "Not Set"}, + {"re_burningbodies_males_01", "Not Set"}, + {"re_checkpoint_males_01", "Not Set"}, + {"re_coachrobbery_females_01", "Not Set"}, + {"re_coachrobbery_males_01", "Not Set"}, + {"re_consequence_males_01", "Not Set"}, + {"re_corpsecart_females_01", "Not Set"}, + {"re_corpsecart_males_01", "Not Set"}, + {"re_crashedwagon_males_01", "Not Set"}, + {"re_darkalleyambush_males_01", "Not Set"}, + {"re_darkalleybum_males_01", "Not Set"}, + {"re_darkalleystabbing_males_01", "Not Set"}, + {"re_deadbodies_males_01", "Not Set"}, + {"re_deadjohn_females_01", "Not Set"}, + {"re_deadjohn_males_01", "Not Set"}, + {"re_disabledbeggar_males_01", "Not Set"}, + {"re_domesticdispute_females_01", "Not Set"}, + {"re_domesticdispute_males_01", "Not Set"}, + {"re_drownmurder_females_01", "Not Set"}, + {"re_drownmurder_males_01", "Not Set"}, + {"re_drunkcamp_males_01", "Not Set"}, + {"re_drunkdueler_males_01", "Not Set"}, + {"re_duelboaster_males_01", "Not Set"}, + {"re_duelwinner_females_01", "Not Set"}, + {"re_duelwinner_males_01", "Not Set"}, + {"re_escort_females_01", "Not Set"}, + {"re_executions_males_01", "Not Set"}, + {"re_fleeingfamily_females_01", "Not Set"}, + {"re_fleeingfamily_males_01", "Not Set"}, + {"re_footrobbery_males_01", "Not Set"}, + {"re_friendlyoutdoorsman_males_01", "Not Set"}, + {"re_frozentodeath_females_01", "Not Set"}, + {"re_frozentodeath_males_01", "Not Set"}, + {"re_fundraiser_females_01", "Not Set"}, + {"re_fussarchase_males_01", "Not Set"}, + {"re_goldpanner_males_01", "Not Set"}, + {"re_horserace_females_01", "Not Set"}, + {"re_horserace_males_01", "Not Set"}, + {"re_hostagerescue_females_01", "Not Set"}, + {"re_hostagerescue_males_01", "Not Set"}, + {"re_inbredkidnap_females_01", "Not Set"}, + {"re_inbredkidnap_males_01", "Not Set"}, + {"re_injuredrider_males_01", "Not Set"}, + {"re_kidnappedvictim_females_01", "Not Set"}, + {"re_laramiegangrustling_males_01", "Not Set"}, + {"re_loneprisoner_males_01", "Not Set"}, + {"re_lostdog_dogs_01", "Not Set"}, + {"re_lostdog_teens_01", "Not Set"}, + {"re_lostdrunk_females_01", "Not Set"}, + {"re_lostdrunk_males_01", "Not Set"}, + {"re_lostfriend_males_01", "Not Set"}, + {"re_lostman_males_01", "Not Set"}, + {"re_moonshinecamp_males_01", "Not Set"}, + {"re_murdercamp_males_01", "Not Set"}, + {"re_murdersuicide_females_01", "Not Set"}, + {"re_murdersuicide_males_01", "Not Set"}, + {"re_nakedswimmer_males_01", "Not Set"}, + {"re_ontherun_males_01", "Not Set"}, + {"re_outlawlooter_males_01", "Not Set"}, + {"re_parlorambush_males_01", "Not Set"}, + {"re_peepingtom_females_01", "Not Set"}, + {"re_peepingtom_males_01", "Not Set"}, + {"re_pickpocket_males_01", "Not Set"}, + {"re_pisspot_females_01", "Not Set"}, + {"re_pisspot_males_01", "Not Set"}, + {"re_playercampstrangers_females_01", "Not Set"}, + {"re_playercampstrangers_males_01", "Not Set"}, + {"re_poisoned_males_01", "Not Set"}, + {"re_policechase_males_01", "Not Set"}, + {"re_prisonwagon_females_01", "Not Set"}, + {"re_prisonwagon_males_01", "Not Set"}, + {"re_publichanging_females_01", "Not Set"}, + {"re_publichanging_males_01", "Not Set"}, + {"re_publichanging_teens_01", "Not Set"}, + {"re_rallydispute_males_01", "Not Set"}, + {"re_rally_males_01", "Not Set"}, + {"re_rallysetup_males_01", "Not Set"}, + {"re_ratinfestation_males_01", "Not Set"}, + {"re_rowdydrunks_males_01", "Not Set"}, + {"re_savageaftermath_females_01", "Not Set"}, + {"re_savageaftermath_males_01", "Not Set"}, + {"re_savagefight_females_01", "Not Set"}, + {"re_savagefight_males_01", "Not Set"}, + {"re_savagewagon_females_01", "Not Set"}, + {"re_savagewagon_males_01", "Not Set"}, + {"re_savagewarning_males_01", "Not Set"}, + {"re_sharpshooter_males_01", "Not Set"}, + {"re_showoff_males_01", "Not Set"}, + {"re_skippingstones_males_01", "Not Set"}, + {"re_skippingstones_teens_01", "Not Set"}, + {"re_slumambush_females_01", "Not Set"}, + {"re_snakebite_males_01", "Not Set"}, + {"re_stalkinghunter_males_01", "Not Set"}, + {"re_strandedrider_males_01", "Not Set"}, + {"re_street_fight_males_01", "Not Set"}, + {"re_taunting_01", "Not Set"}, + {"re_taunting_males_01", "Not Set"}, + {"re_torturingcaptive_males_01", "Not Set"}, + {"re_townburial_males_01", "Not Set"}, + {"re_townconfrontation_females_01", "Not Set"}, + {"re_townconfrontation_males_01", "Not Set"}, + {"re_townrobbery_males_01", "Not Set"}, + {"re_townwidow_females_01", "Not Set"}, + {"re_trainholdup_females_01", "Not Set"}, + {"re_trainholdup_males_01", "Not Set"}, + {"re_trappedwoman_females_01", "Not Set"}, + {"re_treasurehunter_males_01", "Not Set"}, + {"re_voice_females_01", "Not Set"}, + {"re_wagonthreat_females_01", "Not Set"}, + {"re_wagonthreat_males_01", "Not Set"}, + {"re_washedashore_males_01", "Not Set"}, + {"re_wealthycouple_females_01", "Not Set"}, + {"re_wealthycouple_males_01", "Not Set"}, + {"re_wildman_01", "Not Set"}, + {"s_f_m_bwmworker_01", "Not Set"}, + {"s_f_m_cghworker_01", "Not Set"}, + {"s_f_m_mapworker_01", "Not Set"}, + {"shack_missinghusband_males_01", "Not Set"}, + {"shack_ontherun_males_01", "Not Set"}, + {"s_m_m_ambientblwpolice_01", "Not Set"}, + {"s_m_m_ambientlawrural_01", "Not Set"}, + {"s_m_m_ambientsdpolice_01", "Not Set"}, + {"s_m_m_army_01", "Not Set"}, + {"s_m_m_asbcowpoke_01", "Not Set"}, + {"s_m_m_asbdealer_01", "Not Set"}, + {"s_m_m_bankclerk_01", "Not Set"}, + {"s_m_m_barber_01", "Not Set"}, + {"s_m_m_blwcowpoke_01", "Not Set"}, + {"s_m_m_blwdealer_01", "Not Set"}, + {"s_m_m_bwmworker_01", "Not Set"}, + {"s_m_m_cghworker_01", "Not Set"}, + {"s_m_m_cktworker_01", "Not Set"}, + {"s_m_m_coachtaxidriver_01", "Not Set"}, + {"s_m_m_cornwallguard_01", "Not Set"}, + {"s_m_m_dispatchlawrural_01", "Not Set"}, + {"s_m_m_dispatchleaderpolice_01", "Not Set"}, + {"s_m_m_dispatchleaderrural_01", "Not Set"}, + {"s_m_m_dispatchpolice_01", "Not Set"}, + {"s_m_m_fussarhenchman_01", "Not Set"}, + {"s_m_m_genconductor_01", "Not Set"}, + {"s_m_m_hofguard_01", "Not Set"}, + {"s_m_m_liveryworker_01", "Not Set"}, + {"s_m_m_magiclantern_01", "Not Set"}, + {"s_m_m_mapworker_01", "Not Set"}, + {"s_m_m_marketvendor_01", "Not Set"}, + {"s_m_m_marshallsrural_01", "Not Set"}, + {"s_m_m_micguard_01", "Not Set"}, + {"s_m_m_nbxriverboatdealers_01", "Not Set"}, + {"s_m_m_nbxriverboatguards_01", "Not Set"}, + {"s_m_m_orpguard_01", "Not Set"}, + {"s_m_m_pinlaw_01", "Not Set"}, + {"s_m_m_racrailguards_01", "Not Set"}, + {"s_m_m_racrailworker_01", "Not Set"}, + {"s_m_m_rhdcowpoke_01", "Not Set"}, + {"s_m_m_rhddealer_01", "Not Set"}, + {"s_m_m_sdcowpoke_01", "Not Set"}, + {"s_m_m_sddealer_01", "Not Set"}, + {"s_m_m_sdticketseller_01", "Not Set"}, + {"s_m_m_skpguard_01", "Not Set"}, + {"s_m_m_stgsailor_01", "Not Set"}, + {"s_m_m_strcowpoke_01", "Not Set"}, + {"s_m_m_strdealer_01", "Not Set"}, + {"s_m_m_strlumberjack_01", "Not Set"}, + {"s_m_m_tailor_01", "Not Set"}, + {"s_m_m_trainstationworker_01", "Not Set"}, + {"s_m_m_tumdeputies_01", "Not Set"}, + {"s_m_m_unibutchers_01", "Not Set"}, + {"s_m_m_unitrainengineer_01", "Not Set"}, + {"s_m_m_unitrainguards_01", "Not Set"}, + {"s_m_m_valbankguards_01", "Not Set"}, + {"s_m_m_valcowpoke_01", "Not Set"}, + {"s_m_m_valdealer_01", "Not Set"}, + {"s_m_m_valdeputy_01", "Not Set"}, + {"s_m_m_vhtdealer_01", "Not Set"}, + {"s_m_o_cktworker_01", "Not Set"}, + {"s_m_y_army_01", "Not Set"}, + {"s_m_y_newspaperboy_01", "Not Set"}, + {"s_m_y_racrailworker_01", "Not Set"}, + {"u_f_m_bht_wife", "Not Set"}, + {"u_f_m_circuswagon_01", "Not Set"}, + {"u_f_m_emrdaughter_01", "Not Set"}, + {"u_f_m_fussar1lady_01", "Not Set"}, + {"u_f_m_htlwife_01", "Not Set"}, + {"u_f_m_lagmother_01", "Not Set"}, + {"u_f_m_nbxresident_01", "Not Set"}, + {"u_f_m_rhdnudewoman_01", "Not Set"}, + {"u_f_m_rkshomesteadtenant_01", "Not Set"}, + {"u_f_m_story_blackbelle_01", "Not Set"}, + {"u_f_m_story_nightfolk_01", "Not Set"}, + {"u_f_m_tljbartender_01", "Not Set"}, + {"u_f_m_tumgeneralstoreowner_01", "Not Set"}, + {"u_f_m_valtownfolk_01", "Not Set"}, + {"u_f_m_valtownfolk_02", "Not Set"}, + {"u_f_m_vhtbartender_01", "Not Set"}, + {"u_f_o_hermit_woman_01", "Not Set"}, + {"u_f_o_wtctownfolk_01", "Not Set"}, + {"u_f_y_braithwaitessecret_01", "Not Set"}, + {"u_f_y_czphomesteaddaughter_01", "Not Set"}, + {"u_m_m_announcer_01", "Not Set"}, + {"u_m_m_apfdeadman_01", "Not Set"}, + {"u_m_m_armgeneralstoreowner_01", "Not Set"}, + {"u_m_m_armtrainstationworker_01", "Not Set"}, + {"u_m_m_armundertaker_01", "Not Set"}, + {"u_m_m_armytrn4_01", "Not Set"}, + {"u_m_m_asbgunsmith_01", "Not Set"}, + {"u_m_m_asbprisoner_01", "Not Set"}, + {"u_m_m_asbprisoner_02", "Not Set"}, + {"u_m_m_bht_banditomine", "Not Set"}, + {"u_m_m_bht_banditoshack", "Not Set"}, + {"u_m_m_bht_benedictallbright", "Not Set"}, + {"u_m_m_bht_blackwaterhunt", "Not Set"}, + {"U_M_M_BHT_EXCONFEDCAMPRETURN", "Not Set"}, + {"U_M_M_BHT_LARAMIESLEEPING", "Not Set"}, + {"u_m_m_bht_lover", "Not Set"}, + {"u_m_m_bht_mineforeman", "Not Set"}, + {"u_m_m_bht_nathankirk", "Not Set"}, + {"u_m_m_bht_odriscolldrunk", "Not Set"}, + {"u_m_m_bht_odriscollmauled", "Not Set"}, + {"u_m_m_bht_odriscollsleeping", "Not Set"}, + {"u_m_m_bht_oldman", "Not Set"}, + {"u_m_m_bht_outlawmauled", "Not Set"}, + {"u_m_m_bht_saintdenissaloon", "Not Set"}, + {"u_m_m_bht_shackescape", "Not Set"}, + {"u_m_m_bht_skinnerbrother", "Not Set"}, + {"u_m_m_bht_skinnersearch", "Not Set"}, + {"u_m_m_bht_strawberryduel", "Not Set"}, + {"u_m_m_bivforeman_01", "Not Set"}, + {"u_m_m_blwtrainstationworker_01", "Not Set"}, + {"u_m_m_bulletcatchvolunteer_01", "Not Set"}, + {"u_m_m_bwmstablehand_01", "Not Set"}, + {"U_M_M_CABARETFIREHAT_01", "Not Set"}, + {"u_m_m_cajhomestead_01", "Not Set"}, + {"u_m_m_chelonianjumper_01", "Not Set"}, + {"u_m_m_chelonianjumper_02", "Not Set"}, + {"u_m_m_chelonianjumper_03", "Not Set"}, + {"u_m_m_chelonianjumper_04", "Not Set"}, + {"u_m_m_circuswagon_01", "Not Set"}, + {"u_m_m_cktmanager_01", "Not Set"}, + {"u_m_m_cornwalldriver_01", "Not Set"}, + {"u_m_m_crdhomesteadtenant_01", "Not Set"}, + {"u_m_m_crdhomesteadtenant_02", "Not Set"}, + {"u_m_m_crdwitness_01", "Not Set"}, + {"u_m_m_creolecaptain_01", "Not Set"}, + {"u_m_m_czphomesteadfather_01", "Not Set"}, + {"u_m_m_dorhomesteadhusband_01", "Not Set"}, + {"u_m_m_emrfarmhand_03", "Not Set"}, + {"u_m_m_emrfather_01", "Not Set"}, + {"u_m_m_executioner_01", "Not Set"}, + {"u_m_m_fatduster_01", "Not Set"}, + {"u_m_m_finale2_aa_upperclass_01", "Not Set"}, + {"u_m_m_galastringquartet_01", "Not Set"}, + {"u_m_m_galastringquartet_02", "Not Set"}, + {"u_m_m_galastringquartet_03", "Not Set"}, + {"u_m_m_galastringquartet_04", "Not Set"}, + {"u_m_m_gamdoorman_01", "Not Set"}, + {"u_m_m_hhrrancher_01", "Not Set"}, + {"u_m_m_htlforeman_01", "Not Set"}, + {"u_m_m_htlhusband_01", "Not Set"}, + {"u_m_m_htlrancherbounty_01", "Not Set"}, + {"u_m_m_islbum_01", "Not Set"}, + {"u_m_m_lnsoutlaw_01", "Not Set"}, + {"u_m_m_lnsoutlaw_02", "Not Set"}, + {"u_m_m_lnsoutlaw_03", "Not Set"}, + {"u_m_m_lnsoutlaw_04", "Not Set"}, + {"u_m_m_lnsworker_01", "Not Set"}, + {"u_m_m_lnsworker_02", "Not Set"}, + {"u_m_m_lnsworker_03", "Not Set"}, + {"u_m_m_lnsworker_04", "Not Set"}, + {"u_m_m_lrshomesteadtenant_01", "Not Set"}, + {"u_m_m_mfrrancher_01", "Not Set"}, + {"u_m_m_mud3pimp_01", "Not Set"}, + {"u_m_m_nbxbankerbounty_01", "Not Set"}, + {"u_m_m_nbxbartender_01", "Not Set"}, + {"u_m_m_nbxbartender_02", "Not Set"}, + {"u_m_m_nbxboatticketseller_01", "Not Set"}, + {"u_m_m_nbxbronteasc_01", "Not Set"}, + {"u_m_m_nbxbrontegoon_01", "Not Set"}, + {"u_m_m_nbxbrontesecform_01", "Not Set"}, + {"u_m_m_nbxgeneralstoreowner_01", "Not Set"}, + {"u_m_m_nbxgraverobber_01", "Not Set"}, + {"u_m_m_nbxgraverobber_02", "Not Set"}, + {"u_m_m_nbxgraverobber_03", "Not Set"}, + {"u_m_m_nbxgraverobber_04", "Not Set"}, + {"u_m_m_nbxgraverobber_05", "Not Set"}, + {"u_m_m_nbxgunsmith_01", "Not Set"}, + {"u_m_m_nbxliveryworker_01", "Not Set"}, + {"u_m_m_nbxmusician_01", "Not Set"}, + {"u_m_m_nbxpriest_01", "Not Set"}, + {"u_m_m_nbxresident_01", "Not Set"}, + {"u_m_m_nbxresident_02", "Not Set"}, + {"u_m_m_nbxresident_03", "Not Set"}, + {"u_m_m_nbxresident_04", "Not Set"}, + {"u_m_m_nbxriverboatpitboss_01", "Not Set"}, + {"u_m_m_nbxriverboattarget_01", "Not Set"}, + {"u_m_m_nbxshadydealer_01", "Not Set"}, + {"u_m_m_nbxskiffdriver_01", "Not Set"}, + {"u_m_m_oddfellowparticipant_01", "Not Set"}, + {"u_m_m_odriscollbrawler_01", "Not Set"}, + {"u_m_m_orpguard_01", "Not Set"}, + {"u_m_m_racforeman_01", "Not Set"}, + {"u_m_m_racquartermaster_01", "Not Set"}, + {"u_m_m_rhdbackupdeputy_01", "Not Set"}, + {"u_m_m_rhdbackupdeputy_02", "Not Set"}, + {"u_m_m_rhdbartender_01", "Not Set"}, + {"u_m_m_rhddoctor_01", "Not Set"}, + {"u_m_m_rhdfiddleplayer_01", "Not Set"}, + {"u_m_m_rhdgenstoreowner_01", "Not Set"}, + {"u_m_m_rhdgenstoreowner_02", "Not Set"}, + {"u_m_m_rhdgunsmith_01", "Not Set"}, + {"u_m_m_rhdpreacher_01", "Not Set"}, + {"u_m_m_rhdsheriff_01", "Not Set"}, + {"u_m_m_rhdtrainstationworker_01", "Not Set"}, + {"u_m_m_rhdundertaker_01", "Not Set"}, + {"u_m_m_riodonkeyrider_01", "Not Set"}, + {"u_m_m_rkfrancher_01", "Not Set"}, + {"u_m_m_rkrdonkeyrider_01", "Not Set"}, + {"u_m_m_rwfrancher_01", "Not Set"}, + {"u_m_m_sdbankguard_01", "Not Set"}, + {"u_m_m_sdcustomvendor_01", "Not Set"}, + {"u_m_m_sdexoticsshopkeeper_01", "Not Set"}, + {"u_m_m_sdphotographer_01", "Not Set"}, + {"u_m_m_sdpolicechief_01", "Not Set"}, + {"u_m_m_sdstrongwomanassistant_01", "Not Set"}, + {"u_m_m_sdtrapper_01", "Not Set"}, + {"u_m_m_sdwealthytraveller_01", "Not Set"}, + {"u_m_m_shackserialkiller_01", "Not Set"}, + {"u_m_m_shacktwin_01", "Not Set"}, + {"u_m_m_shacktwin_02", "Not Set"}, + {"u_m_m_skinnyoldguy_01", "Not Set"}, + {"u_m_m_story_armadillo_01", "Not Set"}, + {"u_m_m_story_cannibal_01", "Not Set"}, + {"u_m_m_story_chelonian_01", "Not Set"}, + {"u_m_m_story_copperhead_01", "Not Set"}, + {"u_m_m_story_creeper_01", "Not Set"}, + {"u_m_m_story_emeraldranch_01", "Not Set"}, + {"u_m_m_story_hunter_01", "Not Set"}, + {"u_m_m_story_manzanita_01", "Not Set"}, + {"u_m_m_story_murfee_01", "Not Set"}, + {"u_m_m_story_pigfarm_01", "Not Set"}, + {"u_m_m_story_princess_01", "Not Set"}, + {"u_m_m_story_redharlow_01", "Not Set"}, + {"u_m_m_story_rhodes_01", "Not Set"}, + {"u_m_m_story_sdstatue_01", "Not Set"}, + {"u_m_m_story_spectre_01", "Not Set"}, + {"u_m_m_story_treasure_01", "Not Set"}, + {"u_m_m_story_tumbleweed_01", "Not Set"}, + {"u_m_m_story_valentine_01", "Not Set"}, + {"u_m_m_strfreightstationowner_01", "Not Set"}, + {"u_m_m_strgenstoreowner_01", "Not Set"}, + {"u_m_m_strsherriff_01", "Not Set"}, + {"u_m_m_strwelcomecenter_01", "Not Set"}, + {"u_m_m_tumbartender_01", "Not Set"}, + {"u_m_m_tumbutcher_01", "Not Set"}, + {"u_m_m_tumgunsmith_01", "Not Set"}, + {"u_m_m_tumtrainstationworker_01", "Not Set"}, + {"u_m_m_unibountyhunter_01", "Not Set"}, + {"u_m_m_unibountyhunter_02", "Not Set"}, + {"u_m_m_unidusterhenchman_01", "Not Set"}, + {"u_m_m_unidusterhenchman_02", "Not Set"}, + {"u_m_m_unidusterhenchman_03", "Not Set"}, + {"u_m_m_unidusterleader_01", "Not Set"}, + {"u_m_m_uniexconfedsbounty_01", "Not Set"}, + {"u_m_m_unionleader_01", "Not Set"}, + {"u_m_m_unionleader_02", "Not Set"}, + {"u_m_m_unipeepingtom_01", "Not Set"}, + {"u_m_m_valauctionforman_01", "Not Set"}, + {"u_m_m_valauctionforman_02", "Not Set"}, + {"u_m_m_valbarber_01", "Not Set"}, + {"u_m_m_valbartender_01", "Not Set"}, + {"u_m_m_valbeartrap_01", "Not Set"}, + {"u_m_m_valbutcher_01", "Not Set"}, + {"u_m_m_valdoctor_01", "Not Set"}, + {"u_m_m_valgenstoreowner_01", "Not Set"}, + {"u_m_m_valgunsmith_01", "Not Set"}, + {"u_m_m_valhotelowner_01", "Not Set"}, + {"u_m_m_valpokerplayer_01", "Not Set"}, + {"u_m_m_valpokerplayer_02", "Not Set"}, + {"u_m_m_valpoopingman_01", "Not Set"}, + {"u_m_m_valsheriff_01", "Not Set"}, + {"u_m_m_valtheman_01", "Not Set"}, + {"u_m_m_valtownfolk_01", "Not Set"}, + {"u_m_m_valtownfolk_02", "Not Set"}, + {"u_m_m_vhtstationclerk_01", "Not Set"}, + {"u_m_m_walgeneralstoreowner_01", "Not Set"}, + {"u_m_m_wapofficial_01", "Not Set"}, + {"u_m_m_wtccowboy_04", "Not Set"}, + {"u_m_o_armbartender_01", "Not Set"}, + {"u_m_o_asbsheriff_01", "Not Set"}, + {"u_m_o_bht_docwormwood", "Not Set"}, + {"u_m_o_blwbartender_01", "Not Set"}, + {"u_m_o_blwgeneralstoreowner_01", "Not Set"}, + {"u_m_o_blwphotographer_01", "Not Set"}, + {"u_m_o_blwpolicechief_01", "Not Set"}, + {"u_m_o_cajhomestead_01", "Not Set"}, + {"u_m_o_cmrcivilwarcommando_01", "Not Set"}, + {"u_m_o_mapwiseoldman_01", "Not Set"}, + {"u_m_o_oldcajun_01", "Not Set"}, + {"u_m_o_pshrancher_01", "Not Set"}, + {"u_m_o_rigtrainstationworker_01", "Not Set"}, + {"u_m_o_valbartender_01", "Not Set"}, + {"u_m_o_vhtexoticshopkeeper_01", "Not Set"}, + {"u_m_y_cajhomestead_01", "Not Set"}, + {"u_m_y_czphomesteadson_01", "Not Set"}, + {"u_m_y_czphomesteadson_02", "Not Set"}, + {"u_m_y_czphomesteadson_03", "Not Set"}, + {"u_m_y_czphomesteadson_04", "Not Set"}, + {"u_m_y_czphomesteadson_05", "Not Set"}, + {"u_m_y_duellistbounty_01", "Not Set"}, + {"u_m_y_emrson_01", "Not Set"}, + {"u_m_y_htlworker_01", "Not Set"}, + {"u_m_y_htlworker_02", "Not Set"}, + {"u_m_y_shackstarvingkid_01", "Not Set"}, + {"ann_05_rail01x", "Not Set"}, + {"ann_05_rail02x", "Not Set"}, + {"ann_05_rail03x", "Not Set"}, + {"ann_05_rail04x", "Not Set"}, + {"p_annesb_fnc_01", "Not Set"}, + {"p_annesb_fnc_02", "Not Set"}, + {"p_annesb_fnc_03", "Not Set"}, + {"p_annesb_fnc_04", "Not Set"}, + {"p_annesb_stair_01", "Not Set"}, + {"p_annesb_stair_02", "Not Set"}, + {"p_vanh_int_odor1", "Not Set"}, + {"p_vanh_wal_01", "Not Set"}, + {"bra_01_belbase", "Not Set"}, + {"cat_rail_01", "Not Set"}, + {"p_bra_bals_01", "Not Set"}, + {"p_bra_gaze_gate001", "Not Set"}, + {"p_bra_gaze_gate002", "Not Set"}, + {"p_bra_pil_01", "Not Set"}, + {"p_bra_shut_01", "Not Set"}, + {"p_bra_shut_02", "Not Set"}, + {"p_bal_bro1", "Not Set"}, + {"p_bron_pago_01", "Not Set"}, + {"p_bron_screen_01", "Not Set"}, + {"p_bron_squb_01", "Not Set"}, + {"p_bron_ssqu_01", "Not Set"}, + {"p_bronte_fram_01", "Not Set"}, + {"p_bronte_fram_02", "Not Set"}, + {"p_bronte_fram_03", "Not Set"}, + {"p_col_bro1", "Not Set"}, + {"p_pil_bro_1", "Not Set"}, + {"mic_hid_01x", "Not Set"}, + {"p_clt_adlh_pst1", "Not Set"}, + {"p_clt_beam01a", "Not Set"}, + {"p_clt_colt_ici_003a", "Not Set"}, + {"p_clt_colt_ici_003b", "Not Set"}, + {"p_clt_colt_ici_003c", "Not Set"}, + {"p_clt_colt_ici_003d", "Not Set"}, + {"p_clt_colt_ici_003e", "Not Set"}, + {"p_clt_colt_ici_003f", "Not Set"}, + {"p_clt_colt_ici_02a", "Not Set"}, + {"p_clt_colt_ici_02b", "Not Set"}, + {"p_clt_colt_ici_02c", "Not Set"}, + {"p_clt_colt_ici_02d", "Not Set"}, + {"p_clt_colt_ici_02e", "Not Set"}, + {"p_clt_colt_ici_02f", "Not Set"}, + {"p_clt_colt_ici_02g", "Not Set"}, + {"p_clt_colt_ici_02h", "Not Set"}, + {"p_clt_colt_ici_02i", "Not Set"}, + {"p_clt_colt_ici_04a", "Not Set"}, + {"p_clt_colt_ici_04b", "Not Set"}, + {"p_clt_colt_ici_04c", "Not Set"}, + {"p_clt_colt_ici_10a", "Not Set"}, + {"p_clt_colt_ici_10b", "Not Set"}, + {"p_clt_colt_ici_10c", "Not Set"}, + {"p_clt_colt_ici_10d", "Not Set"}, + {"p_clt_colt_ici_10e", "Not Set"}, + {"p_clt_colt_ici_10f", "Not Set"}, + {"p_clt_colt_ici_10g", "Not Set"}, + {"p_clt_colt_ici_10h", "Not Set"}, + {"p_clt_colt_ici_11a", "Not Set"}, + {"p_clt_colt_ici_11b", "Not Set"}, + {"p_clt_colt_ici_11c", "Not Set"}, + {"p_clt_colt_ici_5a", "Not Set"}, + {"p_clt_colt_ici_5b", "Not Set"}, + {"p_clt_colt_ici_5c", "Not Set"}, + {"p_clt_colt_ici_5d", "Not Set"}, + {"p_clt_colt_ici_6a", "Not Set"}, + {"p_clt_colt_ici_6b", "Not Set"}, + {"p_clt_colt_ici_6c", "Not Set"}, + {"p_clt_colt_ici_6d", "Not Set"}, + {"p_clt_colt_ici_6e", "Not Set"}, + {"p_clt_colt_ici_6f", "Not Set"}, + {"p_clt_colt_ici_7a", "Not Set"}, + {"p_clt_colt_ici_7b", "Not Set"}, + {"p_clt_colt_ici_7c", "Not Set"}, + {"p_clt_colt_ici_7d", "Not Set"}, + {"p_clt_colt_ici_7e", "Not Set"}, + {"p_clt_colt_ici_7f", "Not Set"}, + {"p_clt_colt_ici_7g", "Not Set"}, + {"p_clt_colt_ici_8a", "Not Set"}, + {"p_clt_colt_ici_8b", "Not Set"}, + {"p_clt_colt_ici_8c", "Not Set"}, + {"p_clt_colt_ici_8d", "Not Set"}, + {"p_clt_colt_ici_8e", "Not Set"}, + {"p_clt_colt_ici_8f", "Not Set"}, + {"p_clt_gri_ici_01_01", "Not Set"}, + {"p_clt_gri_ici_01_02", "Not Set"}, + {"p_clt_gri_ici_01_03", "Not Set"}, + {"p_clt_gri_ici_01_04", "Not Set"}, + {"p_clt_ici_02", "Not Set"}, + {"p_clt_ici_03", "Not Set"}, + {"p_clt_min_ici_01a", "Not Set"}, + {"p_clt_min_ici_01b", "Not Set"}, + {"p_clt_min_ici_01c", "Not Set"}, + {"p_clt_min_ici_01d", "Not Set"}, + {"p_clt_min_ici_02a", "Not Set"}, + {"p_clt_min_ici_02b", "Not Set"}, + {"p_clt_min_ici_02c", "Not Set"}, + {"p_clt_min_ici_02d", "Not Set"}, + {"p_clt_min_ici_02e", "Not Set"}, + {"p_clt_min_ici_02f", "Not Set"}, + {"p_clt_min_ici_03a", "Not Set"}, + {"p_clt_min_ici_03b", "Not Set"}, + {"p_clt_min_ici_03c", "Not Set"}, + {"p_clt_min_ici_03d", "Not Set"}, + {"p_clt_min_ici_03e", "Not Set"}, + {"p_clt_min_ici_05a", "Not Set"}, + {"p_clt_min_ici_05b", "Not Set"}, + {"p_clt_min_ici_05c", "Not Set"}, + {"p_clt_min_ici_05d", "Not Set"}, + {"p_clt_min_ici_05e", "Not Set"}, + {"p_clt_min_ici_05f", "Not Set"}, + {"p_clt_min_ici_05g", "Not Set"}, + {"p_clt_min_ici_05h", "Not Set"}, + {"p_clt_min_ici_05i", "Not Set"}, + {"p_clt_min_ici_05j", "Not Set"}, + {"p_clt_min_ici_06a", "Not Set"}, + {"p_clt_min_ici_06b", "Not Set"}, + {"p_clt_min_ici_07", "Not Set"}, + {"p_clt_min_ici_08a", "Not Set"}, + {"p_clt_min_ici_08b", "Not Set"}, + {"p_clt_min_ici_08c", "Not Set"}, + {"p_clt_min_ici_08d", "Not Set"}, + {"p_clt_min_ici_09a", "Not Set"}, + {"p_clt_min_ici_09b", "Not Set"}, + {"p_clt_min_ici_09c", "Not Set"}, + {"p_clt_min_ici_09d", "Not Set"}, + {"p_clt_post01a", "Not Set"}, + {"p_clt_post01b", "Not Set"}, + {"p_clt_sht_01", "Not Set"}, + {"p_clt_sht_02", "Not Set"}, + {"p_clt_win_ici_03", "Not Set"}, + {"p_clt_win_ici_04a", "Not Set"}, + {"p_clt_win_ici_04b", "Not Set"}, + {"p_clt_win_ici_04c", "Not Set"}, + {"p_clt_win_ici_04d", "Not Set"}, + {"p_clt_win_ici_04e", "Not Set"}, + {"p_clt_win_ici_05a", "Not Set"}, + {"p_clt_win_ici_05b", "Not Set"}, + {"p_clt_win_ici_05c", "Not Set"}, + {"p_clt_win_ici_05d", "Not Set"}, + {"p_clt_wplank_01", "Not Set"}, + {"p_colt_beam_01", "Not Set"}, + {"p_colt_hut_01", "Not Set"}, + {"p_colt_hut2_01", "Not Set"}, + {"p_colt_mic_icicles", "Not Set"}, + {"p_colt_planks_01", "Not Set"}, + {"p_colt_planks_02", "Not Set"}, + {"p_colt_posts_01", "Not Set"}, + {"p_colt_struct_01", "Not Set"}, + {"p_corn_beam_01", "Not Set"}, + {"p_corn_beam_02", "Not Set"}, + {"p_corn_brail_01_01", "Not Set"}, + {"p_corn_brail_01_02", "Not Set"}, + {"p_corn_brail_01t", "Not Set"}, + {"p_corn_deck_01", "Not Set"}, + {"p_corn_doorway_01", "Not Set"}, + {"p_corn_inbeam_01", "Not Set"}, + {"p_corn_plankinner_01", "Not Set"}, + {"p_corn_pst_01", "Not Set"}, + {"p_corn_psts_01", "Not Set"}, + {"p_corn_tpost_01", "Not Set"}, + {"p_corn_trail_01_01", "Not Set"}, + {"p_corn_trail_01_02", "Not Set"}, + {"p_corn_twr_01", "Not Set"}, + {"p_corn_twr_02", "Not Set"}, + {"p_corn_uwindow_01", "Not Set"}, + {"p_corn_uwindow_02", "Not Set"}, + {"p_corn_window_01", "Not Set"}, + {"p_corn_window_02", "Not Set"}, + {"p_corn_window_03", "Not Set"}, + {"p_corn_window_04", "Not Set"}, + {"p_corn_wodhut_01", "Not Set"}, + {"p_plankbrk_01a", "Not Set"}, + {"p_plankwall_01", "Not Set"}, + {"p_plankwall_02", "Not Set"}, + {"lac_01_rubble_p_02", "Not Set"}, + {"p_guarma_pil_01", "Not Set"}, + {"p_guarma_wal_01", "Not Set"}, + {"p_guarma_wal_02", "Not Set"}, + {"p_guarma_wal_03", "Not Set"}, + {"p_guarma_wal_04", "Not Set"}, + {"p_guarma_wal_05", "Not Set"}, + {"p_guarma_wal_06", "Not Set"}, + {"p_guarm_blok_c", "Not Set"}, + {"p_hng_ent_01", "Not Set"}, + {"p_hng_stb_01", "Not Set"}, + {"p_hng_stb_02", "Not Set"}, + {"p_hng_stb_03", "Not Set"}, + {"p_hng_toi", "Not Set"}, + {"p_huto_01", "Not Set"}, + {"p_huto_02", "Not Set"}, + {"p_lakdok_fram_01", "Not Set"}, + {"p_lakdok_fram_02", "Not Set"}, + {"p_lakdok_lad_01", "Not Set"}, + {"p_lakdok_post_01", "Not Set"}, + {"p_lakdok_tbar_01", "Not Set"}, + {"p_lakdok_tbar_02", "Not Set"}, + {"p_tabfrag_01a", "Not Set"}, + {"p_toilet_01", "Not Set"}, + {"p_ofw_post_01", "Not Set"}, + {"p_ofw_pst_02", "Not Set"}, + {"p_ofw_rail_01", "Not Set"}, + {"p_ofw_win_01", "Not Set"}, + {"p_bee_building_01", "Not Set"}, + {"p_bee_building_02", "Not Set"}, + {"p_bee_building_03", "Not Set"}, + {"p_bee_building_04", "Not Set"}, + {"p_bee_building_05", "Not Set"}, + {"p_bee_building_06", "Not Set"}, + {"p_bee_building_07", "Not Set"}, + {"p_bee_building_08", "Not Set"}, + {"p_bee_building_09", "Not Set"}, + {"p_bee_building_10", "Not Set"}, + {"p_bee_building_11", "Not Set"}, + {"p_bee_building_12", "Not Set"}, + {"p_beech_stage_00a", "Not Set"}, + {"p_beech_stage_00b", "Not Set"}, + {"p_beech_stage_01a", "Not Set"}, + {"p_beech_stage_01b", "Not Set"}, + {"p_beech_stage_01c", "Not Set"}, + {"p_beech_stage_01d", "Not Set"}, + {"p_beech_stage_01e", "Not Set"}, + {"p_beech_stage_01f", "Not Set"}, + {"p_beech_stage_02a", "Not Set"}, + {"p_beech_stage_02b", "Not Set"}, + {"p_beech_stage_02c", "Not Set"}, + {"p_beech_stage_02d", "Not Set"}, + {"p_beech_stage_02e", "Not Set"}, + {"p_beech_stage_02f", "Not Set"}, + {"p_beech_stage_03a", "Not Set"}, + {"p_beech_stage_03b", "Not Set"}, + {"p_beech_stage_03c", "Not Set"}, + {"p_beech_stage_03d", "Not Set"}, + {"p_beech_stage_03e", "Not Set"}, + {"p_beech_stage_03f", "Not Set"}, + {"p_beech_stage_03g", "Not Set"}, + {"p_beech_stage_04a", "Not Set"}, + {"p_beech_stage_04b", "Not Set"}, + {"p_beech_stage_04c", "Not Set"}, + {"p_beech_stage_04d", "Not Set"}, + {"p_beech_stage_04e", "Not Set"}, + {"p_beech_stage_05a", "Not Set"}, + {"p_beech_stage_05b", "Not Set"}, + {"p_beech_stage_05c", "Not Set"}, + {"p_beech_stage_05d", "Not Set"}, + {"p_beech_stage_05e", "Not Set"}, + {"p_beech_stage_05f", "Not Set"}, + {"p_beech_stage_05g", "Not Set"}, + {"p_beech_stage_06a", "Not Set"}, + {"p_beech_stage_06b", "Not Set"}, + {"p_beech_stage_06c", "Not Set"}, + {"p_beech_stage_06d", "Not Set"}, + {"p_beech_stage_06e", "Not Set"}, + {"p_beech_stage_06f", "Not Set"}, + {"p_beech_stage_06g", "Not Set"}, + {"p_beech_stage_06h", "Not Set"}, + {"p_outhouse03x", "Not Set"}, + {"p_outhouse04x", "Not Set"}, + {"p_outhouse05x", "Not Set"}, + {"p_outhouse_script_pee", "Not Set"}, + {"p_outhouse_valb", "Not Set"}, + {"p_pronghorn_fence_01a", "Not Set"}, + {"p_pronghorn_fence_01b", "Not Set"}, + {"p_pronghorn_fence_01c", "Not Set"}, + {"p_pronghorn_fence_01d", "Not Set"}, + {"p_bul_lpst_01", "Not Set"}, + {"p_bul_pst_01", "Not Set"}, + {"p_doc_top1", "Not Set"}, + {"p_frhotel_01", "Not Set"}, + {"planter_01a", "Not Set"}, + {"p_mvhotel_01", "Not Set"}, + {"p_rb_swings_01", "Not Set"}, + {"p_rho_bell", "Not Set"}, + {"p_rho_chra_01", "Not Set"}, + {"p_rho_chra_02", "Not Set"}, + {"p_rho_chra_03", "Not Set"}, + {"p_rho_chra_04", "Not Set"}, + {"p_rho_chra_05", "Not Set"}, + {"p_rho_chra_06", "Not Set"}, + {"p_rho_chra_07", "Not Set"}, + {"p_rho_gen_pil1", "Not Set"}, + {"p_rho_gro01_a", "Not Set"}, + {"p_rho_gs_11", "Not Set"}, + {"p_rho_gstor_01", "Not Set"}, + {"p_rho_guns_01", "Not Set"}, + {"p_rho_guns_02", "Not Set"}, + {"p_rho_int_ban1", "Not Set"}, + {"p_rho_int_bar_01", "Not Set"}, + {"p_rho_int_stair1", "Not Set"}, + {"p_rho_limp_1", "Not Set"}, + {"p_rho_no_a1", "Not Set"}, + {"p_rho_oats_01", "Not Set"}, + {"p_rho_off_01", "Not Set"}, + {"p_rho_palsgn_01", "Not Set"}, + {"p_rho_palsgn_02", "Not Set"}, + {"p_rho_patio_11", "Not Set"}, + {"p_rho_patio_12", "Not Set"}, + {"p_rho_patio_13", "Not Set"}, + {"p_rho_sed_01", "Not Set"}, + {"p_rho_sgn_aj1", "Not Set"}, + {"p_rho_sgn_ajes", "Not Set"}, + {"p_rho_sgn_shf1a", "Not Set"}, + {"p_rho_shr_01a", "Not Set"}, + {"p_rho_str_frl1", "Not Set"}, + {"p_rho_und_01", "Not Set"}, + {"p_rho_unpst_01", "Not Set"}, + {"p_rho_wok_01", "Not Set"}, + {"p_rho_wool_01", "Not Set"}, + {"p_val_sgn_gs_01", "Not Set"}, + {"rho_bank_roofcorner", "Not Set"}, + {"rho_hotel_balustairs", "Not Set"}, + {"rho_hotel_baluster", "Not Set"}, + {"rho_hotel_baluster2", "Not Set"}, + {"rho_hotel_post", "Not Set"}, + {"rho_hotel_upper01", "Not Set"}, + {"rho_hotel_upper02", "Not Set"}, + {"rho_hotel_upper03", "Not Set"}, + {"rho_hotel_upper04", "Not Set"}, + {"rho_hse_fnc_01_root", "Not Set"}, + {"rho_hse_fnc_02a_root", "Not Set"}, + {"rho_hse_fnc_03_root", "Not Set"}, + {"rho_hse_fnc_04_root", "Not Set"}, + {"rho_parl_pst_01a", "Not Set"}, + {"rho_sal_post_grd_root", "Not Set"}, + {"rho_sal_post_top", "Not Set"}, + {"rho_sal_srail_a1", "Not Set"}, + {"rho_sal_stairdeco", "Not Set"}, + {"rho_sal_trellis_a1", "Not Set"}, + {"rho_sal_trellis_a2", "Not Set"}, + {"rho_sal_trellis_btm_root", "Not Set"}, + {"rho_sal_trellisdeco_top", "Not Set"}, + {"rho_sal_trellis_post", "Not Set"}, + {"rho_shrf_pillar", "Not Set"}, + {"rho_shrf_rail_dwn", "Not Set"}, + {"rho_shrf_rail_up", "Not Set"}, + {"rho_shrf_rail_up2", "Not Set"}, + {"rho_tsign_01", "Not Set"}, + {"p_shabel_bpost_01", "Not Set"}, + {"p_shabel_pag_pst_01", "Not Set"}, + {"p_shabel_pil_1", "Not Set"}, + {"p_shabel_rail_01x", "Not Set"}, + {"p_shabel_rail_02x", "Not Set"}, + {"p_shabel_rail_03x", "Not Set"}, + {"p_shabel_rail_04x", "Not Set"}, + {"p_shabel_rails_01", "Not Set"}, + {"p_shabel_rails_02", "Not Set"}, + {"p_shabel_rails_03", "Not Set"}, + {"p_shabel_wal_02", "Not Set"}, + {"i_gen_anvil01_h", "Not Set"}, + {"i_gen_cordwood01x", "Not Set"}, + {"i_gen_dresser01x", "Not Set"}, + {"i_gen_generator01x", "Not Set"}, + {"i_gen_wagonparked01", "Not Set"}, + {"p_aa_rails_h", "Not Set"}, + {"p_barndoorl01_h", "Not Set"}, + {"p_barndoorr01_h", "Not Set"}, + {"p_barn_h", "Not Set"}, + {"p_barrell1_h", "Not Set"}, + {"p_barrellt_h00", "Not Set"}, + {"p_barrellt_h01", "Not Set"}, + {"p_barrellt_h02", "Not Set"}, + {"p_barrellt_h03", "Not Set"}, + {"p_bat_wagon07x", "Not Set"}, + {"p_boatlrg01_h", "Not Set"}, + {"p_boatmed01_h", "Not Set"}, + {"p_cabin1_h", "Not Set"}, + {"p_chiccoo_h", "Not Set"}, + {"p_church1_h", "Not Set"}, + {"p_cin_damage_01", "Not Set"}, + {"p_cover1x1_h", "Not Set"}, + {"p_cover1x2_h", "Not Set"}, + {"p_cover2x1a_h", "Not Set"}, + {"p_cover2x1_h", "Not Set"}, + {"p_cover2x2_h", "Not Set"}, + {"p_cover2x4_h", "Not Set"}, + {"p_cover2x6_h", "Not Set"}, + {"p_cover3x1_h", "Not Set"}, + {"p_cover3x1_l", "Not Set"}, + {"p_cover4x1_h", "Not Set"}, + {"p_cover4x1_l", "Not Set"}, + {"p_cover4x2_h", "Not Set"}, + {"p_cover5x1_h", "Not Set"}, + {"p_crate01_h", "Not Set"}, + {"p_crate02_h", "Not Set"}, + {"p_ddoorl_01", "Not Set"}, + {"p_door1_004", "Not Set"}, + {"p_door1_1", "Not Set"}, + {"p_door1_2", "Not Set"}, + {"p_door1_3", "Not Set"}, + {"p_door1_h", "Not Set"}, + {"p_door2_h", "Not Set"}, + {"p_door3_h", "Not Set"}, + {"p_door4_h", "Not Set"}, + {"p_door5_h", "Not Set"}, + {"p_door6_h", "Not Set"}, + {"p_doorsafe_h", "Not Set"}, + {"p_doorslide_l", "Not Set"}, + {"p_doorslide_r", "Not Set"}, + {"p_fence02_h", "Not Set"}, + {"p_fence1_h", "Not Set"}, + {"p_gate01_h001", "Not Set"}, + {"p_gate01_h002", "Not Set"}, + {"p_gen_basketcreel01x", "Not Set"}, + {"p_gen_bedrollopen01x", "Not Set"}, + {"p_gen_bedrollopen02x", "Not Set"}, + {"p_gen_bedsleptin02x", "Not Set"}, + {"p_gen_blanket_pic", "Not Set"}, + {"p_genbldg1_h", "Not Set"}, + {"p_genbldg2_h", "Not Set"}, + {"p_genbldg3_h", "Not Set"}, + {"p_genbldg_h", "Not Set"}, + {"p_genbldglrg_h", "Not Set"}, + {"p_gen_campfire01x", "Not Set"}, + {"p_gen_card01x", "Not Set"}, + {"p_gen_cards01x", "Not Set"}, + {"p_gen_chairpokerfancy01x", "Not Set"}, + {"p_gen_deed_cs01x", "Not Set"}, + {"p_gen_fence02a", "Not Set"}, + {"p_gen_fence02ab", "Not Set"}, + {"p_gen_fence02ac", "Not Set"}, + {"p_gen_fence04_posta", "Not Set"}, + {"p_gen_fire01x", "Not Set"}, + {"p_gen_flowerbouquet02x", "Not Set"}, + {"p_gen_gate_2m", "Not Set"}, + {"p_gen_glass07x", "Not Set"}, + {"p_gen_gourdwater01x", "Not Set"}, + {"p_gen_healingbush01x", "Not Set"}, + {"p_gen_healingbush02x", "Not Set"}, + {"p_gen_healingbush03x", "Not Set"}, + {"p_gen_healingbush04x", "Not Set"}, + {"p_gen_herbsdry01x", "Not Set"}, + {"p_gen_herbsdry02x", "Not Set"}, + {"p_gen_herbsdry03x", "Not Set"}, + {"p_gen_herbsdry04x", "Not Set"}, + {"p_gen_jug01x", "Not Set"}, + {"p_gen_jug02x", "Not Set"}, + {"p_gen_log04x", "Not Set"}, + {"p_gen_logsawed01x", "Not Set"}, + {"p_gen_noose01x", "Not Set"}, + {"p_gen_pan01x", "Not Set"}, + {"p_gen_pokerchipavarage03x", "Not Set"}, + {"p_gen_rockcluster01x", "Not Set"}, + {"p_gen_ropetie01x", "Not Set"}, + {"p_gen_safe01", "Not Set"}, + {"p_gen_safe02", "Not Set"}, + {"p_gen_still01x", "Not Set"}, + {"p_gen_tablepoker02x", "Not Set"}, + {"p_gen_watermeloneaten01x", "Not Set"}, + {"p_gen_watermelonslice01x", "Not Set"}, + {"p_hitchpo01_h", "Not Set"}, + {"p_hitchpo02_h", "Not Set"}, + {"p_plankrise_h", "Not Set"}, + {"p_planks1_h", "Not Set"}, + {"prop_wall_light_07a", "Not Set"}, + {"prop_wall_light_08a", "Not Set"}, + {"p_saloon1_h", "Not Set"}, + {"p_shutter01_h", "Not Set"}, + {"p_stairs_compare", "Not Set"}, + {"p_telepole01_h", "Not Set"}, + {"p_tre_wildfeverfew01x", "Not Set"}, + {"p_tre_wildfeverfew02x", "Not Set"}, + {"p_tre_wildfeverfew03x", "Not Set"}, + {"p_tre_wildfeverfew04x", "Not Set"}, + {"p_trough01_h", "Not Set"}, + {"pun_rock_01a", "Not Set"}, + {"pun_rock_03a", "Not Set"}, + {"pun_rock_08", "Not Set"}, + {"p_wag_gen1_h", "Not Set"}, + {"p_wall_break01", "Not Set"}, + {"p_wall_break02", "Not Set"}, + {"p_win_sheet01", "Not Set"}, + {"p_win_sheet02", "Not Set"}, + {"windmill", "Not Set"}, + {"new_slcem_mos_01clsd", "Not Set"}, + {"new_slcem_mos_01opn", "Not Set"}, + {"p_iron_cem_gate_br_01", "Not Set"}, + {"p_new_cem_statue02x", "Not Set"}, + {"p_new_monument02x", "Not Set"}, + {"p_new_monument04x", "Not Set"}, + {"p_new_mslm_01x", "Not Set"}, + {"p_new_mslm_02x", "Not Set"}, + {"p_new_mslm_04x", "Not Set"}, + {"p_new_mslm_05x", "Not Set"}, + {"p_new_mslm_06x", "Not Set"}, + {"p_new_mslm08x", "Not Set"}, + {"p_new_mslm09x", "Not Set"}, + {"p_new_mslm10x", "Not Set"}, + {"p_new_mslm10x_w", "Not Set"}, + {"p_new_poor_msl02x", "Not Set"}, + {"p_new_poor_msl02x_w", "Not Set"}, + {"p_new_poor_msl03x", "Not Set"}, + {"p_new_poor_msl03x_w", "Not Set"}, + {"p_new_poor_msl04x", "Not Set"}, + {"p_new_poor_msl05x", "Not Set"}, + {"p_new_poor_msl05x_l002", "Not Set"}, + {"p_new_poor_msl05x_w", "Not Set"}, + {"p_new_poor_msl06x", "Not Set"}, + {"p_new_rich_bench2x", "Not Set"}, + {"p_new_rich_msl03x", "Not Set"}, + {"p_new_rich_msl05x", "Not Set"}, + {"p_new_rich_msl09x", "Not Set"}, + {"p_new_tomb_md01", "Not Set"}, + {"p_new_tomb_md01_w", "Not Set"}, + {"p_new_tomb_md02", "Not Set"}, + {"p_new_tomb_md02_b", "Not Set"}, + {"p_new_tomb_md02_r", "Not Set"}, + {"p_new_tomb_md02_w", "Not Set"}, + {"p_new_tomb_md03", "Not Set"}, + {"p_new_tomb_md03_b", "Not Set"}, + {"p_new_tomb_md04", "Not Set"}, + {"p_new_tomb_md04_w", "Not Set"}, + {"p_new_tomb_md05", "Not Set"}, + {"p_new_tomb_md05_b", "Not Set"}, + {"p_new_tomb_md05_w", "Not Set"}, + {"p_new_tomb_md05_y", "Not Set"}, + {"p_new_tomb_md06", "Not Set"}, + {"p_new_tomb_smsunk01", "Not Set"}, + {"p_new_tomb_smsunk02", "Not Set"}, + {"p_new_tomb_smsunk03", "Not Set"}, + {"nb_p_bnk_pst_22", "Not Set"}, + {"nb_p_skn_all", "Not Set"}, + {"nb_p_skn_nodam", "Not Set"}, + {"p_blok_wd_01", "Not Set"}, + {"p_blok_wd_02", "Not Set"}, + {"p_blok_wd_03", "Not Set"}, + {"p_blok_wd_04", "Not Set"}, + {"p_blok_wd_05", "Not Set"}, + {"p_bnk_arc_01a", "Not Set"}, + {"p_bnk_arc_02a", "Not Set"}, + {"p_bnk_arc_03a", "Not Set"}, + {"p_bnk_arc_03b", "Not Set"}, + {"p_bnk_arc_11a", "Not Set"}, + {"p_bnk_arc_22a", "Not Set"}, + {"p_bnk_bal_01a", "Not Set"}, + {"p_bnk_counter_01", "Not Set"}, + {"p_bnk_win_01", "Not Set"}, + {"p_nbx_bank_desk02", "Not Set"}, + {"pnew_sgn_f01", "Not Set"}, + {"p_newsgn_f02", "Not Set"}, + {"p_pil_stm_01", "Not Set"}, + {"p_ser_ttop_01", "Not Set"}, + {"p_spainting_01", "Not Set"}, + {"p_std_bksgn_01", "Not Set"}, + {"p_std_bksgn_02", "Not Set"}, + {"p_std_bksgn_03", "Not Set"}, + {"p_std_bksgn_04", "Not Set"}, + {"p_std_bksgn_05", "Not Set"}, + {"p_stden_esfmrk_01", "Not Set"}, + {"p_stden_esfmrk_02", "Not Set"}, + {"p_stden_esfmrk_03", "Not Set"}, + {"p_stden_esfmrk_04", "Not Set"}, + {"p_stden_esfmrk_05", "Not Set"}, + {"p_stden_esfmrk_06", "Not Set"}, + {"p_stden_esfmrk_07", "Not Set"}, + {"p_stden_esfmrk_08", "Not Set"}, + {"p_stden_fnc_01", "Not Set"}, + {"p_stden_fnc_02", "Not Set"}, + {"p_stden_fncmrk_01", "Not Set"}, + {"p_stden_fncmrk_02", "Not Set"}, + {"p_stden_fncmrk_03", "Not Set"}, + {"p_stden_fncmrk_04", "Not Set"}, + {"p_stden_fncmrk_05", "Not Set"}, + {"p_stden_fncmrk_06", "Not Set"}, + {"p_stden_fncmrk_07", "Not Set"}, + {"p_stden_fncmrk_08", "Not Set"}, + {"p_stden_pil_01", "Not Set"}, + {"p_stden_pil_02", "Not Set"}, + {"p_stden_pil_03", "Not Set"}, + {"p_stdens_hut_01", "Not Set"}, + {"p_stdens_rails_01", "Not Set"}, + {"p_stdens_stair_01", "Not Set"}, + {"p_stden_topwall1", "Not Set"}, + {"p_std_rooftiles", "Not Set"}, + {"p_std_rooftiles_p", "Not Set"}, + {"s_p_bnk_pst_1a", "Not Set"}, + {"hotel_ext_post_01", "Not Set"}, + {"hotel_ext_post_02", "Not Set"}, + {"hotel_ext_rail_01", "Not Set"}, + {"hotel_ext_rail_02", "Not Set"}, + {"hotel_ext_rail_03", "Not Set"}, + {"p_bottlebeer01x_fus1_mcs2_p2_t06_shot_2", "Not Set"}, + {"p_straw_bal_01", "Not Set"}, + {"p_straw_bal_02", "Not Set"}, + {"p_straw_bal_03", "Not Set"}, + {"p_straw_brgpsh_01", "Not Set"}, + {"p_straw_brgpsh_02", "Not Set"}, + {"p_straw_brgpsh_03", "Not Set"}, + {"p_straw_brgpsh_04", "Not Set"}, + {"p_straw_brgpsh_05", "Not Set"}, + {"p_straw_brgpsh_06", "Not Set"}, + {"p_straw_doc_sgn01", "Not Set"}, + {"p_straw_ho_post1", "Not Set"}, + {"p_straw_ho_post2", "Not Set"}, + {"p_straw_ho_rail1", "Not Set"}, + {"p_straw_ho_rail2", "Not Set"}, + {"p_straw_ho_rail3", "Not Set"}, + {"p_straw_ho_s1", "Not Set"}, + {"p_straw_ph_r1", "Not Set"}, + {"p_straw_ph_r1a", "Not Set"}, + {"p_straw_ph_r2", "Not Set"}, + {"p_straw_ph_r2a", "Not Set"}, + {"p_straw_ph_r3", "Not Set"}, + {"p_straw_ph_r4", "Not Set"}, + {"p_straw_ph_r5", "Not Set"}, + {"p_straw_ph_r6", "Not Set"}, + {"p_straw_ph_s1", "Not Set"}, + {"p_straw_ph_s2", "Not Set"}, + {"p_straw_str_r1", "Not Set"}, + {"p_straw_str_r2", "Not Set"}, + {"p_straw_str_r3", "Not Set"}, + {"p_straw_str_r4", "Not Set"}, + {"p_straw_str_r5", "Not Set"}, + {"p_straw_str_sgn1", "Not Set"}, + {"p_straw_str_sgn2", "Not Set"}, + {"p_straw_str_sgn3", "Not Set"}, + {"p_straw_str_sgn4", "Not Set"}, + {"p_straw_str_sgn5", "Not Set"}, + {"p_straw_wat_1a", "Not Set"}, + {"p_straw_wat_1b", "Not Set"}, + {"p_straw_wat_2", "Not Set"}, + {"p_straw_ww_s1", "Not Set"}, + {"p_str_doc_s1", "Not Set"}, + {"str_01_doc_p1", "Not Set"}, + {"str_01_doc_p2", "Not Set"}, + {"str_01_doc_p3", "Not Set"}, + {"str_01_doc_r1", "Not Set"}, + {"str_01_doc_r2", "Not Set"}, + {"str_01_doc_r3", "Not Set"}, + {"str_02_bridge", "Not Set"}, + {"p_plankwall_01a", "Not Set"}, + {"p_plankwall_01a_sea", "Not Set"}, + {"p_railing_des", "Not Set"}, + {"p_railing_des_dmg", "Not Set"}, + {"p_sgn_doc_01", "Not Set"}, + {"p_sgn_gns_01a", "Not Set"}, + {"p_sgn_jmac_01a", "Not Set"}, + {"p_sgn_jmac_01a_dmg", "Not Set"}, + {"p_sgn_pgd_01a", "Not Set"}, + {"p_top_jmac_01a", "Not Set"}, + {"p_top_jmac_01a_dmg", "Not Set"}, + {"p_val_crail_01", "Not Set"}, + {"p_val_crail_02", "Not Set"}, + {"p_val_crail_03", "Not Set"}, + {"p_val_crail_04", "Not Set"}, + {"p_val_crail_05", "Not Set"}, + {"p_val_crossb_1", "Not Set"}, + {"p_val_crossb_2", "Not Set"}, + {"p_val_frmsn_011", "Not Set"}, + {"p_val_post_r01", "Not Set"}, + {"p_val_rail_vhot_1a", "Not Set"}, + {"p_val_rail_vhot_1b", "Not Set"}, + {"p_val_rail_vhot_1c", "Not Set"}, + {"p_val_rpost_01_a", "Not Set"}, + {"p_val_rpost_02_a", "Not Set"}, + {"p_val_rpost_03_a", "Not Set"}, + {"p_val_rrail_1_a", "Not Set"}, + {"p_val_rrail_2_a", "Not Set"}, + {"p_val_rrail_3_a", "Not Set"}, + {"p_val_rrail_4_a", "Not Set"}, + {"p_val_rrail_5_a", "Not Set"}, + {"p_val_rrail_6_a", "Not Set"}, + {"p_val_rrail_7_a", "Not Set"}, + {"p_val_rrail_8_a", "Not Set"}, + {"p_val_sgn_dr_1", "Not Set"}, + {"p_val_sgn_dr_2", "Not Set"}, + {"p_val_sgn_dr_3", "Not Set"}, + {"p_val_sgn_dry_01", "Not Set"}, + {"p_val_sgn_dry_01_dmg", "Not Set"}, + {"p_val_sgn_eskeane_01", "Not Set"}, + {"p_val_sgn_hot_01", "Not Set"}, + {"p_val_sgn_mrb_01", "Not Set"}, + {"p_val_sgn_mrb_01_dmg", "Not Set"}, + {"p_val_sgn_mrb_02", "Not Set"}, + {"p_val_sgn_mrb_02_dmg", "Not Set"}, + {"p_val_sgn_mrb_03", "Not Set"}, + {"p_val_sgn_mrb_03_dmg", "Not Set"}, + {"p_val_sgn_sln_01", "Not Set"}, + {"p_val_sgn_sln_01_dmg", "Not Set"}, + {"p_vmlbanner", "Not Set"}, + {"p_vmlflag01", "Not Set"}, + {"p_vmlflag02", "Not Set"}, + {"p_vmlflag03", "Not Set"}, + {"p_vmlflag04", "Not Set"}, + {"val_p_espst_001", "Not Set"}, + {"val_p_knob_pst_01", "Not Set"}, + {"val_p_knob_pst_01_dmg", "Not Set"}, + {"val_p_pst_001", "Not Set"}, + {"val_p_pst_003", "Not Set"}, + {"val_p_pst_005", "Not Set"}, + {"val_p_pst_f01", "Not Set"}, + {"val_p_pst_f01_dmg", "Not Set"}, + {"val_p_psthb_001", "Not Set"}, + {"val_p_pst_jw_01", "Not Set"}, + {"val_p_pst_jw_01_dmg", "Not Set"}, + {"val_p_pst_smt_01", "Not Set"}, + {"val_p_pst_smt_01_dmg", "Not Set"}, + {"val_p_pst_smt_02", "Not Set"}, + {"val_p_pst_smt_02_dmg", "Not Set"}, + {"val_p_sal_post_01", "Not Set"}, + {"val_p_sal_post_02", "Not Set"}, + {"val_p_sal_post_03", "Not Set"}, + {"val_p_sal_rail_01", "Not Set"}, + {"val_p_sal_rail_02", "Not Set"}, + {"val_p_sal_rail_03", "Not Set"}, + {"val_p_sal_rail_04", "Not Set"}, + {"val_p_sal_sgn_01", "Not Set"}, + {"val_p_sal_sgn_02", "Not Set"}, + {"val_p_sal_sgn_03", "Not Set"}, + {"val_p_sal_tpost_01", "Not Set"}, + {"val_p_sal_trail_01", "Not Set"}, + {"val_p_sal_trail_02", "Not Set"}, + {"val_p_sal_trail_03", "Not Set"}, + {"val_p_sal_trail_04", "Not Set"}, + {"val_p_sal_trail_05", "Not Set"}, + {"val_p_sgn_ffw_c01", "Not Set"}, + {"val_p_sgn_ffw_c01_dmg", "Not Set"}, + {"val_p_sgn_tas_01", "Not Set"}, + {"val_p_sgn_tas_01_dmg", "Not Set"}, + {"val_p_shackai_log1", "Not Set"}, + {"val_p_shackai_rail01", "Not Set"}, + {"val_p_shackai_rail02", "Not Set"}, + {"val_p_shackai_sgn1", "Not Set"}, + {"val_p_shrf_01", "Not Set"}, + {"val_p_shrf_02", "Not Set"}, + {"val_p_shrf_03", "Not Set"}, + {"val_p_shrf_04", "Not Set"}, + {"val_p_shrf_05", "Not Set"}, + {"val_p_v4_crn_01", "Not Set"}, + {"val_p_v4_crn_02", "Not Set"}, + {"val_p_v4_cros_01", "Not Set"}, + {"val_p_v4_pst_01", "Not Set"}, + {"val_res_post_grd_2", "Not Set"}, + {"val_res_post_grd_2_dmg", "Not Set"}, + {"val_res_post_grd_root", "Not Set"}, + {"val_res_post_grd_root_dmg", "Not Set"}, + {"p_watertower_lrg_05", "Not Set"}, + {"p_watertower_lrg_05b", "Not Set"}, + {"p_watertower_med_02", "Not Set"}, + {"p_watertower_med_02b", "Not Set"}, + {"p_watertower_med_03", "Not Set"}, + {"p_watertower_med_03b", "Not Set"}, + {"p_watertower_med_04", "Not Set"}, + {"p_watertower_med_04b", "Not Set"}, + {"p_watertower_med_05", "Not Set"}, + {"p_watertower_med_05b", "Not Set"}, + {"p_watertower_med_06", "Not Set"}, + {"p_watertower_med_06b", "Not Set"}, + {"p_watertower_med_07", "Not Set"}, + {"p_watertower_med_07b", "Not Set"}, + {"p_watertower_med_08", "Not Set"}, + {"p_watertower_sm_03", "Not Set"}, + {"p_watertower_sm_03_base", "Not Set"}, + {"p_watertower_sm_04", "Not Set"}, + {"p_watertower_sm_04_base", "Not Set"}, + {"p_watertower_sm_05", "Not Set"}, + {"p_watertower_sm_05_base", "Not Set"}, + {"p_watertower_sm_07", "Not Set"}, + {"p_windmill_med_01", "Not Set"}, + {"p_windmill_med_02", "Not Set"}, + {"p_windmill_med_02b", "Not Set"}, + {"p_windmill_sm_01", "Not Set"}, + {"test_lod", "Not Set"}, + {"crp_ginseng_aa_sim", "Not Set"}, + {"crp_ginseng_ba_sim", "Not Set"}, + {"crp_sugarcane_ae_p", "Not Set"}, + {"armoredcar01x", "Not Set"}, + {"armoredcar03x", "Not Set"}, + {"armysupplywagon", "Not Set"}, + {"boatsteam02x", "Not Set"}, + {"breach_cannon", "Not Set"}, + {"buggy01", "Not Set"}, + {"buggy02", "Not Set"}, + {"buggy03", "Not Set"}, + {"caboose01x", "Not Set"}, + {"canoe", "Not Set"}, + {"canoetreetrunk", "Not Set"}, + {"cart01", "Not Set"}, + {"cart02", "Not Set"}, + {"cart03", "Not Set"}, + {"cart04", "Not Set"}, + {"cart05", "Not Set"}, + {"cart06", "Not Set"}, + {"cart07", "Not Set"}, + {"cart08", "Not Set"}, + {"chuckwagon000x", "Not Set"}, + {"chuckwagon002x", "Not Set"}, + {"coach2", "Not Set"}, + {"coach3", "Not Set"}, + {"coach3_cutscene", "Not Set"}, + {"coach4", "Not Set"}, + {"coach5", "Not Set"}, + {"coach6", "Not Set"}, + {"coalhopper01x", "Not Set"}, + {"coal_wagon", "Not Set"}, + {"gatchuck", "Not Set"}, + {"gatchuck_2", "Not Set"}, + {"gatling_gun", "Not Set"}, + {"gatlingmaxim02", "Not Set"}, + {"ghosttraincaboose", "Not Set"}, + {"ghosttraincoalcar", "Not Set"}, + {"ghosttrainpassenger", "Not Set"}, + {"ghosttrainsteamer", "Not Set"}, + {"handcart", "Not Set"}, + {"horseboat", "Not Set"}, + {"hotairballoon01", "Not Set"}, + {"hotchkiss_cannon", "Not Set"}, + {"huntercart01", "Not Set"}, + {"keelboat", "Not Set"}, + {"logwagon", "Not Set"}, + {"logwagon2", "Not Set"}, + {"midlandboxcar05x", "Not Set"}, + {"midlandrefrigeratorcar", "Not Set"}, + {"minecart01x", "Not Set"}, + {"northcoalcar01x", "Not Set"}, + {"northflatcar01x", "Not Set"}, + {"northpassenger01x", "Not Set"}, + {"northpassenger03x", "Not Set"}, + {"northsteamer01x", "Not Set"}, + {"oilwagon01x", "Not Set"}, + {"oilwagon02x", "Not Set"}, + {"pirogue", "Not Set"}, + {"pirogue2", "Not Set"}, + {"policewagon01x", "Not Set"}, + {"policewagongatling01x", "Not Set"}, + {"privatearmoured", "Not Set"}, + {"privatebaggage01x", "Not Set"}, + {"privateboxcar01x", "Not Set"}, + {"privateboxcar02x", "Not Set"}, + {"privateboxcar04x", "Not Set"}, + {"privatecoalcar01x", "Not Set"}, + {"privatedining01x", "Not Set"}, + {"privateflatcar01x", "Not Set"}, + {"privateobservationcar", "Not Set"}, + {"privateopensleeper01x", "Not Set"}, + {"privateopensleeper02x", "Not Set"}, + {"privatepassenger01x", "Not Set"}, + {"privaterooms01x", "Not Set"}, + {"privatesteamer01x", "Not Set"}, + {"rcboat", "Not Set"}, + {"rowboat", "Not Set"}, + {"rowboatswamp", "Not Set"}, + {"rowboatswamp02", "Not Set"}, + {"ship_guama02", "Not Set"}, + {"ship_nbdguama", "Not Set"}, + {"ship_nbdguama2", "Not Set"}, + {"skiff", "Not Set"}, + {"smuggler02", "Not Set"}, + {"stagecoach001x", "Not Set"}, + {"stagecoach002x", "Not Set"}, + {"stagecoach003x", "Not Set"}, + {"stagecoach004x", "Not Set"}, + {"stagecoach005x", "Not Set"}, + {"stagecoach006x", "Not Set"}, + {"steamerdummy", "Not Set"}, + {"supplywagon", "Not Set"}, + {"supplywagon2", "Not Set"}, + {"trolley01x", "Not Set"}, + {"tugboat2", "Not Set"}, + {"turbineboat", "Not Set"}, + {"utilliwag", "Not Set"}, + {"wagon02x", "Not Set"}, + {"wagon03x", "Not Set"}, + {"wagon04x", "Not Set"}, + {"wagon05x", "Not Set"}, + {"wagon06x", "Not Set"}, + {"wagonarmoured01x", "Not Set"}, + {"wagoncircus01x", "Not Set"}, + {"wagoncircus02x", "Not Set"}, + {"wagondairy01x", "Not Set"}, + {"wagondoc01x", "Not Set"}, + {"wagonprison01x", "Not Set"}, + {"wagontraveller01x", "Not Set"}, + {"wagonwork01x", "Not Set"}, + {"wintercoalcar", "Not Set"}, + {"wintersteamer", "Not Set"}, + {"i_gen_tableblackjack01x", "Not Set"}, + {"p_gen_antler01x_tc01", "Not Set"}, + {"p_gen_bedsleptin01x_tc01", "Not Set"}, + {"p_gen_beermugglass01x", "Not Set"}, + {"p_gen_benchpiano01x_tc01", "Not Set"}, + {"p_gen_bottle01x_bot", "Not Set"}, + {"p_gen_bottle01x_top", "Not Set"}, + {"_p_gen_bottlebeer01x_bot", "Not Set"}, + {"_p_gen_bottlebeer01x_top", "Not Set"}, + {"p_gen_bottletequila01x", "Not Set"}, + {"p_gen_chair06x", "Not Set"}, + {"p_gen_chair07x", "Not Set"}, + {"p_gen_chair08x", "Not Set"}, + {"p_gen_coin02x", "Not Set"}, + {"p_gen_dice01x", "Not Set"}, + {"p_gen_dice02x", "Not Set"}, + {"p_gen_dicecup01x", "Not Set"}, + {"p_gen_dresser01x_tc01", "Not Set"}, + {"p_gen_glass01x", "Not Set"}, + {"p_gen_glasstallbeer01x", "Not Set"}, + {"p_gen_piano01x_tc01", "Not Set"}, + {"p_gen_pitcher01x_upper", "Not Set"}, + {"p_gen_pokerchipante01x", "Not Set"}, + {"p_gen_pokerchipavarage01x", "Not Set"}, + {"p_gen_pokerchipavarage02x", "Not Set"}, + {"p_gen_pokerchipblue01x", "Not Set"}, + {"p_gen_pokerchipgreen01x", "Not Set"}, + {"p_gen_pokerchiplosingstack01x", "Not Set"}, + {"p_gen_pokerchipred01x", "Not Set"}, + {"p_gen_pokerchipwhite01x", "Not Set"}, + {"p_gen_pokerchipwinningstack01x", "Not Set"}, + {"p_gen_pokerhand01x", "Not Set"}, + {"p_gen_pokerhand03x", "Not Set"}, + {"p_gen_pokerhand04x", "Not Set"}, + {"p_gen_pokerhand06x", "Not Set"}, + {"p_gen_skullmoose01_tc01", "Not Set"}, + {"p_gen_stool01x", "Not Set"}, + {"p_gen_stool03x", "Not Set"}, + {"p_gen_stove01x_tc01", "Not Set"}, + {"p_gen_table01x", "Not Set"}, + {"p_gen_table02x", "Not Set"}, + {"p_gen_table03x", "Not Set"}, + {"p_gen_table04x", "Not Set"}, + {"p_gen_tablepoker01x", "Not Set"}, + {"p_inv_shopbottlesmall01x", "Not Set"}, + {"topcardpokerhand02x", "Not Set"}, + {"p_sap_poplar_aa_sim", "Not Set"}, + {"p_sap_poplar_ab_sim", "Not Set"}, + {"p_sap_poplar_ac_sim", "Not Set"}, + {"p_sap_poplar_ad_sim", "Not Set"}, + {"p_tree_birch_01_sapling", "Not Set"}, + {"p_tree_birch_02_sapling", "Not Set"}, + {"p_tree_birch_03", "Not Set"}, + {"p_tree_birch_03b", "Not Set"}, + {"p_tree_birch_03_lg", "Not Set"}, + {"p_tree_birch_03_md", "Not Set"}, + {"p_tree_birch_03_md_a", "Not Set"}, + {"p_tree_birch_03_sapling", "Not Set"}, + {"p_tree_birch_04", "Not Set"}, + {"p_tree_birch_04_lg", "Not Set"}, + {"p_tree_birch_multistem", "Not Set"}, + {"p_tree_birch_tall_sap", "Not Set"}, + {"p_tree_poplar_01", "Not Set"}, + {"p_tree_poplar_02", "Not Set"}, + {"p_tree_riv_poplar_01", "Not Set"}, + {"p_tree_riv_poplar_02", "Not Set"}, + {"p_tree_willow_01", "Not Set"}, + {"p_tree_willow_02", "Not Set"}, + {"rdr2_tree_gimlet", "Not Set"}, + {"rdr2_tree_rata01", "Not Set"}, + {"rdr2_tree_rata02", "Not Set"}, + {"rdr2_tree_riverbirch", "Not Set"}, + {"rdr_nrml_branch_aa_sim", "Not Set"}, + {"rdr_nrml_branch_ab_sim", "Not Set"}, + {"rdr_bush_agave_aa_sim", "Not Set"}, + {"rdr_bush_agave_ab_sim", "Not Set"}, + {"rdr_bush_aloe_aa_sim", "Not Set"}, + {"rdr_bush_arec_aa_sim", "Not Set"}, + {"rdr_bush_arec_ab_sim", "Not Set"}, + {"rdr_bush_bram_aa_sim", "Not Set"}, + {"rdr_bush_bram_dead_aa_sim", "Not Set"}, + {"rdr_bush_broad_aa_crt_sim", "Not Set"}, + {"rdr_bush_broad_aa_sim", "Not Set"}, + {"rdr_bush_broad_ab_crt_sim", "Not Set"}, + {"rdr_bush_broad_ab_sim", "Not Set"}, + {"rdr_bush_brush_burnt_aa_sim", "Not Set"}, + {"rdr_bush_brush_dead_aa_sim", "Not Set"}, + {"rdr_bush_brush_dead_ba_sim", "Not Set"}, + {"rdr_bush_brush_dead_ca_sim", "Not Set"}, + {"rdr_bush_brush_grn_aa_sim", "Not Set"}, + {"rdr_bush_brush_snw_aa_sim", "Not Set"}, + {"rdr_bush_cat_tail_aa_sim", "Not Set"}, + {"rdr_bush_cat_tail_ab_sim", "Not Set"}, + {"rdr_bush_decor_aa", "Not Set"}, + {"rdr_bush_decor_ab", "Not Set"}, + {"rdr_bush_dry_thin_aa_sim", "Not Set"}, + {"rdr_bush_dry_thin_ba_sim", "Not Set"}, + {"rdr_bush_ear_aa_sim", "Not Set"}, + {"rdr_bush_ear_ab_sim", "Not Set"}, + {"rdr_bush_fern_aa", "Not Set"}, + {"rdr_bush_fern_aa_sim", "Not Set"}, + {"rdr_bush_fern_ab_sim", "Not Set"}, + {"rdr_bush_fern_ba_sim", "Not Set"}, + {"rdr_bush_fern_dead_ba_sim", "Not Set"}, + {"rdr_bush_fern_mix_da_sim", "Not Set"}, + {"rdr_bush_fern_tall_ca_sim", "Not Set"}, + {"rdr_bush_fern_tall_cb_sim", "Not Set"}, + {"rdr_bush_fern_tall_cc_sim", "Not Set"}, + {"rdr_bush_ficus_aa_sim", "Not Set"}, + {"rdr_bush_hedgecore_aa", "Not Set"}, + {"rdr_bush_hedgecore_ab", "Not Set"}, + {"rdr_bush_hedgecore_ac", "Not Set"}, + {"rdr_bush_hedgecore_ad", "Not Set"}, + {"rdr_bush_junip_aa_sim", "Not Set"}, + {"rdr_bush_junip_ab_sim", "Not Set"}, + {"rdr_bush_junip_ac_sim", "Not Set"}, + {"rdr_bush_kudzu_aa", "Not Set"}, + {"rdr_bush_kudzu_ab", "Not Set"}, + {"rdr_bush_kudzu_ac", "Not Set"}, + {"rdr_bush_kudzu_ad", "Not Set"}, + {"rdr_bush_kudzu_ae", "Not Set"}, + {"rdr_bush_kudzu_af", "Not Set"}, + {"rdr_bush_kudzu_ag", "Not Set"}, + {"rdr_bush_kudzu_br_aa_sim", "Not Set"}, + {"rdr_bush_kudzu_br_ab_sim", "Not Set"}, + {"rdr_bush_kudzu_br_ac_sim", "Not Set"}, + {"rdr_bush_kudzu_gc_01", "Not Set"}, + {"rdr_bush_kudzu_gc_02", "Not Set"}, + {"rdr_bush_kudzu_gf_01", "Not Set"}, + {"rdr_bush_kudzu_gf_02", "Not Set"}, + {"rdr_bush_kudzu_gf_03", "Not Set"}, + {"rdr_bush_kudzu_gf_04", "Not Set"}, + {"rdr_bush_kudzu_moss_aa_sim", "Not Set"}, + {"rdr_bush_kudzu_roots_aa_sim", "Not Set"}, + {"rdr_bush_kudzu_roots_ab_sim", "Not Set"}, + {"rdr_bush_kudzu_roots_ac_sim", "Not Set"}, + {"rdr_bush_kudzu_top_01", "Not Set"}, + {"rdr_bush_kudzu_top_02", "Not Set"}, + {"rdr_bush_kudzu_top_03", "Not Set"}, + {"rdr_bush_kudzu_top_04", "Not Set"}, + {"rdr_bush_kudzu_wall_01", "Not Set"}, + {"rdr_bush_leafy_aa_sim", "Not Set"}, + {"rdr_bush_low_aa", "Not Set"}, + {"rdr_bush_low_ab", "Not Set"}, + {"rdr_bush_low_ba", "Not Set"}, + {"rdr_bush_low_bb", "Not Set"}, + {"rdr_bush_lrg_aa_sim", "Not Set"}, + {"rdr_bush_lrg_dead_aa_sim", "Not Set"}, + {"rdr_bush_mang_aa_sim", "Not Set"}, + {"rdr_bush_mang_ab_sim", "Not Set"}, + {"rdr_bush_mang_ac_sim", "Not Set"}, + {"rdr_bush_mang_ad_sim", "Not Set"}, + {"rdr_bush_mang_lg_aa_sim", "Not Set"}, + {"rdr_bush_mang_low_aa", "Not Set"}, + {"rdr_bush_mang_low_ab", "Not Set"}, + {"rdr_bush_neat_aa_sim", "Not Set"}, + {"rdr_bush_neat_ab_sim", "Not Set"}, + {"rdr_bush_neat_ac_sim", "Not Set"}, + {"rdr_bush_neat_ad_sim", "Not Set"}, + {"rdr_bush_neat_ae_sim", "Not Set"}, + {"rdr_bush_neat_ba_sim", "Not Set"}, + {"rdr_bush_neat_bb_sim", "Not Set"}, + {"rdr_bush_neat_bc_sim", "Not Set"}, + {"rdr_bush_palm_aa_sim", "Not Set"}, + {"rdr_bush_palm_ab_sim", "Not Set"}, + {"rdr_bush_paradise_aa_sim", "Not Set"}, + {"rdr_bush_roots_aa", "Not Set"}, + {"rdr_bush_roots_ab", "Not Set"}, + {"rdr_bush_scrub_aa_sim", "Not Set"}, + {"rdr_bush_soga_aa_sim", "Not Set"}, + {"rdr_bush_soga_ab_sim", "Not Set"}, + {"rdr_bush_sumac_aa_sim", "Not Set"}, + {"rdr_bush_tall_reeds_aa_sim", "Not Set"}, + {"rdr_bush_thick_aa_sim", "Not Set"}, + {"rdr_bush_thingreen_aa_sim", "Not Set"}, + {"rdr_bush_thorn_aa_sim", "Not Set"}, + {"rdr_bush_wandering_aa_sim", "Not Set"}, + {"rdr_bush_yucca_aa_sim", "Not Set"}, + {"rdr_bush_yucca_dead_aa_sim", "Not Set"}, + {"p_tree_cactus_01a", "Not Set"}, + {"p_tree_cactus_01b", "Not Set"}, + {"p_tree_cactus_01b_os", "Not Set"}, + {"p_tree_cactus_01c", "Not Set"}, + {"p_tree_cactus_01d", "Not Set"}, + {"p_tree_cactus_01e", "Not Set"}, + {"p_tree_cactus_01e_os", "Not Set"}, + {"p_tree_joshua_01a", "Not Set"}, + {"p_tree_joshua_01b", "Not Set"}, + {"p_tree_joshua_01c", "Not Set"}, + {"p_tree_joshua_01d", "Not Set"}, + {"p_tree_joshua_01e", "Not Set"}, + {"p_tree_joshua_02a", "Not Set"}, + {"p_tree_joshua_02a_os", "Not Set"}, + {"p_tree_joshua_02b", "Not Set"}, + {"p_tree_joshua_02c", "Not Set"}, + {"p_tree_joshua_02d", "Not Set"}, + {"p_tree_joshua_02e", "Not Set"}, + {"p_tree_joshua_02e_os", "Not Set"}, + {"p_sap_fir_aa_sim", "Not Set"}, + {"p_sap_fir_ab_sim", "Not Set"}, + {"p_sap_fir_ac_sim", "Not Set"}, + {"p_sap_fir_snow_aa_sim", "Not Set"}, + {"p_sap_fir_snow_ab_sim", "Not Set"}, + {"p_sap_fir_snow_ac_sim", "Not Set"}, + {"p_tree_cedar_03b_snow", "Not Set"}, + {"p_tree_cedar_03b_snow_deep", "Not Set"}, + {"p_tree_cedar_decor_01", "Not Set"}, + {"p_tree_cedar_decor_02", "Not Set"}, + {"p_tree_cedar_s_deep_02_c", "Not Set"}, + {"p_tree_douglasfir_01", "Not Set"}, + {"p_tree_douglasfir_02", "Not Set"}, + {"p_tree_douglasfir_03", "Not Set"}, + {"p_tree_douglasfir_04", "Not Set"}, + {"p_tree_douglasfir_05", "Not Set"}, + {"p_tree_douglasfir_snow_01", "Not Set"}, + {"p_tree_douglasfir_snow_01a", "Not Set"}, + {"p_tree_douglasfir_snow_02", "Not Set"}, + {"p_tree_douglasfir_snow_03", "Not Set"}, + {"p_tree_douglasfir_snow_03a", "Not Set"}, + {"p_tree_douglasfir_snow_03b", "Not Set"}, + {"p_tree_douglasfir_snow_03c", "Not Set"}, + {"p_tree_douglasfir_snow_03d", "Not Set"}, + {"p_tree_douglasfir_snow_04", "Not Set"}, + {"p_tree_douglasfir_snow_04a", "Not Set"}, + {"p_tree_douglasfir_snow_05", "Not Set"}, + {"p_tree_douglasfir_snow_05a", "Not Set"}, + {"p_tree_lodgepole_01", "Not Set"}, + {"p_tree_lodgepole_02", "Not Set"}, + {"p_tree_lodgepole_02_bv", "Not Set"}, + {"p_tree_lodgepole_02_bv_l", "Not Set"}, + {"p_tree_lodgepole_02_bv_s", "Not Set"}, + {"p_tree_lodgepole_03", "Not Set"}, + {"p_tree_lodgepole_04", "Not Set"}, + {"p_tree_lodgepole_05", "Not Set"}, + {"p_tree_lodgepole_06", "Not Set"}, + {"p_tree_lodgepole_07", "Not Set"}, + {"p_tree_lodgepole_07a", "Not Set"}, + {"p_tree_lodgepole_roots_01", "Not Set"}, + {"p_tree_lodgepole_snow_01", "Not Set"}, + {"p_tree_lodgepole_snow_01a", "Not Set"}, + {"p_tree_lodgepole_snow_02", "Not Set"}, + {"p_tree_lodgepole_snow_02a", "Not Set"}, + {"p_tree_lodgepole_snow_02b", "Not Set"}, + {"p_tree_lodgepole_snow_03", "Not Set"}, + {"p_tree_lodgepole_snow_04", "Not Set"}, + {"p_tree_longleafpine_01", "Not Set"}, + {"p_tree_longleafpine_02", "Not Set"}, + {"p_tree_longleafpine_03", "Not Set"}, + {"p_tree_longleafpine_04", "Not Set"}, + {"p_tree_pine_burnt_01", "Not Set"}, + {"p_tree_pine_burnt_01a", "Not Set"}, + {"p_tree_pine_burnt_02", "Not Set"}, + {"p_tree_pine_burnt_02a", "Not Set"}, + {"p_tree_pine_burnt_log_aa", "Not Set"}, + {"p_tree_pine_burnt_log_ab", "Not Set"}, + {"p_tree_pine_ponderosa_01", "Not Set"}, + {"p_tree_pine_ponderosa_02", "Not Set"}, + {"p_tree_pine_ponderosa_03", "Not Set"}, + {"p_tree_pine_ponderosa_04", "Not Set"}, + {"p_tree_pine_ponderosa_05", "Not Set"}, + {"p_tree_pine_ponderosa_06", "Not Set"}, + {"p_tree_pine_ponderosa_07", "Not Set"}, + {"p_tree_ponderosa_sap_01", "Not Set"}, + {"p_tree_ponderosa_sap_02", "Not Set"}, + {"p_tree_ponderosa_sap_03", "Not Set"}, + {"p_tree_whitepine_01", "Not Set"}, + {"p_tree_whitepine_02", "Not Set"}, + {"p_tree_whitepine_03", "Not Set"}, + {"p_tree_whitepine_04", "Not Set"}, + {"p_tree_whitepine_05", "Not Set"}, + {"p_tree_whitepine_06", "Not Set"}, + {"p_tree_whitepine_07", "Not Set"}, + {"p_tree_whitepine_08", "Not Set"}, + {"p_tree_whitepine_09", "Not Set"}, + {"p_tree_whitepine_10", "Not Set"}, + {"p_tree_whitepine_sap_01", "Not Set"}, + {"p_tree_whitepine_sap_02", "Not Set"}, + {"p_tree_whitepine_sap_03", "Not Set"}, + {"rdr2_tree_utahjuniper", "Not Set"}, + {"rdr_pine_branch_aa_sim", "Not Set"}, + {"rdr_pine_branch_ab_sim", "Not Set"}, + {"p_tree_engoak_dead", "Not Set"}, + {"p_tree_fallen_pine_01", "Not Set"}, + {"p_tree_fallen_pine_01bc", "Not Set"}, + {"p_tree_fallen_pine_02", "Not Set"}, + {"p_tree_lightning_01", "Not Set"}, + {"p_tree_lightning_02", "Not Set"}, + {"p_tree_lightning_03", "Not Set"}, + {"p_tree_lightning_04", "Not Set"}, + {"p_tree_maple_03_dead", "Not Set"}, + {"p_tree_mesquite_01", "Not Set"}, + {"p_tree_mesquite_01_dead", "Not Set"}, + {"p_tree_pine_dead_01", "Not Set"}, + {"p_tree_pine_dead_02", "Not Set"}, + {"p_tree_riodel_01", "Not Set"}, + {"p_tree_rusolive_dead", "Not Set"}, + {"p_tree_rusolive_dead001", "Not Set"}, + {"p_tree_w_r_cedar_dead", "Not Set"}, + {"p_tree_w_r_cedar_dead_01", "Not Set"}, + {"p_tree_w_r_cedar_dead_02", "Not Set"}, + {"cs_only_p_tree_log_06a", "Not Set"}, + {"cs_p_tree_log_12", "Not Set"}, + {"p_tree_branch_01", "Not Set"}, + {"p_tree_fallen_01", "Not Set"}, + {"p_tree_fallen_01_stump", "Not Set"}, + {"p_tree_fallen_01_trunk", "Not Set"}, + {"p_tree_fallen_03", "Not Set"}, + {"p_tree_log_01", "Not Set"}, + {"p_tree_log_03", "Not Set"}, + {"p_tree_log_03_scenario", "Not Set"}, + {"p_tree_log_04", "Not Set"}, + {"p_tree_log_04_bc", "Not Set"}, + {"p_tree_log_04_scenario", "Not Set"}, + {"p_tree_log_05", "Not Set"}, + {"p_tree_log_06a", "Not Set"}, + {"p_tree_log_06a_m", "Not Set"}, + {"p_tree_log_06a_up", "Not Set"}, + {"p_tree_log_06b", "Not Set"}, + {"p_tree_log_07", "Not Set"}, + {"p_tree_log_07a", "Not Set"}, + {"p_tree_log_07_aa", "Not Set"}, + {"p_tree_log_07a_m", "Not Set"}, + {"p_tree_log_07a_up", "Not Set"}, + {"p_tree_log_07a_upb", "Not Set"}, + {"p_tree_log_07b", "Not Set"}, + {"p_tree_log_07b_m", "Not Set"}, + {"p_tree_log_07_m", "Not Set"}, + {"p_tree_log_07_upb", "Not Set"}, + {"p_tree_log_08", "Not Set"}, + {"p_tree_log_08_upb", "Not Set"}, + {"p_tree_log_09", "Not Set"}, + {"p_tree_log_09_m", "Not Set"}, + {"p_tree_log_10_up", "Not Set"}, + {"p_tree_log_10_upb", "Not Set"}, + {"p_tree_log_12", "Not Set"}, + {"p_tree_log_12_dead", "Not Set"}, + {"p_tree_log_13", "Not Set"}, + {"p_tree_stump_01_m", "Not Set"}, + {"p_tree_stump_02_scenario", "Not Set"}, + {"p_tree_stump_03", "Not Set"}, + {"p_tree_stump_03_scenario", "Not Set"}, + {"p_tree_stump_04", "Not Set"}, + {"p_tree_stump_05", "Not Set"}, + {"p_tree_stump_06", "Not Set"}, + {"p_tree_stump_06_m", "Not Set"}, + {"p_tree_stump_07", "Not Set"}, + {"p_tree_stump_08", "Not Set"}, + {"p_tree_stump_08_bc", "Not Set"}, + {"p_tree_stump_08_bc_l004", "Not Set"}, + {"p_tree_stump_09", "Not Set"}, + {"p_tree_stump_10", "Not Set"}, + {"p_tree_stump_11", "Not Set"}, + {"p_tree_stump_cedar_01", "Not Set"}, + {"p_tree_stump_cedar_02", "Not Set"}, + {"p_tree_stump_cedar_02a", "Not Set"}, + {"p_tree_stump_cut_01", "Not Set"}, + {"p_tree_stump_cut_01_m", "Not Set"}, + {"p_tree_stump_cut_02", "Not Set"}, + {"p_tree_stump_cut_02_m", "Not Set"}, + {"p_tree_stump_snow_010", "Not Set"}, + {"p_tree_stump_snow_011", "Not Set"}, + {"p_tree_stump_snow_04", "Not Set"}, + {"p_tree_stump_snow_09", "Not Set"}, + {"rdr_debris_bevdam_cor_aa", "Not Set"}, + {"rdr_debris_bevdam_cor_ab", "Not Set"}, + {"rdr_debris_bevdam_stk_aa", "Not Set"}, + {"rdr_debris_bevdam_stk_ab", "Not Set"}, + {"rdr_debris_bevdam_stk_ac", "Not Set"}, + {"rdr_debris_bevdam_stk_ad", "Not Set"}, + {"rdr_debris_bevdam_twg_aa", "Not Set"}, + {"rdr_debris_bevdam_twg_ab", "Not Set"}, + {"rdr_debris_burntbark_aa", "Not Set"}, + {"rdr_debris_burntbark_ab", "Not Set"}, + {"rdr_debris_burntbark_ac", "Not Set"}, + {"rdr_debris_coaldust_aa", "Not Set"}, + {"rdr_debris_deadfish_aa", "Not Set"}, + {"rdr_debris_deadfish_ab", "Not Set"}, + {"rdr_debris_deadfish_ac", "Not Set"}, + {"rdr_debris_ear_aa", "Not Set"}, + {"rdr_debris_leaves_lrg_aa", "Not Set"}, + {"rdr_debris_leaves_lrg_ab", "Not Set"}, + {"rdr_debris_leaves_lrg_ba", "Not Set"}, + {"rdr_debris_leaves_lrg_ca", "Not Set"}, + {"rdr_debris_leaves_lrg_w_ab", "Not Set"}, + {"rdr_debris_log_aa_sim", "Not Set"}, + {"rdr_debris_log_ba_sim", "Not Set"}, + {"rdr_debris_log_burnt_aa_sim", "Not Set"}, + {"rdr_debris_log_burnt_ba_sim", "Not Set"}, + {"rdr_debris_log_burnt_ea", "Not Set"}, + {"rdr_debris_log_ca_sim", "Not Set"}, + {"rdr_debris_log_da_moss_sim", "Not Set"}, + {"rdr_debris_log_da_sim", "Not Set"}, + {"rdr_debris_log_ea", "Not Set"}, + {"rdr_debris_palm_aa", "Not Set"}, + {"rdr_debris_roots_aa", "Not Set"}, + {"rdr_debris_roots_ab", "Not Set"}, + {"rdr_debris_roots_ac", "Not Set"}, + {"rdr_debris_roots_ad", "Not Set"}, + {"rdr_debris_seaweed_aa", "Not Set"}, + {"rdr_debris_seaweed_ab", "Not Set"}, + {"rdr_debris_sticks_aa", "Not Set"}, + {"rdr_debris_sticks_ab", "Not Set"}, + {"rdr_debris_stks_aa_burnt_sim", "Not Set"}, + {"rdr_debris_stks_aa_moss_sim", "Not Set"}, + {"rdr_debris_stks_aa_sim", "Not Set"}, + {"rdr_debris_twgs_aa", "Not Set"}, + {"rdr_debris_twgs_tall_aa_sim", "Not Set"}, + {"rdr_debris_twigs_burnt_aa", "Not Set"}, + {"rdr_debris_twigs_w_aa", "Not Set"}, + {"rdr_debris_wchips_aa", "Not Set"}, + {"rdr_flowers_temp", "Not Set"}, + {"rdr_flw_daisy_aa", "Not Set"}, + {"rdr_flw_dandy_aa", "Not Set"}, + {"rdr_flw_hosta_aa", "Not Set"}, + {"rdr_flw_lupins_aa", "Not Set"}, + {"rdr_flw_milkweed_aa", "Not Set"}, + {"rdr_flw_monkey_aa", "Not Set"}, + {"rdr_flw_monkey_ba", "Not Set"}, + {"rdr_flw_pansy_aa", "Not Set"}, + {"rdr_flw_petunia_aa", "Not Set"}, + {"rdr_flw_poppy_aa", "Not Set"}, + {"rdr2_bush_americanboxwood", "Not Set"}, + {"rdr2_bush_beavertailcactus", "Not Set"}, + {"rdr2_bush_beavertailcactus_02", "Not Set"}, + {"rdr2_bush_bigberrymanzanita", "Not Set"}, + {"rdr2_bush_catclaw", "Not Set"}, + {"rdr2_bush_chollocactus", "Not Set"}, + {"rdr2_bush_creosotebush", "Not Set"}, + {"rdr2_bush_creosotebush_2", "Not Set"}, + {"rdr2_bush_desertbroom", "Not Set"}, + {"rdr2_bush_desertbroom_2", "Not Set"}, + {"rdr2_bush_desertironwood", "Not Set"}, + {"rdr2_bush_pricklypearcactus", "Not Set"}, + {"rdr2_bush_sagebrush", "Not Set"}, + {"rdr2_bush_scruboak", "Not Set"}, + {"rdr2_bush_snakeweed", "Not Set"}, + {"rdr2_bush_snakeweedflower", "Not Set"}, + {"rdr2_bush_snakeweedflower_2", "Not Set"}, + {"rdr_bush_sage_aa", "Not Set"}, + {"rdr_bush_sage_ab", "Not Set"}, + {"dummy_gfx_test", "Not Set"}, + {"instanceplacement_slod", "Not Set"}, + {"rdr_grass_clump_aa", "Not Set"}, + {"rdr_grass_clump_ba", "Not Set"}, + {"rdr_grass_clump_ca", "Not Set"}, + {"rdr_grass_clump_da", "Not Set"}, + {"rdr_grass_clump_dry_aa", "Not Set"}, + {"rdr_grass_graze_aa", "Not Set"}, + {"rdr_grass_graze_dry_aa", "Not Set"}, + {"rdr_grass_graze_tall_aa", "Not Set"}, + {"rdr_grass_graze_tall_dry_aa", "Not Set"}, + {"rdr_grass_kudzu_gf_01", "Not Set"}, + {"rdr_grass_kudzu_gf_02", "Not Set"}, + {"rdr_grass_kudzu_gf_03", "Not Set"}, + {"rdr_grass_kudzu_gf_04", "Not Set"}, + {"rdr_grass_kudzu_gf_05", "Not Set"}, + {"rdr_grass_med_aa", "Not Set"}, + {"rdr_grass_med_dry_aa", "Not Set"}, + {"rdr_grass_path_aa", "Not Set"}, + {"rdr_grass_prk_sml_aa", "Not Set"}, + {"rdr_grass_prk_sml_ba", "Not Set"}, + {"rdr_grass_prk_sml_clp_aa", "Not Set"}, + {"rdr_grass_prk_sml_clp_ba", "Not Set"}, + {"rdr_grass_prk_sml_cut_aa", "Not Set"}, + {"rdr_grass_prk_sml_cut_stp_aa", "Not Set"}, + {"rdr_grass_prk_sml_cut_stp_ba", "Not Set"}, + {"rdr_grass_prk_sml_cut_stp_ca", "Not Set"}, + {"rdr_grass_prk_sml_str_ab", "Not Set"}, + {"rdr_grass_prk_sml_str_ba", "Not Set"}, + {"rdr_grass_prk_sml_str_ca", "Not Set"}, + {"rdr_grass_small_scrub_aa", "Not Set"}, + {"rdr_grass_small_scrub_dry_aa", "Not Set"}, + {"rdr_grass_small_thin_aa", "Not Set"}, + {"rdr_grass_small_thin_dry_aa", "Not Set"}, + {"rdr_grass_std_aa", "Not Set"}, + {"rdr_grass_std_ab", "Not Set"}, + {"rdr_grass_std_ac", "Not Set"}, + {"rdr_grass_std_ad", "Not Set"}, + {"rdr_grass_tall_aa", "Not Set"}, + {"rdr_grass_tall_dry_aa", "Not Set"}, + {"rdr_grass_tall_dry_seed_aa", "Not Set"}, + {"rdr_grass_tall_dry_seed_ba", "Not Set"}, + {"rdr_grass_tall_thin_dry_aa", "Not Set"}, + {"rdr_grass_tall_thin_dry_ba", "Not Set"}, + {"rdr_grass_tall_thin_seed_aa", "Not Set"}, + {"rdr_grass_tall_thin_seed_ab", "Not Set"}, + {"rdr_grass_tropical_aa", "Not Set"}, + {"rdr_grass_tropical_ba", "Not Set"}, + {"rdr_grass_weed_ba", "Not Set"}, + {"crp_artichoke_aa_sim", "Not Set"}, + {"crp_berry_aa_sim", "Not Set"}, + {"crp_berry_har_aa_sim", "Not Set"}, + {"crp_berry_sap_aa_sim", "Not Set"}, + {"crp_broccoli_aa_sim", "Not Set"}, + {"crp_carrots_aa_sim", "Not Set"}, + {"crp_carrots_ba_sim", "Not Set"}, + {"crp_carrots_har_ba_sim", "Not Set"}, + {"crp_carrots_sap_ba_sim", "Not Set"}, + {"crp_cornstalks_aa_sim", "Not Set"}, + {"crp_cornstalks_ab_sim", "Not Set"}, + {"crp_cornstalks_ac_sim", "Not Set"}, + {"crp_cornstalks_ba_sim", "Not Set"}, + {"crp_cornstalks_bb_sim", "Not Set"}, + {"crp_cornstalks_bc_sim", "Not Set"}, + {"crp_cornstalks_bd_sim", "Not Set"}, + {"crp_cornstalks_ca_sim", "Not Set"}, + {"crp_cornstalks_cb_sim", "Not Set"}, + {"crp_cornstalks_cc_sim", "Not Set"}, + {"crp_cornstalks_cd", "Not Set"}, + {"crp_cotton_ad_sim", "Not Set"}, + {"crp_cotton_ba_sim", "Not Set"}, + {"crp_cotton_bb_sim", "Not Set"}, + {"crp_cotton_bc_sim", "Not Set"}, + {"crp_cotton_bd_sim", "Not Set"}, + {"crp_cotton_be_sim", "Not Set"}, + {"crp_cotton_plant_af_p", "Not Set"}, + {"crp_ginseng_ab_sim", "Not Set"}, + {"crp_ginseng_ac", "Not Set"}, + {"crp_ginseng_ad", "Not Set"}, + {"crp_lettuce_aa_sim", "Not Set"}, + {"crp_potato_aa_sim", "Not Set"}, + {"crp_potato_har_aa_sim", "Not Set"}, + {"crp_potato_sap_aa_sim", "Not Set"}, + {"crp_seedling_aa_sim", "Not Set"}, + {"crp_sugarcane_aa_sim", "Not Set"}, + {"crp_sugarcane_ab_sim", "Not Set"}, + {"crp_sugarcane_ac_sim", "Not Set"}, + {"crp_sugarcane_ad_sim", "Not Set"}, + {"crp_sugarcane_af_p", "Not Set"}, + {"crp_sugarcane_ag_p", "Not Set"}, + {"crp_tobaccoburnt_bb_sim", "Not Set"}, + {"crp_tobaccoburnt_bc_sim", "Not Set"}, + {"crp_tobaccoplant_aa_sim", "Not Set"}, + {"crp_tobaccoplant_ab_sim", "Not Set"}, + {"crp_tobaccoplant_ac_sim", "Not Set"}, + {"crp_tobaccoplant_ba_sim", "Not Set"}, + {"crp_tobaccoplant_bb_sim", "Not Set"}, + {"crp_tobaccoplant_bc_sim", "Not Set"}, + {"crp_tobaccoplant_burnt_cb", "Not Set"}, + {"crp_tobaccoplant_ca_sim", "Not Set"}, + {"crp_tobaccoplant_cb", "Not Set"}, + {"crp_tobaccoplant_cc", "Not Set"}, + {"crp_tobaccoplant_cd", "Not Set"}, + {"crp_tomatoes_aa_sim", "Not Set"}, + {"crp_tomatoes_har_aa_sim", "Not Set"}, + {"crp_tomatoes_sap_aa_sim", "Not Set"}, + {"crp_wheat_cut_aa", "Not Set"}, + {"crp_wheat_dry_aa_sim", "Not Set"}, + {"crp_wheat_dry_long_aa_sim", "Not Set"}, + {"crp_wheat_sap_ac", "Not Set"}, + {"crp_wheat_sap_long_aa_sim", "Not Set"}, + {"crp_wheat_sap_long_ab_sim", "Not Set"}, + {"crp_wheat_stk_ab_sim", "Not Set"}, + {"p_sap_maple_aa_sim", "Not Set"}, + {"p_sap_maple_ab_sim", "Not Set"}, + {"p_sap_maple_ac_sim", "Not Set"}, + {"p_sap_maple_ad_sim", "Not Set"}, + {"p_sap_maple_ba_sim", "Not Set"}, + {"p_sap_maple_bb_sim", "Not Set"}, + {"p_sap_maple_bc_sim", "Not Set"}, + {"p_tree_maple_02", "Not Set"}, + {"p_tree_maple_03", "Not Set"}, + {"p_tree_maple_03_lg", "Not Set"}, + {"p_tree_maple_03_lg_m", "Not Set"}, + {"p_tree_maple_03_lg_os", "Not Set"}, + {"p_tree_maple_03_md", "Not Set"}, + {"p_tree_maple_03_md_bv", "Not Set"}, + {"p_tree_maple_03_md_bv_l", "Not Set"}, + {"p_tree_maple_03_md_bv_s", "Not Set"}, + {"p_tree_maple_03_os", "Not Set"}, + {"p_tree_maple_04_md", "Not Set"}, + {"p_tree_maple_04_md_m", "Not Set"}, + {"p_tree_maple_05_lg", "Not Set"}, + {"p_tree_maple_05_lg_ch", "Not Set"}, + {"p_tree_maple_05_lg_ch2", "Not Set"}, + {"p_tree_maple_05_lg_m", "Not Set"}, + {"p_tree_maple_bent_01", "Not Set"}, + {"p_tree_maple_bent_02", "Not Set"}, + {"p_tree_maple_bent_03", "Not Set"}, + {"p_tree_maple_dead_s_01", "Not Set"}, + {"p_tree_mapleroot_01", "Not Set"}, + {"p_tree_mapleroot_02", "Not Set"}, + {"p_tree_maple_s_01", "Not Set"}, + {"p_tree_maple_s_02", "Not Set"}, + {"p_tree_maple_s_03", "Not Set"}, + {"p_tree_maple_s_04", "Not Set"}, + {"p_tree_riv_maple_01", "Not Set"}, + {"p_tree_riv_maple_04", "Not Set"}, + {"p_tree_angel_oak", "Not Set"}, + {"p_tree_blue_oak_01", "Not Set"}, + {"p_tree_cottonwood_01", "Not Set"}, + {"p_tree_cottonwood_02", "Not Set"}, + {"p_tree_cottonwood_03", "Not Set"}, + {"p_tree_cottonwood_04", "Not Set"}, + {"p_tree_engoak_01", "Not Set"}, + {"p_tree_engoak_01_lg", "Not Set"}, + {"p_tree_engoak_02", "Not Set"}, + {"p_tree_engoak_moss_01", "Not Set"}, + {"p_tree_engoak_moss_01_os", "Not Set"}, + {"p_tree_engoak_nbx_01", "Not Set"}, + {"p_tree_hangingtreebranch", "Not Set"}, + {"p_tree_hangingtree_moss", "Not Set"}, + {"p_tree_hangingtreeoak01", "Not Set"}, + {"p_tree_jacada_01", "Not Set"}, + {"p_tree_liveoak_01", "Not Set"}, + {"p_tree_liveoak_moss_01", "Not Set"}, + {"p_tree_oak_01", "Not Set"}, + {"p_tree_oak_braith_03", "Not Set"}, + {"p_tree_poor_joe_oak", "Not Set"}, + {"p_tree_white_oak_01", "Not Set"}, + {"p_tree_white_oak_01_ch", "Not Set"}, + {"p_tree_white_oak_02", "Not Set"}, + {"rdr2_tree_beech", "Not Set"}, + {"rdr2_tree_brokentree", "Not Set"}, + {"rdr2_tree_sycamore", "Not Set"}, + {"p_sap_magnolia_aa_sim", "Not Set"}, + {"p_tree_bamboo_01", "Not Set"}, + {"p_tree_bamboo_01_crt", "Not Set"}, + {"p_tree_banana_01_crt", "Not Set"}, + {"p_tree_banana_01_lg", "Not Set"}, + {"p_tree_banana_01_md_crt", "Not Set"}, + {"p_tree_banana_dead_01_lg", "Not Set"}, + {"p_tree_banyan_01", "Not Set"}, + {"p_tree_magnolia_01", "Not Set"}, + {"p_tree_magnolia_02", "Not Set"}, + {"p_tree_magnolia_02_lg", "Not Set"}, + {"p_tree_magnolia_02_lg_os", "Not Set"}, + {"p_tree_magnolia_02_md", "Not Set"}, + {"p_tree_magnolia_02_vine", "Not Set"}, + {"p_tree_magnolia_03", "Not Set"}, + {"p_tree_magnolia_03_crt", "Not Set"}, + {"p_tree_magnolia_04", "Not Set"}, + {"p_tree_mangrove_02", "Not Set"}, + {"p_tree_mangrove_03", "Not Set"}, + {"p_tree_palm_fan_03a", "Not Set"}, + {"p_tree_palm_fan_04b", "Not Set"}, + {"p_tree_palm_fan_06", "Not Set"}, + {"p_tree_palm_fan_bea_03b", "Not Set"}, + {"p_tree_palm_fan_low_ba", "Not Set"}, + {"p_tree_palm_s_01a", "Not Set"}, + {"p_tree_palm_s_01d", "Not Set"}, + {"p_tree_palm_s_01e", "Not Set"}, + {"p_tree_palm_s_01f", "Not Set"}, + {"alp_rock_01", "Not Set"}, + {"alp_rock_02", "Not Set"}, + {"alp_rock_03", "Not Set"}, + {"alp_rock_04", "Not Set"}, + {"alp_rock_05", "Not Set"}, + {"alp_rock_06", "Not Set"}, + {"alp_rock_07", "Not Set"}, + {"alp_rock_08", "Not Set"}, + {"alp_rock_09", "Not Set"}, + {"alp_rock_10", "Not Set"}, + {"alp_rock_scree_01", "Not Set"}, + {"alp_rock_scree_02", "Not Set"}, + {"alp_rock_scree_03", "Not Set"}, + {"alp_rock_scree_04", "Not Set"}, + {"alp_rock_scree_05", "Not Set"}, + {"alp_rock_scree_06", "Not Set"}, + {"alp_rock_scree_sim_01", "Not Set"}, + {"alp_rock_scree_sim_02", "Not Set"}, + {"alp_rock_scree_sim_03", "Not Set"}, + {"alp_rock_scree_sim_04", "Not Set"}, + {"alp_rock_scree_sim_05", "Not Set"}, + {"alp_rock_scree_sim_06", "Not Set"}, + {"alp_rock_scree_sim_07", "Not Set"}, + {"alp_rock_scree_sim_08", "Not Set"}, + {"alp_rock_scree_sim_09", "Not Set"}, + {"alp_rock_scree_sim_10", "Not Set"}, + {"alp_rock_scree_sim_11", "Not Set"}, + {"bgv_rock_01", "Not Set"}, + {"bgv_rock_02", "Not Set"}, + {"bgv_rock_03", "Not Set"}, + {"bgv_rock_04", "Not Set"}, + {"bgv_rock_05", "Not Set"}, + {"bgv_rock_06", "Not Set"}, + {"bgv_rock_07", "Not Set"}, + {"bgv_rock_08", "Not Set"}, + {"bgv_rock_09", "Not Set"}, + {"bgv_rock_10", "Not Set"}, + {"bgv_rock_11", "Not Set"}, + {"bgv_rock_12", "Not Set"}, + {"bgv_rock_scree_01", "Not Set"}, + {"bgv_rock_scree_02", "Not Set"}, + {"bgv_rock_scree_03", "Not Set"}, + {"bgv_rock_scree_04", "Not Set"}, + {"bgv_rock_scree_05", "Not Set"}, + {"bgv_rock_scree_06", "Not Set"}, + {"bgv_rock_scree_sim_01", "Not Set"}, + {"bgv_rock_scree_sim_02", "Not Set"}, + {"bgv_rock_scree_sim_03", "Not Set"}, + {"bgv_rock_scree_sim_04", "Not Set"}, + {"bgv_rock_scree_sim_05", "Not Set"}, + {"bgv_rock_scree_sim_06", "Not Set"}, + {"bgv_rock_scree_sim_07", "Not Set"}, + {"bgv_rock_scree_sim_08", "Not Set"}, + {"bgv_rock_scree_sim_09", "Not Set"}, + {"bgv_rock_scree_sim_10", "Not Set"}, + {"bgv_rock_scree_sim_11", "Not Set"}, + {"bgv_rock_stones_aa", "Not Set"}, + {"bgv_rock_stones_ab", "Not Set"}, + {"cumb_rock_01", "Not Set"}, + {"cumb_rock_02", "Not Set"}, + {"cumb_rock_03", "Not Set"}, + {"cumb_rock_04", "Not Set"}, + {"cumb_rock_05", "Not Set"}, + {"cumb_rock_06", "Not Set"}, + {"cumb_rock_07", "Not Set"}, + {"cumb_rock_08", "Not Set"}, + {"cumb_rock_09", "Not Set"}, + {"cumb_rock_10", "Not Set"}, + {"cumb_rock_11", "Not Set"}, + {"cumb_rock_12", "Not Set"}, + {"cumb_rock_hero_01", "Not Set"}, + {"cumb_rock_scree_01", "Not Set"}, + {"cumb_rock_scree_02", "Not Set"}, + {"cumb_rock_scree_03", "Not Set"}, + {"cumb_rock_scree_04", "Not Set"}, + {"cumb_rock_scree_05", "Not Set"}, + {"cumb_rock_scree_06", "Not Set"}, + {"cumb_rock_scree_sim_01", "Not Set"}, + {"cumb_rock_scree_sim_02", "Not Set"}, + {"cumb_rock_scree_sim_03", "Not Set"}, + {"cumb_rock_scree_sim_04", "Not Set"}, + {"cumb_rock_scree_sim_05", "Not Set"}, + {"cumb_rock_scree_sim_06", "Not Set"}, + {"cumb_rock_scree_sim_07", "Not Set"}, + {"cumb_rock_scree_sim_08", "Not Set"}, + {"cumb_rock_scree_sim_09", "Not Set"}, + {"cumb_rock_scree_sim_10", "Not Set"}, + {"cumb_rock_scree_sim_11", "Not Set"}, + {"dak_rock_scree_stg1_01", "Not Set"}, + {"dak_rock_scree_stg1_02", "Not Set"}, + {"dak_rock_scree_stg1_03", "Not Set"}, + {"dak_rock_scree_stg1_04", "Not Set"}, + {"dak_rock_scree_stg1_05", "Not Set"}, + {"dak_rock_scree_stg1_06", "Not Set"}, + {"dak_rock_scree_stg2_01", "Not Set"}, + {"dak_rock_scree_stg2_02", "Not Set"}, + {"dak_rock_scree_stg2_03", "Not Set"}, + {"dak_rock_scree_stg2_04", "Not Set"}, + {"dak_rock_scree_stg2_05", "Not Set"}, + {"dak_rock_scree_stg2_06", "Not Set"}, + {"dak_rock_scree_stg345_01", "Not Set"}, + {"dak_rock_scree_stg345_02", "Not Set"}, + {"dak_rock_scree_stg345_03", "Not Set"}, + {"dak_rock_scree_stg345_04", "Not Set"}, + {"dak_rock_scree_stg345_05", "Not Set"}, + {"dak_rock_scree_stg345_06", "Not Set"}, + {"dak_rock_scree_stg345_sim_01", "Not Set"}, + {"dak_rock_scree_stg345_sim_02", "Not Set"}, + {"dak_rock_scree_stg345_sim_03", "Not Set"}, + {"dak_rock_scree_stg345_sim_04", "Not Set"}, + {"dak_rock_scree_stg345_sim_05", "Not Set"}, + {"dak_rock_scree_stg345_sim_06", "Not Set"}, + {"dak_rock_scree_stg345_sim_07", "Not Set"}, + {"dak_rock_scree_stg345_sim_08", "Not Set"}, + {"dak_rock_scree_stg345_sim_09", "Not Set"}, + {"dak_rock_scree_stg345_sim_10", "Not Set"}, + {"dak_rock_scree_stg345_sim_11", "Not Set"}, + {"dak_rock_shelve_stg345_01", "Not Set"}, + {"dak_rock_shelve_stg345_02", "Not Set"}, + {"dak_rock_shelve_stg345_03", "Not Set"}, + {"dak_rock_shelve_stg345_04", "Not Set"}, + {"dak_rock_shelve_stg345_05", "Not Set"}, + {"dak_rock_stg1_01", "Not Set"}, + {"dak_rock_stg1_02", "Not Set"}, + {"dak_rock_stg1_03", "Not Set"}, + {"dak_rock_stg1_04", "Not Set"}, + {"dak_rock_stg1_05", "Not Set"}, + {"dak_rock_stg1_06", "Not Set"}, + {"dak_rock_stg2_01", "Not Set"}, + {"dak_rock_stg2_02", "Not Set"}, + {"dak_rock_stg2_03", "Not Set"}, + {"dak_rock_stg2_04", "Not Set"}, + {"dak_rock_stg2_05", "Not Set"}, + {"dak_rock_stg2_06", "Not Set"}, + {"dak_rock_stg345_01", "Not Set"}, + {"dak_rock_stg345_010", "Not Set"}, + {"dak_rock_stg345_011", "Not Set"}, + {"dak_rock_stg345_012", "Not Set"}, + {"dak_rock_stg345_013", "Not Set"}, + {"dak_rock_stg345_014", "Not Set"}, + {"dak_rock_stg345_015", "Not Set"}, + {"dak_rock_stg345_016", "Not Set"}, + {"dak_rock_stg345_017", "Not Set"}, + {"dak_rock_stg345_018", "Not Set"}, + {"dak_rock_stg345_019", "Not Set"}, + {"dak_rock_stg345_02", "Not Set"}, + {"dak_rock_stg345_03", "Not Set"}, + {"dak_rock_stg345_04", "Not Set"}, + {"dak_rock_stg345_05", "Not Set"}, + {"dak_rock_stg345_06", "Not Set"}, + {"dak_rock_stg345_07", "Not Set"}, + {"dak_rock_stg345_08", "Not Set"}, + {"dak_rock_stg345_09", "Not Set"}, + {"grp_rock_01", "Not Set"}, + {"grp_rock_02", "Not Set"}, + {"grp_rock_03", "Not Set"}, + {"grp_rock_04", "Not Set"}, + {"grp_rock_05", "Not Set"}, + {"grp_rock_06", "Not Set"}, + {"grp_rock_07", "Not Set"}, + {"grp_rock_08", "Not Set"}, + {"grp_rock_09", "Not Set"}, + {"grp_rock_10", "Not Set"}, + {"grp_rock_11", "Not Set"}, + {"grp_rock_scree_01", "Not Set"}, + {"grp_rock_scree_02", "Not Set"}, + {"grp_rock_scree_03", "Not Set"}, + {"grp_rock_scree_04", "Not Set"}, + {"grp_rock_scree_05", "Not Set"}, + {"grp_rock_scree_06", "Not Set"}, + {"grp_rock_scree_sim_01", "Not Set"}, + {"grp_rock_scree_sim_02", "Not Set"}, + {"grp_rock_scree_sim_03", "Not Set"}, + {"grp_rock_scree_sim_04", "Not Set"}, + {"grp_rock_scree_sim_05", "Not Set"}, + {"grp_rock_scree_sim_06", "Not Set"}, + {"grp_rock_scree_sim_07", "Not Set"}, + {"grp_rock_scree_sim_08", "Not Set"}, + {"grp_rock_scree_sim_09", "Not Set"}, + {"grp_rock_scree_sim_10", "Not Set"}, + {"grp_rock_scree_sim_11", "Not Set"}, + {"grp_rock_stones_aa", "Not Set"}, + {"grp_rock_stones_ab", "Not Set"}, + {"gri_rock_01", "Not Set"}, + {"gri_rock_02", "Not Set"}, + {"gri_rock_03", "Not Set"}, + {"gri_rock_04", "Not Set"}, + {"gri_rock_05", "Not Set"}, + {"gri_rock_06", "Not Set"}, + {"gri_rock_07", "Not Set"}, + {"gri_rock_08", "Not Set"}, + {"gri_rock_09", "Not Set"}, + {"gri_rock_10", "Not Set"}, + {"gri_rock_scree_01", "Not Set"}, + {"gri_rock_scree_02", "Not Set"}, + {"gri_rock_scree_03", "Not Set"}, + {"gri_rock_scree_04", "Not Set"}, + {"gri_rock_scree_05", "Not Set"}, + {"gri_rock_scree_06", "Not Set"}, + {"gri_rock_scree_sim_01", "Not Set"}, + {"gri_rock_scree_sim_02", "Not Set"}, + {"gri_rock_scree_sim_03", "Not Set"}, + {"gri_rock_scree_sim_04", "Not Set"}, + {"gri_rock_scree_sim_05", "Not Set"}, + {"gri_rock_scree_sim_06", "Not Set"}, + {"gri_rock_scree_sim_07", "Not Set"}, + {"gri_rock_scree_sim_08", "Not Set"}, + {"gri_rock_scree_sim_09", "Not Set"}, + {"gri_rock_scree_sim_10", "Not Set"}, + {"gri_rock_scree_sim_11", "Not Set"}, + {"gri_rock_scree_snow_05", "Not Set"}, + {"gri_rock_scree_snow_06", "Not Set"}, + {"gri_rock_snow_01", "Not Set"}, + {"gri_rock_snow_02", "Not Set"}, + {"gri_rock_snow_03", "Not Set"}, + {"gri_rock_snow_04", "Not Set"}, + {"gri_rock_snow_05", "Not Set"}, + {"gri_rock_snow_06", "Not Set"}, + {"gri_rock_snow_07", "Not Set"}, + {"gri_rock_snow_08", "Not Set"}, + {"gri_rock_snow_09", "Not Set"}, + {"gri_rock_snow_10", "Not Set"}, + {"gua_rock_01", "Not Set"}, + {"gua_rock_02", "Not Set"}, + {"gua_rock_03", "Not Set"}, + {"gua_rock_04", "Not Set"}, + {"gua_rock_05", "Not Set"}, + {"gua_rock_06", "Not Set"}, + {"gua_rock_07", "Not Set"}, + {"gua_rock_08", "Not Set"}, + {"gua_rock_09", "Not Set"}, + {"gua_rock_10", "Not Set"}, + {"gua_rock_11", "Not Set"}, + {"gua_rock_12", "Not Set"}, + {"gua_rock_13", "Not Set"}, + {"gua_rock_14", "Not Set"}, + {"gua_rock_15", "Not Set"}, + {"gua_rock_scree_01", "Not Set"}, + {"gua_rock_scree_02", "Not Set"}, + {"gua_rock_scree_03", "Not Set"}, + {"gua_rock_scree_04", "Not Set"}, + {"gua_rock_scree_05", "Not Set"}, + {"gua_rock_scree_06", "Not Set"}, + {"gua_rock_scree_sim_01", "Not Set"}, + {"gua_rock_scree_sim_02", "Not Set"}, + {"gua_rock_scree_sim_03", "Not Set"}, + {"gua_rock_scree_sim_04", "Not Set"}, + {"gua_rock_scree_sim_05", "Not Set"}, + {"gua_rock_scree_sim_06", "Not Set"}, + {"gua_rock_stones_aa", "Not Set"}, + {"gua_rock_wall_ba", "Not Set"}, + {"gua_rock_wall_bb", "Not Set"}, + {"gua_rock_wall_bc", "Not Set"}, + {"gua_rock_wall_bd", "Not Set"}, + {"gua_rock_wall_be", "Not Set"}, + {"gua_rock_wall_bf", "Not Set"}, + {"gua_rock_wall_bg", "Not Set"}, + {"gua_rock_wall_bh", "Not Set"}, + {"gua_rock_wall_deb_aa", "Not Set"}, + {"gua_rock_wall_deb_ab", "Not Set"}, + {"gua_rock_wall_deb_ac", "Not Set"}, + {"gua_rubble_large_01", "Not Set"}, + {"gua_rubble_large_02", "Not Set"}, + {"gua_rubble_rock_01", "Not Set"}, + {"gua_rubble_rock_02", "Not Set"}, + {"gua_rubble_rock_03", "Not Set"}, + {"gua_rubble_rock_04", "Not Set"}, + {"hea_rock_01", "Not Set"}, + {"hea_rock_02", "Not Set"}, + {"hea_rock_03", "Not Set"}, + {"hea_rock_04", "Not Set"}, + {"hea_rock_05", "Not Set"}, + {"hea_rock_06", "Not Set"}, + {"hea_rock_07", "Not Set"}, + {"hea_rock_08", "Not Set"}, + {"hea_rock_09", "Not Set"}, + {"hea_rock_scree_01", "Not Set"}, + {"hea_rock_scree_02", "Not Set"}, + {"hea_rock_scree_03", "Not Set"}, + {"hea_rock_scree_04", "Not Set"}, + {"hea_rock_scree_05", "Not Set"}, + {"hea_rock_scree_06", "Not Set"}, + {"hea_rock_scree_sim_01", "Not Set"}, + {"hea_rock_scree_sim_02", "Not Set"}, + {"hea_rock_scree_sim_03", "Not Set"}, + {"hea_rock_scree_sim_04", "Not Set"}, + {"hea_rock_scree_sim_05", "Not Set"}, + {"hea_rock_scree_sim_06", "Not Set"}, + {"hea_rock_scree_sim_07", "Not Set"}, + {"hea_rock_scree_sim_08", "Not Set"}, + {"hea_rock_scree_sim_09", "Not Set"}, + {"hea_rock_scree_sim_10", "Not Set"}, + {"hea_rock_scree_sim_11", "Not Set"}, + {"hea_rock_stones_aa", "Not Set"}, + {"hea_rock_stones_ab", "Not Set"}, + {"gap_rock_01", "Not Set"}, + {"gap_rock_02", "Not Set"}, + {"gap_rock_03", "Not Set"}, + {"gap_rock_04", "Not Set"}, + {"gap_rock_05", "Not Set"}, + {"gap_rock_06", "Not Set"}, + {"gap_rock_07", "Not Set"}, + {"gap_rock_08", "Not Set"}, + {"gap_rock_09", "Not Set"}, + {"old_hen_rock_01", "Not Set"}, + {"old_hen_rock_02", "Not Set"}, + {"old_hen_rock_03", "Not Set"}, + {"old_hen_rock_04", "Not Set"}, + {"old_hen_rock_05", "Not Set"}, + {"old_hen_rock_06", "Not Set"}, + {"old_hen_rock_07", "Not Set"}, + {"old_hen_rock_08", "Not Set"}, + {"old_hen_rock_09", "Not Set"}, + {"old_hen_rock_10", "Not Set"}, + {"old_hen_rock_11", "Not Set"}, + {"old_hen_rock_scree_01", "Not Set"}, + {"old_hen_rock_scree_02", "Not Set"}, + {"old_hen_rock_scree_03", "Not Set"}, + {"old_hen_rock_scree_04", "Not Set"}, + {"old_hen_rock_scree_05", "Not Set"}, + {"old_hen_rock_scree_06", "Not Set"}, + {"old_hen_rock_scree_sim_01", "Not Set"}, + {"old_hen_rock_scree_sim_02", "Not Set"}, + {"old_hen_rock_scree_sim_03", "Not Set"}, + {"old_hen_rock_scree_sim_04", "Not Set"}, + {"old_hen_rock_scree_sim_05", "Not Set"}, + {"old_hen_rock_scree_sim_06", "Not Set"}, + {"old_hen_rock_scree_sim_07", "Not Set"}, + {"old_hen_rock_scree_sim_08", "Not Set"}, + {"old_hen_rock_scree_sim_09", "Not Set"}, + {"old_hen_rock_scree_sim_10", "Not Set"}, + {"old_hen_rock_scree_sim_11", "Not Set"}, + {"rio_red_rock_01", "Not Set"}, + {"rio_red_rock_02", "Not Set"}, + {"rio_red_rock_03", "Not Set"}, + {"rio_red_rock_04", "Not Set"}, + {"rio_red_rock_05", "Not Set"}, + {"rio_red_rock_06", "Not Set"}, + {"rio_red_rock_07", "Not Set"}, + {"rio_red_rock_08", "Not Set"}, + {"rio_red_rock_08_l3", "Not Set"}, + {"rio_red_rock_09", "Not Set"}, + {"t", "Not Set"}, + {"roa_rock_01", "Not Set"}, + {"roa_rock_01a", "Not Set"}, + {"roa_rock_02", "Not Set"}, + {"roa_rock_03", "Not Set"}, + {"roa_rock_04", "Not Set"}, + {"roa_rock_05", "Not Set"}, + {"roa_rock_06", "Not Set"}, + {"roa_rock_07", "Not Set"}, + {"roa_rock_08", "Not Set"}, + {"roa_rock_10", "Not Set"}, + {"roa_rock_11", "Not Set"}, + {"roa_rock_hero_01", "Not Set"}, + {"roa_rock_hero_02", "Not Set"}, + {"roa_rock_hero_03", "Not Set"}, + {"roa_rock_hero_04", "Not Set"}, + {"roa_rock_hero_05", "Not Set"}, + {"roa_rock_scree_01", "Not Set"}, + {"roa_rock_scree_02", "Not Set"}, + {"roa_rock_scree_02a", "Not Set"}, + {"roa_rock_scree_03", "Not Set"}, + {"roa_rock_scree_04", "Not Set"}, + {"roa_rock_scree_05", "Not Set"}, + {"roa_rock_scree_06", "Not Set"}, + {"roa_rock_scree_06a", "Not Set"}, + {"roa_rock_scree_07", "Not Set"}, + {"roa_rock_scree_sim_01", "Not Set"}, + {"roa_rock_scree_sim_02", "Not Set"}, + {"roa_rock_scree_sim_03", "Not Set"}, + {"roa_rock_scree_sim_04", "Not Set"}, + {"roa_rock_scree_sim_05", "Not Set"}, + {"roa_rock_scree_sim_06", "Not Set"}, + {"roa_rock_scree_sim_07", "Not Set"}, + {"roa_rock_scree_sim_08", "Not Set"}, + {"roa_rock_scree_sim_09", "Not Set"}, + {"roa_rock_scree_sim_10", "Not Set"}, + {"roa_rock_scree_sim_11", "Not Set"}, + {"roa_rock_stones_ab", "Not Set"}, + {"sca_rock_01", "Not Set"}, + {"sca_rock_02", "Not Set"}, + {"sca_rock_03", "Not Set"}, + {"sca_rock_04", "Not Set"}, + {"sca_rock_05", "Not Set"}, + {"sca_rock_06", "Not Set"}, + {"sca_rock_07", "Not Set"}, + {"sca_rock_08", "Not Set"}, + {"sca_rock_09", "Not Set"}, + {"sca_rock_10", "Not Set"}, + {"sca_rock_11", "Not Set"}, + {"sca_rock_scree_01", "Not Set"}, + {"sca_rock_scree_02", "Not Set"}, + {"sca_rock_scree_03", "Not Set"}, + {"sca_rock_scree_04", "Not Set"}, + {"sca_rock_scree_05", "Not Set"}, + {"sca_rock_scree_06", "Not Set"}, + {"sca_rock_scree_sim_01", "Not Set"}, + {"sca_rock_scree_sim_02", "Not Set"}, + {"sca_rock_scree_sim_03", "Not Set"}, + {"sca_rock_scree_sim_04", "Not Set"}, + {"sca_rock_scree_sim_05", "Not Set"}, + {"sca_rock_scree_sim_06", "Not Set"}, + {"sca_rock_scree_sim_07", "Not Set"}, + {"sca_rock_scree_sim_08", "Not Set"}, + {"sca_rock_scree_sim_09", "Not Set"}, + {"sca_rock_scree_sim_10", "Not Set"}, + {"sca_rock_scree_sim_11", "Not Set"}, + {"sca_rock_shelve_01", "Not Set"}, + {"sca_rock_shelve_02", "Not Set"}, + {"sca_rock_shelve_03", "Not Set"}, + {"sca_rock_shelve_04", "Not Set"}, + {"sca_rock_shelve_05", "Not Set"}, + {"tal_rock_01", "Not Set"}, + {"tal_rock_02", "Not Set"}, + {"tal_rock_03", "Not Set"}, + {"tal_rock_04", "Not Set"}, + {"tal_rock_05", "Not Set"}, + {"tal_rock_06", "Not Set"}, + {"tal_rock_07", "Not Set"}, + {"tal_rock_08", "Not Set"}, + {"tal_rock_09", "Not Set"}, + {"tal_rock_10", "Not Set"}, + {"tal_rock_11", "Not Set"}, + {"tal_rock_12", "Not Set"}, + {"tal_rock_scree_01", "Not Set"}, + {"tal_rock_scree_02", "Not Set"}, + {"tal_rock_scree_03", "Not Set"}, + {"tal_rock_scree_04", "Not Set"}, + {"tal_rock_scree_05", "Not Set"}, + {"tal_rock_scree_06", "Not Set"}, + {"tal_rock_scree_sim_01", "Not Set"}, + {"tal_rock_scree_sim_02", "Not Set"}, + {"tal_rock_scree_sim_03", "Not Set"}, + {"tal_rock_scree_sim_04", "Not Set"}, + {"tal_rock_scree_sim_05", "Not Set"}, + {"tal_rock_scree_sim_06", "Not Set"}, + {"tal_rock_scree_sim_07", "Not Set"}, + {"tal_rock_scree_sim_08", "Not Set"}, + {"tal_rock_scree_sim_09", "Not Set"}, + {"tal_rock_scree_sim_10", "Not Set"}, + {"tal_rock_scree_sim_11", "Not Set"}, + {"p_tree_apple_01", "Not Set"}, + {"p_tree_burntstump_01", "Not Set"}, + {"p_tree_burntstump_03", "Not Set"}, + {"p_tree_hickory_01", "Not Set"}, + {"p_tree_hickory_02", "Not Set"}, + {"p_tree_orange_01", "Not Set"}, + {"p_tree_pine_newburnt_01", "Not Set"}, + {"p_tree_pine_newburnt_02", "Not Set"}, + {"p_tree_pine_newburnt_03", "Not Set"}, + {"p_tree_pine_newburnt_04", "Not Set"}, + {"p_tree_pine_newburnt_log_01", "Not Set"}, + {"p_tree_pine_newburnt_log_02", "Not Set"}, + {"rdr_weed_alligator_dead_w_aa", "Not Set"}, + {"rdr_weed_alligator_dead_w_ab", "Not Set"}, + {"rdr_weed_alligator_w_aa", "Not Set"}, + {"rdr_weed_alligator_w_ab", "Not Set"}, + {"rdr_weed_brush_aa", "Not Set"}, + {"rdr_weed_brush_aa_sim", "Not Set"}, + {"rdr_weed_brush_ab", "Not Set"}, + {"rdr_weed_brush_ac", "Not Set"}, + {"rdr_weed_brush_ivy_ba_sim", "Not Set"}, + {"rdr_weed_cat_tail_ba", "Not Set"}, + {"rdr_weed_cat_tail_bc", "Not Set"}, + {"rdr_weed_clover_aa", "Not Set"}, + {"rdr_weed_clover_ab", "Not Set"}, + {"rdr_weed_clover_wht_aa", "Not Set"}, + {"rdr_weed_dandy_aa", "Not Set"}, + {"rdr_weed_dandy_wht_aa", "Not Set"}, + {"rdr_weed_dandy_yel_aa", "Not Set"}, + {"rdr_weed_dry_aa", "Not Set"}, + {"rdr_weed_drymix_aa", "Not Set"}, + {"rdr_weed_drymix_ba", "Not Set"}, + {"rdr_weed_duck_dead_w_aa", "Not Set"}, + {"rdr_weed_green_aa", "Not Set"}, + {"rdr_weed_greenmix_ca", "Not Set"}, + {"rdr_weed_greenmix_da", "Not Set"}, + {"rdr_weed_greenmix_tall_aa", "Not Set"}, + {"rdr_weed_greenmix_tall_ab", "Not Set"}, + {"rdr_weed_green_tall_aa", "Not Set"}, + {"rdr_weed_green_tall_ba", "Not Set"}, + {"rdr_weed_grnd_cvr_aa", "Not Set"}, + {"rdr_weed_grnd_cvr_ab", "Not Set"}, + {"rdr_weed_grnd_cvr_ba", "Not Set"}, + {"rdr_weed_hya_dead_w_aa", "Not Set"}, + {"rdr_weed_hya_w_aa", "Not Set"}, + {"rdr_weed_ivy_aa", "Not Set"}, + {"rdr_weed_ivy_aa_sim", "Not Set"}, + {"rdr_weed_ivy_ba", "Not Set"}, + {"rdr_weed_ivy_ca", "Not Set"}, + {"rdr_weed_ivy_crt_aa", "Not Set"}, + {"rdr_weed_ivy_crt_ab", "Not Set"}, + {"rdr_weed_ivy_crt_ac", "Not Set"}, + {"rdr_weed_ivy_crt_ad", "Not Set"}, + {"rdr_weed_ivy_crt_ae", "Not Set"}, + {"rdr_weed_ivy_crt_af", "Not Set"}, + {"rdr_weed_ivy_crt_ag", "Not Set"}, + {"rdr_weed_ivy_crt_ah", "Not Set"}, + {"rdr_weed_ivy_crt_ai", "Not Set"}, + {"rdr_weed_ivy_crt_aj", "Not Set"}, + {"rdr_weed_ivy_da", "Not Set"}, + {"rdr_weed_ivy_fern_aa", "Not Set"}, + {"rdr_weed_ivy_mush_aa", "Not Set"}, + {"rdr_weed_ivy_tall_aa", "Not Set"}, + {"rdr_weed_lilpad_dead_w_aa", "Not Set"}, + {"rdr_weed_lilpad_w_aa", "Not Set"}, + {"rdr_weed_lilval_ab", "Not Set"}, + {"rdr_weed_mix_aa", "Not Set"}, + {"rdr_weed_mix_dead_aa", "Not Set"}, + {"rdr_weed_plantmix_aa", "Not Set"}, + {"rdr_weed_set_aa", "Not Set"}, + {"rdr_weed_set_ab", "Not Set"}, + {"rdr_weed_set_ac", "Not Set"}, + {"rdr_weed_strip_aa", "Not Set"}, + {"rdr_weed_strip_ab", "Not Set"}, + {"rdr_weed_strip_ac", "Not Set"}, + {"rdr_weed_strip_ad", "Not Set"}, + {"rdr_weed_strip_ae", "Not Set"}, + {"rdr_weed_strip_af", "Not Set"}, + {"rdr_weed_strip_ag", "Not Set"}, + {"rdr_weed_strip_ah", "Not Set"}, + {"rdr_weed_strip_ai", "Not Set"}, + {"rdr_weed_strip_aj", "Not Set"}, + {"rdr_weed_strip_ak", "Not Set"}, + {"rdr_weed_strip_al", "Not Set"}, + {"rdr_weed_strip_dead_aa", "Not Set"}, + {"rdr_weed_strip_dead_ab", "Not Set"}, + {"rdr_weed_strip_dead_ac", "Not Set"}, + {"rdr_weed_strip_dead_ad", "Not Set"}, + {"rdr_weed_strip_dead_ae", "Not Set"}, + {"rdr_weed_strip_dead_af", "Not Set"}, + {"rdr_weed_strip_dead_ag", "Not Set"}, + {"rdr_weed_strip_dead_ah", "Not Set"}, + {"rdr_weed_strip_dead_ai", "Not Set"}, + {"rdr_weed_strip_dead_aj", "Not Set"}, + {"rdr_weed_strip_dead_ak", "Not Set"}, + {"rdr_weed_strip_dead_al", "Not Set"}, + {"rdr_weed_strip_dead_am", "Not Set"}, + {"rdr_weed_strip_dead_an", "Not Set"}, + {"rdr_weed_tall_reeds_bashad", "Not Set"}, + {"rdr_weed_tall_reeds_ba_sim", "Not Set"}, + {"rdr_weed_tall_reeds_ca_sim", "Not Set"}, + {"rdr_weed_white_aa", "Not Set"}, + {"rdr_weed_yellow_aa", "Not Set"}, + {"p_sap_cypress_aa_sim", "Not Set"}, + {"p_sap_cypress_ab_sim", "Not Set"}, + {"p_sap_palmetto_aa_sim", "Not Set"}, + {"p_sap_palmetto_ab_sim", "Not Set"}, + {"p_sap_palmetto_ac_sim", "Not Set"}, + {"p_tree_baldcypress_01a", "Not Set"}, + {"p_tree_baldcypress_01a_os", "Not Set"}, + {"p_tree_baldcypress_01_dead", "Not Set"}, + {"p_tree_baldcypress_02", "Not Set"}, + {"p_tree_baldcypress_02_os", "Not Set"}, + {"p_tree_baldcypress_02_sm_a", "Not Set"}, + {"p_tree_baldcypress_03", "Not Set"}, + {"p_tree_baldcypress_03_dead", "Not Set"}, + {"p_tree_baldcypress_03_script", "Not Set"}, + {"p_tree_baldcypress_04a", "Not Set"}, + {"p_tree_baldcypress_04_dead", "Not Set"}, + {"p_tree_baldcypress_04_sm_a", "Not Set"}, + {"p_tree_baldcypress_05", "Not Set"}, + {"p_tree_baldcypress_05a", "Not Set"}, + {"p_tree_baldcypress_05_sm_a", "Not Set"}, + {"p_tree_baldcypress_06a", "Not Set"}, + {"p_tree_baldcypress_06b", "Not Set"}, + {"p_tree_baldcypress_07", "Not Set"}, + {"p_tree_baldcypress_grave", "Not Set"}, + {"p_tree_baldcypress_knees_01", "Not Set"}, + {"p_tree_baldcypress_knees_02", "Not Set"}, + {"p_tree_branch_01_swamp", "Not Set"}, + {"p_tree_branch_02_swamp", "Not Set"}, + {"p_tree_log_01_swamp", "Not Set"}, + {"p_tree_log_01_swamp_sim", "Not Set"}, + {"p_tree_stump_01_swamp", "Not Set"}, + {"p_tree_stump_02_swamp", "Not Set"}, + {"mp001_armor_ncoalcar01x", "Not Set"}, + {"mp001_armor_nsteamer01x", "Not Set"}, + {"mp001_armor_privflatcar01x", "Not Set"}, + {"mp001_p_genlrg01x", "Not Set"}, + {"mp001_p_genmed03x", "Not Set"}, + {"mp001_p_wagon01x", "Not Set"}, + {"mp005_p_veh_tg01x_cart06_lrg", "Not Set"}, + {"mp005_p_veh_tg01x_cart06_med", "Not Set"}, + {"mp005_p_veh_tg01x_cart06_sml", "Not Set"}, + {"mp005_p_veh_tg01x_cart08_lrg", "Not Set"}, + {"mp005_p_veh_tg01x_cart08_med", "Not Set"}, + {"mp005_p_veh_tg01x_cart08_sml", "Not Set"}, + {"mp005_p_veh_tg01x_gatchuck_lrg", "Not Set"}, + {"mp005_p_veh_tg01x_gatchuck_med", "Not Set"}, + {"mp005_p_veh_tg01x_gatchuck_sml", "Not Set"}, + {"p_clothprotest01x", "Not Set"}, + {"pg_mission_native2", "Not Set"}, + {"p_haybale01x_shad", "Not Set"}, + {"p_haybalestack03x_shad", "Not Set"}, + {"p_haybalestack03x_shad001", "Not Set"}, + {"p_mis_train4_car03", "Not Set"}, + {"p_mis_train4_car03_cloth", "Not Set"}, + {"p_mis_train4_car03_decal", "Not Set"}, + {"p_mis_train4_car03_low", "Not Set"}, + {"p_mis_train4_car05", "Not Set"}, + {"p_mis_train4_car05_decal", "Not Set"}, + {"p_mis_train4_car05_low", "Not Set"}, + {"p_mis_train4_car07", "Not Set"}, + {"p_mis_train4_car07_decal", "Not Set"}, + {"p_mis_train4_car07_low", "Not Set"}, + {"p_mis_train4_car10", "Not Set"}, + {"p_mis_train4_car10_decal", "Not Set"}, + {"p_mis_train4_car10_low", "Not Set"}, + {"p_mis_train4_car13", "Not Set"}, + {"p_mis_train4_car13_decal", "Not Set"}, + {"p_mis_train4_car13_low", "Not Set"}, + {"p_mis_train4_car15_decal", "Not Set"}, + {"p_mis_train4_car15_part1", "Not Set"}, + {"p_mis_train4_car15_part1_low", "Not Set"}, + {"p_mis_train4_car15_part2", "Not Set"}, + {"p_mis_train4_car15_part2_low", "Not Set"}, + {"p_mis_train4_car17", "Not Set"}, + {"p_mis_train4_car17_decal", "Not Set"}, + {"p_mis_train4_car17_low", "Not Set"}, + {"p_mis_winter4_car03_decal", "Not Set"}, + {"p_mis_winter4_car07", "Not Set"}, + {"p_mis_winter4_car07_decal", "Not Set"}, + {"p_mis_winter4_car07_low", "Not Set"}, + {"p_moonshinebiz02x_cart03", "Not Set"}, + {"p_pg_vehload_livestock01", "Not Set"}, + {"p_rc_exconfederates1_01x", "Not Set"}, + {"p_rc_exconfederates1_02x", "Not Set"}, + {"p_sign_protestwag01x", "Not Set"}, + {"p_veh_beaunpene201x", "Not Set"}, + {"p_veh_boatsteam02x_1", "Not Set"}, + {"p_veh_brakes01x", "Not Set"}, + {"p_veh_canoe01x", "Not Set"}, + {"p_veh_canoe02x", "Not Set"}, + {"p_veh_chuckwagon00x_1", "Not Set"}, + {"p_veh_flatcar02x", "Not Set"}, + {"p_veh_flatcar02x_low", "Not Set"}, + {"p_veh_horseboat_1b", "Not Set"}, + {"p_veh_keelboat01x", "Not Set"}, + {"p_veh_keelboat02x", "Not Set"}, + {"p_veh_keelboat03x", "Not Set"}, + {"p_veh_load_crates01", "Not Set"}, + {"p_veh_moonshinesupplies01x", "Not Set"}, + {"p_veh_pg_delivery_coal01x", "Not Set"}, + {"p_veh_pg_mis_mud_jackw01x", "Not Set"}, + {"p_veh_pg_mis_mud_wag2", "Not Set"}, + {"p_veh_pg_mission_mud1_wag1", "Not Set"}, + {"p_veh_pg_re_wagonlift1", "Not Set"}, + {"p_veh_pg_veh_cart01_2_01x", "Not Set"}, + {"p_veh_pg_veh_nbdguama_01x", "Not Set"}, + {"p_veh_pg_veh_ship_01x", "Not Set"}, + {"p_veh_pg_veh_tboat_1", "Not Set"}, + {"p_veh_pg_vl_blacksmith01x", "Not Set"}, + {"p_veh_pg_vl_butcher01x", "Not Set"}, + {"p_veh_pg_vl_craftsman01x", "Not Set"}, + {"p_veh_pg_vl_delivery01", "Not Set"}, + {"p_veh_pg_vl_esco1x", "Not Set"}, + {"p_veh_pg_vl_esco1x_low", "Not Set"}, + {"p_veh_pg_vl_farmer01x", "Not Set"}, + {"p_veh_pg_vl_farmer0201x", "Not Set"}, + {"p_veh_pg_vl_ferrier01x", "Not Set"}, + {"p_veh_pg_vl_fisherman01x", "Not Set"}, + {"p_veh_pg_vl_hunter01", "Not Set"}, + {"p_veh_pg_vl_mi_mary3_1", "Not Set"}, + {"p_veh_pg_vl_mis_fe_hayb", "Not Set"}, + {"p_veh_pg_vl_mis_fe_hayb_low", "Not Set"}, + {"p_veh_pg_vl_mis_mud_w3", "Not Set"}, + {"p_veh_pg_vl_mov_fami01", "Not Set"}, + {"p_veh_pg_vl_odriscoll01x", "Not Set"}, + {"p_veh_pg_vl_rancher01", "Not Set"}, + {"p_veh_pg_vl_rancher02", "Not Set"}, + {"p_veh_pg_vl_rancher03", "Not Set"}, + {"p_veh_pg_vl_rancher04", "Not Set"}, + {"p_veh_pg_vl_rancher05", "Not Set"}, + {"p_veh_pg_vl_t_labour01x", "Not Set"}, + {"p_veh_pg_vl_tradesman01x", "Not Set"}, + {"p_veh_pg_vl_tradesman02x", "Not Set"}, + {"p_veh_pg_vl_tradesman03x", "Not Set"}, + {"p_veh_pg_vl_tradesman04", "Not Set"}, + {"p_veh_pg_vl_traic3_nlt", "Not Set"}, + {"p_veh_pg_vl_train1", "Not Set"}, + {"p_veh_pg_vl_train1_low", "Not Set"}, + {"p_veh_pg_vl_train1_nlt", "Not Set"}, + {"p_veh_pg_vl_train1_nlt_low", "Not Set"}, + {"p_veh_pg_vl_trainc2_nt", "Not Set"}, + {"p_veh_pg_vl_trainc2_nt_low", "Not Set"}, + {"p_veh_pg_vl_traincar02x", "Not Set"}, + {"p_veh_pg_vl_traincar02x_low", "Not Set"}, + {"p_veh_pirogue01x", "Not Set"}, + {"p_veh_pirogue01x_b", "Not Set"}, + {"p_veh_railrosdsupplies01", "Not Set"}, + {"p_veh_railrosdsupplies01_low", "Not Set"}, + {"p_veh_rowboat01x", "Not Set"}, + {"p_veh_rowboat02x", "Not Set"}, + {"p_veh_rowboatswamp01x", "Not Set"}, + {"p_veh_rowboatswamp02x", "Not Set"}, + {"p_veh_ship_nbdguama2_01x", "Not Set"}, + {"p_veh_sugarcane01x", "Not Set"}, + {"p_veh_toolrack01x", "Not Set"}, + {"p_veh_toolrack02x", "Not Set"}, + {"p_veh_traincar02x_noloot2", "Not Set"}, + {"p_veh_traincar02x_noloot2_low", "Not Set"}, + {"p_veh_trainrob4_08_lights", "Not Set"}, + {"p_veh_trainrob4_08_med01x", "Not Set"}, + {"p_veh_trainrob4_car14", "Not Set"}, + {"p_veh_trainrob4_car16", "Not Set"}, + {"p_veh_travelingfam01x", "Not Set"}, + {"p_veh_wheelhub01x", "Not Set"}, + {"p_armoredcar01x_interior", "Not Set"}, + {"p_armoredcar03x_interior", "Not Set"}, + {"p_baggage01x", "Not Set"}, + {"p_baggage01x_amb01x", "Not Set"}, + {"p_baggage01x_interior", "Not Set"}, + {"p_baggage01x_mud01x", "Not Set"}, + {"p_baggage01x_tre01x", "Not Set"}, + {"p_baggage01x_tre02x", "Not Set"}, + {"p_baggage01x_tre_interior", "Not Set"}, + {"p_blind_norpass3_01x", "Not Set"}, + {"p_bookend01x_train", "Not Set"}, + {"p_boxcar01x_interior", "Not Set"}, + {"p_boxcar02x_holdup_prop01x", "Not Set"}, + {"p_boxcar02x_interior", "Not Set"}, + {"p_boxcar03x_extra01", "Not Set"}, + {"p_boxcar03x_interior", "Not Set"}, + {"p_boxcar04x_boxes01x", "Not Set"}, + {"p_boxcar04x_interior", "Not Set"}, + {"p_boxcar05x_interior", "Not Set"}, + {"p_boxcar_barrel_02a", "Not Set"}, + {"p_boxcar_barrel_09a", "Not Set"}, + {"p_boxcar_barrelcrate01", "Not Set"}, + {"p_boxcar_cratecover05", "Not Set"}, + {"p_boxcar_cratecover09", "Not Set"}, + {"p_boxcar_crates01x", "Not Set"}, + {"p_boxcar_empty_pset_low", "Not Set"}, + {"p_boxcar_feud1_00x_pset_low", "Not Set"}, + {"p_boxcar_feud1_01x_pset_low", "Not Set"}, + {"p_boxcar_feud1_02x_pset_low", "Not Set"}, + {"p_boxcar_rob4_03x_shelves", "Not Set"}, + {"p_boxcar_rob4_04x_tarps", "Not Set"}, + {"p_boxcar_rob4_crates01x", "Not Set"}, + {"p_boxcar_rob4_militarylabel", "Not Set"}, + {"p_boxcar_win4_01x_pset_low", "Not Set"}, + {"p_boxcar_win4_02x_pset_low", "Not Set"}, + {"p_boxcar_winter04_brand", "Not Set"}, + {"p_boxcar_winter04_brand2", "Not Set"}, + {"p_boxcar_winter4_01x", "Not Set"}, + {"p_boxcar_winter4_02x", "Not Set"}, + {"p_caboose01x_holdup_pset_low", "Not Set"}, + {"p_caboose01x_interior", "Not Set"}, + {"p_caboose01x_pset_low", "Not Set"}, + {"p_caboose02x_interior", "Not Set"}, + {"p_caboose02x_pset_low", "Not Set"}, + {"p_caboose03x_blind01x", "Not Set"}, + {"p_caboose03x_interior", "Not Set"}, + {"p_caboose03x_pset_low", "Not Set"}, + {"p_caboose_window01x", "Not Set"}, + {"p_caboose_window02x", "Not Set"}, + {"p_caboose_window03x", "Not Set"}, + {"p_chair_privatedining01x", "Not Set"}, + {"p_door_feud1_box00x", "Not Set"}, + {"p_door_feud1_box01x", "Not Set"}, + {"p_door_feud1_box02x", "Not Set"}, + {"p_door_mub3b_baggage01x", "Not Set"}, + {"p_door_norpass01x", "Not Set"}, + {"p_door_norpass03x", "Not Set"}, + {"p_door_private01x", "Not Set"}, + {"p_door_privatebaggage01x", "Not Set"}, + {"p_door_privaterooms01ax", "Not Set"}, + {"p_door_privaterooms01bx", "Not Set"}, + {"p_door_privaterooms01cx", "Not Set"}, + {"p_door_pvtroom1a", "Not Set"}, + {"p_door_pvtroom2a", "Not Set"}, + {"p_door_pvtroom3a", "Not Set"}, + {"p_door_tre2_caboose01x", "Not Set"}, + {"pg_veh_boxcar01x_low", "Not Set"}, + {"pg_veh_boxcar02x_holdup_low", "Not Set"}, + {"pg_veh_boxcar02x_low", "Not Set"}, + {"pg_veh_boxcar03x_low", "Not Set"}, + {"pg_veh_boxcar04x_low", "Not Set"}, + {"pg_veh_boxcar05x_low", "Not Set"}, + {"pg_veh_trainrob4_car08_low", "Not Set"}, + {"pg_veh_trainrob4_car14_low", "Not Set"}, + {"pg_veh_trainrob4_car16_low", "Not Set"}, + {"p_hanginfrefrigeratormeats", "Not Set"}, + {"p_hangingpan02x", "Not Set"}, + {"p_hangingshovel01x", "Not Set"}, + {"p_hangingshovel03x", "Not Set"}, + {"p_hangingsledgehammer01x", "Not Set"}, + {"p_hangingumbrella01x", "Not Set"}, + {"p_norpasholdup_prop1_pset_low", "Not Set"}, + {"p_norpass01x_holdup_prop1x", "Not Set"}, + {"p_norpass01x_interior", "Not Set"}, + {"p_norpass03x_interior", "Not Set"}, + {"p_norpass03x_interior_low", "Not Set"}, + {"p_norpass_up01x_interior", "Not Set"}, + {"p_norpass_up01x_pset_low", "Not Set"}, + {"p_norpass_up01x_seat01x", "Not Set"}, + {"p_opensleeper_bed01x", "Not Set"}, + {"p_opensleeper_cratestnt01x", "Not Set"}, + {"p_opensleeper_cratetnt01x", "Not Set"}, + {"p_opensleeper_furniture01x", "Not Set"}, + {"p_opensleeper_interior", "Not Set"}, + {"p_opensleeper_pset_low", "Not Set"}, + {"p_opensleeper_seat01x", "Not Set"}, + {"p_opensleeper_tre2_bed01", "Not Set"}, + {"p_opensleeper_tre2_curt1x", "Not Set"}, + {"p_opensleeper_tre2_curt2x", "Not Set"}, + {"p_opensleeper_tre2_int", "Not Set"}, + {"p_opensleeper_tre2_pset_low", "Not Set"}, + {"p_opensleeper_tre2_seat01x", "Not Set"}, + {"p_privatearmoured01x_interior", "Not Set"}, + {"p_privatearmoured_curtains", "Not Set"}, + {"p_privatearmoured_detail1", "Not Set"}, + {"p_privatearmoured_detail2", "Not Set"}, + {"p_privatearmoured_pset_low", "Not Set"}, + {"p_privatearmoured_windr", "Not Set"}, + {"p_privatedining_interior", "Not Set"}, + {"p_privatedining_pset_low", "Not Set"}, + {"p_privatelounge_chair01x", "Not Set"}, + {"p_privatelounge_curtain01x", "Not Set"}, + {"p_privatelounge_int", "Not Set"}, + {"p_privatelounge_pset_low", "Not Set"}, + {"p_privatelounge_table01x", "Not Set"}, + {"p_privatelounge_table02x", "Not Set"}, + {"p_privateobs01x_interior", "Not Set"}, + {"p_privateobs_curtain", "Not Set"}, + {"p_privateobs_cushion01x", "Not Set"}, + {"p_privateobs_pset_low", "Not Set"}, + {"p_privateobs_window01x", "Not Set"}, + {"p_privaterooms_curtains", "Not Set"}, + {"p_privaterooms_cushion01x", "Not Set"}, + {"p_privaterooms_interior", "Not Set"}, + {"p_privaterooms_pset_low", "Not Set"}, + {"p_refrigerator_interior", "Not Set"}, + {"p_refrigerator_meat01x", "Not Set"}, + {"p_refrigerator_meat02x", "Not Set"}, + {"p_refrigerator_meat03x", "Not Set"}, + {"p_refrigerator_meat04x", "Not Set"}, + {"p_refrigerator_pset_low", "Not Set"}, + {"p_seatsnorpass01_x", "Not Set"}, + {"p_seatsnorpass01x", "Not Set"}, + {"p_seatsnorpass01x_1_pset_low", "Not Set"}, + {"p_seatsnorpass01x_pset_low", "Not Set"}, + {"p_seatsnorpass01x_pset_med", "Not Set"}, + {"p_seatsnorpass02_x", "Not Set"}, + {"p_seatsnorpass02x", "Not Set"}, + {"p_seatsnorpass03_x", "Not Set"}, + {"p_seatsnorpass03x", "Not Set"}, + {"p_seatsnorpass_upper01x", "Not Set"}, + {"p_sidetable01x_norpass01x", "Not Set"}, + {"p_sidetable18x_privateobs", "Not Set"}, + {"p_sidetable20x_norpass01x", "Not Set"}, + {"p_table01x_norpass03x", "Not Set"}, + {"p_table_privatedining01x", "Not Set"}, + {"p_veh_armoredcar01x_low", "Not Set"}, + {"p_veh_armoredcar03x_low", "Not Set"}, + {"p_veh_baggage01x_amb_low", "Not Set"}, + {"p_veh_baggage01x_low", "Not Set"}, + {"p_veh_baggage01x_mud_low", "Not Set"}, + {"p_veh_baggage01x_tre_low", "Not Set"}, + {"p_veh_bookscornwall01x", "Not Set"}, + {"p_veh_box3_med", "Not Set"}, + {"p_veh_caboose01x_1", "Not Set"}, + {"p_veh_corsupplies01x", "Not Set"}, + {"p_veh_corsupplies02x", "Not Set"}, + {"p_veh_norpass_lights01x", "Not Set"}, + {"p_veh_northpassenger01x_2", "Not Set"}, + {"p_veh_northpassenger02x_1", "Not Set"}, + {"p_veh_northpassenger03x_1", "Not Set"}, + {"p_veh_pg_vl_mis_tro_li", "Not Set"}, + {"p_win_norpass_01x", "Not Set"}, + {"p_teamster_break01x_lrg", "Not Set"}, + {"p_teamster_break01x_med", "Not Set"}, + {"p_teamster_break01x_sml", "Not Set"}, + {"p_teamster_gen01x_lrg", "Not Set"}, + {"p_teamster_gen01x_med", "Not Set"}, + {"p_teamster_gen01x_sml", "Not Set"}, + {"p_teamster_perish01x_lrg", "Not Set"}, + {"p_teamster_perish01x_sml1", "Not Set"}, + {"p_teamster_perish01x_sml2", "Not Set"}, + {"p_veh_chuckwag_orange01x_1", "Not Set"}, + {"p_veh_delivery_coalcart01x", "Not Set"}, + {"p_veh_delivery_dairy01x", "Not Set"}, + {"p_veh_delivery_orange01x_1", "Not Set"}, + {"p_veh_flatcarkrgat01x", "Not Set"}, + {"p_veh_utilliwag_orange01x", "Not Set"}, + {"p_crates_armoredcar03x", "Not Set"}, + {"p_cs_marston01_01x", "Not Set"}, + {"p_mis_feud1_car06", "Not Set"}, + {"p_mis_feud1_car06_low", "Not Set"}, + {"p_mis_feud1_car11", "Not Set"}, + {"p_mis_feud1_car11_low", "Not Set"}, + {"p_mission_feud1_01x", "Not Set"}, + {"p_mission_feud1_01x_low", "Not Set"}, + {"p_rc_monroe1_01x", "Not Set"}, + {"p_re_checkpoint02x_food", "Not Set"}, + {"p_re_moonshinecampcart01x", "Not Set"}, + {"p_veh_armsdeal01x", "Not Set"}, + {"p_veh_baggage01x", "Not Set"}, + {"p_veh_brt1_jump01x", "Not Set"}, + {"p_veh_brt1_tomansion01x", "Not Set"}, + {"p_veh_cart01_1", "Not Set"}, + {"p_veh_cart01_3", "Not Set"}, + {"p_veh_cart03_barrels01x", "Not Set"}, + {"p_veh_cart03x_rope01x", "Not Set"}, + {"p_veh_cart06_1", "Not Set"}, + {"p_veh_cattlecar01x", "Not Set"}, + {"p_veh_checkpoint01x", "Not Set"}, + {"p_veh_chucksidebarrel01", "Not Set"}, + {"p_veh_chucksidebarrel02", "Not Set"}, + {"p_veh_chucksidebarrel03", "Not Set"}, + {"p_veh_chuckwagon000x_2", "Not Set"}, + {"p_veh_chuckwagon000x_2a", "Not Set"}, + {"p_veh_chuckwagon000x_3", "Not Set"}, + {"p_veh_chuckwagon000x_3a", "Not Set"}, + {"p_veh_coach02x_1", "Not Set"}, + {"p_veh_cornwall1_01x", "Not Set"}, + {"p_veh_cottonwag01x", "Not Set"}, + {"p_veh_cottonwag02x", "Not Set"}, + {"p_veh_cottonwag03x", "Not Set"}, + {"p_veh_feud1_haybales01x", "Not Set"}, + {"p_veh_flatcar01x_1", "Not Set"}, + {"p_veh_flatcar01x_1_low", "Not Set"}, + {"p_veh_flatcar01x_2", "Not Set"}, + {"p_veh_flatcar01x_2_low", "Not Set"}, + {"p_veh_genlrg01x", "Not Set"}, + {"p_veh_genlrg02x", "Not Set"}, + {"p_veh_genlrg03x", "Not Set"}, + {"p_veh_genmed01x", "Not Set"}, + {"p_veh_genmed02x", "Not Set"}, + {"p_veh_gensm01x", "Not Set"}, + {"p_veh_gensm02x", "Not Set"}, + {"p_veh_germfam_wagon04x_01", "Not Set"}, + {"p_veh_horseboat_1", "Not Set"}, + {"p_veh_horseboat_1c", "Not Set"}, + {"p_veh_horseboat_1d", "Not Set"}, + {"p_veh_keelboat_hooks01x", "Not Set"}, + {"p_veh_ls_soldier2_01x", "Not Set"}, + {"p_veh_ls_soldier2ropes_01x", "Not Set"}, + {"p_veh_marston1_supplies01x", "Not Set"}, + {"p_veh_nativesonwagon02x", "Not Set"}, + {"p_veh_re_fleeingfamily01x", "Not Set"}, + {"p_veh_sadiesupplies00x", "Not Set"}, + {"p_veh_sadiesupplies01x", "Not Set"}, + {"p_veh_savagearrows01x", "Not Set"}, + {"p_veh_sidebarrelsupport01x", "Not Set"}, + {"p_veh_stagecoach001x_1", "Not Set"}, + {"p_veh_stagecoach001x_2", "Not Set"}, + {"p_veh_stagecoach002x_1", "Not Set"}, + {"p_veh_stagecoach002x_2", "Not Set"}, + {"p_veh_stagecoach005x_1", "Not Set"}, + {"p_veh_stagecoach005x_2", "Not Set"}, + {"p_veh_stagecoach006x_1", "Not Set"}, + {"p_veh_stagecoach006x_2", "Not Set"}, + {"p_veh_strauswag01x", "Not Set"}, + {"p_veh_supgsmith01x", "Not Set"}, + {"p_veh_supplydeliver01x", "Not Set"}, + {"p_veh_traincar02x", "Not Set"}, + {"p_veh_traincar02x_low", "Not Set"}, + {"p_veh_trainholdup01x", "Not Set"}, + {"p_veh_wagon04x_ropeanchor01x", "Not Set"}, + {"p_veh_wagon04x_ropelumber01x", "Not Set"}, + {"p_veh_wagon04x_ropelumber02x", "Not Set"}, + {"p_veh_wagon04x_ropelumber03x", "Not Set"}, + {"p_veh_wagons_hay01x", "Not Set"}, + {"p_veh_weaponthreat01x", "Not Set"}, + {"armysupplywagon_wheel_lf", "Not Set"}, + {"armysupplywagon_wheel_lr", "Not Set"}, + {"breach_cannon_wheel_lf", "Not Set"}, + {"buggy01_wheel_lf", "Not Set"}, + {"buggy02_wheel_lf", "Not Set"}, + {"buggy03_wheel_lf", "Not Set"}, + {"cart01_wheel_lf", "Not Set"}, + {"cart02_wheel_lf", "Not Set"}, + {"cart_03_wheel_lf", "Not Set"}, + {"cart04_wheel_lr", "Not Set"}, + {"cart05_wheel_lf", "Not Set"}, + {"cart05_wheel_lr", "Not Set"}, + {"cart06_wheel_lf", "Not Set"}, + {"cart06_wheel_lr", "Not Set"}, + {"cart07_wheel_lf", "Not Set"}, + {"cart08_wheel_lf", "Not Set"}, + {"chuckwagon000x_wheel_lf", "Not Set"}, + {"chuckwagon000x_wheel_lr", "Not Set"}, + {"chuckwagon002x_wheel_lf", "Not Set"}, + {"chuckwagon002x_wheel_lr", "Not Set"}, + {"coach2_2x_wheel_lf", "Not Set"}, + {"coach2_2x_wheel_lr", "Not Set"}, + {"coach2_wheel_lf", "Not Set"}, + {"coach2_wheel_lr", "Not Set"}, + {"coach3_wheel_lf", "Not Set"}, + {"coach3_wheel_lr", "Not Set"}, + {"coach4_wheel_lf", "Not Set"}, + {"coach4_wheel_lr", "Not Set"}, + {"coach5_wheel_lf", "Not Set"}, + {"coach5_wheel_lr", "Not Set"}, + {"coach6_wheel_lf", "Not Set"}, + {"coach6_wheel_lr", "Not Set"}, + {"coalwagon_wheel_lf", "Not Set"}, + {"gatchuck_2_wheel_lf", "Not Set"}, + {"gatchuck_2_wheel_lr", "Not Set"}, + {"gatchuck_wheel_lf", "Not Set"}, + {"gatchuck_wheel_lr", "Not Set"}, + {"gatling_gun_wheel_lf", "Not Set"}, + {"hotchkiss_wheel_lf", "Not Set"}, + {"logwagon2_wheel_lf", "Not Set"}, + {"logwagon_wheel_lf", "Not Set"}, + {"oilwagon01x_wheel_lf", "Not Set"}, + {"oilwagon01x_wheel_lr", "Not Set"}, + {"oilwagon02x_wheel_lf", "Not Set"}, + {"oilwagon02x_wheel_lr", "Not Set"}, + {"policewagon01x_wheel_lf", "Not Set"}, + {"policewagon01x_wheel_lr", "Not Set"}, + {"policewagongatling01x_wheel_lf", "Not Set"}, + {"policewagongatling01x_wheel_lr", "Not Set"}, + {"stagecoach001x_wheel_lf", "Not Set"}, + {"stagecoach001x_wheel_lr", "Not Set"}, + {"stagecoach002x_wheel_lf", "Not Set"}, + {"stagecoach002x_wheel_lr", "Not Set"}, + {"stagecoach003x_wheel_lf", "Not Set"}, + {"stagecoach003x_wheel_lr", "Not Set"}, + {"stagecoach004_2x_wheel_lf", "Not Set"}, + {"stagecoach004_2x_wheel_lr", "Not Set"}, + {"stagecoach004x_wheel_lf", "Not Set"}, + {"stagecoach004x_wheel_lr", "Not Set"}, + {"stagecoach005x_wheel_lf", "Not Set"}, + {"stagecoach005x_wheel_lr", "Not Set"}, + {"stagecoach006x_wheel_lf", "Not Set"}, + {"stagecoach006x_wheel_lr", "Not Set"}, + {"supplywagon2_wheel_lf", "Not Set"}, + {"supplywagon2_wheel_lr", "Not Set"}, + {"supplywagon_wheel_lf", "Not Set"}, + {"supplywagon_wheel_lr", "Not Set"}, + {"utilitywag_wheel_lf", "Not Set"}, + {"utilitywag_wheel_lr", "Not Set"}, + {"wagon02x_wheel_lf", "Not Set"}, + {"wagon02x_wheel_lr", "Not Set"}, + {"wagon03x_wheel_lf", "Not Set"}, + {"wagon03x_wheel_lr", "Not Set"}, + {"wagon04x_wheel_lf", "Not Set"}, + {"wagon04x_wheel_lr", "Not Set"}, + {"wagon05x_2_wheel_lf", "Not Set"}, + {"wagon05x_2_wheel_lr", "Not Set"}, + {"wagon05x_wheel_lf", "Not Set"}, + {"wagon05x_wheel_lr", "Not Set"}, + {"wagon06x_wheel_lf", "Not Set"}, + {"wagon06x_wheel_lr", "Not Set"}, + {"wagonarmoured01x_wheel_lf", "Not Set"}, + {"wagonarmoured01x_wheel_lr", "Not Set"}, + {"wagoncircus01x_wheel_lf", "Not Set"}, + {"wagoncircus01x_wheel_lr", "Not Set"}, + {"wagoncircus02x_wheel_lf", "Not Set"}, + {"wagoncircus02x_wheel_lr", "Not Set"}, + {"wagondairy01x_wheel_lf", "Not Set"}, + {"wagondairy01x_wheel_lr", "Not Set"}, + {"wagondoc01x_wheel_lf", "Not Set"}, + {"wagondoc01x_wheel_lr", "Not Set"}, + {"wagonprison01x_wheel_lf", "Not Set"}, + {"wagonprison01x_wheel_lr", "Not Set"}, + {"wagontraveller01x_wheel_lf", "Not Set"}, + {"wagontraveller01x_wheel_lr", "Not Set"}, + {"wagonwork01x_wheel_lf", "Not Set"}, + {"wagonwork01x_wheel_lr", "Not Set"}, + {"warwagon2_wheel_lf", "Not Set"}, + {"warwagon2_wheel_lr", "Not Set"}, + {"damage_model_axis", "Not Set"}, + {"damage_model_metal_entry_01", "Not Set"}, + {"damage_model_metal_entry_02", "Not Set"}, + {"damage_model_metal_entry_03", "Not Set"}, + {"damage_model_metal_entry_04", "Not Set"}, + {"damage_model_metal_exit_01", "Not Set"}, + {"damage_model_metal_exit_02", "Not Set"}, + {"damage_model_metal_share_01", "Not Set"}, + {"damage_model_wood_01", "Not Set"}, + {"damage_model_wood_02", "Not Set"}, + {"damage_model_wood_09", "Not Set"}, + {"damage_model_wood_bark_01", "Not Set"}, + {"damage_model_wood_bark_02", "Not Set"}, + {"damage_model_wood_entry_01", "Not Set"}, + {"damage_model_wood_entry_02", "Not Set"}, + {"damage_model_wood_entry_03", "Not Set"}, + {"damage_model_wood_entry_04", "Not Set"}, + {"damage_model_wood_entry_05", "Not Set"}, + {"damage_model_wood_exit_01", "Not Set"}, + {"damage_model_wood_exit_02", "Not Set"}, + {"damage_model_wood_exit_03", "Not Set"}, + {"damage_model_wood_share_03", "Not Set"}, + {"damage_model_wood_share_04", "Not Set"}, + {"damage_model_wood_share_05", "Not Set"}, + {"damage_model_wood_share_06", "Not Set"}, + {"damage_model_wood_shotgun", "Not Set"}, + {"gore_damage_mesh", "Not Set"}, + {"gore_damage_mesh2", "Not Set"}, + {"gore_damage_mesh3", "Not Set"}, + {"gore_damage_mesh4", "Not Set"}, + {"gore_flesh_small_hole", "Not Set"}, + {"_test_campfire_interact_base", "Not Set"}, + {"_test_campfire_interact_log", "Not Set"}, + {"_test_campfire_interact_log_a", "Not Set"}, + {"_test_campfire_interact_log_b", "Not Set"}, + {"_test_campfire_interact_log_c", "Not Set"}, + {"vfx_bees", "Not Set"}, + {"vfx_butterflies", "Not Set"}, + {"vfx_butterflies2", "Not Set"}, + {"vfx_butterflies3", "Not Set"}, + {"vfx_butterflies4", "Not Set"}, + {"vfx_butterflies5", "Not Set"}, + {"vfx_cockroaches", "Not Set"}, + {"vfx_dragonflies", "Not Set"}, + {"vfx_fireflies", "Not Set"}, + {"vfx_flies_low", "Not Set"}, + {"vfx_fly_swarm", "Not Set"}, + {"vfx_grasshoppers", "Not Set"}, + {"vfx_moths", "Not Set"}, + {"vfx_moths_swarm", "Not Set"}, + {"vfx_nat_swarm", "Not Set"}, + {"vfx_petals_purple", "Not Set"}, + {"vfx_petals_red", "Not Set"}, + {"vfx_petals_white", "Not Set"}, + {"vfx_petals_yellow", "Not Set"}, + {"vfx_pollen", "Not Set"}, + {"vfx_scree_rock_01", "Not Set"}, + {"vfx_swamp_bubbles", "Not Set"}, + {"vfx_tadpoles", "Not Set"}, + {"vfx_water_striders", "Not Set"}, + {"wood_shotgun_unused", "Not Set"}, + {"DES_bee_shack", "Not Set"}, + {"DES_dis_alchemist", "Not Set"}, + {"DES_gang_wagon_back", "Not Set"}, + {"DES_gang_wagon_front", "Not Set"}, + {"DES_gang_wagon_rhodes_ne", "Not Set"}, + {"DES_gang_wagon_side", "Not Set"}, + {"des_gua3_cannon", "Not Set"}, + {"des_mg_pokertable", "Not Set"}, + {"des_wagon_bomb", "Not Set"}, + {"mp001_cs_mp_jmontezhead_01", "Not Set"}, + {"mp001_mp_map01x", "Not Set"}, + {"mp001_p_glass003x_lqd", "Not Set"}, + {"mp001_p_group_barrelshot01", "Not Set"}, + {"MP001_P_GROUP_BARRELSHOT02", "Not Set"}, + {"MP001_P_GROUP_BARRELSHOT03", "Not Set"}, + {"mp001_p_group_crates01", "Not Set"}, + {"mp001_p_group_logs01", "Not Set"}, + {"mp001_p_group_logs02", "Not Set"}, + {"mp001_physics_glasses", "Not Set"}, + {"mp001_physics_hat", "Not Set"}, + {"mp001_p_mp_ac01skinpelt", "Not Set"}, + {"mp001_p_mp_artifactgroup01x", "Not Set"}, + {"mp001_p_mp_artifactgroup02x", "Not Set"}, + {"mp001_p_mp_artifactgroup03x", "Not Set"}, + {"mp001_p_mp_artscrates01x", "Not Set"}, + {"mp001_p_mp_bookset05x", "Not Set"}, + {"mp001_p_mp_cover_s_spc", "Not Set"}, + {"mp001_p_mp_crate06x", "Not Set"}, + {"mp001_p_mp_cratebrand01x", "Not Set"}, + {"mp001_p_mp_cratetnt03x", "Not Set"}, + {"mp001_p_mp_cuttingboard01x", "Not Set"}, + {"mp001_p_mp_door01x", "Not Set"}, + {"mp001_p_mp_door02x", "Not Set"}, + {"mp001_p_mp_dynamite01x_noexp", "Not Set"}, + {"mp001_p_mp_fishhangi01x", "Not Set"}, + {"mp001_p_mp_flag01x", "Not Set"}, + {"mp001_p_mp_globe02x", "Not Set"}, + {"mp001_p_mp_hat_mr1_059", "Not Set"}, + {"mp001_p_mp_jarmoonshine01x", "Not Set"}, + {"mp001_p_mp_map02x", "Not Set"}, + {"mp001_p_mp_pelt_xlarge_acbear01", "Not Set"}, + {"mp001_p_mp_strongbox01x_lrg", "Not Set"}, + {"mp001_p_mp_tent_leento03x", "Not Set"}, + {"mp001_p_mptenttanner01x", "Not Set"}, + {"mp001_p_mptenttrack301x", "Not Set"}, + {"mp001_p_mptenttrack303x", "Not Set"}, + {"mp001_p_mptenttrack306x", "Not Set"}, + {"mp001_p_railroadtiepile01x", "Not Set"}, + {"mp001_p_rowboat_base01x", "Not Set"}, + {"mp001_s_hotchkiss_cannon_clip", "Not Set"}, + {"mp001_s_mp_ammobox01a", "Not Set"}, + {"mp001_s_mp_banner01x_lrg", "Not Set"}, + {"mp001_s_mp_boxsm01x", "Not Set"}, + {"mp001_s_mp_campflag01x", "Not Set"}, + {"mp001_s_mp_campflagrope01x", "Not Set"}, + {"mp001_s_mp_campflagus", "Not Set"}, + {"mp001_s_mp_catalogue01x", "Not Set"}, + {"mp001_s_mpcorona01x", "Not Set"}, + {"mp001_s_mp_finishline01x", "Not Set"}, + {"mp001_s_mp_finishline_banner01x", "Not Set"}, + {"mp001_s_pulleysack01x", "Not Set"}, + {"mp001_s_tntsticksnoexp01x", "Not Set"}, + {"mp003_p_sharpeningstone01x", "Not Set"}, + {"mp003_s_mp_moneybag02x", "Not Set"}, + {"mp003_s_mp_moneybag02x_dynamite", "Not Set"}, + {"mp003_s_mp_moneybag_stack01x", "Not Set"}, + {"mp003_s_mp_moneybag_stack02x", "Not Set"}, + {"mp003_s_mp_racefinishtarget01x", "Not Set"}, + {"mp004_mp_gfh_cratebooze01x", "Not Set"}, + {"mp004_mp_gfh_cratefuel01x", "Not Set"}, + {"mp004_mp_gfh_crategoods01x", "Not Set"}, + {"mp004_mp_gfh_cratetobacco01x", "Not Set"}, + {"mp004_mp_gfh_crateweapons01x", "Not Set"}, + {"mp004_p_cs_alleyblock", "Not Set"}, + {"mp004_p_cs_billstack01bx", "Not Set"}, + {"mp004_p_mpcover_gunslinger01", "Not Set"}, + {"mp004_p_mpcover_gunslinger03", "Not Set"}, + {"mp004_p_mpcover_gunslinger04", "Not Set"}, + {"mp004_p_mpcover_gunslinger07", "Not Set"}, + {"mp004_p_mpcover_gunslinger08", "Not Set"}, + {"mp004_p_parasol04x", "Not Set"}, + {"mp004_s_gallowsstairs02x", "Not Set"}, + {"mp004_s_mp_bondrolled01x", "Not Set"}, + {"MP005_P_DIRTPILE_GRI_MINES_BURIED", "Not Set"}, + {"mp005_p_dooraberdeen03x", "Not Set"}, + {"mp005_p_MP_CoverComb_HM_SB", "Not Set"}, + {"mp005_p_MP_CoverComb_M_SB", "Not Set"}, + {"mp005_p_MP_CoverComb_MU_SPC", "Not Set"}, + {"mp005_p_MP_Cover_S_CH", "Not Set"}, + {"mp005_p_MP_Cover_SH_CH", "Not Set"}, + {"mp005_p_mp_cover_sm_sb", "Not Set"}, + {"mp005_p_MP_Cover_SM_SD", "Not Set"}, + {"mp005_p_MP_Cover_S_SB", "Not Set"}, + {"mp005_p_mp_cratestack01x", "Not Set"}, + {"a_03_slod2", "Not Set"}, + {"a_04_slod2", "Not Set"}, + {"a_05_slod2", "Not Set"}, + {"a_06_slod2", "Not Set"}, + {"a_98_slod2", "Not Set"}, + {"a_99_slod2", "Not Set"}, + {"abcd_03_06_slod4", "Not Set"}, + {"abcd_92_95_slod4", "Not Set"}, + {"abcd_96_99_slod4", "Not Set"}, + {"a_c_horse_gypsycob_palominoblagdon", "Not Set"}, + {"a_c_horse_gypsycob_piebald", "Not Set"}, + {"a_c_horse_gypsycob_skewbald", "Not Set"}, + {"a_c_horse_gypsycob_splashedbay", "Not Set"}, + {"a_c_horse_gypsycob_splashedpiebald", "Not Set"}, + {"a_c_horse_gypsycob_whiteblagdon", "Not Set"}, + {"a_c_horse_missourifoxtrotter_blacktovero", "Not Set"}, + {"a_c_horse_missourifoxtrotter_blueroan", "Not Set"}, + {"a_c_horse_missourifoxtrotter_buckskinbrindle", "Not Set"}, + {"a_c_horse_missourifoxtrotter_dapplegrey", "Not Set"}, + {"a_c_horse_mustang_blackovero", "Not Set"}, + {"a_c_horse_mustang_buckskin", "Not Set"}, + {"a_c_horse_mustang_chestnuttovero", "Not Set"}, + {"a_c_horse_mustang_reddunovero", "Not Set"}, + {"A_C_HORSE_NORFOLKROADSTER_BLACK", "Not Set"}, + {"A_C_HORSE_NORFOLKROADSTER_DAPPLEDBUCKSKIN", "Not Set"}, + {"A_C_HORSE_NORFOLKROADSTER_PIEBALDROAN", "Not Set"}, + {"A_C_HORSE_NORFOLKROADSTER_ROSEGREY", "Not Set"}, + {"A_C_HORSE_NORFOLKROADSTER_SPECKLEDGREY", "Not Set"}, + {"A_C_HORSE_NORFOLKROADSTER_SPOTTEDTRICOLOR", "Not Set"}, + {"a_c_horse_turkoman_black", "Not Set"}, + {"a_c_horse_turkoman_chestnut", "Not Set"}, + {"a_c_horse_turkoman_grey", "Not Set"}, + {"a_c_horse_turkoman_perlino", "Not Set"}, + {"Ammo_Arrow_Dynamite_Bundle01", "Not Set"}, + {"a_water_01_vfx_a_water_stw_01", "Not Set"}, + {"a_water_01_vfx_a_water_stw_02", "Not Set"}, + {"a_water_01_vfx_a_water_stw_03", "Not Set"}, + {"a_water_01_vfx_a_water_stw_04", "Not Set"}, + {"a_water_01_vfx_a_water_stw_05", "Not Set"}, + {"a_water_01_vfx_a_water_stw_06", "Not Set"}, + {"a_water_01_vfx_a_water_stw_07", "Not Set"}, + {"a_water_01_vfx_a_water_stw_08", "Not Set"}, + {"a_water_01_vfx_a_water_stw_09", "Not Set"}, + {"a_water_01_vfx_a_water_stw_10", "Not Set"}, + {"a_water_01_vfx_a_water_stw_11", "Not Set"}, + {"a_water_01_vfx_a_water_stw_12", "Not Set"}, + {"a_water_01_vfx_a_water_stw_13", "Not Set"}, + {"a_water_01_vfx_a_water_stw_14", "Not Set"}, + {"a_water_01_vfx_a_water_stw_15", "Not Set"}, + {"a_water_01_vfx_a_water_stw_16", "Not Set"}, + {"a_water_01_vfx_a_water_stw_17", "Not Set"}, + {"a_water_01_vfx_a_water_stw_18", "Not Set"}, + {"a_water_01_vfx_a_water_stw_19", "Not Set"}, + {"a_water_01_vfx_a_water_stw_20", "Not Set"}, + {"a_water_01_vfx_a_water_stw_21", "Not Set"}, + {"a_water_01_vfx_a_water_stw_22", "Not Set"}, + {"a_water_01_vfx_a_water_stw_23", "Not Set"}, + {"a_water_01_vfx_a_water_stw_24", "Not Set"}, + {"a_water_01_vfx_a_water_stw_25", "Not Set"}, + {"a_water_01_vfx_bw_001", "Not Set"}, + {"a_water_01_vfx_dak_l_01", "Not Set"}, + {"a_water_01_vfx_dak_l_010", "Not Set"}, + {"a_water_01_vfx_dak_l_011", "Not Set"}, + {"a_water_01_vfx_dak_l_03", "Not Set"}, + {"a_water_01_vfx_dak_l_04", "Not Set"}, + {"a_water_01_vfx_dak_l_07", "Not Set"}, + {"a_water_01_vfx_dak_l_08", "Not Set"}, + {"a_water_01_vfx_dak_l_09", "Not Set"}, + {"a_water_01_vfx_dak_m_01", "Not Set"}, + {"a_water_01_vfx_dak_m_02", "Not Set"}, + {"a_water_01_vfx_dak_m_03", "Not Set"}, + {"a_water_01_vfx_dak_m_04", "Not Set"}, + {"a_water_01_vfx_dak_m_05", "Not Set"}, + {"a_water_01_vfx_dak_m_06", "Not Set"}, + {"a_water_01_vfx_dak_m_07", "Not Set"}, + {"a_water_01_vfx_dak_m_08", "Not Set"}, + {"a_water_01_vfx_dak_m_09", "Not Set"}, + {"a_water_01_vfx_dak_u_01", "Not Set"}, + {"a_water_01_vfx_dak_u_02", "Not Set"}, + {"a_water_01_vfx_dak_u_03", "Not Set"}, + {"a_water_01_vfx_dak_u_033", "Not Set"}, + {"a_water_01_vfx_dak_u_034", "Not Set"}, + {"a_water_01_vfx_dak_u_036", "Not Set"}, + {"a_water_01_vfx_dak_u_037", "Not Set"}, + {"a_water_01_vfx_dak_u_038", "Not Set"}, + {"a_water_01_vfx_dak_u_039", "Not Set"}, + {"a_water_01_vfx_dak_u_04", "Not Set"}, + {"a_water_01_vfx_dak_u_040", "Not Set"}, + {"a_water_01_vfx_dak_u_041", "Not Set"}, + {"a_water_01_vfx_dak_u_042", "Not Set"}, + {"a_water_01_vfx_dak_u_043", "Not Set"}, + {"a_water_01_vfx_dak_u_044", "Not Set"}, + {"a_water_01_vfx_dak_u_05", "Not Set"}, + {"a_water_01_vfx_dak_u_06", "Not Set"}, + {"a_water_01_vfx_dak_u_11", "Not Set"}, + {"a_water_01_vfx_dak_u_14", "Not Set"}, + {"a_water_01_vfx_dak_u_17", "Not Set"}, + {"a_water_01_vfx_dak_u_20", "Not Set"}, + {"a_water_01_vfx_dak_u_22", "Not Set"}, + {"a_water_01_vfx_dak_u_23", "Not Set"}, + {"a_water_01_vfx_dak_u_26", "Not Set"}, + {"a_water_01_vfx_dak_u_27", "Not Set"}, + {"a_water_01_vfx_dak_u_29", "Not Set"}, + {"a_water_01_vfx_dak_u_30", "Not Set"}, + {"a_water_01_vfx_dak_u_31", "Not Set"}, + {"a_water_01_vfx_dak_wf_01", "Not Set"}, + {"a_water_01_vfx_dk_helper_001", "Not Set"}, + {"a_water_01_vfx_gar_06_1", "Not Set"}, + {"a_water_01_vfx_gar_06_2", "Not Set"}, + {"a_water_01_vfx_gar_06_3", "Not Set"}, + {"a_water_01_vfx_gar_06_4", "Not Set"}, + {"a_water_01_vfx_grz", "Not Set"}, + {"a_water_01_vfx_grz_f_04", "Not Set"}, + {"a_water_01_vfx_grz_f_05", "Not Set"}, + {"a_water_01_vfx_grz_f_06", "Not Set"}, + {"a_water_01_vfx_grz_f_07", "Not Set"}, + {"a_water_01_vfx_grz_f_08", "Not Set"}, + {"a_water_01_vfx_grz_f_09", "Not Set"}, + {"a_water_01_vfx_grz_f_10", "Not Set"}, + {"a_water_01_vfx_grz_f_11", "Not Set"}, + {"a_water_01_vfx_grz_f_12", "Not Set"}, + {"a_water_01_vfx_grz_f_13", "Not Set"}, + {"a_water_01_vfx_grz_f_14", "Not Set"}, + {"a_water_01_vfx_grz_f_16", "Not Set"}, + {"a_water_01_vfx_grz_f_17", "Not Set"}, + {"a_water_01_vfx_grz_f_19", "Not Set"}, + {"a_water_01_vfx_grz_f_20", "Not Set"}, + {"a_water_01_vfx_grz_f_21", "Not Set"}, + {"a_water_01_vfx_grz_f_22", "Not Set"}, + {"a_water_01_vfx_grz_f_23", "Not Set"}, + {"a_water_01_vfx_grz_f_24", "Not Set"}, + {"a_water_01_vfx_grz_f_25", "Not Set"}, + {"a_water_01_vfx_grz_f_26", "Not Set"}, + {"a_water_01_vfx_grz_i_01", "Not Set"}, + {"a_water_01_vfx_grz_i_02", "Not Set"}, + {"a_water_01_vfx_grz_i_03", "Not Set"}, + {"a_water_01_vfx_grz_i_04", "Not Set"}, + {"a_water_01_vfx_grz_i_05", "Not Set"}, + {"a_water_01_vfx_grz_i_06", "Not Set"}, + {"a_water_01_vfx_grz_s1_01", "Not Set"}, + {"a_water_01_vfx_grz_s1_02", "Not Set"}, + {"a_water_01_vfx_grz_s1_03", "Not Set"}, + {"a_water_01_vfx_grz_s1_04", "Not Set"}, + {"a_water_01_vfx_grz_s1_05", "Not Set"}, + {"a_water_01_vfx_grz_s1_06", "Not Set"}, + {"a_water_01_vfx_grz_s2_01", "Not Set"}, + {"a_water_01_vfx_grz_s2_02", "Not Set"}, + {"a_water_01_vfx_grz_u_01", "Not Set"}, + {"a_water_01_vfx_grz_u_010", "Not Set"}, + {"a_water_01_vfx_grz_u_011", "Not Set"}, + {"a_water_01_vfx_grz_u_012", "Not Set"}, + {"a_water_01_vfx_grz_u_02", "Not Set"}, + {"a_water_01_vfx_grz_u_03", "Not Set"}, + {"a_water_01_vfx_grz_u_04", "Not Set"}, + {"a_water_01_vfx_grz_u_05", "Not Set"}, + {"a_water_01_vfx_grz_u_06", "Not Set"}, + {"a_water_01_vfx_grz_u_07", "Not Set"}, + {"a_water_01_vfx_grz_u_08", "Not Set"}, + {"a_water_01_vfx_grz_u_09", "Not Set"}, + {"a_water_01_vfx_gua_001", "Not Set"}, + {"a_water_01_vfx_gua_002", "Not Set"}, + {"a_water_01_vfx_gua_003", "Not Set"}, + {"a_water_01_vfx_gua_004", "Not Set"}, + {"a_water_01_vfx_gua_005", "Not Set"}, + {"a_water_01_vfx_itl_lower_01", "Not Set"}, + {"a_water_01_vfx_itl_lower_02", "Not Set"}, + {"a_water_01_vfx_itl_lower_03", "Not Set"}, + {"a_water_01_vfx_itl_lower_04", "Not Set"}, + {"a_water_01_vfx_itl_lower_05", "Not Set"}, + {"a_water_01_vfx_itl_lower_06", "Not Set"}, + {"a_water_01_vfx_itl_mid_01", "Not Set"}, + {"a_water_01_vfx_itl_upper_01", "Not Set"}, + {"a_water_01_vfx_itl_upper_010", "Not Set"}, + {"a_water_01_vfx_itl_upper_011", "Not Set"}, + {"a_water_01_vfx_itl_upper_02", "Not Set"}, + {"a_water_01_vfx_itl_upper_03", "Not Set"}, + {"a_water_01_vfx_itl_upper_04", "Not Set"}, + {"a_water_01_vfx_itl_upper_05", "Not Set"}, + {"a_water_01_vfx_itl_upper_06", "Not Set"}, + {"a_water_01_vfx_itl_upper_07", "Not Set"}, + {"a_water_01_vfx_itl_upper_08", "Not Set"}, + {"a_water_01_vfx_itl_upper_09", "Not Set"}, + {"a_water_01_vfx_j09", "Not Set"}, + {"a_water_01_vfx_j09_lod", "Not Set"}, + {"a_water_01_vfx_j09_slod", "Not Set"}, + {"a_water_01_vfx_lmr_01", "Not Set"}, + {"a_water_01_vfx_lmr_l_01", "Not Set"}, + {"a_water_01_vfx_lmr_l_02", "Not Set"}, + {"a_water_01_vfx_lmr_m_01", "Not Set"}, + {"a_water_01_vfx_lmr_m_02", "Not Set"}, + {"a_water_01_vfx_lmr_m_03", "Not Set"}, + {"a_water_01_vfx_lmr_m_04", "Not Set"}, + {"a_water_01_vfx_lmr_u_01", "Not Set"}, + {"a_water_01_vfx_lmr_u_02", "Not Set"}, + {"a_water_01_vfx_lmr_u_03", "Not Set"}, + {"a_water_01_vfx_lmr_u_04", "Not Set"}, + {"a_water_01_vfx_lmr_u_05", "Not Set"}, + {"a_water_01_vfx_lmr_u_06", "Not Set"}, + {"a_water_01_vfx_lmr_u_07", "Not Set"}, + {"a_water_01_vfx_lmr_u_08", "Not Set"}, + {"a_water_01_vfx_lmr_u_09", "Not Set"}, + {"a_water_01_vfx_ltl_001", "Not Set"}, + {"a_water_01_vfx_ltl_002", "Not Set"}, + {"a_water_01_vfx_ltl_003", "Not Set"}, + {"a_water_01_vfx_new_fountain", "Not Set"}, + {"a_water_01_vfx_new_gar_06", "Not Set"}, + {"a_water_01_vfx_old_u_01", "Not Set"}, + {"a_water_01_vfx_rapids010", "Not Set"}, + {"a_water_01_vfx_rapids_utp", "Not Set"}, + {"a_water_01_vfx_rnk_000", "Not Set"}, + {"a_water_01_vfx_rnk_001", "Not Set"}, + {"a_water_01_vfx_rnk_002", "Not Set"}, + {"a_water_01_vfx_rnk_003", "Not Set"}, + {"a_water_01_vfx_rnk_004", "Not Set"}, + {"a_water_01_vfx_rnk_006", "Not Set"}, + {"a_water_01_vfx_rnk_007", "Not Set"}, + {"a_water_01_vfx_rnk_008", "Not Set"}, + {"a_water_01_vfx_rnk_009", "Not Set"}, + {"a_water_01_vfx_rnk_010", "Not Set"}, + {"a_water_01_vfx_rnk_011", "Not Set"}, + {"a_water_01_vfx_rnk_012", "Not Set"}, + {"a_water_01_vfx_rnk_013", "Not Set"}, + {"a_water_01_vfx_rnk_014", "Not Set"}, + {"a_water_01_vfx_rnk_015", "Not Set"}, + {"a_water_01_vfx_rnk_elys_02", "Not Set"}, + {"a_water_01_vfx_rnk_l_01", "Not Set"}, + {"a_water_01_vfx_rnk_l_010", "Not Set"}, + {"a_water_01_vfx_rnk_l_011", "Not Set"}, + {"a_water_01_vfx_rnk_l_012", "Not Set"}, + {"a_water_01_vfx_rnk_l_02", "Not Set"}, + {"a_water_01_vfx_rnk_l_03", "Not Set"}, + {"a_water_01_vfx_rnk_l_04", "Not Set"}, + {"a_water_01_vfx_rnk_l_05", "Not Set"}, + {"a_water_01_vfx_rnk_l_06", "Not Set"}, + {"a_water_01_vfx_rnk_l_07", "Not Set"}, + {"a_water_01_vfx_rnk_l_08", "Not Set"}, + {"a_water_01_vfx_rnk_l_09", "Not Set"}, + {"a_water_01_vfx_sb", "Not Set"}, + {"a_water_01_vfx_sb_010", "Not Set"}, + {"a_water_01_vfx_sb_011", "Not Set"}, + {"a_water_01_vfx_sb_012", "Not Set"}, + {"a_water_01_vfx_sb_013", "Not Set"}, + {"a_water_01_vfx_sb_014", "Not Set"}, + {"a_water_01_vfx_sb_016", "Not Set"}, + {"a_water_01_vfx_sb_017", "Not Set"}, + {"a_water_01_vfx_sb_018", "Not Set"}, + {"a_water_01_vfx_sb_019", "Not Set"}, + {"a_water_01_vfx_sb_020", "Not Set"}, + {"a_water_01_vfx_sb_022", "Not Set"}, + {"a_water_01_vfx_sb_023", "Not Set"}, + {"a_water_01_vfx_sb_024", "Not Set"}, + {"a_water_01_vfx_sb_025", "Not Set"}, + {"a_water_01_vfx_sb_026", "Not Set"}, + {"a_water_01_vfx_sb_027", "Not Set"}, + {"a_water_01_vfx_sb_028", "Not Set"}, + {"a_water_01_vfx_sb_031", "Not Set"}, + {"a_water_01_vfx_sb_035", "Not Set"}, + {"a_water_01_vfx_sb_037", "Not Set"}, + {"a_water_01_vfx_umr_001", "Not Set"}, + {"a_water_01_vfx_umr_002", "Not Set"}, + {"a_water_01_vfx_umr_003", "Not Set"}, + {"a_water_01_vfx_umr_l_01", "Not Set"}, + {"a_water_01_vfx_umr_l_02", "Not Set"}, + {"a_water_01_vfx_umr_l_03", "Not Set"}, + {"a_water_01_vfx_umr_l_04", "Not Set"}, + {"a_water_01_vfx_umr_l_05", "Not Set"}, + {"a_water_01_vfx_umr_l_06", "Not Set"}, + {"a_water_01_vfx_umr_m_01", "Not Set"}, + {"a_water_01_vfx_umr_m_02", "Not Set"}, + {"a_water_01_vfx_umr_m_03", "Not Set"}, + {"a_water_01_vfx_umr_m_04", "Not Set"}, + {"a_water_01_vfx_umr_m_05", "Not Set"}, + {"a_water_01_vfx_umr_m_06", "Not Set"}, + {"a_water_01_vfx_umr_m_dam", "Not Set"}, + {"a_water_01_vfx_umr_u_01", "Not Set"}, + {"a_water_01_vfx_umr_u_02", "Not Set"}, + {"a_water_01_vfx_umr_u_03", "Not Set"}, + {"a_water_01_vfx_umr_u_04", "Not Set"}, + {"a_water_01_vfx_umr_u_07", "Not Set"}, + {"a_water_dak_falls_01_slod3", "Not Set"}, + {"a_water_dak_falls_lake_slod", "Not Set"}, + {"a_water_dak_falls_lake_slod3", "Not Set"}, + {"a_water_dak_l_05_slod_19", "Not Set"}, + {"a_water_dak_l_05_slod3", "Not Set"}, + {"a_water_dak_l_34_slod3", "Not Set"}, + {"a_water_dak_m_06_slod", "Not Set"}, + {"a_water_dak_m_06_slod3", "Not Set"}, + {"a_water_dak_u_02_slod3", "Not Set"}, + {"a_water_dak_u_09_slod3", "Not Set"}, + {"a_water_flt_06_slod3", "Not Set"}, + {"a_water_flt_17_slod3", "Not Set"}, + {"a_water_flt_50_slod3", "Not Set"}, + {"a_water_flt_55_slod3", "Not Set"}, + {"a_water_grz_f_01", "Not Set"}, + {"a_water_grz_f_01_slod3", "Not Set"}, + {"a_water_grz_f_02", "Not Set"}, + {"a_water_grz_f_03", "Not Set"}, + {"a_water_grz_f_04", "Not Set"}, + {"a_water_grz_f_05", "Not Set"}, + {"a_water_grz_f_06", "Not Set"}, + {"a_water_grz_f_06_slod", "Not Set"}, + {"a_water_grz_f_06_slod3", "Not Set"}, + {"a_water_grz_ice_01", "Not Set"}, + {"a_water_grz_ice_02", "Not Set"}, + {"a_water_grz_ice_03", "Not Set"}, + {"a_water_grz_ice_04", "Not Set"}, + {"a_water_grz_ice_04_ovrly", "Not Set"}, + {"a_water_grz_ice_05", "Not Set"}, + {"a_water_grz_ice_06", "Not Set"}, + {"a_water_grz_ice_chunks_01", "Not Set"}, + {"a_water_grz_ice_chunks_02", "Not Set"}, + {"a_water_grz_ice_ovrly_01", "Not Set"}, + {"a_water_grz_ice_ovrly_02", "Not Set"}, + {"a_water_grz_ice_ovrly_03", "Not Set"}, + {"a_water_grz_ice_ovrly_04", "Not Set"}, + {"a_water_grz_ice_ovrly_05", "Not Set"}, + {"a_water_grz_ice_ovrly_06", "Not Set"}, + {"a_water_grz_ice_ovrly_07", "Not Set"}, + {"a_water_grz_ice_ovrly_08", "Not Set"}, + {"a_water_grz_ice_slod", "Not Set"}, + {"a_water_grz_l_01", "Not Set"}, + {"a_water_grz_l_02", "Not Set"}, + {"a_water_grz_l_02_slod3", "Not Set"}, + {"a_water_grz_s_00", "Not Set"}, + {"a_water_grz_s_01_b", "Not Set"}, + {"a_water_grz_s_01_b_slod3", "Not Set"}, + {"a_water_grz_s_02_a", "Not Set"}, + {"a_water_grz_s_02_b", "Not Set"}, + {"a_water_grz_s_02_b_slod3", "Not Set"}, + {"a_water_hrt_01_l_00_slod3", "Not Set"}, + {"a_water_hrt_01_m_00_slod2", "Not Set"}, + {"a_water_hrt_01_m_03_slod2", "Not Set"}, + {"a_water_hrt_01_u_06_slod3", "Not Set"}, + {"a_water_hrt_03_slod3", "Not Set"}, + {"a_water_hrt_04_a_slod3", "Not Set"}, + {"a_water_hrt_05_slod3", "Not Set"}, + {"a_water_hrt_06_slod3", "Not Set"}, + {"a_water_hrt_08_slod3", "Not Set"}, + {"a_water_hrt_09_slod3", "Not Set"}, + {"a_water_hrt_10_slod3", "Not Set"}, + {"a_water_hrt_11_slod3", "Not Set"}, + {"a_water_ice_01_slod", "Not Set"}, + {"a_water_ice_03_slod", "Not Set"}, + {"a_water_ice_colt_pond_s", "Not Set"}, + {"a_water_ice_riv_a04_slod3", "Not Set"}, + {"a_water_ice_riv_b04_slod3", "Not Set"}, + {"a_water_lan_a_007_slod3", "Not Set"}, + {"a_water_lan_b_016_slod3", "Not Set"}, + {"a_water_lan_b_042_slod3", "Not Set"}, + {"a_water_lan_bkdrp23_slod3", "Not Set"}, + {"a_water_lan_bkdrp34_slod3", "Not Set"}, + {"a_water_lan_bkdrp35_slod3", "Not Set"}, + {"a_water_lan_c_007_slod3", "Not Set"}, + {"a_water_lan_c_013_slod3", "Not Set"}, + {"a_water_lan_c_plcmnt_24_slod3", "Not Set"}, + {"a_water_lan_c_plcmnt_25_slod3", "Not Set"}, + {"a_water_lan_d_019_slod3", "Not Set"}, + {"a_water_lan_d_500_slod3", "Not Set"}, + {"a_water_lmr_l_02_slod3", "Not Set"}, + {"a_water_lmr_m_00_slod3", "Not Set"}, + {"a_water_lmr_m_01_slod3", "Not Set"}, + {"a_water_lmr_u_00_slod3", "Not Set"}, + {"a_water_ltl_l_01_slod3", "Not Set"}, + {"a_water_ltl_l_slod3", "Not Set"}, + {"a_water_ltl_m_11_slod3", "Not Set"}, + {"a_water_ltl_m_15_slod3", "Not Set"}, + {"a_water_ltl_u_02_slod3", "Not Set"}, + {"a_water_rnk_elys_02_slod3", "Not Set"}, + {"a_water_rnk_l_04_slod3", "Not Set"}, + {"a_water_rnk_m_05_slod3", "Not Set"}, + {"a_water_rnk_m_06_slod3", "Not Set"}, + {"a_water_rnk_u_a_01_slod3", "Not Set"}, + {"a_water_rnk_u_b_01_slod3", "Not Set"}, + {"a_water_rnk_u_b_02_slod3", "Not Set"}, + {"a_water_smp_17_slod3", "Not Set"}, + {"a_water_smp_19_slod3", "Not Set"}, + {"a_water_smp_23_slod3", "Not Set"}, + {"a_water_spg_010_slod3", "Not Set"}, + {"a_water_stw_l_03_slod3", "Not Set"}, + {"a_water_stw_m_02_slod3", "Not Set"}, + {"a_water_stw_u_01_slod3", "Not Set"}, + {"a_water_umr_l_03_slod3", "Not Set"}, + {"a_water_umr_m_04_slod3", "Not Set"}, + {"a_water_umr_u_01_slod3", "Not Set"}, + {"a_water_umr_u_04_slod3", "Not Set"}, + {"b_03_slod2", "Not Set"}, + {"b_04_slod2", "Not Set"}, + {"b_05_slod2", "Not Set"}, + {"b_06_slod2", "Not Set"}, + {"b_98_slod2", "Not Set"}, + {"b_99_slod2", "Not Set"}, + {"bea01pr_combo04_slod", "Not Set"}, + {"bea01pr_combo05_slod", "Not Set"}, + {"bea01pr_combo06_slod", "Not Set"}, + {"bea01pr_combo07_slod", "Not Set"}, + {"bea01pr_combo14_slod", "Not Set"}, + {"bea01pr_combo15_slod", "Not Set"}, + {"bea01pr_combo15_slod2", "Not Set"}, + {"bea01pr_combo18_slod", "Not Set"}, + {"bea01pr_combo18_slod2", "Not Set"}, + {"bea01pr_combo19_slod", "Not Set"}, + {"bea01pr_combo20_slod", "Not Set"}, + {"bea01pr_combo20_slod2", "Not Set"}, + {"bea01pr_combo22_slod", "Not Set"}, + {"bea01pr_combo23_slod", "Not Set"}, + {"bea01pr_combo23_slod2", "Not Set"}, + {"bea01pr_combo24_slod2", "Not Set"}, + {"bea01pr_combo27_slod", "Not Set"}, + {"bea01pr_combo28_slod", "Not Set"}, + {"bea01pr_combo29_slod", "Not Set"}, + {"bea01pr_combo30_slod", "Not Set"}, + {"bea01pr_combo31_slod2", "Not Set"}, + {"bea_cave_uvunwrapped_slod", "Not Set"}, + {"beafopr_combo_slod", "Not Set"}, + {"bountywagon01x", "Not Set"}, + {"c_03_slod2", "Not Set"}, + {"c_04_slod2", "Not Set"}, + {"c_05_slod2", "Not Set"}, + {"c_06_slod2", "Not Set"}, + {"c_98_slod2", "Not Set"}, + {"c_99_slod2", "Not Set"}, + {"cj_proc_tin2", "Not Set"}, + {"collision_afghanpolo", "Not Set"}, + {"COLLISION_EXPLORERGEAR_Left", "Not Set"}, + {"COLLISION_EXPLORERGEAR_Right", "Not Set"}, + {"cor01pr_combo0103_slod", "Not Set"}, + {"cor01pr_combo_05_lod", "Not Set"}, + {"cor_01_slod", "Not Set"}, + {"cor_01_temp_00_lod", "Not Set"}, + {"cor_01_temp_06_lod", "Not Set"}, + {"cor_factb_int_lod", "Not Set"}, + {"cor_factoryes_slod", "Not Set"}, + {"cor_fences_lod_02", "Not Set"}, + {"cor_fences_lod_04", "Not Set"}, + {"cor_fences_lod_06", "Not Set"}, + {"cor_fences_lod_07", "Not Set"}, + {"cs_mp_agent_hixon", "Not Set"}, + {"cs_mp_bessie_adair", "Not Set"}, + {"cs_mp_dannylee", "Not Set"}, + {"cs_mp_gus_macmillan", "Not Set"}, + {"cs_mp_harriet_davenport", "Not Set"}, + {"cs_mp_lem", "Not Set"}, + {"CS_MP_MAGGIE", "Not Set"}, + {"cs_mp_seth", "Not Set"}, + {"d_03_slod2", "Not Set"}, + {"d_04_slod2", "Not Set"}, + {"d_05_slod2", "Not Set"}, + {"d_06_slod2", "Not Set"}, + {"d_98_slod2", "Not Set"}, + {"d_99_slod2", "Not Set"}, + {"des_bar_window", "Not Set"}, + {"des_bar_window_01", "Not Set"}, + {"des_bar_window_02", "Not Set"}, + {"des_bar_win_end", "Not Set"}, + {"des_bar_win_start", "Not Set"}, + {"des_bee_shack_01", "Not Set"}, + {"des_bee_shack_02", "Not Set"}, + {"des_bee_shack_03", "Not Set"}, + {"des_bee_shack_04", "Not Set"}, + {"des_brt3_door", "Not Set"}, + {"des_brt3_door_01", "Not Set"}, + {"des_brt3_door_02", "Not Set"}, + {"des_brt3_door_end", "Not Set"}, + {"des_crn1_barn", "Not Set"}, + {"des_crn1_barn_01", "Not Set"}, + {"des_crn1_barn_end", "Not Set"}, + {"des_crn1_barn_start", "Not Set"}, + {"des_dis_alchemist_01", "Not Set"}, + {"des_dis_alchemist_02", "Not Set"}, + {"des_dis_alchemist_03", "Not Set"}, + {"des_dis_alchemist_04", "Not Set"}, + {"des_dis_alchemist_05", "Not Set"}, + {"des_dis_alchemist_06", "Not Set"}, + {"des_dis_alchemist_07", "Not Set"}, + {"des_dis_alchemist_08", "Not Set"}, + {"des_dis_alchemist_09", "Not Set"}, + {"des_dis_alchemist_10", "Not Set"}, + {"des_em5_roof", "Not Set"}, + {"des_em5_roof_01", "Not Set"}, + {"des_em5_roof_02", "Not Set"}, + {"des_em5_roofend", "Not Set"}, + {"des_em5_roofstart", "Not Set"}, + {"des_fus1_boilerhouse", "Not Set"}, + {"des_fus1_boilerhouse_01", "Not Set"}, + {"des_gang_wagon_back_01", "Not Set"}, + {"des_gang_wagon_back_end", "Not Set"}, + {"des_gang_wagon_back_start", "Not Set"}, + {"des_gang_wagon_front_01", "Not Set"}, + {"des_gang_wagon_front_end", "Not Set"}, + {"des_gang_wagon_front_start", "Not Set"}, + {"des_gang_wagon_rhodes_ne_01", "Not Set"}, + {"des_gang_wagon_rho_ne_e", "Not Set"}, + {"des_gang_wagon_rho_ne_s", "Not Set"}, + {"des_gang_wagon_side_01", "Not Set"}, + {"des_gang_wagon_side_end", "Not Set"}, + {"des_gang_wagon_side_start", "Not Set"}, + {"des_grh_outhouse", "Not Set"}, + {"des_grh_outhouse_01", "Not Set"}, + {"des_grh_outhouse_02", "Not Set"}, + {"des_grh_outhouse_03", "Not Set"}, + {"des_grh_outhouse_04", "Not Set"}, + {"des_gry1_still", "Not Set"}, + {"des_gry1_still_01", "Not Set"}, + {"des_gua1_ship_lurches", "Not Set"}, + {"des_gua1_ship_lurches_01", "Not Set"}, + {"des_gua1_ship_lurches_end", "Not Set"}, + {"des_gua1_ship_lurches_start", "Not Set"}, + {"des_gua3_cannon_01", "Not Set"}, + {"des_gua3_cannon_02", "Not Set"}, + {"des_gua3_cannon_03", "Not Set"}, + {"des_gua3_cannon_04", "Not Set"}, + {"des_gua3_cannon_end", "Not Set"}, + {"des_gua3_cannon_exp_ig", "Not Set"}, + {"des_gua3_cannon_exp_ig_01", "Not Set"}, + {"des_gua3_cannon_exp_ig_02", "Not Set"}, + {"des_gua3_cannon_exp_ig_03", "Not Set"}, + {"des_gua3_cannon_exp_ig_04", "Not Set"}, + {"des_gua3_cannon_exp_ig_05", "Not Set"}, + {"des_gua3_cannon_exp_ig_06", "Not Set"}, + {"des_gua3_cannon_exp_ig_07", "Not Set"}, + {"des_gua3_cannon_exp_ig_08", "Not Set"}, + {"des_gua3_cannon_exp_ig_09", "Not Set"}, + {"des_gua3_cannon_exp_ig_10", "Not Set"}, + {"des_gua3_cannon_exp_ig_end", "Not Set"}, + {"des_gua3_cannon_exp_ig_start", "Not Set"}, + {"des_gua3_cannon_exp_var1", "Not Set"}, + {"des_gua3_cannon_exp_var1_01", "Not Set"}, + {"des_gua3_cannon_exp_var1_02", "Not Set"}, + {"des_gua3_cannon_exp_var1_03", "Not Set"}, + {"des_gua3_cannon_exp_var1_04", "Not Set"}, + {"des_gua3_cannon_exp_var1_end", "Not Set"}, + {"des_gua3_cannon_exp_var1_start", "Not Set"}, + {"des_gua3_cannon_start", "Not Set"}, + {"des_gua3_window_jump", "Not Set"}, + {"des_gua3_window_jump_01", "Not Set"}, + {"des_gua3_window_jump_02", "Not Set"}, + {"des_gua3_window_jump_end", "Not Set"}, + {"des_gua3_window_jump_start", "Not Set"}, + {"des_guarma3_tower_exp", "Not Set"}, + {"des_guarma3_tower_exp_01", "Not Set"}, + {"des_guarma3_wall_exp", "Not Set"}, + {"des_mg_pokertable_01", "Not Set"}, + {"des_mg_pokertable_02", "Not Set"}, + {"des_mg_pokertable_end", "Not Set"}, + {"des_mg_pokertable_start", "Not Set"}, + {"des_mob1_fence", "Not Set"}, + {"des_mob1_fence_01", "Not Set"}, + {"des_mob3_trolley", "Not Set"}, + {"des_mob3_trolley_01", "Not Set"}, + {"des_mob3_trolley_02", "Not Set"}, + {"des_mob3_trolley_03", "Not Set"}, + {"des_mob3_trolley_04", "Not Set"}, + {"des_mob3_trolley_05", "Not Set"}, + {"des_mob3_trolley_06", "Not Set"}, + {"des_mob3_trolley_07", "Not Set"}, + {"des_mob3_trolley_08", "Not Set"}, + {"des_nbd1_bankwall", "Not Set"}, + {"des_nbd1_bankwall_01", "Not Set"}, + {"des_nbd1_bankwall_02", "Not Set"}, + {"des_nbd1_bankwall_03", "Not Set"}, + {"des_nbd1_bankwall_04", "Not Set"}, + {"des_nbd1_bankwall_int", "Not Set"}, + {"des_nbd1_bankwall_int_01", "Not Set"}, + {"des_nbd1_bankwall_int_02", "Not Set"}, + {"des_nbd1_bankwall_int_03", "Not Set"}, + {"des_nbd1_bankwall_int_04", "Not Set"}, + {"des_nbd1_bankwall_int_end", "Not Set"}, + {"des_nbd1_bankwall_int_start", "Not Set"}, + {"des_nts1_boat_chain", "Not Set"}, + {"des_nts1_boat_chain_01", "Not Set"}, + {"des_nts1_boat_chain_end", "Not Set"}, + {"des_nts1_boat_chain_start", "Not Set"}, + {"des_nts1_chain_exp", "Not Set"}, + {"des_ntv3_fort", "Not Set"}, + {"des_ntv3_fort_01", "Not Set"}, + {"des_ntv3_fort_02", "Not Set"}, + {"des_ntv3_rail_break", "Not Set"}, + {"des_ntv3_rail_break_01", "Not Set"}, + {"des_ntvs2_treefall", "Not Set"}, + {"des_ntvs2_treefall_01", "Not Set"}, + {"des_ntvs2_treefall_02", "Not Set"}, + {"des_ntvs2_treefall_03", "Not Set"}, + {"des_ntvs2_treefall_04", "Not Set"}, + {"des_ntvs2_treefall_top", "Not Set"}, + {"des_ntvs2_treefall_top_01", "Not Set"}, + {"des_re_wagon_crash_front", "Not Set"}, + {"des_re_wagon_crash_front_01", "Not Set"}, + {"des_re_wagon_crash_front_02", "Not Set"}, + {"des_rho_bankwall", "Not Set"}, + {"des_rho_bankwall_01", "Not Set"}, + {"des_rho_sheriff", "Not Set"}, + {"des_rho_sheriff_01", "Not Set"}, + {"des_rho_sheriff_end", "Not Set"}, + {"des_rho_sheriff_start", "Not Set"}, + {"des_safe_lrg_l_fail", "Not Set"}, + {"des_safe_lrg_l_fail_01", "Not Set"}, + {"des_safe_lrg_l_fail_end", "Not Set"}, + {"des_safe_lrg_l_fail_start", "Not Set"}, + {"des_safe_lrg_l_succeed", "Not Set"}, + {"des_safe_lrg_l_succeed_01", "Not Set"}, + {"des_safe_lrg_l_succeed_end", "Not Set"}, + {"des_safe_lrg_l_succeed_start", "Not Set"}, + {"des_safe_lrg_r_fail", "Not Set"}, + {"des_safe_lrg_r_fail_01", "Not Set"}, + {"des_safe_lrg_r_fail_end", "Not Set"}, + {"des_safe_lrg_r_fail_start", "Not Set"}, + {"des_safe_lrg_r_succeed", "Not Set"}, + {"des_safe_lrg_r_succeed_01", "Not Set"}, + {"des_safe_med_l_fail", "Not Set"}, + {"des_safe_med_l_fail_01", "Not Set"}, + {"des_safe_med_l_fail_end", "Not Set"}, + {"des_safe_med_l_fail_start", "Not Set"}, + {"des_safe_med_l_succeed", "Not Set"}, + {"des_safe_med_l_succeed_01", "Not Set"}, + {"des_safe_med_r_fail", "Not Set"}, + {"des_safe_med_r_fail_01", "Not Set"}, + {"des_safe_med_r_fail_end", "Not Set"}, + {"des_safe_med_r_fail_start", "Not Set"}, + {"des_safe_med_r_succeed", "Not Set"}, + {"des_safe_med_r_succeed_01", "Not Set"}, + {"des_safe_sml_l_fail", "Not Set"}, + {"des_safe_sml_l_fail_01", "Not Set"}, + {"des_safe_sml_l_fail_end", "Not Set"}, + {"des_safe_sml_l_fail_start", "Not Set"}, + {"des_safe_sml_l_succeed", "Not Set"}, + {"des_safe_sml_l_succeed_01", "Not Set"}, + {"des_safe_sml_r_fail", "Not Set"}, + {"des_safe_sml_r_fail_01", "Not Set"}, + {"des_safe_sml_r_fail_end", "Not Set"}, + {"des_safe_sml_r_fail_start", "Not Set"}, + {"des_safe_sml_r_succeed", "Not Set"}, + {"des_safe_sml_r_succeed_01", "Not Set"}, + {"des_smg2_fortwall", "Not Set"}, + {"des_smg2_fortwall_01", "Not Set"}, + {"des_smg2_fortwall_02", "Not Set"}, + {"des_smg2_fortwall_03", "Not Set"}, + {"des_str_jail", "Not Set"}, + {"des_str_jail_01", "Not Set"}, + {"des_str_jail_02", "Not Set"}, + {"des_str_jail_exp", "Not Set"}, + {"des_str_jail_exp_01", "Not Set"}, + {"des_str_jail_exp_02", "Not Set"}, + {"des_trap_gua01x", "Not Set"}, + {"des_trap_gua01x_01", "Not Set"}, + {"des_trap_gua01x_02", "Not Set"}, + {"des_trap_gua01x_03", "Not Set"}, + {"des_trap_gua01x_04", "Not Set"}, + {"des_trap_roa02x", "Not Set"}, + {"des_trap_roa02x_01", "Not Set"}, + {"des_trap_roa02x_02", "Not Set"}, + {"des_trap_roa02x_03", "Not Set"}, + {"des_trap_roa02x_04", "Not Set"}, + {"des_trap_roa0a01x", "Not Set"}, + {"des_trap_roa0a01x_01", "Not Set"}, + {"des_trap_roa0a01x_02", "Not Set"}, + {"des_trap_roa0a01x_03", "Not Set"}, + {"des_trap_roa0b01x", "Not Set"}, + {"des_trap_roa0b01x_01", "Not Set"}, + {"des_trap_roa0b01x_02", "Not Set"}, + {"des_trap_roa0b01x_03", "Not Set"}, + {"des_trap_roa0b01x_04", "Not Set"}, + {"des_treefall_accident", "Not Set"}, + {"des_treefall_accident_01", "Not Set"}, + {"des_treefall_down15", "Not Set"}, + {"des_treefall_down15_01", "Not Set"}, + {"des_treefall_flat", "Not Set"}, + {"des_treefall_flat_01", "Not Set"}, + {"des_treefall_up15", "Not Set"}, + {"des_treefall_up15_01", "Not Set"}, + {"des_treefall_up15_end", "Not Set"}, + {"des_treefall_up15_start", "Not Set"}, + {"des_trn3_bridge", "Not Set"}, + {"des_trn3_bridge_01", "Not Set"}, + {"des_trn3_bridge_02", "Not Set"}, + {"des_trn3_bridge_03", "Not Set"}, + {"des_trn3_bridge_04", "Not Set"}, + {"des_trn3_bridge_05", "Not Set"}, + {"des_trn3_bridge_06", "Not Set"}, + {"des_trn3_bridge_07", "Not Set"}, + {"des_trn3_bridge_08", "Not Set"}, + {"des_trn4_train_crash", "Not Set"}, + {"des_trn4_train_crash_01", "Not Set"}, + {"des_trn4_train_crash_02", "Not Set"}, + {"des_trn4_train_crash_03", "Not Set"}, + {"des_trn4_train_crash_04", "Not Set"}, + {"des_trn4_train_crash_05", "Not Set"}, + {"des_trn4_train_crash_end", "Not Set"}, + {"des_trn4_train_crash_start", "Not Set"}, + {"des_trn4_train_derail", "Not Set"}, + {"des_trn4_train_derail_01", "Not Set"}, + {"des_utp2_rvrbed", "Not Set"}, + {"des_utp2_rvrbed_01", "Not Set"}, + {"des_utp2_rvrbed_02", "Not Set"}, + {"des_utp2_treefall", "Not Set"}, + {"des_utp2_treefall_01", "Not Set"}, + {"des_val_sheriff", "Not Set"}, + {"des_val_sheriff_01", "Not Set"}, + {"des_val_sheriff_02", "Not Set"}, + {"des_wagon_bomb_01", "Not Set"}, + {"des_wagon_bomb_end", "Not Set"}, + {"des_wagon_bomb_start", "Not Set"}, + {"des_wnt1_cabin_collapse", "Not Set"}, + {"des_wnt1_cabin_collapse_01", "Not Set"}, + {"des_wnt1_cabin_collapse_02", "Not Set"}, + {"dis_grz_face_stage0_slod", "Not Set"}, + {"dis_grz_face_stage1_slod", "Not Set"}, + {"dis_grz_face_stage2_slod", "Not Set"}, + {"dis_grz_face_stage3_slod", "Not Set"}, + {"dis_grz_j_10_05_cave_lod", "Not Set"}, + {"dis_grz_lod", "Not Set"}, + {"dis_grz_mammoth01_lod", "Not Set"}, + {"dis_grz_scaffoldings_slod", "Not Set"}, + {"dis_grz_witch_lair_lod", "Not Set"}, + {"f_03__hd_0_0_0", "Not Set"}, + {"f_03__hd_0_0_-1", "Not Set"}, + {"f_03__hd_0_0_1", "Not Set"}, + {"f_03__hd_0_0_-2", "Not Set"}, + {"f_03__hd_0_0_2", "Not Set"}, + {"f_03__hd_0_0_-3", "Not Set"}, + {"f_03__hd_0_0_3", "Not Set"}, + {"f_03__hd_0_0_-4", "Not Set"}, + {"f_03__hd_0_-1_0", "Not Set"}, + {"f_03__hd_0_1_0", "Not Set"}, + {"f_03__hd_0_-1_-1", "Not Set"}, + {"f_03__hd_0_-1_1", "Not Set"}, + {"f_03__hd_0_1_-1", "Not Set"}, + {"f_03__hd_0_1_1", "Not Set"}, + {"f_03__hd_0_-1_-2", "Not Set"}, + {"f_03__hd_0_-1_2", "Not Set"}, + {"f_03__hd_0_1_-2", "Not Set"}, + {"f_03__hd_0_1_2", "Not Set"}, + {"f_03__hd_0_-1_-3", "Not Set"}, + {"f_03__hd_0_-1_3", "Not Set"}, + {"f_03__hd_0_1_-3", "Not Set"}, + {"f_03__hd_0_1_3", "Not Set"}, + {"f_03__hd_0_-1_-4", "Not Set"}, + {"f_03__hd_0_1_-4", "Not Set"}, + {"f_03__hd_0_-2_0", "Not Set"}, + {"f_03__hd_0_2_0", "Not Set"}, + {"f_03__hd_0_-2_-1", "Not Set"}, + {"f_03__hd_0_-2_1", "Not Set"}, + {"f_03__hd_0_2_-1", "Not Set"}, + {"f_03__hd_0_2_1", "Not Set"}, + {"f_03__hd_0_-2_-2", "Not Set"}, + {"f_03__hd_0_-2_2", "Not Set"}, + {"f_03__hd_0_2_-2", "Not Set"}, + {"f_03__hd_0_2_2", "Not Set"}, + {"f_03__hd_0_-2_-3", "Not Set"}, + {"f_03__hd_0_-2_3", "Not Set"}, + {"f_03__hd_0_2_-3", "Not Set"}, + {"f_03__hd_0_2_3", "Not Set"}, + {"f_03__hd_0_-2_-4", "Not Set"}, + {"f_03__hd_0_2_-4", "Not Set"}, + {"f_03__hd_0_-3_0", "Not Set"}, + {"f_03__hd_0_3_0", "Not Set"}, + {"f_03__hd_0_-3_-1", "Not Set"}, + {"f_03__hd_0_-3_1", "Not Set"}, + {"f_03__hd_0_3_-1", "Not Set"}, + {"f_03__hd_0_3_1", "Not Set"}, + {"f_03__hd_0_-3_-2", "Not Set"}, + {"f_03__hd_0_-3_2", "Not Set"}, + {"f_03__hd_0_3_-2", "Not Set"}, + {"f_03__hd_0_3_2", "Not Set"}, + {"f_03__hd_0_-3_-3", "Not Set"}, + {"f_03__hd_0_-3_3", "Not Set"}, + {"f_03__hd_0_3_-3", "Not Set"}, + {"f_03__hd_0_3_3", "Not Set"}, + {"f_03__hd_0_-3_-4", "Not Set"}, + {"f_03__hd_0_3_-4", "Not Set"}, + {"f_03__hd_0_-4_0", "Not Set"}, + {"f_03__hd_0_-4_-1", "Not Set"}, + {"f_03__hd_0_-4_1", "Not Set"}, + {"f_03__hd_0_-4_-2", "Not Set"}, + {"f_03__hd_0_-4_2", "Not Set"}, + {"f_03__hd_0_-4_-3", "Not Set"}, + {"f_03__hd_0_-4_3", "Not Set"}, + {"f_03__hd_0_-4_-4", "Not Set"}, + {"f_03_slod2", "Not Set"}, + {"f_04_slod2", "Not Set"}, + {"f_05_SLOD2", "Not Set"}, + {"f_06_SLOD2", "Not Set"}, + {"f_07_SLOD2", "Not Set"}, + {"f_08_SLOD2", "Not Set"}, + {"f_09_SLOD2", "Not Set"}, + {"f_10_SLOD2", "Not Set"}, + {"f_11_slod2", "Not Set"}, + {"f_12_slod2", "Not Set"}, + {"f_13_slod2", "Not Set"}, + {"f_14_slod2", "Not Set"}, + {"fghi_03_06_slod4", "Not Set"}, + {"fghi_07_10_slod4", "Not Set"}, + {"fghi_11_14_area_slod4", "Not Set"}, + {"fghi_11_14_slod4", "Not Set"}, + {"fghi_15_18_slod4", "Not Set"}, + {"fghi_3_6_area_slod4", "Not Set"}, + {"fghi_3_6_donotremove", "Not Set"}, + {"fghi_7_10_area_slod4", "Not Set"}, + {"g_03_slod2", "Not Set"}, + {"g_04_slod2", "Not Set"}, + {"g_05_SLOD2", "Not Set"}, + {"g_06_SLOD2", "Not Set"}, + {"g_07_SLOD2", "Not Set"}, + {"g_08_SLOD2", "Not Set"}, + {"g_09_SLOD2", "Not Set"}, + {"g_10_SLOD2", "Not Set"}, + {"g_11_slod2", "Not Set"}, + {"g_12_slod2", "Not Set"}, + {"g_13_slod2", "Not Set"}, + {"g_14_slod2", "Not Set"}, + {"gri_bridge_01_slod", "Not Set"}, + {"gri_bridge_02_slod", "Not Set"}, + {"gri_ropebridge_03_lod", "Not Set"}, + {"gri_ropebridge_slod", "Not Set"}, + {"h_03_slod2", "Not Set"}, + {"h_04_slod2", "Not Set"}, + {"h_05__hd_0_0_0", "Not Set"}, + {"h_05__hd_0_0_-1", "Not Set"}, + {"h_05__hd_0_0_1", "Not Set"}, + {"h_05__hd_0_0_-2", "Not Set"}, + {"h_05__hd_0_0_2", "Not Set"}, + {"h_05__hd_0_0_-3", "Not Set"}, + {"h_05__hd_0_0_3", "Not Set"}, + {"h_05__hd_0_0_-4", "Not Set"}, + {"h_05__hd_0_-1_0", "Not Set"}, + {"h_05__hd_0_1_0", "Not Set"}, + {"h_05__hd_0_-1_-1", "Not Set"}, + {"h_05__hd_0_-1_1", "Not Set"}, + {"h_05__hd_0_1_-1", "Not Set"}, + {"h_05__hd_0_1_1", "Not Set"}, + {"h_05__hd_0_-1_-2", "Not Set"}, + {"h_05__hd_0_-1_2", "Not Set"}, + {"h_05__hd_0_1_-2", "Not Set"}, + {"h_05__hd_0_1_2", "Not Set"}, + {"h_05__hd_0_-1_-3", "Not Set"}, + {"h_05__hd_0_-1_3", "Not Set"}, + {"h_05__hd_0_1_-3", "Not Set"}, + {"h_05__hd_0_1_3", "Not Set"}, + {"h_05__hd_0_-1_-4", "Not Set"}, + {"h_05__hd_0_1_-4", "Not Set"}, + {"h_05__hd_0_-2_0", "Not Set"}, + {"h_05__hd_0_2_0", "Not Set"}, + {"h_05__hd_0_-2_-1", "Not Set"}, + {"h_05__hd_0_-2_1", "Not Set"}, + {"h_05__hd_0_2_-1", "Not Set"}, + {"h_05__hd_0_2_1", "Not Set"}, + {"h_05__hd_0_-2_-2", "Not Set"}, + {"h_05__hd_0_-2_2", "Not Set"}, + {"h_05__hd_0_2_-2", "Not Set"}, + {"h_05__hd_0_2_2", "Not Set"}, + {"h_05__hd_0_-2_-3", "Not Set"}, + {"h_05__hd_0_-2_3", "Not Set"}, + {"h_05__hd_0_2_-3", "Not Set"}, + {"h_05__hd_0_2_3", "Not Set"}, + {"h_05__hd_0_-2_-4", "Not Set"}, + {"h_05__hd_0_2_-4", "Not Set"}, + {"h_05__hd_0_-3_0", "Not Set"}, + {"h_05__hd_0_3_0", "Not Set"}, + {"h_05__hd_0_-3_-1", "Not Set"}, + {"h_05__hd_0_-3_1", "Not Set"}, + {"h_05__hd_0_3_-1", "Not Set"}, + {"h_05__hd_0_3_1", "Not Set"}, + {"h_05__hd_0_-3_-2", "Not Set"}, + {"h_05__hd_0_-3_2", "Not Set"}, + {"h_05__hd_0_3_-2", "Not Set"}, + {"h_05__hd_0_3_2", "Not Set"}, + {"h_05__hd_0_-3_-3", "Not Set"}, + {"h_05__hd_0_-3_3", "Not Set"}, + {"h_05__hd_0_3_-3", "Not Set"}, + {"h_05__hd_0_3_3", "Not Set"}, + {"h_05__hd_0_-3_-4", "Not Set"}, + {"h_05__hd_0_3_-4", "Not Set"}, + {"h_05__hd_0_-4_0", "Not Set"}, + {"h_05__hd_0_-4_-1", "Not Set"}, + {"h_05__hd_0_-4_1", "Not Set"}, + {"h_05__hd_0_-4_-2", "Not Set"}, + {"h_05__hd_0_-4_2", "Not Set"}, + {"h_05__hd_0_-4_-3", "Not Set"}, + {"h_05__hd_0_-4_3", "Not Set"}, + {"h_05__hd_0_-4_-4", "Not Set"}, + {"h_05p_glacier_runnoff", "Not Set"}, + {"h_05_slod2", "Not Set"}, + {"h_06_decal_02", "Not Set"}, + {"h_06_decal_03", "Not Set"}, + {"h_06_decal_04", "Not Set"}, + {"h_06_decal_05", "Not Set"}, + {"h_06_decal_06", "Not Set"}, + {"h_06_decal_07", "Not Set"}, + {"h_06_decal_08", "Not Set"}, + {"h_06_decal_09", "Not Set"}, + {"h_06_decal_10", "Not Set"}, + {"h_06_decal_11", "Not Set"}, + {"h_06_decal_12", "Not Set"}, + {"h_06_decal13", "Not Set"}, + {"h_06_decal14", "Not Set"}, + {"h_06_decal15", "Not Set"}, + {"h_06_decal16", "Not Set"}, + {"h_06__hd_0_0_0", "Not Set"}, + {"h_06__hd_0_0_-1", "Not Set"}, + {"h_06__hd_0_0_1", "Not Set"}, + {"h_06__hd_0_0_-2", "Not Set"}, + {"h_06__hd_0_0_2", "Not Set"}, + {"h_06__hd_0_0_-3", "Not Set"}, + {"h_06__hd_0_0_3", "Not Set"}, + {"h_06__hd_0_0_-4", "Not Set"}, + {"h_06__hd_0_-1_0", "Not Set"}, + {"h_06__hd_0_1_0", "Not Set"}, + {"h_06__hd_0_-1_-1", "Not Set"}, + {"h_06__hd_0_-1_1", "Not Set"}, + {"h_06__hd_0_1_-1", "Not Set"}, + {"h_06__hd_0_1_1", "Not Set"}, + {"h_06__hd_0_-1_-2", "Not Set"}, + {"h_06__hd_0_-1_2", "Not Set"}, + {"h_06__hd_0_1_-2", "Not Set"}, + {"h_06__hd_0_1_2", "Not Set"}, + {"h_06__hd_0_-1_-3", "Not Set"}, + {"h_06__hd_0_-1_3", "Not Set"}, + {"h_06__hd_0_1_-3", "Not Set"}, + {"h_06__hd_0_1_3", "Not Set"}, + {"h_06__hd_0_-1_-4", "Not Set"}, + {"h_06__hd_0_1_-4", "Not Set"}, + {"h_06__hd_0_-2_0", "Not Set"}, + {"h_06__hd_0_2_0", "Not Set"}, + {"h_06__hd_0_-2_-1", "Not Set"}, + {"h_06__hd_0_-2_1", "Not Set"}, + {"h_06__hd_0_2_-1", "Not Set"}, + {"h_06__hd_0_2_1", "Not Set"}, + {"h_06__hd_0_-2_-2", "Not Set"}, + {"h_06__hd_0_-2_2", "Not Set"}, + {"h_06__hd_0_2_-2", "Not Set"}, + {"h_06__hd_0_2_2", "Not Set"}, + {"h_06__hd_0_-2_-3", "Not Set"}, + {"h_06__hd_0_-2_3", "Not Set"}, + {"h_06__hd_0_2_-3", "Not Set"}, + {"h_06__hd_0_2_3", "Not Set"}, + {"h_06__hd_0_-2_-4", "Not Set"}, + {"h_06__hd_0_2_-4", "Not Set"}, + {"h_06__hd_0_-3_0", "Not Set"}, + {"h_06__hd_0_3_0", "Not Set"}, + {"h_06__hd_0_-3_-1", "Not Set"}, + {"h_06__hd_0_-3_1", "Not Set"}, + {"h_06__hd_0_3_-1", "Not Set"}, + {"h_06__hd_0_3_1", "Not Set"}, + {"h_06__hd_0_-3_-2", "Not Set"}, + {"h_06__hd_0_-3_2", "Not Set"}, + {"h_06__hd_0_3_-2", "Not Set"}, + {"h_06__hd_0_3_2", "Not Set"}, + {"h_06__hd_0_-3_-3", "Not Set"}, + {"h_06__hd_0_-3_3", "Not Set"}, + {"h_06__hd_0_3_-3", "Not Set"}, + {"h_06__hd_0_3_3", "Not Set"}, + {"h_06__hd_0_-3_-4", "Not Set"}, + {"h_06__hd_0_3_-4", "Not Set"}, + {"h_06__hd_0_-4_0", "Not Set"}, + {"h_06__hd_0_-4_-1", "Not Set"}, + {"h_06__hd_0_-4_1", "Not Set"}, + {"h_06__hd_0_-4_-2", "Not Set"}, + {"h_06__hd_0_-4_2", "Not Set"}, + {"h_06__hd_0_-4_-3", "Not Set"}, + {"h_06__hd_0_-4_3", "Not Set"}, + {"h_06__hd_0_-4_-4", "Not Set"}, + {"h_06_middle_decal001", "Not Set"}, + {"h_06_middle_decal02", "Not Set"}, + {"h_06_middle_decal03", "Not Set"}, + {"h_06_middle_decal04", "Not Set"}, + {"h_06_middle_decal05", "Not Set"}, + {"h_06_slod2", "Not Set"}, + {"h_06__test_de01", "Not Set"}, + {"h_06__test_de02", "Not Set"}, + {"h_06_test_de03", "Not Set"}, + {"h_07_slod2", "Not Set"}, + {"h_08_slod2", "Not Set"}, + {"h_09_slod2", "Not Set"}, + {"h_10_slod2", "Not Set"}, + {"h_11_slod2", "Not Set"}, + {"h_12_slod2", "Not Set"}, + {"hbr_at_slod", "Not Set"}, + {"hbr_l_10_temp_slod", "Not Set"}, + {"heardsg_combo01_slod", "Not Set"}, + {"heardsg_combo02_slod", "Not Set"}, + {"heardsg_combo03_slod", "Not Set"}, + {"heardsg_combo04_slod", "Not Set"}, + {"heardsg_combo06_slod", "Not Set"}, + {"heardsg_combo07_slod", "Not Set"}, + {"heardsg_combo08_slod", "Not Set"}, + {"heardsg_combo10_slod", "Not Set"}, + {"heardsg_combo11_slod", "Not Set"}, + {"heardsg_combo13_slod", "Not Set"}, + {"heardsg_combo14_slod", "Not Set"}, + {"heardsg_combo15_slod", "Not Set"}, + {"heardsg_combo16_slod", "Not Set"}, + {"heardsg_combo18_slod", "Not Set"}, + {"heardsg_combo19_slod", "Not Set"}, + {"heardsg_combo20_slod", "Not Set"}, + {"heardsg_combo21_slod", "Not Set"}, + {"heardsg_combo22_slod", "Not Set"}, + {"hea_sign_22_lod", "Not Set"}, + {"hea_sign_23_lod", "Not Set"}, + {"her_01_shack_01", "Not Set"}, + {"her_01_shack_01_dc", "Not Set"}, + {"her_01_shack_01_vfx", "Not Set"}, + {"her_01_shackdog_1", "Not Set"}, + {"her_01_shackdog_2", "Not Set"}, + {"her_01_shackdog_3", "Not Set"}, + {"her_01_sign_1", "Not Set"}, + {"her_01_sign_2", "Not Set"}, + {"her_01_sign_3", "Not Set"}, + {"her_01_temp", "Not Set"}, + {"her_dg_end_dec_005", "Not Set"}, + {"her_dg_end_dec_006", "Not Set"}, + {"her_dg_end_dec_3", "Not Set"}, + {"her_dg_nail_dec_004", "Not Set"}, + {"her_dg_nail_dec_005", "Not Set"}, + {"her_dg_nail_dec_3", "Not Set"}, + {"hi_13_14_area_slod3", "Not Set"}, + {"i_03__hd_0_0_0", "Not Set"}, + {"i_03__hd_0_0_-1", "Not Set"}, + {"i_03__hd_0_0_1", "Not Set"}, + {"i_03__hd_0_0_-2", "Not Set"}, + {"i_03__hd_0_0_2", "Not Set"}, + {"i_03__hd_0_0_-3", "Not Set"}, + {"i_03__hd_0_0_3", "Not Set"}, + {"i_03__hd_0_0_-4", "Not Set"}, + {"i_03__hd_0_-1_0", "Not Set"}, + {"i_03__hd_0_1_0", "Not Set"}, + {"i_03__hd_0_-1_-1", "Not Set"}, + {"i_03__hd_0_-1_1", "Not Set"}, + {"i_03__hd_0_1_-1", "Not Set"}, + {"i_03__hd_0_1_1", "Not Set"}, + {"i_03__hd_0_-1_-2", "Not Set"}, + {"i_03__hd_0_-1_2", "Not Set"}, + {"i_03__hd_0_1_-2", "Not Set"}, + {"i_03__hd_0_1_2", "Not Set"}, + {"i_03__hd_0_-1_-3", "Not Set"}, + {"i_03__hd_0_-1_3", "Not Set"}, + {"i_03__hd_0_1_-3", "Not Set"}, + {"i_03__hd_0_1_3", "Not Set"}, + {"i_03__hd_0_-1_-4", "Not Set"}, + {"i_03__hd_0_1_-4", "Not Set"}, + {"i_03__hd_0_-2_0", "Not Set"}, + {"i_03__hd_0_2_0", "Not Set"}, + {"i_03__hd_0_-2_-1", "Not Set"}, + {"i_03__hd_0_-2_1", "Not Set"}, + {"i_03__hd_0_2_-1", "Not Set"}, + {"i_03__hd_0_2_1", "Not Set"}, + {"i_03__hd_0_-2_-2", "Not Set"}, + {"i_03__hd_0_-2_2", "Not Set"}, + {"i_03__hd_0_2_-2", "Not Set"}, + {"i_03__hd_0_2_2", "Not Set"}, + {"i_03__hd_0_-2_-3", "Not Set"}, + {"i_03__hd_0_-2_3", "Not Set"}, + {"i_03__hd_0_2_-3", "Not Set"}, + {"i_03__hd_0_2_3", "Not Set"}, + {"i_03__hd_0_-2_-4", "Not Set"}, + {"i_03__hd_0_2_-4", "Not Set"}, + {"i_03__hd_0_-3_0", "Not Set"}, + {"i_03__hd_0_3_0", "Not Set"}, + {"i_03__hd_0_-3_-1", "Not Set"}, + {"i_03__hd_0_-3_1", "Not Set"}, + {"i_03__hd_0_3_-1", "Not Set"}, + {"i_03__hd_0_3_1", "Not Set"}, + {"i_03__hd_0_-3_-2", "Not Set"}, + {"i_03__hd_0_-3_2", "Not Set"}, + {"i_03__hd_0_3_-2", "Not Set"}, + {"i_03__hd_0_3_2", "Not Set"}, + {"i_03__hd_0_-3_-3", "Not Set"}, + {"i_03__hd_0_-3_3", "Not Set"}, + {"i_03__hd_0_3_-3", "Not Set"}, + {"i_03__hd_0_3_3", "Not Set"}, + {"i_03__hd_0_-3_-4", "Not Set"}, + {"i_03__hd_0_3_-4", "Not Set"}, + {"i_03__hd_0_-4_0", "Not Set"}, + {"i_03__hd_0_-4_-1", "Not Set"}, + {"i_03__hd_0_-4_1", "Not Set"}, + {"i_03__hd_0_-4_-2", "Not Set"}, + {"i_03__hd_0_-4_2", "Not Set"}, + {"i_03__hd_0_-4_-3", "Not Set"}, + {"i_03__hd_0_-4_3", "Not Set"}, + {"i_03__hd_0_-4_-4", "Not Set"}, + {"i_03_slod2", "Not Set"}, + {"i_04_slod2", "Not Set"}, + {"i_05_slod2", "Not Set"}, + {"i_06_slod2", "Not Set"}, + {"i_07_slod2", "Not Set"}, + {"i_08_slod2", "Not Set"}, + {"i_09_slod2", "Not Set"}, + {"i_10_slod2", "Not Set"}, + {"i_11_slod2", "Not Set"}, + {"i_12_slod2", "Not Set"}, + {"j_03_slod2", "Not Set"}, + {"j_04_slod2", "Not Set"}, + {"j_05_slod2", "Not Set"}, + {"j_06_slod2", "Not Set"}, + {"j_07p_vfx_helper_001", "Not Set"}, + {"j_07p_vfx_helper_002", "Not Set"}, + {"j_07p_vfx_helper_003", "Not Set"}, + {"j_07_slod2", "Not Set"}, + {"j_08_slod2", "Not Set"}, + {"j_09_ftr_slod2", "Not Set"}, + {"j_09_slod2", "Not Set"}, + {"j_10_slod2", "Not Set"}, + {"j_11_slod2", "Not Set"}, + {"j_12_slod2", "Not Set"}, + {"j_13_slod2", "Not Set"}, + {"j_14_slod2", "Not Set"}, + {"j_15_SLOD2", "Not Set"}, + {"j_16_SLOD2", "Not Set"}, + {"j_17_slod2", "Not Set"}, + {"j_18_slod2", "Not Set"}, + {"jk_05_06_mic_slod2", "Not Set"}, + {"jk_05_06_min_slod2", "Not Set"}, + {"jk_05_06_s_sc_slod2", "Not Set"}, + {"jk_07_08_area_slod3", "Not Set"}, + {"jk_07_08_mil_slod2", "Not Set"}, + {"jk_09_10_area_slod3", "Not Set"}, + {"jk_09_10_bridge01_slod2", "Not Set"}, + {"jk_09_10_six_slod2", "Not Set"}, + {"JK_11_12_AREA_SLOD3", "Not Set"}, + {"JK_13_14_AREA_SLOD3", "Not Set"}, + {"jk_15_16_ann_slod2", "Not Set"}, + {"jk_15_16_area_slod3", "Not Set"}, + {"jk_15_16_house_es_slod4", "Not Set"}, + {"jk_5_6_area_slod3", "Not Set"}, + {"jklm_03_06_slod4", "Not Set"}, + {"jklm_07_10_area_slod4", "Not Set"}, + {"jklm_07_10_slod4", "Not Set"}, + {"jklm_11_14_area_slod4", "Not Set"}, + {"jklm_11_14_slod4", "Not Set"}, + {"jklm_15_18_area_slod4", "Not Set"}, + {"jklm_15_18_slod4", "Not Set"}, + {"jklm_3_6_area_slod4", "Not Set"}, + {"jklm_3_6_occ_dontdelete", "Not Set"}, + {"k_03_slod2", "Not Set"}, + {"k_04_slod2", "Not Set"}, + {"k_05_slod2", "Not Set"}, + {"k_06_slod2", "Not Set"}, + {"k_07_slod2", "Not Set"}, + {"k_08_slod2", "Not Set"}, + {"k_09_slod2", "Not Set"}, + {"k_10_slod2", "Not Set"}, + {"k_11_slod2", "Not Set"}, + {"k_12_slod2", "Not Set"}, + {"k_13_ftr_slod2", "Not Set"}, + {"k_13_slod2", "Not Set"}, + {"k_14_slod2", "Not Set"}, + {"k_15_SLOD2", "Not Set"}, + {"k_16_SLOD2", "Not Set"}, + {"k_17_slod2", "Not Set"}, + {"k_18_slod2", "Not Set"}, + {"l_03_slod2", "Not Set"}, + {"l_04_slod2", "Not Set"}, + {"l_05_slod2", "Not Set"}, + {"l_06_slod2", "Not Set"}, + {"l_07_slod2", "Not Set"}, + {"l_08_slod2", "Not Set"}, + {"l_09_slod2", "Not Set"}, + {"l_10_slod2", "Not Set"}, + {"l_11_slod2", "Not Set"}, + {"l_12_slod2", "Not Set"}, + {"l_13_SLOD2", "Not Set"}, + {"l_14_SLOD2", "Not Set"}, + {"l_15_slod2", "Not Set"}, + {"l_16_slod2", "Not Set"}, + {"l_17_SLOD2", "Not Set"}, + {"l_18_SLOD2", "Not Set"}, + {"lm_05_06_han_slod2", "Not Set"}, + {"lm_05_06_s_hb_slod2", "Not Set"}, + {"lm_05_06_wat_slod2", "Not Set"}, + {"lm_07_08_area_slod3", "Not Set"}, + {"lm_07_08_wal_slod2", "Not Set"}, + {"lm_09_10_area_slod3", "Not Set"}, + {"lm_09_10_corder_es_slod2", "Not Set"}, + {"lm_09_10_corder_slod2", "Not Set"}, + {"lm_09_10_corwr_es_slod2", "Not Set"}, + {"lm_09_10_corwr_slod2", "Not Set"}, + {"lm_09_10_hea_slod2", "Not Set"}, + {"lm_09_10_val_es_slod3", "Not Set"}, + {"lm_09_10_val_orig_slod3", "Not Set"}, + {"lm_09_10_val_slod2", "Not Set"}, + {"lm_11_11_lar_slod2", "Not Set"}, + {"LM_11_12_AREA_SLOD3", "Not Set"}, + {"lm_11_12_eme_slod2", "Not Set"}, + {"lm_11_12_s_lc_slod2", "Not Set"}, + {"LM_13_14_AREA_SLOD3", "Not Set"}, + {"lm_13_14_moo4_slod2", "Not Set"}, + {"lm_15_16_cop_slod2", "Not Set"}, + {"lm_15_16_horseboat_slod2", "Not Set"}, + {"lm_15_16_hrs_slod2", "Not Set"}, + {"lm_15_16_van_slod2", "Not Set"}, + {"lm_5_6_area_slod3", "Not Set"}, + {"log_01__log01_combo_slod", "Not Set"}, + {"m_03_slod2", "Not Set"}, + {"m_04_slod2", "Not Set"}, + {"m_05_slod2", "Not Set"}, + {"m_06_slod2", "Not Set"}, + {"m_07_slod2", "Not Set"}, + {"m_08_slod2", "Not Set"}, + {"m_09_ftr_slod2", "Not Set"}, + {"m_09_slod2", "Not Set"}, + {"m_10_ftr_slod2", "Not Set"}, + {"m_10_slod2", "Not Set"}, + {"m_11_slod2", "Not Set"}, + {"m_12_slod2", "Not Set"}, + {"m_13_SLOD2", "Not Set"}, + {"m_14_SLOD2", "Not Set"}, + {"m_15_slod2", "Not Set"}, + {"m_16_slod2", "Not Set"}, + {"m_17_SLOD2", "Not Set"}, + {"m_18_SLOD2", "Not Set"}, + {"map_card_gun_for_hire_sherrif_free", "Not Set"}, + {"met01_combo_slod", "Not Set"}, + {"min01pr_combo01_slod", "Not Set"}, + {"min_stor_machinery01_lod", "Not Set"}, + {"ml_end", "Not Set"}, + {"ml_start", "Not Set"}, + {"MOB2_BPAA", "Not Set"}, + {"mp001_collision_explorergear", "Not Set"}, + {"mp001_p_cs_belt_fr1_018", "Not Set"}, + {"mp001_p_cs_belt_mr1_018", "Not Set"}, + {"mp001_p_mp_tntsticknoexp01x", "Not Set"}, + {"mp001_p_racesignpost01x", "Not Set"}, + {"mp001_p_racesignpost02x", "Not Set"}, + {"mp001_p_racesignpost03x", "Not Set"}, + {"mp001_p_racesignpost04x", "Not Set"}, + {"mp001_p_racesignpost05x", "Not Set"}, + {"mp001_p_racesignpost06x", "Not Set"}, + {"mp001_p_racesignpost07x", "Not Set"}, + {"mp001_p_racesignpost08x", "Not Set"}, + {"mp001_p_racesignpost09x", "Not Set"}, + {"mp001_p_racesignpost10x", "Not Set"}, + {"mp001_p_racesignpost11x", "Not Set"}, + {"mp001_p_racesignpost12x", "Not Set"}, + {"mp001_p_racesignpost13x", "Not Set"}, + {"mp001_p_racesignpost14x", "Not Set"}, + {"mp001_p_racesignpost15x", "Not Set"}, + {"mp001_p_racesignpost16x", "Not Set"}, + {"mp001_p_racesignpost17x", "Not Set"}, + {"mp001_p_racesignpost18x", "Not Set"}, + {"mp001_p_rowboat_base02x", "Not Set"}, + {"mp001_p_veh_gunforhire01x", "Not Set"}, + {"mp001_p_veh_gunforhire02x", "Not Set"}, + {"mp001_p_veh_gunforhire03x", "Not Set"}, + {"mp001_p_veh_rowboatswamp_base01x", "Not Set"}, + {"mp001_s_mp_banner02x_med", "Not Set"}, + {"mp001_s_mp_banner03x_sml", "Not Set"}, + {"mp001_s_mp_campflagpole01x", "Not Set"}, + {"mp001_s_mp_catalogue01x_store", "Not Set"}, + {"mp001_s_mp_finishline_banner02x", "Not Set"}, + {"mp001_s_mp_finishline_banner03x", "Not Set"}, + {"mp001_s_mp_racecheckflag01x", "Not Set"}, + {"mp001_s_mp_racecheckflag02x", "Not Set"}, + {"mp001_s_mp_racefinishflag01x", "Not Set"}, + {"mp004_p_door_blackhotel01x_l", "Not Set"}, + {"mp004_p_door_blackhotel01x_r", "Not Set"}, + {"mp004_p_mpcover_gunslinger02", "Not Set"}, + {"mp004_p_mpcover_gunslinger05", "Not Set"}, + {"mp004_p_mpcover_gunslinger06", "Not Set"}, + {"mp005_bitterweed_p", "Not Set"}, + {"mp005_bloodflower_p", "Not Set"}, + {"mp005_bountywagon01x_wheel_lf", "Not Set"}, + {"mp005_bountywagon01x_wheel_lr", "Not Set"}, + {"mp005_cardinalflw_p", "Not Set"}, + {"mp005_chocdaisy_p", "Not Set"}, + {"mp005_huntercart01_wheel_lf", "Not Set"}, + {"mp005_huntercart01_wheel_lr", "Not Set"}, + {"mp005_p_mp_covercomb_hm_ado", "Not Set"}, + {"mp005_p_mp_covercomb_hm_cr", "Not Set"}, + {"mp005_p_mp_covercomb_hm_lag", "Not Set"}, + {"mp005_p_mp_covercomb_hm_sd", "Not Set"}, + {"mp005_p_mp_covercomb_l_ado", "Not Set"}, + {"mp005_p_mp_covercomb_l_col", "Not Set"}, + {"mp005_p_mp_covercomb_l_cr", "Not Set"}, + {"mp005_p_mp_covercomb_l_lag", "Not Set"}, + {"mp005_p_mp_covercomb_l_mt", "Not Set"}, + {"mp005_p_mp_covercomb_l_tt", "Not Set"}, + {"mp005_p_mp_covercomb_lu_ado", "Not Set"}, + {"mp005_p_mp_covercomb_lu_ch", "Not Set"}, + {"mp005_p_mp_covercomb_lu_col", "Not Set"}, + {"mp005_p_mp_covercomb_lu_cr", "Not Set"}, + {"mp005_p_mp_covercomb_lu_cwb", "Not Set"}, + {"mp005_p_mp_covercomb_lu_lak", "Not Set"}, + {"mp005_p_mp_covercomb_lu_spc", "Not Set"}, + {"mp005_p_mp_covercomb_m_ado", "Not Set"}, + {"mp005_p_mp_covercomb_m_ch", "Not Set"}, + {"mp005_p_mp_covercomb_m_col", "Not Set"}, + {"mp005_p_mp_covercomb_m_cr", "Not Set"}, + {"mp005_p_mp_covercomb_m_cwb", "Not Set"}, + {"mp005_p_mp_covercomb_m_hdr", "Not Set"}, + {"mp005_p_mp_covercomb_m_lak", "Not Set"}, + {"mp005_p_mp_covercomb_m_mt", "Not Set"}, + {"mp005_p_mp_covercomb_m_sd", "Not Set"}, + {"mp005_p_mp_covercomb_m_spc", "Not Set"}, + {"mp005_p_mp_covercomb_m_tt", "Not Set"}, + {"mp005_p_mp_covercomb_mu_ado", "Not Set"}, + {"mp005_p_mp_covercomb_mu_ch", "Not Set"}, + {"mp005_p_mp_covercomb_mu_col", "Not Set"}, + {"mp005_p_mp_covercomb_mu_cr", "Not Set"}, + {"mp005_p_mp_covercomb_mu_lag", "Not Set"}, + {"mp005_p_mp_covercomb_mu_sd", "Not Set"}, + {"mp005_p_mp_covercomb_mu_tt", "Not Set"}, + {"mp005_p_mp_covercomb_s_ado", "Not Set"}, + {"mp005_p_mp_covercomb_s_bw", "Not Set"}, + {"mp005_p_mp_covercomb_s_ch", "Not Set"}, + {"mp005_p_mp_covercomb_s_col", "Not Set"}, + {"mp005_p_mp_covercomb_s_cr", "Not Set"}, + {"mp005_p_mp_covercomb_s_cwb", "Not Set"}, + {"mp005_p_mp_covercomb_s_hdr", "Not Set"}, + {"mp005_p_mp_covercomb_s_lag", "Not Set"}, + {"mp005_p_mp_covercomb_s_lak", "Not Set"}, + {"mp005_p_mp_covercomb_s_mt", "Not Set"}, + {"mp005_p_mp_covercomb_s_sb", "Not Set"}, + {"mp005_p_mp_covercomb_s_sd", "Not Set"}, + {"mp005_p_mp_covercomb_s_spc", "Not Set"}, + {"mp005_p_mp_covercomb_s_tt", "Not Set"}, + {"mp005_p_mpcover_gunslinger06", "Not Set"}, + {"mp005_p_mp_cover_h_ado", "Not Set"}, + {"mp005_p_mp_cover_h_col", "Not Set"}, + {"mp005_p_mp_cover_h_cr", "Not Set"}, + {"mp005_p_mp_cover_h_cwb", "Not Set"}, + {"mp005_p_mp_cover_h_lak", "Not Set"}, + {"mp005_p_mp_cover_hl_col", "Not Set"}, + {"mp005_p_mp_cover_hl_cr", "Not Set"}, + {"mp005_p_mp_cover_hl_mt", "Not Set"}, + {"mp005_p_mp_cover_hl_sb", "Not Set"}, + {"mp005_p_mp_cover_hl_spc", "Not Set"}, + {"mp005_p_mp_cover_hl_tt", "Not Set"}, + {"mp005_p_mp_cover_h_mt", "Not Set"}, + {"mp005_p_mp_cover_h_sd", "Not Set"}, + {"mp005_p_mp_cover_h_tt", "Not Set"}, + {"mp005_p_mp_cover_s_bw", "Not Set"}, + {"mp005_p_mp_cover_s_col", "Not Set"}, + {"mp005_p_mp_cover_sh_ado", "Not Set"}, + {"mp005_p_mp_cover_sh_bw", "Not Set"}, + {"mp005_p_mp_cover_sh_col", "Not Set"}, + {"mp005_p_mp_cover_sh_cr", "Not Set"}, + {"mp005_p_mp_cover_sh_cwb", "Not Set"}, + {"mp005_p_mp_cover_sh_hdr", "Not Set"}, + {"mp005_p_mp_cover_sh_lak", "Not Set"}, + {"mp005_p_mp_cover_sh_mt", "Not Set"}, + {"mp005_p_mp_cover_sh_sd", "Not Set"}, + {"mp005_p_mp_cover_sh_spc", "Not Set"}, + {"mp005_p_mp_cover_sh_tt", "Not Set"}, + {"mp005_p_mp_cover_sl_ado", "Not Set"}, + {"mp005_p_mp_cover_s_lak", "Not Set"}, + {"mp005_p_mp_cover_sl_bw", "Not Set"}, + {"mp005_p_mp_cover_sl_ch", "Not Set"}, + {"mp005_p_mp_cover_sl_col", "Not Set"}, + {"mp005_p_mp_cover_sl_cr", "Not Set"}, + {"mp005_p_mp_cover_sl_cwb", "Not Set"}, + {"mp005_p_mp_cover_sl_hdr", "Not Set"}, + {"mp005_p_mp_cover_sl_lag", "Not Set"}, + {"mp005_p_mp_cover_sl_lak", "Not Set"}, + {"mp005_p_mp_cover_sl_mt", "Not Set"}, + {"mp005_p_mp_cover_sl_spc", "Not Set"}, + {"mp005_p_mp_cover_sl_tt", "Not Set"}, + {"mp005_p_mp_cover_sm_ado", "Not Set"}, + {"mp005_p_mp_cover_sm_bw", "Not Set"}, + {"mp005_p_mp_cover_sm_ch", "Not Set"}, + {"mp005_p_mp_cover_sm_col", "Not Set"}, + {"mp005_p_mp_cover_sm_cr", "Not Set"}, + {"mp005_p_mp_cover_sm_hdr", "Not Set"}, + {"mp005_p_mp_cover_sm_lag", "Not Set"}, + {"mp005_p_mp_cover_sm_mt", "Not Set"}, + {"mp005_p_mp_cover_sm_spc", "Not Set"}, + {"mp005_p_mp_cover_ss_bw", "Not Set"}, + {"mp005_p_mp_cover_ss_ch", "Not Set"}, + {"mp005_p_mp_cover_ss_col", "Not Set"}, + {"mp005_p_mp_cover_ss_cr", "Not Set"}, + {"mp005_p_mp_cover_ss_cwb", "Not Set"}, + {"mp005_p_mp_cover_ss_hdr", "Not Set"}, + {"mp005_p_mp_cover_ss_lak", "Not Set"}, + {"mp005_p_mp_cover_ss_mt", "Not Set"}, + {"mp005_p_mp_cover_ss_sb", "Not Set"}, + {"mp005_p_mp_cover_ss_sd", "Not Set"}, + {"mp005_p_mp_cover_ss_spc", "Not Set"}, + {"mp005_p_mp_cover_s_tt", "Not Set"}, + {"mp005_p_mp_cover_su_ado", "Not Set"}, + {"mp005_p_mp_cover_su_col", "Not Set"}, + {"mp005_p_mp_cover_su_cr", "Not Set"}, + {"mp005_p_mp_cover_su_cwb", "Not Set"}, + {"mp005_p_mp_cover_su_hdr", "Not Set"}, + {"mp005_p_mp_cover_su_lag", "Not Set"}, + {"mp005_p_mp_cover_su_lak", "Not Set"}, + {"mp005_p_mp_cover_su_mt", "Not Set"}, + {"mp005_p_mp_cover_su_sb", "Not Set"}, + {"mp005_p_mp_cover_su_spc", "Not Set"}, + {"mp005_p_veh_trader_resupply01x", "Not Set"}, + {"mp005_rhubarb_p", "Not Set"}, + {"mp005_s_bdeg_duck_egg01x", "Not Set"}, + {"mp005_s_bdeg_egret_egg01x", "Not Set"}, + {"mp005_s_bdeg_goose_egg01x", "Not Set"}, + {"mp005_s_bdeg_hawknest01x", "Not Set"}, + {"mp005_s_bdeg_heron_egg01x", "Not Set"}, + {"mp005_s_bdeg_loon_egg01x", "Not Set"}, + {"mp005_s_bdeg_spoonbill_egg01x", "Not Set"}, + {"mp005_s_inv_agarita_01bx", "Not Set"}, + {"mp005_s_inv_agarita_01x", "Not Set"}, + {"mp005_s_inv_bitterweed01dx", "Not Set"}, + {"mp005_s_inv_bitterweed01x", "Not Set"}, + {"mp005_s_inv_bloodflw01dx", "Not Set"}, + {"mp005_s_inv_bloodflw01x", "Not Set"}, + {"mp005_s_inv_cardinal01dx", "Not Set"}, + {"mp005_s_inv_cardinal01x", "Not Set"}, + {"mp005_s_inv_chocdaisy01dx", "Not Set"}, + {"mp005_s_inv_chocdaisy01x", "Not Set"}, + {"mp005_s_inv_creekplum01bx", "Not Set"}, + {"mp005_s_inv_creekplum01x", "Not Set"}, + {"mp005_s_inv_rhub01bx", "Not Set"}, + {"mp005_s_inv_rhub01x", "Not Set"}, + {"mp005_s_inv_texasbon01dx", "Not Set"}, + {"mp005_s_inv_texasbon01x", "Not Set"}, + {"mp005_s_inv_wisteria01bx", "Not Set"}, + {"mp005_s_inv_wisteria01x", "Not Set"}, + {"mp005_s_mp_wildanimalcagelock01x", "Not Set"}, + {"mp005_s_posse_tent_bountyhunter03x", "Not Set"}, + {"mp005_s_posse_tent_bountyhunter05x", "Not Set"}, + {"mp005_texasbon_p", "Not Set"}, + {"MP006_p_Bar_ph_backdrop04x", "Not Set"}, + {"MP006_p_Bar_ph_backdrop04x_s", "Not Set"}, + {"mp006_p_bowl_apple01x", "Not Set"}, + {"mp006_p_bowl_banana01x", "Not Set"}, + {"mp006_p_bowl_empty01x", "Not Set"}, + {"MP006_p_Countryside_ph_backdrop02x", "Not Set"}, + {"MP006_p_Countryside_ph_backdrop02x_s", "Not Set"}, + {"mp006_p_crate01x_nobrand", "Not Set"}, + {"mp006_p_cs_canegun01x", "Not Set"}, + {"mp006_p_dblcello01x", "Not Set"}, + {"mp006_p_dbstand01x", "Not Set"}, + {"mp006_pg_rowboat_propset01x", "Not Set"}, + {"mp006_p_guitar02x", "Not Set"}, + {"MP006_p_Interiors_ph_backdrop01x", "Not Set"}, + {"MP006_p_Interiors_ph_backdrop01x_s", "Not Set"}, + {"mp006_p_jug_debris01x", "Not Set"}, + {"mp006_p_maggie_ledger01x", "Not Set"}, + {"mp006_p_mnshine_hideout_map01x", "Not Set"}, + {"mp006_p_mnshine_int_blueprint_01x", "Not Set"}, + {"mp006_p_mnshine_int_blueprint_02x", "Not Set"}, + {"mp006_p_mnshn_barrel02x", "Not Set"}, + {"mp006_p_mnshn_barrel03x", "Not Set"}, + {"mp006_p_mnshn_barrelgroup01x", "Not Set"}, + {"mp006_p_mnshn_crate06x", "Not Set"}, + {"mp006_p_mnshn_crate12_01x", "Not Set"}, + {"mp006_p_mnshn_debris03x", "Not Set"}, + {"mp006_p_mnshn_tntnoexp01x", "Not Set"}, + {"mp006_p_mnshn_tntnoexp02x", "Not Set"}, + {"mp006_p_mnshn_washboard01x", "Not Set"}, + {"mp006_p_moonshine_barrel01x_dmg", "Not Set"}, + {"mp006_p_moonshine_crate01x", "Not Set"}, + {"mp006_p_moonshiner_still01x", "Not Set"}, + {"mp006_p_moonshiner_still01x_dmg", "Not Set"}, + {"mp006_p_moonshiner_still02x", "Not Set"}, + {"mp006_p_moonshiner_still02x_dmg", "Not Set"}, + {"mp006_p_moonshiner_still03x", "Not Set"}, + {"mp006_p_moonshiner_still03x_dmg", "Not Set"}, + {"mp006_p_moonshiner_still04x", "Not Set"}, + {"mp006_p_moonshiner_still04x_dmg", "Not Set"}, + {"mp006_p_moonshine_theme_festive", "Not Set"}, + {"mp006_p_moonshine_theme_floral", "Not Set"}, + {"mp006_p_moonshine_theme_hunter", "Not Set"}, + {"mp006_p_moonshine_theme_refined", "Not Set"}, + {"mp006_p_mp006_crate012x", "Not Set"}, + {"mp006_p_mp006_crate02x", "Not Set"}, + {"mp006_p_mp006_cratecanvase01x", "Not Set"}, + {"mp006_p_mp006_cratecover07x", "Not Set"}, + {"mp006_p_mp_basket04x", "Not Set"}, + {"mp006_p_mp_boatsmall02x_sunken", "Not Set"}, + {"mp006_p_mp_covercomb_hm_col", "Not Set"}, + {"mp006_p_mp_covercomb_l_col", "Not Set"}, + {"mp006_p_mp_covercomb_lu_col", "Not Set"}, + {"mp006_p_mp_covercomb_m_col", "Not Set"}, + {"mp006_p_mp_covercomb_mu_col", "Not Set"}, + {"mp006_p_mp_covercomb_s_col", "Not Set"}, + {"mp006_p_mp_cover_h_col", "Not Set"}, + {"mp006_p_mp_cover_hl_col", "Not Set"}, + {"mp006_p_mp_cover_s_col", "Not Set"}, + {"mp006_p_mp_cover_sh_col", "Not Set"}, + {"mp006_p_mp_cover_sl_col", "Not Set"}, + {"mp006_p_mp_cover_sm_col", "Not Set"}, + {"mp006_p_mp_cover_ss_col", "Not Set"}, + {"mp006_p_mp_cover_su_col", "Not Set"}, + {"mp006_p_mp_furnace01x", "Not Set"}, + {"mp006_p_mp_gankplank01x", "Not Set"}, + {"mp006_p_mp_inv_rifleammo01x", "Not Set"}, + {"mp006_p_mp_lampkerosene04x", "Not Set"}, + {"mp006_p_mp_moonshine_barrel01x", "Not Set"}, + {"mp006_p_mp_moonshine_barrel05x", "Not Set"}, + {"mp006_p_mp_oillamp01x", "Not Set"}, + {"mp006_p_mp_potflowerarng01x", "Not Set"}, + {"mp006_p_mshine_int_curtain01x", "Not Set"}, + {"mp006_p_mshine_int_door01x", "Not Set"}, + {"mp006_p_mshine_int_hatch_1", "Not Set"}, + {"mp006_p_mshine_int_hatch_2", "Not Set"}, + {"mp006_p_mshine_int_hatch_3", "Not Set"}, + {"mp006_p_mshine_int_still1_base", "Not Set"}, + {"mp006_p_mshine_int_still2_base", "Not Set"}, + {"mp006_p_mshine_int_still2_onion", "Not Set"}, + {"mp006_p_mshine_int_still3_base", "Not Set"}, + {"mp006_p_mshine_int_still3_onion", "Not Set"}, + {"mp006_p_mshine_still_onion1", "Not Set"}, + {"mp006_p_mshn_painting01x", "Not Set"}, + {"mp006_p_mshn_painting02x", "Not Set"}, + {"mp006_p_mshn_painting03x", "Not Set"}, + {"mp006_p_mshn_painting04x", "Not Set"}, + {"mp006_p_mshn_painting05x", "Not Set"}, + {"mp006_p_mshn_painting06x", "Not Set"}, + {"mp006_p_mshn_painting07x", "Not Set"}, + {"mp006_p_mshn_painting08x", "Not Set"}, + {"mp006_p_mshn_painting09x", "Not Set"}, + {"mp006_p_mshn_painting10x", "Not Set"}, + {"mp006_p_mshn_painting11x", "Not Set"}, + {"mp006_p_mshn_painting12x", "Not Set"}, + {"mp006_p_mshn_painting13x", "Not Set"}, + {"mp006_p_mshn_painting14x", "Not Set"}, + {"mp006_p_mshn_painting15x", "Not Set"}, + {"mp006_p_poisonempty01x", "Not Set"}, + {"mp006_p_shiphorn_pullrope01x", "Not Set"}, + {"MP006_p_Travel_ph_backdrop03x", "Not Set"}, + {"MP006_p_Travel_ph_backdrop03x_s", "Not Set"}, + {"mp006_p_veh_cornsacks_rowboat_1", "Not Set"}, + {"mp006_p_veh_flatcarkrgat01x_1", "Not Set"}, + {"mp006_p_veh_moonshine2_01x", "Not Set"}, + {"mp006_p_veh_xmasnsteamer01x", "Not Set"}, + {"mp006_p_wreath01x", "Not Set"}, + {"mp006_p_xmas_coal01x", "Not Set"}, + {"mp006_p_xmastree01x", "Not Set"}, + {"mp006_re_gap_rock_01", "Not Set"}, + {"mp006_re_hea_rock_01", "Not Set"}, + {"mp006_re_rio_rock_01", "Not Set"}, + {"mp006_re_rock_01", "Not Set"}, + {"mp006_re_rock_01_shad", "Not Set"}, + {"mp006_s_cft_poisonbottle01", "Not Set"}, + {"mp006_s_coin_emote01x", "Not Set"}, + {"mp006_s_flag01x_catfish", "Not Set"}, + {"mp006_s_glass_moonshine01x", "Not Set"}, + {"mp006_s_letter_breakout_lem01x", "Not Set"}, + {"mp006_s_lootablechest03x", "Not Set"}, + {"mp006_s_markercandycane", "Not Set"}, + {"mp006_s_markergingerbread", "Not Set"}, + {"mp006_s_markergumdrops", "Not Set"}, + {"MP006_S_MNSHN_PRODUCT01X_FULL", "Not Set"}, + {"MP006_S_MNSHN_PRODUCT02X_EMPTY", "Not Set"}, + {"mp006_s_mp_book_emote01x", "Not Set"}, + {"mp006_s_mp_interact_jug", "Not Set"}, + {"mp006_s_mp_interact_jug_norig", "Not Set"}, + {"mp006_s_mp_interact_jug_pickup", "Not Set"}, + {"mp006_s_racexmasflag01x", "Not Set"}, + {"mp006_s_surrender_emote01x", "Not Set"}, + {"mp006_s_tinmug_moonshine01x", "Not Set"}, + {"mp007_harrietum_p", "Not Set"}, + {"mp007_p_advancedcamera01x", "Not Set"}, + {"mp007_p_advancedcameraplate01x", "Not Set"}, + {"mp007_p_backdrop_cabin01x", "Not Set"}, + {"mp007_p_backdrop_cabin01x_s", "Not Set"}, + {"mp007_p_backdrop_cemetery01x", "Not Set"}, + {"mp007_p_backdrop_cemetery01x_s", "Not Set"}, + {"mp007_p_backdrop_china01x", "Not Set"}, + {"mp007_p_backdrop_china01x_s", "Not Set"}, + {"mp007_p_backdrop_egypt01x", "Not Set"}, + {"mp007_p_backdrop_egypt01x_s", "Not Set"}, + {"mp007_p_backdrop_field01x", "Not Set"}, + {"mp007_p_backdrop_field01x_s", "Not Set"}, + {"mp007_p_backdrop_fireplace01x", "Not Set"}, + {"mp007_p_backdrop_fireplace01x_s", "Not Set"}, + {"mp007_p_backdrop_garden01x", "Not Set"}, + {"mp007_p_backdrop_garden01x_s", "Not Set"}, + {"mp007_p_backdrop_lake01x", "Not Set"}, + {"mp007_p_backdrop_lake01x_s", "Not Set"}, + {"mp007_p_backdrop_naturalist01x", "Not Set"}, + {"mp007_p_backdrop_naturalist01x_s", "Not Set"}, + {"mp007_p_backdrop_parlour01x", "Not Set"}, + {"mp007_p_backdrop_parlour01x_s", "Not Set"}, + {"mp007_p_backdrop_stairs01x", "Not Set"}, + {"mp007_p_backdrop_stairs01x_s", "Not Set"}, + {"mp007_p_backdrop_swamp01x", "Not Set"}, + {"mp007_p_backdrop_swamp01x_s", "Not Set"}, + {"mp007_p_bait_used01x", "Not Set"}, + {"mp007_p_beartrapmp01x", "Not Set"}, + {"mp007_p_bed_nat01x", "Not Set"}, + {"mp007_p_buffhorn_torn01x", "Not Set"}, + {"mp007_p_catfish_eaten01x", "Not Set"}, + {"mp007_p_catfish_lrg01x", "Not Set"}, + {"mp007_p_catfish_sml01x", "Not Set"}, + {"mp007_p_clipboardmoonshine01x", "Not Set"}, + {"mp007_p_cs_nat_collectors01x", "Not Set"}, + {"mp007_p_fishhanging01x_catfish", "Not Set"}, + {"mp007_p_fishhanging_dam01x", "Not Set"}, + {"mp007_p_fishnet_damage01x", "Not Set"}, + {"mp007_p_fishnet_damage02x", "Not Set"}, + {"mp007_p_moonshine_theme_gothic", "Not Set"}, + {"mp007_p_mp_ammoboxset01x", "Not Set"}, + {"mp007_p_mp_basket13x", "Not Set"}, + {"mp007_p_mp_chairdesk01x", "Not Set"}, + {"mp007_p_mp_cougarkillremains01x", "Not Set"}, + {"mp007_p_mpcover_gunslinger06", "Not Set"}, + {"mp007_p_mp_deerantchandelier01x", "Not Set"}, + {"mp007_p_mp_firesticks_broken01x", "Not Set"}, + {"mp007_p_mp_horsepoop03x", "Not Set"}, + {"mp007_p_mp_jarspecimen02x", "Not Set"}, + {"mp007_p_mp_jarspecimen03x", "Not Set"}, + {"mp007_p_mp_jarspecimen04x", "Not Set"}, + {"mp007_p_mp_jarspecimen05x", "Not Set"}, + {"mp007_p_mp_jarspecimen06x", "Not Set"}, + {"mp007_p_mp_jarspecimen_group01x", "Not Set"}, + {"mp007_p_mp_microscope01x", "Not Set"}, + {"mp007_p_mp_nat_deskshelf01x", "Not Set"}, + {"mp007_p_mp_nat_filecabinet01x", "Not Set"}, + {"mp007_p_mp_naturalist_chest01x", "Not Set"}, + {"mp007_p_mp_naturalist_table01x", "Not Set"}, + {"mp007_p_mp_naturalist_tonicbox01x", "Not Set"}, + {"mp007_p_mp_nightstalker_mask01x", "Not Set"}, + {"mp007_p_mp_oldmattress01x", "Not Set"}, + {"mp007_p_mp_paperreceipt01x", "Not Set"}, + {"mp007_p_mp_stumpmaple01x", "Not Set"}, + {"mp007_p_mp_syringe01x_1", "Not Set"}, + {"mp007_p_mp_tonicbox01x", "Not Set"}, + {"mp007_p_mp_tracksboar01x", "Not Set"}, + {"mp007_p_mp_tracksboar02x", "Not Set"}, + {"mp007_p_mp_tracksbuck01x", "Not Set"}, + {"mp007_p_mp_tracksbuck02x", "Not Set"}, + {"mp007_p_mp_trackspossum01x", "Not Set"}, + {"mp007_p_mp_trackspossum02x", "Not Set"}, + {"mp007_p_mp_tracksrabbit01x", "Not Set"}, + {"mp007_p_mp_tracksrabbit02x", "Not Set"}, + {"mp007_p_mp_wildanimalcage02", "Not Set"}, + {"mp007_p_mp_wildanimalcage02b", "Not Set"}, + {"mp007_p_mp_wildanimalcage03", "Not Set"}, + {"mp007_p_mp_wildanimalcage03b", "Not Set"}, + {"mp007_p_mp_wildanimalcage04", "Not Set"}, + {"mp007_p_mp_wildanimalcage04b", "Not Set"}, + {"mp007_p_mp_wildanimalcage05", "Not Set"}, + {"mp007_p_mp_wildanimalcage05b", "Not Set"}, + {"mp007_p_mp_wildanimalcage06", "Not Set"}, + {"mp007_p_mp_wolfkillremains01x", "Not Set"}, + {"mp007_p_nat_awning04x", "Not Set"}, + {"mp007_p_nat_basket_shrooms01x", "Not Set"}, + {"mp007_p_nat_beartuftsfur01x", "Not Set"}, + {"mp007_p_nat_boatsm01x", "Not Set"}, + {"mp007_p_nat_books01x", "Not Set"}, + {"mp007_p_nat_bottles01x", "Not Set"}, + {"mp007_p_nat_box01x", "Not Set"}, + {"mp007_p_nat_bushleaf01x", "Not Set"}, + {"mp007_p_nat_camsmash01x", "Not Set"}, + {"mp007_p_nat_carpets01x", "Not Set"}, + {"mp007_p_nat_chairfolding02x", "Not Set"}, + {"mp007_p_nat_cupboard04x", "Not Set"}, + {"mp007_p_nat_dustpan01x", "Not Set"}, + {"mp007_p_nat_fancycage01x", "Not Set"}, + {"mp007_p_nat_fancycage02x", "Not Set"}, + {"mp007_p_nat_fancycup01x", "Not Set"}, + {"mp007_p_nat_fancyplate01x", "Not Set"}, + {"mp007_p_nat_flw_lupins01x", "Not Set"}, + {"mp007_p_nat_flwr_petunia01x", "Not Set"}, + {"mp007_p_nat_flwr_poppy01x", "Not Set"}, + {"mp007_p_nat_flwr_stack01x", "Not Set"}, + {"mp007_p_nat_ivy01x", "Not Set"}, + {"mp007_p_nat_lamp30x", "Not Set"}, + {"mp007_p_nat_microscopeslides01x", "Not Set"}, + {"mp007_p_nat_oldscale01x", "Not Set"}, + {"mp007_p_nat_palm01x", "Not Set"}, + {"mp007_p_nat_pelt_bearlegend01x", "Not Set"}, + {"mp007_p_nat_pelt_bearlegend02x", "Not Set"}, + {"mp007_p_nat_pelt_bearlegend03x", "Not Set"}, + {"mp007_p_nat_pelt_beaverlegend01x", "Not Set"}, + {"mp007_p_nat_pelt_beaverlegend02x", "Not Set"}, + {"mp007_p_nat_pelt_beaverlegend03x", "Not Set"}, + {"mp007_p_nat_pelt_bighornlegend01x", "Not Set"}, + {"mp007_p_nat_pelt_bighornlegend02x", "Not Set"}, + {"mp007_p_nat_pelt_bighornlegend03x", "Not Set"}, + {"mp007_p_nat_pelt_boarlegend01x", "Not Set"}, + {"mp007_p_nat_pelt_boarlegend02x", "Not Set"}, + {"mp007_p_nat_pelt_boarlegend03x", "Not Set"}, + {"mp007_p_nat_pelt_bucklegend01x", "Not Set"}, + {"mp007_p_nat_pelt_bucklegend02x", "Not Set"}, + {"mp007_p_nat_pelt_bucklegend03x", "Not Set"}, + {"mp007_p_nat_pelt_buffalolegend01x", "Not Set"}, + {"mp007_p_nat_pelt_buffalolegend02x", "Not Set"}, + {"mp007_p_nat_pelt_buffalolegend03x", "Not Set"}, + {"mp007_p_nat_pelt_cougarlegend01x", "Not Set"}, + {"mp007_p_nat_pelt_cougarlegend02x", "Not Set"}, + {"mp007_p_nat_pelt_cougarlegend03x", "Not Set"}, + {"mp007_p_nat_pelt_coyotelegend01x", "Not Set"}, + {"mp007_p_nat_pelt_coyotelegend02x", "Not Set"}, + {"mp007_p_nat_pelt_coyotelegend03x", "Not Set"}, + {"mp007_p_nat_pelt_elklegend01x", "Not Set"}, + {"mp007_p_nat_pelt_elklegend02x", "Not Set"}, + {"mp007_p_nat_pelt_elklegend03x", "Not Set"}, + {"mp007_p_nat_pelt_foxlegend01x", "Not Set"}, + {"mp007_p_nat_pelt_foxlegend02x", "Not Set"}, + {"mp007_p_nat_pelt_foxlegend03x", "Not Set"}, + {"mp007_p_nat_pelt_gatorlegend01x", "Not Set"}, + {"mp007_p_nat_pelt_gatorlegend02x", "Not Set"}, + {"mp007_p_nat_pelt_gatorlegend03x", "Not Set"}, + {"mp007_p_nat_pelt_mooselegend01x", "Not Set"}, + {"mp007_p_nat_pelt_mooselegend02x", "Not Set"}, + {"mp007_p_nat_pelt_mooselegend03x", "Not Set"}, + {"mp007_p_nat_pelt_pantherlegend01x", "Not Set"}, + {"mp007_p_nat_pelt_pantherlegend02x", "Not Set"}, + {"mp007_p_nat_pelt_pantherlegend03x", "Not Set"}, + {"mp007_p_nat_pelt_wolflegend01x", "Not Set"}, + {"mp007_p_nat_pelt_wolflegend02x", "Not Set"}, + {"mp007_p_nat_pelt_wolflegend03x", "Not Set"}, + {"mp007_p_nat_perfume01x", "Not Set"}, + {"mp007_p_nat_pictureframe01x", "Not Set"}, + {"mp007_p_nat_pictureframe02x", "Not Set"}, + {"mp007_p_nat_pictureframe03x", "Not Set"}, + {"mp007_p_nat_pictureframe04x", "Not Set"}, + {"mp007_p_nat_pictureframe05x", "Not Set"}, + {"mp007_p_nat_pictureframe06x", "Not Set"}, + {"mp007_p_nat_pictureframe07x", "Not Set"}, + {"mp007_p_nat_pine01x", "Not Set"}, + {"mp007_p_nat_plate_01x", "Not Set"}, + {"mp007_p_nat_plate_02x", "Not Set"}, + {"mp007_p_nat_ropehangin01x", "Not Set"}, + {"mp007_p_nat_shrooms01x", "Not Set"}, + {"mp007_p_nat_table46x", "Not Set"}, + {"mp007_p_nat_tent_awning01x", "Not Set"}, + {"mp007_p_nat_tent_awning02x", "Not Set"}, + {"mp007_p_nat_tent_awning03x", "Not Set"}, + {"mp007_p_nat_trap01x", "Not Set"}, + {"mp007_p_nat_trap02x", "Not Set"}, + {"mp007_p_nat_trapcloth01x", "Not Set"}, + {"mp007_p_naturalist_birdcage01x", "Not Set"}, + {"mp007_p_nat_walkboard01x", "Not Set"}, + {"mp007_p_table_nat01x", "Not Set"}, + {"mp007_p_taxidermy_base01x", "Not Set"}, + {"mp007_p_taxidermy_base02x", "Not Set"}, + {"mp007_p_taxidermy_base03x", "Not Set"}, + {"mp007_p_tentharriet01x", "Not Set"}, + {"mp007_p_vial_pheromones01x", "Not Set"}, + {"mp007_re_rock_02", "Not Set"}, + {"mp007_s_ammo_elephant", "Not Set"}, + {"mp007_s_book_emote02x", "Not Set"}, + {"mp007_s_cigaretteholder_emote01x", "Not Set"}, + {"mp007_s_coinbite_emote01x", "Not Set"}, + {"mp007_s_inv_harrietum01bx", "Not Set"}, + {"mp007_s_inv_harrietum01cx", "Not Set"}, + {"mp007_s_inv_harrietum01dx", "Not Set"}, + {"mp007_s_inv_harrietum01x", "Not Set"}, + {"mp007_s_inv_tonic_harriet01x", "Not Set"}, + {"mp007_s_inv_varmint_tranqammo01x", "Not Set"}, + {"mp007_s_mp_beaverdam_01x", "Not Set"}, + {"mp007_s_mp_businesscard01x", "Not Set"}, + {"mp007_s_mp_ropehogtiehandslarge01x", "Not Set"}, + {"mp007_s_nat_chainlock", "Not Set"}, + {"mp007_s_nat_tonic01x", "Not Set"}, + {"mp007_s_nat_tonic01x_cork", "Not Set"}, + {"mp007_s_nat_tonic01x_nocork", "Not Set"}, + {"mp007_s_pocketwatch_emote01x", "Not Set"}, + {"mp007_s_pocketwatch_emote02x", "Not Set"}, + {"mp007_s_rif_elephantammo01x", "Not Set"}, + {"mp008_p_Backdrop_PhotoComp01x", "Not Set"}, + {"mp008_p_Backdrop_PhotoComp01x_s", "Not Set"}, + {"mp008_p_Backdrop_PhotoComp02x", "Not Set"}, + {"mp008_p_Backdrop_PhotoComp02x_s", "Not Set"}, + {"mp008_p_knife_ceremonial01", "Not Set"}, + {"mp008_p_knife_ceremonial01_blood", "Not Set"}, + {"MP008_P_MNSHN_BARRELGROUP01X", "Not Set"}, + {"mp008_p_moonshine_theme_photocomp01x", "Not Set"}, + {"mp008_p_moonshine_theme_photocomp02x", "Not Set"}, + {"mp008_p_mp_flw_dandy01x", "Not Set"}, + {"mp008_p_mp_flw_milkweed01x", "Not Set"}, + {"mp008_p_mp_flw_petunia01x", "Not Set"}, + {"mp008_p_mp_flw_poppy01x", "Not Set"}, + {"mp008_p_mp_flwr_marker01x", "Not Set"}, + {"mp008_p_mp_flwr_marker02x", "Not Set"}, + {"mp008_p_mp_flwr_marker03x", "Not Set"}, + {"mp008_p_mp_gravemarker01x", "Not Set"}, + {"mp008_p_mp_letter01x", "Not Set"}, + {"mp008_p_mp_letter01x_clean", "Not Set"}, + {"mp008_p_mp_letter02x_clean2", "Not Set"}, + {"mp008_p_mp_letter03x_brown", "Not Set"}, + {"mp008_p_mp_letter04x_bloody", "Not Set"}, + {"mp008_p_mp_letter05x_old", "Not Set"}, + {"mp008_p_mp_valuables01x", "Not Set"}, + {"mp008_p_mp_valuables02x", "Not Set"}, + {"mp008_p_mshn_painting16x", "Not Set"}, + {"mp008_p_mshn_painting17x", "Not Set"}, + {"mp008_p_poster_lbm_shepardvergil01x", "Not Set"}, + {"mp008_p_poster_lbm_shepardvergil02x", "Not Set"}, + {"mp008_p_race_barreltriple01x", "Not Set"}, + {"mp008_p_race_barreltwin01x", "Not Set"}, + {"mp008_p_race_cratetriple01x", "Not Set"}, + {"mp008_p_race_cratetwin01x", "Not Set"}, + {"mp008_s_loot_photostudio01x", "Not Set"}, + {"mp008_s_maxim_casing01", "Not Set"}, + {"mp008_s_maxim_casing02", "Not Set"}, + {"mp008_s_melee_bolas02", "Not Set"}, + {"mp008_s_melee_bolas02_coiled", "Not Set"}, + {"mp008_s_melee_bolas03", "Not Set"}, + {"mp008_s_melee_bolas03_coiled", "Not Set"}, + {"mp008_s_melee_bolas04", "Not Set"}, + {"mp008_s_melee_bolas04_coiled", "Not Set"}, + {"mp008_s_mp_campflag_photocomp01x", "Not Set"}, + {"mp008_s_mp_campflag_photocomp02x", "Not Set"}, + {"mp008_s_safe_photostudio01x", "Not Set"}, + {"mp008_s_usd7_metal01x", "Not Set"}, + {"mp008_s_usd7_metal01x_grnd", "Not Set"}, + {"mp008_s_usd7_woodchop01x", "Not Set"}, + {"mp008_s_usd7_woodchop01x_grnd", "Not Set"}, + {"mp008_s_usd7_woodplank01x", "Not Set"}, + {"mp008_s_usd7_woodplank01x_grnd", "Not Set"}, + {"MP_A_C_ALLIGATOR_01", "Not Set"}, + {"MP_A_C_BEAR_01", "Not Set"}, + {"MP_A_C_BEAVER_01", "Not Set"}, + {"MP_A_C_BIGHORNRAM_01", "Not Set"}, + {"MP_A_C_BOAR_01", "Not Set"}, + {"MP_A_C_BUCK_01", "Not Set"}, + {"MP_A_C_BUFFALO_01", "Not Set"}, + {"mp_a_c_chicken_01", "Not Set"}, + {"MP_A_C_COUGAR_01", "Not Set"}, + {"MP_A_C_COYOTE_01", "Not Set"}, + {"mp_a_c_deer_01", "Not Set"}, + {"mp_a_c_dogamericanfoxhound_01", "Not Set"}, + {"MP_A_C_ELK_01", "Not Set"}, + {"MP_A_C_FOX_01", "Not Set"}, + {"MP_A_C_MOOSE_01", "Not Set"}, + {"mp_a_c_owl_01", "Not Set"}, + {"MP_A_C_PANTHER_01", "Not Set"}, + {"mp_a_c_possum_01", "Not Set"}, + {"mp_a_c_pronghorn_01", "Not Set"}, + {"mp_a_c_rabbit_01", "Not Set"}, + {"mp_a_c_sheep_01", "Not Set"}, + {"MP_A_C_WOLF_01", "Not Set"}, + {"mp_a_f_m_saloonband_females_01", "Not Set"}, + {"MP_A_F_M_SALOONPATRONS_01", "Not Set"}, + {"MP_A_F_M_SALOONPATRONS_02", "Not Set"}, + {"MP_A_F_M_SALOONPATRONS_03", "Not Set"}, + {"MP_A_F_M_SALOONPATRONS_04", "Not Set"}, + {"MP_A_F_M_SALOONPATRONS_05", "Not Set"}, + {"MP_A_M_M_MOONSHINEMAKERS_01", "Not Set"}, + {"mp_a_m_m_saloonband_males_01", "Not Set"}, + {"MP_A_M_M_SALOONPATRONS_01", "Not Set"}, + {"MP_A_M_M_SALOONPATRONS_02", "Not Set"}, + {"MP_A_M_M_SALOONPATRONS_03", "Not Set"}, + {"MP_A_M_M_SALOONPATRONS_04", "Not Set"}, + {"MP_A_M_M_SALOONPATRONS_05", "Not Set"}, + {"MP_BEAU_BINK_FEMALES_01", "Not Set"}, + {"MP_BEAU_BINK_MALES_01", "Not Set"}, + {"MP_CARMELA_BINK_VICTIM_MALES_01", "Not Set"}, + {"MP_CD_REVENGEMAYOR_01", "Not Set"}, + {"mp_fm_bounty_caged_males_01", "Not Set"}, + {"mp_fm_bounty_ct_corpses_01", "Not Set"}, + {"mp_fm_bounty_hideout_males_01", "Not Set"}, + {"mp_fm_bounty_horde_law_01", "Not Set"}, + {"mp_fm_bounty_horde_males_01", "Not Set"}, + {"mp_fm_bounty_infiltration_males_01", "Not Set"}, + {"MP_FM_BOUNTYTARGET_FEMALES_DLC008_01", "Not Set"}, + {"MP_FM_BOUNTYTARGET_MALES_DLC008_01", "Not Set"}, + {"mp_fm_knownbounty_guards_01", "Not Set"}, + {"MP_FM_KNOWNBOUNTY_INFORMANTS_FEMALES_01", "Not Set"}, + {"mp_fm_knownbounty_informants_males_01", "Not Set"}, + {"mp_fm_multitrack_victims_males_01", "Not Set"}, + {"mp_fm_stakeout_corpses_males_01", "Not Set"}, + {"mp_fm_stakeout_poker_males_01", "Not Set"}, + {"mp_fm_stakeout_target_males_01", "Not Set"}, + {"mp_fm_track_prospector_01", "Not Set"}, + {"mp_fm_track_sd_lawman_01", "Not Set"}, + {"mp_fm_track_targets_males_01", "Not Set"}, + {"mp_g_f_m_armyoffear_01", "Not Set"}, + {"MP_G_F_M_CULTGUARDS_01", "Not Set"}, + {"mp_g_f_m_cultmembers_01", "Not Set"}, + {"MP_G_M_M_ANIMALPOACHERS_01", "Not Set"}, + {"mp_g_m_m_armyoffear_01", "Not Set"}, + {"MP_G_M_M_CULTGUARDS_01", "Not Set"}, + {"mp_g_m_m_cultmembers_01", "Not Set"}, + {"MP_G_M_M_MERCS_01", "Not Set"}, + {"MP_G_M_M_RIFLECRONIES_01", "Not Set"}, + {"MP_G_M_M_UNICRIMINALS_03", "Not Set"}, + {"MP_G_M_M_UNICRIMINALS_04", "Not Set"}, + {"MP_G_M_M_UNICRIMINALS_05", "Not Set"}, + {"MP_G_M_M_UNICRIMINALS_06", "Not Set"}, + {"MP_G_M_M_UNICRIMINALS_07", "Not Set"}, + {"MP_G_M_M_UNICRIMINALS_08", "Not Set"}, + {"MP_G_M_M_UNICRIMINALS_09", "Not Set"}, + {"MP_LBM_CARMELA_BANDITOS_01", "Not Set"}, + {"MP_LM_STEALHORSE_BUYERS_01", "Not Set"}, + {"mp_moo_02_loc_slod", "Not Set"}, + {"mp_moo_04_loc_slod", "Not Set"}, + {"mp_re_moonshinecamp_males_01", "Not Set"}, + {"mp_re_slumpedhunter_females_01", "Not Set"}, + {"mp_re_slumpedhunter_males_01", "Not Set"}, + {"mp_re_suspendedhunter_males_01", "Not Set"}, + {"MP_S_M_M_REVENUEAGENTS_01", "Not Set"}, + {"mp_u_f_m_buyer_improved_01", "Not Set"}, + {"mp_u_f_m_buyer_improved_02", "Not Set"}, + {"mp_u_f_m_buyer_regular_01", "Not Set"}, + {"mp_u_f_m_buyer_regular_02", "Not Set"}, + {"mp_u_f_m_buyer_special_01", "Not Set"}, + {"mp_u_f_m_buyer_special_02", "Not Set"}, + {"MP_U_F_M_CULTPRIEST_01", "Not Set"}, + {"MP_U_F_M_LEGENDARYBOUNTY_03", "Not Set"}, + {"mp_u_f_m_nat_traveler_01", "Not Set"}, + {"mp_u_f_m_nat_worker_01", "Not Set"}, + {"mp_u_f_m_nat_worker_02", "Not Set"}, + {"mp_u_f_m_saloonpianist_01", "Not Set"}, + {"mp_u_m_m_animalpoacher_01", "Not Set"}, + {"mp_u_m_m_animalpoacher_02", "Not Set"}, + {"mp_u_m_m_animalpoacher_03", "Not Set"}, + {"mp_u_m_m_animalpoacher_04", "Not Set"}, + {"mp_u_m_m_animalpoacher_05", "Not Set"}, + {"mp_u_m_m_animalpoacher_06", "Not Set"}, + {"mp_u_m_m_animalpoacher_07", "Not Set"}, + {"mp_u_m_m_animalpoacher_08", "Not Set"}, + {"mp_u_m_m_animalpoacher_09", "Not Set"}, + {"MP_U_M_M_BANKPRISONER_01", "Not Set"}, + {"MP_U_M_M_BINKMERCS_01", "Not Set"}, + {"MP_U_M_M_BUYER_DEFAULT_01", "Not Set"}, + {"mp_u_m_m_buyer_improved_01", "Not Set"}, + {"mp_u_m_m_buyer_improved_02", "Not Set"}, + {"mp_u_m_m_buyer_improved_03", "Not Set"}, + {"mp_u_m_m_buyer_improved_04", "Not Set"}, + {"mp_u_m_m_buyer_improved_05", "Not Set"}, + {"mp_u_m_m_buyer_improved_06", "Not Set"}, + {"mp_u_m_m_buyer_improved_07", "Not Set"}, + {"mp_u_m_m_buyer_improved_08", "Not Set"}, + {"mp_u_m_m_buyer_regular_01", "Not Set"}, + {"mp_u_m_m_buyer_regular_02", "Not Set"}, + {"mp_u_m_m_buyer_regular_03", "Not Set"}, + {"mp_u_m_m_buyer_regular_04", "Not Set"}, + {"mp_u_m_m_buyer_regular_05", "Not Set"}, + {"mp_u_m_m_buyer_regular_06", "Not Set"}, + {"mp_u_m_m_buyer_regular_07", "Not Set"}, + {"mp_u_m_m_buyer_regular_08", "Not Set"}, + {"mp_u_m_m_buyer_special_01", "Not Set"}, + {"mp_u_m_m_buyer_special_02", "Not Set"}, + {"mp_u_m_m_buyer_special_03", "Not Set"}, + {"mp_u_m_m_buyer_special_04", "Not Set"}, + {"mp_u_m_m_buyer_special_05", "Not Set"}, + {"mp_u_m_m_buyer_special_06", "Not Set"}, + {"mp_u_m_m_buyer_special_07", "Not Set"}, + {"mp_u_m_m_buyer_special_08", "Not Set"}, + {"MP_U_M_M_CULTPRIEST_01", "Not Set"}, + {"MP_U_M_M_DROPOFF_JOSIAH_01", "Not Set"}, + {"mp_u_m_m_dyingpoacher_01", "Not Set"}, + {"mp_u_m_m_dyingpoacher_02", "Not Set"}, + {"mp_u_m_m_dyingpoacher_03", "Not Set"}, + {"mp_u_m_m_dyingpoacher_04", "Not Set"}, + {"mp_u_m_m_dyingpoacher_05", "Not Set"}, + {"mp_u_m_m_lawcamp_lawman_01", "Not Set"}, + {"mp_u_m_m_lawcamp_lawman_02", "Not Set"}, + {"mp_u_m_m_lawcamp_leadofficer_01", "Not Set"}, + {"mp_u_m_m_lawcamp_prisoner_01", "Not Set"}, + {"MP_U_M_M_LEGENDARYBOUNTY_08", "Not Set"}, + {"MP_U_M_M_LEGENDARYBOUNTY_09", "Not Set"}, + {"mp_u_m_m_nat_farmer_01", "Not Set"}, + {"mp_u_m_m_nat_farmer_02", "Not Set"}, + {"mp_u_m_m_nat_farmer_03", "Not Set"}, + {"mp_u_m_m_nat_farmer_04", "Not Set"}, + {"mp_u_m_m_nat_photographer_01", "Not Set"}, + {"mp_u_m_m_nat_photographer_02", "Not Set"}, + {"mp_u_m_m_nat_rancher_01", "Not Set"}, + {"mp_u_m_m_nat_rancher_02", "Not Set"}, + {"mp_u_m_m_nat_townfolk_01", "Not Set"}, + {"mp_U_M_M_RHD_BOUNTYTARGET_01", "Not Set"}, + {"mp_U_M_M_RHD_BOUNTYTARGET_02", "Not Set"}, + {"mp_U_M_M_RHD_BOUNTYTARGET_03", "Not Set"}, + {"mp_U_M_M_RHD_BOUNTYTARGET_03B", "Not Set"}, + {"MP_U_M_M_SALOONBRAWLER_01", "Not Set"}, + {"MP_U_M_M_SALOONBRAWLER_02", "Not Set"}, + {"MP_U_M_M_SALOONBRAWLER_03", "Not Set"}, + {"MP_U_M_M_SALOONBRAWLER_04", "Not Set"}, + {"MP_U_M_M_SALOONBRAWLER_05", "Not Set"}, + {"MP_U_M_M_SALOONBRAWLER_06", "Not Set"}, + {"MP_U_M_M_SALOONBRAWLER_07", "Not Set"}, + {"MP_U_M_M_SALOONBRAWLER_08", "Not Set"}, + {"MP_U_M_M_SALOONBRAWLER_09", "Not Set"}, + {"MP_U_M_M_SALOONBRAWLER_10", "Not Set"}, + {"MP_U_M_M_SALOONBRAWLER_11", "Not Set"}, + {"MP_U_M_M_SALOONBRAWLER_12", "Not Set"}, + {"MP_U_M_M_SALOONBRAWLER_13", "Not Set"}, + {"MP_U_M_M_SALOONBRAWLER_14", "Not Set"}, + {"mp_u_m_m_strwelcomecenter_02", "Not Set"}, + {"mr_end", "Not Set"}, + {"mr_start", "Not Set"}, + {"n_03_slod2", "Not Set"}, + {"n_04_slod2", "Not Set"}, + {"n_05_slod2", "Not Set"}, + {"n_06_slod2", "Not Set"}, + {"n_07_ftr_slod2", "Not Set"}, + {"n_07_slod2", "Not Set"}, + {"n_08_slod2", "Not Set"}, + {"n_09_slod2", "Not Set"}, + {"n_10_slod2", "Not Set"}, + {"n_11_slod2", "Not Set"}, + {"n_12_slod2", "Not Set"}, + {"n_13_slod2", "Not Set"}, + {"n_14_slod2", "Not Set"}, + {"n_15_slod2", "Not Set"}, + {"n_16_slod2", "Not Set"}, + {"n_17_slod2", "Not Set"}, + {"n_18_slod2", "Not Set"}, + {"n_96_slod2", "Not Set"}, + {"n_97_slod2", "Not Set"}, + {"n_98_slod2", "Not Set"}, + {"n_99_slod2", "Not Set"}, + {"new_area_01_slod2", "Not Set"}, + {"new_area_01_slod3", "Not Set"}, + {"new_area_02_slod2", "Not Set"}, + {"new_area_02_slod3", "Not Set"}, + {"new_area_03_slod2", "Not Set"}, + {"new_area_03_SLOD3", "Not Set"}, + {"new_area_04_slod2", "Not Set"}, + {"new_area_05_slod2", "Not Set"}, + {"new_area_06_slod2", "Not Set"}, + {"new_area_07_slod2", "Not Set"}, + {"new_area_07std1_slod4", "Not Set"}, + {"new_area_08_slod2", "Not Set"}, + {"new_area_08_slod3", "Not Set"}, + {"new_area_slod4", "Not Set"}, + {"no_05_06_area_slod3", "Not Set"}, + {"no_05_06_s_mh_slod2", "Not Set"}, + {"no_05_06_s_rc_slod2", "Not Set"}, + {"no_05_06_str_slod2", "Not Set"}, + {"no_05_06_tax_slod2", "Not Set"}, + {"no_05_06_truss_slod2", "Not Set"}, + {"no_07_08_area_slod3", "Not Set"}, + {"no_07_08_ftr_slod2", "Not Set"}, + {"no_07_08_gre_slod2", "Not Set"}, + {"no_07_08_lon_slod2", "Not Set"}, + {"no_07_08_rig_slod2", "Not Set"}, + {"no_07_08_snc_slod2", "Not Set"}, + {"no_09_10_area_slod3", "Not Set"}, + {"no_11_11_dewmill_slod2", "Not Set"}, + {"no_11_12_area_SLOD3", "Not Set"}, + {"no_11_12_bridge_slod2", "Not Set"}, + {"no_11_12_cle_slod2", "Not Set"}, + {"no_11_12_com_slod2", "Not Set"}, + {"no_11_12_eri_slod2", "Not Set"}, + {"no_11_12_s_lt_slod2", "Not Set"}, + {"no_11_12_s_urr_slod2", "Not Set"}, + {"no_12_12_dai_slod2", "Not Set"}, + {"no_13_13_ora_slod2", "Not Set"}, + {"no_13_14_area_SLOD3", "Not Set"}, + {"no_13_14_can_slod2", "Not Set"}, + {"no_13_14_dea_slod2", "Not Set"}, + {"no_13_14_lag_slod2", "Not Set"}, + {"no_13_14_lak_slod2", "Not Set"}, + {"no_13_14_lnn_slod2", "Not Set"}, + {"no_13_14_maco_slod2", "Not Set"}, + {"no_13_14_mac_slod2", "Not Set"}, + {"no_13_14_moo1_slod2", "Not Set"}, + {"no_13_14_sha_cs_slod2", "Not Set"}, + {"no_13_14_smb_slod2", "Not Set"}, + {"no_13_14_swa_slod2", "Not Set"}, + {"no_5_6_hrs_slod2", "Not Set"}, + {"no_9_10_rails_slod2", "Not Set"}, + {"no_9_10_srf_slod2", "Not Set"}, + {"no_9_10_swd_slod2", "Not Set"}, + {"nopq_03_06_slod4", "Not Set"}, + {"nopq_07_10_area_slod4", "Not Set"}, + {"nopq_07_10_slod4", "Not Set"}, + {"nopq_11_14_area_slod4", "Not Set"}, + {"nopq_11_14_slod4", "Not Set"}, + {"nopq_15_18_slod4", "Not Set"}, + {"nopq_3_6_area_slod4", "Not Set"}, + {"nopq_92_95_slod4", "Not Set"}, + {"nopq_96_99_slod4", "Not Set"}, + {"o_03_slod2", "Not Set"}, + {"o_04_slod2", "Not Set"}, + {"o_05_slod2", "Not Set"}, + {"o_06_slod2", "Not Set"}, + {"o_07_slod2", "Not Set"}, + {"o_08_slod2", "Not Set"}, + {"o_09_slod2", "Not Set"}, + {"o_10_slod2", "Not Set"}, + {"o_11_slod2", "Not Set"}, + {"o_12_slod2", "Not Set"}, + {"o_13_slod2", "Not Set"}, + {"o_14_slod2", "Not Set"}, + {"o_15_slod2", "Not Set"}, + {"o_16_slod2", "Not Set"}, + {"o_17_SLOD2", "Not Set"}, + {"o_18_SLOD2", "Not Set"}, + {"o_96_slod2", "Not Set"}, + {"o_97_slod2", "Not Set"}, + {"o_98_slod2", "Not Set"}, + {"o_99_slod2", "Not Set"}, + {"out_a_02_hd_01_lod", "Not Set"}, + {"out_a_02_hd_02_lod", "Not Set"}, + {"out_a_02_hd_03_lod", "Not Set"}, + {"out_a_02_hd_04_lod", "Not Set"}, + {"out_a_02_hd_04_slod", "Not Set"}, + {"out_a_02_hd_05_lod", "Not Set"}, + {"out_a_02_hd_05_slod", "Not Set"}, + {"out_a_02_hd_06_lod", "Not Set"}, + {"out_a_02_hd_07_lod", "Not Set"}, + {"out_a_02_hd_08_lod", "Not Set"}, + {"out_a_02_hd_09_lod", "Not Set"}, + {"out_a_02_hd_10_lod", "Not Set"}, + {"out_a_02_hd_10_slod", "Not Set"}, + {"out_a_02_hd_11_lod", "Not Set"}, + {"out_a_02_hd_12_lod", "Not Set"}, + {"out_a_02_hd_13_lod", "Not Set"}, + {"out_a_02_hd_14_lod", "Not Set"}, + {"out_a_02_hd_15_lod", "Not Set"}, + {"out_a_02_hd_15_slod", "Not Set"}, + {"out_a_02_hd_16_lod", "Not Set"}, + {"out_a_03_hd_01_lod", "Not Set"}, + {"out_a_03_hd_02_lod", "Not Set"}, + {"out_a_03_hd_03_lod", "Not Set"}, + {"out_a_03_hd_04_lod", "Not Set"}, + {"out_a_03_hd_05_lod", "Not Set"}, + {"out_a_03_hd_06_lod", "Not Set"}, + {"out_a_03_hd_06_slod", "Not Set"}, + {"out_a_03_hd_07_lod", "Not Set"}, + {"out_a_03_hd_08_lod", "Not Set"}, + {"out_a_03_hd_08_slod", "Not Set"}, + {"out_a_03_hd_09_lod", "Not Set"}, + {"out_a_03_hd_10_lod", "Not Set"}, + {"out_a_03_hd_10_slod", "Not Set"}, + {"out_a_03_hd_11_lod", "Not Set"}, + {"out_a_03_hd_11_slod", "Not Set"}, + {"out_a_03_hd_12_lod", "Not Set"}, + {"out_a_03_hd_13_lod", "Not Set"}, + {"out_a_03_hd_14_lod", "Not Set"}, + {"out_a_03_hd_15_lod", "Not Set"}, + {"out_a_03_hd_16_lod", "Not Set"}, + {"out_a_04_hd_01_lod", "Not Set"}, + {"out_a_04_hd_01_slod", "Not Set"}, + {"out_a_04_hd_02_lod", "Not Set"}, + {"out_a_04_hd_03_lod", "Not Set"}, + {"out_a_04_hd_04_lod", "Not Set"}, + {"out_a_04_hd_04_slod", "Not Set"}, + {"out_a_04_hd_05_lod", "Not Set"}, + {"out_a_04_hd_06_lod", "Not Set"}, + {"out_a_04_hd_07_lod", "Not Set"}, + {"out_a_04_hd_08_lod", "Not Set"}, + {"out_a_04_hd_09_lod", "Not Set"}, + {"out_a_04_hd_10_lod", "Not Set"}, + {"out_a_04_hd_11_lod", "Not Set"}, + {"out_a_04_hd_12_lod", "Not Set"}, + {"out_a_04_hd_12_slod", "Not Set"}, + {"out_a_04_hd_13_lod", "Not Set"}, + {"out_a_04_hd_13_slod", "Not Set"}, + {"out_a_04_hd_14_lod", "Not Set"}, + {"out_a_04_hd_15_lod", "Not Set"}, + {"out_a_04_hd_16_lod", "Not Set"}, + {"out_a_05_hd_01_lod", "Not Set"}, + {"out_a_05_hd_02_lod", "Not Set"}, + {"out_a_05_hd_03_lod", "Not Set"}, + {"out_a_05_hd_03_slod", "Not Set"}, + {"out_a_05_hd_04_lod", "Not Set"}, + {"out_a_05_hd_05_lod", "Not Set"}, + {"out_a_05_hd_06_lod", "Not Set"}, + {"out_a_05_hd_06_slod", "Not Set"}, + {"out_a_05_hd_07_lod", "Not Set"}, + {"out_a_05_hd_08_lod", "Not Set"}, + {"out_a_05_hd_09_lod", "Not Set"}, + {"out_a_05_hd_09_slod", "Not Set"}, + {"out_a_05_hd_10_lod", "Not Set"}, + {"out_a_05_hd_11_lod", "Not Set"}, + {"out_a_05_hd_11_slod", "Not Set"}, + {"out_a_05_hd_12_lod", "Not Set"}, + {"out_a_05_hd_13_lod", "Not Set"}, + {"out_a_05_hd_14_lod", "Not Set"}, + {"out_a_05_hd_15_lod", "Not Set"}, + {"out_a_05_hd_16_lod", "Not Set"}, + {"out_a_06_hd_01_lod", "Not Set"}, + {"out_a_06_hd_01_slod", "Not Set"}, + {"out_a_06_hd_02_lod", "Not Set"}, + {"out_a_06_hd_03_lod", "Not Set"}, + {"out_a_06_hd_03_slod", "Not Set"}, + {"out_a_06_hd_04_lod", "Not Set"}, + {"out_a_06_hd_05_lod", "Not Set"}, + {"out_a_06_hd_06_lod", "Not Set"}, + {"out_a_06_hd_07_lod", "Not Set"}, + {"out_a_06_hd_08_lod", "Not Set"}, + {"out_a_06_hd_09_lod", "Not Set"}, + {"out_a_06_hd_10_lod", "Not Set"}, + {"out_a_06_hd_11_lod", "Not Set"}, + {"out_a_06_hd_12_lod", "Not Set"}, + {"out_a_06_hd_12_slod", "Not Set"}, + {"out_a_06_hd_13_lod", "Not Set"}, + {"out_a_06_hd_13_slod", "Not Set"}, + {"out_a_06_hd_14_lod", "Not Set"}, + {"out_a_06_hd_15_lod", "Not Set"}, + {"out_a_06_hd_16_lod", "Not Set"}, + {"out_b_02_hd_01_lod", "Not Set"}, + {"out_b_02_hd_02_lod", "Not Set"}, + {"out_b_02_hd_03_lod", "Not Set"}, + {"out_b_02_hd_04_lod", "Not Set"}, + {"out_b_02_hd_05_lod", "Not Set"}, + {"out_b_02_hd_05_slod", "Not Set"}, + {"out_b_02_hd_06_lod", "Not Set"}, + {"out_b_02_hd_07_lod", "Not Set"}, + {"out_b_02_hd_07_slod", "Not Set"}, + {"out_b_02_hd_08_lod", "Not Set"}, + {"out_b_02_hd_09_lod", "Not Set"}, + {"out_b_02_hd_10_lod", "Not Set"}, + {"out_b_02_hd_11_lod", "Not Set"}, + {"out_b_02_hd_12_lod", "Not Set"}, + {"out_b_02_hd_13_lod", "Not Set"}, + {"out_b_02_hd_13_slod", "Not Set"}, + {"out_b_02_hd_14_lod", "Not Set"}, + {"out_b_02_hd_15_lod", "Not Set"}, + {"out_b_02_hd_16_lod", "Not Set"}, + {"out_b_02_hd_16_slod", "Not Set"}, + {"out_b_05_01_lod", "Not Set"}, + {"out_b_05_02_lod", "Not Set"}, + {"out_b_05_02_slod", "Not Set"}, + {"out_b_05_03_lod", "Not Set"}, + {"out_b_05_03_slod", "Not Set"}, + {"out_b_05_04_lod", "Not Set"}, + {"out_b_05_05_lod", "Not Set"}, + {"out_b_05_06_lod", "Not Set"}, + {"out_b_05_07_lod", "Not Set"}, + {"out_b_05_08_lod", "Not Set"}, + {"out_b_05_09_lod", "Not Set"}, + {"out_b_05_10_lod", "Not Set"}, + {"out_b_05_10_slod", "Not Set"}, + {"out_b_05_11_lod", "Not Set"}, + {"out_b_05_12_lod", "Not Set"}, + {"out_b_05_12_slod", "Not Set"}, + {"out_b_05_13_lod", "Not Set"}, + {"out_b_05_14_lod", "Not Set"}, + {"out_b_05_15_lod", "Not Set"}, + {"out_b_05_16_lod", "Not Set"}, + {"out_b_05_hd_01", "Not Set"}, + {"out_b_05_hd_02", "Not Set"}, + {"out_b_05_hd_03", "Not Set"}, + {"out_b_05_hd_04", "Not Set"}, + {"out_b_05_hd_05", "Not Set"}, + {"out_b_05_hd_06", "Not Set"}, + {"out_b_05_hd_07", "Not Set"}, + {"out_b_05_hd_08", "Not Set"}, + {"out_b_05_hd_09", "Not Set"}, + {"out_b_05_hd_10", "Not Set"}, + {"out_b_05_hd_11", "Not Set"}, + {"out_b_05_hd_12", "Not Set"}, + {"out_b_05_hd_13", "Not Set"}, + {"out_b_05_hd_14", "Not Set"}, + {"out_b_05_hd_15", "Not Set"}, + {"out_b_05_hd_16", "Not Set"}, + {"out_b_06_hd_01", "Not Set"}, + {"out_b_06_hd_01_lod", "Not Set"}, + {"out_b_06_hd_02", "Not Set"}, + {"out_b_06_hd_02_lod", "Not Set"}, + {"out_b_06_hd_02_slod", "Not Set"}, + {"out_b_06_hd_03", "Not Set"}, + {"out_b_06_hd_03_lod", "Not Set"}, + {"out_b_06_hd_04", "Not Set"}, + {"out_b_06_hd_04_lod", "Not Set"}, + {"out_b_06_hd_04_slod", "Not Set"}, + {"out_b_06_hd_05", "Not Set"}, + {"out_b_06_hd_05_lod", "Not Set"}, + {"out_b_06_hd_06", "Not Set"}, + {"out_b_06_hd_06_lod", "Not Set"}, + {"out_b_06_hd_07", "Not Set"}, + {"out_b_06_hd_07_lod", "Not Set"}, + {"out_b_06_hd_08", "Not Set"}, + {"out_b_06_hd_08_lod", "Not Set"}, + {"out_b_06_hd_09", "Not Set"}, + {"out_b_06_hd_09_lod", "Not Set"}, + {"out_b_06_hd_10", "Not Set"}, + {"out_b_06_hd_10_lod", "Not Set"}, + {"out_b_06_hd_11", "Not Set"}, + {"out_b_06_hd_11_lod", "Not Set"}, + {"out_b_06_hd_12", "Not Set"}, + {"out_b_06_hd_12_lod", "Not Set"}, + {"out_b_06_hd_13", "Not Set"}, + {"out_b_06_hd_13_lod", "Not Set"}, + {"out_b_06_hd_14", "Not Set"}, + {"out_b_06_hd_14_lod", "Not Set"}, + {"out_b_06_hd_14_slod", "Not Set"}, + {"out_b_06_hd_15", "Not Set"}, + {"out_b_06_hd_15_lod", "Not Set"}, + {"out_b_06_hd_16", "Not Set"}, + {"out_b_06_hd_16_lod", "Not Set"}, + {"out_b_06_hd_16_slod", "Not Set"}, + {"out_c_02_hd_01_lod", "Not Set"}, + {"out_c_02_hd_02_lod", "Not Set"}, + {"out_c_02_hd_03_lod", "Not Set"}, + {"out_c_02_hd_04_lod", "Not Set"}, + {"out_c_02_hd_05_lod", "Not Set"}, + {"out_c_02_hd_05_slod", "Not Set"}, + {"out_c_02_hd_06_lod", "Not Set"}, + {"out_c_02_hd_07_lod", "Not Set"}, + {"out_c_02_hd_08_lod", "Not Set"}, + {"out_c_02_hd_08_slod", "Not Set"}, + {"out_c_02_hd_09_lod", "Not Set"}, + {"out_c_02_hd_10_lod", "Not Set"}, + {"out_c_02_hd_10_slod", "Not Set"}, + {"out_c_02_hd_11_lod", "Not Set"}, + {"out_c_02_hd_12_lod", "Not Set"}, + {"out_c_02_hd_12_slod", "Not Set"}, + {"out_c_02_hd_13_lod", "Not Set"}, + {"out_c_02_hd_14_lod", "Not Set"}, + {"out_c_02_hd_15_lod", "Not Set"}, + {"out_c_02_hd_16_lod", "Not Set"}, + {"out_c_03_hd_09_lod", "Not Set"}, + {"out_c_03_hd_10_lod", "Not Set"}, + {"out_c_03_hd_13_lod", "Not Set"}, + {"out_c_03_hd_13_slod", "Not Set"}, + {"out_c_03_hd_14_lod", "Not Set"}, + {"out_c_03_hd_14_slod", "Not Set"}, + {"out_c_06_hd_01", "Not Set"}, + {"out_c_06_hd_01_lod", "Not Set"}, + {"out_c_06_hd_02", "Not Set"}, + {"out_c_06_hd_02_lod", "Not Set"}, + {"out_c_06_hd_03", "Not Set"}, + {"out_c_06_hd_03_lod", "Not Set"}, + {"out_c_06_hd_04", "Not Set"}, + {"out_c_06_hd_04_lod", "Not Set"}, + {"out_c_06_hd_05", "Not Set"}, + {"out_c_06_hd_05_lod", "Not Set"}, + {"out_c_06_hd_06", "Not Set"}, + {"out_c_06_hd_06_lod", "Not Set"}, + {"out_c_06_hd_06_slod", "Not Set"}, + {"out_c_06_hd_07", "Not Set"}, + {"out_c_06_hd_07_lod", "Not Set"}, + {"out_c_06_hd_08", "Not Set"}, + {"out_c_06_hd_08_lod", "Not Set"}, + {"out_c_06_hd_08_slod", "Not Set"}, + {"out_c_06_hd_09", "Not Set"}, + {"out_c_06_hd_09_lod", "Not Set"}, + {"out_c_06_hd_10", "Not Set"}, + {"out_c_06_hd_10_lod", "Not Set"}, + {"out_c_06_hd_11", "Not Set"}, + {"out_c_06_hd_11_lod", "Not Set"}, + {"out_c_06_hd_12", "Not Set"}, + {"out_c_06_hd_12_lod", "Not Set"}, + {"out_c_06_hd_13", "Not Set"}, + {"out_c_06_hd_13_lod", "Not Set"}, + {"out_c_06_hd_14", "Not Set"}, + {"out_c_06_hd_14_lod", "Not Set"}, + {"out_c_06_hd_14_slod", "Not Set"}, + {"out_c_06_hd_15", "Not Set"}, + {"out_c_06_hd_15_lod", "Not Set"}, + {"out_c_06_hd_16", "Not Set"}, + {"out_c_06_hd_16_lod", "Not Set"}, + {"out_c_06_hd_16_slod", "Not Set"}, + {"out_d_02_hd_01_lod", "Not Set"}, + {"out_d_02_hd_01_slod", "Not Set"}, + {"out_d_02_hd_02_lod", "Not Set"}, + {"out_d_02_hd_03_lod", "Not Set"}, + {"out_d_02_hd_04_lod", "Not Set"}, + {"out_d_02_hd_05_lod", "Not Set"}, + {"out_d_02_hd_06_lod", "Not Set"}, + {"out_d_02_hd_07_lod", "Not Set"}, + {"out_d_02_hd_07_slod", "Not Set"}, + {"out_d_02_hd_08_lod", "Not Set"}, + {"out_d_02_hd_09_lod", "Not Set"}, + {"out_d_02_hd_10_lod", "Not Set"}, + {"out_d_02_hd_10_slod", "Not Set"}, + {"out_d_02_hd_11_lod", "Not Set"}, + {"out_d_02_hd_12_lod", "Not Set"}, + {"out_d_02_hd_13_lod", "Not Set"}, + {"out_d_02_hd_14_lod", "Not Set"}, + {"out_d_02_hd_15_lod", "Not Set"}, + {"out_d_02_hd_16_lod", "Not Set"}, + {"out_d_02_hd_16_slod", "Not Set"}, + {"out_d_03_01_lod", "Not Set"}, + {"out_d_03_01_slod", "Not Set"}, + {"out_d_03_02_lod", "Not Set"}, + {"out_d_03_03_lod", "Not Set"}, + {"out_d_03_03_slod", "Not Set"}, + {"out_d_03_04_lod", "Not Set"}, + {"out_d_03_05_lod", "Not Set"}, + {"out_d_03_06_lod", "Not Set"}, + {"out_d_03_07_lod", "Not Set"}, + {"out_d_03_08_lod", "Not Set"}, + {"out_d_03_09_lod", "Not Set"}, + {"out_d_03_09_slod", "Not Set"}, + {"out_d_03_10_lod", "Not Set"}, + {"out_d_03_11_lod", "Not Set"}, + {"out_d_03_11_slod", "Not Set"}, + {"out_d_03_12_lod", "Not Set"}, + {"out_d_03_13_lod", "Not Set"}, + {"out_d_03_14_lod", "Not Set"}, + {"out_d_03_15_lod", "Not Set"}, + {"out_d_03_16_lod", "Not Set"}, + {"out_d_06_hd_01_lod", "Not Set"}, + {"out_d_06_hd_02_lod", "Not Set"}, + {"out_d_06_hd_03_lod", "Not Set"}, + {"out_d_06_hd_04_lod", "Not Set"}, + {"out_d_06_hd_05_lod", "Not Set"}, + {"out_d_06_hd_06_lod", "Not Set"}, + {"out_d_06_hd_06_slod", "Not Set"}, + {"out_d_06_hd_07_lod", "Not Set"}, + {"out_d_06_hd_08_lod", "Not Set"}, + {"out_d_06_hd_08_slod", "Not Set"}, + {"out_d_06_hd_09_lod", "Not Set"}, + {"out_d_06_hd_10_lod", "Not Set"}, + {"out_d_06_hd_11_lod", "Not Set"}, + {"out_d_06_hd_12_lod", "Not Set"}, + {"out_d_06_hd_13_lod", "Not Set"}, + {"out_d_06_hd_14_lod", "Not Set"}, + {"out_d_06_hd_14_slod", "Not Set"}, + {"out_d_06_hd_15_lod", "Not Set"}, + {"out_d_06_hd_16_lod", "Not Set"}, + {"out_d_06_hd_16_slod", "Not Set"}, + {"out_e_02_hd_01_lod", "Not Set"}, + {"out_e_02_hd_01_slod", "Not Set"}, + {"out_e_02_hd_02_lod", "Not Set"}, + {"out_e_02_hd_03_lod", "Not Set"}, + {"out_e_02_hd_04_lod", "Not Set"}, + {"out_e_02_hd_05_lod", "Not Set"}, + {"out_e_02_hd_06_lod", "Not Set"}, + {"out_e_02_hd_07_lod", "Not Set"}, + {"out_e_02_hd_08_lod", "Not Set"}, + {"out_e_02_hd_08_slod", "Not Set"}, + {"out_e_02_hd_09_lod", "Not Set"}, + {"out_e_02_hd_09_slod", "Not Set"}, + {"out_e_02_hd_10_lod", "Not Set"}, + {"out_e_02_hd_11_lod", "Not Set"}, + {"out_e_02_hd_12_lod", "Not Set"}, + {"out_e_02_hd_13_lod", "Not Set"}, + {"out_e_02_hd_14_lod", "Not Set"}, + {"out_e_02_hd_15_lod", "Not Set"}, + {"out_e_02_hd_16_lod", "Not Set"}, + {"out_e_02_hd_16_slod", "Not Set"}, + {"out_e_03_01_lod", "Not Set"}, + {"out_e_03_01_slod", "Not Set"}, + {"out_e_03_02_lod", "Not Set"}, + {"out_e_03_03_lod", "Not Set"}, + {"out_e_03_03_slod", "Not Set"}, + {"out_e_03_04_lod", "Not Set"}, + {"out_e_03_05_lod", "Not Set"}, + {"out_e_03_06_lod", "Not Set"}, + {"out_e_03_07_lod", "Not Set"}, + {"out_e_03_08_lod", "Not Set"}, + {"out_e_03_09_lod", "Not Set"}, + {"out_e_03_09_slod", "Not Set"}, + {"out_e_03_10_lod", "Not Set"}, + {"out_e_03_11_lod", "Not Set"}, + {"out_e_03_11_slod", "Not Set"}, + {"out_e_03_12_lod", "Not Set"}, + {"out_e_03_13_lod", "Not Set"}, + {"out_e_03_14_lod", "Not Set"}, + {"out_e_03_15_lod", "Not Set"}, + {"out_e_03_16_lod", "Not Set"}, + {"out_e_04_01_lod", "Not Set"}, + {"out_e_04_01_slod", "Not Set"}, + {"out_e_04_02_lod", "Not Set"}, + {"out_e_04_03_lod", "Not Set"}, + {"out_e_04_03_slod", "Not Set"}, + {"out_e_04_04_lod", "Not Set"}, + {"out_e_04_05_lod", "Not Set"}, + {"out_e_04_06_lod", "Not Set"}, + {"out_e_04_07_lod", "Not Set"}, + {"out_e_04_08_lod", "Not Set"}, + {"out_e_04_09_lod", "Not Set"}, + {"out_e_04_10_lod", "Not Set"}, + {"out_e_04_11_lod", "Not Set"}, + {"out_e_04_11_slod", "Not Set"}, + {"out_e_04_12_lod", "Not Set"}, + {"out_e_04_13_lod", "Not Set"}, + {"out_e_04_13_slod", "Not Set"}, + {"out_e_04_14_lod", "Not Set"}, + {"out_e_04_15_lod", "Not Set"}, + {"out_e_04_16_lod", "Not Set"}, + {"out_e_05_01_lod", "Not Set"}, + {"out_e_05_01_slod", "Not Set"}, + {"out_e_05_02_lod", "Not Set"}, + {"out_e_05_03_lod", "Not Set"}, + {"out_e_05_03_slod", "Not Set"}, + {"out_e_05_04_lod", "Not Set"}, + {"out_e_05_05_lod", "Not Set"}, + {"out_e_05_06_lod", "Not Set"}, + {"out_e_05_07_lod", "Not Set"}, + {"out_e_05_08_lod", "Not Set"}, + {"out_e_05_09_lod", "Not Set"}, + {"out_e_05_09_slod", "Not Set"}, + {"out_e_05_10_lod", "Not Set"}, + {"out_e_05_11_lod", "Not Set"}, + {"out_e_05_12_lod", "Not Set"}, + {"out_e_05_13_lod", "Not Set"}, + {"out_e_05_14_lod", "Not Set"}, + {"out_e_05_15_lod", "Not Set"}, + {"out_e_05_15_slod", "Not Set"}, + {"out_e_05_16_lod", "Not Set"}, + {"out_e_06_hd_01_lod", "Not Set"}, + {"out_e_06_hd_02_lod", "Not Set"}, + {"out_e_06_hd_03_lod", "Not Set"}, + {"out_e_06_hd_04_lod", "Not Set"}, + {"out_e_06_hd_05_lod", "Not Set"}, + {"out_e_06_hd_05_slod", "Not Set"}, + {"out_e_06_hd_06_lod", "Not Set"}, + {"out_e_06_hd_07_lod", "Not Set"}, + {"out_e_06_hd_07_slod", "Not Set"}, + {"out_e_06_hd_08_lod", "Not Set"}, + {"out_e_06_hd_09_lod", "Not Set"}, + {"out_e_06_hd_10_lod", "Not Set"}, + {"out_e_06_hd_10_slod", "Not Set"}, + {"out_e_06_hd_11_lod", "Not Set"}, + {"out_e_06_hd_12_lod", "Not Set"}, + {"out_e_06_hd_13_lod", "Not Set"}, + {"out_e_06_hd_14_lod", "Not Set"}, + {"out_e_06_hd_15_lod", "Not Set"}, + {"out_e_06_hd_15_slod", "Not Set"}, + {"out_e_06_hd_16_lod", "Not Set"}, + {"out_f_02_hd_01_lod", "Not Set"}, + {"out_f_02_hd_02_lod", "Not Set"}, + {"out_f_02_hd_03_lod", "Not Set"}, + {"out_f_02_hd_04_lod", "Not Set"}, + {"out_f_02_hd_05_lod", "Not Set"}, + {"out_f_02_hd_05_slod", "Not Set"}, + {"out_f_02_hd_06_lod", "Not Set"}, + {"out_f_02_hd_07_lod", "Not Set"}, + {"out_f_02_hd_07_slod", "Not Set"}, + {"out_f_02_hd_08_lod", "Not Set"}, + {"out_f_02_hd_09_lod", "Not Set"}, + {"out_f_02_hd_10_lod", "Not Set"}, + {"out_f_02_hd_11_lod", "Not Set"}, + {"out_f_02_hd_12_lod", "Not Set"}, + {"out_f_02_hd_13_lod", "Not Set"}, + {"out_f_02_hd_13_slod", "Not Set"}, + {"out_f_02_hd_14_lod", "Not Set"}, + {"out_f_02_hd_15_lod", "Not Set"}, + {"out_f_02_hd_16_lod", "Not Set"}, + {"out_f_02_hd_16_slod", "Not Set"}, + {"out_f_03_hd_01_lod", "Not Set"}, + {"out_f_03_hd_01_slod", "Not Set"}, + {"out_f_03_hd_02_lod", "Not Set"}, + {"out_f_03_hd_03_lod", "Not Set"}, + {"out_f_03_hd_04_lod", "Not Set"}, + {"out_f_03_hd_04_slod", "Not Set"}, + {"out_f_03_hd_05_lod", "Not Set"}, + {"out_f_03_hd_06_lod", "Not Set"}, + {"out_f_03_hd_07_lod", "Not Set"}, + {"out_f_03_hd_08_lod", "Not Set"}, + {"out_f_03_hd_09_lod", "Not Set"}, + {"out_f_03_hd_10_lod", "Not Set"}, + {"out_f_03_hd_11_lod", "Not Set"}, + {"out_f_03_hd_12_lod", "Not Set"}, + {"out_f_03_hd_13_lod", "Not Set"}, + {"out_f_03_hd_13_slod", "Not Set"}, + {"out_f_03_hd_14_lod", "Not Set"}, + {"out_f_03_hd_15_lod", "Not Set"}, + {"out_f_03_hd_16_lod", "Not Set"}, + {"out_f_03_hd_16_slod", "Not Set"}, + {"out_f_04_hd_01_lod", "Not Set"}, + {"out_f_04_hd_02_lod", "Not Set"}, + {"out_f_04_hd_03_lod", "Not Set"}, + {"out_f_04_hd_04_lod", "Not Set"}, + {"out_f_04_hd_05_lod", "Not Set"}, + {"out_f_04_hd_06_lod", "Not Set"}, + {"out_f_04_hd_06_slod", "Not Set"}, + {"out_f_04_hd_07_lod", "Not Set"}, + {"out_f_04_hd_07_slod", "Not Set"}, + {"out_f_04_hd_08_lod", "Not Set"}, + {"out_f_04_hd_09_lod", "Not Set"}, + {"out_f_04_hd_10_lod", "Not Set"}, + {"out_f_04_hd_11_lod", "Not Set"}, + {"out_f_04_hd_12_lod", "Not Set"}, + {"out_f_04_hd_13_lod", "Not Set"}, + {"out_f_04_hd_14_lod", "Not Set"}, + {"out_f_04_hd_14_slod", "Not Set"}, + {"out_f_04_hd_15_lod", "Not Set"}, + {"out_f_04_hd_16_lod", "Not Set"}, + {"out_f_04_hd_16_slod", "Not Set"}, + {"out_f_05_hd_01_lod", "Not Set"}, + {"out_f_05_hd_02_lod", "Not Set"}, + {"out_f_05_hd_03_lod", "Not Set"}, + {"out_f_05_hd_04_lod", "Not Set"}, + {"out_f_05_hd_05_lod", "Not Set"}, + {"out_f_05_hd_05_slod", "Not Set"}, + {"out_f_05_hd_06_lod", "Not Set"}, + {"out_f_05_hd_07_lod", "Not Set"}, + {"out_f_05_hd_08_lod", "Not Set"}, + {"out_f_05_hd_08_slod", "Not Set"}, + {"out_f_05_hd_09_lod", "Not Set"}, + {"out_f_05_hd_10_lod", "Not Set"}, + {"out_f_05_hd_11_lod", "Not Set"}, + {"out_f_05_hd_11_slod", "Not Set"}, + {"out_f_05_hd_12_lod", "Not Set"}, + {"out_f_05_hd_13_lod", "Not Set"}, + {"out_f_05_hd_13_slod", "Not Set"}, + {"out_f_05_hd_14_lod", "Not Set"}, + {"out_f_05_hd_15_lod", "Not Set"}, + {"out_f_05_hd_16_lod", "Not Set"}, + {"out_f_06_hd_01_lod", "Not Set"}, + {"out_f_06_hd_02_lod", "Not Set"}, + {"out_f_06_hd_03_lod", "Not Set"}, + {"out_f_06_hd_04_lod", "Not Set"}, + {"out_f_06_hd_05_lod", "Not Set"}, + {"out_f_06_hd_06_lod", "Not Set"}, + {"out_f_06_hd_06_slod", "Not Set"}, + {"out_f_06_hd_07_lod", "Not Set"}, + {"out_f_06_hd_08_lod", "Not Set"}, + {"out_f_06_hd_08_slod", "Not Set"}, + {"out_f_06_hd_09_lod", "Not Set"}, + {"out_f_06_hd_09_slod", "Not Set"}, + {"out_f_06_hd_10_lod", "Not Set"}, + {"out_f_06_hd_11_lod", "Not Set"}, + {"out_f_06_hd_12_lod", "Not Set"}, + {"out_f_06_hd_12_slod", "Not Set"}, + {"out_f_06_hd_13_lod", "Not Set"}, + {"out_f_06_hd_14_lod", "Not Set"}, + {"out_f_06_hd_15_lod", "Not Set"}, + {"out_f_06_hd_16_lod", "Not Set"}, + {"p_03_slod2", "Not Set"}, + {"p_04_slod2", "Not Set"}, + {"p_05_slod2", "Not Set"}, + {"p_06_slod2", "Not Set"}, + {"p_07_slod2", "Not Set"}, + {"p_08_slod2", "Not Set"}, + {"p_09_slod2", "Not Set"}, + {"p_10_slod2", "Not Set"}, + {"p_11_slod2", "Not Set"}, + {"p_12_slod2", "Not Set"}, + {"p_13_slod2", "Not Set"}, + {"p_14_slod2", "Not Set"}, + {"p_15_slod2", "Not Set"}, + {"p_16_slod2", "Not Set"}, + {"p_17_SLOD2", "Not Set"}, + {"p_18_SLOD2", "Not Set"}, + {"p_96_slod2", "Not Set"}, + {"p_97_slod2", "Not Set"}, + {"p_98_slod2", "Not Set"}, + {"p_99_slod2", "Not Set"}, + {"p_clothbalconya01x_ren", "Not Set"}, + {"p_firehydrantnbx01x", "Not Set"}, + {"p_hydropolenbx01a", "Not Set"}, + {"p_hydropolenbx01b", "Not Set"}, + {"p_jerkydressing", "Not Set"}, + {"pq_03_04_tun_slod2", "Not Set"}, + {"pq_05_06_area_slod3", "Not Set"}, + {"pq_05_06_aur_slod2", "Not Set"}, + {"pq_06_06_man_slod2", "Not Set"}, + {"pq_07_08_area_slod3", "Not Set"}, + {"pq_07_08_bla_es_slod3", "Not Set"}, + {"pq_07_08_bla_slod2", "Not Set"}, + {"pq_07_08_qua_slod2", "Not Set"}, + {"pq_07_08_the_slod2", "Not Set"}, + {"pq_11_12_area_slod3", "Not Set"}, + {"pq_11_12_bra_01_slod3", "Not Set"}, + {"pq_11_12_bra_burn_slod3", "Not Set"}, + {"pq_11_12_bra_slod2", "Not Set"}, + {"pq_11_12_cvb_slod2", "Not Set"}, + {"pq_11_12_rho_slod2", "Not Set"}, + {"pq_13_14_area_SLOD3", "Not Set"}, + {"pq_13_14_cal_slod2", "Not Set"}, + {"pq_13_14_cra_slod2", "Not Set"}, + {"pq_13_14_fac_slod2", "Not Set"}, + {"pq_13_14_sha_slod2", "Not Set"}, + {"pq_13_14_s_sk2_slod2", "Not Set"}, + {"pq_13_14_tbr_slod2", "Not Set"}, + {"proc_algae_lakebed_01", "Not Set"}, + {"proc_algae_lakebed_02", "Not Set"}, + {"proc_algae_lakebed_03", "Not Set"}, + {"proc_algae_lakebed_04", "Not Set"}, + {"proc_algae_lakebed_05", "Not Set"}, + {"proc_bedrollclosed01x", "Not Set"}, + {"proc_bedrollopen01x", "Not Set"}, + {"proc_boiler01x", "Not Set"}, + {"proc_bottle03x", "Not Set"}, + {"proc_bottlejd01x", "Not Set"}, + {"proc_can01x", "Not Set"}, + {"proc_can02x", "Not Set"}, + {"proc_can04x", "Not Set"}, + {"proc_can05x", "Not Set"}, + {"proc_can06x", "Not Set"}, + {"proc_canteen01x", "Not Set"}, + {"proc_card01x", "Not Set"}, + {"proc_cowpat_01", "Not Set"}, + {"proc_cowpat_02", "Not Set"}, + {"proc_cowpat_03", "Not Set"}, + {"proc_cowpat_04", "Not Set"}, + {"proc_desertweed_01", "Not Set"}, + {"proc_desertweed_02", "Not Set"}, + {"proc_desertweed_03", "Not Set"}, + {"proc_desertweed_04", "Not Set"}, + {"proc_desertweed_05", "Not Set"}, + {"proc_desertweed_06", "Not Set"}, + {"proc_dutchoven01x", "Not Set"}, + {"proc_farmlitter_01", "Not Set"}, + {"proc_fern_01", "Not Set"}, + {"proc_fern_02", "Not Set"}, + {"proc_hoofprints_01", "Not Set"}, + {"proc_litter_01", "Not Set"}, + {"proc_litter_02", "Not Set"}, + {"proc_lowfoliage_01", "Not Set"}, + {"proc_medrock_01", "Not Set"}, + {"proc_medrock_02", "Not Set"}, + {"proc_medrock_03", "Not Set"}, + {"proc_medrock_04", "Not Set"}, + {"proc_medrock_05", "Not Set"}, + {"proc_package04x", "Not Set"}, + {"proc_package05x", "Not Set"}, + {"proc_package07x", "Not Set"}, + {"proc_pan01x", "Not Set"}, + {"proc_plate02x", "Not Set"}, + {"proc_potsm01x", "Not Set"}, + {"proc_reeds_01", "Not Set"}, + {"proc_reeds_02", "Not Set"}, + {"proc_rock_lakebed_01", "Not Set"}, + {"proc_rock_lakebed_02", "Not Set"}, + {"proc_rock_lakebed_03", "Not Set"}, + {"proc_searock_01", "Not Set"}, + {"proc_searock_02", "Not Set"}, + {"proc_searock_03", "Not Set"}, + {"proc_seedlings_01", "Not Set"}, + {"proc_snowrock_01", "Not Set"}, + {"proc_snowrock_02", "Not Set"}, + {"proc_snowrock_03", "Not Set"}, + {"proc_snowrock_04", "Not Set"}, + {"proc_snowrock_05", "Not Set"}, + {"proc_snowrock_06", "Not Set"}, + {"proc_snowrock_07", "Not Set"}, + {"proc_spoonmid01x", "Not Set"}, + {"proc_stick_01", "Not Set"}, + {"proc_stick_02", "Not Set"}, + {"proc_stick_03", "Not Set"}, + {"proc_trolley_lakebed", "Not Set"}, + {"proc_tyre_lakebed", "Not Set"}, + {"proc_watermeloneaten01x", "Not Set"}, + {"prop_brick_01", "Not Set"}, + {"prop_brick_02", "Not Set"}, + {"prop_brick_03", "Not Set"}, + {"prop_bush_artichoke01", "Not Set"}, + {"prop_bush_gorse", "Not Set"}, + {"prop_bush_gorse_dark", "Not Set"}, + {"prop_bush_gorse_dry", "Not Set"}, + {"prop_bush_gorse_lush", "Not Set"}, + {"prop_bush_overhang1", "Not Set"}, + {"prop_coral_01", "Not Set"}, + {"prop_coral_02", "Not Set"}, + {"prop_coral_03", "Not Set"}, + {"prop_crop_brocc", "Not Set"}, + {"prop_crop_carrots", "Not Set"}, + {"prop_crop_lett", "Not Set"}, + {"prop_deadbush_01", "Not Set"}, + {"prop_deadfish_01", "Not Set"}, + {"prop_deadfish_02", "Not Set"}, + {"prop_deadfish_03", "Not Set"}, + {"prop_kelp_01", "Not Set"}, + {"prop_kelp_02", "Not Set"}, + {"prop_mk_arrow_3d", "Not Set"}, + {"prop_mk_cone", "Not Set"}, + {"prop_mk_cube", "Not Set"}, + {"prop_mk_cylinder", "Not Set"}, + {"prop_mk_num_0", "Not Set"}, + {"prop_mk_num_1", "Not Set"}, + {"prop_mk_num_2", "Not Set"}, + {"prop_mk_num_3", "Not Set"}, + {"prop_mk_num_4", "Not Set"}, + {"prop_mk_num_5", "Not Set"}, + {"prop_mk_num_6", "Not Set"}, + {"prop_mk_num_7", "Not Set"}, + {"prop_mk_num_8", "Not Set"}, + {"prop_mk_num_9", "Not Set"}, + {"prop_mk_ring", "Not Set"}, + {"prop_mk_sphere", "Not Set"}, + {"prop_mp_halo", "Not Set"}, + {"prop_mp_halo_point", "Not Set"}, + {"prop_mp_halo_rotate", "Not Set"}, + {"prop_proc_bush_01", "Not Set"}, + {"prop_proc_bush_02", "Not Set"}, + {"prop_proc_bush_03", "Not Set"}, + {"prop_proc_bush_03_b", "Not Set"}, + {"prop_proc_bush_04", "Not Set"}, + {"prop_proc_bush_05", "Not Set"}, + {"prop_proc_bushgrp_01", "Not Set"}, + {"prop_proc_bushgrp_02", "Not Set"}, + {"prop_proc_cactus_01", "Not Set"}, + {"prop_proc_leaves_01", "Not Set"}, + {"prop_proc_leaves_02", "Not Set"}, + {"prop_proc_rock_01", "Not Set"}, + {"prop_proc_rock_02", "Not Set"}, + {"prop_proc_rock_03", "Not Set"}, + {"prop_proc_smlbush_01", "Not Set"}, + {"prop_riverweed_01", "Not Set"}, + {"prop_riverweed_02", "Not Set"}, + {"prop_rub_plank1", "Not Set"}, + {"prop_rub_plasbag01", "Not Set"}, + {"prop_rub_plasbag02", "Not Set"}, + {"prop_rub_plasbotl1", "Not Set"}, + {"prop_rub_plasbotl2", "Not Set"}, + {"prop_rub_plasbotl3", "Not Set"}, + {"prop_sapling_01", "Not Set"}, + {"prop_sapling_02", "Not Set"}, + {"prop_screerock_sm_01", "Not Set"}, + {"prop_screerock_sm_02", "Not Set"}, + {"prop_screerock_sm_03", "Not Set"}, + {"prop_screerock_sm_04", "Not Set"}, + {"prop_seabrain_01", "Not Set"}, + {"prop_seagroup_01", "Not Set"}, + {"prop_seagroup_02", "Not Set"}, + {"prop_sealife_01", "Not Set"}, + {"prop_sealife_02", "Not Set"}, + {"prop_sealife_03", "Not Set"}, + {"prop_sealife_04", "Not Set"}, + {"prop_sealife_05", "Not Set"}, + {"prop_seaweed_01", "Not Set"}, + {"prop_seaweed_02", "Not Set"}, + {"prop_snowsapling_01", "Not Set"}, + {"prop_snowsapling_02", "Not Set"}, + {"prop_starfish_01", "Not Set"}, + {"prop_starfish_02", "Not Set"}, + {"prop_starfish_03", "Not Set"}, + {"p_tree_log_redwood_01", "Not Set"}, + {"p_tree_redwood_05", "Not Set"}, + {"p_tree_redwood_05_lg", "Not Set"}, + {"p_tree_redwood_05_md", "Not Set"}, + {"p_tree_redwood_05_mf", "Not Set"}, + {"p_tree_redwood_05_sm", "Not Set"}, + {"p_vanitydresserdesk01x", "Not Set"}, + {"p_whiskeydressing", "Not Set"}, + {"q_03_slod2", "Not Set"}, + {"q_04_slod2", "Not Set"}, + {"q_05_slod2", "Not Set"}, + {"q_06_slod2", "Not Set"}, + {"q_07_slod2", "Not Set"}, + {"q_08_slod2", "Not Set"}, + {"q_09_slod2", "Not Set"}, + {"q_10_slod2", "Not Set"}, + {"q_11_slod2", "Not Set"}, + {"q_12_slod2", "Not Set"}, + {"q_13_slod2", "Not Set"}, + {"q_14_slod2", "Not Set"}, + {"q_15_slod2", "Not Set"}, + {"q_16_slod2", "Not Set"}, + {"q_17_SLOD2", "Not Set"}, + {"q_18_SLOD2", "Not Set"}, + {"q_96_slod2", "Not Set"}, + {"q_97_slod2", "Not Set"}, + {"q_98_slod2", "Not Set"}, + {"q_99_slod2", "Not Set"}, + {"r_03_slod2", "Not Set"}, + {"r_04_slod2", "Not Set"}, + {"r_05_slod2", "Not Set"}, + {"r_06_slod2", "Not Set"}, + {"r_07_SLOD2", "Not Set"}, + {"r_08_SLOD2", "Not Set"}, + {"r_09_slod2", "Not Set"}, + {"r_10_slod2", "Not Set"}, + {"r_11_slod2", "Not Set"}, + {"r_12_slod2", "Not Set"}, + {"r_13_slod2", "Not Set"}, + {"r_14_slod2", "Not Set"}, + {"r_15_slod2", "Not Set"}, + {"r_16_slod2", "Not Set"}, + {"r_17_slod2", "Not Set"}, + {"r_18_slod2", "Not Set"}, + {"r_96_slod2", "Not Set"}, + {"r_97_slod2", "Not Set"}, + {"r_98_slod2", "Not Set"}, + {"r_99_slod2", "Not Set"}, + {"reg_bgv_00_campfiredebris01", "Not Set"}, + {"reg_bgv_01_icicles", "Not Set"}, + {"reg_bgv_01_icicles_decal", "Not Set"}, + {"reg_bgv_01_oldworldscript1_dc", "Not Set"}, + {"reg_bgv_01_slod", "Not Set"}, + {"reg_bgv_05_cave_fire", "Not Set"}, + {"reg_bgv_3bgv3_drunk", "Not Set"}, + {"reg_bgv_3bgv3_sober", "Not Set"}, + {"reg_bgv_abdn_home", "Not Set"}, + {"reg_bgv_aftermath_trails003", "Not Set"}, + {"reg_bgv_blood_decal_01", "Not Set"}, + {"reg_bgv_bloodpath01x016", "Not Set"}, + {"reg_bgv_bridge_02", "Not Set"}, + {"reg_bgv_bridge_02_d", "Not Set"}, + {"reg_bgv_bridge_02_lod", "Not Set"}, + {"reg_bgv_bridge_02_slod", "Not Set"}, + {"reg_bgv_burntobj", "Not Set"}, + {"reg_bgv_coach_mapsobject", "Not Set"}, + {"reg_bgv_crashsober01", "Not Set"}, + {"reg_bgv_crevice_blend_03", "Not Set"}, + {"reg_bgv_deleteme", "Not Set"}, + {"reg_bgv_drunk_decal", "Not Set"}, + {"reg_bgv_drunk_decal02", "Not Set"}, + {"reg_bgv_drunk_decal03", "Not Set"}, + {"reg_bgv_drunk_decal04", "Not Set"}, + {"reg_bgv_ext_details01", "Not Set"}, + {"reg_bgv_ext_sides01", "Not Set"}, + {"reg_bgv_ext_supports01", "Not Set"}, + {"reg_bgv_ext_supports02", "Not Set"}, + {"reg_bgv_fire_navcut", "Not Set"}, + {"reg_bgv_fire_navcut001", "Not Set"}, + {"reg_bgv_frozenhorse_01", "Not Set"}, + {"reg_bgv_frozenhorse_02", "Not Set"}, + {"reg_bgv_frozenhorse_03", "Not Set"}, + {"reg_bgv_glacier_block_ipl_02", "Not Set"}, + {"reg_bgv_glacier_block_ipl2_lod", "Not Set"}, + {"reg_bgv_glacier_block_ipl_lod", "Not Set"}, + {"reg_bgv_glacier_dec", "Not Set"}, + {"reg_bgv_glacier_int_02", "Not Set"}, + {"reg_bgv_glacier_int_02_lod", "Not Set"}, + {"reg_bgv_glacier_int_03", "Not Set"}, + {"reg_bgv_glacier_int_03_lod", "Not Set"}, + {"reg_bgv_glacier_int_04", "Not Set"}, + {"reg_bgv_glacier_int_04_lod", "Not Set"}, + {"reg_bgv_glacier_int_05", "Not Set"}, + {"reg_bgv_glacier_int_05_lod", "Not Set"}, + {"reg_bgv_glue_001", "Not Set"}, + {"reg_bgv_h_06_glacier_block_ipl", "Not Set"}, + {"reg_bgv_h_07_icicles", "Not Set"}, + {"reg_bgv_horse_snow", "Not Set"}, + {"reg_bgv_l_07_cave01_int_slod", "Not Set"}, + {"reg_bgv_l08tunnel2_decals2", "Not Set"}, + {"reg_bgv_l08tunnel2_decals3", "Not Set"}, + {"reg_bgv_l08tunnelentrance01", "Not Set"}, + {"reg_bgv_l08tunnel_slod", "Not Set"}, + {"reg_bgv_m_05_cave_lod", "Not Set"}, + {"reg_bgv_m_05_mine_entrance_lod", "Not Set"}, + {"reg_bgv_m_05_mine_ent_slod", "Not Set"}, + {"reg_bgv_m05_mine_wire", "Not Set"}, + {"reg_bgv_m05p_mine_woodends_d", "Not Set"}, + {"reg_bgv_missing_husband_d", "Not Set"}, + {"reg_bgv_murderrock", "Not Set"}, + {"reg_bgv_ohbrotbroken", "Not Set"}, + {"reg_bgv_placement_track01", "Not Set"}, + {"reg_bgv_placement_track02", "Not Set"}, + {"reg_bgv_placement_track03", "Not Set"}, + {"reg_bgv_regbg00_combo_slod", "Not Set"}, + {"reg_bgv_reg_crevice_blend_01", "Not Set"}, + {"reg_bgv_reg_crevice_blend_02", "Not Set"}, + {"reg_bgv_reg_crevice_blend_04", "Not Set"}, + {"reg_bgv_rock_02_strctr", "Not Set"}, + {"reg_bgv_rvrbed_end", "Not Set"}, + {"reg_bgv_rvrbed_start", "Not Set"}, + {"reg_bgv_skinnermass01", "Not Set"}, + {"reg_bgv_skinnermass011", "Not Set"}, + {"reg_bgv_skinnermass03", "Not Set"}, + {"reg_bgv_snowblow_de02", "Not Set"}, + {"reg_bgv_snowblow_decal001", "Not Set"}, + {"reg_bgv__sp_wagoncrashdrunk", "Not Set"}, + {"reg_bgv__sp_wagoncrash_sober", "Not Set"}, + {"reg_bgv__sp_wagoncrsh", "Not Set"}, + {"reg_bgv_text_water_grz_lke", "Not Set"}, + {"reg_bgv_treefall_acc_end", "Not Set"}, + {"reg_bgv_treefall_acc_start", "Not Set"}, + {"reg_bgv_treefall_end", "Not Set"}, + {"reg_bgv_treefall_start", "Not Set"}, + {"reg_bgv_ufodecal01", "Not Set"}, + {"reg_bgv_ufodecal02", "Not Set"}, + {"reg_bgv_ufodecal04", "Not Set"}, + {"reg_bgv_vfx_proxy", "Not Set"}, + {"reg_bgv_water_01_grz_lke", "Not Set"}, + {"reg_bgv_wrecked", "Not Set"}, + {"reg_hrt_des_ntvs2_tf2_endl1", "Not Set"}, + {"reg_hrt_des_ntvs2_tf2_startl1", "Not Set"}, + {"reg_hrt_j_14_cave01_int_slod", "Not Set"}, + {"reg_hrt_ntvs2_tf_endl1", "Not Set"}, + {"reg_hrt_ntvs2_tf_startl1", "Not Set"}, + {"reg_hrt_ntvs2_ws_endl1", "Not Set"}, + {"reg_hrt_privarm_bodyshell_lod", "Not Set"}, + {"reg_hrt_train_int_lod", "Not Set"}, + {"reg_hrt_tunnel_1a_slod", "Not Set"}, + {"rf_door_start", "Not Set"}, + {"rob_k_14_bridge_slod", "Not Set"}, + {"rs_11_12_area_SLOD3", "Not Set"}, + {"rs_11_12_s_sp_slod2", "Not Set"}, + {"rs_3_4_area_slod3", "Not Set"}, + {"rs_3_4_coo_slod2", "Not Set"}, + {"rs_5_6_area_slod3", "Not Set"}, + {"rs_5_6_mfr_slod2", "Not Set"}, + {"rs_5_6_swc_slod2", "Not Set"}, + {"rs_96_97_area_slod3", "Not Set"}, + {"rs_98_99_area_slod3", "Not Set"}, + {"rs_98_99_rbri_slod2", "Not Set"}, + {"rstu_03_06_slod4", "Not Set"}, + {"rstu_07_10_slod4", "Not Set"}, + {"rstu_11_14_area_slod4", "Not Set"}, + {"rstu_11_14_slod4", "Not Set"}, + {"rstu_15_18_slod4", "Not Set"}, + {"rstu_3_6_area_slod4", "Not Set"}, + {"rstu_92_95_area_slod4", "Not Set"}, + {"rstu_92_95_slod4", "Not Set"}, + {"rstu_96_99_area_slod4", "Not Set"}, + {"rstu_96_99_slod4", "Not Set"}, + {"s_03_slod2", "Not Set"}, + {"s_04_slod2", "Not Set"}, + {"s_05_slod2", "Not Set"}, + {"s_06_slod2", "Not Set"}, + {"s_07_SLOD2", "Not Set"}, + {"s_08_SLOD2", "Not Set"}, + {"s_09_slod2", "Not Set"}, + {"s_10_slod2", "Not Set"}, + {"s_11_slod2", "Not Set"}, + {"s_12_slod2", "Not Set"}, + {"s_13_slod2", "Not Set"}, + {"s_14_slod2", "Not Set"}, + {"s_15_slod2", "Not Set"}, + {"s_16_slod2", "Not Set"}, + {"s_17_slod2", "Not Set"}, + {"s_18_slod2", "Not Set"}, + {"s_96_slod2", "Not Set"}, + {"s_97_slod2", "Not Set"}, + {"s_98_slod2", "Not Set"}, + {"s_99_slod2", "Not Set"}, + {"safe_lrg_r_succeed_end", "Not Set"}, + {"safe_lrg_r_succeed_start", "Not Set"}, + {"sba_glue_002", "Not Set"}, + {"sba_shack_b_a", "Not Set"}, + {"sba_shack_b_a_d", "Not Set"}, + {"sba_shack_b_a_entrance", "Not Set"}, + {"sba_shack_b_a_int_lod", "Not Set"}, + {"sba_shack_b_a_slod", "Not Set"}, + {"s_combankwall_after", "Not Set"}, + {"s_combankwall_animrefprox001", "Not Set"}, + {"s_combankwall_b4", "Not Set"}, + {"sfe2_dis_cheatsnow", "Not Set"}, + {"sfe2_dis_defacedgrave_01", "Not Set"}, + {"sfe2_dis_defacedgrave_02", "Not Set"}, + {"sfe2_dis_defacedgrave_slod", "Not Set"}, + {"sfe2_dis_defgrave_02_deb", "Not Set"}, + {"shb_shack_ext", "Not Set"}, + {"shb_shack_ext_d", "Not Set"}, + {"shb_shack_frame_mp", "Not Set"}, + {"shb_shack_frame_sp", "Not Set"}, + {"shb_shack_int_lod", "Not Set"}, + {"shf_hf_slod", "Not Set"}, + {"shf_shackhf_combo_slod", "Not Set"}, + {"shf_shack_hf_int_lod", "Not Set"}, + {"sl_end", "Not Set"}, + {"sl_start", "Not Set"}, + {"spl_shackpl_combo_slod", "Not Set"}, + {"spl_shack_pl_int_lod", "Not Set"}, + {"sr_end", "Not Set"}, + {"sr_start", "Not Set"}, + {"ssc_cabin_01", "Not Set"}, + {"ssc_cabin_01_dec", "Not Set"}, + {"ssc_cabin_02", "Not Set"}, + {"stagecoach004_2x", "Not Set"}, + {"t_03_slod2", "Not Set"}, + {"t_04_slod2", "Not Set"}, + {"t_05_slod2", "Not Set"}, + {"t_06_slod2", "Not Set"}, + {"t_07_slod2", "Not Set"}, + {"t_08_slod2", "Not Set"}, + {"t_09_SLOD2", "Not Set"}, + {"t_10_SLOD2", "Not Set"}, + {"t_11_slod2", "Not Set"}, + {"t_12_slod2", "Not Set"}, + {"t_13_slod2", "Not Set"}, + {"t_14_slod2", "Not Set"}, + {"t_15_SLOD2", "Not Set"}, + {"t_16_SLOD2", "Not Set"}, + {"t_17_slod2", "Not Set"}, + {"t_18_slod2", "Not Set"}, + {"t_98_slod2", "Not Set"}, + {"t_99_slod2", "Not Set"}, + {"test_proc_01", "Not Set"}, + {"test_proc_02", "Not Set"}, + {"test_proc_03", "Not Set"}, + {"treefall_down15_end", "Not Set"}, + {"treefall_down15_start", "Not Set"}, + {"treefall_flat_end", "Not Set"}, + {"treefall_flat_start", "Not Set"}, + {"tu_3_4_area_slod3", "Not Set"}, + {"tu_5_5_ftd_slod2", "Not Set"}, + {"tu_96_97_area_slod3", "Not Set"}, + {"tu_98_99_area_slod3", "Not Set"}, + {"tugboat3", "Not Set"}, + {"u_03_slod2", "Not Set"}, + {"u_04_slod2", "Not Set"}, + {"u_05_slod2", "Not Set"}, + {"u_06_slod2", "Not Set"}, + {"u_07_slod2", "Not Set"}, + {"u_08_slod2", "Not Set"}, + {"u_09_SLOD2", "Not Set"}, + {"u_10_SLOD2", "Not Set"}, + {"u_11_slod2", "Not Set"}, + {"u_12_slod2", "Not Set"}, + {"u_13_slod2", "Not Set"}, + {"u_14_slod2", "Not Set"}, + {"u_15_SLOD2", "Not Set"}, + {"u_16_SLOD2", "Not Set"}, + {"u_17_slod2", "Not Set"}, + {"u_18_slod2", "Not Set"}, + {"u_98_slod2", "Not Set"}, + {"u_99_slod2", "Not Set"}, + {"v_03_slod2", "Not Set"}, + {"v_04_slod2", "Not Set"}, + {"v_05_slod2", "Not Set"}, + {"v_06_slod2", "Not Set"}, + {"v_07_slod2", "Not Set"}, + {"v_08_slod2", "Not Set"}, + {"v_09_slod2", "Not Set"}, + {"v_10_slod2", "Not Set"}, + {"val_07_magic_curtain_open_lod", "Not Set"}, + {"val_07_magic_curt_clsd_lod", "Not Set"}, + {"val_07_magiclanternint_lod", "Not Set"}, + {"val_07_pigpen_lod", "Not Set"}, + {"val_07_resf_ext_lod", "Not Set"}, + {"val_07_slod", "Not Set"}, + {"vwxy_03_06_slod4", "Not Set"}, + {"vwxy_07_10_slod4", "Not Set"}, + {"vwxy_92_95_slod4", "Not Set"}, + {"vwxy_96_99_slod4", "Not Set"}, + {"w_03_slod2", "Not Set"}, + {"w_04_slod2", "Not Set"}, + {"w_05_slod2", "Not Set"}, + {"w_06_slod2", "Not Set"}, + {"w_07_slod2", "Not Set"}, + {"w_08_slod2", "Not Set"}, + {"w_09_slod2", "Not Set"}, + {"w_10_slod2", "Not Set"}, + {"wagon05x_2", "Not Set"}, + {"wal_cotton_bales00_slod", "Not Set"}, + {"warwagon2", "Not Set"}, + {"wat_01_lightbox", "Not Set"}, + {"wat_cabin_smoke", "Not Set"}, + {"wat_chickencoop", "Not Set"}, + {"wat_ext_grave", "Not Set"}, + {"wat_ext_grave_lod", "Not Set"}, + {"wat_ext_shell", "Not Set"}, + {"wat_main_cabin", "Not Set"}, + {"wat_main_cabin_glue", "Not Set"}, + {"wat_outhouse", "Not Set"}, + {"wat_outhouse_lod", "Not Set"}, + {"w_bow_improved01", "Not Set"}, + {"w_bow_improved01_grip1", "Not Set"}, + {"w_bow_improved01_grip2", "Not Set"}, + {"w_bow_improved01_grip3", "Not Set"}, + {"w_bow_improved01_grip4", "Not Set"}, + {"w_bow_improved01_grip5", "Not Set"}, + {"win_lod_", "Not Set"}, + {"win_lod_01", "Not Set"}, + {"win_lod_02", "Not Set"}, + {"win_lod_03", "Not Set"}, + {"win_lod_04", "Not Set"}, + {"win_lod_05", "Not Set"}, + {"win_lod_06", "Not Set"}, + {"win_lod_07", "Not Set"}, + {"win_lod_08", "Not Set"}, + {"win_lod_09", "Not Set"}, + {"win_lod_10", "Not Set"}, + {"win_lod_11", "Not Set"}, + {"win_lod_12", "Not Set"}, + {"win_lod_13", "Not Set"}, + {"win_lod_14", "Not Set"}, + {"win_lod_15", "Not Set"}, + {"win_lod_16", "Not Set"}, + {"win_lod_17", "Not Set"}, + {"win_lod_18", "Not Set"}, + {"win_lod_19", "Not Set"}, + {"win_lod_20", "Not Set"}, + {"win_lod_21", "Not Set"}, + {"win_lod_22", "Not Set"}, + {"win_lod_23", "Not Set"}, + {"win_lod_24", "Not Set"}, + {"win_lod_25", "Not Set"}, + {"win_lod_26", "Not Set"}, + {"win_lod_27", "Not Set"}, + {"win_lod_28", "Not Set"}, + {"win_lod_29", "Not Set"}, + {"win_lod_30", "Not Set"}, + {"win_lod_31", "Not Set"}, + {"win_lod_32", "Not Set"}, + {"win_lod_33", "Not Set"}, + {"win_lod_34", "Not Set"}, + {"win_lod_35", "Not Set"}, + {"win_snow_lod1", "Not Set"}, + {"win_snow_lod2", "Not Set"}, + {"win_snow_lod3", "Not Set"}, + {"win_snow_lod4", "Not Set"}, + {"win_snow_medium_lod1", "Not Set"}, + {"win_snow_medium_lod2", "Not Set"}, + {"win_snow_medium_lod3", "Not Set"}, + {"win_snow_medium_lod4", "Not Set"}, + {"win_snow_medium_slod", "Not Set"}, + {"win_snow_shallow1_lod", "Not Set"}, + {"win_snow_shallow2_lod", "Not Set"}, + {"win_snow_shallow3_lod", "Not Set"}, + {"win_snow_shallow4_lod", "Not Set"}, + {"win_snow_shallow_slod", "Not Set"}, + {"win_snow_slod", "Not Set"}, + {"w_inv_miningpan", "Not Set"}, + {"wli_chest48_wagon_slod", "Not Set"}, + {"wli_treashunt_log_lod", "Not Set"}, + {"W_MELEE_BOLAS01", "Not Set"}, + {"w_melee_machete04", "Not Set"}, + {"w_repeater_carbine01_wrap2", "Not Set"}, + {"w_repeater_carbine01_wrap3", "Not Set"}, + {"w_repeater_carbine01_wrap4", "Not Set"}, + {"w_repeater_carbine01_wrap5", "Not Set"}, + {"w_repeater_evans01_wrap2", "Not Set"}, + {"w_repeater_evans01_wrap3", "Not Set"}, + {"w_repeater_evans01_wrap4", "Not Set"}, + {"w_repeater_evans01_wrap5", "Not Set"}, + {"w_repeater_evans03_grip1", "Not Set"}, + {"w_repeater_evans03_sight1", "Not Set"}, + {"w_repeater_evans03_wrap2", "Not Set"}, + {"w_repeater_henry01_wrap2", "Not Set"}, + {"w_repeater_henry01_wrap3", "Not Set"}, + {"w_repeater_henry01_wrap4", "Not Set"}, + {"w_repeater_henry01_wrap5", "Not Set"}, + {"w_repeater_pumpaction01_wrap2", "Not Set"}, + {"w_repeater_pumpaction01_wrap3", "Not Set"}, + {"w_repeater_pumpaction01_wrap4", "Not Set"}, + {"w_repeater_pumpaction01_wrap5", "Not Set"}, + {"w_repeater_pumpaction02", "Not Set"}, + {"w_repeater_pumpaction02_clip1", "Not Set"}, + {"w_repeater_pumpaction02_grip1", "Not Set"}, + {"w_repeater_pumpaction02_sight1", "Not Set"}, + {"w_repeater_winchester01_wrap2", "Not Set"}, + {"w_repeater_winchester01_wrap3", "Not Set"}, + {"w_repeater_winchester01_wrap4", "Not Set"}, + {"w_repeater_winchester01_wrap5", "Not Set"}, + {"W_REVOLVER_DOUBLEACTION02_BARREL01", "Not Set"}, + {"W_REVOLVER_DOUBLEACTION02_HAMMER01", "Not Set"}, + {"w_revolver_lemat02_barrel02", "Not Set"}, + {"w_revolver_lemat02_grip1", "Not Set"}, + {"w_revolver_navy01", "Not Set"}, + {"w_revolver_navy01_barrel01", "Not Set"}, + {"w_revolver_navy01_barrel02", "Not Set"}, + {"w_revolver_navy01_grip1", "Not Set"}, + {"w_revolver_navy01_grip2", "Not Set"}, + {"w_revolver_navy01_grip3", "Not Set"}, + {"w_revolver_navy01_grip4", "Not Set"}, + {"w_revolver_navy01_sight1", "Not Set"}, + {"w_revolver_navy01_sight2", "Not Set"}, + {"w_revolver_navy02", "Not Set"}, + {"w_revolver_navy02_barrel01", "Not Set"}, + {"w_revolver_navy02_grip1", "Not Set"}, + {"w_revolver_navy02_sight1", "Not Set"}, + {"w_revolver_schofield05", "Not Set"}, + {"w_rifle_boltaction01_wrap2", "Not Set"}, + {"w_rifle_boltaction01_wrap3", "Not Set"}, + {"w_rifle_boltaction01_wrap4", "Not Set"}, + {"w_rifle_boltaction01_wrap5", "Not Set"}, + {"w_rifle_carcano01_wrap2", "Not Set"}, + {"w_rifle_carcano01_wrap3", "Not Set"}, + {"w_rifle_carcano01_wrap4", "Not Set"}, + {"w_rifle_carcano01_wrap5", "Not Set"}, + {"w_rifle_elephant01", "Not Set"}, + {"w_rifle_elephant01_barrel01", "Not Set"}, + {"w_rifle_elephant01_barrel02", "Not Set"}, + {"w_rifle_elephant01_grip1", "Not Set"}, + {"w_rifle_elephant01_grip2", "Not Set"}, + {"w_rifle_elephant01_grip3", "Not Set"}, + {"w_rifle_elephant01_mag1", "Not Set"}, + {"w_rifle_elephant01_mag2", "Not Set"}, + {"w_rifle_elephant01_mag3", "Not Set"}, + {"w_rifle_elephant01_sight1", "Not Set"}, + {"w_rifle_elephant01_sight2", "Not Set"}, + {"w_rifle_elephant01_wrap1", "Not Set"}, + {"w_rifle_elephant01_wrap2", "Not Set"}, + {"w_rifle_elephant01_wrap3", "Not Set"}, + {"w_rifle_elephant01_wrap4", "Not Set"}, + {"w_rifle_elephant01_wrap5", "Not Set"}, + {"w_rifle_rollingblock01_grip4", "Not Set"}, + {"w_rifle_rollingblock01_wrap2", "Not Set"}, + {"w_rifle_rollingblock01_wrap3", "Not Set"}, + {"w_rifle_rollingblock01_wrap4", "Not Set"}, + {"w_rifle_rollingblock01_wrap5", "Not Set"}, + {"w_rifle_springfield01_wrap2", "Not Set"}, + {"w_rifle_springfield01_wrap3", "Not Set"}, + {"w_rifle_springfield01_wrap4", "Not Set"}, + {"w_rifle_springfield01_wrap5", "Not Set"}, + {"w_shotgun_doublebarrel01_wrap2", "Not Set"}, + {"w_shotgun_doublebarrel01_wrap3", "Not Set"}, + {"w_shotgun_doublebarrel01_wrap4", "Not Set"}, + {"w_shotgun_doublebarrel01_wrap5", "Not Set"}, + {"w_shotgun_doublebarrel03_barrel2", "Not Set"}, + {"w_shotgun_doublebarrel03_grip1", "Not Set"}, + {"w_shotgun_doublebarrel03_mag1", "Not Set"}, + {"w_shotgun_pumpaction01_wrap2", "Not Set"}, + {"w_shotgun_pumpaction01_wrap3", "Not Set"}, + {"w_shotgun_pumpaction01_wrap4", "Not Set"}, + {"w_shotgun_pumpaction01_wrap5", "Not Set"}, + {"w_shotgun_repeating01_wrap2", "Not Set"}, + {"w_shotgun_repeating01_wrap3", "Not Set"}, + {"w_shotgun_repeating01_wrap4", "Not Set"}, + {"w_shotgun_repeating01_wrap5", "Not Set"}, + {"w_shotgun_sawed01_wrap2", "Not Set"}, + {"w_shotgun_sawed01_wrap3", "Not Set"}, + {"w_shotgun_sawed01_wrap4", "Not Set"}, + {"w_shotgun_sawed01_wrap5", "Not Set"}, + {"w_shotgun_sawed03_grip1", "Not Set"}, + {"w_shotgun_sawed03_sight1", "Not Set"}, + {"w_shotgun_sawed03_stock1", "Not Set"}, + {"w_shotgun_semiauto01_wrap2", "Not Set"}, + {"w_shotgun_semiauto01_wrap3", "Not Set"}, + {"w_shotgun_semiauto01_wrap4", "Not Set"}, + {"w_shotgun_semiauto01_wrap5", "Not Set"}, + {"w_throw_poisonbottle01", "Not Set"}, + {"x_03_SLOD2", "Not Set"}, + {"x_04_SLOD2", "Not Set"}, + {"x_05_slod2", "Not Set"}, + {"x_06_slod2", "Not Set"}, + {"x_07_slod2", "Not Set"}, + {"x_08_slod2", "Not Set"}, + {"x_09_slod2", "Not Set"}, + {"x_10_slod2", "Not Set"}, + {"y_03_SLOD2", "Not Set"}, + {"y_04_SLOD2", "Not Set"}, + {"y_05_slod2", "Not Set"}, + {"y_06_slod2", "Not Set"}, + {"y_07_slod2", "Not Set"}, + {"y_08_slod2", "Not Set"}, + {"y_09_slod2", "Not Set"}, + {"y_10_slod2", "Not Set"}, + {"mp009_p_mp_ammobigmiscchest01x", "Not Set"}, + {"mp009_p_mp_ammobigmiscchest02x", "Not Set"}, + {"mp009_p_mp_ammobigmiscchest03x", "Not Set"}, + {"mp009_p_mp_ammobigmiscchest04x", "Not Set"}, + {"mp009_p_mp_ammochest01x", "Not Set"}, + {"mp009_p_mp_chestornate01x", "Not Set"}, + {"mp009_p_mp_chestornate01x_int", "Not Set"}, + {"mp009_p_mp_door01x", "Not Set"}, + {"mp009_p_mp_flask01x", "Not Set"}, + {"mp009_p_mp_fort_modular_01x", "Not Set"}, + {"mp009_p_mp_jewelemerald_display01x", "Not Set"}, + {"mp009_p_mp_jewelemerald01x", "Not Set"}, + {"mp009_p_mp_jewelemerald02x", "Not Set"}, + {"mp009_p_mp_jewelruby_display01x", "Not Set"}, + {"mp009_p_mp_jewelruby01x", "Not Set"}, + {"mp009_p_mp_jewelruby02x", "Not Set"}, + {"mp009_p_mp_jewelsapphire_display01x", "Not Set"}, + {"mp009_p_mp_jewelsapphire01x", "Not Set"}, + {"mp009_p_mp_jewelsapphire02x", "Not Set"}, + {"mp009_p_mp_key01x", "Not Set"}, + {"mp009_p_mp_key02x", "Not Set"}, + {"mp009_p_mp_pedestaldisplay_glass01x", "Not Set"}, + {"mp009_p_mp_pedestaldisplay01x", "Not Set"}, + {"mp009_p_mp_podium01x", "Not Set"}, + {"mp009_p_mp_stool01x", "Not Set"}, + {"mp009_p_mp_veh_capitalitheft01x", "Not Set"}, + {"mp009_p_mp_veh_mailservice01x", "Not Set"}, + {"mp009_p_mp_washbasinset01x", "Not Set"}, + {"mp009_p_mp009_cratetable01x", "Not Set"}, + {"mp009_p_revolver_cattleman_cut", "Not Set"}, + {"mp009_s_interact_lanternskull01x", "Not Set"}, + {"mp009_s_mp_medicinebox01x", "Not Set"}, + {"mp009_s_mp_pickup_jewelrybag01x", "Not Set"}, + }; +} \ No newline at end of file diff --git a/src/util/SpawnObject.cpp b/src/util/SpawnObject.cpp index e7ff885b..b5945fd2 100644 --- a/src/util/SpawnObject.cpp +++ b/src/util/SpawnObject.cpp @@ -3,7 +3,43 @@ namespace YimMenu { - void SpawnObject(uint32_t hash, Vector3 coords) + void PreviewObject(uint32_t hash, Vector3 coords, float pitch, float yaw, float roll, float alpha, bool isEnabled) + { + FiberPool::Push([=] { + if (STREAMING::IS_MODEL_IN_CDIMAGE(hash) && STREAMING::IS_MODEL_VALID(hash)) + { + if (!STREAMING::HAS_MODEL_LOADED(hash)) + { + STREAMING::REQUEST_MODEL(hash, false); + for (int i = 0; i < 100; ++i) + { + if (STREAMING::HAS_MODEL_LOADED(hash)) + { + break; + } + ScriptMgr::Yield(); + } + } + + Object hologram = OBJECT::CREATE_OBJECT(hash, coords.x, coords.y, coords.z, false, false, false, 0, 1); + + ENTITY::SET_ENTITY_VISIBLE(hologram, true); + ENTITY::SET_ENTITY_ALPHA(hologram, alpha, false); + ENTITY::SET_ENTITY_COLLISION(hologram, false, false); + ENTITY::SET_ENTITY_INVINCIBLE(hologram, true); + ENTITY::FREEZE_ENTITY_POSITION(hologram, true); + + ENTITY::SET_ENTITY_COORDS(hologram, coords.x, coords.y, coords.z, false, false, false, true); + ENTITY::SET_ENTITY_ROTATION(hologram, pitch, roll, yaw, 2, true); + ScriptMgr::Yield(); + + ENTITY::DELETE_ENTITY(&hologram); + STREAMING::SET_MODEL_AS_NO_LONGER_NEEDED(hash); + } + }); + } + + void SpawnObject(uint32_t hash, Vector3 coords, float pitch, float yaw, float roll, bool onGround, bool isFrozen, bool isBurning, bool isPickup, bool hasCollision) { FiberPool::Push([=] { if (STREAMING::IS_MODEL_IN_CDIMAGE(hash) && STREAMING::IS_MODEL_VALID(hash)) @@ -18,12 +54,25 @@ namespace YimMenu ScriptMgr::Yield(); ENTITY::SET_ENTITY_VISIBLE(obj, true); + ENTITY::SET_ENTITY_ROTATION(obj, pitch, roll, yaw, 2, true); // Set rotation NETWORK::NETWORK_REGISTER_ENTITY_AS_NETWORKED(obj); int id = NETWORK::OBJ_TO_NET(obj); if (NETWORK::NETWORK_DOES_NETWORK_ID_EXIST(id)) { - OBJECT::PLACE_OBJECT_ON_GROUND_PROPERLY(obj, true); + OBJECT::PLACE_OBJECT_ON_GROUND_PROPERLY(obj, onGround); + ENTITY::FREEZE_ENTITY_POSITION(obj, isFrozen); + if (isBurning) + { + int fx = Joaat("exp_air_firebottle"); + FIRE::ADD_EXPLOSION_WITH_USER_VFX(coords.x, coords.y, coords.z, 2, fx, 1000.0, 0, 1, 0.0); // ONLY SETS THINGS AROUND IT ON FIRE + OBJECT::_SET_OBJECT_BURN_INTENSITY(obj, 100.0); + } + if (isPickup) + { + OBJECT::_MAKE_ITEM_CARRIABLE(obj); + } + ENTITY::SET_ENTITY_COLLISION(obj, hasCollision, false); ENTITY::SET_ENTITY_SHOULD_FREEZE_WAITING_ON_COLLISION(obj, true); NETWORK::SET_NETWORK_ID_EXISTS_ON_ALL_MACHINES(id, true); NETWORK::NETWORK_REQUEST_CONTROL_OF_ENTITY(obj); diff --git a/src/util/SpawnObject.hpp b/src/util/SpawnObject.hpp index 12424e9d..8d880079 100644 --- a/src/util/SpawnObject.hpp +++ b/src/util/SpawnObject.hpp @@ -3,8 +3,10 @@ #include "game/backend/FiberPool.hpp" #include "game/backend/ScriptMgr.hpp" #include "game/rdr/Natives.hpp" +#include "Joaat.hpp" namespace YimMenu { - void SpawnObject(uint32_t hash, Vector3 coords); + void SpawnObject(uint32_t hash, Vector3 coords, float pitch, float yaw, float roll, bool onGround, bool isFrozen, bool isBurning, bool isPickup, bool hasCollision); + void PreviewObject(uint32_t hash, Vector3 coords, float pitch, float yaw, float roll, float alpha, bool isEnabled); } \ No newline at end of file