aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-07-23 02:05:51 +0100
committerJustin Clark-Casey (justincc)2011-07-23 02:05:51 +0100
commitfcaa4f601231a6feb7fd5ea40e35fba6220c6235 (patch)
tree003517e08cd61bccc1263ab992d09c576aa25ab4
parentDon't load current/next/everyone/base permissions from the library item xml f... (diff)
downloadopensim-SC_OLD-fcaa4f601231a6feb7fd5ea40e35fba6220c6235.zip
opensim-SC_OLD-fcaa4f601231a6feb7fd5ea40e35fba6220c6235.tar.gz
opensim-SC_OLD-fcaa4f601231a6feb7fd5ea40e35fba6220c6235.tar.bz2
opensim-SC_OLD-fcaa4f601231a6feb7fd5ea40e35fba6220c6235.tar.xz
Revert "Don't load current/next/everyone/base permissions from the library item xml files - always use PermissionMask.All instead (which was the existing default)."
There actually are uses for this. I will correct the perms instead since some entries appear to be wrong. This reverts commit 667b54f5a2a04fa5a2859397868d270eab3913f1.
-rw-r--r--OpenSim/Framework/InventoryFolderImpl.cs8
-rw-r--r--OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs4
-rw-r--r--OpenSim/Region/CoreModules/Framework/Library/LibraryModule.cs8
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.Inventory.cs5
-rw-r--r--OpenSim/Services/InventoryService/LibraryService.cs37
-rw-r--r--bin/inventory/AnimationsLibrary/AnimationsLibraryItems.xml6
-rw-r--r--bin/inventory/BodyPartsLibrary/BodyPartsLibraryItems.xml33
-rw-r--r--bin/inventory/ClothingLibrary/ClothingLibraryItems.xml14
-rw-r--r--bin/inventory/GesturesLibrary/GesturesLibraryItems.xml80
-rw-r--r--bin/inventory/LandmarksLibrary/LandmarksLibraryItems.xml4
-rw-r--r--bin/inventory/NotecardsLibrary/NotecardsLibraryItems.xml14
-rw-r--r--bin/inventory/ObjectsLibrary/ObjectsLibraryItems.xml4
-rw-r--r--bin/inventory/OpenSimLibrary/OpenSimLibrary.xml4
-rw-r--r--bin/inventory/PhotosLibrary/PhotosLibraryItems.xml4
-rw-r--r--bin/inventory/ScriptsLibrary/ScriptsLibraryItems.xml223
-rw-r--r--bin/inventory/SoundsLibrary/SoundsLibraryItems.xml4
-rw-r--r--bin/inventory/TexturesLibrary/TexturesLibraryItems.xml274
17 files changed, 567 insertions, 159 deletions
diff --git a/OpenSim/Framework/InventoryFolderImpl.cs b/OpenSim/Framework/InventoryFolderImpl.cs
index 139776b..29c7682 100644
--- a/OpenSim/Framework/InventoryFolderImpl.cs
+++ b/OpenSim/Framework/InventoryFolderImpl.cs
@@ -27,15 +27,13 @@
27 27
28using System; 28using System;
29using System.Collections.Generic; 29using System.Collections.Generic;
30using System.Reflection;
31using log4net;
32using OpenMetaverse; 30using OpenMetaverse;
33 31
34namespace OpenSim.Framework 32namespace OpenSim.Framework
35{ 33{
36 public class InventoryFolderImpl : InventoryFolderBase 34 public class InventoryFolderImpl : InventoryFolderBase
37 { 35 {
38// private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); 36 //private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
39 37
40 public static readonly string PATH_DELIMITER = "/"; 38 public static readonly string PATH_DELIMITER = "/";
41 39
@@ -404,10 +402,6 @@ namespace OpenSim.Framework
404 { 402 {
405 foreach (InventoryItemBase item in Items.Values) 403 foreach (InventoryItemBase item in Items.Values)
406 { 404 {
407// m_log.DebugFormat(
408// "[INVENTORY FOLDER IMPL]: Returning item {0} {1}, OwnerPermissions {2:X}",
409// item.Name, item.ID, item.CurrentPermissions);
410
411 itemList.Add(item); 405 itemList.Add(item);
412 } 406 }
413 } 407 }
diff --git a/OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs b/OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs
index 4933147..b714f2b 100644
--- a/OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs
+++ b/OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs
@@ -984,14 +984,11 @@ namespace OpenSim.Region.CoreModules.Framework.InventoryAccess
984 public virtual bool CanGetAgentInventoryItem(IClientAPI remoteClient, UUID itemID, UUID requestID) 984 public virtual bool CanGetAgentInventoryItem(IClientAPI remoteClient, UUID itemID, UUID requestID)
985 { 985 {
986 InventoryItemBase assetRequestItem = GetItem(remoteClient.AgentId, itemID); 986 InventoryItemBase assetRequestItem = GetItem(remoteClient.AgentId, itemID);
987
988 if (assetRequestItem == null) 987 if (assetRequestItem == null)
989 { 988 {
990 ILibraryService lib = m_Scene.RequestModuleInterface<ILibraryService>(); 989 ILibraryService lib = m_Scene.RequestModuleInterface<ILibraryService>();
991
992 if (lib != null) 990 if (lib != null)
993 assetRequestItem = lib.LibraryRootFolder.FindItem(itemID); 991 assetRequestItem = lib.LibraryRootFolder.FindItem(itemID);
994
995 if (assetRequestItem == null) 992 if (assetRequestItem == null)
996 return false; 993 return false;
997 } 994 }
@@ -1022,7 +1019,6 @@ namespace OpenSim.Region.CoreModules.Framework.InventoryAccess
1022 m_log.WarnFormat( 1019 m_log.WarnFormat(
1023 "[CLIENT]: {0} requested asset {1} from item {2} but this does not match item's asset {3}", 1020 "[CLIENT]: {0} requested asset {1} from item {2} but this does not match item's asset {3}",
1024 Name, requestID, itemID, assetRequestItem.AssetID); 1021 Name, requestID, itemID, assetRequestItem.AssetID);
1025
1026 return false; 1022 return false;
1027 } 1023 }
1028 1024
diff --git a/OpenSim/Region/CoreModules/Framework/Library/LibraryModule.cs b/OpenSim/Region/CoreModules/Framework/Library/LibraryModule.cs
index 2ef4457..d570608 100644
--- a/OpenSim/Region/CoreModules/Framework/Library/LibraryModule.cs
+++ b/OpenSim/Region/CoreModules/Framework/Library/LibraryModule.cs
@@ -185,7 +185,6 @@ namespace OpenSim.Region.CoreModules.Framework.Library
185 archread = new InventoryArchiveReadRequest(m_MockScene, uinfo, "/", iarFileName, false); 185 archread = new InventoryArchiveReadRequest(m_MockScene, uinfo, "/", iarFileName, false);
186 archread.Execute(); 186 archread.Execute();
187 } 187 }
188
189 foreach (InventoryNodeBase node in nodes) 188 foreach (InventoryNodeBase node in nodes)
190 FixPerms(node); 189 FixPerms(node);
191 } 190 }
@@ -198,23 +197,18 @@ namespace OpenSim.Region.CoreModules.Framework.Library
198 archread.Close(); 197 archread.Close();
199 } 198 }
200 } 199 }
200
201 } 201 }
202 202
203 private void FixPerms(InventoryNodeBase node) 203 private void FixPerms(InventoryNodeBase node)
204 { 204 {
205 m_log.DebugFormat("[LIBRARY MODULE]: Fixing perms for {0} {1}", node.Name, node.ID);
206
207 if (node is InventoryItemBase) 205 if (node is InventoryItemBase)
208 { 206 {
209 InventoryItemBase item = (InventoryItemBase)node; 207 InventoryItemBase item = (InventoryItemBase)node;
210// item.BasePermissions = (uint)PermissionMask.All;
211 item.BasePermissions = 0x7FFFFFFF; 208 item.BasePermissions = 0x7FFFFFFF;
212 item.EveryOnePermissions = 0x7FFFFFFF; 209 item.EveryOnePermissions = 0x7FFFFFFF;
213 item.CurrentPermissions = 0x7FFFFFFF; 210 item.CurrentPermissions = 0x7FFFFFFF;
214 item.NextPermissions = 0x7FFFFFFF; 211 item.NextPermissions = 0x7FFFFFFF;
215// item.EveryOnePermissions = (uint)PermissionMask.Copy;
216// item.CurrentPermissions = (uint)PermissionMask.None;
217// item.NextPermissions = (uint)PermissionMask.All;
218 } 212 }
219 } 213 }
220 214
diff --git a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
index afc1a4f..30421d4 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
@@ -724,10 +724,7 @@ namespace OpenSim.Region.Framework.Scenes
724 newName = item.Name; 724 newName = item.Name;
725 } 725 }
726 726
727 if (remoteClient.AgentId == oldAgentID 727 if (remoteClient.AgentId == oldAgentID || (LibraryService != null && LibraryService.LibraryRootFolder != null && oldAgentID == LibraryService.LibraryRootFolder.Owner))
728 || (LibraryService != null
729 && LibraryService.LibraryRootFolder != null
730 && oldAgentID == LibraryService.LibraryRootFolder.Owner))
731 { 728 {
732 CreateNewInventoryItem( 729 CreateNewInventoryItem(
733 remoteClient, item.CreatorId, item.CreatorData, newFolderID, newName, item.Flags, callbackID, asset, (sbyte)item.InvType, 730 remoteClient, item.CreatorId, item.CreatorData, newFolderID, newName, item.Flags, callbackID, asset, (sbyte)item.InvType,
diff --git a/OpenSim/Services/InventoryService/LibraryService.cs b/OpenSim/Services/InventoryService/LibraryService.cs
index b46add3..383f311 100644
--- a/OpenSim/Services/InventoryService/LibraryService.cs
+++ b/OpenSim/Services/InventoryService/LibraryService.cs
@@ -93,6 +93,26 @@ namespace OpenSim.Services.InventoryService
93 LoadLibraries(pLibrariesLocation); 93 LoadLibraries(pLibrariesLocation);
94 } 94 }
95 95
96 public InventoryItemBase CreateItem(UUID inventoryID, UUID assetID, string name, string description,
97 int assetType, int invType, UUID parentFolderID)
98 {
99 InventoryItemBase item = new InventoryItemBase();
100 item.Owner = libOwner;
101 item.CreatorId = libOwner.ToString();
102 item.ID = inventoryID;
103 item.AssetID = assetID;
104 item.Description = description;
105 item.Name = name;
106 item.AssetType = assetType;
107 item.InvType = invType;
108 item.Folder = parentFolderID;
109 item.BasePermissions = 0x7FFFFFFF;
110 item.EveryOnePermissions = 0x7FFFFFFF;
111 item.CurrentPermissions = 0x7FFFFFFF;
112 item.NextPermissions = 0x7FFFFFFF;
113 return item;
114 }
115
96 /// <summary> 116 /// <summary>
97 /// Use the asset set information at path to load assets 117 /// Use the asset set information at path to load assets
98 /// </summary> 118 /// </summary>
@@ -173,27 +193,22 @@ namespace OpenSim.Services.InventoryService
173 item.Description = config.GetString("description", item.Name); 193 item.Description = config.GetString("description", item.Name);
174 item.InvType = config.GetInt("inventoryType", 0); 194 item.InvType = config.GetInt("inventoryType", 0);
175 item.AssetType = config.GetInt("assetType", item.InvType); 195 item.AssetType = config.GetInt("assetType", item.InvType);
176 item.CurrentPermissions = (uint)PermissionMask.All; 196 item.CurrentPermissions = (uint)config.GetLong("currentPermissions", 0x7FFFFFFF);
177 item.NextPermissions = (uint)PermissionMask.All; 197 item.NextPermissions = (uint)config.GetLong("nextPermissions", 0x7FFFFFFF);
178 item.EveryOnePermissions = (uint)PermissionMask.All; 198 item.EveryOnePermissions = (uint)config.GetLong("everyonePermissions", 0x7FFFFFFF);
179// item.EveryOnePermissions = (uint)PermissionMask.All - (uint)PermissionMask.Modify; 199 item.BasePermissions = (uint)config.GetLong("basePermissions", 0x7FFFFFFF);
180 item.BasePermissions = (uint)PermissionMask.All; 200 item.Flags = (uint)config.GetInt("flags", 0);
181 201
182 if (libraryFolders.ContainsKey(item.Folder)) 202 if (libraryFolders.ContainsKey(item.Folder))
183 { 203 {
184 InventoryFolderImpl parentFolder = libraryFolders[item.Folder]; 204 InventoryFolderImpl parentFolder = libraryFolders[item.Folder];
185
186 try 205 try
187 { 206 {
188// m_log.DebugFormat(
189// "[LIBRARY INVENTORY]: Adding item {0} {1}, OwnerPermissions {2:X} to {3}",
190// item.Name, item.ID, item.CurrentPermissions, item.Folder);
191
192 parentFolder.Items.Add(item.ID, item); 207 parentFolder.Items.Add(item.ID, item);
193 } 208 }
194 catch (Exception) 209 catch (Exception)
195 { 210 {
196 m_log.WarnFormat("[LIBRARY INVENTORY]: Item {1} [{0}] not added, duplicate item", item.ID, item.Name); 211 m_log.WarnFormat("[LIBRARY INVENTORY] Item {1} [{0}] not added, duplicate item", item.ID, item.Name);
197 } 212 }
198 } 213 }
199 else 214 else
diff --git a/bin/inventory/AnimationsLibrary/AnimationsLibraryItems.xml b/bin/inventory/AnimationsLibrary/AnimationsLibraryItems.xml
index 9cfadf0..2a6ceb4 100644
--- a/bin/inventory/AnimationsLibrary/AnimationsLibraryItems.xml
+++ b/bin/inventory/AnimationsLibrary/AnimationsLibraryItems.xml
@@ -108,6 +108,8 @@
108 <Key Name="inventoryType" Value="19" /> 108 <Key Name="inventoryType" Value="19" />
109 </Section> 109 </Section>
110 110
111
112
111<!-- 113<!--
112 <Section Name="Example Library Item"> 114 <Section Name="Example Library Item">
113 <Key Name="inventoryID" Value="30000000-0000-2222-4444-000000000001" /> 115 <Key Name="inventoryID" Value="30000000-0000-2222-4444-000000000001" />
@@ -117,6 +119,10 @@
117 <Key Name="name" Value="Example Library Item" /> 119 <Key Name="name" Value="Example Library Item" />
118 <Key Name="assetType" Value="7" /> 120 <Key Name="assetType" Value="7" />
119 <Key Name="inventoryType" Value="7" /> 121 <Key Name="inventoryType" Value="7" />
122 <Key Name="currentPermissions" Value="2147483647" />
123 <Key Name="nextPermissions" Value="2147483647" />
124 <Key Name="everyonePermissions" Value="2147483647" />
125 <Key Name="basePermissions" Value="2147483647" />
120 </Section> 126 </Section>
121--> 127-->
122 128
diff --git a/bin/inventory/BodyPartsLibrary/BodyPartsLibraryItems.xml b/bin/inventory/BodyPartsLibrary/BodyPartsLibraryItems.xml
index d9adf1c..aa8d9d9 100644
--- a/bin/inventory/BodyPartsLibrary/BodyPartsLibraryItems.xml
+++ b/bin/inventory/BodyPartsLibrary/BodyPartsLibraryItems.xml
@@ -9,6 +9,10 @@
9 <Key Name="name" Value="Example Library Item" /> 9 <Key Name="name" Value="Example Library Item" />
10 <Key Name="assetType" Value="7" /> 10 <Key Name="assetType" Value="7" />
11 <Key Name="inventoryType" Value="7" /> 11 <Key Name="inventoryType" Value="7" />
12 <Key Name="currentPermissions" Value="2147483647" />
13 <Key Name="nextPermissions" Value="2147483647" />
14 <Key Name="everyonePermissions" Value="2147483647" />
15 <Key Name="basePermissions" Value="2147483647" />
12 </Section> 16 </Section>
13--> 17-->
14<!-- 18<!--
@@ -20,6 +24,10 @@
20 <Key Name="name" Value="Hair" /> 24 <Key Name="name" Value="Hair" />
21 <Key Name="assetType" Value="13" /> 25 <Key Name="assetType" Value="13" />
22 <Key Name="inventoryType" Value="18" /> 26 <Key Name="inventoryType" Value="18" />
27 <Key Name="currentPermissions" Value="2147483647" />
28 <Key Name="nextPermissions" Value="2147483647" />
29 <Key Name="everyonePermissions" Value="2147483647" />
30 <Key Name="basePermissions" Value="2147483647" />
23 </Section> 31 </Section>
24 32
25 <Section Name="Skin"> 33 <Section Name="Skin">
@@ -30,6 +38,10 @@
30 <Key Name="name" Value="Skin" /> 38 <Key Name="name" Value="Skin" />
31 <Key Name="assetType" Value="13" /> 39 <Key Name="assetType" Value="13" />
32 <Key Name="inventoryType" Value="18" /> 40 <Key Name="inventoryType" Value="18" />
41 <Key Name="currentPermissions" Value="2147483647" />
42 <Key Name="nextPermissions" Value="2147483647" />
43 <Key Name="everyonePermissions" Value="2147483647" />
44 <Key Name="basePermissions" Value="2147483647" />
33 </Section> 45 </Section>
34--> 46-->
35<!-- 47<!--
@@ -41,6 +53,10 @@
41 <Key Name="name" Value="Jim Skin" /> 53 <Key Name="name" Value="Jim Skin" />
42 <Key Name="assetType" Value="13" /> 54 <Key Name="assetType" Value="13" />
43 <Key Name="inventoryType" Value="13" /> 55 <Key Name="inventoryType" Value="13" />
56 <Key Name="currentPermissions" Value="2147483647" />
57 <Key Name="nextPermissions" Value="2147483647" />
58 <Key Name="everyonePermissions" Value="2147483647" />
59 <Key Name="basePermissions" Value="2147483647" />
44 </Section> 60 </Section>
45 61
46 <Section Name="Little Goblin Skin"> 62 <Section Name="Little Goblin Skin">
@@ -51,6 +67,10 @@
51 <Key Name="name" Value="Little Goblin Skin" /> 67 <Key Name="name" Value="Little Goblin Skin" />
52 <Key Name="assetType" Value="13" /> 68 <Key Name="assetType" Value="13" />
53 <Key Name="inventoryType" Value="13" /> 69 <Key Name="inventoryType" Value="13" />
70 <Key Name="currentPermissions" Value="2147483647" />
71 <Key Name="nextPermissions" Value="2147483647" />
72 <Key Name="everyonePermissions" Value="2147483647" />
73 <Key Name="basePermissions" Value="2147483647" />
54 </Section> 74 </Section>
55--> 75-->
56<!-- 76<!--
@@ -62,6 +82,10 @@
62 <Key Name="name" Value="Shape" /> 82 <Key Name="name" Value="Shape" />
63 <Key Name="assetType" Value="13" /> 83 <Key Name="assetType" Value="13" />
64 <Key Name="inventoryType" Value="18" /> 84 <Key Name="inventoryType" Value="18" />
85 <Key Name="currentPermissions" Value="2147483647" />
86 <Key Name="nextPermissions" Value="2147483647" />
87 <Key Name="everyonePermissions" Value="2147483647" />
88 <Key Name="basePermissions" Value="2147483647" />
65 </Section> 89 </Section>
66--> 90-->
67<!-- 91<!--
@@ -73,6 +97,10 @@
73 <Key Name="name" Value="Jim Shape" /> 97 <Key Name="name" Value="Jim Shape" />
74 <Key Name="assetType" Value="13" /> 98 <Key Name="assetType" Value="13" />
75 <Key Name="inventoryType" Value="13" /> 99 <Key Name="inventoryType" Value="13" />
100 <Key Name="currentPermissions" Value="2147483647" />
101 <Key Name="nextPermissions" Value="2147483647" />
102 <Key Name="everyonePermissions" Value="2147483647" />
103 <Key Name="basePermissions" Value="2147483647" />
76 </Section> 104 </Section>
77 105
78 <Section Name="Little Goblin Shape"> 106 <Section Name="Little Goblin Shape">
@@ -83,7 +111,10 @@
83 <Key Name="name" Value="Little Goblin Shape" /> 111 <Key Name="name" Value="Little Goblin Shape" />
84 <Key Name="assetType" Value="13" /> 112 <Key Name="assetType" Value="13" />
85 <Key Name="inventoryType" Value="13" /> 113 <Key Name="inventoryType" Value="13" />
114 <Key Name="currentPermissions" Value="2147483647" />
115 <Key Name="nextPermissions" Value="2147483647" />
116 <Key Name="everyonePermissions" Value="2147483647" />
117 <Key Name="basePermissions" Value="2147483647" />
86 </Section> 118 </Section>
87 --> 119 -->
88
89</Nini> 120</Nini>
diff --git a/bin/inventory/ClothingLibrary/ClothingLibraryItems.xml b/bin/inventory/ClothingLibrary/ClothingLibraryItems.xml
index a12bb8a..9e297f0 100644
--- a/bin/inventory/ClothingLibrary/ClothingLibraryItems.xml
+++ b/bin/inventory/ClothingLibrary/ClothingLibraryItems.xml
@@ -9,6 +9,10 @@
9 <Key Name="name" Value="Example Library Item" /> 9 <Key Name="name" Value="Example Library Item" />
10 <Key Name="assetType" Value="7" /> 10 <Key Name="assetType" Value="7" />
11 <Key Name="inventoryType" Value="7" /> 11 <Key Name="inventoryType" Value="7" />
12 <Key Name="currentPermissions" Value="2147483647" />
13 <Key Name="nextPermissions" Value="2147483647" />
14 <Key Name="everyonePermissions" Value="2147483647" />
15 <Key Name="basePermissions" Value="2147483647" />
12 </Section> 16 </Section>
13--> 17-->
14<!-- 18<!--
@@ -20,8 +24,11 @@
20 <Key Name="name" Value="Shirt" /> 24 <Key Name="name" Value="Shirt" />
21 <Key Name="assetType" Value="5" /> 25 <Key Name="assetType" Value="5" />
22 <Key Name="inventoryType" Value="18" /> 26 <Key Name="inventoryType" Value="18" />
27 <Key Name="currentPermissions" Value="2147483647" />
28 <Key Name="nextPermissions" Value="2147483647" />
29 <Key Name="everyonePermissions" Value="2147483647" />
30 <Key Name="basePermissions" Value="2147483647" />
23 </Section> 31 </Section>
24
25 <Section Name="Pants"> 32 <Section Name="Pants">
26 <Key Name="inventoryID" Value="d5e46211-b9d1-11dc-95ff-0800200c9a66" /> 33 <Key Name="inventoryID" Value="d5e46211-b9d1-11dc-95ff-0800200c9a66" />
27 <Key Name="assetID" Value="00000000-38f9-1111-024e-222222111120" /> 34 <Key Name="assetID" Value="00000000-38f9-1111-024e-222222111120" />
@@ -30,7 +37,10 @@
30 <Key Name="name" Value="Pants" /> 37 <Key Name="name" Value="Pants" />
31 <Key Name="assetType" Value="5" /> 38 <Key Name="assetType" Value="5" />
32 <Key Name="inventoryType" Value="18" /> 39 <Key Name="inventoryType" Value="18" />
40 <Key Name="currentPermissions" Value="2147483647" />
41 <Key Name="nextPermissions" Value="2147483647" />
42 <Key Name="everyonePermissions" Value="2147483647" />
43 <Key Name="basePermissions" Value="2147483647" />
33 </Section> 44 </Section>
34--> 45-->
35
36</Nini> 46</Nini>
diff --git a/bin/inventory/GesturesLibrary/GesturesLibraryItems.xml b/bin/inventory/GesturesLibrary/GesturesLibraryItems.xml
index ca3ce2d..1312129 100644
--- a/bin/inventory/GesturesLibrary/GesturesLibraryItems.xml
+++ b/bin/inventory/GesturesLibrary/GesturesLibraryItems.xml
@@ -7,8 +7,11 @@
7 <Key Name="name" Value="can we move along?" /> 7 <Key Name="name" Value="can we move along?" />
8 <Key Name="assetType" Value="21"/> 8 <Key Name="assetType" Value="21"/>
9 <Key Name="inventoryType" Value="20"/> 9 <Key Name="inventoryType" Value="20"/>
10 <Key Name="currentPermissions" Value="2147483647"/>
11 <Key Name="nextPermissions" Value="2147483647"/>
12 <Key Name="everyonePermissions" Value="2147483647" />
13 <Key Name="basePermissions" Value="2147483647"/>
10 </Section> 14 </Section>
11
12 <Section Name="me!"> 15 <Section Name="me!">
13 <Key Name="inventoryID" Value="4c141851-1bef-4c00-9058-8c4d97ab48fe"/> 16 <Key Name="inventoryID" Value="4c141851-1bef-4c00-9058-8c4d97ab48fe"/>
14 <Key Name="assetID" Value="652475bc-ffb7-4a18-b6bb-7731ddeb6a51"/> 17 <Key Name="assetID" Value="652475bc-ffb7-4a18-b6bb-7731ddeb6a51"/>
@@ -17,8 +20,11 @@
17 <Key Name="name" Value="me!" /> 20 <Key Name="name" Value="me!" />
18 <Key Name="assetType" Value="21"/> 21 <Key Name="assetType" Value="21"/>
19 <Key Name="inventoryType" Value="20"/> 22 <Key Name="inventoryType" Value="20"/>
23 <Key Name="currentPermissions" Value="2147483647"/>
24 <Key Name="nextPermissions" Value="2147483647"/>
25 <Key Name="everyonePermissions" Value="2147483647" />
26 <Key Name="basePermissions" Value="2147483647"/>
20 </Section> 27 </Section>
21
22 <Section Name="clap"> 28 <Section Name="clap">
23 <Key Name="inventoryID" Value="a5a30fdb-613f-44fa-8bc2-7806e4da67f6"/> 29 <Key Name="inventoryID" Value="a5a30fdb-613f-44fa-8bc2-7806e4da67f6"/>
24 <Key Name="assetID" Value="712e81fd-a215-498c-ab1a-caf1f5bf950d"/> 30 <Key Name="assetID" Value="712e81fd-a215-498c-ab1a-caf1f5bf950d"/>
@@ -27,8 +33,11 @@
27 <Key Name="name" Value="clap" /> 33 <Key Name="name" Value="clap" />
28 <Key Name="assetType" Value="21"/> 34 <Key Name="assetType" Value="21"/>
29 <Key Name="inventoryType" Value="20"/> 35 <Key Name="inventoryType" Value="20"/>
36 <Key Name="currentPermissions" Value="2147483647"/>
37 <Key Name="nextPermissions" Value="2147483647"/>
38 <Key Name="everyonePermissions" Value="2147483647" />
39 <Key Name="basePermissions" Value="2147483647"/>
30 </Section> 40 </Section>
31
32 <Section Name="no"> 41 <Section Name="no">
33 <Key Name="inventoryID" Value="514b3ca6-1571-4f58-a24e-f58eb5cb8460"/> 42 <Key Name="inventoryID" Value="514b3ca6-1571-4f58-a24e-f58eb5cb8460"/>
34 <Key Name="assetID" Value="6c123970-0f5a-448e-920a-07bae9aadf4c"/> 43 <Key Name="assetID" Value="6c123970-0f5a-448e-920a-07bae9aadf4c"/>
@@ -37,8 +46,11 @@
37 <Key Name="name" Value="no" /> 46 <Key Name="name" Value="no" />
38 <Key Name="assetType" Value="21"/> 47 <Key Name="assetType" Value="21"/>
39 <Key Name="inventoryType" Value="20"/> 48 <Key Name="inventoryType" Value="20"/>
49 <Key Name="currentPermissions" Value="2147483647"/>
50 <Key Name="nextPermissions" Value="2147483647"/>
51 <Key Name="everyonePermissions" Value="2147483647" />
52 <Key Name="basePermissions" Value="2147483647"/>
40 </Section> 53 </Section>
41
42 <Section Name="suprised"> 54 <Section Name="suprised">
43 <Key Name="inventoryID" Value="120fb1f3-112b-4bc4-a7d3-a784ecc360af"/> 55 <Key Name="inventoryID" Value="120fb1f3-112b-4bc4-a7d3-a784ecc360af"/>
44 <Key Name="assetID" Value="dbaf104b-cba8-4df7-b5d3-0cb57d0d63b2"/> 56 <Key Name="assetID" Value="dbaf104b-cba8-4df7-b5d3-0cb57d0d63b2"/>
@@ -47,8 +59,11 @@
47 <Key Name="name" Value="suprised" /> 59 <Key Name="name" Value="suprised" />
48 <Key Name="assetType" Value="21"/> 60 <Key Name="assetType" Value="21"/>
49 <Key Name="inventoryType" Value="20"/> 61 <Key Name="inventoryType" Value="20"/>
62 <Key Name="currentPermissions" Value="2147483647"/>
63 <Key Name="nextPermissions" Value="2147483647"/>
64 <Key Name="everyonePermissions" Value="2147483647" />
65 <Key Name="basePermissions" Value="2147483647"/>
50 </Section> 66 </Section>
51
52 <Section Name="dance2"> 67 <Section Name="dance2">
53 <Key Name="inventoryID" Value="1ca0e368-5a11-4da1-8503-925a55e7c45f"/> 68 <Key Name="inventoryID" Value="1ca0e368-5a11-4da1-8503-925a55e7c45f"/>
54 <Key Name="assetID" Value="3bd1792a-6756-4ee0-a54e-3ae6493c2036"/> 69 <Key Name="assetID" Value="3bd1792a-6756-4ee0-a54e-3ae6493c2036"/>
@@ -57,8 +72,11 @@
57 <Key Name="name" Value="dance2" /> 72 <Key Name="name" Value="dance2" />
58 <Key Name="assetType" Value="21"/> 73 <Key Name="assetType" Value="21"/>
59 <Key Name="inventoryType" Value="20"/> 74 <Key Name="inventoryType" Value="20"/>
75 <Key Name="currentPermissions" Value="2147483647"/>
76 <Key Name="nextPermissions" Value="2147483647"/>
77 <Key Name="everyonePermissions" Value="2147483647" />
78 <Key Name="basePermissions" Value="2147483647"/>
60 </Section> 79 </Section>
61
62 <Section Name="definitely YES"> 80 <Section Name="definitely YES">
63 <Key Name="inventoryID" Value="022fa770-abb1-4266-963a-4ece4747b748"/> 81 <Key Name="inventoryID" Value="022fa770-abb1-4266-963a-4ece4747b748"/>
64 <Key Name="assetID" Value="392c292f-3d27-45ff-9437-c79c06699237"/> 82 <Key Name="assetID" Value="392c292f-3d27-45ff-9437-c79c06699237"/>
@@ -67,8 +85,11 @@
67 <Key Name="name" Value="definitely YES" /> 85 <Key Name="name" Value="definitely YES" />
68 <Key Name="assetType" Value="21"/> 86 <Key Name="assetType" Value="21"/>
69 <Key Name="inventoryType" Value="20"/> 87 <Key Name="inventoryType" Value="20"/>
88 <Key Name="currentPermissions" Value="2147483647"/>
89 <Key Name="nextPermissions" Value="2147483647"/>
90 <Key Name="everyonePermissions" Value="2147483647" />
91 <Key Name="basePermissions" Value="2147483647"/>
70 </Section> 92 </Section>
71
72 <Section Name="Wave"> 93 <Section Name="Wave">
73 <Key Name="inventoryID" Value="6406a7c6-a690-44be-a444-ba723e50c17d"/> 94 <Key Name="inventoryID" Value="6406a7c6-a690-44be-a444-ba723e50c17d"/>
74 <Key Name="assetID" Value="cce0e317-2c49-411e-8716-f9ce3007c715"/> 95 <Key Name="assetID" Value="cce0e317-2c49-411e-8716-f9ce3007c715"/>
@@ -77,8 +98,11 @@
77 <Key Name="name" Value="Wave" /> 98 <Key Name="name" Value="Wave" />
78 <Key Name="assetType" Value="21"/> 99 <Key Name="assetType" Value="21"/>
79 <Key Name="inventoryType" Value="20"/> 100 <Key Name="inventoryType" Value="20"/>
101 <Key Name="currentPermissions" Value="2147483647"/>
102 <Key Name="nextPermissions" Value="2147483647"/>
103 <Key Name="everyonePermissions" Value="2147483647" />
104 <Key Name="basePermissions" Value="2147483647"/>
80 </Section> 105 </Section>
81
82 <Section Name="take it outside"> 106 <Section Name="take it outside">
83 <Key Name="inventoryID" Value="1488b988-c300-4c2e-b48a-3b8eacb93659"/> 107 <Key Name="inventoryID" Value="1488b988-c300-4c2e-b48a-3b8eacb93659"/>
84 <Key Name="assetID" Value="d082bd28-f655-43b7-a0eb-cb80db03753e"/> 108 <Key Name="assetID" Value="d082bd28-f655-43b7-a0eb-cb80db03753e"/>
@@ -87,8 +111,11 @@
87 <Key Name="name" Value="take it outside" /> 111 <Key Name="name" Value="take it outside" />
88 <Key Name="assetType" Value="21"/> 112 <Key Name="assetType" Value="21"/>
89 <Key Name="inventoryType" Value="20"/> 113 <Key Name="inventoryType" Value="20"/>
114 <Key Name="currentPermissions" Value="2147483647"/>
115 <Key Name="nextPermissions" Value="2147483647"/>
116 <Key Name="everyonePermissions" Value="2147483647" />
117 <Key Name="basePermissions" Value="2147483647"/>
90 </Section> 118 </Section>
91
92 <Section Name="whoohoo!"> 119 <Section Name="whoohoo!">
93 <Key Name="inventoryID" Value="18c1a2fc-17f6-4af4-a519-827b272feaac"/> 120 <Key Name="inventoryID" Value="18c1a2fc-17f6-4af4-a519-827b272feaac"/>
94 <Key Name="assetID" Value="7f7384c0-848c-4bf0-8e83-50879981e1a4"/> 121 <Key Name="assetID" Value="7f7384c0-848c-4bf0-8e83-50879981e1a4"/>
@@ -97,8 +124,11 @@
97 <Key Name="name" Value="whoohoo!" /> 124 <Key Name="name" Value="whoohoo!" />
98 <Key Name="assetType" Value="21"/> 125 <Key Name="assetType" Value="21"/>
99 <Key Name="inventoryType" Value="20"/> 126 <Key Name="inventoryType" Value="20"/>
127 <Key Name="currentPermissions" Value="2147483647"/>
128 <Key Name="nextPermissions" Value="2147483647"/>
129 <Key Name="everyonePermissions" Value="2147483647" />
130 <Key Name="basePermissions" Value="2147483647"/>
100 </Section> 131 </Section>
101
102 <Section Name="raise hand"> 132 <Section Name="raise hand">
103 <Key Name="inventoryID" Value="5c0afacd-bbd0-4f66-a516-4ac4e380853c"/> 133 <Key Name="inventoryID" Value="5c0afacd-bbd0-4f66-a516-4ac4e380853c"/>
104 <Key Name="assetID" Value="2d0819cf-452b-4db8-b7ac-cda443bc89e7"/> 134 <Key Name="assetID" Value="2d0819cf-452b-4db8-b7ac-cda443bc89e7"/>
@@ -107,8 +137,11 @@
107 <Key Name="name" Value="raise hand" /> 137 <Key Name="name" Value="raise hand" />
108 <Key Name="assetType" Value="21"/> 138 <Key Name="assetType" Value="21"/>
109 <Key Name="inventoryType" Value="20"/> 139 <Key Name="inventoryType" Value="20"/>
140 <Key Name="currentPermissions" Value="2147483647"/>
141 <Key Name="nextPermissions" Value="2147483647"/>
142 <Key Name="everyonePermissions" Value="2147483647" />
143 <Key Name="basePermissions" Value="2147483647"/>
110 </Section> 144 </Section>
111
112 <Section Name="LOL"> 145 <Section Name="LOL">
113 <Key Name="inventoryID" Value="407f6a99-1a12-43c6-bec1-8fad974c8f42"/> 146 <Key Name="inventoryID" Value="407f6a99-1a12-43c6-bec1-8fad974c8f42"/>
114 <Key Name="assetID" Value="d545ac78-09cc-4811-8700-8df1a37d7f56"/> 147 <Key Name="assetID" Value="d545ac78-09cc-4811-8700-8df1a37d7f56"/>
@@ -117,8 +150,11 @@
117 <Key Name="name" Value="LOL" /> 150 <Key Name="name" Value="LOL" />
118 <Key Name="assetType" Value="21"/> 151 <Key Name="assetType" Value="21"/>
119 <Key Name="inventoryType" Value="20"/> 152 <Key Name="inventoryType" Value="20"/>
153 <Key Name="currentPermissions" Value="2147483647"/>
154 <Key Name="nextPermissions" Value="2147483647"/>
155 <Key Name="everyonePermissions" Value="2147483647" />
156 <Key Name="basePermissions" Value="2147483647"/>
120 </Section> 157 </Section>
121
122 <Section Name="dance1"> 158 <Section Name="dance1">
123 <Key Name="inventoryID" Value="59cce8ab-5c0c-49be-aa3b-036f05fbd7f4"/> 159 <Key Name="inventoryID" Value="59cce8ab-5c0c-49be-aa3b-036f05fbd7f4"/>
124 <Key Name="assetID" Value="9cc5bb24-bacf-44f9-a1d0-d409e6ccfa6c"/> 160 <Key Name="assetID" Value="9cc5bb24-bacf-44f9-a1d0-d409e6ccfa6c"/>
@@ -127,8 +163,11 @@
127 <Key Name="name" Value="dance1" /> 163 <Key Name="name" Value="dance1" />
128 <Key Name="assetType" Value="21"/> 164 <Key Name="assetType" Value="21"/>
129 <Key Name="inventoryType" Value="20"/> 165 <Key Name="inventoryType" Value="20"/>
166 <Key Name="currentPermissions" Value="2147483647"/>
167 <Key Name="nextPermissions" Value="2147483647"/>
168 <Key Name="everyonePermissions" Value="2147483647" />
169 <Key Name="basePermissions" Value="2147483647"/>
130 </Section> 170 </Section>
131
132 <Section Name="wink!"> 171 <Section Name="wink!">
133 <Key Name="inventoryID" Value="ba33e8ab-b816-4ead-9302-c8475deb1845"/> 172 <Key Name="inventoryID" Value="ba33e8ab-b816-4ead-9302-c8475deb1845"/>
134 <Key Name="assetID" Value="67d47cd0-9634-4c99-97db-ddce9bda467c"/> 173 <Key Name="assetID" Value="67d47cd0-9634-4c99-97db-ddce9bda467c"/>
@@ -137,8 +176,11 @@
137 <Key Name="name" Value="wink!" /> 176 <Key Name="name" Value="wink!" />
138 <Key Name="assetType" Value="21"/> 177 <Key Name="assetType" Value="21"/>
139 <Key Name="inventoryType" Value="20"/> 178 <Key Name="inventoryType" Value="20"/>
179 <Key Name="currentPermissions" Value="2147483647"/>
180 <Key Name="nextPermissions" Value="2147483647"/>
181 <Key Name="everyonePermissions" Value="2147483647" />
182 <Key Name="basePermissions" Value="2147483647"/>
140 </Section> 183 </Section>
141
142 <Section Name="not sure"> 184 <Section Name="not sure">
143 <Key Name="inventoryID" Value="02da80eb-cad0-4cd1-9ff7-d3d3dd150fbc"/> 185 <Key Name="inventoryID" Value="02da80eb-cad0-4cd1-9ff7-d3d3dd150fbc"/>
144 <Key Name="assetID" Value="9bc46cd2-95cb-456d-9070-a4439e42af9e"/> 186 <Key Name="assetID" Value="9bc46cd2-95cb-456d-9070-a4439e42af9e"/>
@@ -147,8 +189,11 @@
147 <Key Name="name" Value="not sure" /> 189 <Key Name="name" Value="not sure" />
148 <Key Name="assetType" Value="21"/> 190 <Key Name="assetType" Value="21"/>
149 <Key Name="inventoryType" Value="20"/> 191 <Key Name="inventoryType" Value="20"/>
192 <Key Name="currentPermissions" Value="2147483647"/>
193 <Key Name="nextPermissions" Value="2147483647"/>
194 <Key Name="everyonePermissions" Value="2147483647" />
195 <Key Name="basePermissions" Value="2147483647"/>
150 </Section> 196 </Section>
151
152 <Section Name="dance3"> 197 <Section Name="dance3">
153 <Key Name="inventoryID" Value="05e53736-dacb-4935-a1e9-d9897b35b962"/> 198 <Key Name="inventoryID" Value="05e53736-dacb-4935-a1e9-d9897b35b962"/>
154 <Key Name="assetID" Value="fd9ad83a-4921-4b6e-8b8e-558556d9f503"/> 199 <Key Name="assetID" Value="fd9ad83a-4921-4b6e-8b8e-558556d9f503"/>
@@ -157,6 +202,9 @@
157 <Key Name="name" Value="dance3" /> 202 <Key Name="name" Value="dance3" />
158 <Key Name="assetType" Value="21"/> 203 <Key Name="assetType" Value="21"/>
159 <Key Name="inventoryType" Value="20"/> 204 <Key Name="inventoryType" Value="20"/>
205 <Key Name="currentPermissions" Value="2147483647"/>
206 <Key Name="nextPermissions" Value="2147483647"/>
207 <Key Name="everyonePermissions" Value="2147483647" />
208 <Key Name="basePermissions" Value="2147483647"/>
160 </Section> 209 </Section>
161
162</Nini> 210</Nini>
diff --git a/bin/inventory/LandmarksLibrary/LandmarksLibraryItems.xml b/bin/inventory/LandmarksLibrary/LandmarksLibraryItems.xml
index 44194cd..4047a58 100644
--- a/bin/inventory/LandmarksLibrary/LandmarksLibraryItems.xml
+++ b/bin/inventory/LandmarksLibrary/LandmarksLibraryItems.xml
@@ -9,6 +9,10 @@
9 <Key Name="name" Value="Example Library Item" /> 9 <Key Name="name" Value="Example Library Item" />
10 <Key Name="assetType" Value="7" /> 10 <Key Name="assetType" Value="7" />
11 <Key Name="inventoryType" Value="7" /> 11 <Key Name="inventoryType" Value="7" />
12 <Key Name="currentPermissions" Value="2147483647" />
13 <Key Name="nextPermissions" Value="2147483647" />
14 <Key Name="everyonePermissions" Value="2147483647" />
15 <Key Name="basePermissions" Value="2147483647" />
12 </Section> 16 </Section>
13--> 17-->
14 18
diff --git a/bin/inventory/NotecardsLibrary/NotecardsLibraryItems.xml b/bin/inventory/NotecardsLibrary/NotecardsLibraryItems.xml
index e232bcc..713c365 100644
--- a/bin/inventory/NotecardsLibrary/NotecardsLibraryItems.xml
+++ b/bin/inventory/NotecardsLibrary/NotecardsLibraryItems.xml
@@ -9,6 +9,10 @@
9 <Key Name="name" Value="Example Library Item" /> 9 <Key Name="name" Value="Example Library Item" />
10 <Key Name="assetType" Value="7" /> 10 <Key Name="assetType" Value="7" />
11 <Key Name="inventoryType" Value="7" /> 11 <Key Name="inventoryType" Value="7" />
12 <Key Name="currentPermissions" Value="2147483647" />
13 <Key Name="nextPermissions" Value="2147483647" />
14 <Key Name="everyonePermissions" Value="2147483647" />
15 <Key Name="basePermissions" Value="2147483647" />
12 </Section> 16 </Section>
13--> 17-->
14 18
@@ -20,8 +24,11 @@
20 <Key Name="name" Value="Welcome" /> 24 <Key Name="name" Value="Welcome" />
21 <Key Name="assetType" Value="7" /> 25 <Key Name="assetType" Value="7" />
22 <Key Name="inventoryType" Value="7" /> 26 <Key Name="inventoryType" Value="7" />
27 <Key Name="currentPermissions" Value="2147483647" />
28 <Key Name="nextPermissions" Value="2147483647" />
29 <Key Name="everyonePermissions" Value="2147483647" />
30 <Key Name="basePermissions" Value="2147483647" />
23 </Section> 31 </Section>
24
25 <Section Name="Example notecard"> 32 <Section Name="Example notecard">
26 <Key Name="inventoryID" Value="a170ffc0-b9c7-11dc-95ff-0800200c9a66" /> 33 <Key Name="inventoryID" Value="a170ffc0-b9c7-11dc-95ff-0800200c9a66" />
27 <Key Name="assetID" Value="8d1ada50-b9c7-11dc-95ff-0800200c9a66" /> 34 <Key Name="assetID" Value="8d1ada50-b9c7-11dc-95ff-0800200c9a66" />
@@ -30,6 +37,9 @@
30 <Key Name="name" Value="Example notecard" /> 37 <Key Name="name" Value="Example notecard" />
31 <Key Name="assetType" Value="7" /> 38 <Key Name="assetType" Value="7" />
32 <Key Name="inventoryType" Value="7" /> 39 <Key Name="inventoryType" Value="7" />
40 <Key Name="currentPermissions" Value="2147483647" />
41 <Key Name="nextPermissions" Value="2147483647" />
42 <Key Name="everyonePermissions" Value="2147483647" />
43 <Key Name="basePermissions" Value="2147483647" />
33 </Section> 44 </Section>
34
35</Nini> 45</Nini>
diff --git a/bin/inventory/ObjectsLibrary/ObjectsLibraryItems.xml b/bin/inventory/ObjectsLibrary/ObjectsLibraryItems.xml
index 44194cd..4047a58 100644
--- a/bin/inventory/ObjectsLibrary/ObjectsLibraryItems.xml
+++ b/bin/inventory/ObjectsLibrary/ObjectsLibraryItems.xml
@@ -9,6 +9,10 @@
9 <Key Name="name" Value="Example Library Item" /> 9 <Key Name="name" Value="Example Library Item" />
10 <Key Name="assetType" Value="7" /> 10 <Key Name="assetType" Value="7" />
11 <Key Name="inventoryType" Value="7" /> 11 <Key Name="inventoryType" Value="7" />
12 <Key Name="currentPermissions" Value="2147483647" />
13 <Key Name="nextPermissions" Value="2147483647" />
14 <Key Name="everyonePermissions" Value="2147483647" />
15 <Key Name="basePermissions" Value="2147483647" />
12 </Section> 16 </Section>
13--> 17-->
14 18
diff --git a/bin/inventory/OpenSimLibrary/OpenSimLibrary.xml b/bin/inventory/OpenSimLibrary/OpenSimLibrary.xml
index bef59d8..7eb8de3 100644
--- a/bin/inventory/OpenSimLibrary/OpenSimLibrary.xml
+++ b/bin/inventory/OpenSimLibrary/OpenSimLibrary.xml
@@ -10,6 +10,10 @@
10 <Key Name="name" Value="Example Library Item" /> 10 <Key Name="name" Value="Example Library Item" />
11 <Key Name="assetType" Value="7" /> 11 <Key Name="assetType" Value="7" />
12 <Key Name="inventoryType" Value="7" /> 12 <Key Name="inventoryType" Value="7" />
13 <Key Name="currentPermissions" Value="2147483647" />
14 <Key Name="nextPermissions" Value="2147483647" />
15 <Key Name="everyonePermissions" Value="2147483647" />
16 <Key Name="basePermissions" Value="2147483647" />
13 </Section> 17 </Section>
14--> 18-->
15 19
diff --git a/bin/inventory/PhotosLibrary/PhotosLibraryItems.xml b/bin/inventory/PhotosLibrary/PhotosLibraryItems.xml
index 44194cd..4047a58 100644
--- a/bin/inventory/PhotosLibrary/PhotosLibraryItems.xml
+++ b/bin/inventory/PhotosLibrary/PhotosLibraryItems.xml
@@ -9,6 +9,10 @@
9 <Key Name="name" Value="Example Library Item" /> 9 <Key Name="name" Value="Example Library Item" />
10 <Key Name="assetType" Value="7" /> 10 <Key Name="assetType" Value="7" />
11 <Key Name="inventoryType" Value="7" /> 11 <Key Name="inventoryType" Value="7" />
12 <Key Name="currentPermissions" Value="2147483647" />
13 <Key Name="nextPermissions" Value="2147483647" />
14 <Key Name="everyonePermissions" Value="2147483647" />
15 <Key Name="basePermissions" Value="2147483647" />
12 </Section> 16 </Section>
13--> 17-->
14 18
diff --git a/bin/inventory/ScriptsLibrary/ScriptsLibraryItems.xml b/bin/inventory/ScriptsLibrary/ScriptsLibraryItems.xml
index df9d867..9641f7d 100644
--- a/bin/inventory/ScriptsLibrary/ScriptsLibraryItems.xml
+++ b/bin/inventory/ScriptsLibrary/ScriptsLibraryItems.xml
@@ -25,8 +25,11 @@
25 <Key Name="name" Value="llAbs" /> 25 <Key Name="name" Value="llAbs" />
26 <Key Name="assetType" Value="10" /> 26 <Key Name="assetType" Value="10" />
27 <Key Name="inventoryType" Value="10" /> 27 <Key Name="inventoryType" Value="10" />
28 <Key Name="currentPermissions" Value="257487132" />
29 <Key Name="nextPermissions" Value="257487132" />
30 <Key Name="everyonePermissions" Value="257487132" />
31 <Key Name="basePermissions" Value="257487132" />
28 </Section> 32 </Section>
29
30 <Section Name="llAcos"> 33 <Section Name="llAcos">
31 <Key Name="inventoryID" Value="6519bf38-b19f-11dc-8314-0800200c9a66" /> 34 <Key Name="inventoryID" Value="6519bf38-b19f-11dc-8314-0800200c9a66" />
32 <Key Name="assetID" Value="6519bf39-b19f-11dc-8314-0800200c9a66" /> 35 <Key Name="assetID" Value="6519bf39-b19f-11dc-8314-0800200c9a66" />
@@ -35,8 +38,11 @@
35 <Key Name="name" Value="llAcos" /> 38 <Key Name="name" Value="llAcos" />
36 <Key Name="assetType" Value="10" /> 39 <Key Name="assetType" Value="10" />
37 <Key Name="inventoryType" Value="10" /> 40 <Key Name="inventoryType" Value="10" />
41 <Key Name="currentPermissions" Value="257487132" />
42 <Key Name="nextPermissions" Value="257487132" />
43 <Key Name="everyonePermissions" Value="257487132" />
44 <Key Name="basePermissions" Value="257487132" />
38 </Section> 45 </Section>
39
40 <Section Name="llAddToLandBanList"> 46 <Section Name="llAddToLandBanList">
41 <Key Name="inventoryID" Value="7ceba3f0-b1a0-11dc-8314-0800200c9a66" /> 47 <Key Name="inventoryID" Value="7ceba3f0-b1a0-11dc-8314-0800200c9a66" />
42 <Key Name="assetID" Value="7ceba3f1-b1a0-11dc-8314-0800200c9a66" /> 48 <Key Name="assetID" Value="7ceba3f1-b1a0-11dc-8314-0800200c9a66" />
@@ -45,8 +51,11 @@
45 <Key Name="name" Value="llAddToLandBanList" /> 51 <Key Name="name" Value="llAddToLandBanList" />
46 <Key Name="assetType" Value="10" /> 52 <Key Name="assetType" Value="10" />
47 <Key Name="inventoryType" Value="10" /> 53 <Key Name="inventoryType" Value="10" />
54 <Key Name="currentPermissions" Value="257487132" />
55 <Key Name="nextPermissions" Value="257487132" />
56 <Key Name="everyonePermissions" Value="257487132" />
57 <Key Name="basePermissions" Value="257487132" />
48 </Section> 58 </Section>
49
50 <Section Name="llAddToLandPassList"> 59 <Section Name="llAddToLandPassList">
51 <Key Name="inventoryID" Value="609047e6-b390-11dc-8314-0800200c9a66" /> 60 <Key Name="inventoryID" Value="609047e6-b390-11dc-8314-0800200c9a66" />
52 <Key Name="assetID" Value="609047e7-b390-11dc-8314-0800200c9a66" /> 61 <Key Name="assetID" Value="609047e7-b390-11dc-8314-0800200c9a66" />
@@ -55,8 +64,11 @@
55 <Key Name="name" Value="llAddToLandPassList" /> 64 <Key Name="name" Value="llAddToLandPassList" />
56 <Key Name="assetType" Value="10" /> 65 <Key Name="assetType" Value="10" />
57 <Key Name="inventoryType" Value="10" /> 66 <Key Name="inventoryType" Value="10" />
67 <Key Name="currentPermissions" Value="257487132" />
68 <Key Name="nextPermissions" Value="257487132" />
69 <Key Name="everyonePermissions" Value="257487132" />
70 <Key Name="basePermissions" Value="257487132" />
58 </Section> 71 </Section>
59
60 <Section Name="llAdjustSoundVolume"> 72 <Section Name="llAdjustSoundVolume">
61 <Key Name="inventoryID" Value="56df4bcc-b393-11dc-8314-0800200c9a66" /> 73 <Key Name="inventoryID" Value="56df4bcc-b393-11dc-8314-0800200c9a66" />
62 <Key Name="assetID" Value="56df4bcd-b393-11dc-8314-0800200c9a66" /> 74 <Key Name="assetID" Value="56df4bcd-b393-11dc-8314-0800200c9a66" />
@@ -65,8 +77,11 @@
65 <Key Name="name" Value="llAdjustSoundVolume" /> 77 <Key Name="name" Value="llAdjustSoundVolume" />
66 <Key Name="assetType" Value="10" /> 78 <Key Name="assetType" Value="10" />
67 <Key Name="inventoryType" Value="10" /> 79 <Key Name="inventoryType" Value="10" />
80 <Key Name="currentPermissions" Value="257487132" />
81 <Key Name="nextPermissions" Value="257487132" />
82 <Key Name="everyonePermissions" Value="257487132" />
83 <Key Name="basePermissions" Value="257487132" />
68 </Section> 84 </Section>
69
70 <Section Name="llAllowInventoryDrop"> 85 <Section Name="llAllowInventoryDrop">
71 <Key Name="inventoryID" Value="54d6962c-b394-11dc-8314-0800200c9a66" /> 86 <Key Name="inventoryID" Value="54d6962c-b394-11dc-8314-0800200c9a66" />
72 <Key Name="assetID" Value="54d6962d-b394-11dc-8314-0800200c9a66" /> 87 <Key Name="assetID" Value="54d6962d-b394-11dc-8314-0800200c9a66" />
@@ -75,8 +90,11 @@
75 <Key Name="name" Value="llAllowInventoryDrop" /> 90 <Key Name="name" Value="llAllowInventoryDrop" />
76 <Key Name="assetType" Value="10" /> 91 <Key Name="assetType" Value="10" />
77 <Key Name="inventoryType" Value="10" /> 92 <Key Name="inventoryType" Value="10" />
93 <Key Name="currentPermissions" Value="257487132" />
94 <Key Name="nextPermissions" Value="257487132" />
95 <Key Name="everyonePermissions" Value="257487132" />
96 <Key Name="basePermissions" Value="257487132" />
78 </Section> 97 </Section>
79
80 <Section Name="llAngleBetween"> 98 <Section Name="llAngleBetween">
81 <Key Name="inventoryID" Value="6b341608-b34e-11dc-8314-0800200c9a66" /> 99 <Key Name="inventoryID" Value="6b341608-b34e-11dc-8314-0800200c9a66" />
82 <Key Name="assetID" Value="6b341609-b34e-11dc-8314-0800200c9a66" /> 100 <Key Name="assetID" Value="6b341609-b34e-11dc-8314-0800200c9a66" />
@@ -85,8 +103,11 @@
85 <Key Name="name" Value="llAngleBetween" /> 103 <Key Name="name" Value="llAngleBetween" />
86 <Key Name="assetType" Value="10" /> 104 <Key Name="assetType" Value="10" />
87 <Key Name="inventoryType" Value="10" /> 105 <Key Name="inventoryType" Value="10" />
106 <Key Name="currentPermissions" Value="257487132" />
107 <Key Name="nextPermissions" Value="257487132" />
108 <Key Name="everyonePermissions" Value="257487132" />
109 <Key Name="basePermissions" Value="257487132" />
88 </Section> 110 </Section>
89
90 <Section Name="llAsin"> 111 <Section Name="llAsin">
91 <Key Name="inventoryID" Value="7e7422ec-b425-11dc-8314-0800200c9a66" /> 112 <Key Name="inventoryID" Value="7e7422ec-b425-11dc-8314-0800200c9a66" />
92 <Key Name="assetID" Value="7e7422ed-b425-11dc-8314-0800200c9a66" /> 113 <Key Name="assetID" Value="7e7422ed-b425-11dc-8314-0800200c9a66" />
@@ -95,8 +116,11 @@
95 <Key Name="name" Value="llAsin" /> 116 <Key Name="name" Value="llAsin" />
96 <Key Name="assetType" Value="10" /> 117 <Key Name="assetType" Value="10" />
97 <Key Name="inventoryType" Value="10" /> 118 <Key Name="inventoryType" Value="10" />
119 <Key Name="currentPermissions" Value="257487132" />
120 <Key Name="nextPermissions" Value="257487132" />
121 <Key Name="everyonePermissions" Value="257487132" />
122 <Key Name="basePermissions" Value="257487132" />
98 </Section> 123 </Section>
99
100 <Section Name="llAtan2"> 124 <Section Name="llAtan2">
101 <Key Name="inventoryID" Value="7e7422ee-b425-11dc-8314-0800200c9a66" /> 125 <Key Name="inventoryID" Value="7e7422ee-b425-11dc-8314-0800200c9a66" />
102 <Key Name="assetID" Value="7e7422ef-b425-11dc-8314-0800200c9a66" /> 126 <Key Name="assetID" Value="7e7422ef-b425-11dc-8314-0800200c9a66" />
@@ -105,8 +129,11 @@
105 <Key Name="name" Value="llAtan2" /> 129 <Key Name="name" Value="llAtan2" />
106 <Key Name="assetType" Value="10" /> 130 <Key Name="assetType" Value="10" />
107 <Key Name="inventoryType" Value="10" /> 131 <Key Name="inventoryType" Value="10" />
132 <Key Name="currentPermissions" Value="257487132" />
133 <Key Name="nextPermissions" Value="257487132" />
134 <Key Name="everyonePermissions" Value="257487132" />
135 <Key Name="basePermissions" Value="257487132" />
108 </Section> 136 </Section>
109
110 <Section Name="llApplyImpulse"> 137 <Section Name="llApplyImpulse">
111 <Key Name="inventoryID" Value="714ec678-b419-11dc-8314-0800200c9a66" /> 138 <Key Name="inventoryID" Value="714ec678-b419-11dc-8314-0800200c9a66" />
112 <Key Name="assetID" Value="714ec679-b419-11dc-8314-0800200c9a66" /> 139 <Key Name="assetID" Value="714ec679-b419-11dc-8314-0800200c9a66" />
@@ -115,8 +142,11 @@
115 <Key Name="name" Value="llApplyImpulse" /> 142 <Key Name="name" Value="llApplyImpulse" />
116 <Key Name="assetType" Value="10" /> 143 <Key Name="assetType" Value="10" />
117 <Key Name="inventoryType" Value="10" /> 144 <Key Name="inventoryType" Value="10" />
145 <Key Name="currentPermissions" Value="257487132" />
146 <Key Name="nextPermissions" Value="257487132" />
147 <Key Name="everyonePermissions" Value="257487132" />
148 <Key Name="basePermissions" Value="257487132" />
118 </Section> 149 </Section>
119
120 <Section Name="llAvatarOnSitTarget"> 150 <Section Name="llAvatarOnSitTarget">
121 <Key Name="inventoryID" Value="579fc820-b426-11dc-8314-0800200c9a66" /> 151 <Key Name="inventoryID" Value="579fc820-b426-11dc-8314-0800200c9a66" />
122 <Key Name="assetID" Value="579fc821-b426-11dc-8314-0800200c9a66" /> 152 <Key Name="assetID" Value="579fc821-b426-11dc-8314-0800200c9a66" />
@@ -125,8 +155,11 @@
125 <Key Name="name" Value="llAvatarOnSitTarget" /> 155 <Key Name="name" Value="llAvatarOnSitTarget" />
126 <Key Name="assetType" Value="10" /> 156 <Key Name="assetType" Value="10" />
127 <Key Name="inventoryType" Value="10" /> 157 <Key Name="inventoryType" Value="10" />
158 <Key Name="currentPermissions" Value="257487132" />
159 <Key Name="nextPermissions" Value="257487132" />
160 <Key Name="everyonePermissions" Value="257487132" />
161 <Key Name="basePermissions" Value="257487132" />
128 </Section> 162 </Section>
129
130<!-- B == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba004"/> --> 163<!-- B == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba004"/> -->
131 <Section Name="llBase64ToString"> 164 <Section Name="llBase64ToString">
132 <Key Name="inventoryID" Value="1d4c71d8-b428-11dc-8314-0800200c9a66" /> 165 <Key Name="inventoryID" Value="1d4c71d8-b428-11dc-8314-0800200c9a66" />
@@ -136,8 +169,11 @@
136 <Key Name="name" Value="llBase64ToString" /> 169 <Key Name="name" Value="llBase64ToString" />
137 <Key Name="assetType" Value="10" /> 170 <Key Name="assetType" Value="10" />
138 <Key Name="inventoryType" Value="10" /> 171 <Key Name="inventoryType" Value="10" />
172 <Key Name="currentPermissions" Value="257487132" />
173 <Key Name="nextPermissions" Value="257487132" />
174 <Key Name="everyonePermissions" Value="257487132" />
175 <Key Name="basePermissions" Value="257487132" />
139 </Section> 176 </Section>
140
141<!-- C == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba005"/> --> 177<!-- C == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba005"/> -->
142<!-- D == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba006"/> --> 178<!-- D == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba006"/> -->
143<!-- E == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba007"/> --> 179<!-- E == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba007"/> -->
@@ -151,7 +187,6 @@
151<!-- O == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba015"/> --> 187<!-- O == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba015"/> -->
152<!-- P == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba016"/> --> 188<!-- P == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba016"/> -->
153<!-- R == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba017"/> --> 189<!-- R == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba017"/> -->
154
155 <Section Name="llRemoveFromLandBanList"> 190 <Section Name="llRemoveFromLandBanList">
156 <Key Name="inventoryID" Value="299b2100-b392-11dc-8314-0800200c9a66" /> 191 <Key Name="inventoryID" Value="299b2100-b392-11dc-8314-0800200c9a66" />
157 <Key Name="assetID" Value="299b2101-b392-11dc-8314-0800200c9a66" /> 192 <Key Name="assetID" Value="299b2101-b392-11dc-8314-0800200c9a66" />
@@ -160,8 +195,11 @@
160 <Key Name="name" Value="llRemoveFromLandBanList" /> 195 <Key Name="name" Value="llRemoveFromLandBanList" />
161 <Key Name="assetType" Value="10" /> 196 <Key Name="assetType" Value="10" />
162 <Key Name="inventoryType" Value="10" /> 197 <Key Name="inventoryType" Value="10" />
198 <Key Name="currentPermissions" Value="257487132" />
199 <Key Name="nextPermissions" Value="257487132" />
200 <Key Name="everyonePermissions" Value="257487132" />
201 <Key Name="basePermissions" Value="257487132" />
163 </Section> 202 </Section>
164
165 <Section Name="llRemoveFromLandPassList"> 203 <Section Name="llRemoveFromLandPassList">
166 <Key Name="inventoryID" Value="299b2102-b392-11dc-8314-0800200c9a66" /> 204 <Key Name="inventoryID" Value="299b2102-b392-11dc-8314-0800200c9a66" />
167 <Key Name="assetID" Value="299b2103-b392-11dc-8314-0800200c9a66" /> 205 <Key Name="assetID" Value="299b2103-b392-11dc-8314-0800200c9a66" />
@@ -170,8 +208,11 @@
170 <Key Name="name" Value="llRemoveFromLandPassList" /> 208 <Key Name="name" Value="llRemoveFromLandPassList" />
171 <Key Name="assetType" Value="10" /> 209 <Key Name="assetType" Value="10" />
172 <Key Name="inventoryType" Value="10" /> 210 <Key Name="inventoryType" Value="10" />
211 <Key Name="currentPermissions" Value="257487132" />
212 <Key Name="nextPermissions" Value="257487132" />
213 <Key Name="everyonePermissions" Value="257487132" />
214 <Key Name="basePermissions" Value="257487132" />
173 </Section> 215 </Section>
174
175 <Section Name="llResetLandBanList"> 216 <Section Name="llResetLandBanList">
176 <Key Name="inventoryID" Value="366ac8e6-b391-11dc-8314-0800200c9a66" /> 217 <Key Name="inventoryID" Value="366ac8e6-b391-11dc-8314-0800200c9a66" />
177 <Key Name="assetID" Value="366ac8e7-b391-11dc-8314-0800200c9a66" /> 218 <Key Name="assetID" Value="366ac8e7-b391-11dc-8314-0800200c9a66" />
@@ -180,8 +221,11 @@
180 <Key Name="name" Value="llResetLandBanList" /> 221 <Key Name="name" Value="llResetLandBanList" />
181 <Key Name="assetType" Value="10" /> 222 <Key Name="assetType" Value="10" />
182 <Key Name="inventoryType" Value="10" /> 223 <Key Name="inventoryType" Value="10" />
224 <Key Name="currentPermissions" Value="257487132" />
225 <Key Name="nextPermissions" Value="257487132" />
226 <Key Name="everyonePermissions" Value="257487132" />
227 <Key Name="basePermissions" Value="257487132" />
183 </Section> 228 </Section>
184
185 <Section Name="llResetLandPassList"> 229 <Section Name="llResetLandPassList">
186 <Key Name="inventoryID" Value="366ac8e8-b391-11dc-8314-0800200c9a66" /> 230 <Key Name="inventoryID" Value="366ac8e8-b391-11dc-8314-0800200c9a66" />
187 <Key Name="assetID" Value="366ac8e9-b391-11dc-8314-0800200c9a66" /> 231 <Key Name="assetID" Value="366ac8e9-b391-11dc-8314-0800200c9a66" />
@@ -190,8 +234,11 @@
190 <Key Name="name" Value="llResetLandPassList" /> 234 <Key Name="name" Value="llResetLandPassList" />
191 <Key Name="assetType" Value="10" /> 235 <Key Name="assetType" Value="10" />
192 <Key Name="inventoryType" Value="10" /> 236 <Key Name="inventoryType" Value="10" />
237 <Key Name="currentPermissions" Value="257487132" />
238 <Key Name="nextPermissions" Value="257487132" />
239 <Key Name="everyonePermissions" Value="257487132" />
240 <Key Name="basePermissions" Value="257487132" />
193 </Section> 241 </Section>
194
195<!-- S == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba018"/> --> 242<!-- S == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba018"/> -->
196 <Section Name="llSay"> 243 <Section Name="llSay">
197 <Key Name="inventoryID" Value="3af51d20-b38f-11dc-8314-0800200c9a66" /> 244 <Key Name="inventoryID" Value="3af51d20-b38f-11dc-8314-0800200c9a66" />
@@ -201,8 +248,11 @@
201 <Key Name="name" Value="llSay" /> 248 <Key Name="name" Value="llSay" />
202 <Key Name="assetType" Value="10" /> 249 <Key Name="assetType" Value="10" />
203 <Key Name="inventoryType" Value="10" /> 250 <Key Name="inventoryType" Value="10" />
251 <Key Name="currentPermissions" Value="257487132" />
252 <Key Name="nextPermissions" Value="257487132" />
253 <Key Name="everyonePermissions" Value="257487132" />
254 <Key Name="basePermissions" Value="257487132" />
204 </Section> 255 </Section>
205
206 <Section Name="llSetParcelMusicURL"> 256 <Section Name="llSetParcelMusicURL">
207 <Key Name="inventoryID" Value="3603a4f9-b360-11dc-8314-0800200c9a66" /> 257 <Key Name="inventoryID" Value="3603a4f9-b360-11dc-8314-0800200c9a66" />
208 <Key Name="assetID" Value="3603a4f8-b360-11dc-8314-0800200c9a66" /> 258 <Key Name="assetID" Value="3603a4f8-b360-11dc-8314-0800200c9a66" />
@@ -211,8 +261,11 @@
211 <Key Name="name" Value="llSetParcelMusicURL" /> 261 <Key Name="name" Value="llSetParcelMusicURL" />
212 <Key Name="assetType" Value="10" /> 262 <Key Name="assetType" Value="10" />
213 <Key Name="inventoryType" Value="10" /> 263 <Key Name="inventoryType" Value="10" />
264 <Key Name="currentPermissions" Value="257487132" />
265 <Key Name="nextPermissions" Value="257487132" />
266 <Key Name="everyonePermissions" Value="257487132" />
267 <Key Name="basePermissions" Value="257487132" />
214 </Section> 268 </Section>
215
216 <Section Name="llSetRot"> 269 <Section Name="llSetRot">
217 <Key Name="inventoryID" Value="220baef8-b376-11dc-8314-0800200c9a66" /> 270 <Key Name="inventoryID" Value="220baef8-b376-11dc-8314-0800200c9a66" />
218 <Key Name="assetID" Value="220baef9-b376-11dc-8314-0800200c9a66" /> 271 <Key Name="assetID" Value="220baef9-b376-11dc-8314-0800200c9a66" />
@@ -221,8 +274,11 @@
221 <Key Name="name" Value="llSetRot" /> 274 <Key Name="name" Value="llSetRot" />
222 <Key Name="assetType" Value="10" /> 275 <Key Name="assetType" Value="10" />
223 <Key Name="inventoryType" Value="10" /> 276 <Key Name="inventoryType" Value="10" />
277 <Key Name="currentPermissions" Value="257487132" />
278 <Key Name="nextPermissions" Value="257487132" />
279 <Key Name="everyonePermissions" Value="257487132" />
280 <Key Name="basePermissions" Value="257487132" />
224 </Section> 281 </Section>
225
226<!-- T == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba019"/> --> 282<!-- T == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba019"/> -->
227<!-- U == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba020"/> --> 283<!-- U == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba020"/> -->
228<!-- V == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba021"/> --> 284<!-- V == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba021"/> -->
@@ -232,166 +288,213 @@
232 <Section Name="Kan-Ed Test1"> 288 <Section Name="Kan-Ed Test1">
233 <Key Name="inventoryID" Value="42b6ac70-d21f-11dd-ad8b-0800200c9a66" /> 289 <Key Name="inventoryID" Value="42b6ac70-d21f-11dd-ad8b-0800200c9a66" />
234 <Key Name="assetID" Value="42b6ac70-d21f-11dd-ad8b-0800200c9a66" /> 290 <Key Name="assetID" Value="42b6ac70-d21f-11dd-ad8b-0800200c9a66" />
235 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 291 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
236 <Key Name="description" Value="Kan-Ed Test1" /> 292 <Key Name="description" Value="Kan-Ed Test1" />
237 <Key Name="name" Value="Kan-Ed Test1" /> 293 <Key Name="name" Value="Kan-Ed Test1" />
238 <Key Name="assetType" Value="10" /> 294 <Key Name="assetType" Value="10" />
239 <Key Name="inventoryType" Value="10" /> 295 <Key Name="inventoryType" Value="10" />
296 <Key Name="currentPermissions" Value="257487132" />
297 <Key Name="nextPermissions" Value="257487132" />
298 <Key Name="everyonePermissions" Value="257487132" />
299 <Key Name="basePermissions" Value="257487132" />
240 </Section> 300 </Section>
241
242 <Section Name="Kan-Ed Test2"> 301 <Section Name="Kan-Ed Test2">
243 <Key Name="inventoryID" Value="42b6ac71-d21f-11dd-ad8b-0800200c9a66" /> 302 <Key Name="inventoryID" Value="42b6ac71-d21f-11dd-ad8b-0800200c9a66" />
244 <Key Name="assetID" Value="42b6ac71-d21f-11dd-ad8b-0800200c9a66" /> 303 <Key Name="assetID" Value="42b6ac71-d21f-11dd-ad8b-0800200c9a66" />
245 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 304 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
246 <Key Name="description" Value="Kan-Ed Test2" /> 305 <Key Name="description" Value="Kan-Ed Test2" />
247 <Key Name="name" Value="Kan-Ed Test2" /> 306 <Key Name="name" Value="Kan-Ed Test2" />
248 <Key Name="assetType" Value="10" /> 307 <Key Name="assetType" Value="10" />
249 <Key Name="inventoryType" Value="10" /> 308 <Key Name="inventoryType" Value="10" />
309 <Key Name="currentPermissions" Value="257487132" />
310 <Key Name="nextPermissions" Value="257487132" />
311 <Key Name="everyonePermissions" Value="257487132" />
312 <Key Name="basePermissions" Value="257487132" />
250 </Section> 313 </Section>
251
252 <Section Name="Kan-Ed Test3"> 314 <Section Name="Kan-Ed Test3">
253 <Key Name="inventoryID" Value="42b6ac72-d21f-11dd-ad8b-0800200c9a66" /> 315 <Key Name="inventoryID" Value="42b6ac72-d21f-11dd-ad8b-0800200c9a66" />
254 <Key Name="assetID" Value="42b6ac72-d21f-11dd-ad8b-0800200c9a66" /> 316 <Key Name="assetID" Value="42b6ac72-d21f-11dd-ad8b-0800200c9a66" />
255 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 317 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
256 <Key Name="description" Value="Kan-Ed Test3" /> 318 <Key Name="description" Value="Kan-Ed Test3" />
257 <Key Name="name" Value="Kan-Ed Test3" /> 319 <Key Name="name" Value="Kan-Ed Test3" />
258 <Key Name="assetType" Value="10" /> 320 <Key Name="assetType" Value="10" />
259 <Key Name="inventoryType" Value="10" /> 321 <Key Name="inventoryType" Value="10" />
322 <Key Name="currentPermissions" Value="257487132" />
323 <Key Name="nextPermissions" Value="257487132" />
324 <Key Name="everyonePermissions" Value="257487132" />
325 <Key Name="basePermissions" Value="257487132" />
260 </Section> 326 </Section>
261
262 <Section Name="Kan-Ed Test4"> 327 <Section Name="Kan-Ed Test4">
263 <Key Name="inventoryID" Value="42b6ac73-d21f-11dd-ad8b-0800200c9a66" /> 328 <Key Name="inventoryID" Value="42b6ac73-d21f-11dd-ad8b-0800200c9a66" />
264 <Key Name="assetID" Value="42b6ac73-d21f-11dd-ad8b-0800200c9a66" /> 329 <Key Name="assetID" Value="42b6ac73-d21f-11dd-ad8b-0800200c9a66" />
265 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 330 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
266 <Key Name="description" Value="Kan-Ed Test4" /> 331 <Key Name="description" Value="Kan-Ed Test4" />
267 <Key Name="name" Value="Kan-Ed Test4" /> 332 <Key Name="name" Value="Kan-Ed Test4" />
268 <Key Name="assetType" Value="10" /> 333 <Key Name="assetType" Value="10" />
269 <Key Name="inventoryType" Value="10" /> 334 <Key Name="inventoryType" Value="10" />
335 <Key Name="currentPermissions" Value="257487132" />
336 <Key Name="nextPermissions" Value="257487132" />
337 <Key Name="everyonePermissions" Value="257487132" />
338 <Key Name="basePermissions" Value="257487132" />
270 </Section> 339 </Section>
271
272 <Section Name="Kan-Ed Test5"> 340 <Section Name="Kan-Ed Test5">
273 <Key Name="inventoryID" Value="42b6ac74-d21f-11dd-ad8b-0800200c9a66" /> 341 <Key Name="inventoryID" Value="42b6ac74-d21f-11dd-ad8b-0800200c9a66" />
274 <Key Name="assetID" Value="42b6ac74-d21f-11dd-ad8b-0800200c9a66" /> 342 <Key Name="assetID" Value="42b6ac74-d21f-11dd-ad8b-0800200c9a66" />
275 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 343 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
276 <Key Name="description" Value="Kan-Ed Test5" /> 344 <Key Name="description" Value="Kan-Ed Test5" />
277 <Key Name="name" Value="Kan-Ed Test5" /> 345 <Key Name="name" Value="Kan-Ed Test5" />
278 <Key Name="assetType" Value="10" /> 346 <Key Name="assetType" Value="10" />
279 <Key Name="inventoryType" Value="10" /> 347 <Key Name="inventoryType" Value="10" />
348 <Key Name="currentPermissions" Value="257487132" />
349 <Key Name="nextPermissions" Value="257487132" />
350 <Key Name="everyonePermissions" Value="257487132" />
351 <Key Name="basePermissions" Value="257487132" />
280 </Section> 352 </Section>
281
282 <Section Name="Kan-Ed Test6"> 353 <Section Name="Kan-Ed Test6">
283 <Key Name="inventoryID" Value="42b6ac75-d21f-11dd-ad8b-0800200c9a66" /> 354 <Key Name="inventoryID" Value="42b6ac75-d21f-11dd-ad8b-0800200c9a66" />
284 <Key Name="assetID" Value="42b6ac75-d21f-11dd-ad8b-0800200c9a66" /> 355 <Key Name="assetID" Value="42b6ac75-d21f-11dd-ad8b-0800200c9a66" />
285 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 356 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
286 <Key Name="description" Value="Kan-Ed Test6" /> 357 <Key Name="description" Value="Kan-Ed Test6" />
287 <Key Name="name" Value="Kan-Ed Test6" /> 358 <Key Name="name" Value="Kan-Ed Test6" />
288 <Key Name="assetType" Value="10" /> 359 <Key Name="assetType" Value="10" />
289 <Key Name="inventoryType" Value="10" /> 360 <Key Name="inventoryType" Value="10" />
361 <Key Name="currentPermissions" Value="257487132" />
362 <Key Name="nextPermissions" Value="257487132" />
363 <Key Name="everyonePermissions" Value="257487132" />
364 <Key Name="basePermissions" Value="257487132" />
290 </Section> 365 </Section>
291
292 <Section Name="Kan-Ed Test7"> 366 <Section Name="Kan-Ed Test7">
293 <Key Name="inventoryID" Value="42b6ac76-d21f-11dd-ad8b-0800200c9a66" /> 367 <Key Name="inventoryID" Value="42b6ac76-d21f-11dd-ad8b-0800200c9a66" />
294 <Key Name="assetID" Value="42b6ac76-d21f-11dd-ad8b-0800200c9a66" /> 368 <Key Name="assetID" Value="42b6ac76-d21f-11dd-ad8b-0800200c9a66" />
295 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 369 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
296 <Key Name="description" Value="Kan-Ed Test7" /> 370 <Key Name="description" Value="Kan-Ed Test7" />
297 <Key Name="name" Value="Kan-Ed Test7" /> 371 <Key Name="name" Value="Kan-Ed Test7" />
298 <Key Name="assetType" Value="10" /> 372 <Key Name="assetType" Value="10" />
299 <Key Name="inventoryType" Value="10" /> 373 <Key Name="inventoryType" Value="10" />
374 <Key Name="currentPermissions" Value="257487132" />
375 <Key Name="nextPermissions" Value="257487132" />
376 <Key Name="everyonePermissions" Value="257487132" />
377 <Key Name="basePermissions" Value="257487132" />
300 </Section> 378 </Section>
301
302 <Section Name="Kan-Ed Test8"> 379 <Section Name="Kan-Ed Test8">
303 <Key Name="inventoryID" Value="42b6ac77-d21f-11dd-ad8b-0800200c9a66" /> 380 <Key Name="inventoryID" Value="42b6ac77-d21f-11dd-ad8b-0800200c9a66" />
304 <Key Name="assetID" Value="42b6ac77-d21f-11dd-ad8b-0800200c9a66" /> 381 <Key Name="assetID" Value="42b6ac77-d21f-11dd-ad8b-0800200c9a66" />
305 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 382 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
306 <Key Name="description" Value="Kan-Ed Test8" /> 383 <Key Name="description" Value="Kan-Ed Test8" />
307 <Key Name="name" Value="Kan-Ed Test8" /> 384 <Key Name="name" Value="Kan-Ed Test8" />
308 <Key Name="assetType" Value="10" /> 385 <Key Name="assetType" Value="10" />
309 <Key Name="inventoryType" Value="10" /> 386 <Key Name="inventoryType" Value="10" />
387 <Key Name="currentPermissions" Value="257487132" />
388 <Key Name="nextPermissions" Value="257487132" />
389 <Key Name="everyonePermissions" Value="257487132" />
390 <Key Name="basePermissions" Value="257487132" />
310 </Section> 391 </Section>
311
312 <Section Name="Kan-Ed Test9"> 392 <Section Name="Kan-Ed Test9">
313 <Key Name="inventoryID" Value="42b6ac78-d21f-11dd-ad8b-0800200c9a66" /> 393 <Key Name="inventoryID" Value="42b6ac78-d21f-11dd-ad8b-0800200c9a66" />
314 <Key Name="assetID" Value="42b6ac78-d21f-11dd-ad8b-0800200c9a66" /> 394 <Key Name="assetID" Value="42b6ac78-d21f-11dd-ad8b-0800200c9a66" />
315 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 395 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
316 <Key Name="description" Value="Kan-Ed Test9" /> 396 <Key Name="description" Value="Kan-Ed Test9" />
317 <Key Name="name" Value="Kan-Ed Test9" /> 397 <Key Name="name" Value="Kan-Ed Test9" />
318 <Key Name="assetType" Value="10" /> 398 <Key Name="assetType" Value="10" />
319 <Key Name="inventoryType" Value="10" /> 399 <Key Name="inventoryType" Value="10" />
400 <Key Name="currentPermissions" Value="257487132" />
401 <Key Name="nextPermissions" Value="257487132" />
402 <Key Name="everyonePermissions" Value="257487132" />
403 <Key Name="basePermissions" Value="257487132" />
320 </Section> 404 </Section>
321
322 <Section Name="Kan-Ed Test10"> 405 <Section Name="Kan-Ed Test10">
323 <Key Name="inventoryID" Value="42b6ac79-d21f-11dd-ad8b-0800200c9a66" /> 406 <Key Name="inventoryID" Value="42b6ac79-d21f-11dd-ad8b-0800200c9a66" />
324 <Key Name="assetID" Value="42b6ac79-d21f-11dd-ad8b-0800200c9a66" /> 407 <Key Name="assetID" Value="42b6ac79-d21f-11dd-ad8b-0800200c9a66" />
325 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 408 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
326 <Key Name="description" Value="Kan-Ed Test10" /> 409 <Key Name="description" Value="Kan-Ed Test10" />
327 <Key Name="name" Value="Kan-Ed Test10" /> 410 <Key Name="name" Value="Kan-Ed Test10" />
328 <Key Name="assetType" Value="10" /> 411 <Key Name="assetType" Value="10" />
329 <Key Name="inventoryType" Value="10" /> 412 <Key Name="inventoryType" Value="10" />
413 <Key Name="currentPermissions" Value="257487132" />
414 <Key Name="nextPermissions" Value="257487132" />
415 <Key Name="everyonePermissions" Value="257487132" />
416 <Key Name="basePermissions" Value="257487132" />
330 </Section> 417 </Section>
331
332 <Section Name="Kan-Ed Test11"> 418 <Section Name="Kan-Ed Test11">
333 <Key Name="inventoryID" Value="42b6ac7a-d21f-11dd-ad8b-0800200c9a66" /> 419 <Key Name="inventoryID" Value="42b6ac7a-d21f-11dd-ad8b-0800200c9a66" />
334 <Key Name="assetID" Value="42b6ac7a-d21f-11dd-ad8b-0800200c9a66" /> 420 <Key Name="assetID" Value="42b6ac7a-d21f-11dd-ad8b-0800200c9a66" />
335 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 421 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
336 <Key Name="description" Value="Kan-Ed Test11" /> 422 <Key Name="description" Value="Kan-Ed Test11" />
337 <Key Name="name" Value="Kan-Ed Test11" /> 423 <Key Name="name" Value="Kan-Ed Test11" />
338 <Key Name="assetType" Value="10" /> 424 <Key Name="assetType" Value="10" />
339 <Key Name="inventoryType" Value="10" /> 425 <Key Name="inventoryType" Value="10" />
426 <Key Name="currentPermissions" Value="257487132" />
427 <Key Name="nextPermissions" Value="257487132" />
428 <Key Name="everyonePermissions" Value="257487132" />
429 <Key Name="basePermissions" Value="257487132" />
340 </Section> 430 </Section>
341
342 <Section Name="Kan-Ed Test12"> 431 <Section Name="Kan-Ed Test12">
343 <Key Name="inventoryID" Value="42b6ac7b-d21f-11dd-ad8b-0800200c9a66" /> 432 <Key Name="inventoryID" Value="42b6ac7b-d21f-11dd-ad8b-0800200c9a66" />
344 <Key Name="assetID" Value="42b6ac7b-d21f-11dd-ad8b-0800200c9a66" /> 433 <Key Name="assetID" Value="42b6ac7b-d21f-11dd-ad8b-0800200c9a66" />
345 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 434 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
346 <Key Name="description" Value="Kan-Ed Test12" /> 435 <Key Name="description" Value="Kan-Ed Test12" />
347 <Key Name="name" Value="Kan-Ed Test12" /> 436 <Key Name="name" Value="Kan-Ed Test12" />
348 <Key Name="assetType" Value="10" /> 437 <Key Name="assetType" Value="10" />
349 <Key Name="inventoryType" Value="10" /> 438 <Key Name="inventoryType" Value="10" />
439 <Key Name="currentPermissions" Value="257487132" />
440 <Key Name="nextPermissions" Value="257487132" />
441 <Key Name="everyonePermissions" Value="257487132" />
442 <Key Name="basePermissions" Value="257487132" />
350 </Section> 443 </Section>
351
352 <Section Name="Kan-Ed Test13"> 444 <Section Name="Kan-Ed Test13">
353 <Key Name="inventoryID" Value="42b6ac7c-d21f-11dd-ad8b-0800200c9a66" /> 445 <Key Name="inventoryID" Value="42b6ac7c-d21f-11dd-ad8b-0800200c9a66" />
354 <Key Name="assetID" Value="42b6ac7c-d21f-11dd-ad8b-0800200c9a66" /> 446 <Key Name="assetID" Value="42b6ac7c-d21f-11dd-ad8b-0800200c9a66" />
355 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 447 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
356 <Key Name="description" Value="Kan-Ed Test13" /> 448 <Key Name="description" Value="Kan-Ed Test13" />
357 <Key Name="name" Value="Kan-Ed Test13" /> 449 <Key Name="name" Value="Kan-Ed Test13" />
358 <Key Name="assetType" Value="10" /> 450 <Key Name="assetType" Value="10" />
359 <Key Name="inventoryType" Value="10" /> 451 <Key Name="inventoryType" Value="10" />
452 <Key Name="currentPermissions" Value="257487132" />
453 <Key Name="nextPermissions" Value="257487132" />
454 <Key Name="everyonePermissions" Value="257487132" />
455 <Key Name="basePermissions" Value="257487132" />
360 </Section> 456 </Section>
361
362 <Section Name="Kan-Ed Test14"> 457 <Section Name="Kan-Ed Test14">
363 <Key Name="inventoryID" Value="42b6ac7d-d21f-11dd-ad8b-0800200c9a66" /> 458 <Key Name="inventoryID" Value="42b6ac7d-d21f-11dd-ad8b-0800200c9a66" />
364 <Key Name="assetID" Value="42b6ac7d-d21f-11dd-ad8b-0800200c9a66" /> 459 <Key Name="assetID" Value="42b6ac7d-d21f-11dd-ad8b-0800200c9a66" />
365 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 460 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
366 <Key Name="description" Value="Kan-Ed Test14" /> 461 <Key Name="description" Value="Kan-Ed Test14" />
367 <Key Name="name" Value="Kan-Ed Test14" /> 462 <Key Name="name" Value="Kan-Ed Test14" />
368 <Key Name="assetType" Value="10" /> 463 <Key Name="assetType" Value="10" />
369 <Key Name="inventoryType" Value="10" /> 464 <Key Name="inventoryType" Value="10" />
465 <Key Name="currentPermissions" Value="257487132" />
466 <Key Name="nextPermissions" Value="257487132" />
467 <Key Name="everyonePermissions" Value="257487132" />
468 <Key Name="basePermissions" Value="257487132" />
370 </Section> 469 </Section>
371
372 <Section Name="Kan-Ed Test15"> 470 <Section Name="Kan-Ed Test15">
373 <Key Name="inventoryID" Value="42b6ac7e-d21f-11dd-ad8b-0800200c9a66" /> 471 <Key Name="inventoryID" Value="42b6ac7e-d21f-11dd-ad8b-0800200c9a66" />
374 <Key Name="assetID" Value="42b6ac7e-d21f-11dd-ad8b-0800200c9a66" /> 472 <Key Name="assetID" Value="42b6ac7e-d21f-11dd-ad8b-0800200c9a66" />
375 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 473 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
376 <Key Name="description" Value="Kan-Ed Test15" /> 474 <Key Name="description" Value="Kan-Ed Test15" />
377 <Key Name="name" Value="Kan-Ed Test15" /> 475 <Key Name="name" Value="Kan-Ed Test15" />
378 <Key Name="assetType" Value="10" /> 476 <Key Name="assetType" Value="10" />
379 <Key Name="inventoryType" Value="10" /> 477 <Key Name="inventoryType" Value="10" />
478 <Key Name="currentPermissions" Value="257487132" />
479 <Key Name="nextPermissions" Value="257487132" />
480 <Key Name="everyonePermissions" Value="257487132" />
481 <Key Name="basePermissions" Value="257487132" />
380 </Section> 482 </Section>
381
382 <Section Name="Kan-Ed Test16"> 483 <Section Name="Kan-Ed Test16">
383 <Key Name="inventoryID" Value="42b6ac7f-d21f-11dd-ad8b-0800200c9a66" /> 484 <Key Name="inventoryID" Value="42b6ac7f-d21f-11dd-ad8b-0800200c9a66" />
384 <Key Name="assetID" Value="42b6ac7f-d21f-11dd-ad8b-0800200c9a66" /> 485 <Key Name="assetID" Value="42b6ac7f-d21f-11dd-ad8b-0800200c9a66" />
385 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 486 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
386 <Key Name="description" Value="Kan-Ed Test16" /> 487 <Key Name="description" Value="Kan-Ed Test16" />
387 <Key Name="name" Value="Kan-Ed Test16" /> 488 <Key Name="name" Value="Kan-Ed Test16" />
388 <Key Name="assetType" Value="10" /> 489 <Key Name="assetType" Value="10" />
389 <Key Name="inventoryType" Value="10" /> 490 <Key Name="inventoryType" Value="10" />
491 <Key Name="currentPermissions" Value="257487132" />
492 <Key Name="nextPermissions" Value="257487132" />
493 <Key Name="everyonePermissions" Value="257487132" />
494 <Key Name="basePermissions" Value="257487132" />
390 </Section> 495 </Section>
391
392<!-- .Other testing scripts == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba025"/> --> 496<!-- .Other testing scripts == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba025"/> -->
393<!-- OpenSim Specific Scripts == <Key Name="folderID" Value="284858c8-9391-6bf1-ddf5-b936f73de853"/> --> 497<!-- OpenSim Specific Scripts == <Key Name="folderID" Value="284858c8-9391-6bf1-ddf5-b936f73de853"/> -->
394
395 <Section Name="osTextBoard"> 498 <Section Name="osTextBoard">
396 <Key Name="inventoryID" Value="2ddcb059-20c5-d169-4c42-673f16d3284b" /> 499 <Key Name="inventoryID" Value="2ddcb059-20c5-d169-4c42-673f16d3284b" />
397 <Key Name="assetID" Value="2ddcb059-20c5-d169-4c42-673f16d3284b" /> 500 <Key Name="assetID" Value="2ddcb059-20c5-d169-4c42-673f16d3284b" />
@@ -400,8 +503,11 @@
400 <Key Name="name" Value="osTextBoard" /> 503 <Key Name="name" Value="osTextBoard" />
401 <Key Name="assetType" Value="10" /> 504 <Key Name="assetType" Value="10" />
402 <Key Name="inventoryType" Value="10" /> 505 <Key Name="inventoryType" Value="10" />
506 <Key Name="currentPermissions" Value="257487132" />
507 <Key Name="nextPermissions" Value="257487132" />
508 <Key Name="everyonePermissions" Value="257487132" />
509 <Key Name="basePermissions" Value="257487132" />
403 </Section> 510 </Section>
404
405 <Section Name="osWeatherMap"> 511 <Section Name="osWeatherMap">
406 <Key Name="inventoryID" Value="d63ad3ec-b687-6c38-410d-31ba3e50ce4d" /> 512 <Key Name="inventoryID" Value="d63ad3ec-b687-6c38-410d-31ba3e50ce4d" />
407 <Key Name="assetID" Value="d63ad3ec-b687-6c38-410d-31ba3e50ce4d" /> 513 <Key Name="assetID" Value="d63ad3ec-b687-6c38-410d-31ba3e50ce4d" />
@@ -410,8 +516,11 @@
410 <Key Name="name" Value="osWeatherMap" /> 516 <Key Name="name" Value="osWeatherMap" />
411 <Key Name="assetType" Value="10" /> 517 <Key Name="assetType" Value="10" />
412 <Key Name="inventoryType" Value="10" /> 518 <Key Name="inventoryType" Value="10" />
519 <Key Name="currentPermissions" Value="257487132" />
520 <Key Name="nextPermissions" Value="257487132" />
521 <Key Name="everyonePermissions" Value="257487132" />
522 <Key Name="basePermissions" Value="257487132" />
413 </Section> 523 </Section>
414
415 <Section Name="GrafittiBoard"> 524 <Section Name="GrafittiBoard">
416 <Key Name="inventoryID" Value="81305ee4-8caa-9e0a-69a4-76ed57df0c8f" /> 525 <Key Name="inventoryID" Value="81305ee4-8caa-9e0a-69a4-76ed57df0c8f" />
417 <Key Name="assetID" Value="81305ee4-8caa-9e0a-69a4-76ed57df0c8f" /> 526 <Key Name="assetID" Value="81305ee4-8caa-9e0a-69a4-76ed57df0c8f" />
@@ -420,5 +529,9 @@
420 <Key Name="name" Value="GrafittiBoard" /> 529 <Key Name="name" Value="GrafittiBoard" />
421 <Key Name="assetType" Value="10" /> 530 <Key Name="assetType" Value="10" />
422 <Key Name="inventoryType" Value="10" /> 531 <Key Name="inventoryType" Value="10" />
532 <Key Name="currentPermissions" Value="257487132" />
533 <Key Name="nextPermissions" Value="257487132" />
534 <Key Name="everyonePermissions" Value="257487132" />
535 <Key Name="basePermissions" Value="257487132" />
423 </Section> 536 </Section>
424</Nini> 537</Nini>
diff --git a/bin/inventory/SoundsLibrary/SoundsLibraryItems.xml b/bin/inventory/SoundsLibrary/SoundsLibraryItems.xml
index 44194cd..4047a58 100644
--- a/bin/inventory/SoundsLibrary/SoundsLibraryItems.xml
+++ b/bin/inventory/SoundsLibrary/SoundsLibraryItems.xml
@@ -9,6 +9,10 @@
9 <Key Name="name" Value="Example Library Item" /> 9 <Key Name="name" Value="Example Library Item" />
10 <Key Name="assetType" Value="7" /> 10 <Key Name="assetType" Value="7" />
11 <Key Name="inventoryType" Value="7" /> 11 <Key Name="inventoryType" Value="7" />
12 <Key Name="currentPermissions" Value="2147483647" />
13 <Key Name="nextPermissions" Value="2147483647" />
14 <Key Name="everyonePermissions" Value="2147483647" />
15 <Key Name="basePermissions" Value="2147483647" />
12 </Section> 16 </Section>
13--> 17-->
14 18
diff --git a/bin/inventory/TexturesLibrary/TexturesLibraryItems.xml b/bin/inventory/TexturesLibrary/TexturesLibraryItems.xml
index a018a0d..adba99a 100644
--- a/bin/inventory/TexturesLibrary/TexturesLibraryItems.xml
+++ b/bin/inventory/TexturesLibrary/TexturesLibraryItems.xml
@@ -9,6 +9,10 @@
9 <Key Name="name" Value="Example Library Item" /> 9 <Key Name="name" Value="Example Library Item" />
10 <Key Name="assetType" Value="7" /> 10 <Key Name="assetType" Value="7" />
11 <Key Name="inventoryType" Value="7" /> 11 <Key Name="inventoryType" Value="7" />
12 <Key Name="currentPermissions" Value="2147483647" />
13 <Key Name="nextPermissions" Value="2147483647" />
14 <Key Name="everyonePermissions" Value="2147483647" />
15 <Key Name="basePermissions" Value="2147483647" />
12 </Section> 16 </Section>
13--> 17-->
14 18
@@ -20,8 +24,11 @@
20 <Key Name="name" Value="4-tile2" /> 24 <Key Name="name" Value="4-tile2" />
21 <Key Name="assetType" Value="0" /> 25 <Key Name="assetType" Value="0" />
22 <Key Name="inventoryType" Value="0" /> 26 <Key Name="inventoryType" Value="0" />
27 <Key Name="currentPermissions" Value="2147483647" />
28 <Key Name="nextPermissions" Value="2147483647" />
29 <Key Name="everyonePermissions" Value="2147483647" />
30 <Key Name="basePermissions" Value="2147483647" />
23 </Section> 31 </Section>
24
25 <Section Name="4-tile3 Texture"> 32 <Section Name="4-tile3 Texture">
26 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001001" /> 33 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001001" />
27 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001001" /> 34 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001001" />
@@ -30,8 +37,11 @@
30 <Key Name="name" Value="4-tile3" /> 37 <Key Name="name" Value="4-tile3" />
31 <Key Name="assetType" Value="0" /> 38 <Key Name="assetType" Value="0" />
32 <Key Name="inventoryType" Value="0" /> 39 <Key Name="inventoryType" Value="0" />
40 <Key Name="currentPermissions" Value="2147483647" />
41 <Key Name="nextPermissions" Value="2147483647" />
42 <Key Name="everyonePermissions" Value="2147483647" />
43 <Key Name="basePermissions" Value="2147483647" />
33 </Section> 44 </Section>
34
35 <Section Name="brick1_256 Texture"> 45 <Section Name="brick1_256 Texture">
36 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001002" /> 46 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001002" />
37 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001002" /> 47 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001002" />
@@ -40,8 +50,11 @@
40 <Key Name="name" Value="brick1_256" /> 50 <Key Name="name" Value="brick1_256" />
41 <Key Name="assetType" Value="0" /> 51 <Key Name="assetType" Value="0" />
42 <Key Name="inventoryType" Value="0" /> 52 <Key Name="inventoryType" Value="0" />
53 <Key Name="currentPermissions" Value="2147483647" />
54 <Key Name="nextPermissions" Value="2147483647" />
55 <Key Name="everyonePermissions" Value="2147483647" />
56 <Key Name="basePermissions" Value="2147483647" />
43 </Section> 57 </Section>
44
45 <Section Name="brick2_256 Texture"> 58 <Section Name="brick2_256 Texture">
46 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001003" /> 59 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001003" />
47 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001003" /> 60 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001003" />
@@ -50,8 +63,11 @@
50 <Key Name="name" Value="brick2_256" /> 63 <Key Name="name" Value="brick2_256" />
51 <Key Name="assetType" Value="0" /> 64 <Key Name="assetType" Value="0" />
52 <Key Name="inventoryType" Value="0" /> 65 <Key Name="inventoryType" Value="0" />
66 <Key Name="currentPermissions" Value="2147483647" />
67 <Key Name="nextPermissions" Value="2147483647" />
68 <Key Name="everyonePermissions" Value="2147483647" />
69 <Key Name="basePermissions" Value="2147483647" />
53 </Section> 70 </Section>
54
55 <Section Name="brick_mono Texture"> 71 <Section Name="brick_mono Texture">
56 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001004" /> 72 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001004" />
57 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001004" /> 73 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001004" />
@@ -60,8 +76,11 @@
60 <Key Name="name" Value="brick_mono" /> 76 <Key Name="name" Value="brick_mono" />
61 <Key Name="assetType" Value="0" /> 77 <Key Name="assetType" Value="0" />
62 <Key Name="inventoryType" Value="0" /> 78 <Key Name="inventoryType" Value="0" />
79 <Key Name="currentPermissions" Value="2147483647" />
80 <Key Name="nextPermissions" Value="2147483647" />
81 <Key Name="everyonePermissions" Value="2147483647" />
82 <Key Name="basePermissions" Value="2147483647" />
63 </Section> 83 </Section>
64
65 <Section Name="cedar Texture"> 84 <Section Name="cedar Texture">
66 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001005" /> 85 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001005" />
67 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001005" /> 86 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001005" />
@@ -70,8 +89,11 @@
70 <Key Name="name" Value="cedar" /> 89 <Key Name="name" Value="cedar" />
71 <Key Name="assetType" Value="0" /> 90 <Key Name="assetType" Value="0" />
72 <Key Name="inventoryType" Value="0" /> 91 <Key Name="inventoryType" Value="0" />
92 <Key Name="currentPermissions" Value="2147483647" />
93 <Key Name="nextPermissions" Value="2147483647" />
94 <Key Name="everyonePermissions" Value="2147483647" />
95 <Key Name="basePermissions" Value="2147483647" />
73 </Section> 96 </Section>
74
75 <Section Name="cement_block Texture"> 97 <Section Name="cement_block Texture">
76 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001006" /> 98 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001006" />
77 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001006" /> 99 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001006" />
@@ -80,8 +102,11 @@
80 <Key Name="name" Value="cement_block" /> 102 <Key Name="name" Value="cement_block" />
81 <Key Name="assetType" Value="0" /> 103 <Key Name="assetType" Value="0" />
82 <Key Name="inventoryType" Value="0" /> 104 <Key Name="inventoryType" Value="0" />
105 <Key Name="currentPermissions" Value="2147483647" />
106 <Key Name="nextPermissions" Value="2147483647" />
107 <Key Name="everyonePermissions" Value="2147483647" />
108 <Key Name="basePermissions" Value="2147483647" />
83 </Section> 109 </Section>
84
85 <Section Name="clear Texture"> 110 <Section Name="clear Texture">
86 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001007" /> 111 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001007" />
87 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001007" /> 112 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001007" />
@@ -90,8 +115,11 @@
90 <Key Name="name" Value="clear" /> 115 <Key Name="name" Value="clear" />
91 <Key Name="assetType" Value="0" /> 116 <Key Name="assetType" Value="0" />
92 <Key Name="inventoryType" Value="0" /> 117 <Key Name="inventoryType" Value="0" />
118 <Key Name="currentPermissions" Value="2147483647" />
119 <Key Name="nextPermissions" Value="2147483647" />
120 <Key Name="everyonePermissions" Value="2147483647" />
121 <Key Name="basePermissions" Value="2147483647" />
93 </Section> 122 </Section>
94
95 <Section Name="cobbles Texture"> 123 <Section Name="cobbles Texture">
96 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001008" /> 124 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001008" />
97 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001008" /> 125 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001008" />
@@ -100,8 +128,11 @@
100 <Key Name="name" Value="cobbles" /> 128 <Key Name="name" Value="cobbles" />
101 <Key Name="assetType" Value="0" /> 129 <Key Name="assetType" Value="0" />
102 <Key Name="inventoryType" Value="0" /> 130 <Key Name="inventoryType" Value="0" />
131 <Key Name="currentPermissions" Value="2147483647" />
132 <Key Name="nextPermissions" Value="2147483647" />
133 <Key Name="everyonePermissions" Value="2147483647" />
134 <Key Name="basePermissions" Value="2147483647" />
103 </Section> 135 </Section>
104
105 <Section Name="creambrick Texture"> 136 <Section Name="creambrick Texture">
106 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001009" /> 137 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001009" />
107 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001009" /> 138 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001009" />
@@ -110,8 +141,11 @@
110 <Key Name="name" Value="creambrick" /> 141 <Key Name="name" Value="creambrick" />
111 <Key Name="assetType" Value="0" /> 142 <Key Name="assetType" Value="0" />
112 <Key Name="inventoryType" Value="0" /> 143 <Key Name="inventoryType" Value="0" />
144 <Key Name="currentPermissions" Value="2147483647" />
145 <Key Name="nextPermissions" Value="2147483647" />
146 <Key Name="everyonePermissions" Value="2147483647" />
147 <Key Name="basePermissions" Value="2147483647" />
113 </Section> 148 </Section>
114
115 <Section Name="fgrass Texture"> 149 <Section Name="fgrass Texture">
116 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001010" /> 150 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001010" />
117 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001010" /> 151 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001010" />
@@ -120,8 +154,11 @@
120 <Key Name="name" Value="fgrass" /> 154 <Key Name="name" Value="fgrass" />
121 <Key Name="assetType" Value="0" /> 155 <Key Name="assetType" Value="0" />
122 <Key Name="inventoryType" Value="0" /> 156 <Key Name="inventoryType" Value="0" />
157 <Key Name="currentPermissions" Value="2147483647" />
158 <Key Name="nextPermissions" Value="2147483647" />
159 <Key Name="everyonePermissions" Value="2147483647" />
160 <Key Name="basePermissions" Value="2147483647" />
123 </Section> 161 </Section>
124
125 <Section Name="glasstile2 Texture"> 162 <Section Name="glasstile2 Texture">
126 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001011" /> 163 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001011" />
127 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001011" /> 164 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001011" />
@@ -130,8 +167,11 @@
130 <Key Name="name" Value="glasstile2" /> 167 <Key Name="name" Value="glasstile2" />
131 <Key Name="assetType" Value="0" /> 168 <Key Name="assetType" Value="0" />
132 <Key Name="inventoryType" Value="0" /> 169 <Key Name="inventoryType" Value="0" />
170 <Key Name="currentPermissions" Value="2147483647" />
171 <Key Name="nextPermissions" Value="2147483647" />
172 <Key Name="everyonePermissions" Value="2147483647" />
173 <Key Name="basePermissions" Value="2147483647" />
133 </Section> 174 </Section>
134
135 <Section Name="graniteblock Texture"> 175 <Section Name="graniteblock Texture">
136 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001012" /> 176 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001012" />
137 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001012" /> 177 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001012" />
@@ -140,8 +180,11 @@
140 <Key Name="name" Value="graniteblock" /> 180 <Key Name="name" Value="graniteblock" />
141 <Key Name="assetType" Value="0" /> 181 <Key Name="assetType" Value="0" />
142 <Key Name="inventoryType" Value="0" /> 182 <Key Name="inventoryType" Value="0" />
183 <Key Name="currentPermissions" Value="2147483647" />
184 <Key Name="nextPermissions" Value="2147483647" />
185 <Key Name="everyonePermissions" Value="2147483647" />
186 <Key Name="basePermissions" Value="2147483647" />
143 </Section> 187 </Section>
144
145 <Section Name="grass Texture"> 188 <Section Name="grass Texture">
146 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001013" /> 189 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001013" />
147 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001013" /> 190 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001013" />
@@ -150,8 +193,11 @@
150 <Key Name="name" Value="grass" /> 193 <Key Name="name" Value="grass" />
151 <Key Name="assetType" Value="0" /> 194 <Key Name="assetType" Value="0" />
152 <Key Name="inventoryType" Value="0" /> 195 <Key Name="inventoryType" Value="0" />
196 <Key Name="currentPermissions" Value="2147483647" />
197 <Key Name="nextPermissions" Value="2147483647" />
198 <Key Name="everyonePermissions" Value="2147483647" />
199 <Key Name="basePermissions" Value="2147483647" />
153 </Section> 200 </Section>
154
155 <Section Name="gravel Texture"> 201 <Section Name="gravel Texture">
156 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001014" /> 202 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001014" />
157 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001014" /> 203 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001014" />
@@ -160,8 +206,11 @@
160 <Key Name="name" Value="gravel" /> 206 <Key Name="name" Value="gravel" />
161 <Key Name="assetType" Value="0" /> 207 <Key Name="assetType" Value="0" />
162 <Key Name="inventoryType" Value="0" /> 208 <Key Name="inventoryType" Value="0" />
209 <Key Name="currentPermissions" Value="2147483647" />
210 <Key Name="nextPermissions" Value="2147483647" />
211 <Key Name="everyonePermissions" Value="2147483647" />
212 <Key Name="basePermissions" Value="2147483647" />
163 </Section> 213 </Section>
164
165 <Section Name="greybrick Texture"> 214 <Section Name="greybrick Texture">
166 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001015" /> 215 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001015" />
167 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001015" /> 216 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001015" />
@@ -170,8 +219,11 @@
170 <Key Name="name" Value="greybrick" /> 219 <Key Name="name" Value="greybrick" />
171 <Key Name="assetType" Value="0" /> 220 <Key Name="assetType" Value="0" />
172 <Key Name="inventoryType" Value="0" /> 221 <Key Name="inventoryType" Value="0" />
222 <Key Name="currentPermissions" Value="2147483647" />
223 <Key Name="nextPermissions" Value="2147483647" />
224 <Key Name="everyonePermissions" Value="2147483647" />
225 <Key Name="basePermissions" Value="2147483647" />
173 </Section> 226 </Section>
174
175 <Section Name="ivy Texture"> 227 <Section Name="ivy Texture">
176 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001016" /> 228 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001016" />
177 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001016" /> 229 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001016" />
@@ -180,8 +232,11 @@
180 <Key Name="name" Value="ivy" /> 232 <Key Name="name" Value="ivy" />
181 <Key Name="assetType" Value="0" /> 233 <Key Name="assetType" Value="0" />
182 <Key Name="inventoryType" Value="0" /> 234 <Key Name="inventoryType" Value="0" />
235 <Key Name="currentPermissions" Value="2147483647" />
236 <Key Name="nextPermissions" Value="2147483647" />
237 <Key Name="everyonePermissions" Value="2147483647" />
238 <Key Name="basePermissions" Value="2147483647" />
183 </Section> 239 </Section>
184
185 <Section Name="mahogany Texture"> 240 <Section Name="mahogany Texture">
186 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001017" /> 241 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001017" />
187 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001017" /> 242 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001017" />
@@ -190,8 +245,11 @@
190 <Key Name="name" Value="mahogany" /> 245 <Key Name="name" Value="mahogany" />
191 <Key Name="assetType" Value="0" /> 246 <Key Name="assetType" Value="0" />
192 <Key Name="inventoryType" Value="0" /> 247 <Key Name="inventoryType" Value="0" />
248 <Key Name="currentPermissions" Value="2147483647" />
249 <Key Name="nextPermissions" Value="2147483647" />
250 <Key Name="everyonePermissions" Value="2147483647" />
251 <Key Name="basePermissions" Value="2147483647" />
193 </Section> 252 </Section>
194
195 <Section Name="maple Texture"> 253 <Section Name="maple Texture">
196 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001018" /> 254 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001018" />
197 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001018" /> 255 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001018" />
@@ -200,8 +258,11 @@
200 <Key Name="name" Value="maple" /> 258 <Key Name="name" Value="maple" />
201 <Key Name="assetType" Value="0" /> 259 <Key Name="assetType" Value="0" />
202 <Key Name="inventoryType" Value="0" /> 260 <Key Name="inventoryType" Value="0" />
261 <Key Name="currentPermissions" Value="2147483647" />
262 <Key Name="nextPermissions" Value="2147483647" />
263 <Key Name="everyonePermissions" Value="2147483647" />
264 <Key Name="basePermissions" Value="2147483647" />
203 </Section> 265 </Section>
204
205 <Section Name="mosaic02 Texture"> 266 <Section Name="mosaic02 Texture">
206 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001019" /> 267 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001019" />
207 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001019" /> 268 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001019" />
@@ -210,8 +271,11 @@
210 <Key Name="name" Value="mosaic02" /> 271 <Key Name="name" Value="mosaic02" />
211 <Key Name="assetType" Value="0" /> 272 <Key Name="assetType" Value="0" />
212 <Key Name="inventoryType" Value="0" /> 273 <Key Name="inventoryType" Value="0" />
274 <Key Name="currentPermissions" Value="2147483647" />
275 <Key Name="nextPermissions" Value="2147483647" />
276 <Key Name="everyonePermissions" Value="2147483647" />
277 <Key Name="basePermissions" Value="2147483647" />
213 </Section> 278 </Section>
214
215 <Section Name="palm1 Texture"> 279 <Section Name="palm1 Texture">
216 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001020" /> 280 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001020" />
217 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001020" /> 281 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001020" />
@@ -220,8 +284,11 @@
220 <Key Name="name" Value="palm1" /> 284 <Key Name="name" Value="palm1" />
221 <Key Name="assetType" Value="0" /> 285 <Key Name="assetType" Value="0" />
222 <Key Name="inventoryType" Value="0" /> 286 <Key Name="inventoryType" Value="0" />
287 <Key Name="currentPermissions" Value="2147483647" />
288 <Key Name="nextPermissions" Value="2147483647" />
289 <Key Name="everyonePermissions" Value="2147483647" />
290 <Key Name="basePermissions" Value="2147483647" />
223 </Section> 291 </Section>
224
225 <Section Name="papaya Texture"> 292 <Section Name="papaya Texture">
226 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001021" /> 293 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001021" />
227 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001021" /> 294 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001021" />
@@ -230,8 +297,11 @@
230 <Key Name="name" Value="papaya" /> 297 <Key Name="name" Value="papaya" />
231 <Key Name="assetType" Value="0" /> 298 <Key Name="assetType" Value="0" />
232 <Key Name="inventoryType" Value="0" /> 299 <Key Name="inventoryType" Value="0" />
300 <Key Name="currentPermissions" Value="2147483647" />
301 <Key Name="nextPermissions" Value="2147483647" />
302 <Key Name="everyonePermissions" Value="2147483647" />
303 <Key Name="basePermissions" Value="2147483647" />
233 </Section> 304 </Section>
234
235 <Section Name="papaya_bark Texture"> 305 <Section Name="papaya_bark Texture">
236 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001022" /> 306 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001022" />
237 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001022" /> 307 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001022" />
@@ -240,8 +310,11 @@
240 <Key Name="name" Value="papaya_bark" /> 310 <Key Name="name" Value="papaya_bark" />
241 <Key Name="assetType" Value="0" /> 311 <Key Name="assetType" Value="0" />
242 <Key Name="inventoryType" Value="0" /> 312 <Key Name="inventoryType" Value="0" />
313 <Key Name="currentPermissions" Value="2147483647" />
314 <Key Name="nextPermissions" Value="2147483647" />
315 <Key Name="everyonePermissions" Value="2147483647" />
316 <Key Name="basePermissions" Value="2147483647" />
243 </Section> 317 </Section>
244
245 <Section Name="pastelbrick Texture"> 318 <Section Name="pastelbrick Texture">
246 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001023" /> 319 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001023" />
247 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001023" /> 320 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001023" />
@@ -250,8 +323,11 @@
250 <Key Name="name" Value="pastelbrick" /> 323 <Key Name="name" Value="pastelbrick" />
251 <Key Name="assetType" Value="0" /> 324 <Key Name="assetType" Value="0" />
252 <Key Name="inventoryType" Value="0" /> 325 <Key Name="inventoryType" Value="0" />
326 <Key Name="currentPermissions" Value="2147483647" />
327 <Key Name="nextPermissions" Value="2147483647" />
328 <Key Name="everyonePermissions" Value="2147483647" />
329 <Key Name="basePermissions" Value="2147483647" />
253 </Section> 330 </Section>
254
255 <Section Name="pine1_10m Texture"> 331 <Section Name="pine1_10m Texture">
256 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001024" /> 332 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001024" />
257 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001024" /> 333 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001024" />
@@ -260,8 +336,11 @@
260 <Key Name="name" Value="pine1_10m" /> 336 <Key Name="name" Value="pine1_10m" />
261 <Key Name="assetType" Value="0" /> 337 <Key Name="assetType" Value="0" />
262 <Key Name="inventoryType" Value="0" /> 338 <Key Name="inventoryType" Value="0" />
339 <Key Name="currentPermissions" Value="2147483647" />
340 <Key Name="nextPermissions" Value="2147483647" />
341 <Key Name="everyonePermissions" Value="2147483647" />
342 <Key Name="basePermissions" Value="2147483647" />
263 </Section> 343 </Section>
264
265 <Section Name="poplar Texture"> 344 <Section Name="poplar Texture">
266 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001025" /> 345 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001025" />
267 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001025" /> 346 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001025" />
@@ -270,8 +349,11 @@
270 <Key Name="name" Value="poplar" /> 349 <Key Name="name" Value="poplar" />
271 <Key Name="assetType" Value="0" /> 350 <Key Name="assetType" Value="0" />
272 <Key Name="inventoryType" Value="0" /> 351 <Key Name="inventoryType" Value="0" />
352 <Key Name="currentPermissions" Value="2147483647" />
353 <Key Name="nextPermissions" Value="2147483647" />
354 <Key Name="everyonePermissions" Value="2147483647" />
355 <Key Name="basePermissions" Value="2147483647" />
273 </Section> 356 </Section>
274
275 <Section Name="redtri_tile Texture"> 357 <Section Name="redtri_tile Texture">
276 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001026" /> 358 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001026" />
277 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001026" /> 359 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001026" />
@@ -280,8 +362,11 @@
280 <Key Name="name" Value="redtri_tile" /> 362 <Key Name="name" Value="redtri_tile" />
281 <Key Name="assetType" Value="0" /> 363 <Key Name="assetType" Value="0" />
282 <Key Name="inventoryType" Value="0" /> 364 <Key Name="inventoryType" Value="0" />
365 <Key Name="currentPermissions" Value="2147483647" />
366 <Key Name="nextPermissions" Value="2147483647" />
367 <Key Name="everyonePermissions" Value="2147483647" />
368 <Key Name="basePermissions" Value="2147483647" />
283 </Section> 369 </Section>
284
285 <Section Name="rockbuilding Texture"> 370 <Section Name="rockbuilding Texture">
286 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001027" /> 371 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001027" />
287 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001027" /> 372 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001027" />
@@ -290,8 +375,11 @@
290 <Key Name="name" Value="rockbuilding" /> 375 <Key Name="name" Value="rockbuilding" />
291 <Key Name="assetType" Value="0" /> 376 <Key Name="assetType" Value="0" />
292 <Key Name="inventoryType" Value="0" /> 377 <Key Name="inventoryType" Value="0" />
378 <Key Name="currentPermissions" Value="2147483647" />
379 <Key Name="nextPermissions" Value="2147483647" />
380 <Key Name="everyonePermissions" Value="2147483647" />
381 <Key Name="basePermissions" Value="2147483647" />
293 </Section> 382 </Section>
294
295 <Section Name="rockwallbig Texture"> 383 <Section Name="rockwallbig Texture">
296 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001028" /> 384 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001028" />
297 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001028" /> 385 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001028" />
@@ -300,8 +388,11 @@
300 <Key Name="name" Value="rockwallbig" /> 388 <Key Name="name" Value="rockwallbig" />
301 <Key Name="assetType" Value="0" /> 389 <Key Name="assetType" Value="0" />
302 <Key Name="inventoryType" Value="0" /> 390 <Key Name="inventoryType" Value="0" />
391 <Key Name="currentPermissions" Value="2147483647" />
392 <Key Name="nextPermissions" Value="2147483647" />
393 <Key Name="everyonePermissions" Value="2147483647" />
394 <Key Name="basePermissions" Value="2147483647" />
303 </Section> 395 </Section>
304
305 <Section Name="roof01 Texture"> 396 <Section Name="roof01 Texture">
306 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001029" /> 397 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001029" />
307 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001029" /> 398 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001029" />
@@ -310,8 +401,11 @@
310 <Key Name="name" Value="roof01" /> 401 <Key Name="name" Value="roof01" />
311 <Key Name="assetType" Value="0" /> 402 <Key Name="assetType" Value="0" />
312 <Key Name="inventoryType" Value="0" /> 403 <Key Name="inventoryType" Value="0" />
404 <Key Name="currentPermissions" Value="2147483647" />
405 <Key Name="nextPermissions" Value="2147483647" />
406 <Key Name="everyonePermissions" Value="2147483647" />
407 <Key Name="basePermissions" Value="2147483647" />
313 </Section> 408 </Section>
314
315 <Section Name="rooftiles1 Texture"> 409 <Section Name="rooftiles1 Texture">
316 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001030" /> 410 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001030" />
317 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001030" /> 411 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001030" />
@@ -320,8 +414,11 @@
320 <Key Name="name" Value="rooftiles1" /> 414 <Key Name="name" Value="rooftiles1" />
321 <Key Name="assetType" Value="0" /> 415 <Key Name="assetType" Value="0" />
322 <Key Name="inventoryType" Value="0" /> 416 <Key Name="inventoryType" Value="0" />
417 <Key Name="currentPermissions" Value="2147483647" />
418 <Key Name="nextPermissions" Value="2147483647" />
419 <Key Name="everyonePermissions" Value="2147483647" />
420 <Key Name="basePermissions" Value="2147483647" />
323 </Section> 421 </Section>
324
325 <Section Name="rooftiles2_peach Texture"> 422 <Section Name="rooftiles2_peach Texture">
326 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001031" /> 423 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001031" />
327 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001031" /> 424 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001031" />
@@ -330,8 +427,11 @@
330 <Key Name="name" Value="rooftiles2_peach" /> 427 <Key Name="name" Value="rooftiles2_peach" />
331 <Key Name="assetType" Value="0" /> 428 <Key Name="assetType" Value="0" />
332 <Key Name="inventoryType" Value="0" /> 429 <Key Name="inventoryType" Value="0" />
430 <Key Name="currentPermissions" Value="2147483647" />
431 <Key Name="nextPermissions" Value="2147483647" />
432 <Key Name="everyonePermissions" Value="2147483647" />
433 <Key Name="basePermissions" Value="2147483647" />
333 </Section> 434 </Section>
334
335 <Section Name="rooftiles2_roy Texture"> 435 <Section Name="rooftiles2_roy Texture">
336 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001032" /> 436 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001032" />
337 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001032" /> 437 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001032" />
@@ -340,8 +440,11 @@
340 <Key Name="name" Value="rooftiles2_roy" /> 440 <Key Name="name" Value="rooftiles2_roy" />
341 <Key Name="assetType" Value="0" /> 441 <Key Name="assetType" Value="0" />
342 <Key Name="inventoryType" Value="0" /> 442 <Key Name="inventoryType" Value="0" />
443 <Key Name="currentPermissions" Value="2147483647" />
444 <Key Name="nextPermissions" Value="2147483647" />
445 <Key Name="everyonePermissions" Value="2147483647" />
446 <Key Name="basePermissions" Value="2147483647" />
343 </Section> 447 </Section>
344
345 <Section Name="saguaro_8m Texture"> 448 <Section Name="saguaro_8m Texture">
346 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001033" /> 449 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001033" />
347 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001033" /> 450 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001033" />
@@ -350,8 +453,11 @@
350 <Key Name="name" Value="saguaro_8m" /> 453 <Key Name="name" Value="saguaro_8m" />
351 <Key Name="assetType" Value="0" /> 454 <Key Name="assetType" Value="0" />
352 <Key Name="inventoryType" Value="0" /> 455 <Key Name="inventoryType" Value="0" />
456 <Key Name="currentPermissions" Value="2147483647" />
457 <Key Name="nextPermissions" Value="2147483647" />
458 <Key Name="everyonePermissions" Value="2147483647" />
459 <Key Name="basePermissions" Value="2147483647" />
353 </Section> 460 </Section>
354
355 <Section Name="seawater Texture"> 461 <Section Name="seawater Texture">
356 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001034" /> 462 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001034" />
357 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001034" /> 463 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001034" />
@@ -360,8 +466,11 @@
360 <Key Name="name" Value="seawater" /> 466 <Key Name="name" Value="seawater" />
361 <Key Name="assetType" Value="0" /> 467 <Key Name="assetType" Value="0" />
362 <Key Name="inventoryType" Value="0" /> 468 <Key Name="inventoryType" Value="0" />
469 <Key Name="currentPermissions" Value="2147483647" />
470 <Key Name="nextPermissions" Value="2147483647" />
471 <Key Name="everyonePermissions" Value="2147483647" />
472 <Key Name="basePermissions" Value="2147483647" />
363 </Section> 473 </Section>
364
365 <Section Name="snow1 Texture"> 474 <Section Name="snow1 Texture">
366 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001035" /> 475 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001035" />
367 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001035" /> 476 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001035" />
@@ -370,8 +479,11 @@
370 <Key Name="name" Value="snow1" /> 479 <Key Name="name" Value="snow1" />
371 <Key Name="assetType" Value="0" /> 480 <Key Name="assetType" Value="0" />
372 <Key Name="inventoryType" Value="0" /> 481 <Key Name="inventoryType" Value="0" />
482 <Key Name="currentPermissions" Value="2147483647" />
483 <Key Name="nextPermissions" Value="2147483647" />
484 <Key Name="everyonePermissions" Value="2147483647" />
485 <Key Name="basePermissions" Value="2147483647" />
373 </Section> 486 </Section>
374
375 <Section Name="steel Texture"> 487 <Section Name="steel Texture">
376 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001036" /> 488 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001036" />
377 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001036" /> 489 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001036" />
@@ -380,8 +492,11 @@
380 <Key Name="name" Value="steel" /> 492 <Key Name="name" Value="steel" />
381 <Key Name="assetType" Value="0" /> 493 <Key Name="assetType" Value="0" />
382 <Key Name="inventoryType" Value="0" /> 494 <Key Name="inventoryType" Value="0" />
495 <Key Name="currentPermissions" Value="2147483647" />
496 <Key Name="nextPermissions" Value="2147483647" />
497 <Key Name="everyonePermissions" Value="2147483647" />
498 <Key Name="basePermissions" Value="2147483647" />
383 </Section> 499 </Section>
384
385 <Section Name="stone1wall Texture"> 500 <Section Name="stone1wall Texture">
386 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001037" /> 501 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001037" />
387 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001037" /> 502 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001037" />
@@ -390,8 +505,11 @@
390 <Key Name="name" Value="stone1wall" /> 505 <Key Name="name" Value="stone1wall" />
391 <Key Name="assetType" Value="0" /> 506 <Key Name="assetType" Value="0" />
392 <Key Name="inventoryType" Value="0" /> 507 <Key Name="inventoryType" Value="0" />
508 <Key Name="currentPermissions" Value="2147483647" />
509 <Key Name="nextPermissions" Value="2147483647" />
510 <Key Name="everyonePermissions" Value="2147483647" />
511 <Key Name="basePermissions" Value="2147483647" />
393 </Section> 512 </Section>
394
395 <Section Name="stonetile Texture"> 513 <Section Name="stonetile Texture">
396 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001038" /> 514 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001038" />
397 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001038" /> 515 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001038" />
@@ -400,8 +518,11 @@
400 <Key Name="name" Value="stonetile" /> 518 <Key Name="name" Value="stonetile" />
401 <Key Name="assetType" Value="0" /> 519 <Key Name="assetType" Value="0" />
402 <Key Name="inventoryType" Value="0" /> 520 <Key Name="inventoryType" Value="0" />
521 <Key Name="currentPermissions" Value="2147483647" />
522 <Key Name="nextPermissions" Value="2147483647" />
523 <Key Name="everyonePermissions" Value="2147483647" />
524 <Key Name="basePermissions" Value="2147483647" />
403 </Section> 525 </Section>
404
405 <Section Name="street2 Texture"> 526 <Section Name="street2 Texture">
406 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001039" /> 527 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001039" />
407 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001039" /> 528 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001039" />
@@ -410,8 +531,11 @@
410 <Key Name="name" Value="street2" /> 531 <Key Name="name" Value="street2" />
411 <Key Name="assetType" Value="0" /> 532 <Key Name="assetType" Value="0" />
412 <Key Name="inventoryType" Value="0" /> 533 <Key Name="inventoryType" Value="0" />
534 <Key Name="currentPermissions" Value="2147483647" />
535 <Key Name="nextPermissions" Value="2147483647" />
536 <Key Name="everyonePermissions" Value="2147483647" />
537 <Key Name="basePermissions" Value="2147483647" />
413 </Section> 538 </Section>
414
415 <Section Name="thatch Texture"> 539 <Section Name="thatch Texture">
416 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001040" /> 540 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001040" />
417 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001040" /> 541 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001040" />
@@ -420,8 +544,11 @@
420 <Key Name="name" Value="thatch" /> 544 <Key Name="name" Value="thatch" />
421 <Key Name="assetType" Value="0" /> 545 <Key Name="assetType" Value="0" />
422 <Key Name="inventoryType" Value="0" /> 546 <Key Name="inventoryType" Value="0" />
547 <Key Name="currentPermissions" Value="2147483647" />
548 <Key Name="nextPermissions" Value="2147483647" />
549 <Key Name="everyonePermissions" Value="2147483647" />
550 <Key Name="basePermissions" Value="2147483647" />
423 </Section> 551 </Section>
424
425 <Section Name="water1 Texture"> 552 <Section Name="water1 Texture">
426 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001041" /> 553 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001041" />
427 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001041" /> 554 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001041" />
@@ -430,8 +557,11 @@
430 <Key Name="name" Value="water1" /> 557 <Key Name="name" Value="water1" />
431 <Key Name="assetType" Value="0" /> 558 <Key Name="assetType" Value="0" />
432 <Key Name="inventoryType" Value="0" /> 559 <Key Name="inventoryType" Value="0" />
560 <Key Name="currentPermissions" Value="2147483647" />
561 <Key Name="nextPermissions" Value="2147483647" />
562 <Key Name="everyonePermissions" Value="2147483647" />
563 <Key Name="basePermissions" Value="2147483647" />
433 </Section> 564 </Section>
434
435 <Section Name="water3 Texture"> 565 <Section Name="water3 Texture">
436 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001042" /> 566 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001042" />
437 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001042" /> 567 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001042" />
@@ -440,8 +570,11 @@
440 <Key Name="name" Value="water3" /> 570 <Key Name="name" Value="water3" />
441 <Key Name="assetType" Value="0" /> 571 <Key Name="assetType" Value="0" />
442 <Key Name="inventoryType" Value="0" /> 572 <Key Name="inventoryType" Value="0" />
573 <Key Name="currentPermissions" Value="2147483647" />
574 <Key Name="nextPermissions" Value="2147483647" />
575 <Key Name="everyonePermissions" Value="2147483647" />
576 <Key Name="basePermissions" Value="2147483647" />
443 </Section> 577 </Section>
444
445 <Section Name="wood1 Texture"> 578 <Section Name="wood1 Texture">
446 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001043" /> 579 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001043" />
447 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001043" /> 580 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001043" />
@@ -450,8 +583,11 @@
450 <Key Name="name" Value="wood1" /> 583 <Key Name="name" Value="wood1" />
451 <Key Name="assetType" Value="0" /> 584 <Key Name="assetType" Value="0" />
452 <Key Name="inventoryType" Value="0" /> 585 <Key Name="inventoryType" Value="0" />
586 <Key Name="currentPermissions" Value="2147483647" />
587 <Key Name="nextPermissions" Value="2147483647" />
588 <Key Name="everyonePermissions" Value="2147483647" />
589 <Key Name="basePermissions" Value="2147483647" />
453 </Section> 590 </Section>
454
455 <Section Name="bricks Texture"> 591 <Section Name="bricks Texture">
456 <Key Name="inventoryID" Value="00000000-0000-2222-9999-000000000001"/> 592 <Key Name="inventoryID" Value="00000000-0000-2222-9999-000000000001"/>
457 <Key Name="assetID" Value="00000000-0000-1111-9999-000000000001"/> 593 <Key Name="assetID" Value="00000000-0000-1111-9999-000000000001"/>
@@ -460,8 +596,11 @@
460 <Key Name="name" Value="bricks" /> 596 <Key Name="name" Value="bricks" />
461 <Key Name="assetType" Value="0" /> 597 <Key Name="assetType" Value="0" />
462 <Key Name="inventoryType" Value="0" /> 598 <Key Name="inventoryType" Value="0" />
599 <Key Name="currentPermissions" Value="2147483647" />
600 <Key Name="nextPermissions" Value="2147483647" />
601 <Key Name="everyonePermissions" Value="2147483647" />
602 <Key Name="basePermissions" Value="2147483647" />
463 </Section> 603 </Section>
464
465 <Section Name="granite Texture"> 604 <Section Name="granite Texture">
466 <Key Name="inventoryID" Value="00000000-0000-2222-9999-000000000004"/> 605 <Key Name="inventoryID" Value="00000000-0000-2222-9999-000000000004"/>
467 <Key Name="assetID" Value="00000000-0000-1111-9999-000000000004"/> 606 <Key Name="assetID" Value="00000000-0000-1111-9999-000000000004"/>
@@ -470,8 +609,11 @@
470 <Key Name="name" Value="granite" /> 609 <Key Name="name" Value="granite" />
471 <Key Name="assetType" Value="0" /> 610 <Key Name="assetType" Value="0" />
472 <Key Name="inventoryType" Value="0" /> 611 <Key Name="inventoryType" Value="0" />
612 <Key Name="currentPermissions" Value="2147483647" />
613 <Key Name="nextPermissions" Value="2147483647" />
614 <Key Name="everyonePermissions" Value="2147483647" />
615 <Key Name="basePermissions" Value="2147483647" />
473 </Section> 616 </Section>
474
475 <Section Name="hardwood Texture"> 617 <Section Name="hardwood Texture">
476 <Key Name="inventoryID" Value="00000000-0000-2222-9999-000000000005"/> 618 <Key Name="inventoryID" Value="00000000-0000-2222-9999-000000000005"/>
477 <Key Name="assetID" Value="00000000-0000-1111-9999-000000000005"/> 619 <Key Name="assetID" Value="00000000-0000-1111-9999-000000000005"/>
@@ -480,8 +622,11 @@
480 <Key Name="name" Value="hardwood" /> 622 <Key Name="name" Value="hardwood" />
481 <Key Name="assetType" Value="0" /> 623 <Key Name="assetType" Value="0" />
482 <Key Name="inventoryType" Value="0" /> 624 <Key Name="inventoryType" Value="0" />
625 <Key Name="currentPermissions" Value="2147483647" />
626 <Key Name="nextPermissions" Value="2147483647" />
627 <Key Name="everyonePermissions" Value="2147483647" />
628 <Key Name="basePermissions" Value="2147483647" />
483 </Section> 629 </Section>
484
485 <Section Name="rocks Texture"> 630 <Section Name="rocks Texture">
486 <Key Name="inventoryID" Value="00000000-0000-2222-9999-000000000003"/> 631 <Key Name="inventoryID" Value="00000000-0000-2222-9999-000000000003"/>
487 <Key Name="assetID" Value="00000000-0000-1111-9999-000000000003"/> 632 <Key Name="assetID" Value="00000000-0000-1111-9999-000000000003"/>
@@ -490,6 +635,10 @@
490 <Key Name="name" Value="rocks" /> 635 <Key Name="name" Value="rocks" />
491 <Key Name="assetType" Value="0" /> 636 <Key Name="assetType" Value="0" />
492 <Key Name="inventoryType" Value="0" /> 637 <Key Name="inventoryType" Value="0" />
638 <Key Name="currentPermissions" Value="2147483647" />
639 <Key Name="nextPermissions" Value="2147483647" />
640 <Key Name="everyonePermissions" Value="2147483647" />
641 <Key Name="basePermissions" Value="2147483647" />
493 </Section> 642 </Section>
494 643
495 <Section Name="Terrain Dirt"> 644 <Section Name="Terrain Dirt">
@@ -500,8 +649,11 @@
500 <Key Name="name" Value="Terrain Dirt" /> 649 <Key Name="name" Value="Terrain Dirt" />
501 <Key Name="assetType" Value="0" /> 650 <Key Name="assetType" Value="0" />
502 <Key Name="inventoryType" Value="0" /> 651 <Key Name="inventoryType" Value="0" />
652 <Key Name="currentPermissions" Value="2147483647" />
653 <Key Name="nextPermissions" Value="2147483647" />
654 <Key Name="everyonePermissions" Value="2147483647" />
655 <Key Name="basePermissions" Value="2147483647" />
503 </Section> 656 </Section>
504
505 <Section Name="Terrain Grass"> 657 <Section Name="Terrain Grass">
506 <Key Name="inventoryID" Value="00000000-0000-2222-9999-000000000007"/> 658 <Key Name="inventoryID" Value="00000000-0000-2222-9999-000000000007"/>
507 <Key Name="assetID" Value="abb783e6-3e93-26c0-248a-247666855da3"/> 659 <Key Name="assetID" Value="abb783e6-3e93-26c0-248a-247666855da3"/>
@@ -510,8 +662,11 @@
510 <Key Name="name" Value="Terrain Grass" /> 662 <Key Name="name" Value="Terrain Grass" />
511 <Key Name="assetType" Value="0" /> 663 <Key Name="assetType" Value="0" />
512 <Key Name="inventoryType" Value="0" /> 664 <Key Name="inventoryType" Value="0" />
665 <Key Name="currentPermissions" Value="2147483647" />
666 <Key Name="nextPermissions" Value="2147483647" />
667 <Key Name="everyonePermissions" Value="2147483647" />
668 <Key Name="basePermissions" Value="2147483647" />
513 </Section> 669 </Section>
514
515 <Section Name="Terrain Mountain"> 670 <Section Name="Terrain Mountain">
516 <Key Name="inventoryID" Value="00000000-0000-2222-9999-000000000008"/> 671 <Key Name="inventoryID" Value="00000000-0000-2222-9999-000000000008"/>
517 <Key Name="assetID" Value="179cdabd-398a-9b6b-1391-4dc333ba321f"/> 672 <Key Name="assetID" Value="179cdabd-398a-9b6b-1391-4dc333ba321f"/>
@@ -520,8 +675,11 @@
520 <Key Name="name" Value="Terrain Mountain" /> 675 <Key Name="name" Value="Terrain Mountain" />
521 <Key Name="assetType" Value="0" /> 676 <Key Name="assetType" Value="0" />
522 <Key Name="inventoryType" Value="0" /> 677 <Key Name="inventoryType" Value="0" />
678 <Key Name="currentPermissions" Value="2147483647" />
679 <Key Name="nextPermissions" Value="2147483647" />
680 <Key Name="everyonePermissions" Value="2147483647" />
681 <Key Name="basePermissions" Value="2147483647" />
523 </Section> 682 </Section>
524
525 <Section Name="Terrain Rock"> 683 <Section Name="Terrain Rock">
526 <Key Name="inventoryID" Value="00000000-0000-2222-9999-000000000009"/> 684 <Key Name="inventoryID" Value="00000000-0000-2222-9999-000000000009"/>
527 <Key Name="assetID" Value="beb169c7-11ea-fff2-efe5-0f24dc881df2"/> 685 <Key Name="assetID" Value="beb169c7-11ea-fff2-efe5-0f24dc881df2"/>
@@ -530,6 +688,10 @@
530 <Key Name="name" Value="Terrain Rock" /> 688 <Key Name="name" Value="Terrain Rock" />
531 <Key Name="assetType" Value="0" /> 689 <Key Name="assetType" Value="0" />
532 <Key Name="inventoryType" Value="0" /> 690 <Key Name="inventoryType" Value="0" />
691 <Key Name="currentPermissions" Value="2147483647" />
692 <Key Name="nextPermissions" Value="2147483647" />
693 <Key Name="everyonePermissions" Value="2147483647" />
694 <Key Name="basePermissions" Value="2147483647" />
533 </Section> 695 </Section>
534 696
535 <Section Name="Blank Texture"> 697 <Section Name="Blank Texture">
@@ -540,6 +702,10 @@
540 <Key Name="name" Value="Blank Texture" /> 702 <Key Name="name" Value="Blank Texture" />
541 <Key Name="assetType" Value="0" /> 703 <Key Name="assetType" Value="0" />
542 <Key Name="inventoryType" Value="0" /> 704 <Key Name="inventoryType" Value="0" />
705 <Key Name="currentPermissions" Value="2147483647" />
706 <Key Name="nextPermissions" Value="2147483647" />
707 <Key Name="everyonePermissions" Value="2147483647" />
708 <Key Name="basePermissions" Value="2147483647" />
543 </Section> 709 </Section>
544 710
545 <Section Name="Default Media Texture"> 711 <Section Name="Default Media Texture">
@@ -550,6 +716,10 @@
550 <Key Name="name" Value="Default Media Texture" /> 716 <Key Name="name" Value="Default Media Texture" />
551 <Key Name="assetType" Value="0" /> 717 <Key Name="assetType" Value="0" />
552 <Key Name="inventoryType" Value="0" /> 718 <Key Name="inventoryType" Value="0" />
719 <Key Name="currentPermissions" Value="2147483647" />
720 <Key Name="nextPermissions" Value="2147483647" />
721 <Key Name="everyonePermissions" Value="2147483647" />
722 <Key Name="basePermissions" Value="2147483647" />
553 </Section> 723 </Section>
554 724
555 <Section Name="Default Transparent Texture"> 725 <Section Name="Default Transparent Texture">
@@ -560,5 +730,9 @@
560 <Key Name="name" Value="Default Transparent Texture" /> 730 <Key Name="name" Value="Default Transparent Texture" />
561 <Key Name="assetType" Value="0" /> 731 <Key Name="assetType" Value="0" />
562 <Key Name="inventoryType" Value="0" /> 732 <Key Name="inventoryType" Value="0" />
733 <Key Name="currentPermissions" Value="2147483647" />
734 <Key Name="nextPermissions" Value="2147483647" />
735 <Key Name="everyonePermissions" Value="2147483647" />
736 <Key Name="basePermissions" Value="2147483647" />
563 </Section> 737 </Section>
564</Nini> 738</Nini>