Jump to content
7erra

[Release] Virtual Arsenal Shop System

Recommended Posts

My solution to the load times with a lot of items is to split them across multiple vendors:

 

Trader_Medical 
Trader_Clothing

Trader_Weapons_American
Trader_Weapons_European
Trader_Weapons_Russian
Trader_Weapons_Accessories
Trader_Weapons_Magazines
 Trader_Weapons_Explosives

 

This way I was able to support some vanilla guns, RHS weapons, SMA and NIArms all at once without long wait times for a player to use the shop.   If a player joins and doesn't have SMA or NIArms, then they won't see the guns.  Such is the flexibility of using a VA based shop system.

 

  • Like 1

Share this post


Link to post
Share on other sites

Hello,

 

First of all, thank you for this smart system. I just jumped in Arma scripting and am very excited to see what all this community has to offer. 

 

Anyway, I downloaded the Eden extension, and i can create a shop without problems. But everytime I try to change the inventory using the Eden extension's interface, it is not able to save the quantities and prices i have set. It just resets everytime i select another weapon category. The shop's global selection (first icon on the GUI) and the "Array" section are always empty. I have tried this with and without any other mods running, and with the correct description.ext located in my mission folder.

 

The shop and the inventory systems work great without using the Eden extension. But the time it can save is huge, especially when you are using mods with lots of content like RHS, so i though it would be worth mentioning.

 

Maybe someone has an idea ?

Share this post


Link to post
Share on other sites

Hi.

If someone else has a "money leak" bug with handguns!?

