aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docs/common/Nails.html
diff options
context:
space:
mode:
Diffstat (limited to 'docs/common/Nails.html')
-rw-r--r--docs/common/Nails.html2519
1 files changed, 2519 insertions, 0 deletions
diff --git a/docs/common/Nails.html b/docs/common/Nails.html
new file mode 100644
index 0000000..152549d
--- /dev/null
+++ b/docs/common/Nails.html
@@ -0,0 +1,2519 @@
1<html>
2<title>Nails</title>
3<head>
4</head>
5<body bgcolor="black" text="white" alink="red" link="blue" vlink="purple">
6<h1> Putting it all together </h1>
7<p>This is where onefang starts to get his hands dirty, though I'll mostly be talking about the modules of the basic architecture that deals with the objects in the world. Most everything else could be dealt with as mostly stand alone pre existing software (jabber, mumble, etc), though some of those would still need to get their hands on some of the data.</p>
8<p>In this part I'll use the term "client" to refer to anything thing talking to a server, even if it's another server. "Viewer" means the users client that they use to interact with the virtual worlds. "Virtual world" is any group of sims linked together, the equivalent of a 3d web site in this web centric model of virtual worlds. "Sim" is the equivalent of a web page. "Engine" will be any server module that deals with a particular active function. "Object" could be link sets, prims, mesh objects, avatars, the sim itself, or perhaps other things that are tracked per sim. "Data" is any property of an object in the sim that can be sent in a single command, which might consist of several values. "Value" is a single basic property of an object, though it could be a vector, rotation, URL, or other complex data type. "Command" is a something sent from one module to another stating that some data has changed on some object. An example command might be something like "command=value,value,&lt;1.2.3&gt;,"string". "Assets" are any non object thingy that might be part of an object, like textures, scripts, etc. Not so sure if there should be that distinction between object and asset though. Though assets generally don't change, or have "data".</p>
9<p>The various modules could pretty much be written in any language, it's the protocols between them that is important. Even then, the form of the protocols should be somewhat flexible as well. I'll insist on the central form of the protocols to be tight binary, but lots of people have a co-dependent relationship with abusive things like XML. Slightly saner people might prefer JSON, perhaps BSON, or plain name=value pairs. And just coz everyone else gets to have their favourite bloated human readable text format, I'll add my own MTRX from years ago. I'll be writing my version of the modules in C, with threats of assembler. Others could write things in scheme, smalltalk, PHP, ruby, C#, javascript, or any other less efficient language.</p>
10<p>The basic modules would be the viewer, the script engine, the physics engine, the sim data store, the inventory data store, and the command pump. Since this is a web centric design, there are web servers involved to. There can be any number of each of these modules, perhaps even a changing number on any given sim, for load balancing or redundancy reasons.</p>
11<p>&nbsp;</p>
12<h2> command pump </h2>
13<p>Quite literally, this would be the heart of the system. It's job is to manage the exchange of changes to in world objects between everything else. These changes are always expressed as commands. More about this later.</p>
14<p>&nbsp;</p>
15<h2> inventory data store (we should call this "hammerspace") </h2>
16<p>Stores part of a users inventory, and serves it to sim data stores, or other users inventory data stores. This could probably be just a web server, it's protocol would be ordinary HTTP/S sending files around. Generally the files would be protected, only being sent to those that are authorised to get any individual file. The inventory's owner would have complete control. It's two main tasks are to send individual objects to sim data stores, and to send individual objects, or entire folders of objects, to other users inventory stores. All of this is initiated by the owner manually. Some method for the user to manage their inventory objects would be needed, but the world is already full of ways to manage web server contents, so don't need to mention them further. Though perhaps using WebDav as a standard method would be a great idea. It may even be possible for multiple users to manage any given inventory data store, say via a typical CMS system. Public inventory data stores could exist. Shops could just be an ecommerce front end to an inventory data store. It's a web server, any webby thing could be done with it. Objects should be sent as individual files for the purposes of HTTP, though they could be collected and compressed into some archive format when sending lots of them. Folders should be represented directly as paths in the URL.</p>
17<p>It's entirely up to the web server how it actually stores the objects. I would recommend just storing the commands that define an object, but there will be things like IARs with XML files, exports from other viewers, and such around. Storing just the commands means that they can just be dumped direct to the command pump. XML would have to be translated first. On the other hand, inventories store non object assets, like textures, sound samples, scripts, etc. These could be stored in their native formats.</p>
18<p>&nbsp;</p>
19<h2> sim data store </h2>
20<p>Stores objects and their data that are in the sim. Again, it's a web server, but completely public. Though just like ordinary web servers, parts could be private to members only. Most of what was said about inventory data stores applies. There is a change of emphasis though, these would be public in general, with privacy an option, where inventory is private in general, with public being an option. Note that objects and other assets that are contents of a sim object should not be public by default, perhaps they could be handled by inventory data stores. Inventory data stores could be very simple data stores, with authorisation, so would be perfect to be used as data stores for objects contents. Lets us reuse code and protocols, and can share code on the same server.</p>
21<p>A sim data store could be a web proxy in front of any user in that sim. This is for any inventory data store an the users own computer, so that they can hide behind that sims proxy. Perhaps this could be another module? Not sure how to handle inventory transfers to offline users, especially those without some other web server to have an inventory data store on. Likely users will be a member of at least one web site somewhere that offers inventory data stores.</p>
22<p>&nbsp;</p>
23<h2> physics engine </h2>
24<p>Calculates physics interactions between objects in a sim. Does not have to handle all the objects on a sim, but the sim can be partitioned up, probably via some load balancing scheme. Physics is calculated on a frame per frame basis, though the "frame rate" might not have any bearing on the viewer graphics frame rate. It should however be close to human visual frame rate.</p>
25<p>&nbsp;</p>
26<h2> script engine </h2>
27<p>Runs scripts, either those in objects in a sim, or those in a users viewer. Does not have to handle all the scripts, but could be load balanced. Viewer scripts would be things like attachments or HUDs, and might run in the viewer. Scripts might set up sensor timers to scan nearby objects, or request specific data from random objects at random times. They also would be interested in specific events, perhaps physics or user interaction events, perhaps others. Scripts can also send arbitrary commands to do their work. Script engines can be identical, whether on servers or viewers.</p>
28<p>Since sims can have one or more script engines, script engines could service one or more sims, and viewer scripts could be run in the viewer or a specific script engine the user is allowed to use...we can do away with the need to save script state, and load it again on the next sim when avatars move from one sim to the next. That's one of the major time consuming parts of a TP on your average script heavy avatar.</p>
29<p>&nbsp;</p>
30<h2> viewer </h2>
31<p>Brings it all together as a rich virtual world for the user. It operates in graphics frames, having to pull everything together from the various sources, and generate all the pixels for the next frame at hopefully human visual rates. It also has to let the user do whatever it is that they want to do in the sim. Some things can happen at a more leisurely rate, like transferring files. People are used to large graphic files rezzing a bit at a time, even in the 2D web for instance.</p>
32<p>&nbsp;</p>
33<h1> <a name="command_pump">command pump</a> </h1>
34<p>A command pump has to accept object change commands from the other modules, and make sure that all modules get the data that they need in the form of commands. All the other modules are clients of the command pump. It really has to be as efficient as possible in both network usage and internal processing. It's debatable whether or not it should pre filter data to the other modules or just throw everything at them and let the modules ignore stuff they don't need. I'll err on the filtered data stream side, to keep bandwidth down. It could be a CPU+RAM versus bandwidth trade off. Certainly there should be nothing that prevents that trade off going either way. The other modules SHOULD ignore commands they don't understand. General rule of software engineering - be careful with what you send, be tolerant of what you receive. On the other hand, initial implementations are likely to start simple, just naive with no filters.</p>
35<p>Data in the form of commands to change object state for particular objects is thrown at the command pump at random by other modules. Some may be slow (human interaction speeds from viewers), some maybe fast (bullets and debris whizzing around from the physics engine). All relevant object state changes should be sent to all other modules, perhaps with a complete resync every once in a while as needed just to be sure. We are not really worried about any lost update problems, if two or more modules are trying to change the same object data, the last one wins.</p>
36<p>Timing is also a concern. Data changes sent to the viewer for instance should not include many changes to the same object data per frame, only the last one sent is important to the viewer. Same for the physics engine. Scripts generally set their own time for when they want to know about external changes, but likely want to know about changes to the object they are in when they happen, or when they ask.</p>
37<p>So, the command pump has to understand at least a little about what the command language is. For clients that run at some sort of frame rate, the pump should delete commands when a new one for the same data arrives, so that it sends only one change per data each "frame". It should also delete old commands from previous frames if it detects that the client has moved on without getting all the commands for those frames. Clients could request that they are only interested in specific commands. On the other hand, the pump does not need to know what the data represents, or even what the commands mean. It just stores and forwards, with some arbitrary filtering as requested by each client. So it needs to know which part of each command is the command verb, and which object the command refers to. The command pump also needs to understand which clients have a frame rate, but that could be handled by clients sending filter requests. Filtering entire objects should be possible to, based on what objects the client says it's interested in.</p>
38<p>So basically, it manages FIFO queues of commands, one per client. Filtering out any command type the client requests, filtering for objects of interest, or filtering object data on a frame rate basis per object. Every now and then, it has to sync the sim data store as well, so that the sim state is persistent across restarts, and clients can just download complete objects from the store when they first need them. Phew.</p>
39<p>A good optimisation would be for the sim data store and command pump to be the same module. The pump has to keep the current state of objects in memory anyway, and knows how to pump the command data out, all it needs is a persistent backing store to write to and read at start up.</p>
40<p>As an optional wrapper around the command pump, could be translators for those that want REST, JSON, XMLRPC, or other bloat. With commands to switch to and from these and the native binary protocol. Native binary protocol must always be supported, and always be the default until requested otherwise. 99.9999% of Internet traffic does not NEED to be human readable on the wire, human readable is not so easy for computers to read, they need to translate it. Why slow everyone down? I will insist that these protocol translators operate outside the command pump, don't want to slow that down to satisfy peoples longing for bloat. They should be separate processes, preferably operating on separate cores, or even entirely different computers. They will naturally talk the tight binary protocol to the command pump, just like every one else.</p>
41<p>There are three basic Internet protocols we could use as the basis for the wire traffic. TCP, UDP, and SCTP. SCTP would be a great candidate, except for the lack of MacOS support. I think we should try SCTP, with TCP as backup, SCTP support might come to Mac sooner or later.</p>
42<p>&nbsp;</p>
43<h2> command channels and language </h2>
44<p>In other parts of this document, a command channel is mentioned. Most of the data flowing through this command channel would be for setting or changing prim parameters. I propose a binary format based on llSetLinkPrimitiveParams() <a href="http://lslwiki.net/lslwiki/wakka.php?wakka=llSetLinkPrimitiveParams&amp;show_comments=1#comments">http://lslwiki.net/lslwiki/wakka.php?wakka=llSetLinkPrimitiveParams&amp;show_comments=1#comments</a></p>
45<p>A command list would usually start with a command stating which link number of which linkset the following commands will change. This command can be sent at any time. The link number can be one of the special link numbers. Then a series of prim parameter commands, also in binary. Each prim parameter command starts with a 32 bit integer parameter type, and then follows the actual parameters. Since each parameter type has a fixed format for it's arguments, no need to specify types. All arguments except strings are fixed width, so strings should be moved to the end of the argument list, zero terminated, and UTF-8. In general, there is only a single string for any command that includes a string, but it could be possible to have any number of zero terminated strings in order. Everything should be sent in network order.</p>
46<p>There is naturally some room to define more commands. For instance, a delay before executing the next command, a command to stop this one and start a new one with a different link number, or one to set something other than a prim parameter (a land parameter for instance). We could add a command - "JSON" which means "I'm a fucking human, talk to me in something that looks vaguely like English" until the end of the session. Or a few such commands for a few different formats. BSON, BNRY to change back to the default binary mode, and EWWW to change to the XML mode used by OAR files, MTRX for something like my matrix-RAD wire protocol.</p>
47<p>The command language should be binary.The objects current state is stored as the currently active list of commands for each object. An object in this case would be a prim, mesh, linkset, the sim itself, terrain, or avatars.</p>
48<p>&nbsp;</p>
49<h3> propagating language changes </h3>
50<p>In order to support a changing language as things develop, we could use an initial handshake between clients, servers, and engines (acting as clients to the sim data server) that could exist in these several variations. In the following, the variations are numbered for later discussion. The first word on the line is who is sending the data, indented lines then go into the extra detail that is being sent. The client sends first, as it's always the one to start the connection. The word "checksum" means that a checksum of some standard representation of the language known by that computer is sent. The word "signed" means that the language representation is signed in some manner to show it came from some authority.</p>
51<ol>
52<li><dl><dd>client -&gt; I speak Version 1 checksum</dd><dd>server -&gt; I speak Version 1 checksum</dd><dd></dd></dl></li>
53<li><dl><dd>client -&gt; I speak Version 1 checksum</dd><dd>server -&gt; I speak Version 2 checksum signed<dl><dd>Version 2 is -<dl><dd>A=int,int,float</dd><dd>B=vector,string</dd></dl></dd></dl></dd><dd>client -&gt; I speak Version 2 checksum</dd><dd>server -&gt; I speak Version 2 checksum</dd><dd></dd></dl></li>
54<li><dl><dd>client I speak Version 1 checksum +<dl><dd>which adds -<dl><dd>C=rotation,int</dd><dd>D=string,float,vector</dd></dl></dd></dl></dd><dd>server I speak Version 1 checksum + (only to this client)</dd><dd></dd></dl></li>
55<li><dl><dd>client I speak Version 2 checksum</dd><dd>server I speak Version 2 checksum (which is different) signed<dl><dd>Version 2 really is -<dl><dd>A=int,int,float</dd><dd>B=vector,string</dd></dl></dd></dl></dd><dd>client I speak Version 2 checksum</dd><dd>server I speak Version 2 checksum</dd><dd></dd></dl></li>
56<li><dl><dd>client I speak Version 2 checksum</dd><dd>server I speak Version 1 checksum</dd><dd>client I speak Version 2 checksum signed<dl><dd>Version 2 is -<dl><dd>A=int,int,float</dd><dd>B=vector,string</dd></dl></dd></dl></dd><dd>server I speak Version 2 checksum</dd><dd></dd></dl></li>
57<li><dl><dd>client I speak Version 1 checksum</dd><dd>server I speak Version 1 checksum +<dl><dd>which adds -<dl><dd>C=rotation,int</dd><dd>D=string,float,vector</dd></dl></dd></dl></dd><dd>client I speak Version 1 checksum + (only to this server)</dd></dl></li>
58</ol>
59<p>1) all is good, hopefully the usual thing.</p>
60<p>2) and 4) are subject to evil servers screwing things up. 5) is subject to to evil clients. Should think of ways to protect from that. GPG signed from a trusted source? Web of trust needed.</p>
61<p>3) server only uses that version of the language for talking to that client.</p>
62<p>5) a way to push up an official new protocol version.</p>
63<p>6) is pathological, but might happen during development. On the other hand, the extra data might be useless, as the client does not know what to do with it.</p>
64<p>Sim data server to sim data server changes could happen between servers that have some sort of arrangement between them. Like neighbouring sims, or servers run by the same person. The first server is then client, and contacts the other server as normal. Otherwise, language updates are going to be slow getting around. Physics engines would likely only need to know the new languages when they know how to deal with the new data types. Script engines could benefit from command languages if their scripts know how to deal with the new data types.</p>
65<p>1) 2) 4) 5) both ends just use the same language.</p>
66<p>3) 6) Store the extra things as name/value pairs, send them back as name/value pairs. The "store" part could be a DOS attack to soak up storage space. However, there should be restrictions on who can change things on any given sim data server, so that will help. Should also send any name/value pairs to other clients/servers that register identical pair formats? Would be useful for development of the next version of the language. Note there could be name clashes, so include the data types for each name/value pair when deciding to send it.</p>
67<p>&nbsp;</p>
68<h1> Command language </h1>
69<p><a href="http://lslwiki.net/lslwiki/wakka.php?wakka=llSetPrimitiveParams">llSetPrimitiveParams()</a> is the model I want to follow.</p>
70<p>For the binary protocol, we will try to pack things up as much as possible. A lot of the integers don't need to be full 32 bit integers. Some of the vectors can be just small integers instead of floats. etc.</p>
71<p>Yes, I am trying to micro optimise this part before actual implementation. So I'll go over my assumptions, use cases, and other design decisions here for reference.</p>
72<p>I want the command language itself to use as little bandwidth as possible. I think the on disk storage should just be this tight little command language. I want the code that deals with this command language to be simple. If there has to be any trade offs, the code can be more complicated if it keeps the command language tight. The reasons for these things is scalability. While the distributed nature of this design means that we are generally only concerned with sim level scalability. We do want to support huge sims with large numbers of users. The command pump code could be used for both servers and clients. Flinging the basic data about, and storing it, is something I want to be efficient as possible from the very beginning. Folks, that means PACKED BINARY dammit. Cringe now and get it over with.</p>
73<p>Those people that want to use less efficient and more human readable data formats do get to eat their cake by the use of protocol translators. These should NOT be part of the same process as the inner pump, in order to not have them slow down this inner pump. I see these uses of other data formats as being the exception rather than the rule. That's one of my big assumptions. If you want to avoid bloat and lag, use this tight packed binary, but feel free to filter it through a protocol translator for debugging purposes. Just don't ever get in the way of those wanting things to be efficient.</p>
74<p>The command language will not deal with large binary blob assets directly, things like actual textures, sounds, animations. Instead it will simply deal with pointers to these assets. These pointers might be UUIDs, or names. I want to extend that to include URLs and SHA-1 sums as data pointers (content addressable blobs).</p>
75<p>The main use cases are those basic modules I have identified above - command pump, inventory and sim data stores, physics and script engines, and the viewer. Each of these modules will have an internal representation of each object of interest.</p>
76<p>The data stores want to know which object the commands are for so they can store each object separately. They also only want the latest data for each object. They store each object on disk somewhere, but possible have those objects memory mapped and update them as commands come in.</p>
77<p>The engines want to filter out only the data they need for their work. For the script engine, this filter might be different for each script. The script itself has internal state that would need to be persisted during sim shutdowns, or transfer to inventory.</p>
78<p>The viewer wants all the data, though probably would be happy to just drop old data if it's too late to render it and newer data is already here. It will have internal representations of objects of interest, but may cache them.</p>
79<p>The command language is mostly concerned with changing in world properties. In general these are split into prim (object), sim, avatar, animation, and environment (windlight/lightshare) properties.</p>
80<p>Prims (objects) are the basic building blocks of the world. Originally prims where general 3D primitives, where the idea is that you can build more complex shapes with simple primitives, and the data to describe those primitives is much less that defining each triangle. Since then sculpties have been added, where the triangles are defined as an array of points encoded into and RGB texture, and the triangles have a fixed mapping. Very recently, arbitrary meshes have been introduced, since sculpties had restrictions. Still, the data for the sculpty and mesh triangles and such are treated as blobs of opaque binary data, with pointers to them (and some flags) being the only data dealt with at the prim level. That still works for me. B-)</p>
81<p>Prim properties can change quickly, by the physics engine, scripts, or users editing them in world in real time.</p>
82<p>Sim properties in general don't change fast. No point updating the land music URL many times a second, or even many times a minute. Perhaps someone might want to update the terrain or terrain texture quickly, but current viewers are very slow to track those changes anyway. Perhaps in the future we might want to allow piping video into the terrain to simulate an earthquake, but that would still be represented as just attaching one video stream to the terrain heightfield. So in general I think we can treat sim property changes as slow moving.</p>
83<p>Avatars currently consume the most resources, which is why you can have thousands of prims in an existing SL style sim, but only dozens of avatars. They move around a lot, animate, change clothes, and wear prims. Prims are covered above, animations below, movement might be covered by treating avatars as a prim type. That leaves clothes. In the end, clothes is treated just like a texture change, and is not usually done quickly.</p>
84<p>Animations are currently really only applied to avatars. They are references to animation assets (BVH files), where the asset is downloaded as needed, perhaps cached, and usually triggered by scripts. These tend to be slow changes (updating which animation asset is in use right now), but scaled up by the number of avatars in the sim at any given time. AO animations may change quicker as people move about.</p>
85<p>On the other hand, we are extending animations to prim objects, and thinking about in world editing of them, plus allowing ad hoc "animations" via puppeteer style controls. So we need to keep these things in mind.</p>
86<p>The environment is not changed quickly.</p>
87<p>So, in the end, looks like prim property changes (including avatars as prims) are the heavy users. This is my next big assumption. There should be lots of commands for dealing with individual prim properties, as opposed to say sim commands where we can pack a bunch of properties into a single command. This is the reason why I'm starting with llSetPrimitiveParams() as my model for the command language. Perhaps a hamming code might work well?</p>
88<p>After looking at things from the perspective of the above thoughts, there are very few commands that do NOT have a fixed set of parameters. These are generally those with string parameters. Most of those strings are asset pointers, often UUIDs, though some are just arbitrarily long bits of text that are just displayed as is. So I want to leave command lengths out of the basic command language (though know about them internally), but we do have to deal with some variable length commands. We could have three different versions of those commands that deal with asset pointers, UUID and SHA-1 being fixed length commands, name and URL being variable length (name treated as a relative to current sim URL).</p>
89<p>So a first hack at this that keeps things nice and simple is 8 bit commands, with fixed length parameters for each command. Using a 256 entry table that includes that fixed length, and details of the types of parameters. Perhaps we can use a special value for the length in that table that means "variable length, you might have to actually scan and think about the command data to find it's end", but otherwise just use the fixed length for doing things like skipping to the next command, or copying this command somewhere. I assume that any single command will not be very long. Given that keeping the command data smaller is more important than keeping the code simple, I lean towards the C string style rather than the Pascal string style. In other words, a NULL end of string token instead of a couple of bytes of string length.</p>
90<p>The other issues to deal with are when and how to do the filtering; and how to handle "old" data.</p>
91<p>The first level of filtering would be per object. Physics engines are only interested in physics enabled objects (including avatars some of the time). Viewers are only interested in objects within draw distance. Script engines would initially only be interested in the objects with scripts in them, but maybe interested in other objects they are scanning or whatever.</p>
92<p>The physics and script engines really want to spend most of their resources actually calculating physics and executing scripts. So it might be worthwhile filtering the commands we send to them. Physics is easy, it wants only a few bits of prim data that is well known ahead of time.</p>
93<p>Scripts are harder, any given script at any given moment, might only be interested in a small subset of info about a prim, or the sim, etc. There are two categories - query a parameter right now, or trigger events based on parameter changes. Note that LSL at the moment treats some "ask for parameter" async, they send the request, then setup an event to get the results.</p>
94<p>I think all modules only want current data. The world exists only in real time. Some general method for just dropping commands that are too old needs to be included. "Too old" means that some new command arrived that replaces that old commands data, but before that old command has been dealt with. This might be made more complicated by the existence of command variations where some of the data is encoded in the command byte for the current proposed implementation.</p>
95<p>&nbsp;</p>
96<h2> Prim commands. </h2>
97<p>There are seven commands not allocated in the middle, and two near the end, no doubt we could use those for the missing commands. These are the commands not currently accounted for in the command language -</p>
98<p>llSetPrimMediaParams(face, list)</p>
99<p>Can probably combine most of these. Width and height SHOULD be combined per the LL specs.</p>
100<ul>
101<li>PRIM_MEDIA_ALT_IMAGE_ENABLE boolean</li>
102<li>PRIM_MEDIA_CONTROLS integer:1</li>
103<li>PRIM_MEDIA_CURRENT_URL string</li>
104<li>PRIM_MEDIA_HOME_URL string</li>
105<li>PRIM_MEDIA_AUTO_LOOP boolean</li>
106<li>PRIM_MEDIA_AUTO_PLAY boolean</li>
107<li>PRIM_MEDIA_AUTO_SCALE boolean</li>
108<li>PRIM_MEDIA_AUTO_ZOOM boolean</li>
109<li>PRIM_MEDIA_FIRST_CLICK_INTERACT boolean</li>
110<li>PRIM_MEDIA_WIDTH_PIXELS integer</li>
111<li>PRIM_MEDIA_HEIGHT_PIXELS integer</li>
112<li>PRIM_MEDIA_WHITELIST_ENABLE boolean</li>
113<li>PRIM_MEDIA_WHITELIST string/CSV</li>
114<li>PRIM_MEDIA_PERMS_INTERACT integer:2</li>
115<li>PRIM_MEDIA_PERMS_CONTROL integer:2</li>
116</ul>
117<p>llParticleSystem(list)</p>
118<p>These could be combined a bit, some of them should be.</p>
119<ul>
120<li>PSYS_PART_FLAGS integer (seems to use all 32 bits, but really only 9 bits, plus 6 legacy bits, only 3 of the later defined)</li>
121<li>PSYS_SRC_PATTERN integer:5 (specified as a bit mask, but it's really just one of 5 values)</li>
122<li>PSYS_SRC_BURST_RADIUS float</li>
123<li>PSYS_SRC_ANGLE_BEGIN float</li>
124<li>PSYS_SRC_ANGLE_END float</li>
125<li>PSYS_SRC_INNERANGLE float (deprecated)</li>
126<li>PSYS_SRC_OUTERANGLE float (deprecated)</li>
127<li>PSYS_SRC_TARGET_KEY key</li>
128<li>PSYS_PART_START_COLOR (vector)=colour</li>
129<li>PSYS_PART_END_COLOR (vector)=colour</li>
130<li>PSYS_PART_START_ALPHA float</li>
131<li>PSYS_PART_END_ALPHA float</li>
132<li>PSYS_PART_START_SCALE vector</li>
133<li>PSYS_PART_END_SCALE vector</li>
134<li>PSYS_SRC_TEXTURE string/key</li>
135<li>PSYS_SRC_MAX_AGE float</li>
136<li>PSYS_PART_MAX_AGE float</li>
137<li>PSYS_SRC_BURST_RATE float</li>
138<li>PSYS_SRC_BURST_PART_COUNT integer</li>
139<li>PSYS_SRC_ACCEL vector</li>
140<li>PSYS_SRC_OMEGA vector</li>
141<li>PSYS_SRC_BURST_SPEED_MIN float</li>
142<li>PSYS_SRC_BURST_SPEED_MAX float</li>
143</ul>
144<p><br /> llCreateLink(key boolean)</p>
145<p>llSetTextureAnim(integer:7 face integer integer float float float)</p>
146<p>Stuff to do with the playing of sound clips.</p>
147<p>&nbsp;</p>
148<h2> Parcel commands. </h2>
149<p>There is no need for parcels really, they are just a way of managing a fixed sized sim. We use arbitrary sized sims with little or no boundaries. So "parcels" can just be a bunch of smaller sims arranged in what ever way makes them more manageable by the sim owners. I would even suggest that sky boxes be just another sim, but with a high vertical offset from the land sims.</p>
150<p>&nbsp;</p>
151<h2> Sim commands. </h2>
152<p>Note that terrain and water could be dealt with by prim commands, treating them as heightfield meshes. This assumes that parcels are just specialised sims.</p>
153<p>A sim has the following properties, which will need commands to change them -</p>
154<p>Name, description, owner, group.</p>
155<p>Rating - LL introduced the concept of maturity ratings, but the web has various other ways of dealing with that, with no standard system across the board. We could just say "let the web server owner figure out their own system", though still have the option of supporting LL style maturity ratings.</p>
156<p>Land sales and deeding are possibly meaningless in this case, but we can always support the legacy LL method. Note that some of the legacy LL stuff makes no sense outside of LL type grids.</p>
157<p>Autoreturn setting. Edit terrain and fly permissions, as well as object create, entry, and script running permissions for the land group, and for others. That's a nice set of 8 bits. B-)</p>
158<p>Creating landmarks permission is similar to creating bookmarks. Not really something that is done on the web, and we are opening this up to web style access systems, so we don't really need that.</p>
159<p>No damage is irrelevant really, if they want combat on their sims, they can provide a proper combat system. No pushing is likely similar.</p>
160<p>Showing places in search is really now up to the search engines to cope with this new form of data.</p>
161<p>A snapshot is good. Teleport landing spot and routing should have more options, but we can start with just supporting the usual LL stuff.</p>
162<p>Audio and media are now handled differently anyway.</p>
163<p>Access is now controlled by the usual web methods.</p>
164<p>Allowing land resale and joining / sub dividing is no longer relevant. Telehubs are no longer relevant. Object bonus, and minimum agent age are not relevant. Agent limit might be relevant, but should be taken care of by usual web access systems.</p>
165<p>Will still need to send broadcast messages to people in sims.</p>
166<p>Restarting sims, disabling scripts, collisions, and physics.</p>
167<p>Four terrain textures, and the four pairs of elevation ranges (one per corner) should still be supported, but we should also support just setting a fixed texture, or even several.</p>
168<p>Water height, but also allow water heightfield. Terrain raise and lower limits not needed. Terrain heightfield and editing. Baking terrain. Don't really need stuff specific to backing up heightfields, they just become one more texture file on the web server.</p>
169<p>Sim sun stuff should be handled by the windlight commands.</p>
170<p>Allowing voice chat becomes a matter of whether the sim owner bothered to set that up.</p>
171<p>Allow direct teleport is now part of access controls.</p>
172<p>Covenant is just the sites ToS.</p>
173<p>Should be able to kick people, and return their stuff. Though that's more content management, which we can leave to CMS style systems. Most everything else is content management, or admin stuff best left to other tools.</p>
174<p>Create and delete an object. Moving and editing them is up to the prim commands. Though it should be pointed out, the position and rotation of root prims are a property of the sim rather than of the prim or linkset itself.</p>
175<p>&nbsp;</p>
176<h2> Windlight commands. </h2>
177<p>&nbsp;</p>
178<h2> Avatar commands. </h2>
179<p>Some of this could be dealt with by treating the avatar as a prim. In fact, Alice's proposed animation system deals with animating avatars and prims the same way.</p>
180<p>&nbsp;</p>
181<h2> Animation commands. </h2>
182<p>Alice is working on that over at the <a href="../ClientHamr/BVJ.html">BVJ</a> page.</p>
183<p>&nbsp;</p>
184<h2> Meta commands. </h2>
185<p>0 SELECT_OBJECT key</p>
186<p>There will be a bunch of four byte commands, they all switch up to less efficient command representations, so they can afford to be more verbose. B-)</p>
187<p>They all are actually one byte commands, with the extra three bytes just being verbose padding for the humans. Let's hope there are no conflicts with other commands, otherwise the other command will just have to move.</p>
188<ul>
189<li>BSON - switch to BSON mode.</li>
190<li>EWWW - switch to XML mode (as used in IAR and OAR files from OpenSim).</li>
191<li>FUCK - for future proofing, in case I got my estimates all wrong and the protocol evolves beyond the built in limits. This command means switch up to a two byte command structure, and four byte object IDs. This two byte command structure should include a similar command to change up again, etc. all the way to four byte commands.</li>
192<li>JSON - switch to JSON mode.</li>
193<li>LUA - switch to Lua mode, sending valid Lua statements back and forth.&nbsp; This has been useful during very early development.</li>
194<li>MTRX - switch to matrix-RAD mode</li>
195<li>TITE - switch back to the tight binary, one byte command mode.</li>
196</ul>
197<p>Note that a key in SL is a 32 hex digit string (128 bits, or 16 bytes), with four dashes added to make it 36 characters long. We probably don't need that much uniqueness within a sim, or even within a host full of sims. Two bytes gives us 65,536 unique objects, three bytes 16,777,216, and four bytes 4,294,967,296 objects. The maximum number of prims on a 256x256 SL sim is 15,000, and the maximum number of avatars is 100. So two bytes seems like plenty.</p>
198<p>I would suggest using SHA-1 hashes of fixed blobs like textures and sounds, in the same way that git uses them for content addressable storage. SHA-1 is 160 bits (20 bytes), but as git has shown, if there are a small number of objects, you can get away with using just the first few digits. The advantage here is that multiple copies of the same texture end up with the same SHA-1, and thus we only store one copy.</p>
199<p>Since we are using the format used by LSL prim parameter setting as the guide, after looking at it, I think we can do something like this...</p>
200<p>A command is one byte, letting us have 256 commands. The very first command is 0 - select what object the next commands will work on.</p>
201<p>The prim parameters take up the next 32 commands, but that only needs 5 bits. Some of those prim parameters include an integer, or even boolean, that could only need 3 bits. PRIM_TYPE in particular could encode the type itself into those extra 3 bits, making a total of 8 commands, and making it easy to fit the different sets of parameters into a table. PRIM_TYPE_LEGACY becomes 6 commands; PRIM_MATERIAL 8; PRIM_PHYSICS, _TEMP_ON_REZ, _PHANTOM, _FULLBRIGHT, _FLEXIBLE, _POINT_LIGHT, _CAST_SHADOWS, _TEXGEN 2 each; PRIM_TYPE 8; PRIM_BUMP_SHINY could be 4 with the shiny part in the command number. The other 10 add to make a total of 52. 103 commands left for the other commands, I think that might work.</p>
202<p>&nbsp;</p>
203<h2> The big arsed command table </h2>
204<table style="border-width: 1px; border-color: #ffffff; border-style: solid;" border="1">
205<tbody>
206<tr><th>decimal</th><th>hex</th><th>binary</th><th>ASCII</th><th>command</th><th>arguments</th><th>comments</th></tr>
207<tr>
208<td>0</td>
209<td>00</td>
210<td>0000 0000</td>
211<td>NULL</td>
212<td>SELECT</td>
213<td>key</td>
214<td>Next commands refer to this object.</td>
215</tr>
216<tr>
217<td>1</td>
218<td>01</td>
219<td>0000 0001</td>
220<td>SOH</td>
221<td>PRIM_TYPE_LEGACY BOX</td>
222<td>vector float float vector vector</td>
223<td>&nbsp;</td>
224</tr>
225<tr>
226<td>2</td>
227<td>02</td>
228<td>0000 0010</td>
229<td>STX</td>
230<td>PRIM_MATERIAL (STONE)</td>
231<td>integer:3</td>
232<td>OK, the cleanest way to deal with this conflicting with the BSON commands is to have it as just one command. sigh</td>
233</tr>
234<tr>
235<td>3</td>
236<td>03</td>
237<td>0000 0011</td>
238<td>ETX</td>
239<td>PRIM_PHYSICS off</td>
240<td>&nbsp;</td>
241<td>&nbsp;</td>
242</tr>
243<tr>
244<td>4</td>
245<td>04</td>
246<td>0000 0100</td>
247<td>EOT</td>
248<td>PRIM_TEMP_ON_REZ off</td>
249<td>&nbsp;</td>
250<td>&nbsp;</td>
251</tr>
252<tr>
253<td>5</td>
254<td>05</td>
255<td>0000 0101</td>
256<td>ENQ</td>
257<td>PRIM_PHANTOM off</td>
258<td>&nbsp;</td>
259<td>&nbsp;</td>
260</tr>
261<tr>
262<td>6</td>
263<td>06</td>
264<td>0000 0110</td>
265<td>ACK</td>
266<td>PRIM_POSITION</td>
267<td>vector</td>
268<td>&nbsp;</td>
269</tr>
270<tr>
271<td>7</td>
272<td>07</td>
273<td>0000 0111</td>
274<td>BEL</td>
275<td>PRIM_SIZE</td>
276<td>vector</td>
277<td>&nbsp;</td>
278</tr>
279<tr>
280<td>8</td>
281<td>08</td>
282<td>0000 1000</td>
283<td>BS</td>
284<td>PRIM_ROTATION</td>
285<td>rotation</td>
286<td>&nbsp;</td>
287</tr>
288<tr>
289<td>9</td>
290<td>09</td>
291<td>0000 1001</td>
292<td>TAB</td>
293<td>PRIM_TYPE BOX</td>
294<td>integer:2 vector float vector vector vector</td>
295<td>&nbsp;</td>
296</tr>
297<tr>
298<td>10</td>
299<td>0A</td>
300<td>0000 1010</td>
301<td>LF</td>
302<td>&nbsp;</td>
303<td>&nbsp;</td>
304<td>&nbsp;</td>
305</tr>
306<tr>
307<td>11</td>
308<td>0B</td>
309<td>0000 1011</td>
310<td>VT</td>
311<td>&nbsp;</td>
312<td>&nbsp;</td>
313<td>&nbsp;</td>
314</tr>
315<tr>
316<td>12</td>
317<td>0C</td>
318<td>0000 1100</td>
319<td>FF</td>
320<td>&nbsp;</td>
321<td>&nbsp;</td>
322<td>&nbsp;</td>
323</tr>
324<tr>
325<td>13</td>
326<td>0D</td>
327<td>0000 1101</td>
328<td>CR</td>
329<td>&nbsp;</td>
330<td>&nbsp;</td>
331<td>&nbsp;</td>
332</tr>
333<tr>
334<td>14</td>
335<td>0E</td>
336<td>0000 1110</td>
337<td>SO</td>
338<td>&nbsp;</td>
339<td>&nbsp;</td>
340<td>&nbsp;</td>
341</tr>
342<tr>
343<td>15</td>
344<td>0F</td>
345<td>0000 1111</td>
346<td>SI</td>
347<td>&nbsp;</td>
348<td>&nbsp;</td>
349<td>&nbsp;</td>
350</tr>
351<tr>
352<td>16</td>
353<td>10</td>
354<td>0001 0000</td>
355<td>DLE</td>
356<td>&nbsp;</td>
357<td>&nbsp;</td>
358<td>&nbsp;</td>
359</tr>
360<tr>
361<td>17</td>
362<td>11</td>
363<td>0001 0001</td>
364<td>DC1</td>
365<td>PRIM_TEXTURE</td>
366<td>face string/key vector vector float</td>
367<td>&nbsp;</td>
368</tr>
369<tr>
370<td>18</td>
371<td>12</td>
372<td>0001 0010</td>
373<td>DC2</td>
374<td>PRIM_COLOUR</td>
375<td>face (vector float)=colour</td>
376<td>&nbsp;</td>
377</tr>
378<tr>
379<td>19</td>
380<td>13</td>
381<td>0001 0011</td>
382<td>DC3</td>
383<td>PRIM_BUMP_SHINY PRIM_SHINY_NONE</td>
384<td>face integer:5</td>
385<td>&nbsp;</td>
386</tr>
387<tr>
388<td>20</td>
389<td>14</td>
390<td>0001 0100</td>
391<td>DC4</td>
392<td>PRIM_FULLBRIGHT off</td>
393<td>face</td>
394<td>&nbsp;</td>
395</tr>
396<tr>
397<td>21</td>
398<td>15</td>
399<td>0001 0101</td>
400<td>NAK</td>
401<td>PRIM_FLEXIBLE off</td>
402<td>&nbsp;</td>
403<td>&nbsp;</td>
404</tr>
405<tr>
406<td>22</td>
407<td>16</td>
408<td>0001 0110</td>
409<td>SYN</td>
410<td>PRIM_TEXGEN PRIM_TEXGEN_DEFAULT</td>
411<td>face</td>
412<td>&nbsp;</td>
413</tr>
414<tr>
415<td>23</td>
416<td>17</td>
417<td>0001 0111</td>
418<td>ETB</td>
419<td>PRIM_POINT_LIGHT off</td>
420<td>&nbsp;</td>
421<td>&nbsp;</td>
422</tr>
423<tr>
424<td>24</td>
425<td>18</td>
426<td>0001 1000</td>
427<td>CAN</td>
428<td>PRIM_CAST_SHADOWS off</td>
429<td>&nbsp;</td>
430<td>&nbsp;</td>
431</tr>
432<tr>
433<td>25</td>
434<td>19</td>
435<td>0001 1001</td>
436<td>EM</td>
437<td>PRIM_GLOW</td>
438<td>face float</td>
439<td>&nbsp;</td>
440</tr>
441<tr>
442<td>26</td>
443<td>1A</td>
444<td>0001 1010</td>
445<td>SUB</td>
446<td>PRIM_TEXT</td>
447<td>string (vector float)=colour</td>
448<td>&nbsp;</td>
449</tr>
450<tr>
451<td>27</td>
452<td>1B</td>
453<td>0001 1011</td>
454<td>ESC</td>
455<td>PRIM_NAME</td>
456<td>string</td>
457<td>&nbsp;</td>
458</tr>
459<tr>
460<td>28</td>
461<td>1C</td>
462<td>0001 1100</td>
463<td>FS</td>
464<td>PRIM_DESC</td>
465<td>string</td>
466<td>&nbsp;</td>
467</tr>
468<tr>
469<td>29</td>
470<td>1D</td>
471<td>0001 1101</td>
472<td>GS</td>
473<td>PRIM_ROT_LOCAL</td>
474<td>rotation</td>
475<td>&nbsp;</td>
476</tr>
477<tr>
478<td>30</td>
479<td>1E</td>
480<td>0001 1110</td>
481<td>RS</td>
482<td>PRIM_POS_LOCAL</td>
483<td>vector</td>
484<td>This is just my guess about where LL will put it.</td>
485</tr>
486<tr>
487<td>31</td>
488<td>1F</td>
489<td>0001 1111</td>
490<td>US</td>
491<td>&nbsp;</td>
492<td>&nbsp;</td>
493<td>&nbsp;</td>
494</tr>
495<tr>
496<td>32</td>
497<td>20</td>
498<td>0010 0000</td>
499<td>SPACE</td>
500<td>PRIM_OMEGA</td>
501<td>vector float float</td>
502<td>&nbsp;</td>
503</tr>
504<tr>
505<td>33</td>
506<td>21</td>
507<td>0010 0001</td>
508<td>&nbsp;!</td>
509<td>PRIM_TYPE_LEGACY CYLINDER</td>
510<td>vector float float vector vector</td>
511<td>&nbsp;</td>
512</tr>
513<tr>
514<td>34</td>
515<td>22</td>
516<td>0010 0010</td>
517<td>"</td>
518<td>(PRIM_MATERIAL METAL)</td>
519<td>&nbsp;</td>
520<td>&nbsp;</td>
521</tr>
522<tr>
523<td>35</td>
524<td>23</td>
525<td>0010 0011</td>
526<td>#</td>
527<td>&nbsp;</td>
528<td>&nbsp;</td>
529<td>&nbsp;</td>
530</tr>
531<tr>
532<td>36</td>
533<td>24</td>
534<td>0010 0100</td>
535<td>$</td>
536<td>&nbsp;</td>
537<td>&nbsp;</td>
538<td>&nbsp;</td>
539</tr>
540<tr>
541<td>37</td>
542<td>25</td>
543<td>0010 0101</td>
544<td>&nbsp;%</td>
545<td>&nbsp;</td>
546<td>&nbsp;</td>
547<td>&nbsp;</td>
548</tr>
549<tr>
550<td>38</td>
551<td>26</td>
552<td>0010 0110</td>
553<td>&amp;</td>
554<td>&nbsp;</td>
555<td>&nbsp;</td>
556<td>&nbsp;</td>
557</tr>
558<tr>
559<td>39</td>
560<td>27</td>
561<td>0010 0111</td>
562<td>'</td>
563<td>&nbsp;</td>
564<td>&nbsp;</td>
565<td>&nbsp;</td>
566</tr>
567<tr>
568<td>40</td>
569<td>28</td>
570<td>0010 1000</td>
571<td>(</td>
572<td>&nbsp;</td>
573<td>&nbsp;</td>
574<td>&nbsp;</td>
575</tr>
576<tr>
577<td>41</td>
578<td>29</td>
579<td>0010 1001</td>
580<td>)</td>
581<td>PRIM_TYPE CYLINDER</td>
582<td>integer:2 vector float vector vector vector</td>
583<td>&nbsp;</td>
584</tr>
585<tr>
586<td>42</td>
587<td>2A</td>
588<td>0010 1010</td>
589<td>*</td>
590<td>&nbsp;</td>
591<td>&nbsp;</td>
592<td>&nbsp;</td>
593</tr>
594<tr>
595<td>43</td>
596<td>2B</td>
597<td>0010 1011</td>
598<td>+</td>
599<td>&nbsp;</td>
600<td>&nbsp;</td>
601<td>&nbsp;</td>
602</tr>
603<tr>
604<td>44</td>
605<td>2C</td>
606<td>0010 1100</td>
607<td>,</td>
608<td>&nbsp;</td>
609<td>&nbsp;</td>
610<td>&nbsp;</td>
611</tr>
612<tr>
613<td>45</td>
614<td>2D</td>
615<td>0010 1101</td>
616<td>-</td>
617<td>&nbsp;</td>
618<td>&nbsp;</td>
619<td>&nbsp;</td>
620</tr>
621<tr>
622<td>46</td>
623<td>2E</td>
624<td>0010 1110</td>
625<td>.</td>
626<td>&nbsp;</td>
627<td>&nbsp;</td>
628<td>&nbsp;</td>
629</tr>
630<tr>
631<td>47</td>
632<td>2F</td>
633<td>0010 1111</td>
634<td>/</td>
635<td>&nbsp;</td>
636<td>&nbsp;</td>
637<td>&nbsp;</td>
638</tr>
639<tr>
640<td>48</td>
641<td>30</td>
642<td>0011 0000</td>
643<td>0</td>
644<td>&nbsp;</td>
645<td>&nbsp;</td>
646<td>&nbsp;</td>
647</tr>
648<tr>
649<td>49</td>
650<td>31</td>
651<td>0011 0001</td>
652<td>1</td>
653<td>&nbsp;</td>
654<td>&nbsp;</td>
655<td>&nbsp;</td>
656</tr>
657<tr>
658<td>50</td>
659<td>32</td>
660<td>0011 0010</td>
661<td>2</td>
662<td>&nbsp;</td>
663<td>&nbsp;</td>
664<td>&nbsp;</td>
665</tr>
666<tr>
667<td>51</td>
668<td>33</td>
669<td>0011 0011</td>
670<td>3</td>
671<td>&nbsp;</td>
672<td>&nbsp;</td>
673<td>&nbsp;</td>
674</tr>
675<tr>
676<td>52</td>
677<td>34</td>
678<td>0011 0100</td>
679<td>4</td>
680<td>&nbsp;</td>
681<td>&nbsp;</td>
682<td>&nbsp;</td>
683</tr>
684<tr>
685<td>53</td>
686<td>35</td>
687<td>0011 0101</td>
688<td>5</td>
689<td>&nbsp;</td>
690<td>&nbsp;</td>
691<td>&nbsp;</td>
692</tr>
693<tr>
694<td>54</td>
695<td>36</td>
696<td>0011 0110</td>
697<td>6</td>
698<td>&nbsp;</td>
699<td>&nbsp;</td>
700<td>&nbsp;</td>
701</tr>
702<tr>
703<td>55</td>
704<td>37</td>
705<td>0011 0111</td>
706<td>7</td>
707<td>&nbsp;</td>
708<td>&nbsp;</td>
709<td>&nbsp;</td>
710</tr>
711<tr>
712<td>56</td>
713<td>38</td>
714<td>0011 1000</td>
715<td>8</td>
716<td>&nbsp;</td>
717<td>&nbsp;</td>
718<td>&nbsp;</td>
719</tr>
720<tr>
721<td>57</td>
722<td>39</td>
723<td>0011 1001</td>
724<td>9</td>
725<td>&nbsp;</td>
726<td>&nbsp;</td>
727<td>&nbsp;</td>
728</tr>
729<tr>
730<td>58</td>
731<td>3A</td>
732<td>0011 1010</td>
733<td>&nbsp;:</td>
734<td>&nbsp;</td>
735<td>&nbsp;</td>
736<td>&nbsp;</td>
737</tr>
738<tr>
739<td>59</td>
740<td>3B</td>
741<td>0011 1011</td>
742<td>&nbsp;;</td>
743<td>&nbsp;</td>
744<td>&nbsp;</td>
745<td>&nbsp;</td>
746</tr>
747<tr>
748<td>60</td>
749<td>3C</td>
750<td>0011 1100</td>
751<td>&lt;</td>
752<td>&nbsp;</td>
753<td>&nbsp;</td>
754<td>&nbsp;</td>
755</tr>
756<tr>
757<td>61</td>
758<td>3D</td>
759<td>0011 1101</td>
760<td>=</td>
761<td>&nbsp;</td>
762<td>&nbsp;</td>
763<td>&nbsp;</td>
764</tr>
765<tr>
766<td>62</td>
767<td>3E</td>
768<td>0011 1110</td>
769<td>&gt;</td>
770<td>&nbsp;</td>
771<td>&nbsp;</td>
772<td>&nbsp;</td>
773</tr>
774<tr>
775<td>63</td>
776<td>3F</td>
777<td>0011 1111</td>
778<td>&nbsp;?</td>
779<td>&nbsp;</td>
780<td>&nbsp;</td>
781<td>&nbsp;</td>
782</tr>
783<tr>
784<td>64</td>
785<td>40</td>
786<td>0100 0000</td>
787<td>@</td>
788<td>&nbsp;</td>
789<td>&nbsp;</td>
790<td>&nbsp;</td>
791</tr>
792<tr>
793<td>65</td>
794<td>41</td>
795<td>0100 0001</td>
796<td>A</td>
797<td>PRIM_TYPE_LEGACY PRISM</td>
798<td>vector float float vector vector</td>
799<td>&nbsp;</td>
800</tr>
801<tr>
802<td>66</td>
803<td>42</td>
804<td>0100 0010</td>
805<td>B</td>
806<td>BSON</td>
807<td>&nbsp;</td>
808<td>Switch to BSON mode. (Conflicts with PRIM_MATERIAL GLASS)</td>
809</tr>
810<tr>
811<td>67</td>
812<td>43</td>
813<td>0100 0011</td>
814<td>C</td>
815<td>&nbsp;</td>
816<td>&nbsp;</td>
817<td>&nbsp;</td>
818</tr>
819<tr>
820<td>68</td>
821<td>44</td>
822<td>0100 0100</td>
823<td>D</td>
824<td>&nbsp;</td>
825<td>&nbsp;</td>
826<td>&nbsp;</td>
827</tr>
828<tr>
829<td>69</td>
830<td>45</td>
831<td>0100 0101</td>
832<td>E</td>
833<td>EWWW</td>
834<td>&nbsp;</td>
835<td>Switch to XML mode, as used by OpenSim in IAR and OAR backup files.</td>
836</tr>
837<tr>
838<td>70</td>
839<td>46</td>
840<td>0100 0110</td>
841<td>F</td>
842<td>FUCK</td>
843<td>&nbsp;</td>
844<td>Switch to two, four byte command mode; with three, four bytes of object ID.</td>
845</tr>
846<tr>
847<td>71</td>
848<td>47</td>
849<td>0100 0111</td>
850<td>G</td>
851<td>&nbsp;</td>
852<td>&nbsp;</td>
853<td>&nbsp;</td>
854</tr>
855<tr>
856<td>72</td>
857<td>48</td>
858<td>0100 1000</td>
859<td>H</td>
860<td>&nbsp;</td>
861<td>&nbsp;</td>
862<td>&nbsp;</td>
863</tr>
864<tr>
865<td>73</td>
866<td>49</td>
867<td>0100 1001</td>
868<td>I</td>
869<td>PRIM_TYPE PRISM</td>
870<td>integer:2 vector float vector vector vector</td>
871<td>&nbsp;</td>
872</tr>
873<tr>
874<td>74</td>
875<td>4A</td>
876<td>0100 1010</td>
877<td>J</td>
878<td>JSON</td>
879<td>&nbsp;</td>
880<td>Switch to JSON mode.</td>
881</tr>
882<tr>
883<td>75</td>
884<td>4B</td>
885<td>0100 1011</td>
886<td>K</td>
887<td>&nbsp;</td>
888<td>&nbsp;</td>
889<td>&nbsp;</td>
890</tr>
891<tr>
892<td>76</td>
893<td>4C</td>
894<td>0100 1100</td>
895<td>L</td>
896<td>&nbsp;LUA</td>
897<td>&nbsp;</td>
898<td>&nbsp;Switch to Lua mode.</td>
899</tr>
900<tr>
901<td>77</td>
902<td>4D</td>
903<td>0100 1101</td>
904<td>M</td>
905<td>MRTX</td>
906<td>&nbsp;</td>
907<td>Switch to matrix-RAD mode.</td>
908</tr>
909<tr>
910<td>78</td>
911<td>4E</td>
912<td>0100 1110</td>
913<td>N</td>
914<td>&nbsp;</td>
915<td>&nbsp;</td>
916<td>&nbsp;</td>
917</tr>
918<tr>
919<td>79</td>
920<td>4F</td>
921<td>0100 1111</td>
922<td>O</td>
923<td>&nbsp;</td>
924<td>&nbsp;</td>
925<td>&nbsp;</td>
926</tr>
927<tr>
928<td>80</td>
929<td>50</td>
930<td>0101 0000</td>
931<td>P</td>
932<td>&nbsp;</td>
933<td>&nbsp;</td>
934<td>&nbsp;</td>
935</tr>
936<tr>
937<td>81</td>
938<td>51</td>
939<td>0101 0001</td>
940<td>Q</td>
941<td>&nbsp;</td>
942<td>&nbsp;</td>
943<td>&nbsp;</td>
944</tr>
945<tr>
946<td>82</td>
947<td>52</td>
948<td>0101 0010</td>
949<td>R</td>
950<td>&nbsp;</td>
951<td>&nbsp;</td>
952<td>&nbsp;</td>
953</tr>
954<tr>
955<td>83</td>
956<td>53</td>
957<td>0101 0011</td>
958<td>S</td>
959<td>PRIM_BUMP_SHINY PRIM_SHINY_LOW</td>
960<td>face integer:5</td>
961<td>&nbsp;</td>
962</tr>
963<tr>
964<td>84</td>
965<td>54</td>
966<td>0101 0100</td>
967<td>T</td>
968<td>TITE</td>
969<td>&nbsp;</td>
970<td>Switch back to the tight binary mode that is the sane default. B-)</td>
971</tr>
972<tr>
973<td>85</td>
974<td>55</td>
975<td>0101 0101</td>
976<td>U</td>
977<td>&nbsp;</td>
978<td>&nbsp;</td>
979<td>&nbsp;</td>
980</tr>
981<tr>
982<td>86</td>
983<td>56</td>
984<td>0101 0110</td>
985<td>V</td>
986<td>&nbsp;</td>
987<td>&nbsp;</td>
988<td>&nbsp;</td>
989</tr>
990<tr>
991<td>87</td>
992<td>57</td>
993<td>0101 0111</td>
994<td>W</td>
995<td>&nbsp;</td>
996<td>&nbsp;</td>
997<td>&nbsp;</td>
998</tr>
999<tr>
1000<td>88</td>
1001<td>58</td>
1002<td>0101 1000</td>
1003<td>X</td>
1004<td>&nbsp;</td>
1005<td>&nbsp;</td>
1006<td>&nbsp;</td>
1007</tr>
1008<tr>
1009<td>89</td>
1010<td>59</td>
1011<td>0101 1001</td>
1012<td>Y</td>
1013<td>&nbsp;</td>
1014<td>&nbsp;</td>
1015<td>&nbsp;</td>
1016</tr>
1017<tr>
1018<td>90</td>
1019<td>5A</td>
1020<td>0101 1010</td>
1021<td>Z</td>
1022<td>&nbsp;</td>
1023<td>&nbsp;</td>
1024<td>&nbsp;</td>
1025</tr>
1026<tr>
1027<td>91</td>
1028<td>5B</td>
1029<td>0101 1011</td>
1030<td>[</td>
1031<td>&nbsp;</td>
1032<td>&nbsp;</td>
1033<td>&nbsp;</td>
1034</tr>
1035<tr>
1036<td>92</td>
1037<td>5C</td>
1038<td>0101 1100</td>
1039<td>\</td>
1040<td>&nbsp;</td>
1041<td>&nbsp;</td>
1042<td>&nbsp;</td>
1043</tr>
1044<tr>
1045<td>93</td>
1046<td>5D</td>
1047<td>0101 1101</td>
1048<td>]</td>
1049<td>&nbsp;</td>
1050<td>&nbsp;</td>
1051<td>&nbsp;</td>
1052</tr>
1053<tr>
1054<td>94</td>
1055<td>5E</td>
1056<td>0101 1110</td>
1057<td>^</td>
1058<td>&nbsp;</td>
1059<td>&nbsp;</td>
1060<td>&nbsp;</td>
1061</tr>
1062<tr>
1063<td>95</td>
1064<td>5F</td>
1065<td>0101 1111</td>
1066<td>_</td>
1067<td>&nbsp;</td>
1068<td>&nbsp;</td>
1069<td>&nbsp;</td>
1070</tr>
1071<tr>
1072<td>96</td>
1073<td>60</td>
1074<td>0110 0000</td>
1075<td>`</td>
1076<td>&nbsp;</td>
1077<td>&nbsp;</td>
1078<td>&nbsp;</td>
1079</tr>
1080<tr>
1081<td>97</td>
1082<td>61</td>
1083<td>0110 0001</td>
1084<td>a</td>
1085<td>PRIM_TYPE_LEGACY SPHERE</td>
1086<td>vector float vector</td>
1087<td>&nbsp;</td>
1088</tr>
1089<tr>
1090<td>98</td>
1091<td>62</td>
1092<td>0110 0010</td>
1093<td>b</td>
1094<td>bson</td>
1095<td>&nbsp;</td>
1096<td>Switch to BSON mode. (Conflicts with PRIM_MATERIAL WOOD)</td>
1097</tr>
1098<tr>
1099<td>99</td>
1100<td>63</td>
1101<td>0110 0011</td>
1102<td>c</td>
1103<td>&nbsp;</td>
1104<td>&nbsp;</td>
1105<td>&nbsp;</td>
1106</tr>
1107<tr>
1108<td>100</td>
1109<td>64</td>
1110<td>0110 0100</td>
1111<td>d</td>
1112<td>&nbsp;</td>
1113<td>&nbsp;</td>
1114<td>&nbsp;</td>
1115</tr>
1116<tr>
1117<td>101</td>
1118<td>65</td>
1119<td>0110 0101</td>
1120<td>e</td>
1121<td>ewww</td>
1122<td>&nbsp;</td>
1123<td>Switch to XML mode, as used by OpenSim in IAR and OAR backup files.</td>
1124</tr>
1125<tr>
1126<td>102</td>
1127<td>66</td>
1128<td>0110 0110</td>
1129<td>f</td>
1130<td>fuck</td>
1131<td>&nbsp;</td>
1132<td>Switch to two, four byte command mode; with three, four bytes of object ID.</td>
1133</tr>
1134<tr>
1135<td>103</td>
1136<td>67</td>
1137<td>0110 0111</td>
1138<td>g</td>
1139<td>&nbsp;</td>
1140<td>&nbsp;</td>
1141<td>&nbsp;</td>
1142</tr>
1143<tr>
1144<td>104</td>
1145<td>68</td>
1146<td>0110 1000</td>
1147<td>h</td>
1148<td>&nbsp;</td>
1149<td>&nbsp;</td>
1150<td>&nbsp;</td>
1151</tr>
1152<tr>
1153<td>105</td>
1154<td>69</td>
1155<td>0110 1001</td>
1156<td>i</td>
1157<td>PRIM_TYPE SPHERE</td>
1158<td>integer:2 vector float vector vector</td>
1159<td>&nbsp;</td>
1160</tr>
1161<tr>
1162<td>106</td>
1163<td>6A</td>
1164<td>0110 1010</td>
1165<td>j</td>
1166<td>json</td>
1167<td>&nbsp;</td>
1168<td>Switch to JSON mode.</td>
1169</tr>
1170<tr>
1171<td>107</td>
1172<td>6B</td>
1173<td>0110 1011</td>
1174<td>k</td>
1175<td>&nbsp;</td>
1176<td>&nbsp;</td>
1177<td>&nbsp;</td>
1178</tr>
1179<tr>
1180<td>108</td>
1181<td>6C</td>
1182<td>0110 1100</td>
1183<td>l</td>
1184<td>&nbsp;lua</td>
1185<td>&nbsp;</td>
1186<td>&nbsp;Switch to Lua mode.</td>
1187</tr>
1188<tr>
1189<td>109</td>
1190<td>6D</td>
1191<td>0110 1101</td>
1192<td>m</td>
1193<td>mrtx</td>
1194<td>&nbsp;</td>
1195<td>Switch to matrix-RAD mode.</td>
1196</tr>
1197<tr>
1198<td>110</td>
1199<td>6E</td>
1200<td>0110 1110</td>
1201<td>n</td>
1202<td>&nbsp;</td>
1203<td>&nbsp;</td>
1204<td>&nbsp;</td>
1205</tr>
1206<tr>
1207<td>111</td>
1208<td>6F</td>
1209<td>0110 1111</td>
1210<td>o</td>
1211<td>&nbsp;</td>
1212<td>&nbsp;</td>
1213<td>&nbsp;</td>
1214</tr>
1215<tr>
1216<td>112</td>
1217<td>70</td>
1218<td>0111 0000</td>
1219<td>p</td>
1220<td>&nbsp;</td>
1221<td>&nbsp;</td>
1222<td>&nbsp;</td>
1223</tr>
1224<tr>
1225<td>113</td>
1226<td>71</td>
1227<td>0111 0001</td>
1228<td>q</td>
1229<td>&nbsp;</td>
1230<td>&nbsp;</td>
1231<td>&nbsp;</td>
1232</tr>
1233<tr>
1234<td>114</td>
1235<td>72</td>
1236<td>0111 0010</td>
1237<td>r</td>
1238<td>&nbsp;</td>
1239<td>&nbsp;</td>
1240<td>&nbsp;</td>
1241</tr>
1242<tr>
1243<td>115</td>
1244<td>73</td>
1245<td>0111 0011</td>
1246<td>s</td>
1247<td>&nbsp;</td>
1248<td>&nbsp;</td>
1249<td>&nbsp;</td>
1250</tr>
1251<tr>
1252<td>116</td>
1253<td>74</td>
1254<td>0111 0100</td>
1255<td>t</td>
1256<td>tite</td>
1257<td>&nbsp;</td>
1258<td>Switch back to the tight binary mode that is the sane default. B-)</td>
1259</tr>
1260<tr>
1261<td>117</td>
1262<td>75</td>
1263<td>0111 0101</td>
1264<td>u</td>
1265<td>&nbsp;</td>
1266<td>&nbsp;</td>
1267<td>&nbsp;</td>
1268</tr>
1269<tr>
1270<td>118</td>
1271<td>76</td>
1272<td>0111 0110</td>
1273<td>v</td>
1274<td>&nbsp;</td>
1275<td>&nbsp;</td>
1276<td>&nbsp;</td>
1277</tr>
1278<tr>
1279<td>119</td>
1280<td>77</td>
1281<td>0111 0111</td>
1282<td>w</td>
1283<td>&nbsp;</td>
1284<td>&nbsp;</td>
1285<td>&nbsp;</td>
1286</tr>
1287<tr>
1288<td>120</td>
1289<td>78</td>
1290<td>0111 1000</td>
1291<td>x</td>
1292<td>&nbsp;</td>
1293<td>&nbsp;</td>
1294<td>&nbsp;</td>
1295</tr>
1296<tr>
1297<td>121</td>
1298<td>79</td>
1299<td>0111 1001</td>
1300<td>y</td>
1301<td>&nbsp;</td>
1302<td>&nbsp;</td>
1303<td>&nbsp;</td>
1304</tr>
1305<tr>
1306<td>122</td>
1307<td>7A</td>
1308<td>0111 1010</td>
1309<td>z</td>
1310<td>&nbsp;</td>
1311<td>&nbsp;</td>
1312<td>&nbsp;</td>
1313</tr>
1314<tr>
1315<td>123</td>
1316<td>7B</td>
1317<td>0111 1011</td>
1318<td>{</td>
1319<td>&nbsp;</td>
1320<td>&nbsp;</td>
1321<td>&nbsp;</td>
1322</tr>
1323<tr>
1324<td>124</td>
1325<td>7C</td>
1326<td>0111 1100</td>
1327<td>|</td>
1328<td>&nbsp;</td>
1329<td>&nbsp;</td>
1330<td>&nbsp;</td>
1331</tr>
1332<tr>
1333<td>125</td>
1334<td>7D</td>
1335<td>0111 1101</td>
1336<td>}</td>
1337<td>&nbsp;</td>
1338<td>&nbsp;</td>
1339<td>&nbsp;</td>
1340</tr>
1341<tr>
1342<td>126</td>
1343<td>7E</td>
1344<td>0111 1110</td>
1345<td>~</td>
1346<td>&nbsp;</td>
1347<td>&nbsp;</td>
1348<td>&nbsp;</td>
1349</tr>
1350<tr>
1351<td>127</td>
1352<td>7F</td>
1353<td>0111 1111</td>
1354<td>DEL</td>
1355<td>&nbsp;</td>
1356<td>&nbsp;</td>
1357<td>&nbsp;</td>
1358</tr>
1359<tr>
1360<td>128</td>
1361<td>80</td>
1362<td>1000 0000</td>
1363<td>€</td>
1364<td>&nbsp;</td>
1365<td>&nbsp;</td>
1366<td>&nbsp;</td>
1367</tr>
1368<tr>
1369<td>129</td>
1370<td>81</td>
1371<td>1000 0001</td>
1372<td></td>
1373<td>PRIM_TYPE_LEGACY TORUS</td>
1374<td>vector float float float vector vector</td>
1375<td>&nbsp;</td>
1376</tr>
1377<tr>
1378<td>130</td>
1379<td>82</td>
1380<td>1000 0010</td>
1381<td>‚</td>
1382<td>(PRIM_MATERIAL FLESH)</td>
1383<td>&nbsp;</td>
1384<td>&nbsp;</td>
1385</tr>
1386<tr>
1387<td>131</td>
1388<td>83</td>
1389<td>1000 0011</td>
1390<td>ƒ</td>
1391<td>PRIM_PHYSICS on</td>
1392<td>&nbsp;</td>
1393<td>&nbsp;</td>
1394</tr>
1395<tr>
1396<td>132</td>
1397<td>84</td>
1398<td>1000 0100</td>
1399<td>„</td>
1400<td>PRIM_TEMP_ON_REZ on</td>
1401<td>&nbsp;</td>
1402<td>&nbsp;</td>
1403</tr>
1404<tr>
1405<td>133</td>
1406<td>85</td>
1407<td>1000 0101</td>
1408<td>…</td>
1409<td>PRIM_PHANTOM on</td>
1410<td>&nbsp;</td>
1411<td>&nbsp;</td>
1412</tr>
1413<tr>
1414<td>134</td>
1415<td>86</td>
1416<td>1000 0110</td>
1417<td>†</td>
1418<td>PRIM_TEXGEN PRIM_TEXGEN_PLANAR</td>
1419<td>face</td>
1420<td>&nbsp;</td>
1421</tr>
1422<tr>
1423<td>135</td>
1424<td>87</td>
1425<td>1000 0111</td>
1426<td>‡</td>
1427<td>&nbsp;</td>
1428<td>&nbsp;</td>
1429<td>&nbsp;</td>
1430</tr>
1431<tr>
1432<td>136</td>
1433<td>88</td>
1434<td>1000 1000</td>
1435<td>ˆ</td>
1436<td>&nbsp;</td>
1437<td>&nbsp;</td>
1438<td>&nbsp;</td>
1439</tr>
1440<tr>
1441<td>137</td>
1442<td>89</td>
1443<td>1000 1001</td>
1444<td>‰</td>
1445<td>PRIM_TYPE TORUS</td>
1446<td>integer:2 vector float vector vector vector vector vector float float float</td>
1447<td>&nbsp;</td>
1448</tr>
1449<tr>
1450<td>138</td>
1451<td>8A</td>
1452<td>1000 1010</td>
1453<td>Š</td>
1454<td>&nbsp;</td>
1455<td>&nbsp;</td>
1456<td>&nbsp;</td>
1457</tr>
1458<tr>
1459<td>139</td>
1460<td>8B</td>
1461<td>1000 1011</td>
1462<td>‹</td>
1463<td>&nbsp;</td>
1464<td>&nbsp;</td>
1465<td>&nbsp;</td>
1466</tr>
1467<tr>
1468<td>140</td>
1469<td>8C</td>
1470<td>1000 1100</td>
1471<td>Œ</td>
1472<td>&nbsp;</td>
1473<td>&nbsp;</td>
1474<td>&nbsp;</td>
1475</tr>
1476<tr>
1477<td>141</td>
1478<td>8D</td>
1479<td>1000 1101</td>
1480<td></td>
1481<td>&nbsp;</td>
1482<td>&nbsp;</td>
1483<td>&nbsp;</td>
1484</tr>
1485<tr>
1486<td>142</td>
1487<td>8E</td>
1488<td>1000 1110</td>
1489<td>Ž</td>
1490<td>&nbsp;</td>
1491<td>&nbsp;</td>
1492<td>&nbsp;</td>
1493</tr>
1494<tr>
1495<td>143</td>
1496<td>8F</td>
1497<td>1000 1111</td>
1498<td></td>
1499<td>&nbsp;</td>
1500<td>&nbsp;</td>
1501<td>&nbsp;</td>
1502</tr>
1503<tr>
1504<td>144</td>
1505<td>90</td>
1506<td>1001 0000</td>
1507<td></td>
1508<td>&nbsp;</td>
1509<td>&nbsp;</td>
1510<td>&nbsp;</td>
1511</tr>
1512<tr>
1513<td>145</td>
1514<td>91</td>
1515<td>1001 0001</td>
1516<td>‘</td>
1517<td>&nbsp;</td>
1518<td>&nbsp;</td>
1519<td>&nbsp;</td>
1520</tr>
1521<tr>
1522<td>146</td>
1523<td>92</td>
1524<td>1001 0010</td>
1525<td>’</td>
1526<td>&nbsp;</td>
1527<td>&nbsp;</td>
1528<td>&nbsp;</td>
1529</tr>
1530<tr>
1531<td>147</td>
1532<td>93</td>
1533<td>1001 0011</td>
1534<td>“</td>
1535<td>PRIM_BUMP_SHINY PRIM_SHINY_MEDIUM</td>
1536<td>face integer:5</td>
1537<td>&nbsp;</td>
1538</tr>
1539<tr>
1540<td>148</td>
1541<td>94</td>
1542<td>1001 0100</td>
1543<td>”</td>
1544<td>PRIM_FULLBRIGHT on</td>
1545<td>face</td>
1546<td>&nbsp;</td>
1547</tr>
1548<tr>
1549<td>149</td>
1550<td>95</td>
1551<td>1001 0101</td>
1552<td>•</td>
1553<td>PRIM_FLEXIBLE on</td>
1554<td>integer float float float float vector</td>
1555<td>&nbsp;</td>
1556</tr>
1557<tr>
1558<td>150</td>
1559<td>96</td>
1560<td>1001 0110</td>
1561<td>–</td>
1562<td>&nbsp;</td>
1563<td>&nbsp;</td>
1564<td>&nbsp;</td>
1565</tr>
1566<tr>
1567<td>151</td>
1568<td>97</td>
1569<td>1001 0111</td>
1570<td>&nbsp;</td>
1571<td>PRIM_POINT_LIGHT on</td>
1572<td>(vector)=colour float float float</td>
1573<td>&nbsp;</td>
1574</tr>
1575<tr>
1576<td>152</td>
1577<td>98</td>
1578<td>1001 1000</td>
1579<td>&nbsp;</td>
1580<td>PRIM_CAST_SHADOWS on</td>
1581<td>&nbsp;</td>
1582<td>&nbsp;</td>
1583</tr>
1584<tr>
1585<td>153</td>
1586<td>99</td>
1587<td>1001 1001</td>
1588<td>&nbsp;</td>
1589<td>&nbsp;</td>
1590<td>&nbsp;</td>
1591<td>&nbsp;</td>
1592</tr>
1593<tr>
1594<td>154</td>
1595<td>9A</td>
1596<td>1001 1010</td>
1597<td>&nbsp;</td>
1598<td>&nbsp;</td>
1599<td>&nbsp;</td>
1600<td>&nbsp;</td>
1601</tr>
1602<tr>
1603<td>155</td>
1604<td>9B</td>
1605<td>1001 1011</td>
1606<td>&nbsp;</td>
1607<td>&nbsp;</td>
1608<td>&nbsp;</td>
1609<td>&nbsp;</td>
1610</tr>
1611<tr>
1612<td>156</td>
1613<td>9C</td>
1614<td>1001 1100</td>
1615<td>&nbsp;</td>
1616<td>&nbsp;</td>
1617<td>&nbsp;</td>
1618<td>&nbsp;</td>
1619</tr>
1620<tr>
1621<td>157</td>
1622<td>9D</td>
1623<td>1001 1101</td>
1624<td>&nbsp;</td>
1625<td>&nbsp;</td>
1626<td>&nbsp;</td>
1627<td>&nbsp;</td>
1628</tr>
1629<tr>
1630<td>158</td>
1631<td>9E</td>
1632<td>1001 1110</td>
1633<td>&nbsp;</td>
1634<td>&nbsp;</td>
1635<td>&nbsp;</td>
1636<td>&nbsp;</td>
1637</tr>
1638<tr>
1639<td>159</td>
1640<td>9F</td>
1641<td>1001 1111</td>
1642<td>&nbsp;</td>
1643<td>&nbsp;</td>
1644<td>&nbsp;</td>
1645<td>&nbsp;</td>
1646</tr>
1647<tr>
1648<td>160</td>
1649<td>A0</td>
1650<td>1010 0000</td>
1651<td>&nbsp;</td>
1652<td>&nbsp;</td>
1653<td>&nbsp;</td>
1654<td>&nbsp;</td>
1655</tr>
1656<tr>
1657<td>161</td>
1658<td>A1</td>
1659<td>1010 0001</td>
1660<td>&nbsp;</td>
1661<td>PRIM_TYPE_LEGACY TUBE</td>
1662<td>vector float float float</td>
1663<td>&nbsp;</td>
1664</tr>
1665<tr>
1666<td>162</td>
1667<td>A2</td>
1668<td>1010 0010</td>
1669<td>&nbsp;</td>
1670<td>(PRIM_MATERIAL PLASTIC)</td>
1671<td>&nbsp;</td>
1672<td>&nbsp;</td>
1673</tr>
1674<tr>
1675<td>163</td>
1676<td>A3</td>
1677<td>1010 0011</td>
1678<td>&nbsp;</td>
1679<td>&nbsp;</td>
1680<td>&nbsp;</td>
1681<td>&nbsp;</td>
1682</tr>
1683<tr>
1684<td>164</td>
1685<td>A4</td>
1686<td>1010 0100</td>
1687<td>&nbsp;</td>
1688<td>&nbsp;</td>
1689<td>&nbsp;</td>
1690<td>&nbsp;</td>
1691</tr>
1692<tr>
1693<td>165</td>
1694<td>A5</td>
1695<td>1010 0101</td>
1696<td>&nbsp;</td>
1697<td>&nbsp;</td>
1698<td>&nbsp;</td>
1699<td>&nbsp;</td>
1700</tr>
1701<tr>
1702<td>166</td>
1703<td>A6</td>
1704<td>1010 0110</td>
1705<td>&nbsp;</td>
1706<td>&nbsp;</td>
1707<td>&nbsp;</td>
1708<td>&nbsp;</td>
1709</tr>
1710<tr>
1711<td>167</td>
1712<td>A7</td>
1713<td>1010 0111</td>
1714<td>&nbsp;</td>
1715<td>&nbsp;</td>
1716<td>&nbsp;</td>
1717<td>&nbsp;</td>
1718</tr>
1719<tr>
1720<td>168</td>
1721<td>A8</td>
1722<td>1010 1000</td>
1723<td>&nbsp;</td>
1724<td>&nbsp;</td>
1725<td>&nbsp;</td>
1726<td>&nbsp;</td>
1727</tr>
1728<tr>
1729<td>169</td>
1730<td>A9</td>
1731<td>1010 1001</td>
1732<td>&nbsp;</td>
1733<td>PRIM_TYPE TUBE</td>
1734<td>integer:2 vector float vector vector vector vector vector float float float</td>
1735<td>&nbsp;</td>
1736</tr>
1737<tr>
1738<td>170</td>
1739<td>AA</td>
1740<td>1010 1010</td>
1741<td>&nbsp;</td>
1742<td>&nbsp;</td>
1743<td>&nbsp;</td>
1744<td>&nbsp;</td>
1745</tr>
1746<tr>
1747<td>171</td>
1748<td>AB</td>
1749<td>1010 1011</td>
1750<td>&nbsp;</td>
1751<td>&nbsp;</td>
1752<td>&nbsp;</td>
1753<td>&nbsp;</td>
1754</tr>
1755<tr>
1756<td>172</td>
1757<td>AC</td>
1758<td>1010 1100</td>
1759<td>&nbsp;</td>
1760<td>&nbsp;</td>
1761<td>&nbsp;</td>
1762<td>&nbsp;</td>
1763</tr>
1764<tr>
1765<td>173</td>
1766<td>AD</td>
1767<td>1010 1101</td>
1768<td>&nbsp;</td>
1769<td>&nbsp;</td>
1770<td>&nbsp;</td>
1771<td>&nbsp;</td>
1772</tr>
1773<tr>
1774<td>174</td>
1775<td>AE</td>
1776<td>1010 1110</td>
1777<td>&nbsp;</td>
1778<td>&nbsp;</td>
1779<td>&nbsp;</td>
1780<td>&nbsp;</td>
1781</tr>
1782<tr>
1783<td>175</td>
1784<td>AF</td>
1785<td>1010 1111</td>
1786<td>&nbsp;</td>
1787<td>&nbsp;</td>
1788<td>&nbsp;</td>
1789<td>&nbsp;</td>
1790</tr>
1791<tr>
1792<td>176</td>
1793<td>B0</td>
1794<td>1011 0000</td>
1795<td>&nbsp;</td>
1796<td>&nbsp;</td>
1797<td>&nbsp;</td>
1798<td>&nbsp;</td>
1799</tr>
1800<tr>
1801<td>177</td>
1802<td>B1</td>
1803<td>1011 0001</td>
1804<td>&nbsp;</td>
1805<td>&nbsp;</td>
1806<td>&nbsp;</td>
1807<td>&nbsp;</td>
1808</tr>
1809<tr>
1810<td>178</td>
1811<td>B2</td>
1812<td>1011 0010</td>
1813<td>&nbsp;</td>
1814<td>&nbsp;</td>
1815<td>&nbsp;</td>
1816<td>&nbsp;</td>
1817</tr>
1818<tr>
1819<td>179</td>
1820<td>B3</td>
1821<td>1011 0011</td>
1822<td>&nbsp;</td>
1823<td>&nbsp;</td>
1824<td>&nbsp;</td>
1825<td>&nbsp;</td>
1826</tr>
1827<tr>
1828<td>180</td>
1829<td>B4</td>
1830<td>1011 0100</td>
1831<td>&nbsp;</td>
1832<td>&nbsp;</td>
1833<td>&nbsp;</td>
1834<td>&nbsp;</td>
1835</tr>
1836<tr>
1837<td>181</td>
1838<td>B5</td>
1839<td>1011 0101</td>
1840<td>&nbsp;</td>
1841<td>&nbsp;</td>
1842<td>&nbsp;</td>
1843<td>&nbsp;</td>
1844</tr>
1845<tr>
1846<td>182</td>
1847<td>B6</td>
1848<td>1011 0110</td>
1849<td>&nbsp;</td>
1850<td>&nbsp;</td>
1851<td>&nbsp;</td>
1852<td>&nbsp;</td>
1853</tr>
1854<tr>
1855<td>183</td>
1856<td>B7</td>
1857<td>1011 0111</td>
1858<td>&nbsp;</td>
1859<td>&nbsp;</td>
1860<td>&nbsp;</td>
1861<td>&nbsp;</td>
1862</tr>
1863<tr>
1864<td>184</td>
1865<td>B8</td>
1866<td>1011 1000</td>
1867<td>&nbsp;</td>
1868<td>&nbsp;</td>
1869<td>&nbsp;</td>
1870<td>&nbsp;</td>
1871</tr>
1872<tr>
1873<td>185</td>
1874<td>B9</td>
1875<td>1011 1001</td>
1876<td>&nbsp;</td>
1877<td>&nbsp;</td>
1878<td>&nbsp;</td>
1879<td>&nbsp;</td>
1880</tr>
1881<tr>
1882<td>186</td>
1883<td>BA</td>
1884<td>1011 1010</td>
1885<td>&nbsp;</td>
1886<td>&nbsp;</td>
1887<td>&nbsp;</td>
1888<td>&nbsp;</td>
1889</tr>
1890<tr>
1891<td>187</td>
1892<td>BB</td>
1893<td>1011 1011</td>
1894<td>&nbsp;</td>
1895<td>&nbsp;</td>
1896<td>&nbsp;</td>
1897<td>&nbsp;</td>
1898</tr>
1899<tr>
1900<td>188</td>
1901<td>BC</td>
1902<td>1011 1100</td>
1903<td>&nbsp;</td>
1904<td>&nbsp;</td>
1905<td>&nbsp;</td>
1906<td>&nbsp;</td>
1907</tr>
1908<tr>
1909<td>189</td>
1910<td>BD</td>
1911<td>1011 1101</td>
1912<td>&nbsp;</td>
1913<td>&nbsp;</td>
1914<td>&nbsp;</td>
1915<td>&nbsp;</td>
1916</tr>
1917<tr>
1918<td>190</td>
1919<td>BE</td>
1920<td>1011 1110</td>
1921<td>&nbsp;</td>
1922<td>&nbsp;</td>
1923<td>&nbsp;</td>
1924<td>&nbsp;</td>
1925</tr>
1926<tr>
1927<td>191</td>
1928<td>BF</td>
1929<td>1011 1111</td>
1930<td>&nbsp;</td>
1931<td>&nbsp;</td>
1932<td>&nbsp;</td>
1933<td>&nbsp;</td>
1934</tr>
1935<tr>
1936<td>192</td>
1937<td>C0</td>
1938<td>1100 0000</td>
1939<td>&nbsp;</td>
1940<td>&nbsp;</td>
1941<td>&nbsp;</td>
1942<td>&nbsp;</td>
1943</tr>
1944<tr>
1945<td>193</td>
1946<td>C1</td>
1947<td>1100 0001</td>
1948<td>&nbsp;</td>
1949<td>&nbsp;</td>
1950<td>&nbsp;</td>
1951<td>&nbsp;</td>
1952</tr>
1953<tr>
1954<td>194</td>
1955<td>C2</td>
1956<td>1100 0010</td>
1957<td>&nbsp;</td>
1958<td>(PRIM_MATERIAL RUBBER)</td>
1959<td>&nbsp;</td>
1960<td>&nbsp;</td>
1961</tr>
1962<tr>
1963<td>195</td>
1964<td>C3</td>
1965<td>1100 0011</td>
1966<td>&nbsp;</td>
1967<td>&nbsp;</td>
1968<td>&nbsp;</td>
1969<td>&nbsp;</td>
1970</tr>
1971<tr>
1972<td>196</td>
1973<td>C4</td>
1974<td>1100 0100</td>
1975<td>&nbsp;</td>
1976<td>&nbsp;</td>
1977<td>&nbsp;</td>
1978<td>&nbsp;</td>
1979</tr>
1980<tr>
1981<td>197</td>
1982<td>C5</td>
1983<td>1100 0101</td>
1984<td>&nbsp;</td>
1985<td>&nbsp;</td>
1986<td>&nbsp;</td>
1987<td>&nbsp;</td>
1988</tr>
1989<tr>
1990<td>198</td>
1991<td>C6</td>
1992<td>1100 0110</td>
1993<td>&nbsp;</td>
1994<td>&nbsp;</td>
1995<td>&nbsp;</td>
1996<td>&nbsp;</td>
1997</tr>
1998<tr>
1999<td>199</td>
2000<td>C7</td>
2001<td>1100 0111</td>
2002<td>&nbsp;</td>
2003<td>&nbsp;</td>
2004<td>&nbsp;</td>
2005<td>&nbsp;</td>
2006</tr>
2007<tr>
2008<td>200</td>
2009<td>C8</td>
2010<td>1100 1000</td>
2011<td>&nbsp;</td>
2012<td>&nbsp;</td>
2013<td>&nbsp;</td>
2014<td>&nbsp;</td>
2015</tr>
2016<tr>
2017<td>201</td>
2018<td>C9</td>
2019<td>1100 1001</td>
2020<td>&nbsp;</td>
2021<td>PRIM_TYPE RING</td>
2022<td>integer:2 vector float vector vector vector vector vector float float float</td>
2023<td>&nbsp;</td>
2024</tr>
2025<tr>
2026<td>202</td>
2027<td>CA</td>
2028<td>1100 1010</td>
2029<td>&nbsp;</td>
2030<td>&nbsp;</td>
2031<td>&nbsp;</td>
2032<td>&nbsp;</td>
2033</tr>
2034<tr>
2035<td>203</td>
2036<td>CB</td>
2037<td>1100 1011</td>
2038<td>&nbsp;</td>
2039<td>&nbsp;</td>
2040<td>&nbsp;</td>
2041<td>&nbsp;</td>
2042</tr>
2043<tr>
2044<td>204</td>
2045<td>CC</td>
2046<td>1100 1100</td>
2047<td>&nbsp;</td>
2048<td>&nbsp;</td>
2049<td>&nbsp;</td>
2050<td>&nbsp;</td>
2051</tr>
2052<tr>
2053<td>205</td>
2054<td>CD</td>
2055<td>1100 1101</td>
2056<td>&nbsp;</td>
2057<td>&nbsp;</td>
2058<td>&nbsp;</td>
2059<td>&nbsp;</td>
2060</tr>
2061<tr>
2062<td>206</td>
2063<td>CE</td>
2064<td>1100 1110</td>
2065<td>&nbsp;</td>
2066<td>&nbsp;</td>
2067<td>&nbsp;</td>
2068<td>&nbsp;</td>
2069</tr>
2070<tr>
2071<td>207</td>
2072<td>CF</td>
2073<td>1100 1111</td>
2074<td>&nbsp;</td>
2075<td>&nbsp;</td>
2076<td>&nbsp;</td>
2077<td>&nbsp;</td>
2078</tr>
2079<tr>
2080<td>208</td>
2081<td>D0</td>
2082<td>1101 0000</td>
2083<td>&nbsp;</td>
2084<td>&nbsp;</td>
2085<td>&nbsp;</td>
2086<td>&nbsp;</td>
2087</tr>
2088<tr>
2089<td>209</td>
2090<td>D1</td>
2091<td>1101 0001</td>
2092<td>&nbsp;</td>
2093<td>&nbsp;</td>
2094<td>&nbsp;</td>
2095<td>&nbsp;</td>
2096</tr>
2097<tr>
2098<td>210</td>
2099<td>D2</td>
2100<td>1101 0010</td>
2101<td>&nbsp;</td>
2102<td>&nbsp;</td>
2103<td>&nbsp;</td>
2104<td>&nbsp;</td>
2105</tr>
2106<tr>
2107<td>211</td>
2108<td>D3</td>
2109<td>1101 0011</td>
2110<td>&nbsp;</td>
2111<td>PRIM_BUMP_SHINY PRIM_SHINY_HIGH</td>
2112<td>face integer:5</td>
2113<td>&nbsp;</td>
2114</tr>
2115<tr>
2116<td>212</td>
2117<td>D4</td>
2118<td>1101 0100</td>
2119<td>&nbsp;</td>
2120<td>&nbsp;</td>
2121<td>&nbsp;</td>
2122<td>&nbsp;</td>
2123</tr>
2124<tr>
2125<td>213</td>
2126<td>D5</td>
2127<td>1101 0101</td>
2128<td>&nbsp;</td>
2129<td>&nbsp;</td>
2130<td>&nbsp;</td>
2131<td>&nbsp;</td>
2132</tr>
2133<tr>
2134<td>214</td>
2135<td>D6</td>
2136<td>1101 0110</td>
2137<td>&nbsp;</td>
2138<td>&nbsp;</td>
2139<td>&nbsp;</td>
2140<td>&nbsp;</td>
2141</tr>
2142<tr>
2143<td>215</td>
2144<td>D7</td>
2145<td>1101 0111</td>
2146<td>&nbsp;</td>
2147<td>&nbsp;</td>
2148<td>&nbsp;</td>
2149<td>&nbsp;</td>
2150</tr>
2151<tr>
2152<td>216</td>
2153<td>D8</td>
2154<td>1101 1000</td>
2155<td>&nbsp;</td>
2156<td>&nbsp;</td>
2157<td>&nbsp;</td>
2158<td>&nbsp;</td>
2159</tr>
2160<tr>
2161<td>217</td>
2162<td>D9</td>
2163<td>1101 1001</td>
2164<td>&nbsp;</td>
2165<td>&nbsp;</td>
2166<td>&nbsp;</td>
2167<td>&nbsp;</td>
2168</tr>
2169<tr>
2170<td>218</td>
2171<td>DA</td>
2172<td>1101 1010</td>
2173<td>&nbsp;</td>
2174<td>&nbsp;</td>
2175<td>&nbsp;</td>
2176<td>&nbsp;</td>
2177</tr>
2178<tr>
2179<td>219</td>
2180<td>DB</td>
2181<td>1101 1011</td>
2182<td>&nbsp;</td>
2183<td>&nbsp;</td>
2184<td>&nbsp;</td>
2185<td>&nbsp;</td>
2186</tr>
2187<tr>
2188<td>220</td>
2189<td>DC</td>
2190<td>1101 1100</td>
2191<td>&nbsp;</td>
2192<td>&nbsp;</td>
2193<td>&nbsp;</td>
2194<td>&nbsp;</td>
2195</tr>
2196<tr>
2197<td>221</td>
2198<td>DD</td>
2199<td>1101 1101</td>
2200<td>&nbsp;</td>
2201<td>&nbsp;</td>
2202<td>&nbsp;</td>
2203<td>&nbsp;</td>
2204</tr>
2205<tr>
2206<td>222</td>
2207<td>DE</td>
2208<td>1101 1110</td>
2209<td>&nbsp;</td>
2210<td>&nbsp;</td>
2211<td>&nbsp;</td>
2212<td>&nbsp;</td>
2213</tr>
2214<tr>
2215<td>223</td>
2216<td>DF</td>
2217<td>1101 1111</td>
2218<td>&nbsp;</td>
2219<td>&nbsp;</td>
2220<td>&nbsp;</td>
2221<td>&nbsp;</td>
2222</tr>
2223<tr>
2224<td>224</td>
2225<td>E0</td>
2226<td>1110 0000</td>
2227<td>&nbsp;</td>
2228<td>&nbsp;</td>
2229<td>&nbsp;</td>
2230<td>&nbsp;</td>
2231</tr>
2232<tr>
2233<td>225</td>
2234<td>E1</td>
2235<td>1110 0001</td>
2236<td>&nbsp;</td>
2237<td>&nbsp;</td>
2238<td>&nbsp;</td>
2239<td>&nbsp;</td>
2240</tr>
2241<tr>
2242<td>226</td>
2243<td>E2</td>
2244<td>1110 0010</td>
2245<td>&nbsp;</td>
2246<td>(PRIM_MATERIAL LIGHT)</td>
2247<td>&nbsp;</td>
2248<td>Deprecated: Looks the same as [ PRIM_FULLBRIGHT, ALL_SIDES, TRUE ]</td>
2249</tr>
2250<tr>
2251<td>227</td>
2252<td>E3</td>
2253<td>1110 0011</td>
2254<td>&nbsp;</td>
2255<td>&nbsp;</td>
2256<td>&nbsp;</td>
2257<td>&nbsp;</td>
2258</tr>
2259<tr>
2260<td>228</td>
2261<td>E4</td>
2262<td>1110 0100</td>
2263<td>&nbsp;</td>
2264<td>&nbsp;</td>
2265<td>&nbsp;</td>
2266<td>&nbsp;</td>
2267</tr>
2268<tr>
2269<td>229</td>
2270<td>E5</td>
2271<td>1110 0101</td>
2272<td>&nbsp;</td>
2273<td>&nbsp;</td>
2274<td>&nbsp;</td>
2275<td>&nbsp;</td>
2276</tr>
2277<tr>
2278<td>230</td>
2279<td>E6</td>
2280<td>1110 0110</td>
2281<td>&nbsp;</td>
2282<td>&nbsp;</td>
2283<td>&nbsp;</td>
2284<td>&nbsp;</td>
2285</tr>
2286<tr>
2287<td>231</td>
2288<td>E7</td>
2289<td>1110 0111</td>
2290<td>&nbsp;</td>
2291<td>&nbsp;</td>
2292<td>&nbsp;</td>
2293<td>&nbsp;</td>
2294</tr>
2295<tr>
2296<td>232</td>
2297<td>E8</td>
2298<td>1110 1000</td>
2299<td>&nbsp;</td>
2300<td>&nbsp;</td>
2301<td>&nbsp;</td>
2302<td>&nbsp;</td>
2303</tr>
2304<tr>
2305<td>233</td>
2306<td>E9</td>
2307<td>1110 1001</td>
2308<td>&nbsp;</td>
2309<td>PRIM_TYPE SCULPT</td>
2310<td>string/key integer:8</td>
2311<td>&nbsp;</td>
2312</tr>
2313<tr>
2314<td>234</td>
2315<td>EA</td>
2316<td>1110 1010</td>
2317<td>&nbsp;</td>
2318<td>&nbsp;</td>
2319<td>&nbsp;</td>
2320<td>&nbsp;</td>
2321</tr>
2322<tr>
2323<td>235</td>
2324<td>EB</td>
2325<td>1110 1011</td>
2326<td>&nbsp;</td>
2327<td>&nbsp;</td>
2328<td>&nbsp;</td>
2329<td>&nbsp;</td>
2330</tr>
2331<tr>
2332<td>236</td>
2333<td>EC</td>
2334<td>1110 1100</td>
2335<td>&nbsp;</td>
2336<td>&nbsp;</td>
2337<td>&nbsp;</td>
2338<td>&nbsp;</td>
2339</tr>
2340<tr>
2341<td>237</td>
2342<td>ED</td>
2343<td>1110 1101</td>
2344<td>&nbsp;</td>
2345<td>&nbsp;</td>
2346<td>&nbsp;</td>
2347<td>&nbsp;</td>
2348</tr>
2349<tr>
2350<td>238</td>
2351<td>EE</td>
2352<td>1110 1110</td>
2353<td>&nbsp;</td>
2354<td>&nbsp;</td>
2355<td>&nbsp;</td>
2356<td>&nbsp;</td>
2357</tr>
2358<tr>
2359<td>239</td>
2360<td>EF</td>
2361<td>1110 1111</td>
2362<td>&nbsp;</td>
2363<td>&nbsp;</td>
2364<td>&nbsp;</td>
2365<td>&nbsp;</td>
2366</tr>
2367<tr>
2368<td>240</td>
2369<td>F0</td>
2370<td>1111 0000</td>
2371<td>&nbsp;</td>
2372<td>&nbsp;</td>
2373<td>&nbsp;</td>
2374<td>&nbsp;</td>
2375</tr>
2376<tr>
2377<td>241</td>
2378<td>F1</td>
2379<td>1111 0001</td>
2380<td>&nbsp;</td>
2381<td>&nbsp;</td>
2382<td>&nbsp;</td>
2383<td>&nbsp;</td>
2384</tr>
2385<tr>
2386<td>242</td>
2387<td>F2</td>
2388<td>1111 0010</td>
2389<td>&nbsp;</td>
2390<td>&nbsp;</td>
2391<td>&nbsp;</td>
2392<td>&nbsp;</td>
2393</tr>
2394<tr>
2395<td>243</td>
2396<td>F3</td>
2397<td>1111 0011</td>
2398<td>&nbsp;</td>
2399<td>&nbsp;</td>
2400<td>&nbsp;</td>
2401<td>&nbsp;</td>
2402</tr>
2403<tr>
2404<td>244</td>
2405<td>F4</td>
2406<td>1111 0100</td>
2407<td>&nbsp;</td>
2408<td>&nbsp;</td>
2409<td>&nbsp;</td>
2410<td>&nbsp;</td>
2411</tr>
2412<tr>
2413<td>245</td>
2414<td>F5</td>
2415<td>1111 0101</td>
2416<td>&nbsp;</td>
2417<td>&nbsp;</td>
2418<td>&nbsp;</td>
2419<td>&nbsp;</td>
2420</tr>
2421<tr>
2422<td>246</td>
2423<td>F6</td>
2424<td>1111 0110</td>
2425<td>&nbsp;</td>
2426<td>&nbsp;</td>
2427<td>&nbsp;</td>
2428<td>&nbsp;</td>
2429</tr>
2430<tr>
2431<td>247</td>
2432<td>F7</td>
2433<td>1111 0111</td>
2434<td>&nbsp;</td>
2435<td>&nbsp;</td>
2436<td>&nbsp;</td>
2437<td>&nbsp;</td>
2438</tr>
2439<tr>
2440<td>248</td>
2441<td>F8</td>
2442<td>1111 1000</td>
2443<td>&nbsp;</td>
2444<td>&nbsp;</td>
2445<td>&nbsp;</td>
2446<td>&nbsp;</td>
2447</tr>
2448<tr>
2449<td>249</td>
2450<td>F9</td>
2451<td>1111 1001</td>
2452<td>&nbsp;</td>
2453<td>&nbsp;</td>
2454<td>&nbsp;</td>
2455<td>&nbsp;</td>
2456</tr>
2457<tr>
2458<td>250</td>
2459<td>FA</td>
2460<td>1111 1010</td>
2461<td>&nbsp;</td>
2462<td>&nbsp;</td>
2463<td>&nbsp;</td>
2464<td>&nbsp;</td>
2465</tr>
2466<tr>
2467<td>251</td>
2468<td>FB</td>
2469<td>1111 1011</td>
2470<td>&nbsp;</td>
2471<td>&nbsp;</td>
2472<td>&nbsp;</td>
2473<td>&nbsp;</td>
2474</tr>
2475<tr>
2476<td>252</td>
2477<td>FC</td>
2478<td>1111 1100</td>
2479<td>&nbsp;</td>
2480<td>&nbsp;</td>
2481<td>&nbsp;</td>
2482<td>&nbsp;</td>
2483</tr>
2484<tr>
2485<td>253</td>
2486<td>FD</td>
2487<td>1111 1101</td>
2488<td>&nbsp;</td>
2489<td>&nbsp;</td>
2490<td>&nbsp;</td>
2491<td>&nbsp;</td>
2492</tr>
2493<tr>
2494<td>254</td>
2495<td>FE</td>
2496<td>1111 1110</td>
2497<td>&nbsp;</td>
2498<td>&nbsp;</td>
2499<td>&nbsp;</td>
2500<td>&nbsp;</td>
2501</tr>
2502<tr>
2503<td>255</td>
2504<td>FF</td>
2505<td>1111 1111</td>
2506<td>&nbsp;</td>
2507<td>&nbsp;</td>
2508<td>&nbsp;</td>
2509<td>&nbsp;</td>
2510</tr>
2511</tbody>
2512</table>
2513<p>Not sure where else to put this, but nails I think is the bit that drives the network traffic the most -</p>
2514<a href="http://gettys.wordpress.com/2013/07/10/low-latency-requires-smart-queuing-traditional-aqm-is-not-enough/">low-latency-requires-smart-queuing-traditional-aqm-is-not-enough</a>
2515<p>Another article that deals with network issues in a 3D networked game -</p>
2516<a href="http://www.gamasutra.com/view/feature/131781/the_internet_sucks_or_what_i_.php?print=1">the_internet_sucks_or_what_i_</a>
2517<p><br /> This work is licensed under a <a href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution-ShareAlike 3.0 Unported License</a>.</p>
2518</body>
2519</html>