Just open VASS\fnc\fn_shop.sqf - line 863 - Replace similar code into this:

 

			case IDC_RSCDISPLAYARSENAL_TAB_HANDGUN: {
				_isDifferentWeapon = (handgunweapon _center call bis_fnc_baseWeapon) != _item;
				if (_isDifferentWeapon) then {				
					_removedItems pushBack handgunweapon _center;
					_removedItems append (handgunItems _center -[""]);				
					_loadedMags = [_loadout#2 param [4,[]], _loadout#2 param [5,[]]];
					_loadedMags = _loadedMags select {_x param [1,0] > 0};
					if ({count _x > 0} count _loadedMags > 0) then {
						{
							_x params ["_class", "_count"];
							if (_center canAdd _class) then {
								_center addMagazine [_x, _count];
							} else {
								_removedItems pushBack _class;
							};
						} forEach _loadedMags;
					};
					//{_center removemagazines _x} foreach getarray (configfile >> "cfgweapons" >> handgunweapon _center >> "magazines");
					if (_item == "") then {
						_center removeweapon handgunweapon _center;
					} else {
						_compatibleItems = _item call bis_fnc_compatibleItems;
						_weaponAccessories = handgunItems _center - [""];
						[_center,_item,0] call bis_fnc_addweapon;
						_addedItems pushBack _item;
						{
							_acc = _x;
							if ({_x == _acc} count _compatibleItems > 0) then {
								_center addHandgunItem _acc;
								_removedItems deleteAt (_removedItems find _acc);
							};
						} foreach _weaponAccessories;
					};
				};
			};

 

Share this post


Link to post
Share on other sites

hello guys if anyone want use this script with Ravage mod this the how you can use currency Ravage with VSS script

this code by @7erra  tested and its working 

 

fn_VASShandler.sqf

/*
    Author: 7erra <https://forums.bohemia.net/profile/1139559-7erra/>

    Description:
     VASS calls this function when certain events happen. Add your own code to change behaviour.
     (Similar to BIS_fnc_callScriptedEventHandler)

    Parameter(s):
     0: STRING - Mode in which the functions is called
     1: ARRAY - Passed arguments

    Returns:
     See sub functions
*/

params ["_mode",["_this",[]]];

switch _mode do {
    case "getMoney":{
        /*
            Description:
             VASS wants to know how much money the unit has

            Parameter(s):
             0: OBJECT - Unit whose money is requested

            Has to return:
             NUMBER - Unit's money
        */
        params ["_unit"];
        {_x == "rvg_money"} count (magazines player)
    };
    case "setMoney":{
        /*
            Description:
             VASS changes the amount of money the player has

            Parameter(s):
             0: OBJECT - Unit whose money will be changed
             1: NUMBER - Amount of money changed (can be positive or negative)

            Has to return:
             Nothing
        */
        params ["_unit", "_change"];
        if (_change < 0) then {
            for "_i" from 1 to (abs _change) do {
                player removeItem "rvg_money";
            };
        } else {
            for "_i" from 1 to _change do {
                player addItem "rvg_money";
            };
        };
    };
};

 

  • Like 2
  • Thanks 1

Share this post


Link to post
Share on other sites

I am hoping some of you are still active on this topic. I have added the files and am working on getting the shop items all added. On my small 20 item or so test I can get it to work no problem. I take the same array and expand it to include all items but keep getting the below error:

 

Quote

15:03:00 Error in expression <(count _cargo -3) step 3 do {

_class = tolower (_cargo#_i);
_price = _cargo#(_i>
15:03:00   Error position: <tolower (_cargo#_i);
_price = _cargo#(_i>
15:03:00   Error tolower: Type Array, expected String
15:03:00 File VASS\fnc\fn_addShopCargo.sqf [TER_fnc_addShopCargo]..., line 39

 

Below is the array that keeps giving me the errors:

 

Spoiler

[this] call TER_fnc_addShop;
[this, [
    ["rhs_weap_ak103",100,true],
    ["rhs_weap_ak103_npz",100,true],
    ["rhs_weap_ak103_gp25",100,true],
    ["rhs_weap_ak103_gp25_npz",100,true],
    ["rhs_weap_ak103_zenitco01",100,true],
    ["rhs_weap_ak103_zenitco01_b33",100,true],
    ["rhs_weap_ak103_1",100,true],
    ["rhs_weap_ak103_1_npz",100,true],
    ["rhs_weap_ak103_2",100,true],
    ["rhs_weap_ak103_2_npz",100,true],
    ["rhs_weap_ak104",100,true],
    ["rhs_weap_ak104_npz",100,true],
    ["rhs_weap_ak104_zenitco01",100,true],
    ["rhs_weap_ak104_zenitco01_b33",100,true],
    ["rhs_weap_ak105",100,true],
    ["rhs_weap_ak105_npz",100,true],
    ["rhs_weap_ak105_zenitco01",100,true],
    ["rhs_weap_ak105_zenitco01_b33",100,true],
    ["arifle_AK12_F",100,true],
    ["arifle_AK12_arid_F",100,true],
    ["arifle_AK12_lush_F",100,true],
    ["arifle_AK12_GL_F",100,true],
    ["arifle_AK12_GL_arid_F",100,true],
    ["arifle_AK12_GL_lush_F",100,true],
    ["arifle_AK12U_F",100,true],
    ["arifle_AK12U_arid_F",100,true],
    ["arifle_AK12U_lush_F",100,true],
    ["rhs_weap_ak74",100,true],
    ["rhs_weap_ak74_gp25",100,true],
    ["rhs_weap_ak74_3",100,true],
    ["rhs_weap_ak74_2",100,true],
    ["rhs_weap_ak74m",100,true],
    ["rhs_weap_ak74m_npz",100,true],
    ["rhs_weap_ak74m_camo",100,true],
    ["rhs_weap_ak74m_desert",100,true],
    ["rhs_weap_ak74m_desert_npz",100,true],
    ["rhs_weap_ak74m_gp25",100,true],
    ["rhs_weap_ak74m_gp25_npz",100,true],
    ["rhs_weap_ak74m_fullplum_gp25",100,true],
    ["rhs_weap_ak74m_fullplum_gp25_npz",100,true],
    ["rhs_weap_ak74m_fullplum",100,true],
    ["rhs_weap_ak74m_fullplum_npz",100,true],
    ["rhs_weap_ak74m_zenitco01",100,true],
    ["rhs_weap_ak74m_zenitco01_b33",100,true],
    ["rhs_weap_ak74mr",100,true],
    ["rhs_weap_ak74mr_gp25",100,true],
    ["rhs_weap_ak74n",100,true],
    ["rhs_weap_ak74n_gp25",100,true],
    ["rhs_weap_ak74n_gp25_npz",100,true],
    ["rhs_weap_ak74n_npz",100,true],
    ["rhs_weap_ak74n_2",100,true],
    ["rhs_weap_ak74n_2_npz",100,true],
    ["rhs_weap_ak74n_2_gp25",100,true],
    ["rhs_weap_ak74n_2_gp25_npz",100,true],
    ["arifle_AKM_F",100,true],
    ["rhs_weap_akm",100,true],
    ["rhs_weap_akm_gp25",100,true],
    ["rhs_weap_akm_zenitco01_b33",100,true],
    ["rhs_weap_akmn",100,true],
    ["rhs_weap_akmn_gp25",100,true],
    ["rhs_weap_akmn_gp25_npz",100,true],
    ["rhs_weap_akmn_npz",100,true],
    ["rhs_weap_akms",100,true],
    ["rhs_weap_akms_gp25",100,true],
    ["rhs_weap_aks74",100,true],
    ["rhs_weap_aks74_gp25",100,true],
    ["rhs_weap_aks74_2",100,true],
    ["rhs_weap_aks74n",100,true],
    ["rhs_weap_aks74n_gp25",100,true],
    ["rhs_weap_aks74n_gp25_npz",100,true],
    ["rhs_weap_aks74n_npz",100,true],
    ["rhs_weap_aks74n_2",100,true],
    ["rhs_weap_aks74n_2_npz",100,true],
    ["rhs_weap_aks74u",100,true],
    ["arifle_AKS_F",100,true],
    ["rhs_weap_aks74un",100,true],
    ["rhs_weap_asval",100,true],
    ["rhs_weap_asval_grip",100,true],
    ["rhs_weap_asval_npz",100,true],
    ["srifle_DMR_04_F",100,true],
    ["srifle_DMR_04_Tan_F",100,true],
    ["hgun_PDWtrue00_F",100,true],
    ["rhs_weap_asval_grip_npz",100,true],
    ["arifle_TRGtrue_F",100,true],
    ["srifle_DMR_05_blk_F",100,true],
    ["srifle_DMR_05_hex_F",100,true],
    ["srifle_DMR_05_tan_f",100,true],
    ["arifle_Mktrue_plain_F",100,true],
    ["tacs_Mktrue_Black_F",100,true],
    ["arifle_Mktrue_F",100,true],
    ["arifle_Mktrue_GL_plain_F",100,true],
    ["arifle_Mktrue_GL_F",100,true],
    ["arifle_MktrueC_plain_F",100,true],
    ["arifle_MktrueC_F",100,true],
    ["rhs_weap_minimi_para_railed",100,true],
    ["LMG_03_F",100,true],
    ["srifle_GM6_F",100,true],
    ["srifle_GM6_camo_F",100,true],
    ["srifle_GM6_ghex_F",100,true],
    ["arifle_TRG21_GL_F",100,true],
    ["rhs_weap_g36c",100,true],
    ["rhs_weap_g36kv",100,true],
    ["rhs_weap_g36kv_ag36",100,true],
    ["MMG_01_hex_F",100,true],
    ["MMG_01_tan_F",100,true],
    ["rhs_weap_hk416d10",100,true],
    ["rhs_weap_hk416d10_m3true",100,true],
    ["rhs_weap_hk416d10_LMT",100,true],
    ["rhs_weap_hk416d10_LMT_d",100,true],
    ["rhs_weap_hk416d10_LMT_wd",100,true],
    ["rhs_weap_hk416d145",100,true],
    ["rhs_weap_hk416d145_d",100,true],
    ["rhs_weap_hk416d145_d_2",100,true],
    ["rhs_weap_hk416d145_m3true",100,true],
    ["rhs_weap_hk416d145_wd",100,true],
    ["arifle_SPAR_01_blk_F",100,true],
    ["arifle_SPAR_01_khk_F",100,true],
    ["arifle_SPAR_01_snd_F",100,true],
    ["rhs_weap_hk416d145_wd_2",100,true],
    ["arifle_SPAR_01_GL_blk_F",100,true],
    ["arifle_SPAR_01_GL_khk_F",100,true],
    ["arifle_SPAR_01_GL_snd_F",100,true],
    ["arifle_SPAR_02_blk_F",100,true],
    ["arifle_SPAR_02_khk_F",100,true],
    ["arifle_SPAR_02_snd_F",100,true],
    ["arifle_SPAR_03_blk_F",100,true],
    ["arifle_SPAR_03_khk_F",100,true],
    ["arifle_SPAR_03_snd_F",100,true],
    ["rhs_weap_Izh18",100,true],
    ["rhs_weap_kar98k",100,true],
    ["arifle_Katiba_F",100,true],
    ["arifle_Katiba_GL_F",100,true],
    ["arifle_Katiba_C_F",100,true],
    ["sgun_HunterShotgun_01_F",100,true],
    ["sgun_HunterShotgun_01_sawedoff_F",100,true],
    ["rhs_weap_l1a1",100,true],
    ["rhs_weap_l1a1_wood",100,true],
    ["LOP_Weap_LeeEnfield_railed",100,true],
    ["MMG_02_black_F",100,true],
    ["MMG_02_camo_F",100,true],
    ["MMG_02_sand_F",100,true],
    ["rhs_weap_m1garand_sa43",100,true],
    ["rhs_weap_M107",100,true],
    ["rhs_weap_M107_d",100,true],
    ["rhs_weap_M107_w",100,true],
    ["rhs_weap_m14",100,true],
    ["srifle_DMR_06_camo_F",100,true],
    ["srifle_DMR_06_hunter_F",100,true],
    ["rhs_weap_m14_d",100,true],
    ["rhs_weap_m14_fiberglass",100,true],
    ["srifle_DMR_06_olive_F",100,true],
    ["rhs_weap_m14_rail",100,true],
    ["rhs_weap_m14_rail_d",100,true],
    ["rhs_weap_m14_rail_fiberglass",100,true],
    ["rhs_weap_m14_rail_wd",100,true],
    ["rhs_weap_m14_ris",100,true],
    ["rhs_weap_m14_ris_d",100,true],
    ["rhs_weap_m14_ris_fiberglass",100,true],
    ["rhs_weap_m14_ris_wd",100,true],
    ["rhs_weap_m14_wd",100,true],
    ["rhs_weap_m16a4",100,true],
    ["rhs_weap_m16a4_carryhandle",100,true],
    ["rhs_weap_m16a4_carryhandle_Mtrue3",100,true],
    ["rhs_weap_m16a4_imod",100,true],
    ["rhs_weap_m16a4_imod_Mtrue3",100,true],
    ["srifle_LRR_F",100,true],
    ["srifle_LRR_camo_F",100,true],
    ["srifle_LRR_tna_F",100,true],
    ["rhs_weap_XMtrue10",100,true],
    ["rhs_weap_XMtrue10_wd",100,true],
    ["rhs_weap_XMtrue10_d",100,true],
    ["rhs_weap_XMtrue10_sa",100,true],
    ["rhs_weap_m21a",100,true],
    ["rhs_weap_m21a_pbg40",100,true],
    ["rhs_weap_m21a_pr",100,true],
    ["rhs_weap_m21a_pr_pbg40",100,true],
    ["rhs_weap_m21s",100,true],
    ["rhs_weap_m21s_pr",100,true],
    ["rhs_weap_m24sws",100,true],
    ["rhs_weap_m24sws_d",100,true],
    ["rhs_weap_m24sws_wd",100,true],
    ["rhs_weap_m240B",100,true],
    ["rhs_weap_m240G",100,true],
    ["rhs_weap_m249",100,true],
    ["rhs_weap_m249_pip",100,true],
    ["rhs_weap_m249_light_L",100,true],
    ["rhs_weap_m249_pip_L_para",100,true],
    ["rhs_weap_m249_pip_L",100,true],
    ["rhs_weap_m249_pip_ris",100,true],
    ["rhs_weap_m249_light_S",100,true],
    ["rhs_weap_m249_pip_S_para",100,true],
    ["rhs_weap_m249_pip_S",100,true],
    ["rhs_weap_m27iar",100,true],
    ["rhs_weap_m27iar_grip",100,true],
    ["rhs_weap_m32",100,true],
    ["rhs_weap_m3a1_specops",100,true],
    ["rhs_weap_m4",100,true],
    ["rhs_weap_m4_carryhandle",100,true],
    ["rhs_weap_m3a1",100,true],
    ["rhs_weap_m4_carryhandle_mtrue3",100,true],
    ["rhs_weap_m4_carryhandle_mtrue3S",100,true],
    ["rhs_weap_m4_carryhandle_mstock",100,true],
    ["rhs_weap_m4_mtrue3",100,true],
    ["rhs_weap_m4_mtrue3S",100,true],
    ["rhs_weap_m4_m3true",100,true],
    ["rhs_weap_m4_mstock",100,true],
    ["rhs_weap_m40a5",100,true],
    ["rhs_weap_m40a5_d",100,true],
    ["rhs_weap_m40a5_wd",100,true],
    ["rhs_weap_m4a1_carryhandle",100,true],
    ["rhs_weap_m4a1_carryhandle_mtrue3",100,true],
    ["rhs_weap_m4a1_carryhandle_mtrue3S",100,true],
    ["rhs_weap_m4a1_carryhandle_mstock",100,true],
    ["rhs_weap_m4a1_blockII",100,true],
    ["rhs_weap_m4a1_blockII_bk",100,true],
    ["rhs_weap_m4a1_blockII_Mtrue3_bk",100,true],
    ["rhs_weap_m4a1_blockII_KAC_bk",100,true],
    ["rhs_weap_m4a1_blockII_d",100,true],
    ["rhs_weap_m4a1_blockII_Mtrue3_d",100,true],
    ["rhs_weap_m4a1_blockII_KAC_d",100,true],
    ["rhs_weap_m4a1_blockII_Mtrue3",100,true],
    ["rhs_weap_m4a1_blockII_KAC",100,true],
    ["rhs_weap_m4a1_blockII_wd",100,true],
    ["rhs_weap_m4a1_blockII_Mtrue3_wd",100,true],
    ["rhs_weap_m4a1_blockII_KAC_wd",100,true],
    ["rhs_weap_m4a1",100,true],
    ["rhs_weap_m4a1_d",100,true],
    ["rhs_weap_m4a1_mtrue3s_d",100,true],
    ["rhs_weap_m4a1_d_mstock",100,true],
    ["rhs_weap_m4a1_mtrue3",100,true],
    ["rhs_weap_m4a1_mtrue3s",100,true],
    ["rhs_weap_m4a1_m3true",100,true],
    ["rhs_weap_m4a1_mstock",100,true],
    ["rhs_weap_m4a1_wd",100,true],
    ["rhs_weap_m4a1_mtrue3s_wd",100,true],
    ["rhs_weap_m4a1_wd_mstock",100,true],
    ["rhs_weap_M590_8RD",100,true],
    ["rhs_weap_M590_5RD",100,true],
    ["rhs_weap_m70ab2",100,true],
    ["rhs_weap_m70b1",100,true],
    ["rhs_weap_m70b1n",100,true],
    ["rhs_weap_m70b3n",100,true],
    ["rhs_weap_m70b3n_pbg40",100,true],
    ["rhs_weap_m76",100,true],
    ["rhs_weap_m79",100,true],
    ["rhs_weap_m82a1",100,true],
    ["rhs_weap_m84",100,true],
    ["rhs_weap_scorpion",100,true],
    ["rhs_weap_m92",100,true],
    ["rhs_weap_mg42",100,true],
    ["rhs_weap_sr25",100,true],
    ["rhs_weap_sr25_d",100,true],
    ["rhs_weap_sr25_ec",100,true],
    ["rhs_weap_sr25_ec_d",100,true],
    ["rhs_weap_sr25_ec_wd",100,true],
    ["rhs_weap_sr25_wd",100,true],
    ["rhs_weap_mk17_CQC",100,true],
    ["rhs_weap_mk17_LB",100,true],
    ["rhs_weap_mk17_STD",100,true],
    ["rhs_weap_mk18",100,true],
    ["rhs_weap_mk18_bk",100,true],
    ["rhs_weap_mk18_KAC_bk",100,true],
    ["rhs_weap_mk18_d",100,true],
    ["rhs_weap_mk18_KAC_d",100,true],
    ["rhs_weap_mk18_m3true",100,true],
    ["rhs_weap_mk18_KAC",100,true],
    ["rhs_weap_mk18_wd",100,true],
    ["rhs_weap_mk18_KAC_wd",100,true],
    ["srifle_EBR_F",100,true],
    ["rhs_weap_m14ebrri",100,true],
    ["tacs_EBR_Black_F",100,true],
    ["rhs_weap_m38",100,true],
    ["rhs_weap_m38_rail",100,true],
    ["rhs_weap_mosin_sbr",100,true],
    ["rhs_weap_MP44",100,true],
    ["SMG_05_F",100,true],
    ["rhsusf_weap_MP7A2",100,true],
    ["rhsusf_weap_MP7A2_aor1",100,true],
    ["rhsusf_weap_MP7A2_desert",100,true],
    ["rhsusf_weap_MP7A2_winter",100,true],
    ["arifle_MSBS65_F",100,true],
    ["arifle_MSBS65_black_F",100,true],
    ["arifle_MSBS65_camo_F",100,true],
    ["arifle_MSBS65_sand_F",100,true],
    ["arifle_MSBS65_GL_F",100,true],
    ["arifle_MSBS65_GL_black_F",100,true],
    ["arifle_MSBS65_GL_camo_F",100,true],
    ["arifle_MSBS65_GL_sand_F",100,true],
    ["arifle_MSBS65_Mark_F",100,true],
    ["arifle_MSBS65_Mark_black_F",100,true],
    ["arifle_MSBS65_Mark_camo_F",100,true],
    ["arifle_MSBS65_Mark_sand_F",100,true],
    ["arifle_MSBS65_UBS_F",100,true],
    ["arifle_MSBS65_UBS_black_F",100,true],
    ["arifle_MSBS65_UBS_camo_F",100,true],
    ["arifle_MSBS65_UBS_sand_F",100,true],
    ["arifle_MX_F",100,true],
    ["tacs_MX_BlackCamo",100,true],
    ["arifle_MX_Black_F",100,true],
    ["arifle_MX_GL_F",100,true],
    ["tacs_MX_GL_BlackCamo",100,true],
    ["arifle_MX_GL_Black_F",100,true],
    ["arifle_MX_GL_khk_F",100,true],
    ["arifle_MX_khk_F",100,true],
    ["arifle_MX_SW_F",100,true],
    ["arifle_MX_SW_Black_F",100,true],
    ["arifle_MX_SW_khk_F",100,true],
    ["arifle_MXC_F",100,true],
    ["arifle_MXC_Black_F",100,true],
    ["arifle_MXC_khk_F",100,true],
    ["arifle_MXM_F",100,true],
    ["arifle_MXM_Black_F",100,true],
    ["arifle_MXM_khk_F",100,true],
    ["LMG_Zafir_F",100,true],
    ["srifle_DMR_02_F",100,true],
    ["srifle_DMR_02_camo_F",100,true],
    ["srifle_DMR_02_sniper_F",100,true],
    ["SMG_03C_black",100,true],
    ["SMG_03C_camo",100,true],
    ["SMG_03C_hex",100,true],
    ["SMG_03C_khaki",100,true],
    ["SMG_03C_TR_black",100,true],
    ["SMG_03C_TR_camo",100,true],
    ["SMG_03C_TR_hex",100,true],
    ["SMG_03C_TR_khaki",100,true],
    ["rhs_weap_pkm",100,true],
    ["rhs_weap_pkp",100,true],
    ["rhs_weap_pm63",100,true],
    ["rhs_weap_pptrue00",100,true],
    ["SMG_03_black",100,true],
    ["SMG_03_camo",100,true],
    ["SMG_03_hex",100,true],
    ["SMG_03_khaki",100,true],
    ["SMG_03_TR_black",100,true],
    ["SMG_03_TR_camo",100,true],
    ["SMG_03_TR_hex",100,true],
    ["SMG_03_TR_khaki",100,true],
    ["srifle_DMR_07_blk_F",100,true],
    ["srifle_DMR_07_ghex_F",100,true],
    ["srifle_DMR_07_hex_F",100,true],
    ["arifle_CTAR_blk_F",100,true],
    ["arifle_CTAR_ghex_F",100,true],
    ["arifle_CTAR_hex_F",100,true],
    ["arifle_CTAR_GL_blk_F",100,true],
    ["arifle_CTAR_GL_ghex_F",100,true],
    ["arifle_CTAR_GL_hex_F",100,true],
    ["arifle_CTARS_blk_F",100,true],
    ["arifle_CTARS_ghex_F",100,true],
    ["arifle_CTARS_hex_F",100,true],
    ["arifle_SDAR_F",100,true],
    ["arifle_RPK12_F",100,true],
    ["arifle_RPK12_arid_F",100,true],
    ["arifle_RPK12_lush_F",100,true],
    ["rhs_weap_savz61",100,true],
    ["rhs_weap_savz58p",100,true],
    ["rhs_weap_savz58p_black",100,true],
    ["rhs_weap_savz58p_rail",100,true],
    ["rhs_weap_savz58p_rail_black",100,true],
    ["rhs_weap_savz58v",100,true],
    ["rhs_weap_savz58v_black",100,true],
    ["rhs_weap_savz58v_rail",100,true],
    ["rhs_weap_savz58v_rail_black",100,true],
    ["rhs_weap_savz58v_ris",100,true],
    ["rhs_weap_SCARH_CQC",100,true],
    ["rhs_weap_SCARH_FDE_CQC",100,true],
    ["rhs_weap_SCARH_FDE_LB",100,true],
    ["rhs_weap_SCARH_LB",100,true],
    ["rhs_weap_SCARH_FDE_STD",100,true],
    ["rhs_weap_SCARH_STD",100,true],
    ["rhs_weap_SCARH_USA_CQC",100,true],
    ["rhs_weap_SCARH_USA_LB",100,true],
    ["rhs_weap_SCARH_USA_STD",100,true],
    ["SMG_02_F",100,true],
    ["srifle_DMR_03_F",100,true],
    ["srifle_DMR_03_multicam_F",100,true],
    ["srifle_DMR_03_khaki_F",100,true],
    ["srifle_DMR_03_tan_F",100,true],
    ["srifle_DMR_03_woodland_F",100,true],
    ["rhs_weap_m14_socom",100,true],
    ["rhs_weap_m14_socom_rail",100,true],
    ["LMG_Mktrue0_F",100,true],
    ["LMG_Mktrue0_black_F",100,true],
    ["rhs_weap_svdp",100,true],
    ["rhs_weap_svdp_wd",100,true],
    ["rhs_weap_svdp_wd_npz",100,true],
    ["rhs_weap_svdp_npz",100,true],
    ["rhs_weap_svds",100,true],
    ["rhs_weap_svds_npz",100,true],
    ["rhs_weap_t5000",100,true],
    ["arifle_TRG21_F",100,true],
    ["arifle_ARX_blk_F",100,true],
    ["arifle_ARX_ghex_F",100,true],
    ["arifle_ARX_hex_F",100,true],
    ["SMG_01_F",100,true],
    ["rhs_weap_vhsd2",100,true],
    ["rhs_weap_vhsd2_ct15x",100,true],
    ["rhs_weap_vhsd2_bg",100,true],
    ["rhs_weap_vhsd2_bg_ct15x",100,true],
    ["rhs_weap_vhsk2",100,true],
    ["srifle_DMR_01_F",100,true],
    ["rhs_weap_vss",100,true],
    ["rhs_weap_vss_grip",100,true],
    ["rhs_weap_vss_grip_npz",100,true],
    ["rhs_weap_vss_npz",100,true],
    ["rhs_weap_6p53",100,true],
    ["rhs_weap_pb_6p9",100,true],
    ["hgun_Pistol_heavy_02_F",100,true],
    ["hgun_ACPC2_F",100,true],
    ["rhs_weap_cz99",100,true],
    ["hgun_Pistol_heavy_01_F",100,true],
    ["hgun_Pistol_heavy_01_green_F",100,true],
    ["rhsusf_weap_glock17g4",100,true],
    ["rhsusf_weap_m1911a1",100,true],
    ["rhs_weap_M3true",100,true],
    ["rhsusf_weap_m9",100,true],
    ["ACE_Flashlight_Maglite_ML300L",100,true],
    ["hgun_Pistol_01_F",100,true],
    ["rhs_weap_pya",100,true],
    ["hgun_Rook40_F",100,true],
    ["hgun_P07_F",100,true],
    ["hgun_P07_khk_F",100,true],
    ["rhs_weap_makarov_pm",100,true],
    ["rhs_weap_pptrue00_folded",100,true],
    ["rhs_weap_rsp30_white",100,true],
    ["rhs_weap_rsp30_green",100,true],
    ["rhs_weap_rsp30_red",100,true],
    ["rhs_weap_savz61_folded",100,true],
    ["hgun_esd_01_F",100,true],
    ["hgun_Pistol_Signal_F",100,true],
    ["rhs_weap_tr8",100,true],
    ["rhs_weap_tt33",100,true],
    ["rhs_weap_type94_new",100,true],
    ["ACE_VMH3",100,true],
    ["ACE_VMM3",100,true],
    ["tacs_Walther_P99",100,true],
    ["tacs_Walther_P99_Tan",100,true],
    ["rhsusf_acc_wmx_bk",100,true],
    ["rhsusf_acc_wmx",100,true],
    ["acc_flashlight",100,true],
    ["acc_flashlight_smg_01",100,true],
    ["acc_esd_01_flashlight",100,true],
    ["acc_flashlight_pistol",100,true],
    ["rhs_acc_perst3_2dp_light_h",100,true],
    ["rhs_acc_perst3_2dp_h",100,true],
    ["rhs_acc_perst3_top",100,true],
    ["rhs_acc_perst3",100,true],
    ["rhs_acc_perst1ik_ris",100,true],
    ["rhs_acc_perst1ik",100,true],
    ["rhsusf_acc_M952V",100,true],
    ["acc_pointer_IR",100,true],
    ["ACE_acc_pointer_green",100,true],
    ["rhsgref_K98k_acc_sighthood_add",100,true],
    ["rhs_item_flightrecorder",100,true],
    ["rhs_acc_at4_handler",100,true],
    ["rhsusf_acc_anpeq16a_light_top",100,true],
    ["rhsusf_acc_anpeq16a_top",100,true],
    ["rhsusf_acc_anpeq16a_light",100,true],
    ["rhsusf_acc_anpeq16a",100,true],
    ["rhsusf_acc_anpeq15A",100,true],
    ["rhsusf_acc_anpeq15_bk_light",100,true],
    ["rhsusf_acc_anpeq15_bk",100,true],
    ["rhsusf_acc_anpeq15_light",100,true],
    ["rhsusf_acc_anpeq15",100,true],
    ["rhsusf_acc_anpeq15_bk_top",100,true],
    ["rhsusf_acc_anpeq15side_bk",100,true],
    ["rhsusf_acc_anpeq15_wmx_light",100,true],
    ["rhsusf_acc_anpeq15_wmx",100,true],
    ["rhsusf_acc_anpeq15_top",100,true],
    ["rhsusf_acc_anpeq15side",100,true],
    ["rhs_acc_2dpZenit_ris",100,true],
    ["rhs_acc_2dpZenit",100,true],
    ["rhs_acc_grip_rk2",100,true],
    ["rhs_acc_grip_rk6",100,true],
    ["rhsusf_acc_rvg_blk",100,true],
    ["rhsusf_acc_rvg_de",100,true],
    ["rhsusf_acc_saw_bipod",100,true],
    ["rhsusf_acc_grip4",100,true],
    ["rhsusf_acc_grip4_bipod",100,true],
    ["rhsusf_acc_saw_lw_bipod",100,true],
    ["rhsusf_acc_tacsac_blk",100,true],
    ["rhsusf_acc_tacsac_blue",100,true],
    ["rhsusf_acc_tacsac_tan",100,true],
    ["rhsusf_acc_tdstubby_blk",100,true],
    ["rhsusf_acc_tdstubby_tan",100,true],
    ["rhsusf_acc_grip3",100,true],
    ["rhsusf_acc_grip3_tan",100,true],
    ["rhsusf_acc_m14_bipod",100,true],
    ["rhsusf_acc_kac_grip",100,true],
    ["rhsusf_acc_kac_grip_saw_bipod",100,true],
    ["rhsusf_acc_harris_swivel",100,true],
    ["rhsusf_acc_harris_bipod",100,true],
    ["rhs_acc_harris_swivel",100,true],
    ["rhsusf_acc_grip1",100,true],
    ["rhs_acc_grip_ffg2",100,true],
    ["ChemicalDetector_01_tan_F",100,true],
    ["ChemicalDetector_01_olive_F",100,true],
    ["ChemicalDetector_01_black_F",100,true],
    ["bipod_02_F_tan",100,true],
    ["bipod_01_F_snd",100,true],
    ["bipod_03_F_oli",100,true],
    ["bipod_01_F_mtp",100,true],
    ["bipod_02_F_lush",100,true],
    ["bipod_01_F_khk",100,true],
    ["bipod_02_F_hex",100,true],
    ["bipod_01_F_blk",100,true],
    ["bipod_02_F_blk",100,true],
    ["bipod_03_F_blk",100,true],
    ["bipod_02_F_arid",100,true],
    ["rhsusf_acc_grip2_wd",100,true],
    ["rhsusf_acc_grip2_tan",100,true],
    ["rhsusf_acc_grip2",100,true],
    ["launch_B_Titan_short_tna_F",100,true],
    ["launch_B_Titan_short_F",100,true],
    ["launch_I_Titan_short_F",100,true],
    ["launch_O_Titan_short_ghex_F",100,true],
    ["launch_O_Titan_short_F",100,true],
    ["launch_B_Titan_tna_F",100,true],
    ["launch_B_Titan_F",100,true],
    ["launch_B_Titan_olive_F",100,true],
    ["launch_O_Titan_ghex_F",100,true],
    ["launch_I_Titan_eaf_F",100,true],
    ["launch_I_Titan_F",100,true],
    ["launch_O_Titan_F",100,true],
    ["rhs_weap_rshg2",100,true],
    ["rhs_weap_rpg7",100,true],
    ["rhs_weap_rpg75",100,true],
    ["launch_RPG7_F",100,true],
    ["launch_RPG32_green_F",100,true],
    ["launch_RPG32_ghex_F",100,true],
    ["launch_RPG32_F",100,true],
    ["rhs_weap_rpg26",100,true],
    ["rhs_weap_m80",100,true],
    ["rhs_weap_panzerfaust60",100,true],
    ["launch_NLAW_F",100,true],
    ["rhs_weap_smaw_green",100,true],
    ["rhs_weap_smaw",100,true],
    ["launch_O_Vorona_green_F",100,true],
    ["launch_O_Vorona_brown_F",100,true],
    ["launch_MRAWS_sand_F",100,true],
    ["launch_MRAWS_olive_F",100,true],
    ["launch_MRAWS_green_F",100,true],
    ["launch_MRAWS_sand_rail_F",100,true],
    ["launch_MRAWS_olive_rail_F",100,true],
    ["launch_MRAWS_green_rail_F",100,true],
    ["rhs_weap_maaws",100,true],
    ["rhs_weap_M136_hp",100,true],
    ["rhs_weap_m72a7",100,true],
    ["rhs_weap_M136_hedp",100,true],
    ["rhs_weap_M136",100,true],
    ["rhs_weap_fim92",100,true],
    ["rhs_weap_fgm148",100,true],
    ["ace_csw_staticHMGCarry",100,true],
    ["ace_csw_staticGMGCarry",100,true],
    ["ace_csw_staticATCarry",100,true],
    ["ace_csw_staticAACarry",100,true],
    ["ace_compat_rhs_afrf3_spg9m_carry",100,true],
    ["ace_compat_rhs_afrf3_spg9_carry",100,true],
    ["ace_csw_spg9CarryTripod",100,true],
    ["ace_csw_sag30CarryTripod",100,true],
    ["ace_compat_rhs_afrf3_nsv_carry",100,true],
    ["ace_csw_carryMortarBaseplate",100,true],
    ["ace_csw_staticMortarCarry",100,true],
    ["ace_compat_rhs_usf3_mk19_carry",100,true],
    ["ace_dragon_super",100,true],
    ["ace_csw_m3CarryTripodLow",100,true],
    ["ace_csw_m3CarryTripod",100,true],
    ["ace_compat_rhs_usf3_m252_carry",100,true],
    ["ace_csw_m2trueCarryTripod",100,true],
    ["ace_compat_rhs_usf3_m2_carry",100,true],
    ["ace_compat_rhs_afrf3_kord_carry",100,true],
    ["ace_compat_rhs_gref3_dshkm_carry",100,true],
    ["ace_compat_rhs_usf3_tow_carry",100,true],
    ["ace_compat_rhs_afrf3_ags30_carry",100,true],
    ["ace_compat_rhs_afrf3_kornet_carry",100,true],
    ["ace_compat_rhs_afrf3_metis_carry",100,true],
    ["ace_csw_kordCarryTripodLow",100,true],
    ["ace_csw_kordCarryTripod",100,true],
    ["ace_compat_rhs_afrf3_2b14_carry",100,true],
    ["rhs_weap_igla",100,true],
    ["rhs_acc_1p29",100,true],
    ["rhs_acc_1p63",100,true],
    ["rhs_acc_rakursPM",100,true],
    ["rhs_acc_1p78",100,true],
    ["rhs_acc_1p87",100,true],
    ["rhs_acc_1pn34",100,true],
    ["rhs_acc_1pn93_1",100,true],
    ["rhs_acc_1pn93_2",100,true],
    ["rhsusf_acc_anpas13gv1",100,true],
    ["rhsusf_acc_ACOG2_USMC",100,true],
    ["rhsusf_acc_ACOG3_USMC",100,true],
    ["rhsusf_acc_ACOG_USMC",100,true],
    ["rhsgref_acc_l1a1_anpvs2",100,true],
    ["rhsusf_acc_anpvs27",100,true],
    ["optic_Arco_arid_F",100,true],
    ["optic_Arco_lush_F",100,true],
    ["ACE_optic_Arco_PIP",100,true],
    ["optic_Arco_AK_arid_F",100,true],
    ["optic_Arco_AK_blk_F",100,true],
    ["optic_Arco_AK_lush_F",100,true],
    ["optic_Yorris",100,true],
    ["optic_DMS",100,true],
    ["optic_DMS_ghex_F",100,true],
    ["optic_ACO_grn",100,true],
    ["optic_Aco",100,true],
    ["optic_ACO_grn_smg",100,true],
    ["optic_Aco_smg",100,true],
    ["rhs_acc_dh5truex56",100,true],
    ["optic_DMS_weathered_F",100,true],
    ["optic_DMS_weathered_Kir_F",100,true],
    ["rhs_acc_ekp1",100,true],
    ["rhs_acc_ekp8_02",100,true],
    ["rhs_acc_ekp8_18",100,true],
    ["ACE_optic_Arco_2D",100,true],
    ["optic_Arco_blk_F",100,true],
    ["optic_Arco_ghex_F",100,true],
    ["optic_Arco",100,true],
    ["optic_Holosight_blk_F",100,true],
    ["optic_Holosight_khk_F",100,true],
    ["optic_Holosight",100,true],
    ["optic_Holosight_smg_blk_F",100,true],
    ["optic_Holosight_smg_khk_F",100,true],
    ["optic_Holosight_smg",100,true],
    ["rhsusf_acc_EOTECH",100,true],
    ["rhsusf_acc_g33_T1",100,true],
    ["rhsusf_acc_g33_xps3",100,true],
    ["rhsusf_acc_g33_xps3_tan",100,true],
    ["optic_MRCO",100,true],
    ["ACE_optic_MRCO_2D",100,true],
    ["optic_KHS_blk",100,true],
    ["optic_KHS_hex",100,true],
    ["optic_KHS_old",100,true],
    ["optic_KHS_tan",100,true],
    ["rhsgref_acc_l1a1_l2a2",100,true],
    ["optic_Hamr",100,true],
    ["ACE_optic_Hamr_2D",100,true],
    ["optic_Hamr_khk_F",100,true],
    ["ACE_optic_LRPS_PIP",100,true],
    ["rhsusf_acc_ELCAN",100,true],
    ["rhsusf_acc_ELCAN_ard",100,true],
    ["rhsusf_acc_ACOG",100,true],
    ["rhsusf_acc_ACOG2",100,true],
    ["rhsusf_acc_ACOG3",100,true],
    ["rhsusf_acc_ACOG_anpvs27",100,true],
    ["rhsusf_acc_M2A1",100,true],
    ["rhs_optic_maaws",100,true],
    ["rhsusf_acc_eotech_552",100,true],
    ["rhsusf_acc_eotech_552_d",100,true],
    ["rhsusf_acc_eotech_552_wd",100,true],
    ["rhsusf_acc_compm4",100,true],
    ["rhsusf_acc_M8541",100,true],
    ["rhsusf_acc_M8541_low",100,true],
    ["rhsusf_acc_M8541_low_d",100,true],
    ["rhsusf_acc_M8541_low_wd",100,true],
    ["rhsusf_acc_M8541_mrds",100,true],
    ["rhsusf_acc_premier_low",100,true],
    ["rhsusf_acc_premier_anpvs27",100,true],
    ["rhsusf_acc_premier",100,true],
    ["rhsusf_acc_premier_mrds",100,true],
    ["rhsgref_mg42_acc_AAsight",100,true],
    ["rhsusf_acc_LEUPOLDMK4",100,true],
    ["rhsusf_acc_LEUPOLDMK4_2",100,true],
    ["rhsusf_acc_LEUPOLDMK4_d",100,true],
    ["rhsusf_acc_LEUPOLDMK4_wd",100,true],
    ["rhsusf_acc_LEUPOLDMK4_2_d",100,true],
    ["rhsusf_acc_LEUPOLDMK4_2_mrds",100,true],
    ["optic_Holosight_arid_F",100,true],
    ["optic_Holosight_lush_F",100,true],
    ["optic_SOS",100,true],
    ["ACE_optic_SOS_2D",100,true],
    ["optic_SOS_khk_F",100,true],
    ["ACE_optic_SOS_PIP",100,true],
    ["optic_MRD",100,true],
    ["optic_MRD_black",100,true],
    ["rhsusf_acc_mrds",100,true],
    ["rhsusf_acc_mrds_fwd",100,true],
    ["rhsusf_acc_mrds_c",100,true],
    ["rhsusf_acc_mrds_fwd_c",100,true],
    ["optic_LRPS",100,true],
    ["ACE_optic_LRPS_2D",100,true],
    ["optic_LRPS_ghex_F",100,true],
    ["optic_LRPS_tna_F",100,true],
    ["optic_Nightstalker",100,true],
    ["rhs_acc_nita",100,true],
    ["optic_NVS",100,true],
    ["rhs_acc_okp7_dovetail",100,true],
    ["rhs_acc_okp7_picatinny",100,true],
    ["rhs_acc_pgo7v",100,true],
    ["rhs_acc_pgo7v2",100,true],
    ["rhs_acc_pgo7v3",100,true],
    ["rhs_acc_pkas",100,true],
    ["optic_ico_01_f",100,true],
    ["optic_ico_01_black_f",100,true],
    ["optic_ico_01_camo_f",100,true],
    ["optic_ico_01_sand_f",100,true],
    ["rhs_acc_pso1m2",100,true],
    ["rhs_acc_pso1m21",100,true],
    ["ACE_optic_Hamr_PIP",100,true],
    ["rhsusf_acc_RM05",100,true],
    ["rhsusf_acc_RM05_fwd",100,true],
    ["rhsusf_acc_RX01_NoFilter",100,true],
    ["rhsgref_acc_RX01_NoFilter_camo",100,true],
    ["rhsgref_acc_RX01_camo",100,true],
    ["rhsusf_acc_RX01",100,true],
    ["rhsusf_acc_RX01_NoFilter_tan",100,true],
    ["rhsusf_acc_RX01_tan",100,true],
    ["optic_ERCO_khk_F",100,true],
    ["optic_ERCO_snd_F",100,true],
    ["rhs_weap_optic_smaw",100,true],
    ["rhsusf_acc_su230",100,true],
    ["optic_ERCO_blk_F",100,true],
    ["rhsusf_acc_su230_c",100,true],
    ["rhsusf_acc_su230_mrds",100,true],
    ["rhsusf_acc_su230_mrds_c",100,true],
    ["rhsusf_acc_su230a",100,true],
    ["rhsusf_acc_su230a_c",100,true],
    ["rhsusf_acc_su230a_mrds",100,true],
    ["rhsusf_acc_su230a_mrds_c",100,true],
    ["rhsusf_acc_ACOG_MDO",100,true],
    ["rhsusf_acc_T1_high",100,true],
    ["rhsusf_acc_T1_low",100,true],
    ["rhsusf_acc_T1_low_fwd",100,true],
    ["rhsusf_acc_ACOG_d",100,true],
    ["rhsusf_acc_ACOG_wd",100,true],
    ["rhsusf_acc_ACOG_RMR",100,true],
    ["optic_tws",100,true],
    ["optic_tws_mg",100,true],
    ["optic_AMS",100,true],
    ["optic_AMS_khk",100,true],
    ["optic_AMS_snd",100,true],
    ["rhsusf_acc_eotech_xps3",100,true],
    ["ACE_M14",100,true],
    ["rhs_mag_an_m14_th3",100,true],
    ["rhs_mag_an_m8hc",100,true],
    ["rhssaf_mag_br_m75",100,true],
    ["rhssaf_mag_br_m84",100,true],
    ["rhssaf_mag_brd_m83_blue",100,true],
    ["rhssaf_mag_brd_m83_green",100,true],
    ["rhssaf_mag_brd_m83_orange",100,true],
    ["rhssaf_mag_brd_m83_red",100,true],
    ["rhssaf_mag_brd_m83_white",100,true],
    ["rhssaf_mag_brd_m83_yellow",100,true],
    ["rhssaf_mag_brk_m79",100,true],
    ["rhssaf_mag_brz_m88",100,true],
    ["Chemlight_blue",100,true],
    ["Chemlight_green",100,true],
    ["ACE_Chemlight_HiBlue",100,true],
    ["ACE_Chemlight_HiGreen",100,true],
    ["ACE_Chemlight_HiRed",100,true],
    ["ACE_Chemlight_HiWhite",100,true],
    ["ACE_Chemlight_HiYellow",100,true],
    ["ACE_Chemlight_IR",100,true],
    ["ACE_Chemlight_Orange",100,true],
    ["Chemlight_red",100,true],
    ["ACE_Chemlight_UltraHiOrange",100,true],
    ["ACE_Chemlight_White",100,true],
    ["Chemlight_yellow",100,true],
    ["ACE_CTS9",100,true],
    ["rhs_grenade_m1939e_mag",100,true],
    ["rhs_grenade_m1939l_mag",100,true],
    ["rhs_grenade_m1939e_f_mag",100,true],
    ["rhs_grenade_m1939l_f_mag",100,true],
    ["rhs_mag_f1",100,true],
    ["rhs_mag_fakel",100,true],
    ["rhs_mag_fakels",100,true],
    ["I_IR_Grenade",100,true],
    ["O_IR_Grenade",100,true],
    ["I_E_IR_Grenade",100,true],
    ["B_IR_Grenade",100,true],
    ["O_R_IR_Grenade",100,true],
    ["ACE_HandFlare_Green",100,true],
    ["ACE_HandFlare_Red",100,true],
    ["ACE_HandFlare_White",100,true],
    ["ACE_HandFlare_Yellow",100,true],
    ["rhs_grenade_m15_mag",100,true],
    ["rhs_mag_m18_green",100,true],
    ["rhs_mag_m18_purple",100,true],
    ["rhs_mag_m18_red",100,true],
    ["SmokeShellBlue",100,true],
    ["SmokeShellGreen",100,true],
    ["SmokeShellOrange",100,true],
    ["SmokeShellPurple",100,true],
    ["SmokeShellRed",100,true],
    ["SmokeShellYellow",100,true],
    ["rhs_mag_m18_yellow",100,true],
    ["HandGrenade",100,true],
    ["rhs_mag_m67",100,true],
    ["rhs_mag_m69",100,true],
    ["rhs_mag_m7a3_cs",100,true],
    ["rhs_grenade_anm8_mag",100,true],
    ["SmokeShell",100,true],
    ["ACE_M84",100,true],
    ["rhs_mag_mk84",100,true],
    ["rhs_grenade_mki_mag",100,true],
    ["rhs_grenade_mkii_mag",100,true],
    ["rhs_grenade_mkiiia1_mag",100,true],
    ["rhs_mag_mk3a2",100,true],
    ["rhs_grenade_nbhgr39_mag",100,true],
    ["rhs_grenade_nbhgr39B_mag",100,true],
    ["rhs_mag_nspd",100,true],
    ["rhs_mag_nspn_green",100,true],
    ["rhs_mag_nspn_red",100,true],
    ["rhs_mag_nspn_yellow",100,true],
    ["rhs_mag_plamyam",100,true],
    ["rhs_mag_rdg2_black",100,true],
    ["rhs_mag_rdg2_white",100,true],
    ["rhs_mag_rgd5",100,true],
    ["rhs_mag_rgn",100,true],
    ["rhs_mag_rgo",100,true],
    ["rhsgref_mag_rkg3em",100,true],
    ["rhssaf_mag_rshb_p98",100,true],
    ["rhs_charge_sb3kg_mag",100,true],
    ["rhs_grenade_sthgr24_heerfrag_mag",100,true],
    ["rhs_grenade_sthgr24_SSfrag_mag",100,true],
    ["rhs_grenade_sthgr24_x7bundle_mag",100,true],
    ["rhs_grenade_sthgr24_mag",100,true],
    ["rhs_grenade_sthgr43_mag",100,true],
    ["rhs_grenade_sthgr43_heerfrag_mag",100,true],
    ["rhs_grenade_sthgr43_SSfrag_mag",100,true],
    ["MiniGrenade",100,true],
    ["rhs_mag_zarya2",100,true],
    ["rhs_charge_tnt_x2_mag",100,true],
    ["rhs_acc_6p9_suppressor",100,true],
    ["rhsusf_acc_aac_762sd_silencer",100,true],
    ["rhsusf_acc_aac_762sdn6_silencer",100,true],
    ["rhsgref_sdn6_suppressor",100,true],
    ["rhsusf_acc_aac_scarh_silencer",100,true],
    ["rhs_acc_uuk",100,true],
    ["rhsusf_acc_ARDEC_M240",100,true],
    ["rhs_acc_dtk1l",100,true],
    ["rhs_acc_ak5",100,true],
    ["rhs_acc_dtkakm",100,true],
    ["rhs_acc_dtk",100,true],
    ["rhs_acc_dtk1983",100,true],
    ["rhs_acc_dtk1",100,true],
    ["rhs_acc_dtk1p",100,true],
    ["rhs_acc_dtk2",100,true],
    ["rhs_acc_dtk3",100,true],
    ["rhs_acc_dtk4short",100,true],
    ["rhs_acc_dtk4screws",100,true],
    ["rhs_acc_dtk4long",100,true],
    ["ACE_muzzle_mzls_338",100,true],
    ["ACE_muzzle_mzls_smg_01",100,true],
    ["ACE_muzzle_mzls_L",100,true],
    ["ACE_muzzle_mzls_H",100,true],
    ["ACE_muzzle_mzls_B",100,true],
    ["ACE_muzzle_mzls_smg_02",100,true],
    ["ACE_muzzle_mzls_93mmg",100,true],
    ["rhsgref_acc_falMuzzle_l1a1",100,true],
    ["rhsusf_acc_aac_m14dcqd_silencer",100,true],
    ["rhsusf_acc_aac_m14dcqd_silencer_d",100,true],
    ["rhsusf_acc_aac_m14dcqd_silencer_wd",100,true],
    ["rhsusf_acc_m14_flashsuppresor",100,true],
    ["rhsusf_acc_m24_muzzlehider_black",100,true],
    ["rhsusf_acc_m24_muzzlehider_d",100,true],
    ["rhsusf_acc_m24_muzzlehider_wd",100,true],
    ["rhsusf_acc_m24_silencer_black",100,true],
    ["rhsusf_acc_m24_silencer_d",100,true],
    ["rhsusf_acc_m24_silencer_wd",100,true],
    ["rhsusf_acc_nt4_black",100,true],
    ["rhsusf_acc_nt4_tan",100,true],
    ["rhs_acc_pbs1",100,true],
    ["rhs_acc_pbs4",100,true],
    ["rhs_acc_pgs64",100,true],
    ["rhs_acc_pgs64_74u",100,true],
    ["rhs_acc_pgs64_74un",100,true],
    ["rhsusf_acc_rotex5_grey",100,true],
    ["rhsusf_acc_rotex5_tan",100,true],
    ["rhsusf_acc_rotex_mp7_aor1",100,true],
    ["rhsusf_acc_rotex_mp7",100,true],
    ["rhsusf_acc_rotex_mp7_desert",100,true],
    ["rhsusf_acc_rotex_mp7_winter",100,true],
    ["muzzle_antenna_02_f",100,true],
    ["muzzle_antenna_03_f",100,true],
    ["muzzle_antenna_01_f",100,true],
    ["rhsusf_acc_SF3P556",100,true],
    ["rhsusf_acc_SFMB556",100,true],
    ["rhsusf_acc_omega9k",100,true],
    ["muzzle_snds_338_black",100,true],
    ["muzzle_snds_338_green",100,true],
    ["muzzle_snds_338_sand",100,true],
    ["muzzle_snds_acp",100,true],
    ["muzzle_snds_M",100,true],
    ["muzzle_snds_m_khk_F",100,true],
    ["muzzle_snds_m_snd_F",100,true],
    ["muzzle_snds_570",100,true],
    ["muzzle_snds_H",100,true],
    ["muzzle_snds_H_khk_F",100,true],
    ["muzzle_snds_H_snd_F",100,true],
    ["muzzle_snds_B",100,true],
    ["muzzle_snds_B_arid_F",100,true],
    ["muzzle_snds_B_khk_F",100,true],
    ["muzzle_snds_B_lush_F",100,true],
    ["muzzle_snds_B_snd_F",100,true],
    ["muzzle_snds_L",100,true],
    ["muzzle_snds_93mmg",100,true],
    ["muzzle_snds_93mmg_tan",100,true],
    ["muzzle_snds_H_MG_blk_F",100,true],
    ["muzzle_snds_H_MG_khk_F",100,true],
    ["muzzle_snds_H_MG",100,true],
    ["rhsusf_acc_SR25S",100,true],
    ["rhsusf_acc_SR25S_d",100,true],
    ["rhsusf_acc_SR25S_wd",100,true],
    ["muzzle_snds_58_blk_F",100,true],
    ["muzzle_snds_58_ghex_F",100,true],
    ["muzzle_snds_58_hex_F",100,true],
    ["muzzle_snds_65_TI_blk_F",100,true],
    ["muzzle_snds_65_TI_ghex_F",100,true],
    ["muzzle_snds_65_TI_hex_F",100,true],
    ["rhs_acc_tgpa",100,true],
    ["rhs_acc_tgpv",100,true],
    ["rhs_acc_tgpv2",100,true],
    ["rhsusf_acc_Mtrue10S",100,true],
    ["rhsusf_acc_Mtrue10S_d",100,true],
    ["rhsusf_acc_Mtrue10S_sa",100,true],
    ["rhsusf_acc_Mtrue10S_wd",100,true],
    ["rhsgref_acc_zendl",100,true],
    ["ACE_10Rnd_338_300gr_HPBT_Mag",100,true],
    ["ACE_10Rnd_338_API526_Mag",100,true],
    ["10Rnd_338_Mag",100,true],
    ["130Rnd_338_Mag",100,true],
    ["7Rnd_408_Mag",100,true],
    ["ACE_7Rnd_408_305gr_Mag",100,true],
    ["30Rnd_45ACP_Mag_SMG_01",100,true],
    ["30Rnd_45ACP_Mag_SMG_01_Tracer_Green",100,true],
    ["9Rnd_45ACP_Mag",100,true],
    ["11Rnd_45ACP_Mag",100,true],
    ["30Rnd_45ACP_Mag_SMG_01_Tracer_Red",100,true],
    ["30Rnd_45ACP_Mag_SMG_01_Tracer_Yellow",100,true],
    ["6Rnd_45ACP_Cylinder",100,true],
    ["10Rnd_50BW_Mag_F",100,true],
    ["rhs_mag_100Rnd_556x45_M855_cmag",100,true],
    ["rhs_mag_100Rnd_556x45_M855_cmag_mixed",100,true],
    ["rhs_mag_100Rnd_556x45_M855A1_cmag",100,true],
    ["rhs_mag_100Rnd_556x45_M855A1_cmag_mixed",100,true],
    ["rhs_mag_100Rnd_556x45_Mk262_cmag",100,true],
    ["rhs_mag_100Rnd_556x45_Mk318_cmag",100,true],
    ["rhssaf_100rnd_556x45_EPR_G36",100,true],
    ["rhsusf_100Rnd_762x51_m61_ap",100,true],
    ["rhsusf_100Rnd_762x51_m62_tracer",100,true],
    ["rhsusf_100Rnd_762x51",100,true],
    ["rhsusf_100Rnd_762x51_m80a1epr",100,true],
    ["rhsusf_100Rnd_762x51_m82_blank",100,true],
    ["rhsusf_100Rnd_556x45_Mtrue0_soft_pouch",100,true],
    ["rhsusf_100Rnd_556x45_Mtrue0_soft_pouch_ucp",100,true],
    ["rhsusf_100Rnd_556x45_Mtrue0_soft_pouch_coyote",100,true],
    ["rhsusf_100Rnd_556x45_M855_soft_pouch",100,true],
    ["rhsusf_100Rnd_556x45_M855_soft_pouch_ucp",100,true],
    ["rhsusf_100Rnd_556x45_M855_soft_pouch_coyote",100,true],
    ["rhsusf_100Rnd_556x45_M855_mixed_soft_pouch",100,true],
    ["rhsusf_100Rnd_556x45_M855_mixed_soft_pouch_ucp",100,true],
    ["rhsusf_100Rnd_556x45_M855_mixed_soft_pouch_coyote",100,true],
    ["rhsusf_100Rnd_556x45_soft_pouch",100,true],
    ["rhsusf_100Rnd_556x45_soft_pouch_ucp",100,true],
    ["rhsusf_100Rnd_556x45_soft_pouch_coyote",100,true],
    ["rhsusf_100Rnd_556x45_mixed_soft_pouch",100,true],
    ["rhsusf_100Rnd_556x45_mixed_soft_pouch_ucp",100,true],
    ["rhsusf_100Rnd_556x45_mixed_soft_pouch_coyote",100,true],
    ["rhs_100Rnd_762x54mmR",100,true],
    ["rhs_100Rnd_762x54mmR_7BZ3",100,true],
    ["rhs_100Rnd_762x54mmR_7N13",100,true],
    ["rhs_100Rnd_762x54mmR_7N26",100,true],
    ["rhs_100Rnd_762x54mmR_green",100,true],
    ["LOP_10rnd_77mm_mag",100,true],
    ["rhsusf_10Rnd_762x51_m118_special_Mag",100,true],
    ["rhsusf_10Rnd_762x51_m62_Mag",100,true],
    ["rhsusf_10Rnd_762x51_m993_Mag",100,true],
    ["rhs_10Rnd_762x39mm",100,true],
    ["rhs_10Rnd_762x39mm_89",100,true],
    ["rhs_10Rnd_762x39mm_tracer",100,true],
    ["rhs_10Rnd_762x39mm_U",100,true],
    ["rhs_10rnd_9x39mm_SP5",100,true],
    ["rhs_10rnd_9x39mm_SP6",100,true],
    ["rhsusf_mag_10Rnd_STD_50BMG_M33",100,true],
    ["rhsusf_mag_10Rnd_STD_50BMG_mk211",100,true],
    ["rhssaf_10Rnd_792x57_m76_tracer",100,true],
    ["rhsgref_10Rnd_792x57_m76",100,true],
    ["rhsgref_10rnd_765x17_vz61",100,true],
    ["rhs_10Rnd_762x54mmR_7N1",100,true],
    ["rhs_10Rnd_762x54mmR_7N14",100,true],
    ["ACE_2Rnd_12Gauge_Pellets_No0_Buck",100,true],
    ["2Rnd_12Gauge_Pellets",100,true],
    ["ACE_2Rnd_12Gauge_Pellets_No1_Buck",100,true],
    ["ACE_2Rnd_12Gauge_Pellets_No2_Buck",100,true],
    ["ACE_2Rnd_12Gauge_Pellets_No3_Buck",100,true],
    ["ACE_2Rnd_12Gauge_Pellets_No4_Buck",100,true],
    ["ACE_2Rnd_12Gauge_Pellets_No4_Bird",100,true],
    ["2Rnd_12Gauge_Slug",100,true],
    ["ACE_6Rnd_12Gauge_Pellets_No0_Buck",100,true],
    ["6Rnd_12Gauge_Pellets",100,true],
    ["ACE_6Rnd_12Gauge_Pellets_No1_Buck",100,true],
    ["ACE_6Rnd_12Gauge_Pellets_No2_Buck",100,true],
    ["ACE_6Rnd_12Gauge_Pellets_No3_Buck",100,true],
    ["ACE_6Rnd_12Gauge_Pellets_No4_Buck",100,true],
    ["ACE_6Rnd_12Gauge_Pellets_No4_Bird",100,true],
    ["6Rnd_12Gauge_Slug",100,true],
    ["10Rnd_127x54_Mag",100,true],
    ["5Rnd_127x108_APDS_Mag",100,true],
    ["5Rnd_127x108_Mag",100,true],
    ["ACE_5Rnd_127x99_Mag",100,true],
    ["ACE_5Rnd_127x99_AMAX_Mag",100,true],
    ["ACE_5Rnd_127x99_API_Mag",100,true],
    ["rhs_mag_9x18_12_57N181S",100,true],
    ["rhssaf_mag_15Rnd_9x19_FMJ",100,true],
    ["rhssaf_mag_15Rnd_9x19_JHP",100,true],
    ["rhsusf_mag_15Rnd_9x19_FMJ",100,true],
    ["rhsusf_mag_15Rnd_9x19_JHP",100,true],
    ["rhsusf_mag_17Rnd_9x19_FMJ",100,true],
    ["rhsusf_mag_17Rnd_9x19_JHP",100,true],
    ["rhs_mag_9x19_17",100,true],
    ["rhs_18rnd_9x21mm_7BT3",100,true],
    ["rhs_18rnd_9x21mm_7N28",100,true],
    ["rhs_18rnd_9x21mm_7N29",100,true],
    ["rhsgref_1Rnd_00Buck",100,true],
    ["rhsgref_1Rnd_Slug",100,true],
    ["rhsusf_true0rnd_556x45_M855_box",100,true],
    ["rhsusf_true0rnd_556x45_M855_mixed_box",100,true],
    ["rhsusf_true0Rnd_556x45_box",100,true],
    ["rhsusf_true0rnd_556x45_mixed_box",100,true],
    ["rhsusf_true0Rnd_556x45_M855_soft_pouch",100,true],
    ["rhsusf_true0Rnd_556x45_M855_soft_pouch_coyote",100,true],
    ["rhsusf_true0Rnd_556x45_M855_soft_pouch_ucp",100,true],
    ["rhsusf_true0Rnd_556x45_M855_mixed_soft_pouch",100,true],
    ["rhsusf_true0Rnd_556x45_M855_mixed_soft_pouch_ucp",100,true],
    ["rhsusf_true0Rnd_556x45_M855_mixed_soft_pouch_coyote",100,true],
    ["rhsusf_true0Rnd_556x45_soft_pouch",100,true],
    ["rhsusf_true0Rnd_556x45_soft_pouch_ucp",100,true],
    ["rhsusf_true0Rnd_556x45_soft_pouch_coyote",100,true],
    ["rhsusf_true0Rnd_556x45_mixed_soft_pouch_ucp",100,true],
    ["rhsusf_true0Rnd_556x45_mixed_soft_pouch",100,true],
    ["rhsusf_true0Rnd_556x45_mixed_soft_pouch_coyote",100,true],
    ["rhsgref_truernd_1143x23_M1T_SMG",100,true],
    ["rhsgref_truernd_1143x23_M1911B_SMG",100,true],
    ["rhs_truernd_9x39mm_SP5",100,true],
    ["rhs_truernd_9x39mm_SP6",100,true],
    ["rhs_mag_trueRnd_762x51_m61_fnfal",100,true],
    ["rhs_mag_trueRnd_762x51_m62_fnfal",100,true],
    ["rhs_mag_trueRnd_762x51_m80_fnfal",100,true],
    ["rhs_mag_trueRnd_762x51_m80a1_fnfal",100,true],
    ["rhsusf_trueRnd_762x51_m118_special_Mag",100,true],
    ["rhsusf_trueRnd_762x51_m62_Mag",100,true],
    ["rhsusf_trueRnd_762x51_m80_Mag",100,true],
    ["rhsusf_trueRnd_762x51_m993_Mag",100,true],
    ["rhs_mag_9x19mm_7n21_true",100,true],
    ["rhs_mag_9x19mm_7n31_true",100,true],
    ["rhs_mag_trueRnd_SCAR_762x51_m118_special",100,true],
    ["rhs_mag_trueRnd_SCAR_762x51_m118_special_bk",100,true],
    ["rhs_mag_trueRnd_SCAR_762x51_m61_ap",100,true],
    ["rhs_mag_trueRnd_SCAR_762x51_m61_ap_bk",100,true],
    ["rhs_mag_trueRnd_SCAR_762x51_m62_tracer",100,true],
    ["rhs_mag_trueRnd_SCAR_762x51_m62_tracer_bk",100,true],
    ["rhs_mag_trueRnd_SCAR_762x51_m80_ball",100,true],
    ["rhs_mag_trueRnd_SCAR_762x51_m80_ball_bk",100,true],
    ["rhs_mag_trueRnd_SCAR_762x51_m80a1_epr",100,true],
    ["rhs_mag_trueRnd_SCAR_762x51_m80a1_epr_bk",100,true],
    ["rhs_mag_trueRnd_SCAR_762x51_mk316_special",100,true],
    ["rhsgref_truernd_765x17_vz61",100,true],
    ["rhsusf_trueRnd_762x51_SR25_m118_special_Mag",100,true],
    ["rhsusf_trueRnd_762x51_SR25_m62_Mag",100,true],
    ["rhsusf_trueRnd_762x51_SR25_m993_Mag",100,true],
    ["rhs_mag_trueRnd_SCAR_762x51_mk316_special_bk",100,true],
    ["rhsusf_trueRnd_762x51_SR25_mk316_special_Mag",100,true],
    ["rhs_mag_trueRnd_556x45_M193_2MAG_Stanag",100,true],
    ["rhs_mag_trueRnd_556x45_M196_2MAG_Stanag_Tracer_Red",100,true],
    ["rhs_mag_trueRnd_556x45_M193_Stanag",100,true],
    ["rhs_mag_trueRnd_556x45_M196_Stanag_Tracer_Red",100,true],
    ["rhs_mag_trueRnd_556x45_Mtrue0_Stanag",100,true],
    ["rhs_mag_trueRnd_556x45_M855_Stanag",100,true],
    ["rhs_mag_trueRnd_556x45_M855A1_Stanag",100,true],
    ["rhs_mag_trueRnd_556x45_Mk262_Stanag",100,true],
    ["rhsgref_24rnd_75x55_Stgw57",100,true],
    ["rhssaf_250Rnd_762x54R",100,true],
    ["rhsgref_25Rnd_792x33_SmE_StG",100,true],
    ["rhsgref_296Rnd_792x57_SmE_notracers_belt",100,true],
    ["rhsgref_296Rnd_792x57_SmK_belt",100,true],
    ["rhsgref_296Rnd_792x57_SmK_alltracers_belt",100,true],
    ["rhsgref_30rnd_1143x23_M1T_SMG",100,true],
    ["rhsgref_30rnd_1143x23_M1T_2mag_SMG",100,true],
    ["rhsgref_296Rnd_792x57_SmE_belt",100,true],
    ["rhsgref_30rnd_1143x23_M1911B_SMG",100,true],
    ["rhsgref_30rnd_1143x23_M1911B_2mag_SMG",100,true],
    ["tacs_30Rnd_65x39_caseless_BlackCamo_mag",100,true],
    ["rhsgref_30Rnd_792x33_SmE_StG",100,true],
    ["rhs_30Rnd_762x39mm_polymer",100,true],
    ["rhs_30Rnd_762x39mm_polymer_89",100,true],
    ["rhs_30Rnd_762x39mm_polymer_tracer",100,true],
    ["rhs_30Rnd_762x39mm_polymer_U",100,true],
    ["rhs_30Rnd_545x39_7N10_2mag_AK",100,true],
    ["rhs_30Rnd_545x39_7N10_2mag_camo_AK",100,true],
    ["rhs_30Rnd_545x39_7N10_2mag_desert_AK",100,true],
    ["rhs_30Rnd_545x39_7N10_2mag_plum_AK",100,true],
    ["rhs_30Rnd_545x39_AK_green",100,true],
    ["rhs_30Rnd_545x39_7N6_AK",100,true],
    ["rhs_30Rnd_545x39_7N6M_AK",100,true],
    ["rhs_30Rnd_545x39_7N10_camo_AK",100,true],
    ["rhs_30Rnd_545x39_7N22_camo_AK",100,true],
    ["rhs_30Rnd_545x39_7N10_desert_AK",100,true],
    ["rhs_30Rnd_545x39_7N22_desert_AK",100,true],
    ["rhs_30Rnd_545x39_7N6_green_AK",100,true],
    ["rhs_30Rnd_545x39_7N6M_green_AK",100,true],
    ["rhs_30Rnd_545x39_AK_plum_green",100,true],
    ["rhs_30Rnd_545x39_7N10_plum_AK",100,true],
    ["rhs_30Rnd_545x39_7N22_plum_AK",100,true],
    ["rhs_30Rnd_545x39_7N6M_plum_AK",100,true],
    ["rhs_30Rnd_545x39_7N10_AK",100,true],
    ["rhs_30Rnd_545x39_7N22_AK",100,true],
    ["rhs_30Rnd_545x39_7U1_AK",100,true],
    ["rhs_30Rnd_762x39mm_bakelite",100,true],
    ["rhs_30Rnd_762x39mm_bakelite_89",100,true],
    ["rhs_30Rnd_762x39mm_bakelite_tracer",100,true],
    ["rhs_30Rnd_762x39mm_bakelite_U",100,true],
    ["rhs_30Rnd_762x39mm",100,true],
    ["rhs_30Rnd_762x39mm_89",100,true],
    ["rhs_30Rnd_762x39mm_tracer",100,true],
    ["rhs_30Rnd_762x39mm_U",100,true],
    ["rhs_mag_30Rnd_556x45_M855A1_EPM_Pull",100,true],
    ["rhs_mag_30Rnd_556x45_M855A1_EPM_Pull_Tracer_Red",100,true],
    ["rhs_mag_30Rnd_556x45_M855A1_EPM_Ranger",100,true],
    ["rhs_mag_30Rnd_556x45_M855A1_EPM_Ranger_Tracer_Red",100,true],
    ["rhs_mag_30Rnd_556x45_M855A1_EPM",100,true],
    ["rhs_mag_30Rnd_556x45_M855A1_EPM_Tracer_Red",100,true],
    ["rhssaf_30rnd_556x45_TDIM_G36",100,true],
    ["rhssaf_30rnd_556x45_EPR_G36",100,true],
    ["rhssaf_30rnd_556x45_MDIM_G36",100,true],
    ["rhssaf_30rnd_556x45_SPR_G36",100,true],
    ["rhssaf_30rnd_556x45_SOST_G36",100,true],
    ["rhsgref_30rnd_556x45_m21",100,true],
    ["rhsgref_30rnd_556x45_m21_t",100,true],
    ["rhssaf_30Rnd_762x39mm_M67",100,true],
    ["rhssaf_30Rnd_762x39mm_M78_tracer",100,true],
    ["rhssaf_30rnd_556x45_Tracers_G36",100,true],
    ["rhssaf_30Rnd_762x39_M82_api",100,true],
    ["rhs_mag_30Rnd_556x45_M855_PMAG_Tan",100,true],
    ["rhs_mag_30Rnd_556x45_M855_PMAG",100,true],
    ["rhs_mag_30Rnd_556x45_M855A1_PMAG_Tan",100,true],
    ["rhs_mag_30Rnd_556x45_M855A1_PMAG",100,true],
    ["rhs_mag_30Rnd_556x45_M855_PMAG_Tracer_Red",100,true],
    ["rhs_mag_30Rnd_556x45_M855_PMAG_Tan_Tracer_Red",100,true],
    ["rhs_mag_30Rnd_556x45_M855A1_PMAG_Tan_Tracer_Red",100,true],
    ["rhs_mag_30Rnd_556x45_M855A1_PMAG_Tracer_Red",100,true],
    ["rhs_mag_30Rnd_556x45_Mk262_PMAG",100,true],
    ["rhs_mag_30Rnd_556x45_Mk262_PMAG_Tan",100,true],
    ["rhs_mag_30Rnd_556x45_Mk318_PMAG",100,true],
    ["rhs_mag_30Rnd_556x45_Mk318_PMAG_Tan",100,true],
    ["rhs_30Rnd_762x39mm_Savz58",100,true],
    ["rhs_30Rnd_762x39mm_Savz58_tracer",100,true],
    ["rhs_mag_30Rnd_556x45_Mk318_SCAR_Pull",100,true],
    ["rhs_mag_30Rnd_556x45_Mk318_SCAR_Ranger",100,true],
    ["rhs_mag_30Rnd_556x45_Mk318_SCAR",100,true],
    ["rhs_mag_30Rnd_556x45_M855_Stanag_Pull",100,true],
    ["rhs_mag_30Rnd_556x45_M855A1_Stanag_Pull",100,true],
    ["rhs_mag_30Rnd_556x45_M855_Stanag_Pull_Tracer_Red",100,true],
    ["rhs_mag_30Rnd_556x45_M855A1_Stanag_Pull_Tracer_Red",100,true],
    ["rhs_mag_30Rnd_556x45_Mk262_Stanag_Pull",100,true],
    ["rhs_mag_30Rnd_556x45_Mk318_Stanag_Pull",100,true],
    ["rhs_mag_30Rnd_556x45_M855_Stanag_Ranger",100,true],
    ["rhs_mag_30Rnd_556x45_M855A1_Stanag_Ranger",100,true],
    ["rhs_mag_30Rnd_556x45_M855A1_Stanag_Ranger_Tracer_Red",100,true],
    ["rhs_mag_30Rnd_556x45_Mk262_Stanag_Ranger",100,true],
    ["rhs_mag_30Rnd_556x45_Mk318_Stanag_Ranger",100,true],
    ["rhs_mag_30Rnd_556x45_M193_Stanag",100,true],
    ["rhs_mag_30Rnd_556x45_M855_Stanag_Ranger_Tracer_Red",100,true],
    ["rhs_mag_30Rnd_556x45_M196_Stanag_Tracer_Red",100,true],
    ["rhs_mag_30Rnd_556x45_Mtrue0_Stanag",100,true],
    ["rhs_mag_30Rnd_556x45_M855_Stanag",100,true],
    ["rhs_mag_30Rnd_556x45_M855A1_Stanag",100,true],
    ["rhs_mag_30Rnd_556x45_M855_Stanag_Tracer_Red",100,true],
    ["rhs_mag_30Rnd_556x45_M855A1_Stanag_Tracer_Red",100,true],
    ["rhs_mag_30Rnd_556x45_Mk262_Stanag",100,true],
    ["rhs_mag_30Rnd_556x45_Mk318_Stanag",100,true],
    ["rhsgref_30rnd_556x45_vhs2",100,true],
    ["rhsgref_30rnd_556x45_vhs2_t",100,true],
    ["3Rnd_UGL_FlareGreen_F",100,true],
    ["3Rnd_UGL_FlareCIR_F",100,true],
    ["3Rnd_UGL_FlareRed_F",100,true],
    ["3Rnd_UGL_FlareWhite_F",100,true],
    ["3Rnd_UGL_FlareYellow_F",100,true],
    ["3Rnd_SmokeBlue_Grenade_shell",100,true],
    ["3Rnd_SmokeGreen_Grenade_shell",100,true],
    ["3Rnd_SmokeOrange_Grenade_shell",100,true],
    ["3Rnd_SmokePurple_Grenade_shell",100,true],
    ["3Rnd_SmokeRed_Grenade_shell",100,true],
    ["3Rnd_Smoke_Grenade_shell",100,true],
    ["3Rnd_SmokeYellow_Grenade_shell",100,true],
    ["3Rnd_HE_Grenade_shell",100,true],
    ["1Rnd_HE_Grenade_shell",100,true],
    ["rhsusf_mag_40Rnd_46x30_AP",100,true],
    ["rhsusf_mag_40Rnd_46x30_FMJ",100,true],
    ["rhsusf_mag_40Rnd_46x30_JHP",100,true],
    ["rhs_mag_9x19mm_7n21_44",100,true],
    ["rhs_mag_9x19mm_7n31_44",100,true],
    ["rhs_45Rnd_545X39_AK_Green",100,true],
    ["rhs_45Rnd_545X39_7N10_AK",100,true],
    ["rhs_45Rnd_545X39_7N22_AK",100,true],
    ["rhs_45Rnd_545X39_7N6_AK",100,true],
    ["rhs_45Rnd_545X39_7U1_AK",100,true],
    ["30Rnd_545x39_Mag_Green_F",100,true],
    ["30Rnd_545x39_Mag_Tracer_Green_F",100,true],
    ["30Rnd_545x39_Mag_Tracer_F",100,true],
    ["150Rnd_556x45_Drum_Green_Mag_F",100,true],
    ["150Rnd_556x45_Drum_Mag_F",100,true],
    ["30Rnd_545x39_Mag_F",100,true],
    ["150Rnd_556x45_Drum_Sand_Mag_F",100,true],
    ["150Rnd_556x45_Drum_Green_Mag_Tracer_F",100,true],
    ["150Rnd_556x45_Drum_Mag_Tracer_F",100,true],
    ["150Rnd_556x45_Drum_Sand_Mag_Tracer_F",100,true],
    ["true0Rnd_556x45_Box_Red_F",100,true],
    ["true0Rnd_556x45_Box_F",100,true],
    ["true0Rnd_556x45_Box_Tracer_Red_F",100,true],
    ["true0Rnd_556x45_Box_Tracer_F",100,true],
    ["trueRnd_556x45_UW_mag",100,true],
    ["30Rnd_556x45_Stanag_green",100,true],
    ["30Rnd_556x45_Stanag_Sand_green",100,true],
    ["30Rnd_556x45_Stanag_red",100,true],
    ["30Rnd_556x45_Stanag_Sand_red",100,true],
    ["30Rnd_556x45_Stanag_Sand",100,true],
    ["30Rnd_556x45_Stanag_Tracer_Green",100,true],
    ["30Rnd_556x45_Stanag_Sand_Tracer_Green",100,true],
    ["30Rnd_556x45_Stanag",100,true],
    ["30Rnd_556x45_Stanag_Tracer_Red",100,true],
    ["30Rnd_556x45_Stanag_Sand_Tracer_Red",100,true],
    ["30Rnd_556x45_Stanag_Sand_Tracer_Yellow",100,true],
    ["ACE_30Rnd_556x45_Stanag_M995_AP_mag",100,true],
    ["ACE_30Rnd_556x45_Stanag_Mk262_mag",100,true],
    ["30Rnd_556x45_Stanag_Tracer_Yellow",100,true],
    ["ACE_30Rnd_556x45_Stanag_Mk318_mag",100,true],
    ["ACE_30Rnd_556x45_Stanag_Tracer_Dim",100,true],
    ["50Rnd_570x28_SMG_03",100,true],
    ["100Rnd_580x42_ghex_Mag_F",100,true],
    ["100Rnd_580x42_hex_Mag_F",100,true],
    ["100Rnd_580x42_Mag_F",100,true],
    ["100Rnd_580x42_ghex_Mag_Tracer_F",100,true],
    ["100Rnd_580x42_hex_Mag_Tracer_F",100,true],
    ["100Rnd_580x42_Mag_Tracer_F",100,true],
    ["30Rnd_580x42_Mag_F",100,true],
    ["30Rnd_580x42_Mag_Tracer_F",100,true],
    ["rhsgref_50Rnd_792x57_SmE_drum",100,true],
    ["rhsgref_50Rnd_792x57_SmE_notracers_drum",100,true],
    ["rhsgref_50Rnd_792x57_SmK_drum",100,true],
    ["rhsgref_50Rnd_792x57_SmK_alltracers_drum",100,true],
    ["rhsusf_50Rnd_762x51_m82_blank",100,true],
    ["rhsusf_50Rnd_762x51_m61_ap",100,true],
    ["rhsusf_50Rnd_762x51_m62_tracer",100,true],
    ["rhsusf_50Rnd_762x51",100,true],
    ["rhsusf_50Rnd_762x51_m80a1epr",100,true],
    ["rhsgref_5Rnd_762x54_m38",100,true],
    ["rhsgref_5Rnd_792x57_kar98k",100,true],
    ["rhsusf_5Rnd_00Buck",100,true],
    ["rhsusf_5Rnd_300winmag_xmtrue10",100,true],
    ["rhsusf_5Rnd_FRAG",100,true],
    ["rhsusf_5Rnd_HE",100,true],
    ["rhsusf_5Rnd_Slug",100,true],
    ["rhsusf_5Rnd_762x51_AICS_m118_special_Mag",100,true],
    ["rhsusf_5Rnd_762x51_AICS_m62_Mag",100,true],
    ["rhsusf_5Rnd_762x51_AICS_m993_Mag",100,true],
    ["rhsusf_5Rnd_762x51_m62_Mag",100,true],
    ["rhsusf_5Rnd_762x51_m118_special_Mag",100,true],
    ["rhsusf_5Rnd_762x51_m993_Mag",100,true],
    ["rhs_5Rnd_338lapua_t5000",100,true],
    ["100Rnd_65x39_caseless_black_mag",100,true],
    ["100Rnd_65x39_caseless_khaki_mag",100,true],
    ["100Rnd_65x39_caseless_black_mag_tracer",100,true],
    ["100Rnd_65x39_caseless_khaki_mag_tracer",100,true],
    ["true0Rnd_65x39_cased_Box_Red",100,true],
    ["trueRnd_650x39_Cased_Mag_F",100,true],
    ["30Rnd_65x39_caseless_black_mag",100,true],
    ["30Rnd_65x39_caseless_khaki_mag",100,true],
    ["30Rnd_65x39_caseless_msbs_mag_Tracer",100,true],
    ["30Rnd_65x39_caseless_green_mag_Tracer",100,true],
    ["30Rnd_65x39_caseless_black_mag_Tracer",100,true],
    ["30Rnd_65x39_caseless_khaki_mag_Tracer",100,true],
    ["100Rnd_65x39_caseless_mag",100,true],
    ["ACE_100Rnd_65x39_caseless_mag_Tracer_Dim",100,true],
    ["100Rnd_65x39_caseless_mag_Tracer",100,true],
    ["30Rnd_65x39_caseless_msbs_mag",100,true],
    ["true0Rnd_65x39_cased_Box_Tracer_Red",100,true],
    ["true0Rnd_65x39_cased_Box",100,true],
    ["true0Rnd_65x39_cased_Box_Tracer",100,true],
    ["ACE_true0Rnd_65x39_cased_Box_Tracer_Dim",100,true],
    ["30Rnd_65x39_caseless_green",100,true],
    ["30Rnd_65x39_caseless_mag",100,true],
    ["ACE_30Rnd_65x39_caseless_mag_Tracer_Dim",100,true],
    ["ACE_30Rnd_65x39_caseless_green_mag_Tracer_Dim",100,true],
    ["30Rnd_65x39_caseless_mag_Tracer",100,true],
    ["30Rnd_65x39_caseless_green_Tracer",100,true],
    ["ACE_trueRnd_65_Creedmor_mag",100,true],
    ["ACE_30Rnd_65_Creedmor_mag",100,true],
    ["ACE_trueRnd_65x47_Scenar_mag",100,true],
    ["rhsusf_mag_6Rnd_M397_HET",100,true],
    ["rhsusf_mag_6Rnd_M433_HEDP",100,true],
    ["rhsusf_mag_6Rnd_M441_HE",100,true],
    ["ACE_30Rnd_65x47_Scenar_mag",100,true],
    ["6Rnd_GreenSignal_F",100,true],
    ["6Rnd_RedSignal_F",100,true],
    ["rhs_mag_6x8mm_mhp",100,true],
    ["rhsusf_mag_6Rnd_m4009",100,true],
    ["rhsusf_mag_6Rnd_M576_Buckshot",100,true],
    ["rhsusf_mag_6Rnd_M585_white",100,true],
    ["rhsusf_mag_6Rnd_m661_green",100,true],
    ["rhsusf_mag_6Rnd_m662_red",100,true],
    ["rhsusf_mag_6Rnd_M713_red",100,true],
    ["rhsusf_mag_6Rnd_M714_white",100,true],
    ["rhsusf_mag_6Rnd_M715_green",100,true],
    ["rhsusf_mag_6Rnd_M781_Practice",100,true],
    ["10Rnd_762x54_Mag",100,true],
    ["10Rnd_762x51_Mag",100,true],
    ["10Rnd_Mk14_762x51_Mag",100,true],
    ["150Rnd_762x54_Box_Tracer",100,true],
    ["rhsusf_mag_6Rnd_M716_yellow",100,true],
    ["30rnd_762x39_AK12_Lush_Mag_F",100,true],
    ["30Rnd_762x39_AK12_Mag_F",100,true],
    ["30rnd_762x39_AK12_Arid_Mag_F",100,true],
    ["30rnd_762x39_AK12_Lush_Mag_Tracer_F",100,true],
    ["30Rnd_762x39_AK12_Mag_Tracer_F",100,true],
    ["30rnd_762x39_AK12_Arid_Mag_Tracer_F",100,true],
    ["30Rnd_762x39_Mag_Green_F",100,true],
    ["30Rnd_762x39_Mag_F",100,true],
    ["30Rnd_762x39_Mag_Tracer_Green_F",100,true],
    ["30Rnd_762x39_Mag_Tracer_F",100,true],
    ["75rnd_762x39_AK12_Lush_Mag_F",100,true],
    ["75rnd_762x39_AK12_Mag_F",100,true],
    ["75rnd_762x39_AK12_Arid_Mag_F",100,true],
    ["75rnd_762x39_AK12_Arid_Mag_Tracer_F",100,true],
    ["75rnd_762x39_AK12_Lush_Mag_Tracer_F",100,true],
    ["75rnd_762x39_AK12_Mag_Tracer_F",100,true],
    ["75Rnd_762x39_Mag_F",100,true],
    ["75Rnd_762x39_Mag_Tracer_F",100,true],
    ["ACE_10Rnd_762x51_M118LR_Mag",100,true],
    ["ACE_10Rnd_762x51_M993_AP_Mag",100,true],
    ["ACE_10Rnd_762x51_Mk316_Mod_0_Mag",100,true],
    ["ACE_10Rnd_762x51_Mk319_Mod_0_Mag",100,true],
    ["150Rnd_762x51_Box",100,true],
    ["150Rnd_762x54_Box",100,true],
    ["150Rnd_762x51_Box_Tracer",100,true],
    ["trueRnd_762x51_Mag",100,true],
    ["ACE_trueRnd_762x67_Berger_Hybrid_OTM_Mag",100,true],
    ["ACE_trueRnd_762x51_M118LR_Mag",100,true],
    ["ACE_trueRnd_762x51_M993_AP_Mag",100,true],
    ["ACE_trueRnd_762x67_Mk248_Mod_0_Mag",100,true],
    ["ACE_trueRnd_762x67_Mk248_Mod_1_Mag",100,true],
    ["ACE_trueRnd_762x51_Mk316_Mod_0_Mag",100,true],
    ["ACE_trueRnd_762x51_Mk319_Mod_0_Mag",100,true],
    ["ACE_trueRnd_762x51_Mag_SD",100,true],
    ["ACE_trueRnd_762x51_Mag_Tracer_Dim",100,true],
    ["ACE_trueRnd_762x51_Mag_Tracer",100,true],
    ["ACE_10Rnd_762x54_Tracer_mag",100,true],
    ["rhs_75Rnd_762x39mm",100,true],
    ["rhs_75Rnd_762x39mm_89",100,true],
    ["rhs_75Rnd_762x39mm_tracer",100,true],
    ["rhsusf_mag_7x45acp_MHP",100,true],
    ["ACE_1Rnd_82mm_Mo_HE_Guided",100,true],
    ["ACE_1Rnd_82mm_Mo_HE",100,true],
    ["ACE_1Rnd_82mm_Mo_Illum",100,true],
    ["ACE_1Rnd_82mm_Mo_HE_LaserGuided",100,true],
    ["ACE_1Rnd_82mm_Mo_Smoke",100,true],
    ["rhsusf_8Rnd_00Buck",100,true],
    ["rhsgref_8Rnd_762x63_Tracer_M1T_M1rifle",100,true],
    ["rhsgref_8Rnd_762x63_M2B_M1rifle",100,true],
    ["rhsusf_8Rnd_FRAG",100,true],
    ["rhsusf_8Rnd_Slug",100,true],
    ["rhs_mag_9x18_8_57N181S",100,true],
    ["rhsusf_8Rnd_HE",100,true],
    ["rhs_mag_762x25_8",100,true],
    ["10Rnd_9x21_Mag",100,true],
    ["16Rnd_9x21_green_Mag",100,true],
    ["16Rnd_9x21_red_Mag",100,true],
    ["16Rnd_9x21_yellow_Mag",100,true],
    ["30Rnd_9x21_Mag_SMG_02_Tracer_Green",100,true],
    ["30Rnd_9x21_Green_Mag",100,true],
    ["30Rnd_9x21_Red_Mag",100,true],
    ["30Rnd_9x21_Mag_SMG_02_Tracer_Red",100,true],
    ["30Rnd_9x21_Yellow_Mag",100,true],
    ["30Rnd_9x21_Mag_SMG_02_Tracer_Yellow",100,true],
    ["10Rnd_93x64_DMR_05_Mag",100,true],
    ["150Rnd_93x64_Mag",100,true],
    ["rhs_mag_9k32_rocket",100,true],
    ["rhs_mag_2Rnd_Igla",100,true],
    ["rhs_mag_9k38_rocket",100,true],
    ["Vorona_HE",100,true],
    ["Vorona_HEAT",100,true],
    ["16Rnd_9x21_Mag",100,true],
    ["30Rnd_9x21_Mag",100,true],
    ["30Rnd_9x21_Mag_SMG_02",100,true],
    ["ACE_16Rnd_9x19_mag",100,true],
    ["ace_csw_50Rnd_127x108_mag",100,true],
    ["ace_csw_100Rnd_127x99_mag",100,true],
    ["ace_csw_100Rnd_127x99_mag_green",100,true],
    ["ace_csw_100Rnd_127x99_mag_red",100,true],
    ["ace_csw_100Rnd_127x99_mag_yellow",100,true],
    ["ace_csw_trueRnd_truemm_G_belt",100,true],
    ["ace_compat_rhs_afrf3_mag_9M131F",100,true],
    ["ace_compat_rhs_afrf3_mag_9M131M",100,true],
    ["ace_compat_rhs_afrf3_mag_9m133",100,true],
    ["ace_compat_rhs_afrf3_mag_9m133f",100,true],
    ["ace_compat_rhs_afrf3_mag_9m133m2",100,true],
    ["ace_compat_rhs_usf3_mag_TOW",100,true],
    ["ace_compat_rhs_afrf3_mag_9m1331",100,true],
    ["ace_compat_rhs_usf3_mag_TOWB",100,true],
    ["ace_compat_rhs_usf3_mag_ITOW",100,true],
    ["ace_compat_rhs_usf3_mag_TOW2",100,true],
    ["ace_compat_rhs_usf3_mag_TOW2A",100,true],
    ["ace_compat_rhs_usf3_mag_TOW2b",100,true],
    ["ace_compat_rhs_usf3_mag_TOW2b_aero",100,true],
    ["ace_compat_rhs_usf3_mag_TOW2bb",100,true],
    ["rhs_LaserFCSMag",100,true],
    ["rhs_LaserMag",100,true],
    ["rhs_LaserMag_ai",100,true],
    ["murshun_cigs_cigpack",100,true],
    ["Laserbatteries",100,true],
    ["LOP_LaserMag",100,true],
    ["rhs_mag_maaws_HEDP",100,true],
    ["rhs_mag_maaws_HEAT",100,true],
    ["rhs_fim92_mag",100,true],
    ["rhs_mag_maaws_HE",100,true],
    ["FlareGreen_F",100,true],
    ["FlareRed_F",100,true],
    ["FlareWhite_F",100,true],
    ["FlareYellow_F",100,true],
    ["rhs_mag_rsp30_green",100,true],
    ["UGL_FlareGreen_F",100,true],
    ["UGL_FlareCIR_F",100,true],
    ["rhs_mag_rsp30_red",100,true],
    ["UGL_FlareRed_F",100,true],
    ["UGL_FlareWhite_F",100,true],
    ["rhs_mag_rsp30_white",100,true],
    ["UGL_FlareYellow_F",100,true],
    ["rhs_GDM40",100,true],
    ["rhs_mag_m4009",100,true],
    ["ace_compat_rhs_afrf3_mag_GPD30_30",100,true],
    ["rhs_GRD40_Green",100,true],
    ["rhs_GRD40_Red",100,true],
    ["rhs_GRD40_White",100,true],
    ["ace_compat_rhs_afrf3_mag_OG9V",100,true],
    ["ace_compat_rhs_afrf3_mag_OG9VM",100,true],
    ["ace_compat_rhs_afrf3_mag_PG9N",100,true],
    ["ace_compat_rhs_afrf3_mag_PG9V",100,true],
    ["ace_compat_rhs_afrf3_mag_PG9VNT",100,true],
    ["ACE_HuntIR_Mtrue3",100,true],
    ["rhs_fgm148_magazine_AT",100,true],
    ["murshun_cigs_lighter",100,true],
    ["immersion_pops_poppack",100,true],
    ["rhs_mag_M397_HET",100,true],
    ["rhs_mag_M433_HEDP",100,true],
    ["rhs_mag_M441_HE",100,true],
    ["rhs_mag_m576",100,true],
    ["ACE_40mm_Flare_white",100,true],
    ["rhs_mag_M585_white",100,true],
    ["rhs_mag_m661_green",100,true],
    ["ACE_40mm_Flare_red",100,true],
    ["rhs_mag_m662_red",100,true],
    ["rhs_mag_m713_Red",100,true],
    ["rhs_mag_m714_White",100,true],
    ["ACE_40mm_Flare_green",100,true],
    ["rhs_mag_m715_Green",100,true],
    ["rhs_mag_m716_yellow",100,true],
    ["ACE_40mm_Flare_ir",100,true],
    ["MRAWS_HE_F",100,true],
    ["MRAWS_HEAT55_F",100,true],
    ["rhs_mag_M781_Practice",100,true],
    ["MRAWS_HEAT_F",100,true],
    ["murshun_cigs_matches",100,true],
    ["ace_compat_rhs_usf3_48Rnd_40mm_MK19",100,true],
    ["ace_compat_rhs_usf3_48Rnd_40mm_MK19_M430A1",100,true],
    ["ace_compat_rhs_usf3_48Rnd_40mm_MK19_M430I",100,true],
    ["ace_compat_rhs_usf3_48Rnd_40mm_MK19_M1001",100,true],
    ["rhs_mag_smaw_SR",100,true],
    ["rhs_rpg7_OG7V_mag",100,true],
    ["rhs_rpg7_PG7V_mag",100,true],
    ["rhs_mag_smaw_HEAA",100,true],
    ["rhs_mag_smaw_HEDP",100,true],
    ["rhs_rpg7_PG7VL_mag",100,true],
    ["rhs_rpg7_PG7VM_mag",100,true],
    ["RPG7_F",100,true],
    ["rhs_rpg7_PG7VR_mag",100,true],
    ["rhs_rpg7_PG7VS_mag",100,true],
    ["RPG32_HE_F",100,true],
    ["RPG32_F",100,true],
    ["rhs_mag_six12_slug",100,true],
    ["1Rnd_SmokeBlue_Grenade_shell",100,true],
    ["1Rnd_SmokeGreen_Grenade_shell",100,true],
    ["1Rnd_SmokeOrange_Grenade_shell",100,true],
    ["1Rnd_SmokePurple_Grenade_shell",100,true],
    ["1Rnd_SmokeRed_Grenade_shell",100,true],
    ["1Rnd_Smoke_Grenade_shell",100,true],
    ["rhs_rpg7_TBG7V_mag",100,true],
    ["Titan_AA",100,true],
    ["1Rnd_SmokeYellow_Grenade_shell",100,true],
    ["Titan_AP",100,true],
    ["Titan_AT",100,true],
    ["rhs_rpg7_type69_airburst_mag",100,true],
    ["rhs_VG40MD",100,true],
    ["rhs_VG40OP_green",100,true],
    ["rhs_VG40OP_red",100,true],
    ["rhs_VG40OP_white",100,true],
    ["rhs_VG40SZ",100,true],
    ["rhs_VG40TB",100,true],
    ["ace_compat_rhs_afrf3_mag_VOG17m_30",100,true],
    ["rhs_VOG25",100,true],
    ["rhs_VOG25P",100,true],
    ["ace_compat_rhs_afrf3_mag_VOG30_30",100,true],
    ["rhs_zsh7a_alt",100,true],
    ["rhs_zsh7a",100,true],
    ["rhs_zsh7a_mike_green_alt",100,true],
    ["rhs_zsh7a_mike_alt",100,true],
    ["rhs_zsh7a_mike_green",100,true],
    ["rhs_zsh7a_mike",100,true],
    ["H_WirelessEarpiece_F",100,true],
    ["rhs_8point_marpatd",100,true],
    ["rhs_tsh4_ess_bala",100,true],
    ["rhs_tsh4_ess",100,true],
    ["rhs_8point_marpatwd",100,true],
    ["rhs_tsh4_bala",100,true],
    ["rhs_tsh4",100,true],
    ["H_Hat_Tinfoil_F",100,true],
    ["H_StrawHat_dark",100,true],
    ["H_StrawHat",100,true],
    ["H_HelmetB_TI_tna_F",100,true],
    ["rhsgref_ssh68_vsr",100,true],
    ["rhsgref_ssh68_un",100,true],
    ["rhsgref_ssh68_ttsko_dark",100,true],
    ["rhsgref_ssh68_ttsko_mountain",100,true],
    ["rhsgref_ssh68_ttsko_forest",100,true],
    ["rhsgref_ssh68_ttsko_digi",100,true],
    ["rhsgref_ssh68_emr",100,true],
    ["rhs_ssh68",100,true],
    ["H_HelmetO_ViperSP_hex_F",100,true],
    ["H_HelmetO_ViperSP_ghex_F",100,true],
    ["H_Helmet_Skate",100,true],
    ["H_ShemagOpen_khk",100,true],
    ["H_Shemag_olive_hs",100,true],
    ["H_Shemag_olive",100,true],
    ["H_Hat_Safari_sand_F",100,true],
    ["H_Hat_Safari_olive_F",100,true],
    ["H_Cap_headphones",100,true],
    ["H_ShemagOpen_tan",100,true],
    ["H_RacingHelmet_1_yellow_F",100,true],
    ["H_RacingHelmet_1_white_F",100,true],
    ["H_RacingHelmet_4_F",100,true],
    ["H_RacingHelmet_3_F",100,true],
    ["H_RacingHelmet_1_red_F",100,true],
    ["H_RacingHelmet_1_orange_F",100,true],
    ["H_RacingHelmet_1_green_F",100,true],
    ["H_RacingHelmet_1_F",100,true],
    ["H_RacingHelmet_2_F",100,true],
    ["H_RacingHelmet_1_blue_F",100,true],
    ["H_RacingHelmet_1_black_F",100,true],
    ["H_HelmetO_oucamo",100,true],
    ["H_HelmetO_ocamo",100,true],
    ["H_HelmetO_ghex_F",100,true],
    ["rhsusf_protech_helmet_rhino_ess",100,true],
    ["rhsusf_protech_helmet_rhino",100,true],
    ["rhsusf_protech_helmet_ess",100,true],
    ["rhsusf_protech_helmet",100,true],
    ["H_PASGT_neckprot_blue_press_F",100,true],
    ["H_PASGT_basic_blue_press_F",100,true],
    ["H_PilotHelmetFighter_B",100,true],
    ["H_PilotHelmetFighter_I_E",100,true],
    ["H_PilotHelmetFighter_O",100,true],
    ["H_PilotHelmetFighter_I",100,true],
    ["rhsusf_patrolcap_ucp",100,true],
    ["rhsusf_patrolcap_ocp",100,true],
    ["rhsgref_hat_M1951",100,true],
    ["rhsgref_helmet_pasgt_woodland_rhino",100,true],
    ["rhsgref_helmet_pasgt_woodland",100,true],
    ["rhsgref_helmet_pasgt_un",100,true],
    ["rhsgref_helmet_pasgt_press",100,true],
    ["rhsgref_helmet_pasgt_olive",100,true],
    ["rhsgref_helmet_pasgt_erdl_rhino",100,true],
    ["rhsgref_helmet_pasgt_erdl",100,true],
    ["rhsgref_helmet_pasgt_altis_lizard",100,true],
    ["rhsgref_helmet_pasgt_3color_desert_rhino",100,true],
    ["rhsgref_helmet_pasgt_3color_desert",100,true],
    ["rhsgref_helmet_pasgt_flecktarn",100,true],
    ["H_HelmetIA",100,true],
    ["H_MilCap_eaf",100,true],
    ["H_MilCap_wdl",100,true],
    ["H_MilCap_tna_F",100,true],
    ["H_MilCap_taiga",100,true],
    ["H_MilCap_mcamo",100,true],
    ["H_MilCap_dgtl",100,true],
    ["H_MilCap_ocamo",100,true],
    ["H_MilCap_gry",100,true],
    ["H_MilCap_grn",100,true],
    ["H_MilCap_ghex_F",100,true],
    ["H_MilCap_gen_F",100,true],
    ["H_MilCap_blue",100,true],
    ["rhsusf_mich_helmet_marpatwd_norotos_headset",100,true],
    ["rhsusf_mich_helmet_marpatwd_norotos_arc_headset",100,true],
    ["rhsusf_mich_helmet_marpatwd_norotos_arc",100,true],
    ["rhsusf_mich_helmet_marpatwd_norotos",100,true],
    ["rhsusf_mich_helmet_marpatwd_headset",100,true],
    ["rhsusf_mich_helmet_marpatwd_alt_headset",100,true],
    ["rhsusf_mich_helmet_marpatwd_alt",100,true],
    ["rhsusf_mich_helmet_marpatwd",100,true],
    ["rhsusf_mich_helmet_marpatd_norotos_headset",100,true],
    ["rhsusf_mich_helmet_marpatd_norotos_arc_headset",100,true],
    ["rhsusf_mich_helmet_marpatd_norotos_arc",100,true],
    ["rhsusf_mich_helmet_marpatd_norotos",100,true],
    ["rhsusf_mich_helmet_marpatd_headset",100,true],
    ["rhsusf_mich_helmet_marpatd_alt_headset",100,true],
    ["rhsusf_mich_helmet_marpatd_alt",100,true],
    ["rhsusf_mich_helmet_marpatd",100,true],
    ["rhsusf_mich_bare_norotos_tan_headset",100,true],
    ["rhsusf_mich_bare_norotos_arc_alt_tan_headset",100,true],
    ["rhsusf_mich_bare_norotos_arc_alt_tan",100,true],
    ["rhsusf_mich_bare_norotos_arc_tan",100,true],
    ["rhsusf_mich_bare_norotos_alt_tan_headset",100,true],
    ["rhsusf_mich_bare_norotos_tan",100,true],
    ["rhsusf_mich_bare_tan_headset",100,true],
    ["rhsusf_mich_bare_alt_tan",100,true],
    ["rhsusf_mich_bare_tan",100,true],
    ["rhsusf_mich_bare_norotos_semi_headset",100,true],
    ["rhsusf_mich_bare_norotos_alt_tan",100,true],
    ["rhsusf_mich_bare_norotos_arc_semi_headset",100,true],
    ["rhsusf_mich_bare_norotos_arc_alt_semi_headset",100,true],
    ["rhsusf_mich_bare_norotos_arc_alt_semi",100,true],
    ["rhsusf_mich_bare_norotos_arc_semi",100,true],
    ["rhsusf_mich_bare_norotos_alt_semi_headset",100,true],
    ["rhsusf_mich_bare_norotos_alt_semi",100,true],
    ["rhsusf_mich_bare_norotos_semi",100,true],
    ["rhsusf_mich_bare_semi_headset",100,true],
    ["rhsusf_mich_bare_alt_semi",100,true],
    ["rhsusf_mich_bare_semi",100,true],
    ["rhsusf_mich_bare_norotos_headset",100,true],
    ["rhsusf_mich_bare_norotos_arc_headset",100,true],
    ["rhsusf_mich_bare_norotos_arc_alt_headset",100,true],
    ["rhsusf_mich_bare_norotos_arc_alt",100,true],
    ["rhsusf_mich_bare_norotos_arc",100,true],
    ["rhsusf_mich_bare_norotos_alt_headset",100,true],
    ["rhsusf_mich_bare_norotos_alt",100,true],
    ["rhsusf_mich_bare_norotos",100,true],
    ["rhsusf_mich_bare_headset",100,true],
    ["rhsusf_mich_bare_alt",100,true],
    ["rhsusf_mich_bare",100,true],
    ["H_Cap_marshal",100,true],
    ["rhssaf_helmet_m97_veil_woodland",100,true],
    ["rhssaf_helmet_m97_woodland_black_ess_bare",100,true],
    ["rhssaf_helmet_m97_woodland_black_ess",100,true],
    ["rhssaf_helmet_m97_woodland",100,true],
    ["rhssaf_helmet_m97_olive_nocamo_black_ess_bare",100,true],
    ["rhssaf_helmet_m97_olive_nocamo_black_ess",100,true],
    ["rhssaf_helmet_m97_olive_nocamo",100,true],
    ["rhssaf_helmet_m97_oakleaf_black_ess_bare",100,true],
    ["rhssaf_helmet_m97_oakleaf_black_ess",100,true],
    ["rhssaf_helmet_m97_veil_md2camo",100,true],
    ["rhssaf_helmet_m97_md2camo_black_ess_bare",100,true],
    ["rhssaf_helmet_m97_oakleaf",100,true],
    ["rhssaf_helmet_m97_veil_oakleaf",100,true],
    ["rhssaf_helmet_m97_md2camo_black_ess",100,true],
    ["rhssaf_helmet_m97_md2camo",100,true],
    ["rhssaf_helmet_m97_veil_digital",100,true],
    ["rhssaf_helmet_m97_digital_black_ess_bare",100,true],
    ["rhssaf_helmet_m97_digital_black_ess",100,true],
    ["rhssaf_helmet_m97_digital",100,true],
    ["rhssaf_helmet_m97_nostrap_blue_tan_ess_bare",100,true],
    ["rhssaf_helmet_m97_nostrap_blue_tan_ess",100,true],
    ["rhssaf_helmet_m97_nostrap_blue",100,true],
    ["rhssaf_helmet_m97_black_nocamo_black_ess_bare",100,true],
    ["rhssaf_helmet_m97_black_nocamo_black_ess",100,true],
    ["rhssaf_helmet_m97_black_nocamo",100,true],
    ["rhssaf_helmet_m59_85_nocamo",100,true],
    ["rhssaf_helmet_m59_85_oakleaf",100,true],
    ["rhsgref_M56",100,true],
    ["rhsgref_hat_m43cap_heer1_tilted",100,true],
    ["rhsgref_hat_m43cap_heer",100,true],
    ["rhsgref_helmet_m1942_heerwintercover",100,true],
    ["rhsgref_helmet_m1942_heermarshcover",100,true],
    ["rhsgref_helmet_m1942_heersplintercover",100,true],
    ["rhsgref_helmet_m1942_heergreycover",100,true],
    ["rhsgref_helmet_m1942_winter_alt1",100,true],
    ["rhsgref_helmet_m1942_camo01_alt1",100,true],
    ["rhsgref_helmet_m1942_alt1",100,true],
    ["rhsgref_helmet_m1942_camo01",100,true],
    ["rhsgref_helmet_m1942",100,true],
    ["rhsgref_helmet_m1940_winter",100,true],
    ["rhsgref_helmet_m1940_winter_alt1",100,true],
    ["rhsgref_helmet_m1940_camo01_alt1",100,true],
    ["rhsgref_helmet_m1942_winter",100,true],
    ["rhsgref_helmet_m1940_alt1",100,true],
    ["rhsgref_helmet_m1940_camo01",100,true],
    ["rhsgref_helmet_m1940",100,true],
    ["rhsgref_hat_m1941cap",100,true],
    ["rhsgref_helmet_M1_painted_alt01",100,true],
    ["rhsgref_helmet_M1_painted",100,true],
    ["rhsgref_helmet_M1_bare_alt01",100,true],
    ["rhsgref_helmet_M1_bare",100,true],
    ["rhsgref_helmet_M1_mit",100,true],
    ["rhsgref_helmet_M1_liner",100,true],
    ["rhsgref_helmet_M1_erdl",100,true],
    ["rhsgref_helmet_M1_des",100,true],
    ["rhsusf_lwh_helmet_marpatwd_ess",100,true],
    ["rhsusf_lwh_helmet_marpatwd_headset",100,true],
    ["rhsusf_lwh_helmet_marpatwd_headset_blk",100,true],
    ["rhsusf_lwh_helmet_marpatwd_headset_blk2",100,true],
    ["rhsusf_lwh_helmet_marpatwd_blk_ess",100,true],
    ["rhsusf_lwh_helmet_marpatwd",100,true],
    ["rhsusf_lwh_helmet_marpatd_headset",100,true],
    ["rhsusf_lwh_helmet_marpatd_ess",100,true],
    ["rhsusf_lwh_helmet_marpatd",100,true],
    ["rhsusf_lwh_helmet_M1942",100,true],
    ["Camel_Helmet_light_N_RGR_2",100,true],
    ["Camel_Helmet_light_N_MC_2",100,true],
    ["Camel_Helmet_light_N_MC",100,true],
    ["Camel_Helmet_light_N_2",100,true],
    ["Camel_Helmet_light_N",100,true],
    ["Camel_Helmet_light_N_RGR",100,true],
    ["Camel_Helmet_light_N_Blk",100,true],
    ["Camel_Helmet_light_N_Blk_2",100,true],
    ["H_HelmetB_light_wdl",100,true],
    ["H_HelmetB_Light_tna_F",100,true],
    ["H_HelmetB_light_snakeskin",100,true],
    ["H_HelmetB_light_sand",100,true],
    ["H_HelmetB_light_grass",100,true],
    ["H_HelmetB_light_desert",100,true],
    ["tacs_Helmet_Light_Ballistic_DarkBlack",100,true],
    ["H_HelmetB_light_black",100,true],
    ["H_HelmetB_light",100,true],
    ["rhsgref_6b27m_ttsko_urban",100,true],
    ["rhsgref_6b27m_ttsko_mountain",100,true],
    ["rhsgref_6b27m_ttsko_forest",100,true],
    ["rhsgref_6b27m_ttsko_digi",100,true],
    ["RHS_jetpilot_usaf",100,true],
    ["rhsusf_ihadss",100,true],
    ["rhsusf_hgu56p_visor_white",100,true],
    ["rhsusf_hgu56p_white",100,true],
    ["rhsusf_hgu56p_visor_usa",100,true],
    ["rhsusf_hgu56p_usa",100,true],
    ["rhsusf_hgu56p_visor_mask_tan",100,true],
    ["rhsusf_hgu56p_visor_tan",100,true],
    ["rhsusf_hgu56p_mask_tan",100,true],
    ["rhsusf_hgu56p_tan",100,true],
    ["rhsusf_hgu56p_visor_mask_smiley",100,true],
    ["rhsusf_hgu56p_mask_smiley",100,true],
    ["rhsusf_hgu56p_visor_mask_saf",100,true],
    ["rhsusf_hgu56p_visor_saf",100,true],
    ["rhsusf_hgu56p_mask_saf",100,true],
    ["rhsusf_hgu56p_saf",100,true],
    ["rhsusf_hgu56p_visor_mask_pink",100,true],
    ["rhsusf_hgu56p_visor_pink",100,true],
    ["rhsusf_hgu56p_mask_pink",100,true],
    ["rhsusf_hgu56p_pink",100,true],
    ["rhsusf_hgu56p_visor_mask_skull",100,true],
    ["rhsusf_hgu56p_visor_mask_mo",100,true],
    ["rhsusf_hgu56p_visor_mask",100,true],
    ["rhsusf_hgu56p_visor",100,true],
    ["rhsusf_hgu56p_mask_skull",100,true],
    ["rhsusf_hgu56p_mask_mo",100,true],
    ["rhsusf_hgu56p_mask",100,true],
    ["rhsusf_hgu56p",100,true],
    ["rhsusf_hgu56p_visor_mask_green_mo",100,true],
    ["rhsusf_hgu56p_visor_mask_green",100,true],
    ["rhsusf_hgu56p_visor_green",100,true],
    ["rhsusf_hgu56p_mask_green_mo",100,true],
    ["rhsusf_hgu56p_mask_green",100,true],
    ["rhsusf_hgu56p_green",100,true],
    ["rhsusf_hgu56p_visor_mask_black_skull",100,true],
    ["rhsusf_hgu56p_visor_mask_Empire_black",100,true],
    ["rhsusf_hgu56p_visor_mask_black",100,true],
    ["rhsusf_hgu56p_visor_black",100,true],
    ["rhsusf_hgu56p_mask_black_skull",100,true],
    ["rhsusf_hgu56p_black",100,true],
    ["H_PilotHelmetHeli_B",100,true],
    ["H_PilotHelmetHeli_I_E",100,true],
    ["H_PilotHelmetHeli_O",100,true],
    ["rhsusf_hgu56p_mask_black",100,true],
    ["tacs_Helmet_PilotHeli_Tan",100,true],
    ["H_CrewHelmetHeli_B",100,true],
    ["H_CrewHelmetHeli_I_E",100,true],
    ["H_CrewHelmetHeli_O",100,true],
    ["H_CrewHelmetHeli_I",100,true],
    ["H_HeadSet_yellow_F",100,true],
    ["H_HeadSet_white_F",100,true],
    ["H_HeadSet_red_F",100,true],
    ["H_PilotHelmetHeli_I",100,true],
    ["H_HeadSet_orange_F",100,true],
    ["H_HeadSet_black_F",100,true],
    ["H_HeadBandage_bloody_F",100,true],
    ["H_HeadBandage_stained_F",100,true],
    ["H_Hat_tan",100,true],
    ["H_Hat_grey",100,true],
    ["H_Hat_checker",100,true],
    ["H_Hat_camo",100,true],
    ["H_Hat_brown",100,true],
    ["H_Hat_blue",100,true],
    ["H_Construction_headset_yellow_F",100,true],
    ["H_HeadBandage_clean_F",100,true],
    ["H_Construction_earprot_white_F",100,true],
    ["H_Construction_headset_white_F",100,true],
    ["H_Construction_basic_yellow_F",100,true],
    ["H_Construction_earprot_yellow_F",100,true],
    ["H_Construction_basic_white_F",100,true],
    ["H_Construction_headset_vrana_F",100,true],
    ["H_Construction_earprot_vrana_F",100,true],
    ["H_Construction_basic_vrana_F",100,true],
    ["H_Construction_headset_red_F",100,true],
    ["H_Construction_earprot_red_F",100,true],
    ["H_Construction_basic_red_F",100,true],
    ["H_Construction_headset_orange_F",100,true],
    ["H_Construction_earprot_orange_F",100,true],
    ["H_Construction_basic_orange_F",100,true],
    ["H_Construction_headset_black_F",100,true],
    ["H_Construction_earprot_black_F",100,true],
    ["rhs_gssh18",100,true],
    ["rhsgref_fieldcap_ttsko_urban",100,true],
    ["rhsgref_fieldcap_ttsko_mountain",100,true],
    ["rhsgref_fieldcap_ttsko_forest",100,true],
    ["H_Construction_basic_black_F",100,true],
    ["rhsgref_fieldcap_ttsko_digi",100,true],
    ["rhs_fieldcap_vsr",100,true],
    ["rhs_fieldcap_khk",100,true],
    ["rhs_fieldcap_ml",100,true],
    ["rhs_fieldcap_izlom",100,true],
    ["rhs_fieldcap_digi2",100,true],
    ["rhs_fieldcap_digi",100,true],
    ["rhsgref_patrolcap_specter",100,true],
    ["rhs_fieldcap_helm",100,true],
    ["rhs_fieldcap_helm_ml",100,true],
    ["rhs_fieldcap_helm_digi",100,true],
    ["rhs_fieldcap",100,true],
    ["rhsusf_opscore_mar_ut_pelt",100,true],
    ["rhsusf_opscore_mar_ut",100,true],
    ["rhsusf_opscore_mar_fg_pelt",100,true],
    ["rhsusf_opscore_mar_fg",100,true],
    ["rhsusf_opscore_ut_pelt_nsw_cam",100,true],
    ["rhsusf_opscore_ut_pelt_nsw",100,true],
    ["rhsusf_opscore_ut_pelt_cam",100,true],
    ["rhsusf_opscore_ut_pelt",100,true],
    ["rhsusf_opscore_ut",100,true],
    ["rhsusf_opscore_rg_cover_pelt",100,true],
    ["rhsusf_opscore_rg_cover",100,true],
    ["rhsusf_opscore_paint_pelt_nsw_cam",100,true],
    ["rhsusf_opscore_paint_pelt_nsw",100,true],
    ["rhsusf_opscore_paint_pelt",100,true],
    ["rhsusf_opscore_paint",100,true],
    ["rhsusf_opscore_mc_pelt_nsw",100,true],
    ["rhsusf_opscore_mc_pelt",100,true],
    ["rhsusf_opscore_mc",100,true],
    ["rhsusf_opscore_mc_cover_pelt_cam",100,true],
    ["rhsusf_opscore_mc_cover_pelt_nsw",100,true],
    ["rhsusf_opscore_mc_cover_pelt",100,true],
    ["rhsusf_opscore_mc_cover",100,true],
    ["rhsusf_opscore_fg_pelt_nsw",100,true],
    ["rhsusf_opscore_fg_pelt_cam",100,true],
    ["rhsusf_opscore_fg_pelt",100,true],
    ["rhsusf_opscore_fg",100,true],
    ["rhsusf_opscore_coy_cover_pelt",100,true],
    ["rhsusf_opscore_coy_cover",100,true],
    ["rhsusf_opscore_bk_pelt",100,true],
    ["rhsusf_opscore_bk",100,true],
    ["rhsusf_opscore_aor2_pelt_nsw",100,true],
    ["rhsusf_opscore_aor2_pelt",100,true],
    ["rhsusf_opscore_aor2",100,true],
    ["rhsusf_opscore_aor1_pelt_nsw",100,true],
    ["rhsusf_opscore_aor1_pelt",100,true],
    ["rhsusf_opscore_aor1",100,true],
    ["H_HelmetSpecB_wdl",100,true],
    ["tacs_Helmet_Enc_Ballistic_White",100,true],
    ["H_HelmetB_Enh_tna_F",100,true],
    ["H_HelmetSpecB_snakeskin",100,true],
    ["H_HelmetSpecB_sand",100,true],
    ["H_HelmetSpecB_paint1",100,true],
    ["H_HelmetSpecB_paint2",100,true],
    ["tacs_Helmet_Enc_Ballistic_DarkBlack",100,true],
    ["H_HelmetSpecB_blk",100,true],
    ["H_HelmetSpecB",100,true],
    ["H_EarProtectors_yellow_F",100,true],
    ["H_EarProtectors_red_F",100,true],
    ["H_EarProtectors_black_F",100,true],
    ["H_HelmetLeaderO_oucamo",100,true],
    ["H_HelmetLeaderO_ocamo",100,true],
    ["H_HelmetLeaderO_ghex_F",100,true],
    ["H_HelmetCrew_B",100,true],
    ["H_HelmetCrew_I_E",100,true],
    ["H_EarProtectors_white_F",100,true],
    ["H_EarProtectors_orange_F",100,true],
    ["H_HelmetCrew_O",100,true],
    ["H_HelmetCrew_I",100,true],
    ["H_Tank_eaf_F",100,true],
    ["H_Tank_black_F",100,true],
    ["H_HelmetB_plain_wdl",100,true],
    ["tacs_Helmet_Ballistic_White",100,true],
    ["H_HelmetB_snakeskin",100,true],
    ["H_HelmetB_sand",100,true],
    ["H_HelmetCrew_O_ghex_F",100,true],
    ["H_HelmetB_tna_F",100,true],
    ["H_HelmetB_grass",100,true],
    ["H_HelmetB_desert",100,true],
    ["tacs_Helmet_Ballistic_DarkBlack",100,true],
    ["H_HelmetB_camo",100,true],
    ["H_HelmetB_black",100,true],
    ["H_HelmetB",100,true],
    ["rhs_xmas_antlers",100,true],
    ["tacs_Cap_Headphones_BlackLogo",100,true],
    ["tacs_Cap_Earpiece_TanLogo",100,true],
    ["tacs_Cap_Earpiece_BlackLogo",100,true],
    ["tacs_Cap_Backwards_TanLogo",100,true],
    ["tacs_Cap_Backwards_BlackLogo",100,true],
    ["H_Cap_brn_SPECOPS",100,true],
    ["H_Cap_blk_Raven",100,true],
    ["H_Cap_White_IDAP_F",100,true],
    ["H_Cap_tan_specops_US",100,true],
    ["H_Cap_usblack",100,true],
    ["H_Cap_khaki_specops_UK",100,true],
    ["tacs_Cap_TanLogo",100,true],
    ["H_Cap_tan",100,true],
    ["H_Cap_surfer",100,true],
    ["H_Cap_red",100,true],
    ["H_Cap_press",100,true],
    ["H_Cap_police",100,true],
    ["H_Cap_Orange_IDAP_F",100,true],
    ["H_Cap_oli_hs",100,true],
    ["H_Cap_oli",100,true],
    ["H_Cap_blk_ION",100,true],
    ["H_Cap_grn",100,true],
    ["H_Cap_blk_CMMG",100,true],
    ["H_Cap_blu",100,true],
    ["tacs_Cap_BlackLogo",100,true],
    ["H_Cap_Black_IDAP_F",100,true],
    ["H_Cap_blk",100,true],
    ["H_Cap_grn_BI",100,true],
    ["rhsusf_bowman_cap",100,true],
    ["rhsusf_Bowman",100,true],
    ["rhs_Booniehat_ucp",100,true],
    ["rhs_Booniehat_ocp",100,true],
    ["rhs_booniehat2_marpatwd",100,true],
    ["rhs_booniehat2_marpatd",100,true],
    ["rhs_Booniehat_m81",100,true],
    ["rhsgref_Booniehat_alpen",100,true],
    ["H_Booniehat_eaf",100,true],
    ["H_Booniehat_dgtl",100,true],
    ["H_Booniehat_wdl",100,true],
    ["H_Booniehat_tna_F",100,true],
    ["H_Booniehat_taiga",100,true],
    ["H_Booniehat_tan",100,true],
    ["H_Booniehat_oli",100,true],
    ["H_Booniehat_mcamo",100,true],
    ["H_Booniehat_khk",100,true],
    ["H_Booniehat_khk_hs",100,true],
    ["rhssaf_booniehat_woodland",100,true],
    ["rhssaf_booniehat_md2camo",100,true],
    ["rhssaf_booniehat_digital",100,true],
    ["rhs_Booniehat_digi",100,true],
    ["tacs_Hat_Boonie_Woodland",100,true],
    ["tacs_Hat_Boonie_UCP",100,true],
    ["rhs_Booniehat_flora",100,true],
    ["H_Booniehat_mgrn",100,true],
    ["tacs_Hat_Boonie_DesertMARPAT",100,true],
    ["H_Beret_Colonel",100,true],
    ["H_Beret_02",100,true],
    ["H_Beret_EAF_01_F",100,true],
    ["rhs_beret_milp",100,true],
    ["tacs_Hat_Boonie_RangerGreen",100,true],
    ["rhs_beret_vdv3",100,true],
    ["rhs_beret_vdv2",100,true],
    ["rhs_beret_vdv1",100,true],
    ["rhsgref_un_beret",100,true],
    ["H_Beret_CSAT_01_F",100,true],
    ["rhs_beret_mvd",100,true],
    ["rhs_beret_mp2",100,true],
    ["rhs_beret_mp1",100,true],
    ["H_Beret_gen_F",100,true],
    ["tacs_Hat_Beret_BlackLogo",100,true],
    ["H_Beret_blk",100,true],
    ["rhssaf_beret_blue_un",100,true],
    ["rhssaf_beret_red",100,true],
    ["rhssaf_beret_black",100,true],
    ["rhssaf_beret_green",100,true],
    ["rhssaf_beret_para",100,true],
    ["H_Watchcap_khk",100,true],
    ["H_Watchcap_camo",100,true],
    ["rhs_beanie",100,true],
    ["H_Watchcap_cbr",100,true],
    ["H_Watchcap_blk",100,true],
    ["rhs_beanie_green",100,true],
    ["H_PASGT_basic_white_F",100,true],
    ["H_PASGT_basic_olive_F",100,true],
    ["H_PASGT_basic_blue_F",100,true],
    ["H_PASGT_basic_black_F",100,true],
    ["rhsgref_bcap_specter",100,true],
    ["H_Bandanna_camo",100,true],
    ["H_Bandanna_surfer_grn",100,true],
    ["H_Bandanna_surfer_blk",100,true],
    ["H_Bandanna_surfer",100,true],
    ["H_Bandanna_sand",100,true],
    ["H_Bandanna_sgg",100,true],
    ["H_Bandanna_mcamo",100,true],
    ["H_Bandanna_khk",100,true],
    ["H_Bandanna_khk_hs",100,true],
    ["H_Bandanna_cbr",100,true],
    ["H_Bandanna_blu",100,true],
    ["rhssaf_bandana_smb",100,true],
    ["rhssaf_bandana_oakleaf",100,true],
    ["rhssaf_bandana_md2camo",100,true],
    ["rhssaf_bandana_digital_desert",100,true],
    ["H_Bandanna_gry",100,true],
    ["rhssaf_bandana_digital",100,true],
    ["H_HelmetAggressor_cover_taiga_F",100,true],
    ["H_HelmetAggressor_cover_F",100,true],
    ["H_HelmetAggressor_F",100,true],
    ["H_HelmetSpecO_ocamo",100,true],
    ["H_HelmetSpecO_ghex_F",100,true],
    ["H_HelmetSpecO_blk",100,true],
    ["rhs_altyn_bala",100,true],
    ["rhs_altyn",100,true],
    ["rhs_altyn_visordown",100,true],
    ["rhs_altyn_novisor_ess_bala",100,true],
    ["rhs_altyn_novisor_ess",100,true],
    ["rhs_altyn_novisor_bala",100,true],
    ["rhs_altyn_novisor",100,true],
    ["H_HelmetHBK_F",100,true],
    ["H_HelmetHBK_ear_F",100,true],
    ["H_HelmetHBK_chops_F",100,true],
    ["H_HelmetHBK_headset_F",100,true],
    ["rhsusf_cvc_ess",100,true],
    ["rhsusf_cvc_alt_helmet",100,true],
    ["rhsusf_cvc_helmet",100,true],
    ["rhsusf_cvc_green_ess",100,true],
    ["rhsusf_cvc_green_alt_helmet",100,true],
    ["rhsusf_cvc_green_helmet",100,true],
    ["rhsusf_ach_helmet_ucp_norotos",100,true],
    ["rhsusf_ach_helmet_headset_ess_ucp_alt",100,true],
    ["rhsusf_ach_helmet_headset_ess_ucp",100,true],
    ["rhsusf_ach_helmet_headset_ucp_alt",100,true],
    ["rhsusf_ach_helmet_headset_ucp",100,true],
    ["rhsusf_ach_helmet_ESS_ucp",100,true],
    ["rhsusf_ach_helmet_ucp_alt",100,true],
    ["rhsusf_ach_helmet_ucp",100,true],
    ["rhsusf_ach_helmet_ESS_ucp_alt",100,true],
    ["rhsusf_ach_helmet_ocp_norotos",100,true],
    ["rhsusf_ach_helmet_camo_ocp",100,true],
    ["rhsusf_ach_helmet_headset_ess_ocp_alt",100,true],
    ["rhsusf_ach_helmet_headset_ess_ocp",100,true],
    ["rhsusf_ach_helmet_headset_ocp_alt",100,true],
    ["rhsusf_ach_helmet_headset_ocp",100,true],
    ["rhsusf_ach_helmet_ESS_ocp",100,true],
    ["rhsusf_ach_helmet_ocp_alt",100,true],
    ["rhsusf_ach_helmet_ocp",100,true],
    ["rhsusf_ach_helmet_M81",100,true],
    ["rhsusf_ach_helmet_DCU_early_rhino",100,true],
    ["rhsusf_ach_helmet_DCU_early",100,true],
    ["rhsusf_ach_helmet_DCU",100,true],
    ["rhsusf_ach_bare_wood_headset_ess",100,true],
    ["rhsusf_ach_bare_wood_headset",100,true],
    ["rhsusf_ach_bare_wood_ess",100,true],
    ["rhsusf_ach_bare_wood",100,true],
    ["rhsusf_ach_bare_tan_headset",100,true],
    ["rhsusf_ach_bare_tan_ess",100,true],
    ["rhsusf_ach_bare_tan",100,true],
    ["rhsusf_ach_bare_semi_headset_ess",100,true],
    ["rhsusf_ach_bare_semi_headset",100,true],
    ["rhsusf_ach_bare_tan_headset_ess",100,true],
    ["rhsusf_ach_bare_semi_ess",100,true],
    ["rhsusf_ach_bare_semi",100,true],
    ["rhsusf_ach_bare_headset_ess",100,true],
    ["rhsusf_ach_bare_headset",100,true],
    ["rhsusf_ach_bare_ess",100,true],
    ["rhsusf_ach_bare_des_headset_ess",100,true],
    ["rhsusf_ach_bare_des_headset",100,true],
    ["rhsusf_ach_bare_des_ess",100,true],
    ["rhsusf_ach_bare_des",100,true],
    ["rhsusf_ach_bare",100,true],
    ["LOP_H_Worker_cap",100,true],
    ["LOP_H_Ushanka",100,true],
    ["LOP_H_Turban_mask",100,true],
    ["LOP_H_Turban",100,true],
    ["LOP_H_Villager_cap",100,true],
    ["PO_H_SSh68Helmet_wz93",100,true],
    ["LOP_H_SSh68Helmet_TAN",100,true],
    ["PO_H_SSh68Helmet_Partizan_1",100,true],
    ["PO_H_SSh68Helmet_Partizan_2",100,true],
    ["PO_H_SSh68Helmet_NK_1",100,true],
    ["PO_H_SSh68Helmet_NK_2",100,true],
    ["PO_H_SSh68Helmet_M81_2",100,true],
    ["PO_H_SSh68Helmet_M81_1",100,true],
    ["LOP_H_SSh68Helmet_OLV",100,true],
    ["LOP_H_SSh68Helmet_BLK",100,true],
    ["LOP_H_SSh68Helmet_ANA",100,true],
    ["LOP_H_Shemag_TAN",100,true],
    ["LOP_H_Shemag_RED2",100,true],
    ["LOP_H_Shemag_RED1",100,true],
    ["LOP_H_Shemag_OLV",100,true],
    ["LOP_H_Shemag_GRE",100,true],
    ["LOP_H_Shemag_BLU",100,true],
    ["LOP_H_Shemag_BLK",100,true],
    ["LOP_H_Policeman_cap",100,true],
    ["PO_H_PASGT_TUB",100,true],
    ["PO_H_PASGT_ANA",100,true],
    ["PO_H_PASGT_MCAM",100,true],
    ["PO_H_PASGT_MARPAT",100,true],
    ["PO_H_PASGT_M81_3",100,true],
    ["PO_H_PASGT_M81_2",100,true],
    ["PO_H_PASGT_MM14",100,true],
    ["PO_H_PASGT_M81_1",100,true],
    ["PO_H_PASGT_LIZ",100,true],
    ["PO_H_PASGT_LIZ_DIGI",100,true],
    ["PO_H_PASGT_IDPM",100,true],
    ["PO_H_PASGT_DPM",100,true],
    ["PO_H_PASGT_BLU",100,true],
    ["PO_H_PASGT_BLK",100,true],
    ["PO_H_PASGT_6CD",100,true],
    ["PO_H_PASGT_3CD",100,true],
    ["LOP_H_Pakol",100,true],
    ["PO_H_mich_bare_isof_3_nortos_hs_blk",100,true],
    ["PO_H_mich_bare_isof_3_nortos_alt_blk",100,true],
    ["PO_H_mich_bare_isof_3_nortos_blk",100,true],
    ["PO_H_mich_bare_isof_2_nortos_hs_blk",100,true],
    ["PO_H_mich_bare_isof_2_nortos_alt_blk",100,true],
    ["PO_H_mich_bare_isof_2_nortos_blk",100,true],
    ["PO_H_mich_bare_isof_1_nortos_hs_blk",100,true],
    ["PO_H_mich_bare_isof_1_nortos_alt_blk",100,true],
    ["PO_H_mich_bare_isof_1_nortos_blk",100,true],
    ["PO_H_M1_OLV_1",100,true],
    ["PO_H_M1_OLV_2",100,true],
    ["PO_H_M1_BLK",100,true],
    ["PO_H_M1_TAN",100,true],
    ["LOP_H_6B27M_ess_UKR",100,true],
    ["LOP_H_6B27M_UKR",100,true],
    ["LOP_H_6B27M_ess_MTP",100,true],
    ["LOP_H_6B27M_MTP",100,true],
    ["LOP_H_6B27M_ess_Digit",100,true],
    ["LOP_H_6B27M_Digit",100,true],
    ["LOP_H_6B27M_ess_Izlom",100,true],
    ["LOP_H_6B27M_Izlom",100,true],
    ["LOP_H_6B27M_ess_wz93",100,true],
    ["LOP_H_6B27M_wz93",100,true],
    ["LOP_H_Fieldcap_UKR",100,true],
    ["PO_H_Fieldcap_NK",100,true],
    ["LOP_H_Fieldcap_CDF",100,true],
    ["LOP_H_Fieldcap_BLU",100,true],
    ["LOP_H_Cowboy_hat",100,true],
    ["PO_H_cap_tub",100,true],
    ["LOP_H_Booniehat_RACS",100,true],
    ["PO_H_bonnie_tub",100,true],
    ["LOP_H_SLA_Beret",100,true],
    ["LOP_H_Beret_Pesh",100,true],
    ["LOP_H_ChDKZ_Beret",100,true],
    ["LOP_H_Beanie_tan",100,true],
    ["LOP_H_Beanie_multicam",100,true],
    ["LOP_H_Beanie_mtp",100,true],
    ["LOP_H_Beanie_digit",100,true],
    ["LOP_H_Beanie_m81",100,true],
    ["LOP_H_Beanie_flec",100,true],
    ["LOP_H_Beanie_dpmw",100,true],
    ["LOP_H_6B27M_ess_UN",100,true],
    ["LOP_H_6B27M_UN",100,true],
    ["LOP_H_Beanie_marpat",100,true],
    ["LOP_H_6B27M_ess_Skol",100,true],
    ["LOP_H_6B27M_Skol",100,true],
    ["LOP_H_6B27M_ess_RACS",100,true],
    ["LOP_H_6B27M_RACS",100,true],
    ["LOP_H_6B27M_ess_Flora",100,true],
    ["LOP_H_6B27M_Flora",100,true],
    ["LOP_H_6B27M_ess_CDF",100,true],
    ["LOP_H_6B27M_CDF",100,true],
    ["rhs_6b7_1m_bala1_olive",100,true],
    ["rhs_6b7_1m_bala2_olive",100,true],
    ["rhs_6b7_1m_olive",100,true],
    ["rhs_6b7_1m_flora_ns3",100,true],
    ["rhs_6b7_1m_bala1_flora",100,true],
    ["rhs_6b7_1m_bala2_flora",100,true],
    ["rhs_6b7_1m_flora",100,true],
    ["rhs_6b7_1m_ess_bala",100,true],
    ["rhs_6b7_1m_ess",100,true],
    ["rhs_6b7_1m_emr_ess_bala",100,true],
    ["rhs_6b7_1m_emr_ess",100,true],
    ["rhs_6b7_1m_bala1_emr",100,true],
    ["rhs_6b7_1m_bala2_emr",100,true],
    ["rhs_6b7_1m_emr",100,true],
    ["rhs_6b7_1m_bala1",100,true],
    ["rhs_6b7_1m_bala2",100,true],
    ["rhs_6b7_1m",100,true],
    ["rhs_6b47_ess_bala",100,true],
    ["rhs_6b47_ess",100,true],
    ["rhs_6b47_bala",100,true],
    ["rhs_6b47",100,true],
    ["rhs_6b28_flora_ess_bala",100,true],
    ["rhs_6b28_flora_ess",100,true],
    ["rhs_6b28_flora_bala",100,true],
    ["rhs_6b28_flora",100,true],
    ["rhs_6b28_ess_bala",100,true],
    ["rhs_6b28_ess",100,true],
    ["rhs_6b28_bala",100,true],
    ["rhs_6b28",100,true],
    ["rhs_6b28_green_ess_bala",100,true],
    ["rhs_6b28_green_ess",100,true],
    ["rhs_6b28_green_bala",100,true],
    ["rhs_6b28_green",100,true],
    ["rhs_6b27m_ML_ess_bala",100,true],
    ["rhs_6b27m_ml_ess",100,true],
    ["rhs_6b27m_ml_bala",100,true],
    ["rhs_6b27m_ml",100,true],
    ["rhs_6b27m_ess_bala",100,true],
    ["rhs_6b27m_ess",100,true],
    ["rhs_6b27m_bala",100,true],
    ["rhs_6b27m",100,true],
    ["rhs_6b27m_digi_ess_bala",100,true],
    ["rhs_6b27m_digi_ess",100,true],
    ["rhs_6b27m_digi_bala",100,true],
    ["rhs_6b27m_digi",100,true],
    ["rhs_6b27m_green_ess_bala",100,true],
    ["rhs_6b27m_green_ess",100,true],
    ["rhs_6b27m_green_bala",100,true],
    ["rhs_6b27m_green",100,true],
    ["rhs_6b26_ess_bala",100,true],
    ["rhs_6b26_ess",100,true],
    ["rhs_6b26_bala",100,true],
    ["rhs_6b26",100,true],
    ["rhs_6b26_ess_bala_green",100,true],
    ["rhs_6b26_ess_green",100,true],
    ["rhs_6b26_bala_green",100,true],
    ["rhs_6b26_green",100,true],
    ["G_WirelessEarpiece_F",100,true],
    ["G_Goggles_VR",100,true],
    ["rhssaf_veil_Green",100,true],
    ["G_Spectacles_Tinted",100,true],
    ["A3_Tactical_glasses_blk",100,true],
    ["G_Tactical_Black",100,true],
    ["tacs_Goggles_Green",100,true],
    ["tacs_Goggles_Black",100,true],
    ["G_Tactical_Clear",100,true],
    ["tacs_Goggles_Tan",100,true],
    ["G_Balaclava_TI_G_tna_F",100,true],
    ["G_Balaclava_TI_tna_F",100,true],
    ["G_Balaclava_TI_G_blk_F",100,true],
    ["G_Balaclava_TI_blk_F",100,true],
    ["G_Squares",100,true],
    ["G_Squares_Tinted",100,true],
    ["A3_Sport_Sunglasses_blk",100,true],
    ["G_Sport_Greenblack",100,true],
    ["G_Sport_Blackred",100,true],
    ["G_Sport_Checkered",100,true],
    ["G_Sport_BlackWhite",100,true],
    ["G_Sport_Blackyellow",100,true],
    ["G_Sport_Red",100,true],
    ["G_Spectacles",100,true],
    ["rhsusf_oakley_goggles_ylw",100,true],
    ["rhsusf_oakley_goggles_clr",100,true],
    ["rhsusf_oakley_goggles_blk",100,true],
    ["rhsusf_shemagh2_gogg_white",100,true],
    ["rhsusf_shemagh_gogg_white",100,true],
    ["rhsusf_shemagh2_gogg_tan",100,true],
    ["rhsusf_shemagh_gogg_tan",100,true],
    ["rhsusf_shemagh2_gogg_od",100,true],
    ["rhsusf_shemagh_gogg_od",100,true],
    ["rhsusf_shemagh2_gogg_grn",100,true],
    ["rhsusf_shemagh_gogg_grn",100,true],
    ["rhsusf_shemagh2_white",100,true],
    ["rhsusf_shemagh_white",100,true],
    ["rhsusf_shemagh2_tan",100,true],
    ["rhsusf_shemagh_tan",100,true],
    ["rhsusf_shemagh2_od",100,true],
    ["rhsusf_shemagh_od",100,true],
    ["rhsusf_shemagh2_grn",100,true],
    ["rhsusf_shemagh_grn",100,true],
    ["G_Shades_Red",100,true],
    ["G_Shades_Green",100,true],
    ["G_Shades_Blue",100,true],
    ["G_Shades_Black",100,true],
    ["rhs_scarf",100,true],
    ["G_EyeProtectors_Earpiece_F",100,true],
    ["G_EyeProtectors_F",100,true],
    ["G_Respirator_yellow_F",100,true],
    ["G_Respirator_white_F",100,true],
    ["G_Respirator_blue_F",100,true],
    ["G_RegulatorMask_F",100,true],
    ["None",100,true],
    ["G_Lowprofile",100,true],
    ["immersion_pops_pop0",100,true],
    ["G_Lady_Blue",100,true],
    ["G_B_Diving",100,true],
    ["G_O_Diving",100,true],
    ["G_I_Diving",100,true],
    ["G_Diving",100,true],
    ["G_Combat_Goggles_tna_F",100,true],
    ["G_Combat",100,true],
    ["murshun_cigs_cig4",100,true],
    ["murshun_cigs_cig3",100,true],
    ["murshun_cigs_cig2",100,true],
    ["murshun_cigs_cig1",100,true],
    ["murshun_cigs_cig0",100,true],
    ["immersion_cigs_cigar4",100,true],
    ["immersion_cigs_cigar3",100,true],
    ["immersion_cigs_cigar2",100,true],
    ["immersion_cigs_cigar1",100,true],
    ["immersion_cigs_cigar0",100,true],
    ["G_Blindfold_01_white_F",100,true],
    ["G_Blindfold_01_black_F",100,true],
    ["G_Bandanna_tan",100,true],
    ["G_Bandanna_sport",100,true],
    ["G_Bandanna_shades",100,true],
    ["G_Bandanna_oli",100,true],
    ["G_Bandanna_khk",100,true],
    ["G_Bandanna_blk",100,true],
    ["G_Bandanna_beast",100,true],
    ["G_Bandanna_aviator",100,true],
    ["rhs_ess_black",100,true],
    ["rhs_googles_clear",100,true],
    ["rhs_googles_yellow",100,true],
    ["rhs_googles_orange",100,true],
    ["rhs_googles_black",100,true],
    ["G_Balaclava_oli",100,true],
    ["rhs_balaclava1_olive",100,true],
    ["G_Balaclava_lowprofile",100,true],
    ["G_Balaclava_combat",100,true],
    ["G_Balaclava_blk",100,true],
    ["rhs_balaclava",100,true],
    ["G_Aviator",100,true],
    ["G_AirPurifyingRespirator_01_F",100,true],
    ["G_AirPurifyingRespirator_02_sand_F",100,true],
    ["G_AirPurifyingRespirator_02_olive_F",100,true],
    ["G_AirPurifyingRespirator_02_black_F",100,true],
    ["APERSMineDispenser_Mag",100,true],
    ["Drone_Range_Mag_dummy",100,true],
    ["Drone_Range_Mag",100,true],
    ["rhs_mine_atrue0_bz_mag",100,true],
    ["rhs_mine_atrue0_dz35_mag",100,true],
    ["rhs_mine_glasmine43_bz_mag",100,true],
    ["rhs_mine_glasmine43_hz_mag",100,true],
    ["IEDLandBig_Remote_Mag",100,true],
    ["IEDUrbanBig_Remote_Mag",100,true],
    ["rhsusf_m112_mag",100,true],
    ["rhsusf_m112x4_mag",100,true],
    ["DemoCharge_Remote_Mag",100,true],
    ["rhsusf_mine_m14_mag",100,true],
    ["ATMine_Range_Mag",100,true],
    ["SatchelCharge_Remote_Mag",100,true],
    ["ClaymoreDirectionalMine_Remote_Mag",100,true],
    ["rhs_mine_M19_mag",100,true],
    ["APERSBoundingMine_Range_Mag",100,true],
    ["rhs_mine_m2a3b_trip_mag",100,true],
    ["rhs_mine_m2a3b_press_mag",100,true],
    ["rhs_mine_M3_tripwire_mag",100,true],
    ["rhs_mine_m3_pressure_mag",100,true],
    ["rhsusf_mine_m49a1_10m_mag",100,true],
    ["rhsusf_mine_m49a1_3m_mag",100,true],
    ["rhsusf_mine_m49a1_6m_mag",100,true],
    ["SLAMDirectionalMine_Wire_Mag",100,true],
    ["rhs_mine_M7A2_mag",100,true],
    ["rhs_mine_Mk2_tripwire_mag",100,true],
    ["rhs_mine_mk2_pressure_mag",100,true],
    ["rhssaf_mine_mrud_c_mag",100,true],
    ["rhssaf_mine_mrud_a_mag",100,true],
    ["rhssaf_mine_mrud_b_mag",100,true],
    ["rhssaf_mine_mrud_d_mag",100,true],
    ["rhs_mine_msk40p_blue_mag",100,true],
    ["rhs_mine_msk40p_green_mag",100,true],
    ["rhs_mine_msk40p_red_mag",100,true],
    ["rhs_mine_msk40p_white_mag",100,true],
    ["rhs_mine_ozm72_a_mag",100,true],
    ["rhs_mine_ozm72_b_mag",100,true],
    ["rhs_mine_ozm72_c_mag",100,true],
    ["rhs_mag_mine_pfm1",100,true],
    ["rhssaf_mine_pma3_mag",100,true],
    ["rhs_mine_pmn2_mag",100,true],
    ["APERSTripMine_Wire_Mag",100,true],
    ["rhs_mag_mine_ptm1",100,true],
    ["rhs_mine_smine35_press_mag",100,true],
    ["rhs_mine_smine35_trip_mag",100,true],
    ["rhs_mine_smine44_press_mag",100,true],
    ["rhs_mine_smine44_trip_mag",100,true],
    ["rhs_mine_sm3true_green_mag",100,true],
    ["rhs_mine_sm3true_red_mag",100,true],
    ["rhs_mine_sm3true_white_mag",100,true],
    ["IEDLandSmall_Remote_Mag",100,true],
    ["IEDUrbanSmall_Remote_Mag",100,true],
    ["rhs_mine_stockmine43_2m_mag",100,true],
    ["rhs_mine_stockmine43_4m_mag",100,true],
    ["rhs_mine_TM43_mag",100,true],
    ["rhs_charge_M2tet_x2_mag",100,true],
    ["rhssaf_tm100_mag",100,true],
    ["rhssaf_tmtrue0_mag",100,true],
    ["rhssaf_tm500_mag",100,true],
    ["rhs_mine_tm62m_mag",100,true],
    ["rhssaf_mine_tma4_mag",100,true],
    ["rhs_ec75_mag",100,true],
    ["rhs_ectrue0_sand_mag",100,true],
    ["rhs_ectrue0_mag",100,true],
    ["rhs_ec400_sand_mag",100,true],
    ["rhs_ec400_mag",100,true],
    ["rhs_ec75_sand_mag",100,true],
    ["TrainingMine_Mag",100,true],
    ["ACE_FlareTripMine_Mag",100,true],
    ["APERSMine_Range_Mag",100,true],
    ["U_C_IDAP_Man_cargo_F",100,true],
    ["U_C_IDAP_Man_Jeans_F",100,true],
    ["U_C_IDAP_Man_casual_F",100,true],
    ["U_C_IDAP_Man_shorts_F",100,true],
    ["U_C_IDAP_Man_Tee_F",100,true],
    ["U_C_IDAP_Man_TeeShorts_F",100,true],
    ["rhs_uniform_acu_ocp",100,true],
    ["rhs_uniform_acu_oefcp",100,true],
    ["rhs_uniform_acu_ucp",100,true],
    ["rhs_uniform_abu",100,true],
    ["rhs_uniform_acu_ucpd",100,true],
    ["U_I_C_Soldier_Bandit_4_F",100,true],
    ["U_I_C_Soldier_Bandit_1_F",100,true],
    ["U_I_C_Soldier_Bandit_2_F",100,true],
    ["U_I_C_Soldier_Bandit_5_F",100,true],
    ["LOP_U_ANA_M93_spec4e_02",100,true],
    ["LOP_U_ANA_M93_spec4e_01",100,true],
    ["LOP_U_Fatigue_BDU_ATACS_AU_01",100,true],
    ["U_I_C_Soldier_Bandit_3_F",100,true],
    ["LOP_U_Fatigue_BDU_ATACS_AU_02",100,true],
    ["LOP_U_Fatigue_BDU_ATACS_FG_02",100,true],
    ["LOP_U_Fatigue_BDU_ATACS_FG_01",100,true],
    ["LOP_U_Fatigue_BDU_BLK_01",100,true],
    ["LOP_U_Fatigue_BDU_BLK_02",100,true],
    ["LOP_U_Fatigue_BDU_FLEC_01",100,true],
    ["LOP_U_Fatigue_BDU_FLEC_02",100,true],
    ["LOP_U_Fatigue_BDU_GRE_LIZ_01",100,true],
    ["LOP_U_Fatigue_BDU_GRE_LIZ_02",100,true],
    ["rhs_uniform_bdu_erdl",100,true],
    ["LOP_U_IRAN_M93_basij_02",100,true],
    ["LOP_U_IRAN_M93_basij_01",100,true],
    ["LOP_U_IRAN_M93_idpm_01",100,true],
    ["LOP_U_IRAN_M93_idpm_02",100,true],
    ["LOP_U_IRAQ_M93_3cd_01",100,true],
    ["LOP_U_IRAQ_M93_3cd_02",100,true],
    ["LOP_U_IRAQ_M93_m81_01",100,true],
    ["LOP_U_IRAQ_M93_m81_03",100,true],
    ["LOP_U_IRAQ_M93_m81_02",100,true],
    ["LOP_U_IRAQ_M93_m81_04",100,true],
    ["LOP_U_IRAQ_M93_marpat_01",100,true],
    ["LOP_U_IRAQ_M93_marpat_02",100,true],
    ["LOP_U_PESH_M93_blk_01",100,true],
    ["LOP_U_PESH_M93_m81_01",100,true],
    ["LOP_U_PESH_M93_m81_04",100,true],
    ["LOP_U_Fatigue_BDU_KOR_BRW_01",100,true],
    ["LOP_U_PESH_M93_m81_02",100,true],
    ["LOP_U_PESH_M93_m81_03",100,true],
    ["LOP_U_PESH_M93_olv_01",100,true],
    ["LOP_U_Fatigue_BDU_RACS_01",100,true],
    ["LOP_U_Fatigue_BDU_RACS_02",100,true],
    ["LOP_U_SYR_M93_leaf_02",100,true],
    ["LOP_U_SYR_M93_leaf_01",100,true],
    ["LOP_U_SYR_M93_m81_01",100,true],
    ["LOP_U_SYR_M93_m81_04",100,true],
    ["LOP_U_SYR_M93_m81_02",100,true],
    ["LOP_U_SYR_M93_m81_03",100,true],
    ["LOP_U_SYR_M93_marpat_02",100,true],
    ["LOP_U_SYR_M93_marpat_01",100,true],
    ["LOP_U_Fatigue_BDU_TIGR_01",100,true],
    ["LOP_U_Fatigue_BDU_TURK_TUBITAK_01",100,true],
    ["Project_BJC_PCU_Cargo25",100,true],
    ["Project_BJC_PCU_Cargotrue",100,true],
    ["Project_BJC_PCU_Cargo21",100,true],
    ["Project_BJC_PCU_Cargo23",100,true],
    ["Project_BJC_PCU_Cargo24",100,true],
    ["Project_BJC_PCU_Cargo22",100,true],
    ["Project_BJC_PCU_Cargo28",100,true],
    ["Project_BJC_PCU_Cargo2",100,true],
    ["Project_BJC_PCU_Cargo10",100,true],
    ["Project_BJC_PCU_Cargo14",100,true],
    ["Project_BJC_PCU_Cargo18",100,true],
    ["Project_BJC_PCU_Cargo6",100,true],
    ["Project_BJC_PCU_Cargo8",100,true],
    ["Project_BJC_PCU_Cargo26",100,true],
    ["Project_BJC_PCU_Cargo",100,true],
    ["Project_BJC_PCU_Cargo12",100,true],
    ["Project_BJC_PCU_Cargo16",100,true],
    ["Project_BJC_PCU_Cargo4",100,true],
    ["Project_BJC_PCU_Cargo29",100,true],
    ["Project_BJC_PCU_Cargo3",100,true],
    ["Project_BJC_PCU_Cargo11",100,true],
    ["Project_BJC_PCU_Cargo15",100,true],
    ["Project_BJC_PCU_Cargo19",100,true],
    ["Project_BJC_PCU_Cargo7",100,true],
    ["Project_BJC_PCU_Cargo5",100,true],
    ["Project_BJC_PCU_Cargo27",100,true],
    ["Project_BJC_PCU_Cargo1",100,true],
    ["Project_BJC_PCU_Cargo9",100,true],
    ["Project_BJC_PCU_Cargo13",100,true],
    ["Project_BJC_PCU_Cargo17",100,true],
    ["Project_BJC_Shirt_Cargo16",100,true],
    ["Project_BJC_Shirt_Cargo17",100,true],
    ["Project_BJC_Shirt_Cargo18",100,true],
    ["Project_BJC_Shirt_Cargo19",100,true],
    ["Project_BJC_Shirt_Cargo2",100,true],
    ["Project_BJC_Shirt_Cargo6",100,true],
    ["Project_BJC_Shirt_Cargo10",100,true],
    ["Project_BJC_Shirt_Cargo14",100,true],
    ["Project_BJC_Shirt_Cargo",100,true],
    ["Project_BJC_Shirt_Cargo4",100,true],
    ["Project_BJC_Shirt_Cargo8",100,true],
    ["Project_BJC_Shirt_Cargo12",100,true],
    ["Project_BJC_Shirt_Cargo3",100,true],
    ["Project_BJC_Shirt_Cargo7",100,true],
    ["Project_BJC_Shirt_Cargo11",100,true],
    ["Project_BJC_Shirt_Cargo15",100,true],
    ["Project_BJC_Shirt_Cargo1",100,true],
    ["Project_BJC_Shirt_Cargo5",100,true],
    ["Project_BJC_Shirt_Cargo9",100,true],
    ["Project_BJC_Shirt_Cargo13",100,true],
    ["Project_BJC_Shirt_Cut_Cargo16",100,true],
    ["Project_BJC_Shirt_Cut_Cargo17",100,true],
    ["Project_BJC_Shirt_Cut_Cargo18",100,true],
    ["Project_BJC_Shirt_Cut_Cargo19",100,true],
    ["Project_BJC_Shirt_Cut_Cargo2",100,true],
    ["Project_BJC_Shirt_Cut_Cargo6",100,true],
    ["Project_BJC_Shirt_Cut_Cargo10",100,true],
    ["Project_BJC_Shirt_Cut_Cargo14",100,true],
    ["Project_BJC_Shirt_Cut_Cargo",100,true],
    ["Project_BJC_Shirt_Cut_Cargo4",100,true],
    ["Project_BJC_Shirt_Cut_Cargo8",100,true],
    ["Project_BJC_Shirt_Cut_Cargo12",100,true],
    ["Project_BJC_Shirt_Cut_Cargo3",100,true],
    ["Project_BJC_Shirt_Cut_Cargo7",100,true],
    ["Project_BJC_Shirt_Cut_Cargo11",100,true],
    ["Project_BJC_Shirt_Cut_Cargo15",100,true],
    ["Project_BJC_Shirt_Cut_Cargo1",100,true],
    ["Project_BJC_Shirt_Cut_Cargo5",100,true],
    ["Project_BJC_Shirt_Cut_Cargo9",100,true],
    ["Project_BJC_Shirt_Cut_Cargo13",100,true],
    ["Project_BJC_Cargo16",100,true],
    ["Project_BJC_Cargo17",100,true],
    ["Project_BJC_Cargo19",100,true],
    ["Project_BJC_Cargo18",100,true],
    ["Project_BJC_Cargo2",100,true],
    ["Project_BJC_Cargo6",100,true],
    ["Project_BJC_Cargo14",100,true],
    ["Project_BJC_Cargo10",100,true],
    ["Project_BJC_Cargo",100,true],
    ["Project_BJC_Cargo4",100,true],
    ["Project_BJC_Cargo12",100,true],
    ["Project_BJC_Cargo8",100,true],
    ["Project_BJC_Cargo3",100,true],
    ["Project_BJC_Cargo7",100,true],
    ["Project_BJC_Cargo15",100,true],
    ["Project_BJC_Cargo11",100,true],
    ["Project_BJC_Cargo1",100,true],
    ["Project_BJC_Cargo5",100,true],
    ["Project_BJC_Cargo13",100,true],
    ["Project_BJC_Cargo9",100,true],
    ["Project_BJC_PCU_Jean5",100,true],
    ["Project_BJC_PCU_Jean",100,true],
    ["Project_BJC_PCU_Jean2",100,true],
    ["Project_BJC_PCU_Jean3",100,true],
    ["Project_BJC_PCU_Jean4",100,true],
    ["Project_BJC_PCU_Jean1",100,true],
    ["Project_BJC_Shirt_Jean",100,true],
    ["Project_BJC_Shirt_Jean1",100,true],
    ["Project_BJC_Shirt_Jean2",100,true],
    ["Project_BJC_Shirt_Jean3",100,true],
    ["Project_BJC_Shirt_Cut_Jean",100,true],
    ["Project_BJC_Shirt_Cut_Jean1",100,true],
    ["Project_BJC_Shirt_Cut_Jean2",100,true],
    ["Project_BJC_Shirt_Cut_Jean3",100,true],
    ["Project_BJC",100,true],
    ["Project_BJC_2",100,true],
    ["Project_BJC_3",100,true],
    ["Project_BJC_1",100,true],
    ["Project_BJC_PCU_Jean_blk5",100,true],
    ["Project_BJC_PCU_Jean_blk",100,true],
    ["Project_BJC_PCU_Jean_blk2",100,true],
    ["Project_BJC_PCU_Jean_blk3",100,true],
    ["Project_BJC_PCU_Jean_blk4",100,true],
    ["Project_BJC_PCU_Jean_blk1",100,true],
    ["Project_BJC_Shirt_Jean_blk",100,true],
    ["Project_BJC_Shirt_Jean_blk1",100,true],
    ["Project_BJC_Shirt_Jean_blk2",100,true],
    ["Project_BJC_Shirt_Jean_blk3",100,true],
    ["Project_BJC_Shirt_Cut_Jean_blk",100,true],
    ["Project_BJC_Shirt_Cut_Jean_blk1",100,true],
    ["Project_BJC_Shirt_Cut_Jean_blk2",100,true],
    ["Project_BJC_Shirt_Cut_Jean_blk3",100,true],
    ["Project_BJC_blk",100,true],
    ["Project_BJC_blk_2",100,true],
    ["Project_BJC_blk_3",100,true],
    ["Project_BJC_blk_1",100,true],
    ["U_C_Man_casual_2_F",100,true],
    ["U_C_Man_casual_3_F",100,true],
    ["U_C_Man_casual_1_F",100,true],
    ["U_C_CBRN_Suit_01_Blue_F",100,true],
    ["U_B_CBRN_Suit_01_MTP_F",100,true],
    ["U_B_CBRN_Suit_01_Tropic_F",100,true],
    ["U_C_CBRN_Suit_01_White_F",100,true],
    ["U_B_CBRN_Suit_01_Wdl_F",100,true],
    ["U_I_CBRN_Suit_01_AAF_F",100,true],
    ["U_I_E_CBRN_Suit_01_EAF_F",100,true],
    ["LOP_U_AFR_Civ_01",100,true],
    ["LOP_U_AFR_Civ_02",100,true],
    ["LOP_U_AFR_Civ_03",100,true],
    ["LOP_U_AFR_Civ_04",100,true],
    ["LOP_U_AFR_Civ_05",100,true],
    ["LOP_U_AFR_Civ_06",100,true],
    ["LOP_U_CHR_Assistant_01",100,true],
    ["LOP_U_CHR_Functionary_01",100,true],
    ["LOP_U_CHR_Functionary_02",100,true],
    ["LOP_U_CHR_Citizen_03",100,true],
    ["LOP_U_CHR_Citizen_01",100,true],
    ["LOP_U_CHR_Citizen_07",100,true],
    ["LOP_U_CHR_Citizen_02",100,true],
    ["LOP_U_CHR_Citizen_04",100,true],
    ["LOP_U_CHR_Citizen_05",100,true],
    ["LOP_U_CHR_Citizen_06",100,true],
    ["LOP_U_CHR_Doctor_01",100,true],
    ["LOP_U_TAK_Civ_Fatigue_06",100,true],
    ["LOP_U_TAK_Civ_Fatigue_08",100,true],
    ["LOP_U_TAK_Civ_Fatigue_07",100,true],
    ["LOP_U_TAK_Civ_Fatigue_01",100,true],
    ["LOP_U_TAK_Civ_Fatigue_10",100,true],
    ["LOP_U_TAK_Civ_Fatigue_02",100,true],
    ["LOP_U_TAK_Civ_Fatigue_05",100,true],
    ["LOP_U_TAK_Civ_Fatigue_09",100,true],
    ["LOP_U_TAK_Civ_Fatigue_11",100,true],
    ["LOP_U_TAK_Civ_Fatigue_12",100,true],
    ["LOP_U_TAK_Civ_Fatigue_04",100,true],
    ["LOP_U_TAK_Civ_Fatigue_14",100,true],
    ["LOP_U_TAK_Civ_Fatigue_13",100,true],
    ["LOP_U_TAK_Civ_Fatigue_16",100,true],
    ["LOP_U_TAK_Civ_Fatigue_15",100,true],
    ["LOP_U_CHR_Villager_01",100,true],
    ["LOP_U_CHR_Villager_04",100,true],
    ["LOP_U_CHR_Villager_03",100,true],
    ["LOP_U_CHR_Villager_02",100,true],
    ["LOP_U_CHR_Priest_01",100,true],
    ["LOP_U_CHR_Profiteer_02",100,true],
    ["LOP_U_CHR_Profiteer_03",100,true],
    ["LOP_U_CHR_Profiteer_01",100,true],
    ["LOP_U_CHR_Profiteer_04",100,true],
    ["LOP_U_CHR_Rocker_03",100,true],
    ["LOP_U_CHR_Rocker_04",100,true],
    ["LOP_U_CHR_Rocker_01",100,true],
    ["LOP_U_CHR_Rocker_02",100,true],
    ["LOP_U_CHR_SchoolTeacher_01",100,true],
    ["LOP_U_AFR_Civ_01S",100,true],
    ["LOP_U_AFR_Civ_02S",100,true],
    ["LOP_U_AFR_Civ_03S",100,true],
    ["LOP_U_AFR_Civ_04S",100,true],
    ["LOP_U_AFR_Civ_05S",100,true],
    ["LOP_U_AFR_Civ_06S",100,true],
    ["LOP_U_PMC_shorts_floral",100,true],
    ["LOP_U_PMC_shorts_blue_hi",100,true],
    ["LOP_U_PMC_shorts_red_hi",100,true],
    ["LOP_U_PMC_shorts_m81_olv",100,true],
    ["LOP_U_PMC_shorts_marpat_tan",100,true],
    ["LOP_U_PMC_shorts_mcam_blk",100,true],
    ["LOP_U_PMC_shorts_grn_palm",100,true],
    ["LOP_U_PMC_shorts_prp_palm",100,true],
    ["LOP_U_PMC_shorts_blue_plaid",100,true],
    ["LOP_U_PMC_shorts_tacky",100,true],
    ["LOP_U_PMC_shorts_grn_plaid",100,true],
    ["LOP_U_PMC_shorts_orng_plaid",100,true],
    ["LOP_U_PMC_shorts_red_plaid",100,true],
    ["LOP_U_PMC_shorts_tan_digi",100,true],
    ["LOP_U_PMC_shorts_tan_olv",100,true],
    ["LOP_U_PMC_floral",100,true],
    ["LOP_U_PMC_tacky",100,true],
    ["LOP_U_PMC_blue_hi",100,true],
    ["LOP_U_PMC_red_hi",100,true],
    ["LOP_U_PMC_grn_palm",100,true],
    ["LOP_U_PMC_prp_palm",100,true],
    ["LOP_U_PMC_blue_plaid",100,true],
    ["LOP_U_PMC_grn_plaid",100,true],
    ["LOP_U_PMC_orng_plaid",100,true],
    ["LOP_U_PMC_red_plaid",100,true],
    ["LOP_U_CHR_Woodlander_01",100,true],
    ["LOP_U_CHR_Woodlander_02",100,true],
    ["LOP_U_CHR_Woodlander_03",100,true],
    ["LOP_U_CHR_Woodlander_04",100,true],
    ["LOP_U_CHR_Woodlander_05",100,true],
    ["LOP_U_CHR_Woodlander_06",100,true],
    ["LOP_U_CHR_Worker_03",100,true],
    ["LOP_U_CHR_Worker_04",100,true],
    ["LOP_U_CHR_Worker_01",100,true],
    ["LOP_U_CHR_Worker_02",100,true],
    ["LOP_U_CHR_Worker_07",100,true],
    ["LOP_U_CHR_Worker_05",100,true],
    ["LOP_U_CHR_Worker_06",100,true],
    ["U_B_CombatUniform_mcam",100,true],
    ["U_B_CombatUniform_mcam_tshirt",100,true],
    ["U_I_E_Uniform_01_officer_F",100,true],
    ["U_I_E_Uniform_01_shortsleeve_F",100,true],
    ["U_I_G_resistanceLeader_F",100,true],
    ["U_I_E_Uniform_01_sweater_F",100,true],
    ["U_I_E_Uniform_01_tanktop_F",100,true],
    ["U_B_T_Soldier_F",100,true],
    ["U_B_T_Soldier_AR_F",100,true],
    ["U_B_CombatUniform_mcam_wdl_f",100,true],
    ["U_B_CombatUniform_tshirt_mcam_wdL_f",100,true],
    ["U_I_CombatUniform",100,true],
    ["U_I_OfficerUniform",100,true],
    ["U_I_CombatUniform_shortsleeve",100,true],
    ["U_I_E_Uniform_01_F",100,true],
    ["tacs_Uniform_Garment_LS_BS_BP_BB",100,true],
    ["tacs_Uniform_Garment_LS_BS_GP_BB",100,true],
    ["tacs_Uniform_Garment_LS_OS_EP_TB",100,true],
    ["tacs_Uniform_Garment_LS_OS_TP_TB",100,true],
    ["tacs_Uniform_Garment_LS_GS_BP_BB",100,true],
    ["tacs_Uniform_Garment_LS_GS_GP_BB",100,true],
    ["tacs_Uniform_Garment_LS_GS_EP_TB",100,true],
    ["tacs_Uniform_Garment_LS_GS_TP_TB",100,true],
    ["tacs_Uniform_Garment_LS_ES_BP_BB",100,true],
    ["tacs_Uniform_Garment_LS_ES_GP_BB",100,true],
    ["tacs_Uniform_Garment_LS_ES_EP_TB",100,true],
    ["tacs_Uniform_Garment_LS_TS_BP_BB",100,true],
    ["tacs_Uniform_Garment_LS_TS_GP_BB",100,true],
    ["tacs_Uniform_Garment_LS_TS_TP_TB",100,true],
    ["tacs_Uniform_Garment_RS_BS_BP_BB",100,true],
    ["tacs_Uniform_Garment_RS_BS_GP_BB",100,true],
    ["tacs_Uniform_Garment_RS_OS_EP_TB",100,true],
    ["tacs_Uniform_Garment_RS_OS_TP_TB",100,true],
    ["tacs_Uniform_Garment_RS_GS_BP_BB",100,true],
    ["tacs_Uniform_Garment_RS_GS_GP_BB",100,true],
    ["tacs_Uniform_Garment_RS_GS_EP_TB",100,true],
    ["tacs_Uniform_Garment_RS_GS_TP_TB",100,true],
    ["tacs_Uniform_Garment_RS_ES_BP_BB",100,true],
    ["tacs_Uniform_Garment_RS_ES_GP_BB",100,true],
    ["tacs_Uniform_Garment_RS_ES_EP_TB",100,true],
    ["tacs_Uniform_Garment_RS_TS_BP_BB",100,true],
    ["tacs_Uniform_Garment_RS_TS_GP_BB",100,true],
    ["tacs_Uniform_Garment_RS_TS_TP_TB",100,true],
    ["LOP_U_AA_Fatigue_01",100,true],
    ["LOP_U_AA_Fatigue_01_slv",100,true],
    ["LOP_U_AA_Fatigue_02",100,true],
    ["LOP_U_AA_Fatigue_02_slv",100,true],
    ["LOP_U_IRAN_Fatigue_02",100,true],
    ["LOP_U_IA_Fatigue_01",100,true],
    ["LOP_U_IA_Fatigue_01_slv",100,true],
    ["LOP_U_IA_Fatigue_02",100,true],
    ["LOP_U_IA_Fatigue_02_slv",100,true],
    ["LOP_U_IA_Fatigue_03",100,true],
    ["LOP_U_IA_Fatigue_03_slv",100,true],
    ["LOP_U_PESH_Fatigue_04",100,true],
    ["LOP_U_PESH_Fatigue_04_slv",100,true],
    ["LOP_U_PESH_Fatigue_01",100,true],
    ["LOP_U_PESH_Fatigue_01_slv",100,true],
    ["LOP_U_PESH_Fatigue_02",100,true],
    ["LOP_U_PESH_Fatigue_02_slv",100,true],
    ["LOP_U_PESH_Fatigue_03",100,true],
    ["LOP_U_PESH_Fatigue_03_slv",100,true],
    ["LOP_U_RACS_Fatigue_01",100,true],
    ["LOP_U_RACS_Fatigue_01_slv",100,true],
    ["LOP_U_UKR_Fatigue_Multicam",100,true],
    ["tacs_Uniform_Combat_LS_BS_BP_BB",100,true],
    ["tacs_Uniform_Combat_LS_BS_DGP_BB",100,true],
    ["tacs_Uniform_Combat_LS_BS_GP_BB",100,true],
    ["tacs_Uniform_Combat_LS_BS_GP_TB",100,true],
    ["tacs_Uniform_Combat_LS_BS_TP_BB",100,true],
    ["tacs_Uniform_Combat_LS_BS_TP_TB",100,true],
    ["tacs_Uniform_Combat_LS_CBPS_BP_BB",100,true],
    ["tacs_Uniform_Combat_LS_GS_BP_BB",100,true],
    ["tacs_Uniform_Combat_LS_GS_GP_BB",100,true],
    ["tacs_Uniform_Combat_LS_GS_TP_BB",100,true],
    ["tacs_Uniform_Combat_LS_CDBS_GP_TB",100,true],
    ["tacs_Uniform_Combat_LS_CDES_TP_TB",100,true],
    ["tacs_Uniform_Combat_LS_CDFS_GP_TB",100,true],
    ["tacs_Uniform_Combat_LS_CLBS_GP_BB",100,true],
    ["tacs_Uniform_Combat_LS_CLES_TP_BB",100,true],
    ["tacs_Uniform_Combat_LS_CLFS_GP_BB",100,true],
    ["tacs_Uniform_Combat_LS_CLRS_TP_BB",100,true],
    ["tacs_Uniform_Combat_LS_CPS_BP_BB",100,true],
    ["tacs_Uniform_Combat_LS_TS_BP_BB",100,true],
    ["tacs_Uniform_Combat_LS_TS_GP_BB",100,true],
    ["tacs_Uniform_Combat_LS_TS_GP_TB",100,true],
    ["tacs_Uniform_Combat_LS_TS_TP_TB",100,true],
    ["tacs_Uniform_Combat_LS_WS_WP_WB",100,true],
    ["rhs_uniform_cu_ocp",100,true],
    ["rhs_uniform_cu_ocp_101st",100,true],
    ["rhs_uniform_cu_ocp_10th",100,true],
    ["rhs_uniform_cu_ocp_1stcav",100,true],
    ["rhs_uniform_cu_ocp_82nd",100,true],
    ["tacs_Uniform_Combat_RS_BS_BP_BB",100,true],
    ["tacs_Uniform_Combat_RS_BS_DGP_BB",100,true],
    ["tacs_Uniform_Combat_RS_BS_GP_BB",100,true],
    ["tacs_Uniform_Combat_RS_BS_GP_TB",100,true],
    ["tacs_Uniform_Combat_RS_BS_TP_BB",100,true],
    ["tacs_Uniform_Combat_RS_BS_TP_TB",100,true],
    ["tacs_Uniform_Combat_RS_CBPS_BP_BB",100,true],
    ["tacs_Uniform_Combat_RS_GS_BP_BB",100,true],
    ["tacs_Uniform_Combat_RS_GS_GP_BB",100,true],
    ["tacs_Uniform_Combat_RS_GS_TP_BB",100,true],
    ["tacs_Uniform_Combat_RS_CDBS_GP_TB",100,true],
    ["tacs_Uniform_Combat_RS_CDES_TP_TB",100,true],
    ["tacs_Uniform_Combat_RS_CDFS_GP_TB",100,true],
    ["tacs_Uniform_Combat_RS_CLBS_GP_BB",100,true],
    ["tacs_Uniform_Combat_RS_CLES_TP_BB",100,true],
    ["tacs_Uniform_Combat_RS_CLFS_GP_BB",100,true],
    ["tacs_Uniform_Combat_RS_CLRS_TP_BB",100,true],
    ["tacs_Uniform_Combat_RS_CPS_BP_BB",100,true],
    ["tacs_Uniform_Combat_RS_TS_BP_BB",100,true],
    ["tacs_Uniform_Combat_RS_TS_GP_BB",100,true],
    ["tacs_Uniform_Combat_RS_TS_GP_TB",100,true],
    ["tacs_Uniform_Combat_RS_TS_TP_TB",100,true],
    ["rhs_uniform_cu_ucp",100,true],
    ["rhs_uniform_cu_ucp_101st",100,true],
    ["rhs_uniform_cu_ucp_10th",100,true],
    ["rhs_uniform_cu_ucp_1stcav",100,true],
    ["rhs_uniform_cu_ucp_82nd",100,true],
    ["U_C_Poloshirt_blue",100,true],
    ["U_C_Poloshirt_burgundy",100,true],
    ["U_C_Poloshirt_redwhite",100,true],
    ["U_C_Poloshirt_salmon",100,true],
    ["U_C_Poloshirt_stripped",100,true],
    ["U_C_Poloshirt_tricolour",100,true],
    ["U_Competitor",100,true],
    ["U_C_ConstructionCoverall_Black_F",100,true],
    ["U_C_ConstructionCoverall_Blue_F",100,true],
    ["U_C_ConstructionCoverall_Red_F",100,true],
    ["U_C_ConstructionCoverall_Vrana_F",100,true],
    ["U_B_CTRG_1",100,true],
    ["U_B_CTRG_3",100,true],
    ["U_B_CTRG_2",100,true],
    ["U_B_CTRG_Soldier_3_F",100,true],
    ["U_B_CTRG_Soldier_2_F",100,true],
    ["U_B_CTRG_Soldier_urb_1_F",100,true],
    ["U_B_CTRG_Soldier_F",100,true],
    ["U_B_CTRG_Soldier_urb_3_F",100,true],
    ["U_I_L_Uniform_01_camo_F",100,true],
    ["U_I_L_Uniform_01_deserter_F",100,true],
    ["rhssaf_uniform_mig29_pilot",100,true],
    ["rhs_uniform_df15",100,true],
    ["LOP_U_IRAN_Fatigue_DF15",100,true],
    ["rhs_uniform_df15_tan",100,true],
    ["LOP_U_UKR_Fatigue_DF15",100,true],
    ["U_C_Driver_1_black",100,true],
    ["U_B_CTRG_Soldier_urb_2_F",100,true],
    ["U_C_Driver_2",100,true],
    ["U_C_Driver_1",100,true],
    ["U_C_Driver_1_green",100,true],
    ["U_C_Driver_1_blue",100,true],
    ["U_C_Driver_1_orange",100,true],
    ["U_C_Driver_1_red",100,true],
    ["U_C_Driver_3",100,true],
    ["U_C_Driver_4",100,true],
    ["U_C_Driver_1_white",100,true],
    ["U_C_Driver_1_yellow",100,true],
    ["rhs_uniform_emr_des_patchless",100,true],
    ["rhs_uniform_vdv_emr_des",100,true],
    ["rhs_uniform_emr_patchless",100,true],
    ["rhs_uniform_msv_emr",100,true],
    ["rhs_uniform_vdv_emr",100,true],
    ["U_C_Uniform_Farmer_01_F",100,true],
    ["U_O_T_Soldier_F",100,true],
    ["U_O_CombatUniform_ocamo",100,true],
    ["U_O_CombatUniform_oucamo",100,true],
    ["rhs_uniform_flora_patchless",100,true],
    ["rhs_uniform_flora_patchless_alt",100,true],
    ["rhs_uniform_flora",100,true],
    ["rhs_uniform_rva_flora",100,true],
    ["rhs_uniform_vdv_flora",100,true],
    ["rhs_uniform_vmf_flora",100,true],
    ["rhs_uniform_vmf_flora_subdued",100,true],
    ["rhs_uniform_FROG01_d",100,true],
    ["rhs_uniform_FROG01_wd",100,true],
    ["U_I_FullGhillie_ard",100,true],
    ["U_O_FullGhillie_ard",100,true],
    ["U_B_FullGhillie_ard",100,true],
    ["U_O_T_FullGhillie_tna_F",100,true],
    ["U_B_T_FullGhillie_tna_F",100,true],
    ["U_I_FullGhillie_lsh",100,true],
    ["U_O_FullGhillie_lsh",100,true],
    ["U_B_FullGhillie_lsh",100,true],
    ["U_I_FullGhillie_sard",100,true],
    ["U_O_FullGhillie_sard",100,true],
    ["U_B_FullGhillie_sard",100,true],
    ["rhs_uniform_g3_aor2",100,true],
    ["LOP_U_IA_Fatigue_SF_01",100,true],
    ["rhs_uniform_g3_m81",100,true],
    ["rhs_uniform_g3_mc",100,true],
    ["rhs_uniform_g3_tan",100,true],
    ["U_B_GEN_Commander_F",100,true],
    ["rhs_uniform_g3_rgr",100,true],
    ["rhs_uniform_g3_blk",100,true],
    ["U_B_GEN_Soldier_F",100,true],
    ["U_O_T_Sniper_F",100,true],
    ["U_B_T_Sniper_F",100,true],
    ["U_I_GhillieSuit",100,true],
    ["U_O_GhillieSuit",100,true],
    ["U_B_GhillieSuit",100,true],
    ["rhs_uniform_gorka_1_a",100,true],
    ["rhs_uniform_gorka_1_b",100,true],
    ["rhsgref_uniform_gorka_1_f",100,true],
    ["LOP_U_US_Fatigue_14",100,true],
    ["LOP_U_IRA_Fatigue_GRK_BLK",100,true],
    ["LOP_U_IRA_Fatigue_GRK_BLUE",100,true],
    ["LOP_U_IRA_Fatigue_GRK_DPM",100,true],
    ["rhs_uniform_gorka_r_g",100,true],
    ["LOP_U_US_Fatigue_13",100,true],
    ["LOP_U_IRA_Fatigue_GRK_OLV",100,true],
    ["rhs_uniform_gorka_r_y",100,true],
    ["U_O_R_Gorka_01_F",100,true],
    ["U_O_R_Gorka_01_brown_F",100,true],
    ["U_O_R_Gorka_01_camo_F",100,true],
    ["U_BG_Guerrilla_6_1",100,true],
    ["LOP_U_ISTS_Fatigue_22",100,true],
    ["LOP_U_BH_Fatigue_CHOCO_TRI",100,true],
    ["LOP_U_BH_Fatigue_CHOCO_ACU",100,true],
    ["LOP_U_BH_Fatigue_CHOCO_FWDL",100,true],
    ["LOP_U_BH_Fatigue_CHOCO_LIZ",100,true],
    ["LOP_U_BH_Fatigue_CHOCO_M81",100,true],
    ["LOP_U_BH_Fatigue_CHOCO",100,true],
    ["LOP_U_BH_Fatigue_ACU_TRI",100,true],
    ["LOP_U_BH_Fatigue_ACU_CHOCO",100,true],
    ["LOP_U_BH_Fatigue_ACU_FWDL",100,true],
    ["LOP_U_BH_Fatigue_ACU_LIZ",100,true],
    ["LOP_U_BH_Fatigue_ACU_M81",100,true],
    ["LOP_U_BH_Fatigue_ACU",100,true],
    ["LOP_U_BH_Fatigue_FWDL_TRI",100,true],
    ["LOP_U_UVF_Fatigue_BL",100,true],
    ["LOP_U_BH_Fatigue_FWDL_CHOCO",100,true],
    ["LOP_U_BH_Fatigue_FWDL_ACU",100,true],
    ["LOP_U_BH_Fatigue_FWDL_LIZ",100,true],
    ["LOP_U_BH_Fatigue_FWDL_M81",100,true],
    ["LOP_U_BH_Fatigue_GUE_FWDL",100,true],
    ["LOP_U_BH_Fatigue_FWDL",100,true],
    ["LOP_U_IRA_Fatigue_DPM",100,true],
    ["LOP_U_UVF_Fatigue_GREY_GSW",100,true],
    ["LOP_U_IRA_Fatigue_HTR_BLK",100,true],
    ["LOP_U_IRA_Fatigue_HTR_DPM_J",100,true],
    ["LOP_U_IRA_Fatigue_HTR_DPM",100,true],
    ["LOP_U_BH_Fatigue_M81_TRI",100,true],
    ["LOP_U_ISTS_Fatigue_23",100,true],
    ["LOP_U_BH_Fatigue_M81_CHOCO",100,true],
    ["LOP_U_BH_Fatigue_M81_ACU",100,true],
    ["LOP_U_BH_Fatigue_M81_FWDL",100,true],
    ["LOP_U_BH_Fatigue_M81_LIZ",100,true],
    ["LOP_U_ISTS_Fatigue_11",100,true],
    ["LOP_U_ISTS_Fatigue_true",100,true],
    ["LOP_U_ISTS_Fatigue_16",100,true],
    ["LOP_U_ISTS_Fatigue_08",100,true],
    ["LOP_U_ISTS_Fatigue_18",100,true],
    ["LOP_U_BH_Fatigue_M81",100,true],
    ["LOP_U_ISTS_Fatigue_10",100,true],
    ["LOP_U_ISTS_Fatigue_06",100,true],
    ["LOP_U_ISTS_Fatigue_26",100,true],
    ["LOP_U_ISTS_Fatigue_19",100,true],
    ["LOP_U_UA_Fatigue_01",100,true],
    ["LOP_U_UA_Fatigue_02",100,true],
    ["LOP_U_UA_Fatigue_03",100,true],
    ["LOP_U_UA_Fatigue_04",100,true],
    ["LOP_U_ISTS_Fatigue_25",100,true],
    ["LOP_U_UVF_Fatigue_BL_OSW",100,true],
    ["LOP_U_UVF_Fatigue_COY_OSW",100,true],
    ["LOP_U_BH_Fatigue_GUE_M81_OLV",100,true],
    ["LOP_U_ISTS_Fatigue_13",100,true],
    ["LOP_U_ISTS_Fatigue_28",100,true],
    ["LOP_U_ISTS_Fatigue_17",100,true],
    ["LOP_U_AFR_Fatigue_01",100,true],
    ["LOP_U_AFR_Fatigue_02",100,true],
    ["LOP_U_AFR_Fatigue_03",100,true],
    ["LOP_U_AFR_Fatigue_04",100,true],
    ["LOP_U_AFR_Fatigue_04_slv",100,true],
    ["LOP_U_IRA_Fatigue_DPM_BSW",100,true],
    ["LOP_U_IRA_Fatigue_DPM_GNSW",100,true],
    ["LOP_U_IRA_Fatigue_DPM_GSW",100,true],
    ["LOP_U_IRA_Fatigue_DPM_TSW",100,true],
    ["LOP_U_ISTS_Fatigue_24",100,true],
    ["LOP_U_BH_Fatigue_GUE_TRI_TAN",100,true],
    ["LOP_U_ISTS_Fatigue_12",100,true],
    ["LOP_U_ISTS_Fatigue_27",100,true],
    ["LOP_U_ISTS_Fatigue_21",100,true],
    ["LOP_U_ISTS_Fatigue_15",100,true],
    ["LOP_U_ISTS_Fatigue_09",100,true],
    ["LOP_U_ISTS_Fatigue_05",100,true],
    ["LOP_U_ISTS_Fatigue_14",100,true],
    ["LOP_U_ISTS_Fatigue_07",100,true],
    ["U_BG_Guerilla1_1",100,true],
    ["U_BG_Guerilla1_2_F",100,true],
    ["U_BG_Guerilla2_2",100,true],
    ["U_BG_Guerilla2_3",100,true],
    ["U_BG_Guerilla2_1",100,true],
    ["U_BG_Guerilla3_1",100,true],
    ["U_BG_leader",100,true],
    ["LOP_U_ChDKZ_Fatigue_01",100,true],
    ["LOP_U_ChDKZ_Fatigue_02",100,true],
    ["LOP_U_ChDKZ_Fatigue_03",100,true],
    ["LOP_U_ChDKZ_Fatigue_04",100,true],
    ["LOP_U_ChDKZ_Fatigue_Bardak",100,true],
    ["LOP_U_ChDKZ_Fatigue_Commander",100,true],
    ["LOP_U_ISTS_Fatigue_01",100,true],
    ["LOP_U_ISTS_Fatigue_02",100,true],
    ["LOP_U_ISTS_Fatigue_03",100,true],
    ["LOP_U_ISTS_Fatigue_04",100,true],
    ["LOP_U_NAPA_Fatigue_01",100,true],
    ["LOP_U_NAPA_Fatigue_03",100,true],
    ["LOP_U_NAPA_Fatigue_04",100,true],
    ["LOP_U_AM_Fatigue_01_4",100,true],
    ["LOP_U_NAPA_Fatigue_02",100,true],
    ["LOP_U_AM_Fatigue_01_6",100,true],
    ["LOP_U_AM_Fatigue_01",100,true],
    ["LOP_U_AM_Fatigue_01_5",100,true],
    ["LOP_U_AM_Fatigue_01_2",100,true],
    ["LOP_U_AM_Fatigue_01_3",100,true],
    ["LOP_U_AM_Fatigue_02_3",100,true],
    ["LOP_U_AM_Fatigue_02_5",100,true],
    ["LOP_U_AM_Fatigue_02_6",100,true],
    ["LOP_U_AM_Fatigue_02_4",100,true],
    ["LOP_U_AM_Fatigue_02_2",100,true],
    ["LOP_U_AM_Fatigue_02",100,true],
    ["LOP_U_AM_Fatigue_03_3",100,true],
    ["LOP_U_AM_Fatigue_03_6",100,true],
    ["LOP_U_AM_Fatigue_03_4",100,true],
    ["LOP_U_AM_Fatigue_03_2",100,true],
    ["LOP_U_AM_Fatigue_03_5",100,true],
    ["LOP_U_AM_Fatigue_03",100,true],
    ["LOP_U_AM_Fatigue_04_6",100,true],
    ["LOP_U_AM_Fatigue_04_5",100,true],
    ["LOP_U_AM_Fatigue_04_4",100,true],
    ["LOP_U_AM_Fatigue_04_3",100,true],
    ["LOP_U_AM_Fatigue_04",100,true],
    ["rhsgref_uniform_TLA_1",100,true],
    ["LOP_U_AM_Fatigue_04_2",100,true],
    ["rhsgref_uniform_TLA_2",100,true],
    ["U_I_HeliPilotCoveralls",100,true],
    ["U_I_E_Uniform_01_coveralls_F",100,true],
    ["U_B_HeliPilotCoveralls",100,true],
    ["U_C_HunterBody_grn",100,true],
    ["rhs_uniform_mvd_izlom",100,true],
    ["U_OrestesBody",100,true],
    ["U_C_Journalist",100,true],
    ["U_O_officer_noInsignia_hex_F",100,true],
    ["U_C_E_LooterJacket_01_F",100,true],
    ["U_I_L_Uniform_01_tshirt_black_F",100,true],
    ["U_I_L_Uniform_01_tshirt_olive_F",100,true],
    ["U_I_L_Uniform_01_tshirt_skull_F",100,true],
    ["rhssaf_uniform_m10_digital",100,true],
    ["U_I_L_Uniform_01_tshirt_sport_F",100,true],
    ["rhssaf_uniform_m10_digital_desert",100,true],
    ["rhssaf_uniform_m10_digital_summer",100,true],
    ["rhssaf_uniform_m10_digital_tan_boots",100,true],
    ["rhsgref_uniform_para_ttsko_mountain",100,true],
    ["rhsgref_uniform_para_ttsko_oxblood",100,true],
    ["rhs_uniform_m88_patchless",100,true],
    ["LOP_U_CDF_Fatigue_01",100,true],
    ["LOP_U_UKR_Fatigue_Flec",100,true],
    ["rhsgref_uniform_para_ttsko_urban",100,true],
    ["LOP_U_US_Fatigue_06",100,true],
    ["LOP_U_US_Fatigue_07",100,true],
    ["LOP_U_IRAN_Fatigue_01",100,true],
    ["LOP_U_US_Fatigue_12",100,true],
    ["LOP_U_US_Fatigue_09",100,true],
    ["LOP_U_US_Fatigue_08",100,true],
    ["LOP_U_TKA_Fatigue_02",100,true],
    ["LOP_U_US_Fatigue_03",100,true],
    ["LOP_U_US_Fatigue_02",100,true],
    ["LOP_U_US_Fatigue_11",100,true],
    ["LOP_U_US_Fatigue_04",100,true],
    ["LOP_U_SLA_Fatigue_01",100,true],
    ["LOP_U_US_Fatigue_05",100,true],
    ["LOP_U_US_Fatigue_01",100,true],
    ["LOP_U_US_Fatigue_10",100,true],
    ["LOP_U_TKA_Fatigue_01",100,true],
    ["LOP_U_UKR_Fatigue_TanMTP",100,true],
    ["LOP_U_UKR_Fatigue_Digit",100,true],
    ["LOP_U_UKR_Fatigue_DPMWDPMD",100,true],
    ["LOP_U_UKR_Fatigue_IzlomTTsKO",100,true],
    ["LOP_U_UKR_Fatigue_TTsKO",100,true],
    ["rhsgref_uniform_vsr",100,true],
    ["rhsgref_uniform_ttsko_forest",100,true],
    ["rhsgref_uniform_ttsko_mountain",100,true],
    ["rhsgref_uniform_ttsko_urban",100,true],
    ["rhssaf_uniform_m93_oakleaf",100,true],
    ["rhssaf_uniform_m93_oakleaf_summer",100,true],
    ["LOP_U_BH_Fatigue_OFI_TRI",100,true],
    ["rhsgref_uniform_alpenflage",100,true],
    ["rhsgref_uniform_altis_lizard",100,true],
    ["rhsgref_uniform_3color_desert",100,true],
    ["LOP_U_BH_Fatigue_OFI_LIZ",100,true],
    ["rhsgref_uniform_altis_lizard_olive",100,true],
    ["rhsgref_uniform_dpm",100,true],
    ["LOP_U_BH_Fatigue_OFI_FWDL",100,true],
    ["rhsgref_uniform_dpm_olive",100,true],
    ["rhsgref_uniform_ERDL",100,true],
    ["LOP_U_BH_Fatigue_OFI_M81",100,true],
    ["rhsgref_uniform_flecktarn",100,true],
    ["rhsgref_uniform_flecktarn_full",100,true],
    ["rhsgref_uniform_og107",100,true],
    ["rhsgref_uniform_og107_erdl",100,true],
    ["rhsgref_uniform_olive",100,true],
    ["rhsgref_uniform_tigerstripe",100,true],
    ["rhsgref_uniform_reed",100,true],
    ["LOP_U_BH_Fatigue_OFI_ACU",100,true],
    ["rhsgref_uniform_woodland",100,true],
    ["rhsgref_uniform_woodland_olive",100,true],
    ["U_Marshal",100,true],
    ["U_C_Mechanic_01_F",100,true],
    ["rhs_uniform_mflora_patchless",100,true],
    ["rhs_uniform_vdv_mflora",100,true],
    ["U_O_T_Officer_F",100,true],
    ["U_O_OfficerUniform_ocamo",100,true],
    ["U_C_Paramedic_01_F",100,true],
    ["U_I_C_Soldier_Para_2_F",100,true],
    ["LOP_U_PMC_Fatigue_03",100,true],
    ["LOP_U_PMC_Fatigue_04",100,true],
    ["LOP_U_PMC_Fatigue_01",100,true],
    ["LOP_U_PMC_tac_floral",100,true],
    ["LOP_U_PMC_tac_tacky",100,true],
    ["LOP_U_PMC_tac_blue_hi",100,true],
    ["LOP_U_PMC_tac_red_hi",100,true],
    ["LOP_U_PMC_tac_grn_palm",100,true],
    ["LOP_U_PMC_tac_prp_palm",100,true],
    ["LOP_U_PMC_tac_blue_plaid",100,true],
    ["LOP_U_PMC_tac_grn_plaid",100,true],
    ["LOP_U_PMC_tac_orng_plaid",100,true],
    ["LOP_U_PMC_tac_red_plaid",100,true],
    ["LOP_U_PMC_Fatigue_02",100,true],
    ["U_I_C_Soldier_Para_3_F",100,true],
    ["U_I_C_Soldier_Para_5_F",100,true],
    ["U_I_C_Soldier_Para_4_F",100,true],
    ["U_I_C_Soldier_Para_1_F",100,true],
    ["rhssaf_uniform_heli_pilot",100,true],
    ["U_I_pilotCoveralls",100,true],
    ["U_O_PilotCoveralls",100,true],
    ["U_B_PilotCoveralls",100,true],
    ["LOP_U_ANA_M93_blu",100,true],
    ["LOP_U_AA_Fatigue_03",100,true],
    ["LOP_U_AA_Fatigue_03_slv",100,true],
    ["LOP_U_CHR_Policeman_01",100,true],
    ["LOP_U_IRAQ_M93_pol_digi",100,true],
    ["LOP_U_IRAQ_M93_pol_dpm",100,true],
    ["U_Rangemaster",100,true],
    ["U_O_SpecopsUniform_ocamo",100,true],
    ["U_B_CombatUniform_mcam_vest",100,true],
    ["U_B_T_Soldier_SL_F",100,true],
    ["U_B_CombatUniform_vest_mcam_wdl_f",100,true],
    ["U_C_Scientist",100,true],
    ["U_C_Uniform_Scientist_01_formal_F",100,true],
    ["U_C_Uniform_Scientist_01_F",100,true],
    ["U_C_Uniform_Scientist_02_F",100,true],
    ["U_C_Uniform_Scientist_02_formal_F",100,true],
    ["U_O_V_Soldier_Viper_F",100,true],
    ["U_O_V_Soldier_Viper_hex_F",100,true],
    ["rhsgref_uniform_specter",100,true],
    ["U_C_man_sport_1_F",100,true],
    ["U_C_man_sport_3_F",100,true],
    ["U_C_man_sport_2_F",100,true],
    ["U_C_Man_casual_6_F",100,true],
    ["U_C_Man_casual_4_F",100,true],
    ["U_C_Man_casual_5_F",100,true],
    ["U_B_survival_uniform",100,true],
    ["U_I_C_Soldier_Camo_F",100,true],
    ["tacs_Uniform_TShirt_JP_BS_LP_BB",100,true],
    ["tacs_Uniform_TShirt_JP_BS_TP_BB",100,true],
    ["tacs_Uniform_TShirt_JP_LS_LP_BB",100,true],
    ["tacs_Uniform_TShirt_JP_GS_LP_BB",100,true],
    ["tacs_Uniform_TShirt_JP_GS_TP_BB",100,true],
    ["tacs_Uniform_TShirt_JP_WS_LP_BB",100,true],
    ["tacs_Uniform_Polo_TP_BS_LP_BB_NoLogo",100,true],
    ["tacs_Uniform_Polo_TP_BS_LP_BB",100,true],
    ["tacs_Uniform_Polo_CP_BS_TP_BB_NoLogo",100,true],
    ["tacs_Uniform_Polo_CP_BS_TP_BB",100,true],
    ["tacs_Uniform_Polo_TP_BS_TP_TB_NoLogo",100,true],
    ["tacs_Uniform_Polo_TP_BS_TP_TB",100,true],
    ["tacs_Uniform_Polo_TP_LS_GP_BB_NoLogo",100,true],
    ["tacs_Uniform_Polo_TP_LS_GP_BB",100,true],
    ["tacs_Uniform_Polo_TP_LS_TP_TB_NoLogo",100,true],
    ["tacs_Uniform_Polo_TP_LS_TP_TB",100,true],
    ["tacs_Uniform_Polo_TP_OS_LP_BB_NoLogo",100,true],
    ["tacs_Uniform_Polo_TP_OS_LP_BB",100,true],
    ["tacs_Uniform_Polo_TP_OS_TP_BB_NoLogo",100,true],
    ["tacs_Uniform_Polo_TP_OS_TP_BB",100,true],
    ["tacs_Uniform_Polo_TP_GS_TP_TB_NoLogo",100,true],
    ["tacs_Uniform_Polo_TP_GS_TP_TB",100,true],
    ["tacs_Uniform_Polo_CP_LS_TP_OB",100,true],
    ["tacs_Uniform_Polo_CP_RS_LP_BB",100,true],
    ["tacs_Uniform_Polo_TP_TS_GP_BB_NoLogo",100,true],
    ["tacs_Uniform_Polo_TP_TS_GP_BB",100,true],
    ["tacs_Uniform_Polo_TP_WS_LP_BB_NoLogo",100,true],
    ["tacs_Uniform_Polo_TP_WS_LP_BB",100,true],
    ["tacs_Uniform_Polo_TP_WS_GP_BB_NoLogo",100,true],
    ["tacs_Uniform_Polo_TP_WS_GP_BB",100,true],
    ["tacs_Uniform_Polo_TP_WS_TP_TB_NoLogo",100,true],
    ["tacs_Uniform_Polo_TP_WS_TP_TB",100,true],
    ["U_Tank_green_F",100,true],
    ["U_O_R_Gorka_01_black_F",100,true],
    ["tacs_Suit_VIP",100,true],
    ["U_I_Protagonist_VR",100,true],
    ["U_C_Protagonist_VR",100,true],
    ["U_O_Protagonist_VR",100,true],
    ["U_B_Protagonist_VR",100,true],
    ["U_I_Wetsuit",100,true],
    ["U_O_Wetsuit",100,true],
    ["U_B_Wetsuit",100,true],
    ["U_C_WorkerCoveralls",100,true],
    ["U_C_Poor_1",100,true],
    ["U_I_G_Story_Protagonist_F",100,true],
    ["U_B_CombatUniform_mcam_worn",100,true],
    ["rhs_vydra_3m",100,true],
    ["V_Press_F",100,true],
    ["V_PlateCarrier_Kerry",100,true],
    ["V_I_G_resistanceLeader_F",100,true],
    ["V_TacVest_blk_POLICE",100,true],
    ["V_TacVest_oli",100,true],
    ["V_TacVest_khk",100,true],
    ["rhsgref_TacVest_ERDL",100,true],
    ["tacs_Vest_Tactical_DarkBlack",100,true],
    ["V_TacVest_camo",100,true],
    ["V_TacVest_brn",100,true],
    ["V_TacVest_blk",100,true],
    ["V_TacChestrig_oli_F",100,true],
    ["V_TacChestrig_grn_F",100,true],
    ["V_TacChestrig_cbr_F",100,true],
    ["rhsusf_spcs_ucp",100,true],
    ["rhsusf_spcs_ucp_teamleader",100,true],
    ["rhsusf_spcs_ocp_teamleader",100,true],
    ["rhsusf_spcs_ucp_teamleader_alt",100,true],
    ["rhsusf_spcs_ocp_teamleader_alt",100,true],
    ["rhsusf_spcs_ucp_squadleader",100,true],
    ["rhsusf_spcs_ocp_squadleader",100,true],
    ["rhsusf_spcs_ucp_sniper",100,true],
    ["rhsusf_spcs_ocp_sniper",100,true],
    ["rhsusf_spcs_ucp_saw",100,true],
    ["rhsusf_spcs_ocp_saw",100,true],
    ["rhsusf_spcs_ucp_rifleman",100,true],
    ["rhsusf_spcs_ocp_rifleman",100,true],
    ["rhsusf_spcs_ucp_rifleman_alt",100,true],
    ["rhsusf_spcs_ocp_rifleman_alt",100,true],
    ["rhsusf_spcs_ocp",100,true],
    ["rhsusf_spcs_ucp_medic",100,true],
    ["rhsusf_spcs_ocp_medic",100,true],
    ["rhsusf_spcs_ucp_machinegunner",100,true],
    ["rhsusf_spcs_ocp_machinegunner",100,true],
    ["rhsusf_spcs_ucp_grenadier",100,true],
    ["rhsusf_spcs_ocp_grenadier",100,true],
    ["rhsusf_spcs_ucp_crewman",100,true],
    ["rhsusf_spcs_ocp_crewman",100,true],
    ["rhsusf_spc_teamleader",100,true],
    ["rhsusf_spc_squadleader",100,true],
    ["rhsusf_spc_sniper",100,true],
    ["rhsusf_spc_rifleman",100,true],
    ["rhsusf_spc_patchless_radio",100,true],
    ["rhsusf_spc_patchless",100,true],
    ["rhsusf_spc_marksman",100,true],
    ["rhsusf_spc_mg",100,true],
    ["rhsusf_spc_light",100,true],
    ["rhsusf_spc_iar",100,true],
    ["rhsusf_spc_crewman",100,true],
    ["rhsusf_spc_corpsman",100,true],
    ["rhsusf_spc",100,true],
    ["V_BandollierB_oli",100,true],
    ["V_BandollierB_khk",100,true],
    ["V_BandollierB_rgr",100,true],
    ["V_BandollierB_ghex_F",100,true],
    ["V_BandollierB_cbr",100,true],
    ["V_BandollierB_blk",100,true],
    ["V_Safety_yellow_F",100,true],
    ["V_Safety_orange_F",100,true],
    ["V_Safety_blue_F",100,true],
    ["V_RebreatherB",100,true],
    ["V_RebreatherIR",100,true],
    ["V_RebreatherIA",100,true],
    ["V_TacVestIR_blk",100,true],
    ["V_Rangemaster_belt",100,true],
    ["rhsusf_plateframe_teamleader",100,true],
    ["rhsusf_plateframe_rifleman",100,true],
    ["rhsusf_plateframe_medic",100,true],
    ["rhsusf_plateframe_marksman",100,true],
    ["rhsusf_plateframe_machinegunner",100,true],
    ["rhsusf_plateframe_light",100,true],
    ["rhsusf_plateframe_grenadier",100,true],
    ["rhsusf_plateframe_sapi",100,true],
    ["tacs_Vest_PlateCarrierFull_Green",100,true],
    ["tacs_Vest_PlateCarrierFull_Black",100,true],
    ["tacs_Vest_PlateCarrier_White",100,true],
    ["tacs_Vest_PlateCarrier_MARPAT",100,true],
    ["tacs_Vest_PlateCarrier_Khaki",100,true],
    ["tacs_Vest_PlateCarrier_Green",100,true],
    ["tacs_Vest_PlateCarrier_Coyote",100,true],
    ["tacs_Vest_PlateCarrier_Black",100,true],
    ["rhs_vest_pistol_holster",100,true],
    ["rhssaf_vest_md99_woodland_rifleman_radio",100,true],
    ["rhssaf_vest_md99_woodland_rifleman",100,true],
    ["rhssaf_vest_md99_woodland_radio",100,true],
    ["rhssaf_vest_md99_woodland",100,true],
    ["rhssaf_vest_md99_md2camo_rifleman_radio",100,true],
    ["rhssaf_vest_md99_md2camo_rifleman",100,true],
    ["rhssaf_vest_md99_md2camo_radio",100,true],
    ["rhssaf_vest_md99_md2camo",100,true],
    ["rhssaf_vest_md99_digital_rifleman_radio",100,true],
    ["rhssaf_vest_md99_digital_rifleman",100,true],
    ["rhssaf_vest_md99_digital_radio",100,true],
    ["rhssaf_vest_md99_digital",100,true],
    ["rhssaf_vest_md98_rifleman",100,true],
    ["rhssaf_vest_md98_woodland",100,true],
    ["rhssaf_vest_md98_md2camo",100,true],
    ["rhssaf_vest_md98_digital",100,true],
    ["rhssaf_vest_md12_m70_rifleman",100,true],
    ["rhssaf_vest_md12_digital_desert",100,true],
    ["rhssaf_vest_md12_digital",100,true],
    ["rhsgref_otv_khaki",100,true],
    ["rhsgref_otv_digi",100,true],
    ["rhssaf_vest_otv_md2camo",100,true],
    ["V_Pocketed_olive_F",100,true],
    ["V_Pocketed_coyote_F",100,true],
    ["V_Pocketed_black_F",100,true],
    ["V_CarrierRigKBT_01_Olive_F",100,true],
    ["V_CarrierRigKBT_01_EAF_F",100,true],
    ["V_CarrierRigKBT_01_light_Olive_F",100,true],
    ["V_CarrierRigKBT_01_light_EAF_F",100,true],
    ["V_CarrierRigKBT_01_heavy_Olive_F",100,true],
    ["V_CarrierRigKBT_01_heavy_EAF_F",100,true],
    ["rhsusf_mbav_rifleman",100,true],
    ["rhsusf_mbav_medic",100,true],
    ["rhsusf_mbav_mg",100,true],
    ["rhsusf_mbav_light",100,true],
    ["rhsusf_mbav_grenadier",100,true],
    ["rhsusf_mbav",100,true],
    ["rhs_vest_commander",100,true],
    ["V_LegStrapBag_olive_F",100,true],
    ["V_LegStrapBag_coyote_F",100,true],
    ["V_LegStrapBag_black_F",100,true],
    ["V_HarnessO_gry",100,true],
    ["V_HarnessO_ghex_F",100,true],
    ["V_HarnessO_brn",100,true],
    ["V_HarnessOGL_gry",100,true],
    ["V_HarnessOGL_ghex_F",100,true],
    ["V_HarnessOGL_brn",100,true],
    ["V_SmershVest_01_radio_F",100,true],
    ["V_SmershVest_01_F",100,true],
    ["rhsusf_iotv_ucp",100,true],
    ["rhsusf_iotv_ocp_Teamleader",100,true],
    ["rhsusf_iotv_ucp_Squadleader",100,true],
    ["rhsusf_iotv_ocp_Squadleader",100,true],
    ["rhsusf_iotv_ucp_SAW",100,true],
    ["rhsusf_iotv_ocp_SAW",100,true],
    ["rhsusf_iotv_ucp_Rifleman",100,true],
    ["rhsusf_iotv_ocp_Rifleman",100,true],
    ["rhsusf_iotv_ucp_Repair",100,true],
    ["rhsusf_iotv_ocp_Repair",100,true],
    ["rhsusf_iotv_ucp_Teamleader",100,true],
    ["rhsusf_iotv_ocp",100,true],
    ["rhsusf_iotv_ucp_Medic",100,true],
    ["rhsusf_iotv_ocp_Medic",100,true],
    ["rhsusf_iotv_ucp_Grenadier",100,true],
    ["rhsusf_iotv_ocp_Grenadier",100,true],
    ["V_Plain_medical_F",100,true],
    ["V_Plain_crystal_F",100,true],
    ["tacs_Vest_PlateCarrierHeavy_White",100,true],
    ["tacs_Vest_PlateCarrierHeavy_Green",100,true],
    ["tacs_Vest_PlateCarrierHeavy_Coyote",100,true],
    ["tacs_Vest_PlateCarrierHeavy_Black",100,true],
    ["V_TacVest_gen_F",100,true],
    ["V_PlateCarrierIA2_dgtl",100,true],
    ["V_PlateCarrierIA1_dgtl",100,true],
    ["V_PlateCarrierIAGL_oli",100,true],
    ["V_PlateCarrierIAGL_dgtl",100,true],
    ["V_EOD_olive_F",100,true],
    ["V_EOD_coyote_F",100,true],
    ["V_EOD_IDAP_blue_F",100,true],
    ["V_EOD_blue_F",100,true],
    ["V_DeckCrew_yellow_F",100,true],
    ["V_DeckCrew_white_F",100,true],
    ["V_DeckCrew_violet_F",100,true],
    ["V_DeckCrew_red_F",100,true],
    ["V_DeckCrew_green_F",100,true],
    ["V_DeckCrew_brown_F",100,true],
    ["V_DeckCrew_blue_F",100,true],
    ["V_PlateCarrierH_CTRG",100,true],
    ["V_PlateCarrierL_CTRG",100,true],
    ["rhsgref_chicom_m88",100,true],
    ["rhsgref_chicom",100,true],
    ["V_Chestrig_oli",100,true],
    ["rhsgref_chestrig",100,true],
    ["V_Chestrig_khk",100,true],
    ["V_Chestrig_rgr",100,true],
    ["V_Chestrig_blk",100,true],
    ["V_PlateCarrierSpec_wdl",100,true],
    ["V_PlateCarrierSpec_tna_F",100,true],
    ["V_PlateCarrierSpec_mtp",100,true],
    ["V_PlateCarrierSpec_rgr",100,true],
    ["V_PlateCarrierSpec_blk",100,true],
    ["V_PlateCarrier2_wdl",100,true],
    ["V_PlateCarrier2_tna_F",100,true],
    ["V_PlateCarrier2_rgr_noflag_F",100,true],
    ["V_PlateCarrier2_rgr",100,true],
    ["V_PlateCarrier2_blk",100,true],
    ["V_PlateCarrier1_wdl",100,true],
    ["V_PlateCarrier1_tna_F",100,true],
    ["V_PlateCarrier1_rgr_noflag_F",100,true],
    ["V_PlateCarrier1_rgr",100,true],
    ["V_PlateCarrier1_blk",100,true],
    ["V_PlateCarrierGL_wdl",100,true],
    ["V_PlateCarrierGL_tna_F",100,true],
    ["V_PlateCarrierGL_mtp",100,true],
    ["V_PlateCarrierGL_rgr",100,true],
    ["V_PlateCarrierGL_blk",100,true],
    ["rhsgref_alice_webbing",100,true],
    ["PO_V_SPCS_TUB",100,true],
    ["PO_V_SPCS_TUB_TL",100,true],
    ["PO_V_SPCS_TUB_SL",100,true],
    ["PO_V_SPCS_TUB_SNIP",100,true],
    ["PO_V_SPCS_TUB_RIF",100,true],
    ["PO_V_SPCS_TUB_RIF2",100,true],
    ["PO_V_SPCS_TUB_MED",100,true],
    ["PO_V_SPCS_TUB_MG",100,true],
    ["PO_V_SPCS_TUB_GREN",100,true],
    ["PO_V_SPCS_TUB_CREW",100,true],
    ["LOP_V_CarrierLite_TURK",100,true],
    ["LOP_V_CarrierLite_TAN",100,true],
    ["LOP_V_CarrierLite_ANA",100,true],
    ["LOP_V_CarrierLite_OLV",100,true],
    ["LOP_V_CarrierLite_WDL",100,true],
    ["LOP_V_CarrierLite_LIZ",100,true],
    ["LOP_V_CarrierLite_LIZ_DIGI",100,true],
    ["LOP_V_CarrierLite_BLK",100,true],
    ["LOP_V_CarrierLite_TRI",100,true],
    ["LOP_V_CarrierRig_TAN",100,true],
    ["LOP_V_CarrierRig_ANA",100,true],
    ["LOP_V_CarrierRig_OLV",100,true],
    ["LOP_V_CarrierRig_WDL",100,true],
    ["LOP_V_CarrierRig_BLK",100,true],
    ["LOP_V_CarrierRig_TRI",100,true],
    ["LOP_V_Chestrig_VSR",100,true],
    ["LOP_V_Chestrig_Kamysh",100,true],
    ["LOP_V_Chestrig_Black",100,true],
    ["LOP_V_Carrier_TAN",100,true],
    ["LOP_V_Carrier_ANA",100,true],
    ["LOP_V_Carrier_OLV",100,true],
    ["LOP_V_Carrier_WDL",100,true],
    ["LOP_V_Carrier_BLK",100,true],
    ["LOP_V_6Sh92_OLV",100,true],
    ["LOP_V_6Sh92_WDL",100,true],
    ["LOP_V_6Sh92_CDF",100,true],
    ["LOP_V_6Sh92_Vog_OLV",100,true],
    ["LOP_V_6Sh92_Vog_WDL",100,true],
    ["LOP_V_6Sh92_Radio_OLV",100,true],
    ["LOP_V_6Sh92_Radio_WDL",100,true],
    ["LOP_6sh46",100,true],
    ["LOP_V_6B23_Rifleman_UN",100,true],
    ["LOP_V_6B23_CrewOfficer_UN",100,true],
    ["LOP_V_6B23_6Sh92_UN",100,true],
    ["LOP_V_6B23_UN",100,true],
    ["LOP_V_6B23_sniper",100,true],
    ["LOP_V_6B23_Rifleman_TTKO",100,true],
    ["LOP_V_6B23_Medic_TTKO",100,true],
    ["LOP_V_6B23_CrewOfficer_TTKO",100,true],
    ["LOP_V_6B23_headset_mapcase",100,true],
    ["LOP_V_6B23_6Sh92_TTKO",100,true],
    ["LOP_V_6B23_6Sh92_TTKO_OLV",100,true],
    ["LOP_V_6B23_TTKO",100,true],
    ["LOP_V_6B23_Rifleman_TAN",100,true],
    ["LOP_V_6B23_Medic_TAN",100,true],
    ["LOP_V_6B23_CrewOfficer_TAN",100,true],
    ["LOP_V_6B23_6Sh92_TAN_DMPi",100,true],
    ["LOP_V_6B23_6Sh92_TAN_ACU",100,true],
    ["LOP_V_6B23_TAN",100,true],
    ["LOP_V_6B23_Rifleman_OLV",100,true],
    ["LOP_V_6B23_Medic_OLV",100,true],
    ["LOP_V_6B23_CrewOfficer_OLV",100,true],
    ["LOP_V_6B23_6Sh92_OLV",100,true],
    ["LOP_V_6B23_sniper_M81",100,true],
    ["LOP_V_6B23_OLV",100,true],
    ["LOP_V_6B23_Rifleman_M81",100,true],
    ["LOP_V_6B23_Medic_M81",100,true],
    ["LOP_V_6B23_CrewOfficer_M81",100,true],
    ["LOP_V_6B23_headset_mapcase_M81",100,true],
    ["LOP_V_6B23_6Sh92_M81_OLV",100,true],
    ["LOP_V_6B23_M81",100,true],
    ["LOP_V_6B23_sniper_IDPM",100,true],
    ["LOP_V_6B23_Rifleman_IDPM",100,true],
    ["LOP_V_6B23_Medic_IDPM",100,true],
    ["LOP_V_6B23_CrewOfficer_IDPM",100,true],
    ["LOP_V_6B23_headset_mapcase_IDPM",100,true],
    ["LOP_V_6B23_6Sh92_IDPM_OLV",100,true],
    ["LOP_V_6B23_IDPM",100,true],
    ["LOP_V_6B23_Rifleman_CDF",100,true],
    ["LOP_V_6B23_Medic_CDF",100,true],
    ["LOP_V_6B23_CrewOfficer_CDF",100,true],
    ["LOP_V_6B23_6Sh92_CDF",100,true],
    ["LOP_V_6B23_CDF",100,true],
    ["rhs_6sh92_vsr_vog_headset",100,true],
    ["rhs_6sh92_vsr_vog",100,true],
    ["rhs_6sh92_vsr_radio",100,true],
    ["rhs_6sh92_vsr_headset",100,true],
    ["rhs_6sh92_vsr",100,true],
    ["rhs_6sh92_digi_vog_headset",100,true],
    ["rhs_6sh92_digi_vog",100,true],
    ["rhs_6sh92_digi_radio",100,true],
    ["rhs_6sh92_digi_headset",100,true],
    ["rhs_6sh92_digi",100,true],
    ["rhs_6sh92_vog_headset",100,true],
    ["rhs_6sh92_vog",100,true],
    ["rhs_6sh92_radio",100,true],
    ["rhs_6sh92_headset",100,true],
    ["rhs_6sh92",100,true],
    ["rhs_6sh46",100,true],
    ["rhs_6b5_sniper_vsr",100,true],
    ["rhs_6b5_officer_vsr",100,true],
    ["rhs_6b5_medic_vsr",100,true],
    ["rhs_6b5_rifleman_vsr",100,true],
    ["rhs_6b5_vsr",100,true],
    ["rhs_6b5_sniper_ttsko",100,true],
    ["rhs_6b5_officer_ttsko",100,true],
    ["rhs_6b5_medic_ttsko",100,true],
    ["rhs_6b5_rifleman_ttsko",100,true],
    ["rhs_6b5_ttsko",100,true],
    ["rhs_6b5_sniper",100,true],
    ["rhs_6b5_officer",100,true],
    ["rhs_6b5_medic",100,true],
    ["rhs_6b5_rifleman",100,true],
    ["rhs_6b5",100,true],
    ["rhs_6b5_sniper_khaki",100,true],
    ["rhs_6b5_officer_khaki",100,true],
    ["rhs_6b5_medic_khaki",100,true],
    ["rhs_6b5_rifleman_khaki",100,true],
    ["rhs_6b5_khaki",100,true],
    ["rhs_6b43",100,true],
    ["rhsgref_6b23_ttsko_mountain",100,true],
    ["rhsgref_6b23_ttsko_mountain_rifleman",100,true],
    ["rhsgref_6b23_ttsko_mountain_officer",100,true],
    ["rhsgref_6b23_ttsko_mountain_nco",100,true],
    ["rhsgref_6b23_ttsko_mountain_medic",100,true],
    ["rhsgref_6b23_ttsko_mountain_sniper",100,true],
    ["rhsgref_6b23_ttsko_forest",100,true],
    ["rhsgref_6b23_ttsko_forest_rifleman",100,true],
    ["rhsgref_6b23_ttsko_digi",100,true],
    ["rhsgref_6b23_ttsko_digi_sniper",100,true],
    ["rhsgref_6b23_ttsko_digi_rifleman",100,true],
    ["rhsgref_6b23_ttsko_digi_officer",100,true],
    ["rhsgref_6b23_ttsko_digi_nco",100,true],
    ["rhsgref_6b23_ttsko_digi_medic",100,true],
    ["rhs_6b23_ML_vydra_3m",100,true],
    ["rhs_6b23_ML_sniper",100,true],
    ["rhs_6b23_ML_rifleman",100,true],
    ["rhs_6b23_ML_medic",100,true],
    ["rhs_6b23_ML_engineer",100,true],
    ["rhs_6b23_ML_crew",100,true],
    ["rhs_6b23_ML_crewofficer",100,true],
    ["rhs_6b23_ML_6sh92_vog_headset",100,true],
    ["rhs_6b23_ML_6sh92_vog",100,true],
    ["rhs_6b23_ML_6sh92_radio",100,true],
    ["rhs_6b23_ML_6sh92_headset_mapcase",100,true],
    ["rhs_6b23_ML_6sh92_headset",100,true],
    ["rhs_6b23_ML_6sh92",100,true],
    ["rhs_6b23_ML",100,true],
    ["rhsgref_6b23_khaki",100,true],
    ["rhsgref_6b23_khaki_sniper",100,true],
    ["rhsgref_6b23_khaki_rifleman",100,true],
    ["rhsgref_6b23_khaki_officer",100,true],
    ["rhsgref_6b23_khaki_nco",100,true],
    ["rhsgref_6b23_khaki_medic",100,true],
    ["rhs_6b23_6sh116_vog_flora",100,true],
    ["rhs_6b23_6sh116_flora",100,true],
    ["rhs_6b23_digi_vydra_3m",100,true],
    ["rhs_6b23_digi_sniper",100,true],
    ["rhs_6b23_digi_rifleman",100,true],
    ["rhs_6b23_digi_medic",100,true],
    ["rhs_6b23_digi_engineer",100,true],
    ["rhs_6b23_digi_crew",100,true],
    ["rhs_6b23_digi_crewofficer",100,true],
    ["rhs_6b23_digi_6sh92_Vog_Radio_Spetsnaz",100,true],
    ["rhs_6b23_digi_6sh92_vog_headset",100,true],
    ["rhs_6b23_digi_6sh92_Vog_Spetsnaz",100,true],
    ["rhs_6b23_digi_6sh92_vog",100,true],
    ["rhs_6b23_digi_6sh92_Spetsnaz",100,true],
    ["rhs_6b23_digi_6sh92_radio",100,true],
    ["rhs_6b23_digi_6sh92_headset_mapcase",100,true],
    ["rhs_6b23_digi_6sh92_headset_spetsnaz",100,true],
    ["rhs_6b23_digi_6sh92_headset",100,true],
    ["rhs_6b23_digi_6sh92_spetsnaz2",100,true],
    ["rhs_6b23_digi_6sh92",100,true],
    ["rhs_6b23_6sh116_vog",100,true],
    ["rhs_6b23_6sh116",100,true],
    ["rhs_6b23_digi",100,true],
    ["rhs_6b23_vydra_3m",100,true],
    ["rhs_6b23_sniper",100,true],
    ["rhs_6b23_rifleman",100,true],
    ["rhs_6b23_medic",100,true],
    ["rhs_6b23_engineer",100,true],
    ["rhs_6b23_crew",100,true],
    ["rhs_6b23_crewofficer",100,true],
    ["rhs_6b23_6sh92_vog_headset",100,true],
    ["rhs_6b23_6sh92_vog",100,true],
    ["rhs_6b23_6sh92_radio",100,true],
    ["rhs_6b23_6sh92_headset_mapcase",100,true],
    ["rhs_6b23_6sh92_headset",100,true],
    ["rhs_6b23_6sh92",100,true],
    ["rhs_6b23_6sh116_vog_od",100,true],
    ["rhs_6b23_6sh116_od",100,true],
    ["rhs_6b23",100,true],
    ["rhs_6b13_crewofficer",100,true],
    ["rhs_6b13_6sh92_vog",100,true],
    ["rhs_6b13_6sh92_radio",100,true],
    ["rhs_6b13_6sh92_headset_mapcase",100,true],
    ["rhs_6b13_6sh92",100,true],
    ["rhs_6b13",100,true],
    ["rhs_6b13_EMR",100,true],
    ["rhs_6b13_EMR_6sh92_headset_mapcase",100,true],
    ["rhs_6b13_EMR_6sh92_vog",100,true],
    ["rhs_6b13_EMR_6sh92_radio",100,true],
    ["rhs_6b13_EMR_6sh92",100,true],
    ["rhs_6b13_Flora_crewofficer",100,true],
    ["rhs_6b13_Flora_6sh92_vog",100,true],
    ["rhs_6b13_Flora_6sh92_radio",100,true],
    ["rhs_6b13_Flora_6sh92_headset_mapcase",100,true],
    ["rhs_6b13_Flora_6sh92",100,true],
    ["rhs_6b13_Flora",100,true],
    ["rhsusf_bino_leopold_mk4",100,true],
    ["rhssaf_zrak_rd7j",100,true],
    ["ACE_Yardage450",100,true],
    ["rhsusf_bino_lrf_Vector21",100,true],
    ["ACE_Vector",100,true],
    ["ACE_VectorDay",100,true],
    ["rhs_tr8_periscope_pip",100,true],
    ["rhs_tr8_periscope",100,true],
    ["ace_dragon_sight",100,true],
    ["Rangefinder",100,true],
    ["rhs_pdu4",100,true],
    ["ACE_MX2A",100,true],
    ["rhsusf_bino_m24_ARD",100,true],
    ["rhsusf_bino_m24",100,true],
    ["rhsusf_bino_lerca_1true0_tan",100,true],
    ["rhsusf_bino_lerca_1true0_black",100,true],
    ["Laserdesignator",100,true],
    ["Laserdesignator_03",100,true],
    ["Laserdesignator_01_khk_F",100,true],
    ["Laserdesignator_02",100,true],
    ["Laserdesignator_02_ghex_F",100,true],
    ["Binocular",100,true],
    ["rhssaf_alice_md2camo",100,true],
    ["rhssaf_alice_smb",100,true],
    ["rhsgref_hidf_alicepack",100,true],
    ["rhsgref_ttsko_alicepack",100,true],
    ["rhsgref_wdl_alicepack",100,true],
    ["B_AssaultPack_blk",100,true],
    ["B_AssaultPack_cbr",100,true],
    ["B_AssaultPack_dgtl",100,true],
    ["B_AssaultPack_eaf_F",100,true],
    ["B_AssaultPack_rgr",100,true],
    ["B_AssaultPack_ocamo",100,true],
    ["B_AssaultPack_khk",100,true],
    ["B_AssaultPack_mcamo",100,true],
    ["B_AssaultPack_sgg",100,true],
    ["B_AssaultPack_tna_F",100,true],
    ["B_AssaultPack_wdl_F",100,true],
    ["tacs_Backpack_AssaultExpanded_Black",100,true],
    ["tacs_Backpack_AssaultExpanded_Green",100,true],
    ["tacs_Backpack_AssaultExpanded_Tan",100,true],
    ["tacs_Backpack_AssaultExpanded_White",100,true],
    ["B_Bergen_dgtl_F",100,true],
    ["B_Bergen_hex_F",100,true],
    ["B_Bergen_mcamo_F",100,true],
    ["B_Bergen_tna_F",100,true],
    ["B_Respawn_Sleeping_bag_blue_F",100,true],
    ["B_Respawn_Sleeping_bag_brown_F",100,true],
    ["B_Respawn_TentDome_F",100,true],
    ["B_Patrol_Respawn_bag_F",100,true],
    ["B_Respawn_Sleeping_bag_F",100,true],
    ["B_Respawn_TentA_F",100,true],
    ["B_Carryall_cbr",100,true],
    ["tacs_Backpack_Carryall_DarkBlack",100,true],
    ["B_Carryall_eaf_F",100,true],
    ["B_Carryall_ghex_F",100,true],
    ["B_Carryall_green_F",100,true],
    ["B_Carryall_ocamo",100,true],
    ["B_Carryall_khk",100,true],
    ["B_Carryall_mcamo",100,true],
    ["B_Carryall_oli",100,true],
    ["B_Carryall_taiga_F",100,true],
    ["LOP_B_CA_EOD_tub",100,true],
    ["B_Carryall_oucamo",100,true],
    ["B_Carryall_wdl_F",100,true],
    ["B_CombinationUnitRespirator_01_F",100,true],
    ["rhs_d6_Parachute_backpack",100,true],
    ["I_GMG_01_A_weapon_F",100,true],
    ["O_GMG_01_A_weapon_F",100,true],
    ["I_E_GMG_01_A_Weapon_F",100,true],
    ["B_GMG_01_A_weapon_F",100,true],
    ["I_HMG_01_A_weapon_F",100,true],
    ["O_HMG_01_A_weapon_F",100,true],
    ["I_E_HMG_01_A_Weapon_F",100,true],
    ["B_HMG_01_A_weapon_F",100,true],
    ["I_HMG_02_high_weapon_F",100,true],
    ["I_G_HMG_02_high_weapon_F",100,true],
    ["I_E_HMG_02_high_weapon_F",100,true],
    ["I_C_HMG_02_high_weapon_F",100,true],
    ["I_HMG_02_weapon_F",100,true],
    ["I_G_HMG_02_weapon_F",100,true],
    ["I_E_HMG_02_weapon_F",100,true],
    ["I_C_HMG_02_weapon_F",100,true],
    ["I_HMG_01_high_weapon_F",100,true],
    ["O_HMG_01_high_weapon_F",100,true],
    ["I_E_HMG_01_high_Weapon_F",100,true],
    ["B_HMG_01_high_weapon_F",100,true],
    ["I_HMG_01_weapon_F",100,true],
    ["O_HMG_01_weapon_F",100,true],
    ["I_E_HMG_01_Weapon_F",100,true],
    ["B_HMG_01_weapon_F",100,true],
    ["I_GMG_01_high_weapon_F",100,true],
    ["O_GMG_01_high_weapon_F",100,true],
    ["I_E_GMG_01_high_Weapon_F",100,true],
    ["B_GMG_01_high_weapon_F",100,true],
    ["I_GMG_01_weapon_F",100,true],
    ["O_GMG_01_weapon_F",100,true],
    ["I_E_GMG_01_Weapon_F",100,true],
    ["B_GMG_01_weapon_F",100,true],
    ["rhsusf_assault_eagleaiii_coy",100,true],
    ["B_rhsusf_B_BACKPACK",100,true],
    ["rhsusf_assault_eagleaiii_ocp",100,true],
    ["rhsusf_assault_eagleaiii_ucp",100,true],
    ["rhsusf_falconii_coy",100,true],
    ["rhsusf_falconii_mc",100,true],
    ["LOP_PESH_FalconII_SVD",100,true],
    ["LOP_ISTS_FalconII_SVD",100,true],
    ["LOP_IA_FalconII_SVD",100,true],
    ["LOP_PMC_FalconII_MK14",100,true],
    ["LOP_AA_FalconII_SVD",100,true],
    ["LOP_AFR_FalconII_SVD",100,true],
    ["rhsusf_falconii",100,true],
    ["B_FieldPack_blk",100,true],
    ["B_FieldPack_cbr",100,true],
    ["B_FieldPack_ghex_F",100,true],
    ["B_FieldPack_green_F",100,true],
    ["B_FieldPack_ocamo",100,true],
    ["B_FieldPack_khk",100,true],
    ["B_FieldPack_oli",100,true],
    ["B_FieldPack_taiga_F",100,true],
    ["LOP_B_FP_MG42_tub",100,true],
    ["LOP_B_KB_Med_tub",100,true],
    ["B_FieldPack_oucamo",100,true],
    ["rhssaf_kitbag_digital",100,true],
    ["rhssaf_kitbag_md2camo",100,true],
    ["rhssaf_kitbag_smb",100,true],
    ["B_Kitbag_cbr",100,true],
    ["tacs_Backpack_Kitbag_DarkBlack",100,true],
    ["B_Kitbag_rgr",100,true],
    ["B_Kitbag_mcamo",100,true],
    ["tacs_Backpack_Kitbag_RGR",100,true],
    ["B_Kitbag_sgg",100,true],
    ["B_Kitbag_tan",100,true],
    ["tacs_Backpack_Kitbag_White",100,true],
    ["tacs_Backpack_Kitbag_Medic_Black",100,true],
    ["tacs_Backpack_Kitbag_Medic_Coyote",100,true],
    ["tacs_Backpack_Kitbag_Medic_Digital",100,true],
    ["tacs_Backpack_Kitbag_Medic_Green",100,true],
    ["tacs_Backpack_Kitbag_Medic_MTP",100,true],
    ["tacs_Backpack_Kitbag_Medic_RGR",100,true],
    ["tacs_Backpack_Kitbag_Medic_Sage",100,true],
    ["tacs_Backpack_Kitbag_Medic_Tan",100,true],
    ["tacs_Backpack_Kitbag_Medic_White",100,true],
    ["B_LegStrapBag_black_F",100,true],
    ["B_LegStrapBag_coyote_F",100,true],
    ["B_LegStrapBag_olive_F",100,true],
    ["rhs_medic_bag",100,true],
    ["B_Messenger_Black_F",100,true],
    ["B_Messenger_Coyote_F",100,true],
    ["B_Messenger_Gray_F",100,true],
    ["B_Messenger_Olive_F",100,true],
    ["B_Messenger_IDAP_F",100,true],
    ["ACE_NonSteerableParachute",100,true],
    ["B_RadioBag_01_black_F",100,true],
    ["B_RadioBag_01_digi_F",100,true],
    ["B_RadioBag_01_eaf_F",100,true],
    ["B_RadioBag_01_ghex_F",100,true],
    ["B_RadioBag_01_hex_F",100,true],
    ["B_RadioBag_01_mtp_F",100,true],
    ["B_RadioBag_01_tropic_F",100,true],
    ["B_RadioBag_01_oucamo_F",100,true],
    ["B_RadioBag_01_wdl_F",100,true],
    ["B_W_Static_Designator_01_weapon_F",100,true],
    ["B_SCBA_01_F",100,true],
    ["LOP_AM_FalconII_Enfield",100,true],
    ["LOP_US_Sidor_SVD",100,true],
    ["rhs_sidor",100,true],
    ["rhsusf_eject_Parachute_backpack",100,true],
    ["B_Parachute",100,true],
    ["B_TacticalPack_blk",100,true],
    ["B_TacticalPack_rgr",100,true],
    ["B_TacticalPack_ocamo",100,true],
    ["B_TacticalPack_mcamo",100,true],
    ["B_TacticalPack_oli",100,true],
    ["ACE_TacticalLadder_Pack",100,true],
    ["I_UAV_06_backpack_F",100,true],
    ["O_UAV_06_backpack_F",100,true],
    ["I_E_UAV_06_backpack_F",100,true],
    ["B_UAV_06_backpack_F",100,true],
    ["I_UAV_06_medical_backpack_F",100,true],
    ["O_UAV_06_medical_backpack_F",100,true],
    ["C_IDAP_UAV_06_medical_backpack_F",100,true],
    ["I_E_UAV_06_medical_backpack_F",100,true],
    ["B_UAV_06_medical_backpack_F",100,true],
    ["I_UAV_01_backpack_F",100,true],
    ["O_UAV_01_backpack_F",100,true],
    ["I_E_UAV_01_backpack_F",100,true],
    ["B_UAV_01_backpack_F",100,true],
    ["C_IDAP_UAV_06_antimine_backpack_F",100,true],
    ["C_UAV_06_backpack_F",100,true],
    ["C_IDAP_UAV_06_backpack_F",100,true],
    ["C_UAV_06_medical_backpack_F",100,true],
    ["C_IDAP_UAV_01_backpack_F",100,true],
    ["C_IDAP_UGV_02_Demining_backpack_F",100,true],
    ["I_UGV_02_Demining_backpack_F",100,true],
    ["O_UGV_02_Demining_backpack_F",100,true],
    ["I_E_UGV_02_Demining_backpack_F",100,true],
    ["B_UGV_02_Demining_backpack_F",100,true],
    ["I_UGV_02_Science_backpack_F",100,true],
    ["O_UGV_02_Science_backpack_F",100,true],
    ["I_E_UGV_02_Science_backpack_F",100,true],
    ["B_UGV_02_Science_backpack_F",100,true],
    ["rhs_assault_umbts",100,true],
    ["rhs_assault_umbts_engineer_empty",100,true],
    ["B_ViperHarness_blk_F",100,true],
    ["B_AssaultPack_Kerry",100,true],
    ["B_ViperHarness_ghex_F",100,true],
    ["B_ViperHarness_hex_F",100,true],
    ["B_ViperHarness_khk_F",100,true],
    ["B_ViperHarness_oli_F",100,true],
    ["B_ViperLightHarness_blk_F",100,true],
    ["B_ViperLightHarness_ghex_F",100,true],
    ["B_ViperLightHarness_hex_F",100,true],
    ["B_ViperLightHarness_khk_F",100,true],
    ["B_ViperLightHarness_oli_F",100,true],
    ["NVGoggles_OPFOR",100,true],
    ["NVGoggles",100,true],
    ["NVGoggles_INDEP",100,true],
    ["NVGoggles_tna_F",100,true],
    ["Face_Bandana_Beast",100,true],
    ["Face_Bandana_Coy",100,true],
    ["Face_Bandana_Ghost",100,true],
    ["Face_Bandana_MC",100,true],
    ["Face_Bandana_Raider",100,true],
    ["Face_Bandana_RGR",100,true],
    ["Face_Bandana_Skull",100,true],
    ["rhs_1PN138",100,true],
    ["rhsusf_ANPVS_14",100,true],
    ["rhsusf_ANPVS_15",100,true],
    ["ItemCompass",100,true],
    ["ItemWatch",100,true],
    ["ACE_Altimeter",100,true],
    ["ItemGPS",100,true],
    ["B_UavTerminal",100,true],
    ["ItemCompass",100,true],
    ["ItemWatch",100,true],
    ["ACE_Altimeter",100,true],
    ["ItemGPS",100,true],
    ["B_UavTerminal",100,true],
    ["ACE_wirecutter",100,true],
    ["ACRE_VHF30108MAST",100,true],
    ["ACRE_VHF30108",100,true],
    ["ACRE_VHF30108SPIKE",100,true],
    ["ToolKit",100,true],
    ["ACE_Tripod",100,true],
    ["ACE_SpraypaintRed",100,true],
    ["ACE_SpraypaintGreen",100,true],
    ["ACE_SpraypaintBlue",100,true],
    ["ACE_UAVBattery",100,true],
    ["ACE_SpraypaintBlack",100,true],
    ["ACE_SpottingScope",100,true],
    ["ACRE_SEM70",100,true],
    ["ACRE_SEM52SL",100,true],
    ["ACE_Sandbag_empty",100,true],
    ["ACE_RangeCard",100,true],
    ["MineDetector",100,true],
    ["ACE_microDAGR",100,true],
    ["Medikit",100,true],
    ["ACE_MapTools",100,true],
    ["ACE_Flashlight_XL50",100,true],
    ["ACE_Clacker",100,true],
    ["ACE_M26_Clacker",100,true],
    ["ACE_Flashlight_KSF1",100,true],
    ["ACE_Kestrel4500",100,true],
    ["ACE_IR_Strobe_Item",100,true],
    ["ACE_HuntIR_monitor",100,true],
    ["ACE_Flashlight_MX991",100,true],
    ["FirstAidKit",100,true],
    ["ACE_EntrenchingTool",100,true],
    ["ACE_EarPlugs",100,true],
    ["ACE_DefusalKit",100,true],
    ["ACE_DeadManSwitch",100,true],
    ["ACE_DAGR",100,true],
    ["ACE_Chemlight_Shield",100,true],
    ["ACE_Cellphone",100,true],
    ["ACE_CableTie",100,true],
    ["ACE_Banana",100,true],
    ["ACE_ATragMX",100,true],
    ["ACE_artilleryTable",100,true],
    ["ACRE_PRC77",100,true],
    ["ACRE_PRC343",100,true],
    ["ACRE_PRC152",100,true],
    ["ACRE_PRC148",100,true],
    ["ACRE_PRC117F",100,true],
    ["ACE_RangeTable_82mm",100,true]
]] call TER_fnc_addShopCargo;

 

Any ideas or help would be great!

Share this post


Link to post
Share on other sites

You are going to experience massive lag with such a huge list every time the shop opens.  As far as your error... Comment out half of the list and see if the error happens. If not then uncomment half the list again until you find where the error is probably some kind of typo like a missing comma somewhere or even a quote mark.

Share this post


Link to post
Share on other sites

Hey 7erra. Is it possible to access the store without adding a real trader? Like in A3Wasteland you can access the gun store with [] call loadGunStore; 

Share this post


Link to post
Share on other sites

I didn't understand this part:

Execute the addShop function: [this] call TER_fnc_addShop
Add an inventory with the addShopCargo function: [this, ["itemclass0", 15, 5, ..., "itemClassN", price, amount]] call TER_fnc_addShopCargo
For easier setup of this cost table I have created a mod that does this task with a user interface: https://steamcommunity.com/sharedfiles/filedetails/?id=1760193128. The settings can be changed by opening the object's attribute window and scrolling down to the "VASS" section.

Share this post


Link to post
Share on other sites
On 8/23/2021 at 5:13 PM, Tory Xiao said:

Hey 7erra. Is it possible to access the store without adding a real trader? Like in A3Wasteland you can access the gun store with [] call loadGunStore; 

Hmm with a bit of work it should be possible. The shop is tied to the object which is saved as the variable TER_VASS_shopObject, see https://github.com/7erra/VASS-Virtual-Arsenal-Shop-System/blob/master/VASS/fnc/fn_addShop.sqf#L27 . So you could modify the function and replace this line with another object (eg. an invisible object) which holds the actual inventory added with https://github.com/7erra/VASS-Virtual-Arsenal-Shop-System/blob/master/VASS/fnc/fn_addShopCargo.sqf

 

On 8/29/2021 at 4:29 PM, W.O.D.LordHelll said:

I didn't understand this part:

Execute the addShop function: [this] call TER_fnc_addShop
Add an inventory with the addShopCargo function: [this, ["itemclass0", 15, 5, ..., "itemClassN", price, amount]] call TER_fnc_addShopCargo
For easier setup of this cost table I have created a mod that does this task with a user interface: https://steamcommunity.com/sharedfiles/filedetails/?id=1760193128. The settings can be changed by opening the object's attribute window and scrolling down to the "VASS" section. 

The TER_fnc_addShop is called to declare the object (this, variable from the Eden init line referring to the object) as a shop. The cargo is then added with the TER_fnc_addShopCargo with a special array which lists all items, prices and amounts. The VASS Eden Mod (not the core system! the scripted approach still works!) is currently broken and I can't really tell why it just suddenly stopped working...

Share this post


Link to post
Share on other sites

Hi everyone!

 

The 3den mod has been updated. It now has a new UI and should work better than ever (especially better than not at all 😬). Full changelog is on GitHub. Also check out the new images in the original post to see some of the changes.

 

Have fun!

Terra

  • Thanks 1

Share this post


Link to post
Share on other sites
6 hours ago, 7erra said:

Hi everyone!

 

The 3den mod has been updated. It now has a new UI and should work better than ever (especially better than not at all 😬). Full changelog is on GitHub. Also check out the new images in the original post to see some of the changes.

 

Have fun!

Terra

Love you man

Share this post


Link to post
Share on other sites

Is there a way to sell to a trader that does not have active inventory of an item? Example you empty the shop of hand grenades, you will not be able to sell them back due to the shop not having inventory. 

Share this post


Link to post
Share on other sites
10 hours ago, Penguinofdoom925 said:

Is there a way to sell to a trader that does not have active inventory of an item? Example you empty the shop of hand grenades, you will not be able to sell them back due to the shop not having inventory. 

No that is currently not possible, just checked the code. You could add a reset counter which would make that possible though? I can also put it on my to-do list.

Share this post


Link to post
Share on other sites

Hello, this is fantastic stuff. I do however have 2 questions.

1. So I'm integrating the VASS to the player such that when a player is spawning in he can access the VASS, but Battleye doesn't seem to like that.

This call

[player, ["50rnd_570x28_smg_03",50,40,"smg_03_black",1000,5]] call TER_fnc_addShopCargo;

Produces the following error

RemoteExec Restriction #0 "bis_fnc_arsenal_condition" = {true} 2:1567 B_medic_F


I added the following into my setVariable.txt on Battleye

5 !"bis_fnc_arsenal_condition"


but that didn't do anything. Any idea how to fix this?

I also tried manually setting the TER_VASS_cargo variable as such 

player setVariable ["TER_VASS_cargo", ["50rnd_570x28_smg_03",50,40,"smg_03_black",1000,5]];

But that didn't work either, kept producing the same error. I tried this exact method in the editor and it worked flawlessly (obviously due to the lack of battleye) but reinforces that the logic was sound its just some tedious BE filter issue that for the life of me I can't figure out.





2. Second question would be around adding an option for players to "Load" their saved loadouts. Ideally i'd allow all items in the VASS so I wouldn't have a need to restrict them in loading their saved loadouts.

Share this post


Link to post
Share on other sites

Huh sadly I have no experience with Battleye and why it is blocking the script. If someone has input please share with me too 😅

Share this post


Link to post
Share on other sites

Says it's "RemoteExec Restriction", is CfgRemoteExec being used with mode restrictions applied?

 

I wouldn't know the answer myself, haven't as yet ever used a CfgRemoteExec in a mission.

Share this post


Link to post
Share on other sites

Can someone help me ? I want to make the default mod money is added to INIDBI database and i don't know how...

Share this post


Link to post
Share on other sites

Single player VASS works fine. On dedicated server, no player can access the shop menu from the context menu (mouse scroll wheel). When hosting from the multiplayer menu in-game, only the player on the hosting computer gets the action to interact with the shop via the context menu.

 

We're implementing VASS with grad-moneymenu, but I don't think that this is the problem, as it did the same thing without GMM installed (side note, my brother will be posting a description of how to get GMM and VASS to play nicely with each other soon. It's mostly just a very short block of code in description.ext).

 

I suspect the problem has something to do with results of addAction function not being visible to remote players, though addAction written directly into unit/object init string works fine in multiplayer in same scenario. Am using 3den enhanced, this may be part of the problem? //Edited to add: Tested with vanila eden editor from fresh version of sample mission. Still broken.

 

Sample mission also creates same problem.

 

Anyone have a fix to get it working on multiplayer?

Share this post


Link to post
Share on other sites

hello,I saw that you can win or lose money when you kill a unit, how can you deactivate it or reduce gain by default

Share this post


Link to post
Share on other sites

how many mods can it hold? because i have an exile server which i want to exchange the normal exile trader into this one? i have around 10 - 15 clothing / weapon mods?

Share this post


Link to post
Share on other sites

Heya, it's been a while 🙂

 

On 4/29/2022 at 6:10 AM, Sunborder said:

Single player VASS works fine. On dedicated server, no player can access the shop menu from the context menu (mouse scroll wheel). When hosting from the multiplayer menu in-game, only the player on the hosting computer gets the action to interact with the shop via the context menu.

 

We're implementing VASS with grad-moneymenu, but I don't think that this is the problem, as it did the same thing without GMM installed (side note, my brother will be posting a description of how to get GMM and VASS to play nicely with each other soon. It's mostly just a very short block of code in description.ext).

 

I suspect the problem has something to do with results of addAction function not being visible to remote players, though addAction written directly into unit/object init string works fine in multiplayer in same scenario. Am using 3den enhanced, this may be part of the problem? //Edited to add: Tested with vanila eden editor from fresh version of sample mission. Still broken.

 

Sample mission also creates same problem.

 

Anyone have a fix to get it working on multiplayer?

Has this been resolved in the meantime? I made some changes a bit ago where I fixed some locality issues, not sure if this was the same problem.

 

On 9/25/2022 at 11:57 AM, savoyard902 said:

hello,I saw that you can win or lose money when you kill a unit, how can you deactivate it or reduce gain by default

By default the money is calculated on the rating of the unit as a very basic implementation of a money system. I'd recommend to use an actual money system and integrate it via https://github.com/7erra/VASS-Virtual-Arsenal-Shop-System/blob/master/Mission.VR/VASS/fnc/fn_VASShandler.sqf

 

On 11/18/2022 at 5:49 PM, Makiiii said:

how many mods can it hold? because i have an exile server which i want to exchange the normal exile trader into this one? i have around 10 - 15 clothing / weapon mods?

As many as the Arsenal/Arma can handle. There should be no issue using mods.

 

On 11/18/2022 at 7:55 PM, Makiiii said:

there is no option to open the shop in game? can someone fix that pls!

Can you give the steps to reproduce this behavior? Also make sure to use the latest version, there were some locality issues in earlier ones that should be fixed now.

 

 

Share this post


Link to post
Share on other sites

I’m using this code to show the current player rating as they pick up money or kill enemies:

 

onEachFrame {hintSilent format ["RATING: %1", rating player]};

 

However, has anyone tried showing player rating using GUI or HUD? If you have do you mind showing the Scripts/Codes? 
 

P.s. Thank you so much for VASS, it’s amazing!

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×