diff --git a/docs/0.9.5/.buildinfo b/docs/0.9.5/.buildinfo index f92a54267e..e1423b927b 100644 --- a/docs/0.9.5/.buildinfo +++ b/docs/0.9.5/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: c4d7359e51b30a515e5488151d7bb5e5 +config: dc112786974ccaf0f5cb1514f4a4191e tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs/0.9.5/Contributing-Docs.html b/docs/0.9.5/Contributing-Docs.html index 7d2a8336c0..df9f4d7629 100644 --- a/docs/0.9.5/Contributing-Docs.html +++ b/docs/0.9.5/Contributing-Docs.html @@ -473,14 +473,14 @@ class CmdEcho(Command):
1 + |
Here, :linenos: turns on line-numbers and :emphasize-lines: allows for emphasizing certain lines
in a different color. The :caption: shows an instructive text and :name: is used to reference
diff --git a/docs/0.9.5/Default-Commands.html b/docs/0.9.5/Default-Commands.html
index 058d597f21..d2645821c4 100644
--- a/docs/0.9.5/Default-Commands.html
+++ b/docs/0.9.5/Default-Commands.html
@@ -53,21 +53,21 @@ with Batch-Processor’s interactive mode.
__unloggedin_look_command [l, look] (cmdset: UnloggedinCmdSet, help-category: General)
__unloggedin_look_command [look, l] (cmdset: UnloggedinCmdSet, help-category: General)
about [version] (cmdset: CharacterCmdSet, help-category: System)
access [hierarchy, groups] (cmdset: CharacterCmdSet, help-category: General)
accounts [account, listaccounts] (cmdset: CharacterCmdSet, help-category: System)
addcom [aliaschan, chanalias] (cmdset: AccountCmdSet, help-category: Comms)
addcom [chanalias, aliaschan] (cmdset: AccountCmdSet, help-category: Comms)
alias [setobjalias] (cmdset: CharacterCmdSet, help-category: Building)
allcom (cmdset: AccountCmdSet, help-category: Comms)
batchcode [batchcodes] (cmdset: CharacterCmdSet, help-category: Building)
batchcommands [batchcommand, batchcmd] (cmdset: CharacterCmdSet, help-category: Building)
batchcommands [batchcmd, batchcommand] (cmdset: CharacterCmdSet, help-category: Building)
cboot (cmdset: AccountCmdSet, help-category: Comms)
ccreate [channelcreate] (cmdset: AccountCmdSet, help-category: Comms)
cdesc (cmdset: AccountCmdSet, help-category: Comms)
cdestroy (cmdset: AccountCmdSet, help-category: Comms)
cemit [cmsg] (cmdset: AccountCmdSet, help-category: Comms)
channels [channellist, chanlist, all channels, comlist, clist] (cmdset: AccountCmdSet, help-category: Comms)
channels [channellist, all channels, clist, comlist, chanlist] (cmdset: AccountCmdSet, help-category: Comms)
charcreate (cmdset: AccountCmdSet, help-category: General)
chardelete (cmdset: AccountCmdSet, help-category: General)
clock (cmdset: AccountCmdSet, help-category: Comms)
create [cre, cr] (cmdset: UnloggedinCmdSet, help-category: General)
cwho (cmdset: AccountCmdSet, help-category: Comms)
delcom [delchanalias, delaliaschan] (cmdset: AccountCmdSet, help-category: Comms)
delcom [delaliaschan, delchanalias] (cmdset: AccountCmdSet, help-category: Comms)
desc [describe] (cmdset: CharacterCmdSet, help-category: Building)
destroy [delete, del] (cmdset: CharacterCmdSet, help-category: Building)
destroy [del, delete] (cmdset: CharacterCmdSet, help-category: Building)
dig (cmdset: CharacterCmdSet, help-category: Building)
drop (cmdset: CharacterCmdSet, help-category: General)
encoding [encode] (cmdset: UnloggedinCmdSet, help-category: General)
mvattr (cmdset: CharacterCmdSet, help-category: Building)
name [rename] (cmdset: CharacterCmdSet, help-category: Building)
nick [nicks, nickname] (cmdset: AccountCmdSet, help-category: General)
objects [listobjs, stats, db, listobjects] (cmdset: CharacterCmdSet, help-category: System)
nick [nickname, nicks] (cmdset: AccountCmdSet, help-category: General)
objects [stats, listobjects, listobjs, db] (cmdset: CharacterCmdSet, help-category: System)
ooc [unpuppet] (cmdset: AccountCmdSet, help-category: General)
open (cmdset: CharacterCmdSet, help-category: Building)
option [options] (cmdset: AccountCmdSet, help-category: General)
quell [unquell] (cmdset: AccountCmdSet, help-category: General)
quit (cmdset: AccountCmdSet, help-category: General)
quit [q, qu] (cmdset: UnloggedinCmdSet, help-category: General)
quit [qu, q] (cmdset: UnloggedinCmdSet, help-category: General)
reload [restart] (cmdset: AccountCmdSet, help-category: System)
reset [reboot] (cmdset: AccountCmdSet, help-category: System)
rss2chan (cmdset: AccountCmdSet, help-category: Comms)
time [uptime] (cmdset: CharacterCmdSet, help-category: System)
tunnel [tun] (cmdset: CharacterCmdSet, help-category: Building)
typeclass [parent, type, swap, update] (cmdset: CharacterCmdSet, help-category: Building)
typeclass [parent, swap, type, update] (cmdset: CharacterCmdSet, help-category: Building)
unlink (cmdset: CharacterCmdSet, help-category: Building)
whisper (cmdset: CharacterCmdSet, help-category: General)
who [doing] (cmdset: AccountCmdSet, help-category: General)
var onCustomFunc = function(args, kwargs) {
- var = args.var
- console.log(var)
- }
+ var onCustomFunc = function(args, kwargs) {
+ var = args.var
+ console.log(var)
+ }
You’ll also need to add the function to what the main plugin function returns:
- return {
- init: init,
- onCustomFunc,
- }
+ return {
+ init: init,
+ onCustomFunc,
+ }
This defines the function and looks for “var” as a variable that is passed to it. Once you have this
in place in your custom plugin, you also need to update the static/webclient/js/webclient_gui.js
file to recognize the new function when it’s called. First you should add a new function inside the
plugin_handler function to recognize the new function:
- var onCustomFunc = function (cmdname, args, kwargs) {
- for( let n=0; n < ordered_plugins.length; n++ ) {
- let plugin = ordered_plugins[n];
- if( 'onCustomFunc' in plugin ) {
- if( plugin.onCustomFunc(args, kwargs) ) {
- // True -- means this plugin claims this command exclusively.
- return;
- }
- }
- }
- }
+ var onCustomFunc = function (cmdname, args, kwargs) {
+ for( let n=0; n < ordered_plugins.length; n++ ) {
+ let plugin = ordered_plugins[n];
+ if( 'onCustomFunc' in plugin ) {
+ if( plugin.onCustomFunc(args, kwargs) ) {
+ // True -- means this plugin claims this command exclusively.
+ return;
+ }
+ }
+ }
+ }
This looks through all the plugins for a function that corresponds to the custom function being
called. Next, add the custom function to the return statement of the plugin handler:
- return {
- add: add,
- onKeydown: onKeydown,
- onBeforeUnload: onBeforeUnload,
- onLoggedIn: onLoggedIn,
- onText: onText,
- onGotOptions: onGotOptions,
- onPrompt: onPrompt,
- onDefault: onDefault,
- onSilence: onSilence,
- onConnectionClose: onConnectionClose,
- onSend: onSend,
- init: init,
- postInit: postInit,
- onCustomFunc: onCustomFunc,
- }
+ return {
+ add: add,
+ onKeydown: onKeydown,
+ onBeforeUnload: onBeforeUnload,
+ onLoggedIn: onLoggedIn,
+ onText: onText,
+ onGotOptions: onGotOptions,
+ onPrompt: onPrompt,
+ onDefault: onDefault,
+ onSilence: onSilence,
+ onConnectionClose: onConnectionClose,
+ onSend: onSend,
+ init: init,
+ postInit: postInit,
+ onCustomFunc: onCustomFunc,
+ }
Lastly, you will also need to need to add an entry to the Evennia emitter to tie the python function
call to this new javascript function (this is in the $(document).ready function):
- Evennia.emitter.on("customFunc", plugin_handler.onCustomFunc);
+ Evennia.emitter.on("customFunc", plugin_handler.onCustomFunc);
Now you can make a call from your python code to the new custom function to pass information from
diff --git a/docs/0.9.5/_sources/Default-Commands.md.txt b/docs/0.9.5/_sources/Default-Commands.md.txt
index 581429c3a3..dfcfd1404a 100644
--- a/docs/0.9.5/_sources/Default-Commands.md.txt
+++ b/docs/0.9.5/_sources/Default-Commands.md.txt
@@ -14,21 +14,21 @@ with [EvEditor](./EvEditor.md), flipping pages in [EvMore](./EvMore.md) or using
[Batch-Processor](./Batch-Processors.md)'s interactive mode.
```
-- [**__unloggedin_look_command** [l, look]](evennia.commands.default.unloggedin.CmdUnconnectedLook) (cmdset: [UnloggedinCmdSet](evennia.commands.default.cmdset_unloggedin.UnloggedinCmdSet), help-category: _General_)
+- [**__unloggedin_look_command** [look, l]](evennia.commands.default.unloggedin.CmdUnconnectedLook) (cmdset: [UnloggedinCmdSet](evennia.commands.default.cmdset_unloggedin.UnloggedinCmdSet), help-category: _General_)
- [**about** [version]](evennia.commands.default.system.CmdAbout) (cmdset: [CharacterCmdSet](evennia.commands.default.cmdset_character.CharacterCmdSet), help-category: _System_)
- [**access** [hierarchy, groups]](evennia.commands.default.general.CmdAccess) (cmdset: [CharacterCmdSet](evennia.commands.default.cmdset_character.CharacterCmdSet), help-category: _General_)
- [**accounts** [account, listaccounts]](evennia.commands.default.system.CmdAccounts) (cmdset: [CharacterCmdSet](evennia.commands.default.cmdset_character.CharacterCmdSet), help-category: _System_)
-- [**addcom** [aliaschan, chanalias]](evennia.commands.default.comms.CmdAddCom) (cmdset: [AccountCmdSet](evennia.commands.default.cmdset_account.AccountCmdSet), help-category: _Comms_)
+- [**addcom** [chanalias, aliaschan]](evennia.commands.default.comms.CmdAddCom) (cmdset: [AccountCmdSet](evennia.commands.default.cmdset_account.AccountCmdSet), help-category: _Comms_)
- [**alias** [setobjalias]](evennia.commands.default.building.CmdSetObjAlias) (cmdset: [CharacterCmdSet](evennia.commands.default.cmdset_character.CharacterCmdSet), help-category: _Building_)
- [**allcom**](evennia.commands.default.comms.CmdAllCom) (cmdset: [AccountCmdSet](evennia.commands.default.cmdset_account.AccountCmdSet), help-category: _Comms_)
- [**batchcode** [batchcodes]](evennia.commands.default.batchprocess.CmdBatchCode) (cmdset: [CharacterCmdSet](evennia.commands.default.cmdset_character.CharacterCmdSet), help-category: _Building_)
-- [**batchcommands** [batchcommand, batchcmd]](evennia.commands.default.batchprocess.CmdBatchCommands) (cmdset: [CharacterCmdSet](evennia.commands.default.cmdset_character.CharacterCmdSet), help-category: _Building_)
+- [**batchcommands** [batchcmd, batchcommand]](evennia.commands.default.batchprocess.CmdBatchCommands) (cmdset: [CharacterCmdSet](evennia.commands.default.cmdset_character.CharacterCmdSet), help-category: _Building_)
- [**cboot**](evennia.commands.default.comms.CmdCBoot) (cmdset: [AccountCmdSet](evennia.commands.default.cmdset_account.AccountCmdSet), help-category: _Comms_)
- [**ccreate** [channelcreate]](evennia.commands.default.comms.CmdChannelCreate) (cmdset: [AccountCmdSet](evennia.commands.default.cmdset_account.AccountCmdSet), help-category: _Comms_)
- [**cdesc**](evennia.commands.default.comms.CmdCdesc) (cmdset: [AccountCmdSet](evennia.commands.default.cmdset_account.AccountCmdSet), help-category: _Comms_)
- [**cdestroy**](evennia.commands.default.comms.CmdCdestroy) (cmdset: [AccountCmdSet](evennia.commands.default.cmdset_account.AccountCmdSet), help-category: _Comms_)
- [**cemit** [cmsg]](evennia.commands.default.comms.CmdCemit) (cmdset: [AccountCmdSet](evennia.commands.default.cmdset_account.AccountCmdSet), help-category: _Comms_)
-- [**channels** [channellist, chanlist, all channels, comlist, clist]](evennia.commands.default.comms.CmdChannels) (cmdset: [AccountCmdSet](evennia.commands.default.cmdset_account.AccountCmdSet), help-category: _Comms_)
+- [**channels** [channellist, all channels, clist, comlist, chanlist]](evennia.commands.default.comms.CmdChannels) (cmdset: [AccountCmdSet](evennia.commands.default.cmdset_account.AccountCmdSet), help-category: _Comms_)
- [**charcreate**](evennia.commands.default.account.CmdCharCreate) (cmdset: [AccountCmdSet](evennia.commands.default.cmdset_account.AccountCmdSet), help-category: _General_)
- [**chardelete**](evennia.commands.default.account.CmdCharDelete) (cmdset: [AccountCmdSet](evennia.commands.default.cmdset_account.AccountCmdSet), help-category: _General_)
- [**clock**](evennia.commands.default.comms.CmdClock) (cmdset: [AccountCmdSet](evennia.commands.default.cmdset_account.AccountCmdSet), help-category: _Comms_)
@@ -40,9 +40,9 @@ with [EvEditor](./EvEditor.md), flipping pages in [EvMore](./EvMore.md) or using
- [**create**](evennia.commands.default.building.CmdCreate) (cmdset: [CharacterCmdSet](evennia.commands.default.cmdset_character.CharacterCmdSet), help-category: _Building_)
- [**create** [cre, cr]](evennia.commands.default.unloggedin.CmdUnconnectedCreate) (cmdset: [UnloggedinCmdSet](evennia.commands.default.cmdset_unloggedin.UnloggedinCmdSet), help-category: _General_)
- [**cwho**](evennia.commands.default.comms.CmdCWho) (cmdset: [AccountCmdSet](evennia.commands.default.cmdset_account.AccountCmdSet), help-category: _Comms_)
-- [**delcom** [delchanalias, delaliaschan]](evennia.commands.default.comms.CmdDelCom) (cmdset: [AccountCmdSet](evennia.commands.default.cmdset_account.AccountCmdSet), help-category: _Comms_)
+- [**delcom** [delaliaschan, delchanalias]](evennia.commands.default.comms.CmdDelCom) (cmdset: [AccountCmdSet](evennia.commands.default.cmdset_account.AccountCmdSet), help-category: _Comms_)
- [**desc** [describe]](evennia.commands.default.building.CmdDesc) (cmdset: [CharacterCmdSet](evennia.commands.default.cmdset_character.CharacterCmdSet), help-category: _Building_)
-- [**destroy** [delete, del]](evennia.commands.default.building.CmdDestroy) (cmdset: [CharacterCmdSet](evennia.commands.default.cmdset_character.CharacterCmdSet), help-category: _Building_)
+- [**destroy** [del, delete]](evennia.commands.default.building.CmdDestroy) (cmdset: [CharacterCmdSet](evennia.commands.default.cmdset_character.CharacterCmdSet), help-category: _Building_)
- [**dig**](evennia.commands.default.building.CmdDig) (cmdset: [CharacterCmdSet](evennia.commands.default.cmdset_character.CharacterCmdSet), help-category: _Building_)
- [**drop**](evennia.commands.default.general.CmdDrop) (cmdset: [CharacterCmdSet](evennia.commands.default.cmdset_character.CharacterCmdSet), help-category: _General_)
- [**encoding** [encode]](evennia.commands.default.unloggedin.CmdUnconnectedEncoding) (cmdset: [UnloggedinCmdSet](evennia.commands.default.cmdset_unloggedin.UnloggedinCmdSet), help-category: _General_)
@@ -65,8 +65,8 @@ with [EvEditor](./EvEditor.md), flipping pages in [EvMore](./EvMore.md) or using
- [**look** [l, ls]](evennia.commands.default.general.CmdLook) (cmdset: [CharacterCmdSet](evennia.commands.default.cmdset_character.CharacterCmdSet), help-category: _General_)
- [**mvattr**](evennia.commands.default.building.CmdMvAttr) (cmdset: [CharacterCmdSet](evennia.commands.default.cmdset_character.CharacterCmdSet), help-category: _Building_)
- [**name** [rename]](evennia.commands.default.building.CmdName) (cmdset: [CharacterCmdSet](evennia.commands.default.cmdset_character.CharacterCmdSet), help-category: _Building_)
-- [**nick** [nicks, nickname]](evennia.commands.default.general.CmdNick) (cmdset: [AccountCmdSet](evennia.commands.default.cmdset_account.AccountCmdSet), help-category: _General_)
-- [**objects** [listobjs, stats, db, listobjects]](evennia.commands.default.system.CmdObjects) (cmdset: [CharacterCmdSet](evennia.commands.default.cmdset_character.CharacterCmdSet), help-category: _System_)
+- [**nick** [nickname, nicks]](evennia.commands.default.general.CmdNick) (cmdset: [AccountCmdSet](evennia.commands.default.cmdset_account.AccountCmdSet), help-category: _General_)
+- [**objects** [stats, listobjects, listobjs, db]](evennia.commands.default.system.CmdObjects) (cmdset: [CharacterCmdSet](evennia.commands.default.cmdset_character.CharacterCmdSet), help-category: _System_)
- [**ooc** [unpuppet]](evennia.commands.default.account.CmdOOC) (cmdset: [AccountCmdSet](evennia.commands.default.cmdset_account.AccountCmdSet), help-category: _General_)
- [**open**](evennia.commands.default.building.CmdOpen) (cmdset: [CharacterCmdSet](evennia.commands.default.cmdset_character.CharacterCmdSet), help-category: _Building_)
- [**option** [options]](evennia.commands.default.account.CmdOption) (cmdset: [AccountCmdSet](evennia.commands.default.cmdset_account.AccountCmdSet), help-category: _General_)
@@ -76,7 +76,7 @@ with [EvEditor](./EvEditor.md), flipping pages in [EvMore](./EvMore.md) or using
- [**py** [!]](evennia.commands.default.system.CmdPy) (cmdset: [AccountCmdSet](evennia.commands.default.cmdset_account.AccountCmdSet), help-category: _System_)
- [**quell** [unquell]](evennia.commands.default.account.CmdQuell) (cmdset: [AccountCmdSet](evennia.commands.default.cmdset_account.AccountCmdSet), help-category: _General_)
- [**quit**](evennia.commands.default.account.CmdQuit) (cmdset: [AccountCmdSet](evennia.commands.default.cmdset_account.AccountCmdSet), help-category: _General_)
-- [**quit** [q, qu]](evennia.commands.default.unloggedin.CmdUnconnectedQuit) (cmdset: [UnloggedinCmdSet](evennia.commands.default.cmdset_unloggedin.UnloggedinCmdSet), help-category: _General_)
+- [**quit** [qu, q]](evennia.commands.default.unloggedin.CmdUnconnectedQuit) (cmdset: [UnloggedinCmdSet](evennia.commands.default.cmdset_unloggedin.UnloggedinCmdSet), help-category: _General_)
- [**reload** [restart]](evennia.commands.default.system.CmdReload) (cmdset: [AccountCmdSet](evennia.commands.default.cmdset_account.AccountCmdSet), help-category: _System_)
- [**reset** [reboot]](evennia.commands.default.system.CmdReset) (cmdset: [AccountCmdSet](evennia.commands.default.cmdset_account.AccountCmdSet), help-category: _System_)
- [**rss2chan**](evennia.commands.default.comms.CmdRSS2Chan) (cmdset: [AccountCmdSet](evennia.commands.default.cmdset_account.AccountCmdSet), help-category: _Comms_)
@@ -99,7 +99,7 @@ with [EvEditor](./EvEditor.md), flipping pages in [EvMore](./EvMore.md) or using
- [**tickers**](evennia.commands.default.system.CmdTickers) (cmdset: [CharacterCmdSet](evennia.commands.default.cmdset_character.CharacterCmdSet), help-category: _System_)
- [**time** [uptime]](evennia.commands.default.system.CmdTime) (cmdset: [CharacterCmdSet](evennia.commands.default.cmdset_character.CharacterCmdSet), help-category: _System_)
- [**tunnel** [tun]](evennia.commands.default.building.CmdTunnel) (cmdset: [CharacterCmdSet](evennia.commands.default.cmdset_character.CharacterCmdSet), help-category: _Building_)
-- [**typeclass** [parent, type, swap, update]](evennia.commands.default.building.CmdTypeclass) (cmdset: [CharacterCmdSet](evennia.commands.default.cmdset_character.CharacterCmdSet), help-category: _Building_)
+- [**typeclass** [parent, swap, type, update]](evennia.commands.default.building.CmdTypeclass) (cmdset: [CharacterCmdSet](evennia.commands.default.cmdset_character.CharacterCmdSet), help-category: _Building_)
- [**unlink**](evennia.commands.default.building.CmdUnLink) (cmdset: [CharacterCmdSet](evennia.commands.default.cmdset_character.CharacterCmdSet), help-category: _Building_)
- [**whisper**](evennia.commands.default.general.CmdWhisper) (cmdset: [CharacterCmdSet](evennia.commands.default.cmdset_character.CharacterCmdSet), help-category: _General_)
- [**who** [doing]](evennia.commands.default.account.CmdWho) (cmdset: [AccountCmdSet](evennia.commands.default.cmdset_account.AccountCmdSet), help-category: _General_)
diff --git a/docs/0.9.5/api/evennia.commands.default.batchprocess.html b/docs/0.9.5/api/evennia.commands.default.batchprocess.html
index eddc3b8e06..161ff09962 100644
--- a/docs/0.9.5/api/evennia.commands.default.batchprocess.html
+++ b/docs/0.9.5/api/evennia.commands.default.batchprocess.html
@@ -77,7 +77,7 @@ skipping, reloading etc.
diff --git a/docs/0.9.5/api/evennia.commands.default.building.html b/docs/0.9.5/api/evennia.commands.default.building.html
index 1da8ba359c..74a5121e44 100644
--- a/docs/0.9.5/api/evennia.commands.default.building.html
+++ b/docs/0.9.5/api/evennia.commands.default.building.html
@@ -496,7 +496,7 @@ You can specify the /force switch to bypass this confirmation.
@@ -1186,7 +1186,7 @@ server settings.
diff --git a/docs/0.9.5/api/evennia.commands.default.comms.html b/docs/0.9.5/api/evennia.commands.default.comms.html
index ed634eeea6..87962fc6fb 100644
--- a/docs/0.9.5/api/evennia.commands.default.comms.html
+++ b/docs/0.9.5/api/evennia.commands.default.comms.html
@@ -66,7 +66,7 @@ aliases to an already joined channel.
@@ -118,7 +118,7 @@ for that channel.
@@ -221,7 +221,7 @@ Use addcom/delcom to join and leave channels
-
-
aliases = ['channellist', 'chanlist', 'all channels', 'comlist', 'clist']¶
+aliases = ['channellist', 'all channels', 'clist', 'comlist', 'chanlist']¶
diff --git a/docs/0.9.5/api/evennia.commands.default.general.html b/docs/0.9.5/api/evennia.commands.default.general.html
index 1a4e67cb25..5bfb6eaca1 100644
--- a/docs/0.9.5/api/evennia.commands.default.general.html
+++ b/docs/0.9.5/api/evennia.commands.default.general.html
@@ -197,7 +197,7 @@ for everyone to use, you need build privileges and the alias command.
diff --git a/docs/0.9.5/api/evennia.commands.default.system.html b/docs/0.9.5/api/evennia.commands.default.system.html
index 83bf5cb8b6..b297acdf90 100644
--- a/docs/0.9.5/api/evennia.commands.default.system.html
+++ b/docs/0.9.5/api/evennia.commands.default.system.html
@@ -351,7 +351,7 @@ given, <nr> defaults to 10.
-
-
aliases = ['listobjs', 'stats', 'db', 'listobjects']¶
+aliases = ['stats', 'listobjects', 'listobjs', 'db']¶
diff --git a/docs/0.9.5/api/evennia.commands.default.unloggedin.html b/docs/0.9.5/api/evennia.commands.default.unloggedin.html
index 73598d6033..0207566631 100644
--- a/docs/0.9.5/api/evennia.commands.default.unloggedin.html
+++ b/docs/0.9.5/api/evennia.commands.default.unloggedin.html
@@ -165,7 +165,7 @@ version is a bit more complicated.
@@ -210,7 +210,7 @@ All it does is display the connect screen.
diff --git a/docs/0.9.5/api/evennia.contrib.barter.html b/docs/0.9.5/api/evennia.contrib.barter.html
index c0def718e9..aaa45d309f 100644
--- a/docs/0.9.5/api/evennia.contrib.barter.html
+++ b/docs/0.9.5/api/evennia.contrib.barter.html
@@ -653,7 +653,7 @@ try to influence the other part in the deal.
diff --git a/docs/0.9.5/api/evennia.contrib.dice.html b/docs/0.9.5/api/evennia.contrib.dice.html
index 6dc941e2e3..31f97ae1cb 100644
--- a/docs/0.9.5/api/evennia.contrib.dice.html
+++ b/docs/0.9.5/api/evennia.contrib.dice.html
@@ -151,7 +151,7 @@ everyone but the person rolling.
diff --git a/docs/0.9.5/api/evennia.contrib.email_login.html b/docs/0.9.5/api/evennia.contrib.email_login.html
index 6f734bd97a..0253eaf64b 100644
--- a/docs/0.9.5/api/evennia.contrib.email_login.html
+++ b/docs/0.9.5/api/evennia.contrib.email_login.html
@@ -173,7 +173,7 @@ version is a bit more complicated.
@@ -213,7 +213,7 @@ All it does is display the connect screen.
diff --git a/docs/0.9.5/api/evennia.contrib.ingame_python.commands.html b/docs/0.9.5/api/evennia.contrib.ingame_python.commands.html
index b88bdbfca9..bb06c69553 100644
--- a/docs/0.9.5/api/evennia.contrib.ingame_python.commands.html
+++ b/docs/0.9.5/api/evennia.contrib.ingame_python.commands.html
@@ -54,7 +54,7 @@
diff --git a/docs/0.9.5/api/evennia.contrib.rpsystem.html b/docs/0.9.5/api/evennia.contrib.rpsystem.html
index 9855c49ce1..e6d1f41232 100644
--- a/docs/0.9.5/api/evennia.contrib.rpsystem.html
+++ b/docs/0.9.5/api/evennia.contrib.rpsystem.html
@@ -775,7 +775,7 @@ Using the command without arguments will list all current recogs.
diff --git a/docs/0.9.5/api/evennia.contrib.tutorial_examples.cmdset_red_button.html b/docs/0.9.5/api/evennia.contrib.tutorial_examples.cmdset_red_button.html
index f264d71879..2373796da3 100644
--- a/docs/0.9.5/api/evennia.contrib.tutorial_examples.cmdset_red_button.html
+++ b/docs/0.9.5/api/evennia.contrib.tutorial_examples.cmdset_red_button.html
@@ -107,7 +107,7 @@ push the lid of the button away.
@@ -155,7 +155,7 @@ lid-state respectively.
@@ -284,7 +284,7 @@ of causing the lamp to break.
-
-
aliases = ['examine', 'ex', 'l', 'listen', 'feel', 'get']¶
+aliases = ['l', 'get', 'listen', 'ex', 'examine', 'feel']¶
diff --git a/docs/0.9.5/api/evennia.contrib.tutorial_world.objects.html b/docs/0.9.5/api/evennia.contrib.tutorial_world.objects.html
index 6385a225cc..2f3e80238c 100644
--- a/docs/0.9.5/api/evennia.contrib.tutorial_world.objects.html
+++ b/docs/0.9.5/api/evennia.contrib.tutorial_world.objects.html
@@ -353,7 +353,7 @@ of the object. We overload it with our own version.
@@ -479,7 +479,7 @@ shift green root up/down
@@ -527,7 +527,7 @@ yellow/green - horizontal roots
-
-
aliases = ['press button', 'button', 'push button']¶
+aliases = ['button', 'push button', 'press button']¶
@@ -692,7 +692,7 @@ parry - forgoes your attack but will make you harder to hit on next
-
-
aliases = ['kill', 'pierce', 'hit', 'bash', 'slash', 'parry', 'stab', 'defend', 'chop', 'fight', 'thrust']¶
+aliases = ['slash', 'defend', 'chop', 'thrust', 'parry', 'fight', 'stab', 'hit', 'bash', 'kill', 'pierce']¶
diff --git a/docs/0.9.5/api/evennia.contrib.tutorial_world.rooms.html b/docs/0.9.5/api/evennia.contrib.tutorial_world.rooms.html
index 40ecc2c00b..e3bed263a5 100644
--- a/docs/0.9.5/api/evennia.contrib.tutorial_world.rooms.html
+++ b/docs/0.9.5/api/evennia.contrib.tutorial_world.rooms.html
@@ -822,7 +822,7 @@ to find something.
-
-
aliases = ['feel around', 'search', 'l', 'feel', 'fiddle']¶
+aliases = ['feel around', 'l', 'fiddle', 'search', 'feel']¶
diff --git a/docs/0.9.5/api/evennia.utils.eveditor.html b/docs/0.9.5/api/evennia.utils.eveditor.html
index 17d8ca173a..4b224cac34 100644
--- a/docs/0.9.5/api/evennia.utils.eveditor.html
+++ b/docs/0.9.5/api/evennia.utils.eveditor.html
@@ -267,7 +267,7 @@ indentation.
-
-
aliases = [':fi', ':y', ':::', ':I', ':p', ':r', ':fd', ':w', ':dw', ':UU', ':DD', ':j', ':f', ':dd', ':!', ':i', ':h', ':=', ':S', ':echo', ':s', ':uu', ':q', ':<', ':u', ':>', ':', ':A', ':q!', ':x', ':wq', '::']¶
+aliases = [':echo', '::', ':s', ':=', ':q', ':j', ':dd', ':wq', ':w', ':', ':DD', ':r', ':UU', ':h', ':fd', ':S', ':q!', ':>', ':I', ':u', ':!', ':x', ':y', ':i', ':f', ':uu', ':dw', ':p', ':fi', ':::', ':A', ':<']¶
diff --git a/docs/0.9.5/api/evennia.utils.evmore.html b/docs/0.9.5/api/evennia.utils.evmore.html
index 69a53a0226..7c4053015e 100644
--- a/docs/0.9.5/api/evennia.utils.evmore.html
+++ b/docs/0.9.5/api/evennia.utils.evmore.html
@@ -77,7 +77,7 @@ the caller.msg() construct every time the page is updated.
-
-
aliases = ['n', 'end', 'quit', 'e', 'abort', 'b', 'a', 'q', 't', 'back', 'next', 'top']¶
+aliases = ['next', 'b', 'top', 'abort', 'n', 'quit', 'e', 'back', 'end', 'a', 't', 'q']¶
diff --git a/docs/1.0-dev/.buildinfo b/docs/1.0-dev/.buildinfo
index 9efe9fcc7f..3d14e0819f 100644
--- a/docs/1.0-dev/.buildinfo
+++ b/docs/1.0-dev/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: 0633c4e6f99716d16088a05549b3bd0c
+config: 400506d500dae7a94d889bdeb2b27f17
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/docs/1.0-dev/Coding/Changelog.html b/docs/1.0-dev/Coding/Changelog.html
index b5ca56dd02..e53d73db1b 100644
--- a/docs/1.0-dev/Coding/Changelog.html
+++ b/docs/1.0-dev/Coding/Changelog.html
@@ -210,6 +210,14 @@ warning when using reset mode.
Attribute storage support defaultdics (Hendher)
Add ObjectParent mixin to default game folder template as an easy, ready-made
way to override features on all ObjectDB-inheriting objects easily.
+Add TagProperty, AliasProperty and PermissionProperty to assign these
+data in a similar way to django fields.
+The db pickle-serializer now checks for methods __serialize_dbobjs__ and __deserialize_dbobjs__
+to allow custom packing/unpacking of nested dbobjs, to allow storing in Attribute.
+Optimizations to rpsystem contrib performance. Breaking change: .get_sdesc() will
+now return None instead of .db.desc if no sdesc is set; fallback in hook (inspectorCaracal)
+Reworked text2html parser to avoid problems with stateful color tags (inspectorCaracal)
+Simplified EvMenu.options_formatter hook to use EvColumn and f-strings (inspectorcaracal)
diff --git a/docs/1.0-dev/Components/Attributes.html b/docs/1.0-dev/Components/Attributes.html
index e5c33c5f16..de9fb45e16 100644
--- a/docs/1.0-dev/Components/Attributes.html
+++ b/docs/1.0-dev/Components/Attributes.html
@@ -56,22 +56,35 @@
-In-code¶
-obj.db.foo = [1,2,3, "bar"]
+In-code, using the .db wrapper¶
+obj.db.foo = [1, 2, 3, "bar"]
value = obj.db.foo
-
-obj.attributes.add("myattr", 1234, category="bar")
+
+
+
+
+In-code, using the .attributes handler¶
+obj.attributes.add("myattr", 1234, category="bar")
value = attributes.get("myattr", category="bar")
-Attributes allow you to to store arbitrary data on objects and make sure the data survives a
-server reboot. An Attribute can store pretty much any
+
+In-code, using AttributeProperty at class level¶
+from evennia import DefaultObject
+from evennia import AttributeProperty
+
+class MyObject(DefaultObject):
+ foo = AttributeProperty(default=[1, 2, 3, "bar"])
+ myattr = AttributeProperty(100, category='bar')
+
+
+
+Attributes allow you to to store arbitrary data on objects and make sure the data survives a server reboot. An Attribute can store pretty much any
Python data structure and data type, like numbers, strings, lists, dicts etc. You can also
store (references to) database objects like characters and rooms.
-What can be stored in an Attribute is a must-read
-also for experienced developers, to avoid getting surprised. Attributes can store almost everything
+
What can be stored in an Attribute is a must-read to avoid being surprised, also for experienced developers. Attributes can store almost everything
but you need to know the quirks.
NAttributes are the in-memory, non-persistent
siblings of Attributes.
@@ -81,7 +94,7 @@ siblings of Attributes.
Managing Attributes in Code¶
Attributes are usually handled in code. All Typeclassed entities
(Accounts, Objects, Scripts and
-Channels) all can (and usually do) have Attributes associated with them. There
+Channels) can (and usually do) have Attributes associated with them. There
are three ways to manage Attributes, all of which can be mixed.
@@ -90,8 +103,8 @@ are three ways to manage Attributes, all of which can be mixed.
Using .db¶
-The simplest way to get/set Attributes is to use the .db shortcut:
-import evennia
+The simplest way to get/set Attributes is to use the .db shortcut. This allows for setting and getting Attributes that lack a category (having category None)
+import evennia
obj = evennia.create_object(key="Foo")
@@ -104,10 +117,10 @@ are three ways to manage Attributes, all of which can be mixed.
rose = evennia.search_object(key="rose")[0] # returns a list, grab 0th element
rose.db.has_thorns = True
-# retrieving
+# retrieving
val1 = obj.db.foo1
val2 = obj.db.foo2
-weap = obj.db.weapon
+weap = obj.db.weapon
myself = obj.db.self_reference # retrieve reference from db, get object back
is_ouch = rose.db.has_thorns
@@ -115,8 +128,8 @@ are three ways to manage Attributes, all of which can be mixed.
# this will return None, not AttributeError!
not_found = obj.db.jiwjpowiwwerw
-# returns all Attributes on the object
-obj.db.all
+# returns all Attributes on the object
+obj.db.all
# delete an Attribute
del obj.db.foo2
@@ -129,11 +142,10 @@ default all<
Using .attributes¶
-If you don’t know the name of the Attribute beforehand you can also use
-the AttributeHandler, available as .attributes. With no extra keywords this is identical
-to using the .db shortcut (.db is actually using the AttributeHandler internally):
-is_ouch = rose.attributes.get("has_thorns")
-
+If you want to group your Attribute in a category, or don’t know the name of the Attribute beforehand, you can make use of
+the AttributeHandler, available as .attributes on all typeclassed entities. With no extra keywords, this is identical to using the .db shortcut (.db is actually using the AttributeHandler internally):
+is_ouch = rose.attributes.get("has_thorns")
+
obj.attributes.add("helmet", "Knight's helmet")
helmet = obj.attributes.get("helmet")
@@ -141,8 +153,7 @@ to using the .dbobj.attributes.add("my game log", "long text about ...")
-With the AttributeHandler you can also give Attributes a category. By using a category you can
-separate same-named Attributes on the same object which can help organization:
+By using a category you can separate same-named Attributes on the same object to help organization.
# store (let's say we have gold_necklace and ringmail_armor from before)
obj.attributes.add("neck", gold_necklace, category="clothing")
obj.attributes.add("neck", ringmail_armor, category="armor")
@@ -152,12 +163,7 @@ separate same-named Attributes on the same object which can help organization:
neck_armor = obj.attributes.get("neck", category="armor")
-If you don’t specify a category, the Attribute’s category will be None. Note that
-None is also considered a category of its own, so you won’t find None-category Attributes mixed
-with Attributes having categories.
-
-When using .db, you will always use the None category.
-
+If you don’t specify a category, the Attribute’s category will be None and can thus also be found via .db. None is considered a category of its own, so you won’t find None-category Attributes mixed with Attributes having categories.
Here are the methods of the AttributeHandler. See
the AttributeHandler API for more details.
@@ -178,28 +184,27 @@ before performing the deletion. -
Examples:
try:
- # raise error if Attribute foo does not exist
+ # raise error if Attribute foo does not exist
val = obj.attributes.get("foo", raise_exception=True):
except AttributeError:
# ...
-
+
# return default value if foo2 doesn't exist
-val2 = obj.attributes.get("foo2", default=[1, 2, 3, "bar"])
+val2 = obj.attributes.get("foo2", default=[1, 2, 3, "bar"])
# delete foo if it exists (will silently fail if unset, unless
# raise_exception is set)
obj.attributes.remove("foo")
-
+
# view all clothes on obj
-all_clothes = obj.attributes.all(category="clothes")
+all_clothes = obj.attributes.all(category="clothes")
Using AttributeProperty¶
-There is a third way to set up an Attribute, and that is by setting up an AttributeProperty. This
-is done on the class level of your typeclass and allows you to treat Attributes a bit like Django
-database Fields.
+The third way to set up an Attribute is to use an AttributeProperty. This
+is done on the class level of your typeclass and allows you to treat Attributes a bit like Django database Fields. Unlike using .db and .attributes, an AttributeProperty can’t be created on the fly, you must assign it in the class code.
# mygame/typeclasses/characters.py
from evennia import DefaultCharacter
@@ -207,126 +212,55 @@ database Fields.
class Character(DefaultCharacter):
- strength = AttributeProperty(default=10, category='stat', autocreate=True)
- constitution = AttributeProperty(default=10, category='stat', autocreate=True)
- agility = AttributeProperty(default=10, category='stat', autocreate=True)
- magic = AttributeProperty(default=10, category='stat', autocreate=True)
-
- sleepy = AttributeProperty(default=False)
- poisoned = AttributeProperty(default=False)
-
- def at_object_creation(self):
- # ...
-
-
-These “Attribute-properties” will be made available to all instances of the class.
-
-Important
-If you change the default of an AttributeProperty (and reload), it will
-change the default for all instances of that class (it will not override
-explicitly changed values).
-
-char = evennia.search_object(Character, key="Bob")[0] # returns list, get 0th element
-
-# get defaults
-strength = char.strength # will get the default value 10
-
-# assign new values (this will create/update new Attributes)
-char.strength = 12
-char.constitution = 16
-char.agility = 8
-char.magic = 2
-
-# you can also do arithmetic etc
-char.magic += 2 # char.magic is now 4
-
-# check Attributes
-strength = char.strength # this is now 12
-is_sleepy = char.sleepy
-is_poisoned = char.poisoned
-
-del char.strength # wipes the Attribute
-strength = char.strengh # back to the default (10) again
-
-
-See the AttributeProperty docs for more
-details on arguments.
-An AttributeProperty will not create an Attribute by default. A new Attribute will be created
-(or an existing one retrieved/updated) will happen differently depending on how the autocreate
-keyword:
-
-If autocreate=False (default), an Attribute will be created only if the field is explicitly
-assigned a value (even if the value is the same as the default, such as char.strength = 10).
-If autocreate=True, an Attribute will be created as soon as the field is accessed in
-any way (So both strength = char.strength and char.strength = 10 will both make sure that
-an Attribute exists.
-
-Example:
-# in mygame/typeclasses/objects.py
-
-from evennia import create_object
-from evennia import DefaultObject
-from evennia.typeclasses.attributes import AttributeProperty
-
-class Object(DefaultObject):
-
- value_a = AttributeProperty(default="foo")
- value_b = AttributeProperty(default="bar", autocreate=True)
-
-obj = evennia.create_object(key="Dummy")
-
-# these will find NO Attributes!
-obj.db.value_a
-obj.attributes.get("value_a")
-obj.db.value_b
-obj.attributes.get("value_b")
-
-# get data from attribute-properties
-vala = obj.value_a # returns "foo"
-valb = obj.value_b # return "bar" AND creates the Attribute (autocreate)
-
-# the autocreate property will now be found
-obj.db.value_a # still not found
-obj.attributes.get("value_a") # ''
-obj.db.value_b # now returns "bar"
-obj.attributes.get("value_b") # ''
-
-# assign new values
-obj.value_a = 10 # will now create a new Attribute
-obj.value_b = 12 # will update the existing Attribute
-
-# both are now found as Attributes
-obj.db.value_a # now returns 10
-obj.attributes.get("value_a") # ''
-obj.db.value_b # now returns 12
-obj.attributes.get("value_b") # ''
-
-
-If you always access your Attributes via the AttributeProperty this does not matter that much
-(it’s also a bit of an optimization to not create an actual database Attribute unless the value changed).
-But until an Attribute has been created, AttributeProperty fields will not show up with the
-examine command or by using the .db or .attributes handlers - so this is a bit inconsistent.
-If this is important, you need to ‘initialize’ them by accessing them at least once … something
-like this:
-# ...
-class Character(DefaultCharacter):
-
- strength = AttributeProperty(12, autocreate=True)
- agility = AttributeProperty(12, autocreate=True)
+ strength = AttributeProperty(10, category='stat')
+ constitution = AttributeProperty(11, category='stat')
+ agility = AttributeProperty(12, category='stat')
+ magic = AttributeProperty(13, category='stat')
+ sleepy = AttributeProperty(False, autocreate=False)
+ poisoned = AttributeProperty(False, autocreate=False)
def at_object_creation(self):
- # initializing
- self.strength # by accessing it, the Attribute is auto-created
- self.agility # ''
+ # ...
-
-Important
-If you created your AttributeProperty with a category, you must specify the
-category in .attributes.get() if you want to find it this way. Remember that
-.db always uses a category of None.
+When a new instance of the class is created, new Attributes will be created with the value and category given.
+With AttributeProperty’s set up like this, one can access the underlying Attribute like a regular property on the created object:
+char = create_object(Character)
+
+char.strength # returns 10
+char.agility = 15 # assign a new value (category remains 'stat')
+
+char.db.magic # returns None (wrong category)
+char.attributes.get("agility", category="stat") # returns 15
+
+char.db.sleepy # returns None because autocreate=False (see below)
+
+
+
+Warning
+Be careful to not assign AttributeProperty’s to names of properties and methods already existing on the class, like ‘key’ or ‘at_object_creation’. That could lead to very confusing errors.
+
+The autocreate=False (default is True) used for sleepy and poisoned is worth a closer explanation. When False, no Attribute will be auto-created for these AttributProperties unless they are explicitly set.
+The advantage of not creating an Attribute is that the default value given to AttributeProperty is returned with no database access unless you change it. This also means that if you want to change the default later, all entities previously create will inherit the new default.
+The drawback is that without a database precense you can’t find the Attribute via .db and .attributes.get (or by querying for it in other ways in the database):
+char.sleepy # returns False, no db access
+
+char.db.sleepy # returns None - no Attribute exists
+char.attributes.get("sleepy") # returns None too
+
+char.sleepy = True # now an Attribute is created
+char.db.sleepy # now returns True!
+char.attributes.get("sleepy") # now returns True
+
+char.sleepy # now returns True, involves db access
+
+
+
+You can e.g. del char.strength to set the value back to the default (the value defined
+in the AttributeProperty).
+See the AttributeProperty API for more details on how to create it with special options, like giving access-restrictions.
@@ -342,7 +276,7 @@ problem.
To view, do
-set myobj/foo
+set myobj/foo
or see them together with all object-info with
@@ -424,16 +358,16 @@ values into a string representation before storing it to the database. This is d
With a single object, we mean anything that is not iterable, like numbers, strings or custom class
instances without the __iter__ method.
-You can generally store any non-iterable Python entity that can be pickled.
+You can generally store any non-iterable Python entity that can be pickled.
Single database objects/typeclasses can be stored, despite them normally not being possible
-to pickle. Evennia wil convert them to an internal representation using their classname,
+to pickle. Evennia will convert them to an internal representation using theihr classname,
database-id and creation-date with a microsecond precision. When retrieving, the object
instance will be re-fetched from the database using this information.
-To convert the database object, Evennia must know it’s there. If you hide a database object
-inside a non-iterable class, you will run into errors - this is not supported!
+If you ‘hide’ a db-obj as a property on a custom class, Evennia will not be
+able to find it to serialize it. For that you need to help it out (see below).
-
-Valid assignments¶
+
+Valid assignments¶
# Examples of valid single-value attribute data:
obj.db.test1 = 23
obj.db.test1 = False
@@ -442,15 +376,51 @@ inside a non-iterable class, you will run into errors - this is not supported!
-
-Invalid, ‘hidden’ dbobject¶
-# example of an invalid, "hidden" dbobject
+As mentioned, Evennia will not be able to automatically serialize db-objects
+‘hidden’ in arbitrary properties on an object. This will lead to an error
+when saving the Attribute.
+
+Invalid, ‘hidden’ dbobject¶
+# example of storing an invalid, "hidden" dbobject in Attribute
class Container:
def __init__(self, mydbobj):
# no way for Evennia to know this is a database object!
self.mydbobj = mydbobj
+
+# let's assume myobj is a db-object
container = Container(myobj)
-obj.db.invalid = container # will cause error!
+obj.db.mydata = container # will raise error!
+
+
+
+By adding two methods __serialize_dbobjs__ and __deserialize_dbobjs__ to the
+object you want to save, you can pre-serialize and post-deserialize all ‘hidden’
+objects before Evennia’s main serializer gets to work. Inside these methods, use Evennia’s
+evennia.utils.dbserialize.dbserialize and
+dbunserialize functions to safely
+serialize the db-objects you want to store.
+
+Fixing an invalid ‘hidden’ dbobj for storing in Attribute¶
+from evennia.utils import dbserialize # important
+
+class Container:
+ def __init__(self, mydbobj):
+ # A 'hidden' db-object
+ self.mydbobj = mydbobj
+
+ def __serialize_dbobjs__(self):
+ """This is called before serialization and allows
+ us to custom-handle those 'hidden' dbobjs"""
+ self.mydbobj = dbserialize.dbserialize(self.mydbobj
+
+ def __deserialize_dbobjs__(self):
+ """This is called after deserialization and allows you to
+ restore the 'hidden' dbobjs you serialized before"""
+ self.mydbobj = dbserialize.dbunserialize(self.mydbobj)
+
+# let's assume myobj is a db-object
+container = Container(myobj)
+obj.db.mydata = container # will now work fine!
@@ -499,6 +469,10 @@ process but for efficiency you may want to avoid too deeply nested structures if
# test8 is now [4,2,{"test":5}]
+Note that if make some advanced iterable object, and store an db-object on it in
+a way such that it is not returned by iterating over it, you have created a
+‘hidden’ db-object. See the previous section for how
+to tell Evennia how to serialize such hidden objects safely.
Retrieving Mutable objects¶
@@ -525,14 +499,14 @@ variable, e.g. myli
of the variable. If you update the snapshot, it will save to the database, but this change will not propagate to
any other snapshots you may have done previously.
obj.db.mylist = [1, 2, 3, 4]
-mylist1 = obj.db.mylist
-mylist2 = obj.db.mylist
-mylist1[3] = 5
+mylist1 = obj.db.mylist
+mylist2 = obj.db.mylist
+mylist1[3] = 5
print(mylist1) # this is now [1, 2, 3, 5]
-print(obj.db.mylist) # also updated to [1, 2, 3, 5]
+print(obj.db.mylist) # also updated to [1, 2, 3, 5]
-print(mylist2) # still [1, 2, 3, 4] !
+print(mylist2) # still [1, 2, 3, 4] !
@@ -546,7 +520,7 @@ back the results as needed.
You can also choose to “disconnect” the Attribute entirely from the
database with the help of the .deserialize() method:
obj.db.mylist = [1, 2, 3, 4, {1: 2}]
-mylist = obj.db.mylist.deserialize()
+mylist = obj.db.mylist.deserialize()
The result of this operation will be a structure only consisting of normal Python mutables (list
diff --git a/docs/1.0-dev/Components/FuncParser.html b/docs/1.0-dev/Components/FuncParser.html
index 1aac9fab80..2be93c87b0 100644
--- a/docs/1.0-dev/Components/FuncParser.html
+++ b/docs/1.0-dev/Components/FuncParser.html
@@ -57,15 +57,16 @@ the return from the function.
from evennia.utils.funcparser import FuncParser
def _power_callable(*args, **kwargs):
- """This will be callable as $square(number, power=<num>) in string"""
+ """This will be callable as $pow(number, power=<num>) in string"""
pow = int(kwargs.get('power', 2))
return float(args[0]) ** pow
+# create a parser and tell it that '$pow' means using _power_callable
parser = FuncParser({"pow": _power_callable})
-Next, just pass a string into the parser, optionally containing $func(...) markers:
+Next, just pass a string into the parser, containing $func(...) markers:
parser.parse("We have that 4 x 4 x 4 is $pow(4, power=3).")
"We have that 4 x 4 x 4 is 64."
@@ -111,7 +112,7 @@ Evennia expects you to do in a proper text editor, outside of the game, not from
from evennia.utils import funcparser
parser = FuncParser(callables, **default_kwargs)
-parsed_string = parser.parser(input_string, raise_errors=False,
+parsed_string = parser.parse(input_string, raise_errors=False,
escape=False, strip=False,
return_str=True, **reserved_kwargs)
@@ -131,8 +132,12 @@ If no such variable is defined, every top-level function in the module
an underscore _) will be considered a suitable callable. The name of the function will be the $funcname
by which it can be called.
A list of modules/paths. This allows you to pull in modules from many sources for your parsing.
+The **default kwargs are optional kwargs that will be passed to all
+callables every time this parser is used - unless the user overrides it explicitly in
+their call. This is great for providing sensible standards that the user can
+tweak as needed.
-The other arguments to the parser:
+FuncParser.parse takes further arguments, and can vary for every string parsed.
raise_errors - By default, any errors from a callable will be quietly ignored and the result
will be that the failing function call will show verbatim. If raise_errors is set,
@@ -143,12 +148,14 @@ this properly.
return_str - When True (default), parser always returns a string. If False, it may return
the return value of a single function call in the string. This is the same as using the .parse_to_any
method.
-The **default/reserved_keywords are optional and allow you to pass custom data into every function
-call. This is great for including things like the current session or config options. Defaults can be
-replaced if the user gives the same-named kwarg in the string’s function call. Reserved kwargs are always passed,
-ignoring defaults or what the user passed. In addition, the funcparser and raise_errors
-reserved kwargs are always passed - the first is a back-reference to the FuncParser instance and the second
-is the raise_errors boolean passed into FuncParser.parse.
+The **reserved_keywords are always passed to every callable in the string.
+They override any **defaults given when instantiating the parser and cannot
+be overridden by the user - if they enter the same kwarg it will be ignored.
+This is great for providing the current session, settings etc.
+The funcparser and raise_errors
+are always added as reserved keywords - the first is a
+back-reference to the FuncParser instance and the second
+is the raise_errors boolean given to FuncParser.parse.
Here’s an example of using the default/reserved keywords:
def _test(*args, **kwargs):
@@ -193,7 +200,8 @@ of the string and may or may not raise the exception depending on what you set <
created the parser.
However, if you nest functions, the return of the innermost function may be something other than
a string. Let’s introduce the $eval function, which evaluates simple expressions using
-Python’s literal_eval and/or simple_eval.
+Python’s literal_eval and/or simple_eval. It returns whatever data type it
+evaluates to.
"There's a $toint($eval(10 * 2.2))% chance of survival."
@@ -210,21 +218,67 @@ will be a string:
"There's a 22% chance of survival."
-However, if you use the parse_to_any (or parse(..., return_str=True)) and don’t add any extra string around the outermost function call,
+
However, if you use the parse_to_any (or parse(..., return_str=False)) and
+don’t add any extra string around the outermost function call,
you’ll get the return type of the outermost callable back:
-parser.parse_to_any("$toint($eval(10 * 2.2)%")
-"22%"
-parser.parse_to_any("$toint($eval(10 * 2.2)")
+parser.parse_to_any("$toint($eval(10 * 2.2)")
22
+parser.parse_to_any("the number $toint($eval(10 * 2.2).")
+"the number 22"
+parser.parse_to_any("$toint($eval(10 * 2.2)%")
+"22%"
+
+Escaping special character¶
+When entering funcparser callables in strings, it looks like a regular
+function call inside a string:
+"This is a $myfunc(arg1, arg2, kwarg=foo)."
+
+
+Commas (,) and equal-signs (=) are considered to separate the arguments and
+kwargs. In the same way, the right parenthesis ()) closes the argument list.
+Sometimes you want to include commas in the argument without it breaking the
+argument list.
+"There is a $format(beautiful meadow, with dandelions) to the west."
+
+
+You can escape in various ways.
+
+Prepending with the escape character \
+ ```python
+ "There is a $format(beautiful meadow\, with dandelions) to the west."
+ ```
+
+
+
+Wrapping your strings in quotes. This works like Python, and you can nest
+double and single quotes inside each other if so needed. The result will
+be a verbatim string that contains everything but the outermost quotes.
+ ```python
+ "There is a $format('beautiful meadow, with dandelions') to the west."
+ ```
+
+
+
+If you want verbatim quotes in your string, you can escape them too.
+ ```python
+ "There is a $format('beautiful meadow, with \'dandelions\'') to the west."
+ ```
+
+
+
+
+
Safe convertion of inputs¶
-Since you don’t know in which order users may use your callables, they should always check the types
-of its inputs and convert to the type the callable needs. Note also that when converting from strings,
-there are limits what inputs you can support. This is because FunctionParser strings are often used by
-non-developer players/builders and some things (such as complex classes/callables etc) are just not
-safe/possible to convert from string representation.
+Since you don’t know in which order users may use your callables, they should
+always check the types of its inputs and convert to the type the callable needs.
+Note also that when converting from strings, there are limits what inputs you
+can support. This is because FunctionParser strings can be used by
+non-developer players/builders and some things (such as complex
+classes/callables etc) are just not safe/possible to convert from string
+representation.
In evennia.utils.utils is a helper called
safe_convert_to_types. This function
automates the conversion of simple data types in a safe way:
@@ -232,26 +286,28 @@ automates the conversion of simple data types in a safe way:
def _process_callable(*args, **kwargs):
"""
- A callable with a lot of custom options
-
- $process(expression, local, extra=34, extra2=foo)
+ $process(expression, local, extra1=34, extra2=foo)
"""
args, kwargs = safe_convert_to_type(
- (('py', 'py'), {'extra1': int, 'extra2': str}),
+ (('py', str), {'extra1': int, 'extra2': str}),
*args, **kwargs)
# args/kwargs should be correct types now
+In other words, in the callable $process(expression, local, extra1=.., extra2=...), the first argument will be handled by the ‘py’ converter
+(described below), the second will passed through regular Python str,
+kwargs will be handled by int and str respectively. You can supply
+your own converter function as long as it takes one argument and returns
+the converted result.
In other words,
args, kwargs = safe_convert_to_type(
(tuple_of_arg_converters, dict_of_kwarg_converters), *args, **kwargs)
-Each converter should be a callable taking one argument - this will be the arg/kwarg-value to convert. The
-special converter "py" will try to convert a string argument to a Python structure with the help of the
+
The special converter "py" will try to convert a string argument to a Python structure with the help of the
following tools (which you may also find useful to experiment with on your own):
ast.literal_eval is an in-built Python
@@ -439,6 +495,7 @@ all the defaults (like Uses in default Evennia
- Using the FuncParser
- Defining custom callables
diff --git a/docs/1.0-dev/Components/Permissions.html b/docs/1.0-dev/Components/Permissions.html
index 33de2887f4..6ef1cccf2d 100644
--- a/docs/1.0-dev/Components/Permissions.html
+++ b/docs/1.0-dev/Components/Permissions.html
@@ -62,11 +62,10 @@ hierarchies. It is set by the settings.PERMISSION_ACCOUNT_DEFAULT.
Managing Permissions¶
-In-game, you use the perm command to add and remove permissions
- perm/account Tommy = Builders
- perm/account/del Tommy = Builders
-
-
+In-game, you use the perm command to add and remove permissions
+j
+perm/account Tommy = Builders
+perm/account/del Tommy = Builders
Note the use of the /account switch. It means you assign the permission to the
Accounts Tommy instead of any Character that also
happens to be named “Tommy”.
diff --git a/docs/1.0-dev/Components/Tags.html b/docs/1.0-dev/Components/Tags.html
index 43eb566ec5..3c703dca67 100644
--- a/docs/1.0-dev/Components/Tags.html
+++ b/docs/1.0-dev/Components/Tags.html
@@ -49,18 +49,33 @@
Tags¶
-A common task of a game designer is to organize and find groups of objects and do operations on
-them. A classic example is to have a weather script affect all “outside” rooms. Another would be for
-a player casting a magic spell that affects every location “in the dungeon”, but not those
-“outside”. Another would be to quickly find everyone joined with a particular guild or everyone
-currently dead.
-Tags are short text labels that you attach to objects so as to easily be able to retrieve and
-group them. An Evennia entity can be tagged with any number of Tags. On the database side, Tag
-entities are shared between all objects with that tag. This makes them very efficient but also
-fundamentally different from Attributes, each of which always belongs to one single
-object.
-In Evennia, Tags are technically also used to implement Aliases (alternative names for objects)
-and Permissions (simple strings for Locks to check for).
+
+In game¶
+> tag obj = tagname
+
+
+
+
+In code, using .tags (TagHandler)¶
+obj.tags.add("mytag", category="foo")
+obj.tags.get("mytag", category="foo")
+
+
+
+
+In code, using TagProperty (auto-assign tag to all instances of the class)¶
+from evennia import DefaultObject
+from evennia import TagProperty
+class Sword(DefaultObject):
+ can_be_wielded = TagProperty(category='combat')
+ has_sharp_edge = TagProperty(category='combat')
+
+
+
+Tags are short text lables one can ‘hang’ on objects in order to organize, group and quickly find out their properties. An Evennia entity can be tagged by any number of tags. They are more efficient than Attributes since on the database-side, Tags are shared between all objects with that particular tag. A tag does not carry a value in itself; it either sits on the entity
+Above, the tags inform us that the Sword is both sharp and can be wielded. If that’s all they do, they could just be a normal Python flag. When tags become important is if there are a lot of objects with different combinations of tags. Maybe you have a magical spell that dulls all sharp-edged objects in the castle - whether sword, dagger, spear or kitchen knife! You can then just grab all objects with the has_sharp_edge tag.
+Another example would be a weather script affecting all rooms tagged as outdoors or finding all characters tagged with belongs_to_fighter_guild.
+In Evennia, Tags are technically also used to implement Aliases (alternative names for objects) and Permissions (simple strings for Locks to check for).
Properties of Tags (and Aliases and Permissions)¶
Tags are unique. This means that there is only ever one Tag object with a given key and category.
diff --git a/docs/1.0-dev/Concepts/Internationalization.html b/docs/1.0-dev/Concepts/Internationalization.html
index 6c001c4353..10f1ecccf2 100644
--- a/docs/1.0-dev/Concepts/Internationalization.html
+++ b/docs/1.0-dev/Concepts/Internationalization.html
@@ -76,7 +76,7 @@ updated after May 2021 will be missing some translations.
fr
French
-Nov 2018
+Mar 2022
it
Italian
diff --git a/docs/1.0-dev/Contribs/Contrib-Components.html b/docs/1.0-dev/Contribs/Contrib-Components.html
index 0ae523033c..0684545119 100644
--- a/docs/1.0-dev/Contribs/Contrib-Components.html
+++ b/docs/1.0-dev/Contribs/Contrib-Components.html
@@ -92,7 +92,7 @@ import and inherit the ComponentHolderMixin, similar to this
Components may define DBFields or NDBFields at the class level.
DBField will store its values in the host’s DB with a prefixed key.
NDBField will store its values in the host’s NDB and will not persist.
-The key used will be ‘component_name__field_name’.
+The key used will be ‘component_name::field_name’.
They use AttributeProperty under the hood.
Example:
from evennia.contrib.base_systems.components import Component, DBField
@@ -101,7 +101,24 @@ They use AttributeProperty under the hood.
health = DBField(default=1)
-Note that default is optional and will default to None
+Note that default is optional and will default to None.
+Adding a component to a host will also a similarly named tag with ‘components’ as category.
+A Component named health will appear as key=”health, category=“components”.
+This allows you to retrieve objects with specific components by searching with the tag.
+It is also possible to add Component Tags the same way, using TagField.
+TagField accepts a default value and can be used to store a single or multiple tags.
+Default values are automatically added when the component is added.
+Component Tags are cleared from the host if the component is removed.
+Example:
+from evennia.contrib.base_systems.components import Component, TagField
+
+class Health(Component):
+ resistances = TagField()
+ vulnerability = TagField(default="fire", enforce_single=True)
+
+
+The ‘resistances’ field in this example can be set to multiple times and it will keep the added tags.
+The ‘vulnerability’ field in this example will override the previous tag with the new one.
Each typeclass using the ComponentHolderMixin can declare its components
in the class via the ComponentProperty.
These are components that will always be present in a typeclass.
diff --git a/docs/1.0-dev/Contributing-Docs.html b/docs/1.0-dev/Contributing-Docs.html
index cfe91296dc..ac5c7c2e0e 100644
--- a/docs/1.0-dev/Contributing-Docs.html
+++ b/docs/1.0-dev/Contributing-Docs.html
@@ -517,14 +517,14 @@ class CmdEcho(Command):
An example code block¶
-1
+1
2
3
4
5
6
7
-8
from evennia import Command
+8from evennia import Command
class CmdEcho(Command):
"""
Usage: echo <arg>
@@ -532,8 +532,8 @@ class CmdEcho(Command):
key = "echo"
def func(self):
self.caller.msg(self.args.strip())
-
-
+
+
Here, :linenos: turns on line-numbers and :emphasize-lines: allows for emphasizing certain lines
in a different color. The :caption: shows an instructive text and :name: is used to reference
diff --git a/docs/1.0-dev/Howtos/Beginner-Tutorial/Part1/Adding-Commands.html b/docs/1.0-dev/Howtos/Beginner-Tutorial/Part1/Adding-Commands.html
index b2d4032d8d..f99686f275 100644
--- a/docs/1.0-dev/Howtos/Beginner-Tutorial/Part1/Adding-Commands.html
+++ b/docs/1.0-dev/Howtos/Beginner-Tutorial/Part1/Adding-Commands.html
@@ -299,7 +299,7 @@ You hit <target> with full force!
Here, <hitter> would be the one using the hit command and <target> is the one doing the punching.
Still in mygame/commands/mycommands.py, add a new class, between CmdEcho and MyCmdSet.
- 1
+ 1
2
3
4
@@ -321,7 +321,7 @@ You hit <target> with full force!
20
21
22
-23
# ...
+23
# ...
class CmdHit(Command):
"""
@@ -344,8 +344,8 @@ You hit <target> with full force!
self.caller.msg(f"You hit {target.key} with full force!")
target.msg(f"You got hit by {self.caller.key} with full force!")
# ...
-
-
+
+
A lot of things to dissect here:
Line 3: The normal class header. We inherit from Command which we imported at the top of this file.
diff --git a/docs/1.0-dev/Howtos/Beginner-Tutorial/Part1/Building-Quickstart.html b/docs/1.0-dev/Howtos/Beginner-Tutorial/Part1/Building-Quickstart.html
index d7a7ee6015..31e9b6ff8f 100644
--- a/docs/1.0-dev/Howtos/Beginner-Tutorial/Part1/Building-Quickstart.html
+++ b/docs/1.0-dev/Howtos/Beginner-Tutorial/Part1/Building-Quickstart.html
@@ -158,7 +158,7 @@ You see nothing special.
The description you get is not very exciting. Let’s add some flavor.
-describe box = This is a large and very heavy box.
+desc box = This is a large and very heavy box.
If you try the get command we will pick up the box. So far so good, but if we really want this to
@@ -198,9 +198,9 @@ later, in the 1.5. Get a Personality¶
Scripts are powerful out-of-character objects useful for many “under the hood” things.
One of their optional abilities is to do things on a timer. To try out a first script, let’s put one
-on ourselves. There is an example script in evennia/contrib/tutorial_examples/bodyfunctions.py
+on ourselves. There is an example script in evennia/contrib/tutorials/bodyfunctions/bodyfunctions.py
that is called BodyFunctions. To add this to us we will use the script command:
-script self = tutorial_examples.bodyfunctions.BodyFunctions
+script self = tutorials.bodyfunctions.BodyFunctions
This string will tell Evennia to dig up the Python code at the place we indicate. It already knows
@@ -220,7 +220,7 @@ until it “fires” next. Don’t be alarmed if nothing happens when the countd
particular script has a randomizer to determine if it will say something or not. So you will not see
output every time it fires.
When you are tired of your character’s “insights”, kill the script with
-script/stop self = tutorial_examples.bodyfunctions.BodyFunctions
+script/stop self = tutorials.bodyfunctions.BodyFunctions
You create your own scripts in Python, outside the game; the path you give to script is literally
@@ -238,7 +238,7 @@ named simply Object
evennia/contrib/tutorial_examples there is a module red_button.py. It contains the enigmatic
RedButton class.
Let’s make us one of those!
-create/drop button:tutorial_examples.red_button.RedButton
+create/drop button:tutorials.red_button.RedButton
The same way we did with the Script Earler, we specify a “Python-path” to the Python code we want Evennia
@@ -330,7 +330,7 @@ of #dbrefs, if they are not in the same location) to the command.
The Command-help is something you modify in Python code. We’ll get to that when we get to how to
add Commands. But you can also add regular help entries, for example to explain something about
the history of your game world:
-sethelp/add History = At the dawn of time ...
+sethelp History = At the dawn of time ...
You will now find your new History entry in the help list and read your help-text with help History.
diff --git a/docs/1.0-dev/Links.html b/docs/1.0-dev/Links.html
index de3450aa4a..be5b8bf224 100644
--- a/docs/1.0-dev/Links.html
+++ b/docs/1.0-dev/Links.html
@@ -49,149 +49,167 @@
Links¶
A list of resources that may be useful for Evennia users and developers.
-
-Official Evennia links¶
+
+Official Evennia resources¶
evennia.com - Main Evennia portal page. Links to all corners of Evennia.
-Evennia github page - Download code and read documentation.
-
-Our official IRC chat #evennia at irc.freenode.net:6667.
-Evennia forums/mailing list - Web interface to our
-google group.
-Evennia development blog - Musings from the lead developer.
Evennia’s manual on ReadTheDocs - Read and download
offline in html, PDF or epub formats.
-Evennia Game Index - An automated listing of Evennia games.
-
-
-
+Evennia development blog - Musings from the lead developer.
+Evennia on GitHub - Download code and read documentation.
-Evennia subreddit (not much there yet though)
-
-Third-party Evennia utilities and resources¶
-For publicly available games running on Evennia, add and find those in the Evennia game
-index instead!
+
+Evennia Community¶
-Discord Evennia channel - This is a fan-driven Discord channel with
-a bridge to the official Evennia IRC channel.
+Evennia Game Index - An automated listing of Evennia games.
+
+Evennia official forums on Github Discussions.
+
-
+
+
+Third-party Evennia tools¶
-Discord live blog of the
-Blackbirds Evennia game project.
-Unreal Engine Evennia plugin
-an in-progress Unreal plugin for integrating Evennia with Epic Games’ Unreal Engine.
-The dark net/March Hare MUD from the 2019 DEF CON
-27 hacker conference in Paris. This is an
-Evennia game dir with batchcode to build the custom Hackers style cyberspace zone with puzzles and
-challenges used during the conference.
-Arx sources - Open-source code release of the very popular
-Arx Evennia game. [Here are instructions for installing](Arxcode-
-installing-help)
-Evennia-wiki - An Evennia-specific Wiki for your
-website.
-Evcolor - Optional
-coloration for Evennia unit-test output.
-Paxboards - Evennia bulletin board system (both for
-telnet/web).
-Encarnia sources - An open-sourced game dir for
-Evennia with things like races, combat etc. Summary
-here.
-The world of Cool battles sources - Open source
-turn-based battle system for Evennia. It also has a live demo.
-nextRPI - A github project for making a toolbox for people
-to make RPI-style Evennia games.
-Muddery - A mud framework under development, based on an
-older fork of Evennia. It has some specific design goals for building and extending the game based
-on input files.
-vim-evennia - A mode for editing batch-build files (.ev)
-files in the vim text editor (Emacs users can use evennia-
+Discord relay - Two-way chat relays between Evennia channels and Discord channels.
+docker-compose for Evennia - A quick-install setup for running Evennia in a Docker container. (See the official Evennia docs for more details on running Evennia with Docker.)
+Evcolor - Optional coloration for Evennia unit-test output.
+Evennia-wiki - An Evennia-specific Wiki for your website.
+nextRPI - A github project for making a toolbox for people to make RPI-style Evennia games.
+Paxboards - Evennia bulletin board system (both for telnet/web).
+Unreal Engine Evennia plugin an in-progress Unreal plugin for integrating Evennia with Epic Games’ Unreal Engine.
+vim-evennia - A mode for editing batch-build files (.ev) files in the vim text editor (Emacs users can use evennia-
mode.el).
+The world of Cool battles sources - Open source turn-based battle system for an older version of Evennia.
+
+
+Evennia-Based Projects¶
+
+Code bases¶
-EvCast video series -
-Tutorial videos explaining installing Evennia, basic Python etc.
-Evennia-docker - Evennia in a Docker
-container for quick install and deployment in just a few commands.
-Evennia’s docs in Chinese - A translated mirror of a slightly older
-Evennia version. Announcement here.
-Evennia for MUSHers - An article describing
-Evennia for those used to the MUSH way of doing things.
-Language Understanding for Text games using Deep reinforcement
-learning
-(PDF) - MIT research paper using Evennia
-to train AIs.
+Arx sources - Open-source code release of the very popular Arx Evennia game. Here are instructions for installing
+Encarnia sources - An open-sourced game dir for an older version of Evennia with things like races, combat etc. Summary here.
+The dark net/March Hare MUD from the 2019 DEF CON 27 hacker conference in Paris. This is an Evennia game dir with batchcode to build the custom Hackers style cyberspace zone with puzzles and challenges used during the conference.
+Muddery - A mud framework under development, based on an older fork of Evennia. It has some specific design goals for building and extending the game based on input files.
-
-Other useful mud development resources¶
+
+Other¶
-ROM area reader - Parser for converting ROM area files to
-Python objects.
-
+Discord live blog of the Blackbirds Evennia game project.
+Evennia for MUSHers - An article describing Evennia for those used to the MUSH way of doing things.
+Language Understanding for Text games using Deep reinforcement learning
+(PDF) - MIT research paper using Evennia to train AIs.
-
-General MUD forums and discussions¶
+
+
+
+General MU* resources¶
+
+Tools¶
-MUD Coder’s Guild - A blog and associated Slack
-channel with discussions on MUD development.
-MuSoapbox - Very active Mu* game community mainly focused on MUSH-type gaming.
-Imaginary Realities - An e-magazine on game and MUD
-design that has several articles about Evennia. There is also an
-archive of older issues
-from 1998-2001 that are still very relevant.
-Optional Realities - Mud development discussion forums that has
-regular articles on MUD development focused on roleplay-intensive games. After a HD crash it’s not
-as content-rich as it once was.
-MudLab - Mud design discussion forum
-MudConnector - Mud listing and forums
-MudBytes - Mud listing and forums
-Top Mud Sites - Mud listing and forums
-Planet Mud-Dev - A blog aggregator following blogs of
-current MUD development (including Evennia) around the ‘net. Worth to put among your RSS
-subscriptions.
-Mud Dev mailing list archive (mirror) -
-Influential mailing list active 1996-2004. Advanced game design discussions.
+ROM area reader - Parser for converting ROM area files to Python objects.
+
+
+
+Informational¶
+
+Imaginary Realities unofficial archive - An e-magazine on game and MUD design that has several articles about Evennia.
+Lost Library of MOO - Archive of scientific articles on mudding (in particular moo).
+Mud Client/Server Interaction - A page on classic MUD telnet protocols.
Mud-dev wiki - A (very) slowly growing resource on MUD creation.
-Mud Client/Server Interaction - A page on classic MUD
-telnet protocols.
-Mud Tech’s fun/cool but … -
-Greg Taylor gives good advice on mud design.
-Lost Library of MOO - Archive of scientific articles on mudding (in
-particular moo).
-Nick Gammon’s hints thread -
-Contains a very useful list of things to think about when starting your new MUD.
-Lost Garden - A game development blog with long and interesting
-articles (not MUD-specific)
+Mud Tech’s fun/cool but … - Greg Taylor gives good advice on mud design.
+Nick Gammon’s hints thread - Contains a very useful list of things to think about when starting your new MUD.
+Raph Koster’s laws of game design - thought-provoking guidelines and things to think about when designing a virtual multiplayer world (Raph is known for Ultima Online among other things).
+
+
+
+Community¶
+
+Grapevine - MUD listings and inter-game chat network
+MUD Coder’s Guild - A blog and associated Slack channel with discussions on MUD development.
+MudBytes - MUD listing and forums
+MudConnector - MUD listing and forums
+MudLab - MUD design discussion forum
+MuSoapbox - MU* forum mainly focused on MUSH-type gaming.
+Top Mud Sites - MUD listing and forums
+
+
+
+
+
+General Game-Dev Resources¶
+
+Tools¶
+
+-
+
+
+Learn GIT in 15 minutes (interactive tutorial)
+
+
+
+
+
+Frameworks¶
+
+-
+
+
+
+
+
+-
+
+
+
+
+
+
+
+
+Learning Python¶
+
+-
+
+
+
+Jetbrains Python academy - free online programming curriculum for different skill levels
+
+
+
+Blogs¶
+
+Lost Garden - A game development blog with long and interesting articles (not MUD-specific)
What Games Are - A blog about general game design (not MUD-specific)
-The Alexandrian - A blog about tabletop roleplaying and board games,
-but with lots of general discussion about rule systems and game balance that could be applicable
-also for MUDs.
-Raph Koster’s laws of game design -
-thought-provoking guidelines and things to think about when designing a virtual multiplayer world
-(Raph is known for Ultima Online among other things).
+The Alexandrian - A blog about tabletop roleplaying and board games, but with lots of general discussion about rule systems and game balance that could be applicable also for MUDs.
-Literature¶
-
+Literature¶
+
Richard Bartle Designing Virtual Worlds
(amazon page) -
Essential reading for the design of any persistent game
world, written by the co-creator of the original game MUD. Published in 2003 but it’s still as
-relevant now as when it came out. Covers everything you need to know and then some.
-Zed A. Shaw Learn Python the Hard way (homepage) - Despite
-the imposing name this book is for the absolute Python/programming beginner. One learns the language
-by gradually creating a small text game! It has been used by multiple users before moving on to
-Evennia. Update: This used to be free to read online, this is no longer the case.
+relevant now as when it came out. Covers everything you need to know and then some.
+When the rights to Designing Virtual Worlds returned to him, Richard Bartle
+made the PDF of his Designing Virtual Worlds freely available through his own
+website (Designing Virtual Worlds). A direct link to
+the PDF can be found here.
+
David M. Beazley Python Essential Reference (4th ed)
(amazon page) -
Our recommended book on Python; it not only efficiently summarizes the language but is also
@@ -208,49 +226,6 @@ easy to follow also for a modern reader. Required reading if you think of implem
economic system.
-
-Frameworks¶
-
--
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-Tools¶
-
--
-
-
-Learn GIT in 15 minutes (interactive tutorial)
-
-
-
-
-
-Python Info¶
-
--
-
-
-
-Jetbrains Python academy -
-free online programming curriculum for different skill levels
-
@@ -277,14 +252,28 @@ free online programming curriculum for different skill levels
Table of Contents
- Links
-- Official Evennia links
-- Third-party Evennia utilities and resources
-- Other useful mud development resources
-- General MUD forums and discussions
-- Literature
-- Frameworks
+- Official Evennia resources
+- Evennia Community
+- Third-party Evennia tools
+- Evennia-Based Projects
+- Code bases
+- Other
+
+
+- General MU* resources
+
+- General Game-Dev Resources
+
diff --git a/docs/1.0-dev/_modules/evennia/accounts/accounts.html b/docs/1.0-dev/_modules/evennia/accounts/accounts.html
index 35ded82571..49a59d7a4c 100644
--- a/docs/1.0-dev/_modules/evennia/accounts/accounts.html
+++ b/docs/1.0-dev/_modules/evennia/accounts/accounts.html
@@ -1295,6 +1295,8 @@
"""
self.basetype_setup()
self.at_account_creation()
+ # initialize Attribute/TagProperties
+ self.init_evennia_properties()
permissions = [settings.PERMISSION_ACCOUNT_DEFAULT]
if hasattr(self, "_createdict"):
diff --git a/docs/1.0-dev/_modules/evennia/commands/cmdsethandler.html b/docs/1.0-dev/_modules/evennia/commands/cmdsethandler.html
index 6988c3e8b5..925b0ec2a9 100644
--- a/docs/1.0-dev/_modules/evennia/commands/cmdsethandler.html
+++ b/docs/1.0-dev/_modules/evennia/commands/cmdsethandler.html
@@ -492,9 +492,7 @@
"""
if "permanent" in kwargs:
- logger.log_dep(
- "obj.cmdset.add() kwarg 'permanent' has changed name to 'persistent'."
- )
+ logger.log_dep("obj.cmdset.add() kwarg 'permanent' has changed name to 'persistent'.")
persistent = kwargs["permanent"] if persistent is False else persistent
if not (isinstance(cmdset, str) or utils.inherits_from(cmdset, CmdSet)):
diff --git a/docs/1.0-dev/_modules/evennia/commands/default/building.html b/docs/1.0-dev/_modules/evennia/commands/default/building.html
index 9f7b1df954..984ac6a7c9 100644
--- a/docs/1.0-dev/_modules/evennia/commands/default/building.html
+++ b/docs/1.0-dev/_modules/evennia/commands/default/building.html
@@ -2261,11 +2261,13 @@
old_typeclass_path = obj.typeclass_path
if reset:
- answer = yield("|yNote that this will reset the object back to its typeclass' default state, "
- "removing any custom locks/perms/attributes etc that may have been added "
- "by an explicit create_object call. Use `update` or type/force instead in order "
- "to keep such data. "
- "Continue [Y]/N?|n")
+ answer = yield (
+ "|yNote that this will reset the object back to its typeclass' default state, "
+ "removing any custom locks/perms/attributes etc that may have been added "
+ "by an explicit create_object call. Use `update` or type/force instead in order "
+ "to keep such data. "
+ "Continue [Y]/N?|n"
+ )
if answer.upper() in ("N", "NO"):
caller.msg("Aborted.")
return
@@ -2774,7 +2776,7 @@
return
if ndb_attr and ndb_attr[0]:
- return "\n " + " \n".join(
+ return "\n " + "\n ".join(
sorted(self.format_single_attribute(attr) for attr in ndb_attr)
)
@@ -3515,7 +3517,7 @@
caller.msg("\n".join(msgs))
if "delete" not in self.switches:
if script and script.pk:
- ScriptEvMore(caller, [script], session=self.session)
+ ScriptEvMore(caller, [script], session=self.session)
else:
caller.msg("Script was deleted automatically.")
else:
diff --git a/docs/1.0-dev/_modules/evennia/commands/default/comms.html b/docs/1.0-dev/_modules/evennia/commands/default/comms.html
index ffada20a4c..98fbbde476 100644
--- a/docs/1.0-dev/_modules/evennia/commands/default/comms.html
+++ b/docs/1.0-dev/_modules/evennia/commands/default/comms.html
@@ -328,7 +328,7 @@
elif len(channels) > 1:
self.msg(
"Multiple possible channel matches/alias for "
- "'{channelname}':\n" + ", ".join(chan.key for chan in channels)
+ f"'{channelname}':\n" + ", ".join(chan.key for chan in channels)
)
return None
return channels[0]
diff --git a/docs/1.0-dev/_modules/evennia/commands/default/tests.html b/docs/1.0-dev/_modules/evennia/commands/default/tests.html
index ba69fbb72b..dfc303d447 100644
--- a/docs/1.0-dev/_modules/evennia/commands/default/tests.html
+++ b/docs/1.0-dev/_modules/evennia/commands/default/tests.html
@@ -100,9 +100,24 @@
rid = self.room1.id
self.call(general.CmdLook(), "here", "Room(#{})\nroom_desc".format(rid))
+[docs] def test_look_no_location(self):
+ self.char1.location = None
+ self.call(general.CmdLook(), "", "You have no location to look at!")
+
+[docs] def test_look_nonexisting(self):
+ self.call(general.CmdLook(), "yellow sign", "Could not find 'yellow sign'.")
+
+[docs] def test_go_home(self):
+ self.call(building.CmdTeleport(), "/quiet Room2")
+ self.call(general.CmdHome(), "", "There's no place like home")
+
+[docs] def test_no_home(self):
+ self.char1.home = None
+ self.call(general.CmdHome(), "", "You have no home")
+
[docs] def test_inventory(self):
self.call(general.CmdInventory(), "", "You are not carrying anything.")
@@ -132,6 +147,11 @@
self.assertEqual(None, self.char1.account.nicks.get("testalias", category="account"))
self.assertEqual("testaliasedstring3", self.char1.nicks.get("testalias", category="object"))
+[docs] def test_nick_list(self):
+ self.call(general.CmdNick(), "/list", "No nicks defined.")
+ self.call(general.CmdNick(), "test1 = Hello", "Inputline-nick 'test1' mapped to 'Hello'.")
+ self.call(general.CmdNick(), "/list", "Defined Nicks:")
+
[docs] def test_get_and_drop(self):
self.call(general.CmdGet(), "Obj", "You pick up Obj.")
self.call(general.CmdDrop(), "Obj", "You drop Obj.")
@@ -1316,7 +1336,8 @@
"Obj2 = evennia.objects.objects.DefaultExit",
"Obj2 changed typeclass from evennia.objects.objects.DefaultObject "
"to evennia.objects.objects.DefaultExit.",
- cmdstring="swap", inputs=["yes"],
+ cmdstring="swap",
+ inputs=["yes"],
)
self.call(building.CmdTypeclass(), "/list Obj", "Core typeclasses")
self.call(
@@ -1353,7 +1374,7 @@
"/reset/force Obj=evennia.objects.objects.DefaultObject",
"Obj updated its existing typeclass (evennia.objects.objects.DefaultObject).\n"
"All object creation hooks were run. All old attributes where deleted before the swap.",
- inputs=["yes"]
+ inputs=["yes"],
)
from evennia.prototypes.prototypes import homogenize_prototype
@@ -1380,7 +1401,7 @@
"typeclasses.objects.Object.\nOnly the at_object_creation hook was run "
"(update mode). Attributes set before swap were not removed\n"
"(use `swap` or `type/reset` to clear all). Prototype 'replaced_obj' was "
- "successfully applied over the object type."
+ "successfully applied over the object type.",
)
assert self.obj1.db.desc == "protdesc"
diff --git a/docs/1.0-dev/_modules/evennia/comms/comms.html b/docs/1.0-dev/_modules/evennia/comms/comms.html
index 85173623af..799debf1e7 100644
--- a/docs/1.0-dev/_modules/evennia/comms/comms.html
+++ b/docs/1.0-dev/_modules/evennia/comms/comms.html
@@ -61,15 +61,33 @@
create different types of communication channels.
Class-level variables:
- - `send_to_online_only` (bool, default True) - if set, will only try to
- send to subscribers that are actually active. This is a useful optimization.
- - `log_file` (str, default `"channel_{channelname}.log"`). This is the
- log file to which the channel history will be saved. The `{channelname}` tag
- will be replaced by the key of the Channel. If an Attribute 'log_file'
- is set, this will be used instead. If this is None and no Attribute is found,
- no history will be saved.
- - `channel_prefix_string` (str, default `"[{channelname} ]"`) - this is used
- as a simple template to get the channel prefix with `.channel_prefix()`.
+ - `send_to_online_only` (bool, default True) - if set, will only try to
+ send to subscribers that are actually active. This is a useful optimization.
+ - `log_file` (str, default `"channel_{channelname}.log"`). This is the
+ log file to which the channel history will be saved. The `{channelname}` tag
+ will be replaced by the key of the Channel. If an Attribute 'log_file'
+ is set, this will be used instead. If this is None and no Attribute is found,
+ no history will be saved.
+ - `channel_prefix_string` (str, default `"[{channelname} ]"`) - this is used
+ as a simple template to get the channel prefix with `.channel_prefix()`. It is used
+ in front of every channel message; use `{channelmessage}` token to insert the
+ name of the current channel. Set to `None` if you want no prefix (or want to
+ handle it in a hook during message generation instead.
+ - `channel_msg_nick_pattern`(str, default `"{alias}\\s*?|{alias}\\s+?(?P<arg1>.+?)") -
+ this is what used when a channel subscriber gets a channel nick assigned to this
+ channel. The nickhandler uses the pattern to pick out this channel's name from user
+ input. The `{alias}` token will get both the channel's key and any set/custom aliases
+ per subscriber. You need to allow for an `<arg1>` regex group to catch any message
+ that should be send to the channel. You usually don't need to change this pattern
+ unless you are changing channel command-style entirely.
+ - `channel_msg_nick_replacement` (str, default `"channel {channelname} = $1"` - this
+ is used by the nickhandler to generate a replacement string once the nickhandler (using
+ the `channel_msg_nick_pattern`) identifies that the channel should be addressed
+ to send a message to it. The `<arg1>` regex pattern match from `channel_msg_nick_pattern`
+ will end up at the `$1` position in the replacement. Together, this allows you do e.g.
+ 'public Hello' and have that become a mapping to `channel public = Hello`. By default,
+ the account-level `channel` command is used. If you were to rename that command you must
+ tweak the output to something like `yourchannelcommandname {channelname} = $1`.
"""
@@ -100,6 +118,9 @@
"""
self.basetype_setup()
self.at_channel_creation()
+ # initialize Attribute/TagProperties
+ self.init_evennia_properties()
+
if hasattr(self, "_createdict"):
# this is only set if the channel was created
# with the utils.create.create_channel function.
diff --git a/docs/1.0-dev/_modules/evennia/contrib/base_systems/custom_gametime/custom_gametime.html b/docs/1.0-dev/_modules/evennia/contrib/base_systems/custom_gametime/custom_gametime.html
index f9cbca738e..517d07c347 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/base_systems/custom_gametime/custom_gametime.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/base_systems/custom_gametime/custom_gametime.html
@@ -370,7 +370,7 @@
callback()
seconds = real_seconds_until(**self.db.gametime)
- self.restart(interval=seconds)
+ self.start(interval=seconds, force_restart=True)
diff --git a/docs/1.0-dev/_modules/evennia/contrib/rpg/rpsystem/rpsystem.html b/docs/1.0-dev/_modules/evennia/contrib/rpg/rpsystem/rpsystem.html
index b426ca60d2..f6b59cedc3 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/rpg/rpsystem/rpsystem.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/rpg/rpsystem/rpsystem.html
@@ -95,7 +95,7 @@
# ...
-from evennia.contrib.rpg.rpsystem import RPSystemCmdSet <---
+from evennia.contrib.rpg.rpsystem.rpsystem import RPSystemCmdSet <---
class CharacterCmdSet(default_cmds.CharacterCmdset):
# ...
@@ -111,7 +111,7 @@
```python
# in mygame/typeclasses/characters.py
-from evennia.contrib.rpg import ContribRPCharacter
+from evennia.contrib.rpg.rpsystem.rpsystem import ContribRPCharacter
class Character(ContribRPCharacter):
# ...
@@ -121,7 +121,7 @@
```python
# in mygame/typeclasses/objects.py
-from evennia.contrib.rpg import ContribRPObject
+from evennia.contrib.rpg.rpsystem.rpsystem import ContribRPObject
class Object(ContribRPObject):
# ...
@@ -131,7 +131,7 @@
```python
# in mygame/typeclasses/rooms.py
-from evennia.contrib.rpg import ContribRPRoom
+from evennia.contrib.rpg.rpsystem.rpsystem import ContribRPRoom
class Room(ContribRPRoom):
# ...
@@ -167,7 +167,7 @@
1. In typeclasses/character.py:
Import the `ContribRPCharacter` class:
- `from evennia.contrib.rpg.rpsystem import ContribRPCharacter`
+ `from evennia.contrib.rpg.rpsystem.rpsystem import ContribRPCharacter`
Inherit ContribRPCharacter:
Change "class Character(DefaultCharacter):" to
`class Character(ContribRPCharacter):`
@@ -175,13 +175,13 @@
Add `super().at_object_creation()` as the top line.
2. In `typeclasses/rooms.py`:
Import the `ContribRPRoom` class:
- `from evennia.contrib.rpg.rpsystem import ContribRPRoom`
+ `from evennia.contrib.rpg.rpsystem.rpsystem import ContribRPRoom`
Inherit `ContribRPRoom`:
Change `class Room(DefaultRoom):` to
`class Room(ContribRPRoom):`
3. In `typeclasses/objects.py`
Import the `ContribRPObject` class:
- `from evennia.contrib.rpg.rpsystem import ContribRPObject`
+ `from evennia.contrib.rpg.rpsystem.rpsystem import ContribRPObject`
Inherit `ContribRPObject`:
Change `class Object(DefaultObject):` to
`class Object(ContribRPObject):`
@@ -191,18 +191,15 @@
"""
import re
-from re import escape as re_escape
-import itertools
+from string import punctuation
from django.conf import settings
from evennia.objects.objects import DefaultObject, DefaultCharacter
from evennia.objects.models import ObjectDB
from evennia.commands.command import Command
from evennia.commands.cmdset import CmdSet
-from evennia.utils import ansi
+from evennia.utils import ansi, logger
from evennia.utils.utils import lazy_property, make_iter, variable_from_module
-_REGEX_TUPLE_CACHE = {}
-
_AT_SEARCH_RESULT = variable_from_module(*settings.SEARCH_AT_RESULT.rsplit(".", 1))
# ------------------------------------------------------------
# Emote parser
@@ -231,13 +228,13 @@
_RE_FLAGS = re.MULTILINE + re.IGNORECASE + re.UNICODE
-_RE_PREFIX = re.compile(r"^%s" % _PREFIX, re.UNICODE)
+_RE_PREFIX = re.compile(rf"^{_PREFIX}", re.UNICODE)
# This regex will return groups (num, word), where num is an optional counter to
# separate multimatches from one another and word is the first word in the
# marker. So entering "/tall man" will return groups ("", "tall")
# and "/2-tall man" will return groups ("2", "tall").
-_RE_OBJ_REF_START = re.compile(r"%s(?:([0-9]+)%s)*(\w+)" % (_PREFIX, _NUM_SEP), _RE_FLAGS)
+_RE_OBJ_REF_START = re.compile(rf"{_PREFIX}(?:([0-9]+){_NUM_SEP})*(\w+)", _RE_FLAGS)
_RE_LEFT_BRACKETS = re.compile(r"\{+", _RE_FLAGS)
_RE_RIGHT_BRACKETS = re.compile(r"\}+", _RE_FLAGS)
@@ -281,96 +278,7 @@
pass
-def _dummy_process(text, *args, **kwargs):
- "Pass-through processor"
- return text
-
-
# emoting mechanisms
-
-
-[docs]def ordered_permutation_regex(sentence):
- """
- Builds a regex that matches 'ordered permutations' of a sentence's
- words.
-
- Args:
- sentence (str): The sentence to build a match pattern to
-
- Returns:
- regex (re object): Compiled regex object represented the
- possible ordered permutations of the sentence, from longest to
- shortest.
- Example:
- The sdesc_regex for an sdesc of " very tall man" will
- result in the following allowed permutations,
- regex-matched in inverse order of length (case-insensitive):
- "the very tall man", "the very tall", "very tall man",
- "very tall", "the very", "tall man", "the", "very", "tall",
- and "man".
- We also add regex to make sure it also accepts num-specifiers,
- like /2-tall.
-
- """
- # escape {#nnn} markers from sentence, replace with nnn
- sentence = _RE_REF.sub(r"\1", sentence)
- # escape {##nnn} markers, replace with nnn
- sentence = _RE_REF_LANG.sub(r"\1", sentence)
- # escape self-ref marker from sentence
- sentence = _RE_SELF_REF.sub(r"", sentence)
-
- # ordered permutation algorithm
- words = sentence.split()
- combinations = itertools.product((True, False), repeat=len(words))
- solution = []
- for combination in combinations:
- comb = []
- for iword, word in enumerate(words):
- if combination[iword]:
- comb.append(word)
- elif comb:
- break
- if comb:
- solution.append(
- _PREFIX
- + r"[0-9]*%s*%s(?=\W|$)+" % (_NUM_SEP, re_escape(" ".join(comb)).rstrip("\\"))
- )
-
- # combine into a match regex, first matching the longest down to the shortest components
- regex = r"|".join(sorted(set(solution), key=lambda item: (-len(item), item)))
- return regex
-
-
-[docs]def regex_tuple_from_key_alias(obj):
- """
- This will build a regex tuple for any object, not just from those
- with sdesc/recog handlers. It's used as a legacy mechanism for
- being able to mix this contrib with objects not using sdescs, but
- note that creating the ordered permutation regex dynamically for
- every object will add computational overhead.
-
- Args:
- obj (Object): This object's key and eventual aliases will
- be used to build the tuple.
-
- Returns:
- regex_tuple (tuple): A tuple
- (ordered_permutation_regex, obj, key/alias)
-
-
- """
- global _REGEX_TUPLE_CACHE
- permutation_string = " ".join([obj.key] + obj.aliases.all())
-
- if permutation_string not in _REGEX_TUPLE_CACHE:
- _REGEX_TUPLE_CACHE[permutation_string] = (
- re.compile(ordered_permutation_regex(permutation_string), _RE_FLAGS),
- obj,
- obj.key,
- )
- return _REGEX_TUPLE_CACHE[permutation_string]
-
-
[docs]def parse_language(speaker, emote):
"""
Parse the emote for language. This is
@@ -416,9 +324,9 @@
langname, saytext = say_match.groups()
istart, iend = say_match.start(), say_match.end()
# the key is simply the running match in the emote
- key = "##%i" % imatch
+ key = f"##{imatch}"
# replace say with ref markers in emote
- emote = emote[:istart] + "{%s}" % key + emote[iend:]
+ emote = "{start}{{{key}}}{end}".format(start=emote[:istart], key=key, end=emote[iend:])
mapping[key] = (langname, saytext)
if errors:
@@ -471,24 +379,20 @@
- says, "..." are
"""
- # Load all candidate regex tuples [(regex, obj, sdesc/recog),...]
- candidate_regexes = (
- ([(_RE_SELF_REF, sender, sender.sdesc.get())] if hasattr(sender, "sdesc") else [])
- + (
- [sender.recog.get_regex_tuple(obj) for obj in candidates]
- if hasattr(sender, "recog")
- else []
- )
- + [obj.sdesc.get_regex_tuple() for obj in candidates if hasattr(obj, "sdesc")]
- + [
- regex_tuple_from_key_alias(obj) # handle objects without sdescs
- for obj in candidates
- if not (hasattr(obj, "recog") and hasattr(obj, "sdesc"))
- ]
- )
-
- # filter out non-found data
- candidate_regexes = [tup for tup in candidate_regexes if tup]
+ # build a list of candidates with all possible referrable names
+ # include 'me' keyword for self-ref
+ candidate_map = [(sender, "me")]
+ for obj in candidates:
+ # check if sender has any recogs for obj and add
+ if hasattr(sender, "recog"):
+ if recog := sender.recog.get(obj):
+ candidate_map.append((obj, recog))
+ # check if obj has an sdesc and add
+ if hasattr(obj, "sdesc"):
+ candidate_map.append((obj, obj.sdesc.get()))
+ # if no sdesc, include key plus aliases instead
+ else:
+ candidate_map.extend([(obj, obj.key)] + [(obj, alias) for alias in obj.aliases.all()])
# escape mapping syntax on the form {#id} if it exists already in emote,
# if so it is replaced with just "id".
@@ -509,18 +413,57 @@
# first see if there is a number given (e.g. 1-tall)
num_identifier, _ = marker_match.groups("") # return "" if no match, rather than None
- istart0 = marker_match.start()
- istart = istart0
+ match_index = marker_match.start()
+ # split the emote string at the reference marker, to process everything after it
+ head = string[:match_index]
+ tail = string[match_index + 1 :]
- # loop over all candidate regexes and match against the string following the match
- matches = ((reg.match(string[istart:]), obj, text) for reg, obj, text in candidate_regexes)
+ if search_mode:
+ # match the candidates against the whole search string after the marker
+ rquery = "".join(
+ [
+ r"\b(" + re.escape(word.strip(punctuation)) + r").*"
+ for word in iter(tail.split())
+ ]
+ )
+ matches = (
+ (re.search(rquery, text, _RE_FLAGS), obj, text) for obj, text in candidate_map
+ )
+ # filter out any non-matching candidates
+ bestmatches = [(obj, match.group()) for match, obj, text in matches if match]
- # score matches by how long part of the string was matched
- matches = [(match.end() if match else -1, obj, text) for match, obj, text in matches]
- maxscore = max(score for score, obj, text in matches)
+ else:
+ # to find the longest match, we start from the marker and lengthen the
+ # match query one word at a time.
+ word_list = []
+ bestmatches = []
+ # preserve punctuation when splitting
+ tail = re.split("(\W)", tail)
+ iend = 0
+ for i, item in enumerate(tail):
+ # don't add non-word characters to the search query
+ if not item.isalpha():
+ continue
+ word_list.append(item)
+ rquery = "".join([r"\b(" + re.escape(word) + r").*" for word in word_list])
+ # match candidates against the current set of words
+ matches = (
+ (re.search(rquery, text, _RE_FLAGS), obj, text) for obj, text in candidate_map
+ )
+ matches = [(obj, match.group()) for match, obj, text in matches if match]
+ if len(matches) == 0:
+ # no matches at this length, keep previous iteration as best
+ break
+ # since this is the longest match so far, set latest match set as best matches
+ bestmatches = matches
+ # save current index as end point of matched text
+ iend = i
+
+ # save search string
+ matched_text = "".join(tail[1:iend])
+ # recombine remainder of emote back into a string
+ tail = "".join(tail[iend + 1 :])
- # we have a valid maxscore, extract all matches with this value
- bestmatches = [(obj, text) for score, obj, text in matches if maxscore == score != -1]
nmatches = len(bestmatches)
if not nmatches:
@@ -529,12 +472,11 @@
nmatches = 0
elif nmatches == 1:
# an exact match.
- obj = bestmatches[0][0]
- nmatches = 1
+ obj, match_str = bestmatches[0]
elif all(bestmatches[0][0].id == obj.id for obj, text in bestmatches):
# multi-match but all matches actually reference the same
# obj (could happen with clashing recogs + sdescs)
- obj = bestmatches[0][0]
+ obj, match_str = bestmatches[0]
nmatches = 1
else:
# multi-match.
@@ -542,7 +484,7 @@
inum = min(max(0, int(num_identifier) - 1), nmatches - 1) if num_identifier else None
if inum is not None:
# A valid inum is given. Use this to separate data.
- obj = bestmatches[inum][0]
+ obj, match_str = bestmatches[inum]
nmatches = 1
else:
# no identifier given - a real multimatch.
@@ -560,35 +502,32 @@
# case sensitive mode
# internal flags for the case used for the original /query
# - t for titled input (like /Name)
- # - ^ for all upercase input (likle /NAME)
+ # - ^ for all upercase input (like /NAME)
# - v for lower-case input (like /name)
# - ~ for mixed case input (like /nAmE)
- matchtext = marker_match.group()
- if not _RE_SELF_REF.match(matchtext):
- # self-refs are kept as-is, others are parsed by case
- matchtext = marker_match.group().lstrip(_PREFIX)
- if matchtext.istitle():
- case = "t"
- elif matchtext.isupper():
- case = "^"
- elif matchtext.islower():
- case = "v"
+ matchtext = marker_match.group().lstrip(_PREFIX)
+ if matchtext.istitle():
+ case = "t"
+ elif matchtext.isupper():
+ case = "^"
+ elif matchtext.islower():
+ case = "v"
- key = "#%i%s" % (obj.id, case)
- string = string[:istart0] + "{%s}" % key + string[istart + maxscore :]
+ key = f"#{obj.id}{case}"
+ # recombine emote with matched text replaced by ref
+ string = f"{head}{{{key}}}{tail}"
mapping[key] = obj
else:
# multimatch error
refname = marker_match.group()
reflist = [
- "%s%s%s (%s%s)"
- % (
- inum + 1,
- _NUM_SEP,
- _RE_PREFIX.sub("", refname),
- text,
- " (%s)" % sender.key if sender == ob else "",
+ "{num}{sep}{name} ({text}{key})".format(
+ num=inum + 1,
+ sep=_NUM_SEP,
+ name=_RE_PREFIX.sub("", refname),
+ text=text,
+ key=f" ({sender.key})" if sender == ob else "",
)
for inum, (ob, text) in enumerate(obj)
]
@@ -652,7 +591,7 @@
sender.msg(str(err))
return
- skey = "#%i" % sender.id
+ skey = f"#{sender.id}"
# we escape the object mappings since we'll do the language ones first
# (the text could have nested object mappings).
@@ -660,66 +599,45 @@
# if anonymous_add is passed as a kwarg, collect and remove it from kwargs
if "anonymous_add" in kwargs:
anonymous_add = kwargs.pop("anonymous_add")
- if anonymous_add and not any(1 for tag in obj_mapping if tag.startswith(skey)):
- # no self-reference in the emote - add to the end
- obj_mapping[skey] = sender
+ # make sure to catch all possible self-refs
+ self_refs = [f"{skey}{ref}" for ref in ("t", "^", "v", "~", "")]
+ if anonymous_add and not any(1 for tag in obj_mapping if tag in self_refs):
+ # no self-reference in the emote - add it
if anonymous_add == "first":
- possessive = "" if emote.startswith("'") else " "
- emote = "%s%s%s" % ("{{%s}}" % skey, possessive, emote)
+ # add case flag for initial caps
+ skey += "t"
+ # don't put a space after the self-ref if it's a possessive emote
+ femote = "{key}{emote}" if emote.startswith("'") else "{key} {emote}"
else:
- emote = "%s [%s]" % (emote, "{{%s}}" % skey)
+ # add it to the end
+ femote = "{emote} [{key}]"
+ emote = femote.format(key="{{" + skey + "}}", emote=emote)
+ obj_mapping[skey] = sender
# broadcast emote to everyone
for receiver in receivers:
# first handle the language mapping, which always produce different keys ##nn
- receiver_lang_mapping = {}
- try:
- process_language = receiver.process_language
- except AttributeError:
- process_language = _dummy_process
- for key, (langname, saytext) in language_mapping.items():
- # color says
- receiver_lang_mapping[key] = process_language(saytext, sender, langname)
+ if hasattr(receiver, "process_language") and callable(receiver.process_language):
+ receiver_lang_mapping = {
+ key: receiver.process_language(saytext, sender, langname)
+ for key, (langname, saytext) in language_mapping.items()
+ }
+ else:
+ receiver_lang_mapping = {
+ key: saytext for key, (langname, saytext) in language_mapping.items()
+ }
# map the language {##num} markers. This will convert the escaped sdesc markers on
# the form {{#num}} to {#num} markers ready to sdesc-map in the next step.
sendemote = emote.format(**receiver_lang_mapping)
- # handle sdesc mappings. we make a temporary copy that we can modify
- try:
- process_sdesc = receiver.process_sdesc
- except AttributeError:
- process_sdesc = _dummy_process
-
- try:
- process_recog = receiver.process_recog
- except AttributeError:
- process_recog = _dummy_process
-
- try:
- recog_get = receiver.recog.get
- receiver_sdesc_mapping = dict(
- (ref, process_recog(recog_get(obj), obj, ref=ref, **kwargs))
- for ref, obj in obj_mapping.items()
- )
- except AttributeError:
- receiver_sdesc_mapping = dict(
- (
- ref,
- process_sdesc(obj.sdesc.get(), obj, ref=ref)
- if hasattr(obj, "sdesc")
- else process_sdesc(obj.key, obj, ref=ref),
- )
- for ref, obj in obj_mapping.items()
- )
- # make sure receiver always sees their real name
- rkey_start = "#%i" % receiver.id
- rkey_keep_case = rkey_start + "~" # signifies keeping the case
- for rkey in (key for key in receiver_sdesc_mapping if key.startswith(rkey_start)):
- # we could have #%i^, #%it etc depending on input case - we want the
- # self-reference to retain case.
- receiver_sdesc_mapping[rkey] = process_sdesc(
- receiver.key, receiver, ref=rkey_keep_case, **kwargs
+ # map the ref keys to sdescs
+ receiver_sdesc_mapping = dict(
+ (
+ ref,
+ obj.get_display_name(receiver, ref=ref, noid=True),
)
+ for ref, obj in obj_mapping.items()
+ )
# do the template replacement of the sdesc/recog {#num} markers
receiver.msg(sendemote.format(**receiver_sdesc_mapping), from_obj=sender, **kwargs)
@@ -754,17 +672,13 @@
"""
self.obj = obj
self.sdesc = ""
- self.sdesc_regex = ""
self._cache()
def _cache(self):
"""
Cache data from storage
-
"""
- self.sdesc = self.obj.attributes.get("_sdesc", default="")
- sdesc_regex = self.obj.attributes.get("_sdesc_regex", default="")
- self.sdesc_regex = re.compile(sdesc_regex, _RE_FLAGS)
+ self.sdesc = self.obj.attributes.get("_sdesc", default=self.obj.key)
[docs] def add(self, sdesc, max_length=60):
"""
@@ -800,17 +714,15 @@
if len(cleaned_sdesc) > max_length:
raise SdescError(
- "Short desc can max be %i chars long (was %i chars)."
- % (max_length, len(cleaned_sdesc))
+ "Short desc can max be {} chars long (was {} chars).".format(
+ max_length, len(cleaned_sdesc)
+ )
)
# store to attributes
- sdesc_regex = ordered_permutation_regex(cleaned_sdesc)
self.obj.attributes.add("_sdesc", sdesc)
- self.obj.attributes.add("_sdesc_regex", sdesc_regex)
# local caching
self.sdesc = sdesc
- self.sdesc_regex = re.compile(sdesc_regex, _RE_FLAGS)
return sdesc
@@ -820,17 +732,7 @@
be empty, but if it is we must fall back to the key.
"""
- return self.sdesc or self.obj.key
-
-[docs] def get_regex_tuple(self):
- """
- Return data for sdesc/recog handling
-
- Returns:
- tup (tuple): tuple (sdesc_regex, obj, sdesc)
-
- """
- return self.sdesc_regex, self.obj, self.sdesc
+ return self.sdesc or self.obj.key
[docs]class RecogHandler:
@@ -843,7 +745,6 @@
_recog_ref2recog
_recog_obj2recog
- _recog_obj2regex
"""
@@ -858,7 +759,6 @@
self.obj = obj
# mappings
self.ref2recog = {}
- self.obj2regex = {}
self.obj2recog = {}
self._cache()
@@ -867,11 +767,7 @@
Load data to handler cache
"""
self.ref2recog = self.obj.attributes.get("_recog_ref2recog", default={})
- obj2regex = self.obj.attributes.get("_recog_obj2regex", default={})
obj2recog = self.obj.attributes.get("_recog_obj2recog", default={})
- self.obj2regex = dict(
- (obj, re.compile(regex, _RE_FLAGS)) for obj, regex in obj2regex.items() if obj
- )
self.obj2recog = dict((obj, recog) for obj, recog in obj2recog.items() if obj)
[docs] def add(self, obj, recog, max_length=60):
@@ -914,31 +810,29 @@
if len(cleaned_recog) > max_length:
raise RecogError(
- "Recog string cannot be longer than %i chars (was %i chars)"
- % (max_length, len(cleaned_recog))
+ "Recog string cannot be longer than {} chars (was {} chars)".format(
+ max_length, len(cleaned_recog)
+ )
)
# mapping #dbref:obj
- key = "#%i" % obj.id
+ key = f"#{obj.id}"
self.obj.attributes.get("_recog_ref2recog", default={})[key] = recog
self.obj.attributes.get("_recog_obj2recog", default={})[obj] = recog
- regex = ordered_permutation_regex(cleaned_recog)
- self.obj.attributes.get("_recog_obj2regex", default={})[obj] = regex
# local caching
self.ref2recog[key] = recog
self.obj2recog[obj] = recog
- self.obj2regex[obj] = re.compile(regex, _RE_FLAGS)
return recog
[docs] def get(self, obj):
"""
- Get recog replacement string, if one exists, otherwise
- get sdesc and as a last resort, the object's key.
+ Get recog replacement string, if one exists.
Args:
obj (Object): The object, whose sdesc to replace
Returns:
- recog (str): The replacement string to use.
+ recog (str or None): The replacement string to use, or
+ None if there is no recog for this object.
Notes:
This method will respect a "enable_recog" lock set on
@@ -949,10 +843,10 @@
# check an eventual recog_masked lock on the object
# to avoid revealing masked characters. If lock
# does not exist, pass automatically.
- return self.obj2recog.get(obj, obj.sdesc.get() if hasattr(obj, "sdesc") else obj.key)
+ return self.obj2recog.get(obj, None)
else:
- # recog_mask log not passed, disable recog
- return obj.sdesc.get() if hasattr(obj, "sdesc") else obj.key
+ # recog_mask lock not passed, disable recog
+ return None
[docs] def all(self):
"""
@@ -973,18 +867,8 @@
"""
if obj in self.obj2recog:
del self.obj.db._recog_obj2recog[obj]
- del self.obj.db._recog_obj2regex[obj]
- del self.obj.db._recog_ref2recog["#%i" % obj.id]
- self._cache()
-
-[docs] def get_regex_tuple(self, obj):
- """
- Returns:
- rec (tuple): Tuple (recog_regex, obj, recog)
- """
- if obj in self.obj2recog and obj.access(self.obj, "enable_recog", default=True):
- return self.obj2regex[obj], obj, self.obj2regex[obj]
- return None
+ del self.obj.db._recog_ref2recog[f"#{obj.id}"]
+ self._cache()
# ------------------------------------------------------------
@@ -1035,8 +919,8 @@
# we also include ourselves here.
emote = self.args
targets = self.caller.location.contents
- if not emote.endswith((".", "?", "!")): # If emote is not punctuated,
- emote = "%s." % emote # add a full-stop for good measure.
+ if not emote.endswith((".", "?", "!", '"')): # If emote is not punctuated or speech,
+ emote += "." # add a full-stop for good measure.
send_emote(self.caller, targets, emote, anonymous_add="first")
@@ -1066,7 +950,6 @@
# calling the speech modifying hook
speech = caller.at_pre_say(self.args)
- # preparing the speech with sdesc/speech parsing.
targets = self.caller.location.contents
send_emote(self.caller, targets, speech, anonymous_add=None)
@@ -1102,7 +985,7 @@
except AttributeError:
caller.msg(f"Cannot set sdesc on {caller.key}.")
return
- caller.msg("%s's sdesc was set to '%s'." % (caller.key, sdesc))
+ caller.msg(f"{caller.key}'s sdesc was set to '{sdesc}'.")
[docs]class CmdPose(RPCommand): # set current pose and default pose
@@ -1162,8 +1045,8 @@
caller.msg("Usage: pose <pose-text> OR pose obj = <pose-text>")
return
- if not pose.endswith("."):
- pose = "%s." % pose
+ if not pose.endswith((".", "?", "!", '"')):
+ pose += "."
if target:
# affect something else
target = caller.search(target)
@@ -1175,18 +1058,18 @@
else:
target = caller
+ target_name = target.sdesc.get() if hasattr(target, "sdesc") else target.key
if not target.attributes.has("pose"):
- caller.msg("%s cannot be posed." % target.key)
+ caller.msg(f"{target_name} cannot be posed.")
return
- target_name = target.sdesc.get() if hasattr(target, "sdesc") else target.key
# set the pose
if self.reset:
pose = target.db.pose_default
target.db.pose = pose
elif self.default:
target.db.pose_default = pose
- caller.msg("Default pose is now '%s %s'." % (target_name, pose))
+ caller.msg(f"Default pose is now '{target_name} {pose}'.")
return
else:
# set the pose. We do one-time ref->sdesc mapping here.
@@ -1198,12 +1081,12 @@
pose = parsed.format(**mapping)
if len(target_name) + len(pose) > 60:
- caller.msg("Your pose '%s' is too long." % pose)
+ caller.msg(f"'{pose}' is too long.")
return
target.db.pose = pose
- caller.msg("Pose will read '%s %s'." % (target_name, pose))
+ caller.msg(f"Pose will read '{target_name} {pose}'.")
[docs]class CmdRecog(RPCommand): # assign personal alias to object in room
@@ -1282,12 +1165,12 @@
caller.msg(_EMOTE_NOMATCH_ERROR.format(ref=sdesc))
elif nmatches > 1:
reflist = [
- "{}{}{} ({}{})".format(
- inum + 1,
- _NUM_SEP,
- _RE_PREFIX.sub("", sdesc),
- caller.recog.get(obj),
- " (%s)" % caller.key if caller == obj else "",
+ "{num}{sep}{sdesc} ({recog}{key})".format(
+ num=inum + 1,
+ sep=_NUM_SEP,
+ sdesc=_RE_PREFIX.sub("", sdesc),
+ recog=caller.recog.get(obj) or "no recog",
+ key=f" ({caller.key})" if caller == obj else "",
)
for inum, obj in enumerate(matches)
]
@@ -1303,7 +1186,11 @@
if forget_mode:
# remove existing recog
caller.recog.remove(obj)
- caller.msg("%s will now know them only as '%s'." % (caller.key, obj.recog.get(obj)))
+ caller.msg(
+ "You will now know them only as '{}'.".format(
+ obj.get_display_name(caller, noid=True)
+ )
+ )
else:
# set recog
sdesc = obj.sdesc.get() if hasattr(obj, "sdesc") else obj.key
@@ -1312,7 +1199,7 @@
except RecogError as err:
caller.msg(err)
return
- caller.msg("%s will now remember |w%s|n as |w%s|n." % (caller.key, sdesc, alias))
+ caller.msg("You will now remember |w{}|n as |w{}|n.".format(sdesc, alias))
[docs]class CmdMask(RPCommand):
@@ -1343,14 +1230,14 @@
caller.msg("You are already wearing a mask.")
return
sdesc = _RE_CHAREND.sub("", self.args)
- sdesc = "%s |H[masked]|n" % sdesc
+ sdesc = f"{sdesc} |H[masked]|n"
if len(sdesc) > 60:
caller.msg("Your masked sdesc is too long.")
return
caller.db.unmasked_sdesc = caller.sdesc.get()
caller.locks.add("enable_recog:false()")
caller.sdesc.add(sdesc)
- caller.msg("You wear a mask as '%s'." % sdesc)
+ caller.msg(f"You wear a mask as '{sdesc}'.")
else:
# unmask
old_sdesc = caller.db.unmasked_sdesc
@@ -1360,7 +1247,7 @@
del caller.db.unmasked_sdesc
caller.locks.remove("enable_recog")
caller.sdesc.add(old_sdesc)
- caller.msg("You remove your mask and are again '%s'." % old_sdesc)
+ caller.msg(f"You remove your mask and are again '{old_sdesc}'.")
[docs]class RPSystemCmdSet(CmdSet):
@@ -1388,6 +1275,10 @@
rp-heavy game. It implements the base functionality for poses.
"""
+
+
[docs] def at_object_creation(self):
"""
Called at initial creation.
@@ -1396,7 +1287,11 @@
# emoting/recog data
self.db.pose = ""
- self.db.pose_default = "is here."
+ self.db.pose_default = "is here."
+
+ # initializing sdesc
+ self.db._sdesc = ""
+ self.sdesc.add("Something")
+[docs] def get_posed_sdesc(self, sdesc, **kwargs):
+ """
+ Displays the object with its current pose string.
+
+ Returns:
+ pose (str): A string containing the object's sdesc and
+ current or default pose.
+ """
+
+ # get the current pose, or default if no pose is set
+ pose = self.db.pose or self.db.pose_default
+
+ # return formatted string, or sdesc as fallback
+ return f"{sdesc} {pose}" if pose else sdesc
+
[docs] def get_display_name(self, looker, **kwargs):
"""
Displays the name of the object in a viewer-aware manner.
@@ -1580,28 +1490,40 @@
Keyword Args:
pose (bool): Include the pose (if available) in the return.
+ ref (str): The reference marker found in string to replace.
+ This is on the form #{num}{case}, like '#12^', where
+ the number is a processing location in the string and the
+ case symbol indicates the case of the original tag input
+ - `t` - input was Titled, like /Tall
+ - `^` - input was all uppercase, like /TALL
+ - `v` - input was all lowercase, like /tall
+ - `~` - input case should be kept, or was mixed-case
+ noid (bool): Don't show DBREF even if viewer has control access.
Returns:
name (str): A string of the sdesc containing the name of the object,
- if this is defined.
- including the DBREF if this user is privileged to control
- said object.
-
- Notes:
- The RPObject version doesn't add color to its display.
+ if this is defined. By default, included the DBREF if this user
+ is privileged to control said object.
"""
- idstr = "(#%s)" % self.id if self.access(looker, access_type="control") else ""
+ ref = kwargs.get("ref", "~")
+
if looker == self:
+ # always show your own key
sdesc = self.key
else:
try:
- recog = looker.recog.get(self)
+ # get the sdesc looker should see
+ sdesc = looker.get_sdesc(self, ref=ref)
except AttributeError:
- recog = None
- sdesc = recog or (hasattr(self, "sdesc") and self.sdesc.get()) or self.key
- pose = " %s" % (self.db.pose or "") if kwargs.get("pose", False) else ""
- return "%s%s%s" % (sdesc, idstr, pose)
+ # use own sdesc as a fallback
+ sdesc = self.sdesc.get()
+
+ # add dbref is looker has control access and `noid` is not set
+ if self.access(looker, access_type="control") and not kwargs.get("noid", False):
+ sdesc = f"{sdesc}(#{self.id})"
+
+ return self.get_posed_sdesc(sdesc) if kwargs.get("pose", False) else sdesc
[docs] def return_appearance(self, looker):
"""
@@ -1610,6 +1532,10 @@
Args:
looker (Object): Object doing the looking.
+
+ Returns:
+ string (str): A string containing the name, appearance and contents
+ of the object.
"""
if not looker:
return ""
@@ -1633,6 +1559,7 @@
string += "\n|wExits:|n " + ", ".join(exits)
if users or things:
string += "\n " + "\n ".join(users + things)
+
return string
@@ -1649,11 +1576,6 @@
This is a character class that has poses, sdesc and recog.
"""
- # Handlers
-
-
@@ -1668,29 +1590,44 @@
Keyword Args:
pose (bool): Include the pose (if available) in the return.
+ ref (str): The reference marker found in string to replace.
+ This is on the form #{num}{case}, like '#12^', where
+ the number is a processing location in the string and the
+ case symbol indicates the case of the original tag input
+ - `t` - input was Titled, like /Tall
+ - `^` - input was all uppercase, like /TALL
+ - `v` - input was all lowercase, like /tall
+ - `~` - input case should be kept, or was mixed-case
+ noid (bool): Don't show DBREF even if viewer has control access.
Returns:
name (str): A string of the sdesc containing the name of the object,
- if this is defined.
- including the DBREF if this user is privileged to control
- said object.
+ if this is defined. By default, included the DBREF if this user
+ is privileged to control said object.
Notes:
- The RPCharacter version of this method colors its display to make
+ The RPCharacter version adds additional processing to sdescs to make
characters stand out from other objects.
"""
- idstr = "(#%s)" % self.id if self.access(looker, access_type="control") else ""
+ ref = kwargs.get("ref", "~")
+
if looker == self:
- sdesc = self.key
+ # process your key as recog since you recognize yourself
+ sdesc = self.process_recog(self.key, self)
else:
try:
- recog = looker.recog.get(self)
+ # get the sdesc looker should see, with formatting
+ sdesc = looker.get_sdesc(self, process=True, ref=ref)
except AttributeError:
- recog = None
- sdesc = recog or (hasattr(self, "sdesc") and self.sdesc.get()) or self.key
- pose = " %s" % (self.db.pose or "is here.") if kwargs.get("pose", False) else ""
- return "|c%s|n%s%s" % (sdesc, idstr, pose)
+ # use own sdesc as a fallback
+ sdesc = self.sdesc.get()
+
+ # add dbref is looker has control access and `noid` is not set
+ if self.access(looker, access_type="control") and not kwargs.get("noid", False):
+ sdesc = f"{sdesc}(#{self.id})"
+
+ return self.get_posed_sdesc(sdesc) if kwargs.get("pose", False) else sdesc
[docs] def at_object_creation(self):
"""
@@ -1699,10 +1636,8 @@
super().at_object_creation()
self.db._sdesc = ""
- self.db._sdesc_regex = ""
self.db._recog_ref2recog = {}
- self.db._recog_obj2regex = {}
self.db._recog_obj2recog = {}
self.cmdset.add(RPSystemCmdSet, persistent=True)
@@ -1720,8 +1655,37 @@
"""
if kwargs.get("whisper"):
- return f'/me whispers "{message}"'
- return f'/me says, "{message}"'
+ return f'/Me whispers "{message}"'
+ return f'/Me says, "{message}"'
+
+[docs] def get_sdesc(self, obj, process=False, **kwargs):
+ """
+ Single method to handle getting recogs with sdesc fallback in an
+ aware manner, to allow separate processing of recogs from sdescs.
+ Gets the sdesc or recog for obj from the view of self.
+
+ Args:
+ obj (Object): the object whose sdesc or recog is being gotten
+ Keyword Args:
+ process (bool): If True, the sdesc/recog is run through the
+ appropriate process method for self - .process_sdesc or
+ .process_recog
+ """
+ # always see own key
+ if obj == self:
+ recog = self.key
+ sdesc = self.key
+ else:
+ # first check if we have a recog for this object
+ recog = self.recog.get(obj)
+ # set sdesc to recog, using sdesc as a fallback, or the object's key if no sdesc
+ sdesc = recog or (hasattr(obj, "sdesc") and obj.sdesc.get()) or obj.key
+
+ if process:
+ # process the sdesc as a recog if a recog was found, else as an sdesc
+ sdesc = (self.process_recog if recog else self.process_sdesc)(sdesc, obj, **kwargs)
+
+ return sdesc
[docs] def process_sdesc(self, sdesc, obj, **kwargs):
"""
@@ -1762,7 +1726,7 @@
sdesc = sdesc.upper()
elif "v" in ref:
sdesc = sdesc.lower()
- return "|b%s|n" % sdesc
+ return f"|b{sdesc}|n"
[docs] def process_recog(self, recog, obj, **kwargs):
"""
@@ -1773,14 +1737,15 @@
translated from the original sdesc at this point.
obj (Object): The object the recog:ed string belongs to.
This is not used by default.
- Kwargs:
- ref (str): See process_sdesc.
Returns:
recog (str): The modified recog string.
"""
- return self.process_sdesc(recog, obj, **kwargs)
+ if not recog:
+ return ""
+
+ return f"|m{recog}|n"
[docs] def process_language(self, text, speaker, language, **kwargs):
"""
@@ -1803,7 +1768,7 @@
the evennia.contrib.rpg.rplanguage module.
"""
- return "%s|w%s|n" % ("|W(%s)" % language if language else "", text)
+ return "{label}|w{text}|n".format(label=f"|W({language})" if language else "", text=text)
diff --git a/docs/1.0-dev/_modules/evennia/contrib/rpg/rpsystem/tests.html b/docs/1.0-dev/_modules/evennia/contrib/rpg/rpsystem/tests.html
index cacc7fa51a..bbc46e7f77 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/rpg/rpsystem/tests.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/rpg/rpsystem/tests.html
@@ -138,7 +138,7 @@
recog02 = "Mr Receiver2"
recog10 = "Mr Sender"
emote = 'With a flair, /me looks at /first and /colliding sdesc-guy. She says "This is a test."'
-case_emote = "/me looks at /first, then /FIRST, /First and /Colliding twice."
+case_emote = "/Me looks at /first. Then, /me looks at /FIRST, /First and /Colliding twice."
[docs]class TestRPSystem(BaseEvenniaTest):
@@ -155,41 +155,11 @@
rpsystem.ContribRPCharacter, key="Receiver2", location=self.room
)
-[docs] def test_ordered_permutation_regex(self):
- self.assertEqual(
- rpsystem.ordered_permutation_regex(sdesc0),
- "/[0-9]*-*A\\ nice\\ sender\\ of\\ emotes(?=\\W|$)+|"
- "/[0-9]*-*nice\\ sender\\ of\\ emotes(?=\\W|$)+|"
- "/[0-9]*-*A\\ nice\\ sender\\ of(?=\\W|$)+|"
- "/[0-9]*-*sender\\ of\\ emotes(?=\\W|$)+|"
- "/[0-9]*-*nice\\ sender\\ of(?=\\W|$)+|"
- "/[0-9]*-*A\\ nice\\ sender(?=\\W|$)+|"
- "/[0-9]*-*nice\\ sender(?=\\W|$)+|"
- "/[0-9]*-*of\\ emotes(?=\\W|$)+|"
- "/[0-9]*-*sender\\ of(?=\\W|$)+|"
- "/[0-9]*-*A\\ nice(?=\\W|$)+|"
- "/[0-9]*-*emotes(?=\\W|$)+|"
- "/[0-9]*-*sender(?=\\W|$)+|"
- "/[0-9]*-*nice(?=\\W|$)+|"
- "/[0-9]*-*of(?=\\W|$)+|"
- "/[0-9]*-*A(?=\\W|$)+",
- )
-
[docs] def test_sdesc_handler(self):
self.speaker.sdesc.add(sdesc0)
self.assertEqual(self.speaker.sdesc.get(), sdesc0)
self.speaker.sdesc.add("This is {#324} ignored")
- self.assertEqual(self.speaker.sdesc.get(), "This is 324 ignored")
- self.speaker.sdesc.add("Testing three words")
- self.assertEqual(
- self.speaker.sdesc.get_regex_tuple()[0].pattern,
- "/[0-9]*-*Testing\ three\ words(?=\W|$)+|"
- "/[0-9]*-*Testing\ three(?=\W|$)+|"
- "/[0-9]*-*three\ words(?=\W|$)+|"
- "/[0-9]*-*Testing(?=\W|$)+|"
- "/[0-9]*-*three(?=\W|$)+|"
- "/[0-9]*-*words(?=\W|$)+",
- )
+ self.assertEqual(self.speaker.sdesc.get(), "This is 324 ignored")
[docs] def test_recog_handler(self):
self.speaker.sdesc.add(sdesc0)
@@ -198,12 +168,8 @@
self.speaker.recog.add(self.receiver2, recog02)
self.assertEqual(self.speaker.recog.get(self.receiver1), recog01)
self.assertEqual(self.speaker.recog.get(self.receiver2), recog02)
- self.assertEqual(
- self.speaker.recog.get_regex_tuple(self.receiver1)[0].pattern,
- "/[0-9]*-*Mr\\ Receiver(?=\\W|$)+|/[0-9]*-*Receiver(?=\\W|$)+|/[0-9]*-*Mr(?=\\W|$)+",
- )
self.speaker.recog.remove(self.receiver1)
- self.assertEqual(self.speaker.recog.get(self.receiver1), sdesc1)
+ self.assertEqual(self.speaker.recog.get(self.receiver1), None)
self.assertEqual(self.speaker.recog.all(), {"Mr Receiver2": self.receiver2})
@@ -240,6 +206,26 @@
result,
)
+[docs] def test_get_sdesc(self):
+ looker = self.speaker # Sender
+ target = self.receiver1 # Receiver1
+ looker.sdesc.add(sdesc0) # A nice sender of emotes
+ target.sdesc.add(sdesc1) # The first receiver of emotes.
+
+ # sdesc with no processing
+ self.assertEqual(looker.get_sdesc(target), "The first receiver of emotes.")
+ # sdesc with processing
+ self.assertEqual(
+ looker.get_sdesc(target, process=True), "|bThe first receiver of emotes.|n"
+ )
+
+ looker.recog.add(target, recog01) # Mr Receiver
+
+ # recog with no processing
+ self.assertEqual(looker.get_sdesc(target), "Mr Receiver")
+ # recog with processing
+ self.assertEqual(looker.get_sdesc(target, process=True), "|mMr Receiver|n")
+
[docs] def test_send_emote(self):
speaker = self.speaker
receiver1 = self.receiver1
@@ -254,18 +240,18 @@
rpsystem.send_emote(speaker, receivers, emote, case_sensitive=False)
self.assertEqual(
self.out0,
- "With a flair, |bSender|n looks at |bThe first receiver of emotes.|n "
+ "With a flair, |mSender|n looks at |bThe first receiver of emotes.|n "
'and |bAnother nice colliding sdesc-guy for tests|n. She says |w"This is a test."|n',
)
self.assertEqual(
self.out1,
- "With a flair, |bA nice sender of emotes|n looks at |bReceiver1|n and "
+ "With a flair, |bA nice sender of emotes|n looks at |mReceiver1|n and "
'|bAnother nice colliding sdesc-guy for tests|n. She says |w"This is a test."|n',
)
self.assertEqual(
self.out2,
"With a flair, |bA nice sender of emotes|n looks at |bThe first "
- 'receiver of emotes.|n and |bReceiver2|n. She says |w"This is a test."|n',
+ 'receiver of emotes.|n and |mReceiver2|n. She says |w"This is a test."|n',
)
[docs] def test_send_case_sensitive_emote(self):
@@ -283,20 +269,21 @@
rpsystem.send_emote(speaker, receivers, case_emote)
self.assertEqual(
self.out0,
- "|bSender|n looks at |bthe first receiver of emotes.|n, then "
- "|bTHE FIRST RECEIVER OF EMOTES.|n, |bThe first receiver of emotes.|n and "
- "|bAnother nice colliding sdesc-guy for tests|n twice.",
+ "|mSender|n looks at |bthe first receiver of emotes.|n. Then, |mSender|n "
+ "looks at |bTHE FIRST RECEIVER OF EMOTES.|n, |bThe first receiver of emotes.|n "
+ "and |bAnother nice colliding sdesc-guy for tests|n twice.",
)
self.assertEqual(
self.out1,
- "|bA nice sender of emotes|n looks at |bReceiver1|n, then |bReceiver1|n, "
- "|bReceiver1|n and |bAnother nice colliding sdesc-guy for tests|n twice.",
+ "|bA nice sender of emotes|n looks at |mReceiver1|n. Then, "
+ "|ba nice sender of emotes|n looks at |mReceiver1|n, |mReceiver1|n "
+ "and |bAnother nice colliding sdesc-guy for tests|n twice.",
)
self.assertEqual(
self.out2,
- "|bA nice sender of emotes|n looks at |bthe first receiver of emotes.|n, "
- "then |bTHE FIRST RECEIVER OF EMOTES.|n, |bThe first receiver of "
- "emotes.|n and |bReceiver2|n twice.",
+ "|bA nice sender of emotes|n looks at |bthe first receiver of emotes.|n. "
+ "Then, |ba nice sender of emotes|n looks at |bTHE FIRST RECEIVER OF EMOTES.|n, "
+ "|bThe first receiver of emotes.|n and |mReceiver2|n twice.",
)
[docs] def test_rpsearch(self):
@@ -305,19 +292,7 @@
self.receiver2.sdesc.add(sdesc2)
self.speaker.msg = lambda text, **kwargs: setattr(self, "out0", text)
self.assertEqual(self.speaker.search("receiver of emotes"), self.receiver1)
- self.assertEqual(self.speaker.search("colliding"), self.receiver2)
-
-[docs] def test_regex_tuple_from_key_alias(self):
- self.speaker.aliases.add("foo bar")
- self.speaker.aliases.add("this thing is a long thing")
- t0 = time.time()
- result = rpsystem.regex_tuple_from_key_alias(self.speaker)
- t1 = time.time()
- result = rpsystem.regex_tuple_from_key_alias(self.speaker)
- t2 = time.time()
- # print(f"t1: {t1 - t0}, t2: {t2 - t1}")
- self.assertLess(t2 - t1, 10**-4)
- self.assertEqual(result, (Anything, self.speaker, self.speaker.key))
+ self.assertEqual(self.speaker.search("colliding"), self.receiver2)
[docs]class TestRPSystemCommands(BaseEvenniaCommandTest):
@@ -347,7 +322,7 @@
self.call(
rpsystem.CmdRecog(),
"barfoo as friend",
- "Char will now remember BarFoo Character as friend.",
+ "You will now remember BarFoo Character as friend.",
)
self.call(
rpsystem.CmdRecog(),
@@ -358,7 +333,7 @@
self.call(
rpsystem.CmdRecog(),
"friend",
- "Char will now know them only as 'BarFoo Character'",
+ "You will now know them only as 'BarFoo Character'",
cmdstring="forget",
)
diff --git a/docs/1.0-dev/_modules/evennia/contrib/rpg/traits/tests.html b/docs/1.0-dev/_modules/evennia/contrib/rpg/traits/tests.html
index 3c51abf06d..2b7e7b0367 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/rpg/traits/tests.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/rpg/traits/tests.html
@@ -363,7 +363,6 @@
self.trait.mult = 0.75
self.assertEqual(self._get_values(), (5, 1, 0.75, 4.5))
-
[docs] def test_delete(self):
"""Deleting resets to default."""
self.trait.mult = 2.0
@@ -404,7 +403,14 @@
def _get_values(self):
"""Get (base, mod, mult, value, min, max)."""
- return (self.trait.base, self.trait.mod, self.trait.mult, self.trait.value, self.trait.min, self.trait.max)
+ return (
+ self.trait.base,
+ self.trait.mod,
+ self.trait.mult,
+ self.trait.value,
+ self.trait.min,
+ self.trait.max,
+ )
[docs] def test_init(self):
self.assertEqual(
@@ -676,7 +682,14 @@
def _get_values(self):
"""Get (base, mod, mult, value, min, max)."""
- return (self.trait.base, self.trait.mod, self.trait.mult, self.trait.value, self.trait.min, self.trait.max)
+ return (
+ self.trait.base,
+ self.trait.mod,
+ self.trait.mult,
+ self.trait.value,
+ self.trait.min,
+ self.trait.max,
+ )
[docs] def test_init(self):
self.assertEqual(
diff --git a/docs/1.0-dev/_modules/evennia/contrib/rpg/traits/traits.html b/docs/1.0-dev/_modules/evennia/contrib/rpg/traits/traits.html
index 8b86675247..e13fb360ca 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/rpg/traits/traits.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/rpg/traits/traits.html
@@ -1190,7 +1190,7 @@
[docs]class StaticTrait(Trait):
"""
- Static Trait. This is a single value with a modifier,
+ Static Trait. This is a single value with a modifier,
multiplier, and no concept of a 'current' value or min/max etc.
value = (base + mod) * mult
@@ -1203,7 +1203,9 @@
def __str__(self):
status = "{value:11}".format(value=self.value)
- return "{name:12} {status} ({mod:+3}) (* {mult:.2f})".format(name=self.name, status=status, mod=self.mod, mult=self.mult)
+ return "{name:12} {status} ({mod:+3}) (* {mult:.2f})".format(
+ name=self.name, status=status, mod=self.mod, mult=self.mult
+ )
# Helpers
@property
@@ -1231,7 +1233,7 @@
def mult(self):
"""The trait's multiplier."""
return self._data["mult"]
-
+
@mult.setter
def mult(self, amount):
if type(amount) in (int, float):
@@ -1364,16 +1366,16 @@
now = time()
tdiff = now - self._data["last_update"]
current += rate * tdiff
- value = (current + self.mod)
+ value = current + self.mod
# we must make sure so we don't overstep our bounds
# even if .mod is included
if self._passed_ratetarget(value):
- current = (self._data["ratetarget"] - self.mod)
+ current = self._data["ratetarget"] - self.mod
self._stop_timer()
elif not self._within_boundaries(value):
- current = (self._enforce_boundaries(value) - self.mod)
+ current = self._enforce_boundaries(value) - self.mod
self._stop_timer()
else:
self._data["last_update"] = now
@@ -1420,7 +1422,7 @@
@property
def mult(self):
return self._data["mult"]
-
+
@mult.setter
def mult(self, amount):
if type(amount) in (int, float):
@@ -1613,7 +1615,9 @@
def __str__(self):
status = "{value:4} / {base:4}".format(value=self.value, base=self.base)
- return "{name:12} {status} ({mod:+3}) (* {mult:.2f})".format(name=self.name, status=status, mod=self.mod, mult=self.mult)
+ return "{name:12} {status} ({mod:+3}) (* {mult:.2f})".format(
+ name=self.name, status=status, mod=self.mod, mult=self.mult
+ )
@property
def base(self):
@@ -1638,11 +1642,11 @@
if value + self.base < self.min:
value = self.min - self.base
self._data["mod"] = value
-
+
@property
def mult(self):
return self._data["mult"]
-
+
@mult.setter
def mult(self, amount):
if type(amount) in (int, float):
@@ -1663,7 +1667,7 @@
if value is None:
self._data["min"] = self.default_keys["min"]
elif type(value) in (int, float):
- self._data["min"] = min(value, (self.base + self.mod) * self.mult)
+ self._data["min"] = min(value, (self.base + self.mod) * self.mult)
@property
def max(self):
@@ -1686,7 +1690,7 @@
def current(self):
"""The `current` value of the gauge."""
return self._update_current(
- self._enforce_boundaries(self._data.get("current", (self.base + self.mod) * self.mult))
+ self._enforce_boundaries(self._data.get("current", (self.base + self.mod) * self.mult))
)
@current.setter
@@ -1697,7 +1701,7 @@
@current.deleter
def current(self):
"Resets current back to 'full'"
- self._data["current"] = (self.base + self.mod) * self.mult
+ self._data["current"] = (self.base + self.mod) * self.mult
@property
def value(self):
diff --git a/docs/1.0-dev/_modules/evennia/help/utils.html b/docs/1.0-dev/_modules/evennia/help/utils.html
index 0b0c29a830..f26a9d3bd5 100644
--- a/docs/1.0-dev/_modules/evennia/help/utils.html
+++ b/docs/1.0-dev/_modules/evennia/help/utils.html
@@ -54,9 +54,13 @@
# since we use them (e.g. as command names).
# Lunr's default ignore-word list is found here:
# https://github.com/yeraydiazdiaz/lunr.py/blob/master/lunr/stop_word_filter.py
-_LUNR_STOP_WORD_FILTER_EXCEPTIONS = (
- ["about", "might", "get", "who", "say"] + settings.LUNR_STOP_WORD_FILTER_EXCEPTIONS
-)
+_LUNR_STOP_WORD_FILTER_EXCEPTIONS = [
+ "about",
+ "might",
+ "get",
+ "who",
+ "say",
+] + settings.LUNR_STOP_WORD_FILTER_EXCEPTIONS
_LUNR = None
diff --git a/docs/1.0-dev/_modules/evennia/locks/lockfuncs.html b/docs/1.0-dev/_modules/evennia/locks/lockfuncs.html
index 7c0bb0cdcb..f277852814 100644
--- a/docs/1.0-dev/_modules/evennia/locks/lockfuncs.html
+++ b/docs/1.0-dev/_modules/evennia/locks/lockfuncs.html
@@ -515,6 +515,7 @@
category = args[1] if len(args) > 1 else None
return bool(accessing_obj.tags.get(tagkey, category=category))
+
[docs]def is_ooc(accessing_obj, accessed_obj, *args, **kwargs):
"""
Usage:
@@ -531,13 +532,14 @@
session = accessed_obj.session
except AttributeError:
session = account.sessions.get()[0] # note-this doesn't work well
- # for high multisession mode. We may need
- # to change to sessiondb to resolve this
+ # for high multisession mode. We may need
+ # to change to sessiondb to resolve this
try:
return not account.get_puppet(session)
except TypeError:
return not session.get_puppet()
+
[docs]def objtag(accessing_obj, accessed_obj, *args, **kwargs):
"""
Usage:
diff --git a/docs/1.0-dev/_modules/evennia/objects/objects.html b/docs/1.0-dev/_modules/evennia/objects/objects.html
index 96d5a87c31..eedba77b53 100644
--- a/docs/1.0-dev/_modules/evennia/objects/objects.html
+++ b/docs/1.0-dev/_modules/evennia/objects/objects.html
@@ -1270,6 +1270,8 @@
"""
self.basetype_setup()
self.at_object_creation()
+ # initialize Attribute/TagProperties
+ self.init_evennia_properties()
if hasattr(self, "_createdict"):
# this will only be set if the utils.create function
diff --git a/docs/1.0-dev/_modules/evennia/prototypes/prototypes.html b/docs/1.0-dev/_modules/evennia/prototypes/prototypes.html
index 7bef3134a8..982656c0a7 100644
--- a/docs/1.0-dev/_modules/evennia/prototypes/prototypes.html
+++ b/docs/1.0-dev/_modules/evennia/prototypes/prototypes.html
@@ -570,8 +570,10 @@
"""
# This will load the prototypes the first time they are searched
- if not _MODULE_PROTOTYPE_MODULES:
+ loaded = getattr(load_module_prototypes, "_LOADED", False)
+ if not loaded:
load_module_prototypes()
+ setattr(load_module_prototypes, "_LOADED", True)
# prototype keys are always in lowecase
if key:
diff --git a/docs/1.0-dev/_modules/evennia/scripts/scripts.html b/docs/1.0-dev/_modules/evennia/scripts/scripts.html
index 2340cccbef..33ae264520 100644
--- a/docs/1.0-dev/_modules/evennia/scripts/scripts.html
+++ b/docs/1.0-dev/_modules/evennia/scripts/scripts.html
@@ -442,7 +442,10 @@
overriding the call (unused by default).
"""
+ self.basetype_setup()
self.at_script_creation()
+ # initialize Attribute/TagProperties
+ self.init_evennia_properties()
if hasattr(self, "_createdict"):
# this will only be set if the utils.create_script
@@ -513,6 +516,14 @@
super().delete()
return True
+ def basetype_setup(self):
+ """
+ Changes fundamental aspects of the type. Usually changes are made in at_script creation
+ instead.
+
+ """
+ pass
+
def at_init(self):
"""
Called when the Script is cached in the idmapper. This is usually more reliable
diff --git a/docs/1.0-dev/_modules/evennia/scripts/tickerhandler.html b/docs/1.0-dev/_modules/evennia/scripts/tickerhandler.html
index 02ddca8451..c7a3ef89c3 100644
--- a/docs/1.0-dev/_modules/evennia/scripts/tickerhandler.html
+++ b/docs/1.0-dev/_modules/evennia/scripts/tickerhandler.html
@@ -627,9 +627,9 @@
self.ticker_pool.stop(interval)
if interval:
self.ticker_storage = dict(
- (store_key, store_key)
- for store_key in self.ticker_storage
- if store_key[1] != interval
+ (store_key, store_value)
+ for store_key, store_value in self.ticker_storage.items()
+ if store_key[3] != interval
)
else:
self.ticker_storage = {}
diff --git a/docs/1.0-dev/_modules/evennia/server/evennia_launcher.html b/docs/1.0-dev/_modules/evennia/server/evennia_launcher.html
index 784a9d944e..c87702d930 100644
--- a/docs/1.0-dev/_modules/evennia/server/evennia_launcher.html
+++ b/docs/1.0-dev/_modules/evennia/server/evennia_launcher.html
@@ -2358,9 +2358,11 @@
if option in ("makemessages", "compilemessages"):
# some commands don't require the presence of a game directory to work
need_gamedir = False
- if CURRENT_DIR != EVENNIA_LIB:
- print("You must stand in the evennia/evennia/ folder (where the 'locale/' "
- "folder is located) to run this command.")
+ if CURRENT_DIR != EVENNIA_LIB:
+ print(
+ "You must stand in the evennia/evennia/ folder (where the 'locale/' "
+ "folder is located) to run this command."
+ )
sys.exit()
if option in ("shell", "check", "makemigrations", "createsuperuser", "shell_plus"):
diff --git a/docs/1.0-dev/_modules/evennia/server/server.html b/docs/1.0-dev/_modules/evennia/server/server.html
index b3bab78363..aca0903c1a 100644
--- a/docs/1.0-dev/_modules/evennia/server/server.html
+++ b/docs/1.0-dev/_modules/evennia/server/server.html
@@ -465,6 +465,7 @@
logger.log_msg("Evennia Server successfully restarted in 'reset' mode.")
elif mode == "shutdown":
from evennia.objects.models import ObjectDB
+
self.at_server_cold_start()
# clear eventual lingering session storages
ObjectDB.objects.clear_all_sessids()
diff --git a/docs/1.0-dev/_modules/evennia/typeclasses/attributes.html b/docs/1.0-dev/_modules/evennia/typeclasses/attributes.html
index e4e8ac0eb8..fc72555848 100644
--- a/docs/1.0-dev/_modules/evennia/typeclasses/attributes.html
+++ b/docs/1.0-dev/_modules/evennia/typeclasses/attributes.html
@@ -218,7 +218,7 @@
attrhandler_name = "attributes"
-[docs] def __init__(self, default=None, category=None, strattr=False, lockstring="", autocreate=False):
+[docs] def __init__(self, default=None, category=None, strattr=False, lockstring="", autocreate=True):
"""
Initialize an Attribute as a property descriptor.
@@ -230,12 +230,12 @@
lockstring (str): This is not itself useful with the property, but only if
using the full AttributeHandler.get(accessing_obj=...) to access the
Attribute.
- autocreate (bool): If an un-found Attr should lead to auto-creating the
- Attribute (with the default value). If `False`, the property will
- return the default value until it has been explicitly set. This means
- less database accesses, but also means the property will have no
- corresponding Attribute if wanting to access it directly via the
- AttributeHandler (it will also not show up in `examine`).
+ autocreate (bool): True by default; this means Evennia makes sure to create a new
+ copy of the Attribute (with the default value) whenever a new object with this
+ property is created. If `False`, no Attribute will be created until the property
+ is explicitly assigned a value. This makes it more efficient while it retains
+ its default (there's no db access), but without an actual Attribute generated,
+ one cannot access it via .db, the AttributeHandler or see it with `examine`.
"""
self._default = default
@@ -260,12 +260,14 @@
"""
value = self._default
try:
- value = getattr(instance, self.attrhandler_name).get(
- key=self._key,
- default=self._default,
- category=self._category,
- strattr=self._strattr,
- raise_exception=self._autocreate,
+ value = self.at_get(
+ getattr(instance, self.attrhandler_name).get(
+ key=self._key,
+ default=self._default,
+ category=self._category,
+ strattr=self._strattr,
+ raise_exception=self._autocreate,
+ )
)
except AttributeError:
if self._autocreate:
@@ -273,8 +275,7 @@
self.__set__(instance, self._default)
else:
raise
- finally:
- return value
+ return value
def __set__(self, instance, value):
"""
@@ -284,7 +285,7 @@
(
getattr(instance, self.attrhandler_name).add(
self._key,
- value,
+ self.at_set(value),
category=self._category,
lockstring=self._lockstring,
strattr=self._strattr,
@@ -293,10 +294,43 @@
def __delete__(self, instance):
"""
- Called when running `del` on the field. Will remove/clear the Attribute.
+ Called when running `del` on the property. Will remove/clear the Attribute. Note that
+ the Attribute will be recreated next retrieval unless the AttributeProperty is also
+ removed in code!
"""
- (getattr(instance, self.attrhandler_name).remove(key=self._key, category=self._category))
+ getattr(instance, self.attrhandler_name).remove(key=self._key, category=self._category)
+
+[docs] def at_set(self, value):
+ """
+ The value to set is passed through the method. It can be used to customize/validate
+ the input in a custom child class.
+
+ Args:
+ value (any): The value about to the stored in this Attribute.
+
+ Returns:
+ any: The value to store.
+
+ Raises:
+ AttributeError: If the value is invalid to store.
+
+ """
+ return value
+
+[docs] def at_get(self, value):
+ """
+ The value returned from the Attribute is passed through this method. It can be used
+ to react to the retrieval or modify the result in some way.
+
+ Args:
+ value (any): Value returned from the Attribute.
+
+ Returns:
+ any: The value to return to the caller.
+
+ """
+ return value
[docs]class NAttributeProperty(AttributeProperty):
diff --git a/docs/1.0-dev/_modules/evennia/typeclasses/managers.html b/docs/1.0-dev/_modules/evennia/typeclasses/managers.html
index c4dcb418cc..38ce3709d6 100644
--- a/docs/1.0-dev/_modules/evennia/typeclasses/managers.html
+++ b/docs/1.0-dev/_modules/evennia/typeclasses/managers.html
@@ -328,7 +328,7 @@
categories = make_iter(category) if category else []
n_keys = len(keys)
n_categories = len(categories)
- unique_categories = sorted(set(categories))
+ unique_categories = set(categories)
n_unique_categories = len(unique_categories)
dbmodel = self.model.__dbclass__.__name__.lower()
diff --git a/docs/1.0-dev/_modules/evennia/typeclasses/models.html b/docs/1.0-dev/_modules/evennia/typeclasses/models.html
index e2f71e7193..2b7aa44eb0 100644
--- a/docs/1.0-dev/_modules/evennia/typeclasses/models.html
+++ b/docs/1.0-dev/_modules/evennia/typeclasses/models.html
@@ -81,11 +81,12 @@
from evennia.typeclasses.attributes import (
Attribute,
AttributeHandler,
+ AttributeProperty,
ModelAttributeBackend,
InMemoryAttributeBackend,
)
from evennia.typeclasses.attributes import DbHolder
-from evennia.typeclasses.tags import Tag, TagHandler, AliasHandler, PermissionHandler
+from evennia.typeclasses.tags import Tag, TagHandler, AliasHandler, PermissionHandler, TagProperty
from evennia.utils.idmapper.models import SharedMemoryModel, SharedMemoryModelBase
from evennia.server.signals import SIGNAL_TYPED_OBJECT_POST_RENAME
@@ -367,6 +368,18 @@
super().__init__(*args, **kwargs)
self.set_class_from_typeclass(typeclass_path=typeclass_path)
+[docs] def init_evennia_properties(self):
+ """
+ Called by creation methods; makes sure to initialize Attribute/TagProperties
+ by fetching them once.
+ """
+ for propkey, prop in self.__class__.__dict__.items():
+ if isinstance(prop, (AttributeProperty, TagProperty)):
+ try:
+ getattr(self, propkey)
+ except Exception:
+ log_trace()
+
# initialize all handlers in a lazy fashion
[docs] @lazy_property
def attributes(self):
diff --git a/docs/1.0-dev/_modules/evennia/typeclasses/tags.html b/docs/1.0-dev/_modules/evennia/typeclasses/tags.html
index b320a4d986..bcce08a2a5 100644
--- a/docs/1.0-dev/_modules/evennia/typeclasses/tags.html
+++ b/docs/1.0-dev/_modules/evennia/typeclasses/tags.html
@@ -139,6 +139,72 @@
#
+[docs]class TagProperty:
+ """
+ Tag property descriptor. Allows for setting tags on an object as Django-like 'fields'
+ on the class level. Since Tags are almost always used for querying, Tags are always
+ created/assigned along with the object. Make sure the property/tagname does not collide
+ with an existing method/property on the class. If it does, you must use tags.add()
+ instead.
+
+ Example:
+ ::
+
+ class Character(DefaultCharacter):
+ mytag = TagProperty() # category=None
+ mytag2 = TagProperty(category="tagcategory")
+
+ """
+
+ taghandler_name = "tags"
+
+[docs] def __init__(self, category=None, data=None):
+ self._category = category
+ self._data = data
+ self._key = ""
+
+ def __set_name__(self, cls, name):
+ """
+ Called when descriptor is first assigned to the class (not the instance!).
+ It is called with the name of the field.
+
+ """
+ self._key = name
+
+ def __get__(self, instance, owner):
+ """
+ Called when accessing the tag as a property on the instance.
+
+ """
+ try:
+ return getattr(instance, self.taghandler_name).get(
+ key=self._key, category=self._category, return_list=False, raise_exception=True
+ )
+ except AttributeError:
+ self.__set__(instance, self._category)
+
+ def __set__(self, instance, category):
+ """
+ Assign a new category to the tag. It's not possible to set 'data' this way.
+
+ """
+ self._category = category
+ (
+ getattr(instance, self.taghandler_name).add(
+ key=self._key, category=self._category, data=self._data
+ )
+ )
+
+ def __delete__(self, instance):
+ """
+ Called when running `del` on the property. Will disconnect the object from
+ the Tag. Note that the tag will be readded on next fetch unless the
+ TagProperty is also removed in code!
+
+ """
+ getattr(instance, self.taghandler_name).remove(key=self._key, category=self._category)
+
+
[docs]class TagHandler(object):
"""
Generic tag-handler. Accessed via TypedObject.tags.
@@ -403,7 +469,15 @@
return ret[0] if len(ret) == 1 else ret
-[docs] def get(self, key=None, default=None, category=None, return_tagobj=False, return_list=False):
+[docs] def get(
+ self,
+ key=None,
+ default=None,
+ category=None,
+ return_tagobj=False,
+ return_list=False,
+ raise_exception=False,
+ ):
"""
Get the tag for the given key, category or combination of the two.
@@ -418,6 +492,8 @@
instead of a string representation of the Tag.
return_list (bool, optional): Always return a list, regardless
of number of matches.
+ raise_exception (bool, optional): Raise AttributeError if no matches
+ are found.
Returns:
tags (list): The matches, either string
@@ -425,6 +501,9 @@
depending on `return_tagobj`. If 'default' is set, this
will be a list with the default value as its only element.
+ Raises:
+ AttributeError: If finding no matches and `raise_exception` is True.
+
"""
ret = []
for keystr in make_iter(key):
@@ -435,9 +514,14 @@
for tag in self._getcache(keystr, category)
]
)
- if return_list:
- return ret if ret else [default] if default is not None else []
- return ret[0] if len(ret) == 1 else (ret if ret else default)
+ if not ret:
+ if raise_exception:
+ raise AttributeError(f"No tags found matching input {key}, {category}.")
+ elif return_list:
+ return [default] if default is not None else []
+ else:
+ return default
+ return ret if return_list else (ret[0] if len(ret) == 1 else ret)
[docs] def remove(self, key=None, category=None):
"""
@@ -563,6 +647,22 @@
return ",".join(self.all())
+[docs]class AliasProperty(TagProperty):
+ """
+ Allows for setting aliases like Django fields:
+ ::
+
+ class Character(DefaultCharacter):
+ # note that every character will get the alias bob. Make sure
+ # the alias property does not collide with an existing method
+ # or property on the class.
+ bob = AliasProperty()
+
+ """
+
+ taghandler_name = "aliases"
+
+
[docs]class AliasHandler(TagHandler):
"""
A handler for the Alias Tag type.
@@ -572,6 +672,21 @@
_tagtype = "alias"
+[docs]class PermissionProperty(TagProperty):
+ """
+ Allows for setting permissions like Django fields:
+ ::
+
+ class Character(DefaultCharacter):
+ # note that every character will get this permission! Make
+ # sure it doesn't collide with an existing method or property.
+ myperm = PermissionProperty()
+
+ """
+
+ taghandler_name = "permissions"
+
+
[docs]class PermissionHandler(TagHandler):
"""
A handler for the Permission Tag type.
diff --git a/docs/1.0-dev/_modules/evennia/utils/containers.html b/docs/1.0-dev/_modules/evennia/utils/containers.html
index b2f949644a..cab36a12d9 100644
--- a/docs/1.0-dev/_modules/evennia/utils/containers.html
+++ b/docs/1.0-dev/_modules/evennia/utils/containers.html
@@ -54,6 +54,7 @@
from pickle import dumps
+from django.db.utils import OperationalError, ProgrammingError
from django.conf import settings
from evennia.utils.utils import class_from_module, callables_from_module
from evennia.utils import logger
@@ -209,7 +210,6 @@
# store a hash representation of the setup
script.attributes.add("_global_script_settings", compare_hash, category="settings_hash")
- script.start()
return script
@@ -225,9 +225,16 @@
# populate self.typeclass_storage
self.load_data()
- # start registered scripts
+ # make sure settings-defined scripts are loaded
for key in self.loaded_data:
- self._load_script(key)
+ self._load_script(key)
+ # start all global scripts
+ try:
+ for script in self._get_scripts():
+ script.start()
+ except (OperationalError, ProgrammingError):
+ # this can happen if db is not loaded yet (such as when building docs)
+ pass
[docs] def load_data(self):
"""
diff --git a/docs/1.0-dev/_modules/evennia/utils/dbserialize.html b/docs/1.0-dev/_modules/evennia/utils/dbserialize.html
index 0c692e0ecd..eb67ddfc53 100644
--- a/docs/1.0-dev/_modules/evennia/utils/dbserialize.html
+++ b/docs/1.0-dev/_modules/evennia/utils/dbserialize.html
@@ -65,7 +65,7 @@
from collections.abc import MutableSequence, MutableSet, MutableMapping
try:
- from pickle import dumps, loads
+ from pickle import dumps, loads, UnpicklingError
except ImportError:
from pickle import dumps, loads
from django.core.exceptions import ObjectDoesNotExist
@@ -281,6 +281,9 @@
def __gt__(self, other):
return self._data > other
+ def __or__(self, other):
+ return self._data | other
+
@_save
def __setitem__(self, key, value):
self._data.__setitem__(key, self._convert_mutables(value))
@@ -492,7 +495,9 @@
elif tname in ("_SaverOrderedDict", "OrderedDict"):
return OrderedDict([(_iter(key), _iter(val)) for key, val in obj.items()])
elif tname in ("_SaverDefaultDict", "defaultdict"):
- return defaultdict(obj.default_factory, {_iter(key): _iter(val) for key, val in obj.items()})
+ return defaultdict(
+ obj.default_factory, {_iter(key): _iter(val) for key, val in obj.items()}
+ )
elif tname in _DESERIALIZE_MAPPING:
return _DESERIALIZE_MAPPING[tname](_iter(val) for val in obj)
elif is_iter(obj):
@@ -644,7 +649,9 @@
def process_item(item):
"""Recursive processor and identification of data"""
+
dtype = type(item)
+
if dtype in (str, int, float, bool, bytes, SafeString):
return item
elif dtype == tuple:
@@ -654,7 +661,10 @@
elif dtype in (dict, _SaverDict):
return dict((process_item(key), process_item(val)) for key, val in item.items())
elif dtype in (defaultdict, _SaverDefaultDict):
- return defaultdict(item.default_factory, ((process_item(key), process_item(val)) for key, val in item.items()))
+ return defaultdict(
+ item.default_factory,
+ ((process_item(key), process_item(val)) for key, val in item.items()),
+ )
elif dtype in (set, _SaverSet):
return set(process_item(val) for val in item)
elif dtype in (OrderedDict, _SaverOrderedDict):
@@ -662,7 +672,20 @@
elif dtype in (deque, _SaverDeque):
return deque(process_item(val) for val in item)
- elif hasattr(item, "__iter__"):
+ # not one of the base types
+ if hasattr(item, "__serialize_dbobjs__"):
+ # Allows custom serialization of any dbobjects embedded in
+ # the item that Evennia will otherwise not find (these would
+ # otherwise lead to an error). Use the dbserialize helper from
+ # this method.
+ try:
+ item.__serialize_dbobjs__()
+ except TypeError as err:
+ # we catch typerrors so we can handle both classes (requiring
+ # classmethods) and instances
+ pass
+
+ if hasattr(item, "__iter__"):
# we try to conserve the iterable class, if not convert to list
try:
return item.__class__([process_item(val) for val in item])
@@ -720,7 +743,10 @@
elif dtype == dict:
return dict((process_item(key), process_item(val)) for key, val in item.items())
elif dtype == defaultdict:
- return defaultdict(item.default_factory, ((process_item(key), process_item(val)) for key, val in item.items()))
+ return defaultdict(
+ item.default_factory,
+ ((process_item(key), process_item(val)) for key, val in item.items()),
+ )
elif dtype == set:
return set(process_item(val) for val in item)
elif dtype == OrderedDict:
@@ -734,6 +760,22 @@
return item.__class__(process_item(val) for val in item)
except (AttributeError, TypeError):
return [process_item(val) for val in item]
+
+ if hasattr(item, "__deserialize_dbobjs__"):
+ # this allows the object to custom-deserialize any embedded dbobjs
+ # that we previously serialized with __serialize_dbobjs__.
+ # use the dbunserialize helper in this module.
+ try:
+ item.__deserialize_dbobjs__()
+ except (TypeError, UnpicklingError):
+ # handle recoveries both of classes (requiring classmethods
+ # or instances. Unpickling errors can happen when re-loading the
+ # data from cache (because the hidden entity was already
+ # deserialized and stored back on the object, unpickling it
+ # again fails). TODO: Maybe one could avoid this retry in a
+ # more graceful way?
+ pass
+
return item
def process_tree(item, parent):
diff --git a/docs/1.0-dev/_modules/evennia/utils/evmenu.html b/docs/1.0-dev/_modules/evennia/utils/evmenu.html
index bb27e9f70c..77b8f42b18 100644
--- a/docs/1.0-dev/_modules/evennia/utils/evmenu.html
+++ b/docs/1.0-dev/_modules/evennia/utils/evmenu.html
@@ -316,12 +316,13 @@
from ast import literal_eval
from fnmatch import fnmatch
+from math import ceil
from inspect import isfunction, getargspec
from django.conf import settings
from evennia import Command, CmdSet
from evennia.utils import logger
-from evennia.utils.evtable import EvTable
+from evennia.utils.evtable import EvTable, EvColumn
from evennia.utils.ansi import strip_ansi
from evennia.utils.utils import mod_import, make_iter, pad, to_str, m_len, is_iter, dedent, crop
from evennia.commands import cmdhandler
@@ -1252,7 +1253,6 @@
Args:
optionlist (list): List of (key, description) tuples for every
option related to this node.
- caller (Object, Account or None, optional): The caller of the node.
Returns:
options (str): The formatted option display.
@@ -1271,7 +1271,7 @@
table = []
for key, desc in optionlist:
if key or desc:
- desc_string = ": %s" % desc if desc else ""
+ desc_string = f": {desc}" if desc else ""
table_width_max = max(
table_width_max,
max(m_len(p) for p in key.split("\n"))
@@ -1281,42 +1281,31 @@
raw_key = strip_ansi(key)
if raw_key != key:
# already decorations in key definition
- table.append(" |lc%s|lt%s|le%s" % (raw_key, key, desc_string))
+ table.append(f" |lc{raw_key}|lt{key}|le{desc_string}")
else:
# add a default white color to key
- table.append(" |lc%s|lt|w%s|n|le%s" % (raw_key, raw_key, desc_string))
- ncols = _MAX_TEXT_WIDTH // table_width_max # number of ncols
+ table.append(f" |lc{raw_key}|lt|w{key}|n|le{desc_string}")
+ ncols = _MAX_TEXT_WIDTH // table_width_max # number of columns
if ncols < 0:
- # no visible option at all
+ # no visible options at all
return ""
- ncols = ncols + 1 if ncols == 0 else ncols
- # get the amount of rows needed (start with 4 rows)
- nrows = 4
- while nrows * ncols < nlist:
- nrows += 1
- ncols = nlist // nrows # number of full columns
- nlastcol = nlist % nrows # number of elements in last column
+ ncols = 1 if ncols == 0 else ncols
- # get the final column count
- ncols = ncols + 1 if nlastcol > 0 else ncols
- if ncols > 1:
- # only extend if longer than one column
- table.extend([" " for i in range(nrows - nlastcol)])
+ # minimum number of rows in a column
+ min_rows = 4
- # build the actual table grid
- table = [table[icol * nrows : (icol * nrows) + nrows] for icol in range(0, ncols)]
+ # split the items into columns
+ split = max(min_rows, ceil(len(table) / ncols))
+ max_end = len(table)
+ cols_list = []
+ for icol in range(ncols):
+ start = icol * split
+ end = min(start + split, max_end)
+ cols_list.append(EvColumn(*table[start:end]))
- # adjust the width of each column
- for icol in range(len(table)):
- col_width = (
- max(max(m_len(p) for p in part.split("\n")) for part in table[icol]) + colsep
- )
- table[icol] = [pad(part, width=col_width + colsep, align="l") for part in table[icol]]
-
- # format the table into columns
- return str(EvTable(table=table, border="none"))
+ return str(EvTable(table=cols_list, border="none"))
[docs] def node_formatter(self, nodetext, optionstext):
"""
diff --git a/docs/1.0-dev/_modules/evennia/utils/funcparser.html b/docs/1.0-dev/_modules/evennia/utils/funcparser.html
index a54f833c15..c0b9bc7081 100644
--- a/docs/1.0-dev/_modules/evennia/utils/funcparser.html
+++ b/docs/1.0-dev/_modules/evennia/utils/funcparser.html
@@ -64,7 +64,7 @@
# use underscore to NOT make the function available as a callable
def funcname(*args, **kwargs):
- # this can be accecssed as $funcname(*args, **kwargs)
+ # this can be accessed as $funcname(*args, **kwargs)
# it must always accept *args and **kwargs.
...
return something
@@ -73,7 +73,7 @@
Usage:
```python
-from evennia.utils.funcparser
+from evennia.utils.funcparser import FuncParser
parser = FuncParser("path.to.module_with_callables")
result = parser.parse("String with $funcname() in it")
@@ -126,8 +126,8 @@
# state storage
fullstr: str = ""
infuncstr: str = ""
- single_quoted: bool = False
- double_quoted: bool = False
+ single_quoted: int = -1
+ double_quoted: int = -1
current_kwarg: str = ""
open_lparens: int = 0
open_lsquate: int = 0
@@ -360,8 +360,8 @@
# parsing state
callstack = []
- single_quoted = False
- double_quoted = False
+ single_quoted = -1
+ double_quoted = -1
open_lparens = 0 # open (
open_lsquare = 0 # open [
open_lcurly = 0 # open {
@@ -372,6 +372,7 @@
curr_func = None
fullstr = "" # final string
infuncstr = "" # string parts inside the current level of $funcdef (including $)
+ literal_infuncstr = False
for char in string:
@@ -415,12 +416,13 @@
curr_func.open_lcurly = open_lcurly
current_kwarg = ""
infuncstr = ""
- single_quoted = False
- double_quoted = False
+ single_quoted = -1
+ double_quoted = -1
open_lparens = 0
open_lsquare = 0
open_lcurly = 0
exec_return = ""
+ literal_infuncstr = False
callstack.append(curr_func)
# start a new func
@@ -443,19 +445,41 @@
infuncstr += str(exec_return)
exec_return = ""
- if char == "'": # note that this is the same as "\'"
+ if char == "'" and double_quoted < 0: # note that this is the same as "\'"
# a single quote - flip status
- single_quoted = not single_quoted
- infuncstr += char
+ if single_quoted == 0:
+ infuncstr = infuncstr[1:]
+ single_quoted = -1
+ elif single_quoted > 0:
+ prefix = infuncstr[0:single_quoted]
+ infuncstr = prefix + infuncstr[single_quoted + 1 :]
+ single_quoted = -1
+ else:
+ infuncstr += char
+ infuncstr = infuncstr.strip()
+ single_quoted = len(infuncstr) - 1
+ literal_infuncstr = True
+
continue
- if char == '"': # note that this is the same as '\"'
+ if char == '"' and single_quoted < 0: # note that this is the same as '\"'
# a double quote = flip status
- double_quoted = not double_quoted
- infuncstr += char
+ if double_quoted == 0:
+ infuncstr = infuncstr[1:]
+ double_quoted = -1
+ elif double_quoted > 0:
+ prefix = infuncstr[0:double_quoted]
+ infuncstr = prefix + infuncstr[double_quoted + 1 :]
+ double_quoted = -1
+ else:
+ infuncstr += char
+ infuncstr = infuncstr.strip()
+ double_quoted = len(infuncstr) - 1
+ literal_infuncstr = True
+
continue
- if double_quoted or single_quoted:
+ if double_quoted >= 0 or single_quoted >= 0:
# inside a string definition - this escapes everything else
infuncstr += char
continue
@@ -519,12 +543,15 @@
else:
curr_func.args.append(exec_return)
else:
+ if not literal_infuncstr:
+ infuncstr = infuncstr.strip()
+
# store a string instead
if current_kwarg:
- curr_func.kwargs[current_kwarg] = infuncstr.strip()
- elif infuncstr.strip():
+ curr_func.kwargs[current_kwarg] = infuncstr
+ elif literal_infuncstr or infuncstr.strip():
# don't store the empty string
- curr_func.args.append(infuncstr.strip())
+ curr_func.args.append(infuncstr)
# note that at this point either exec_return or infuncstr will
# be empty. We need to store the full string so we can print
@@ -535,6 +562,7 @@
current_kwarg = ""
exec_return = ""
infuncstr = ""
+ literal_infuncstr = False
if char == ")":
# closing the function list - this means we have a
@@ -578,6 +606,7 @@
if return_str:
exec_return = ""
infuncstr = ""
+ literal_infuncstr = False
continue
infuncstr += char
@@ -1139,7 +1168,7 @@
Examples:
This can be used by the say or emote hooks to pass actor stance
- strings. This should usually be combined with the $inflect() callable.
+ strings. This should usually be combined with the $conj() callable.
- `With a grin, $you() $conj(jump) at $you(tommy).`
@@ -1223,7 +1252,7 @@
[docs]def funcparser_callable_pronoun(*args, caller=None, receiver=None, capitalize=False, **kwargs):
"""
- Usage: $prop(word, [options])
+ Usage: $pron(word, [options])
Adjust pronouns to the expected form. Pronouns are words you use instead of a
proper name, such as 'him', 'herself', 'theirs' etc. These look different
@@ -1259,7 +1288,7 @@
`male`/`female`/`neutral`/`plural` (plural is considered a gender for this purpose).
If no `gender` property/callable is found, `neutral` is used as a fallback.
- The pronoun-type default (if not spefified in call) is `subject pronoun`.
+ The pronoun-type default (if not specified in call) is `subject pronoun`.
Args:
pronoun (str): Input argument to parsed call. This can be any of the pronouns
@@ -1329,7 +1358,7 @@
default_viewpoint = "2nd person"
if hasattr(caller, "gender"):
- if callable(caller, gender):
+ if callable(caller.gender):
default_gender = caller.gender()
else:
default_gender = caller.gender
@@ -1357,7 +1386,7 @@
*args, caller=None, receiver=None, capitalize=True, **kwargs
):
"""
- Usage: $Pron(word) - always maps to a capitalized word.
+ Usage: $Pron(word, [options]) - always maps to a capitalized word.
"""
return funcparser_callable_pronoun(
diff --git a/docs/1.0-dev/_modules/evennia/utils/gametime.html b/docs/1.0-dev/_modules/evennia/utils/gametime.html
index a2021089c7..0715f5e71e 100644
--- a/docs/1.0-dev/_modules/evennia/utils/gametime.html
+++ b/docs/1.0-dev/_modules/evennia/utils/gametime.html
@@ -109,7 +109,7 @@
callback(*args, **kwargs)
seconds = real_seconds_until(**self.db.gametime)
- self.restart(interval=seconds)
+ self.start(interval=seconds, force_restart=True)
# Access functions
diff --git a/docs/1.0-dev/_modules/evennia/utils/logger.html b/docs/1.0-dev/_modules/evennia/utils/logger.html
index 7188098ff1..7532b8501f 100644
--- a/docs/1.0-dev/_modules/evennia/utils/logger.html
+++ b/docs/1.0-dev/_modules/evennia/utils/logger.html
@@ -92,6 +92,7 @@
# log call functions (each has legacy aliases)
+
[docs]def log_info(msg, **kwargs):
"""
Logs any generic debugging/informative info that should appear in the log.
@@ -104,6 +105,7 @@
"""
_log(msg, log.info, **kwargs)
+
info = log_info
log_infomsg = log_info
log_msg = log_info
@@ -121,6 +123,7 @@
"""
_log(msg, log.warn, **kwargs)
+
warn = log_warn
warning = log_warn
log_warnmsg = log_warn
@@ -162,6 +165,7 @@
if msg:
_log(msg, log.error, prefix="!!", **kwargs)
+
log_tracemsg = log_trace
exception = log_trace
critical = log_trace
@@ -198,6 +202,7 @@
"""
_log(msg, log.info, prefix="SS", **kwargs)
+
sec = log_sec
security = log_sec
log_secmsg = log_sec
@@ -216,12 +221,12 @@
_log(msg, log.info, prefix="Server", **kwargs)
-
[docs]class GetLogObserver:
"""
Sets up how the system logs are formatted.
"""
+
component_prefix = ""
event_levels = {
twisted_logger.LogLevel.debug: "??",
@@ -249,8 +254,7 @@
event["log_format"] = str(event.get("log_format", ""))
component_prefix = self.component_prefix or ""
log_msg = twisted_logger.formatEventAsClassicLogText(
- event,
- formatTime=lambda e: twisted_logger.formatTime(e, _TIME_FORMAT)
+ event, formatTime=lambda e: twisted_logger.formatTime(e, _TIME_FORMAT)
)
return f"{component_prefix}{log_msg}"
@@ -260,14 +264,15 @@
# Called by server/portal on startup
+
+
-
# logging overrides
@@ -394,6 +399,7 @@
self.lastDate = max(self.lastDate, self.toDate())
self.size += len(data)
+
# Arbitrary file logger
diff --git a/docs/1.0-dev/_modules/evennia/utils/test_resources.html b/docs/1.0-dev/_modules/evennia/utils/test_resources.html
index f1483ff468..69b9e23885 100644
--- a/docs/1.0-dev/_modules/evennia/utils/test_resources.html
+++ b/docs/1.0-dev/_modules/evennia/utils/test_resources.html
@@ -138,7 +138,6 @@
"evennia.game_template.server.conf.prototypefuncs",
],
BASE_GUEST_TYPECLASS="evennia.accounts.accounts.DefaultGuest",
-
# a special setting boolean _TEST_ENVIRONMENT is set by the test runner
# while the test suite is running.
)
diff --git a/docs/1.0-dev/_modules/evennia/utils/text2html.html b/docs/1.0-dev/_modules/evennia/utils/text2html.html
index 3f103bdb95..6b0dfd9ae7 100644
--- a/docs/1.0-dev/_modules/evennia/utils/text2html.html
+++ b/docs/1.0-dev/_modules/evennia/utils/text2html.html
@@ -54,11 +54,10 @@
from html import escape as html_escape
from .ansi import *
-
# All xterm256 RGB equivalents
-XTERM256_FG = "\033[38;5;%sm"
-XTERM256_BG = "\033[48;5;%sm"
+XTERM256_FG = "\033[38;5;{}m"
+XTERM256_BG = "\033[48;5;{}m"
[docs]class TextToHTMLparser(object):
@@ -67,188 +66,75 @@
"""
tabstop = 4
- # mapping html color name <-> ansi code.
- hilite = ANSI_HILITE
- unhilite = ANSI_UNHILITE # this will be stripped - there is no css equivalent.
- normal = ANSI_NORMAL # "
- underline = ANSI_UNDERLINE
- blink = ANSI_BLINK
- inverse = ANSI_INVERSE # this will produce an outline; no obvious css equivalent?
- colorcodes = [
- ("color-000", unhilite + ANSI_BLACK), # pure black
- ("color-001", unhilite + ANSI_RED),
- ("color-002", unhilite + ANSI_GREEN),
- ("color-003", unhilite + ANSI_YELLOW),
- ("color-004", unhilite + ANSI_BLUE),
- ("color-005", unhilite + ANSI_MAGENTA),
- ("color-006", unhilite + ANSI_CYAN),
- ("color-007", unhilite + ANSI_WHITE), # light grey
- ("color-008", hilite + ANSI_BLACK), # dark grey
- ("color-009", hilite + ANSI_RED),
- ("color-010", hilite + ANSI_GREEN),
- ("color-011", hilite + ANSI_YELLOW),
- ("color-012", hilite + ANSI_BLUE),
- ("color-013", hilite + ANSI_MAGENTA),
- ("color-014", hilite + ANSI_CYAN),
- ("color-015", hilite + ANSI_WHITE), # pure white
- ] + [("color-%03i" % (i + 16), XTERM256_FG % ("%i" % (i + 16))) for i in range(240)]
- colorback = [
- ("bgcolor-000", ANSI_BACK_BLACK), # pure black
- ("bgcolor-001", ANSI_BACK_RED),
- ("bgcolor-002", ANSI_BACK_GREEN),
- ("bgcolor-003", ANSI_BACK_YELLOW),
- ("bgcolor-004", ANSI_BACK_BLUE),
- ("bgcolor-005", ANSI_BACK_MAGENTA),
- ("bgcolor-006", ANSI_BACK_CYAN),
- ("bgcolor-007", ANSI_BACK_WHITE), # light grey
- ("bgcolor-008", hilite + ANSI_BACK_BLACK), # dark grey
- ("bgcolor-009", hilite + ANSI_BACK_RED),
- ("bgcolor-010", hilite + ANSI_BACK_GREEN),
- ("bgcolor-011", hilite + ANSI_BACK_YELLOW),
- ("bgcolor-012", hilite + ANSI_BACK_BLUE),
- ("bgcolor-013", hilite + ANSI_BACK_MAGENTA),
- ("bgcolor-014", hilite + ANSI_BACK_CYAN),
- ("bgcolor-015", hilite + ANSI_BACK_WHITE), # pure white
- ] + [("bgcolor-%03i" % (i + 16), XTERM256_BG % ("%i" % (i + 16))) for i in range(240)]
+ style_codes = [
+ # non-color style markers
+ ANSI_NORMAL,
+ ANSI_UNDERLINE,
+ ANSI_HILITE,
+ ANSI_UNHILITE,
+ ANSI_INVERSE,
+ ANSI_BLINK,
+ ANSI_INV_HILITE,
+ ANSI_BLINK_HILITE,
+ ANSI_INV_BLINK,
+ ANSI_INV_BLINK_HILITE,
+ ]
- # make sure to escape [
- # colorcodes = [(c, code.replace("[", r"\[")) for c, code in colorcodes]
- # colorback = [(c, code.replace("[", r"\[")) for c, code in colorback]
- fg_colormap = dict((code, clr) for clr, code in colorcodes)
- bg_colormap = dict((code, clr) for clr, code in colorback)
+ ansi_color_codes = [
+ # Foreground colors
+ ANSI_BLACK,
+ ANSI_RED,
+ ANSI_GREEN,
+ ANSI_YELLOW,
+ ANSI_BLUE,
+ ANSI_MAGENTA,
+ ANSI_CYAN,
+ ANSI_WHITE,
+ ]
- # create stop markers
- fgstop = "(?:\033\[1m|\033\[22m){0,1}\033\[3[0-8].*?m|\033\[0m|$"
- bgstop = "(?:\033\[1m|\033\[22m){0,1}\033\[4[0-8].*?m|\033\[0m|$"
- bgfgstop = bgstop[:-2] + r"(\s*)" + fgstop
+ xterm_fg_codes = [XTERM256_FG.format(i + 16) for i in range(240)]
- fgstart = "((?:\033\[1m|\033\[22m){0,1}\033\[3[0-8].*?m)"
- bgstart = "((?:\033\[1m|\033\[22m){0,1}\033\[4[0-8].*?m)"
- bgfgstart = bgstart + r"(\s*)" + "((?:\033\[1m|\033\[22m){0,1}\033\[[3-4][0-8].*?m){0,1}"
+ ansi_bg_codes = [
+ # Background colors
+ ANSI_BACK_BLACK,
+ ANSI_BACK_RED,
+ ANSI_BACK_GREEN,
+ ANSI_BACK_YELLOW,
+ ANSI_BACK_BLUE,
+ ANSI_BACK_MAGENTA,
+ ANSI_BACK_CYAN,
+ ANSI_BACK_WHITE,
+ ]
- # extract color markers, tagging the start marker and the text marked
- re_fgs = re.compile(fgstart + "(.*?)(?=" + fgstop + ")")
- re_bgs = re.compile(bgstart + "(.*?)(?=" + bgstop + ")")
- re_bgfg = re.compile(bgfgstart + "(.*?)(?=" + bgfgstop + ")")
+ xterm_bg_codes = [XTERM256_BG.format(i + 16) for i in range(240)]
+
+ re_style = re.compile(
+ r"({})".format(
+ "|".join(
+ style_codes + ansi_color_codes + xterm_fg_codes + ansi_bg_codes + xterm_bg_codes
+ ).replace("[", r"\[")
+ )
+ )
+
+ colorlist = (
+ [ANSI_UNHILITE + code for code in ansi_color_codes]
+ + [ANSI_HILITE + code for code in ansi_color_codes]
+ + xterm_fg_codes
+ )
+
+ bglist = ansi_bg_codes + [ANSI_HILITE + code for code in ansi_bg_codes] + xterm_bg_codes
- re_normal = re.compile(normal.replace("[", r"\["))
- re_hilite = re.compile("(?:%s)(.*)(?=%s|%s)" % (hilite.replace("[", r"\["), fgstop, bgstop))
- re_unhilite = re.compile("(?:%s)(.*)(?=%s|%s)" % (unhilite.replace("[", r"\["), fgstop, bgstop))
- re_uline = re.compile("(?:%s)(.*?)(?=%s|%s)" % (underline.replace("[", r"\["), fgstop, bgstop))
- re_blink = re.compile("(?:%s)(.*?)(?=%s|%s)" % (blink.replace("[", r"\["), fgstop, bgstop))
- re_inverse = re.compile("(?:%s)(.*?)(?=%s|%s)" % (inverse.replace("[", r"\["), fgstop, bgstop))
re_string = re.compile(
- r"(?P<htmlchars>[<&>])|(?P<tab>[\t]+)|(?P<space> +)|"
- r"(?P<spacestart>^ )|(?P<lineend>\r\n|\r|\n)",
+ r"(?P<htmlchars>[<&>])|(?P<tab>[\t]+)|(?P<lineend>\r\n|\r|\n)",
re.S | re.M | re.I,
)
- re_dblspace = re.compile(r" {2,}", re.M)
- re_invisiblespace = re.compile(r"( <.*?>)( )")
re_url = re.compile(
r'(?<!=")((?:ftp|www|https?)\W+(?:(?!\.(?:\s|$)|&\w+;)[^"\',;$*^\\(){}<>\[\]\s])+)(\.(?:\s|$)|&\w+;|)'
)
re_mxplink = re.compile(r"\|lc(.*?)\|lt(.*?)\|le", re.DOTALL)
re_mxpurl = re.compile(r"\|lu(.*?)\|lt(.*?)\|le", re.DOTALL)
- def _sub_bgfg(self, colormatch):
- # print("colormatch.groups()", colormatch.groups())
- bgcode, prespace, fgcode, text, postspace = colormatch.groups()
- if not fgcode:
- ret = r"""<span class="%s">%s%s%s</span>""" % (
- self.bg_colormap.get(bgcode, self.fg_colormap.get(bgcode, "err")),
- prespace and " " * len(prespace) or "",
- postspace and " " * len(postspace) or "",
- text,
- )
- else:
- ret = r"""<span class="%s"><span class="%s">%s%s%s</span></span>""" % (
- self.bg_colormap.get(bgcode, self.fg_colormap.get(bgcode, "err")),
- self.fg_colormap.get(fgcode, self.bg_colormap.get(fgcode, "err")),
- prespace and " " * len(prespace) or "",
- postspace and " " * len(postspace) or "",
- text,
- )
- return ret
-
- def _sub_fg(self, colormatch):
- code, text = colormatch.groups()
- return r"""<span class="%s">%s</span>""" % (self.fg_colormap.get(code, "err"), text)
-
- def _sub_bg(self, colormatch):
- code, text = colormatch.groups()
- return r"""<span class="%s">%s</span>""" % (self.bg_colormap.get(code, "err"), text)
-
-[docs] def re_color(self, text):
- """
- Replace ansi colors with html color class names. Let the
- client choose how it will display colors, if it wishes to.
-
- Args:
- text (str): the string with color to replace.
-
- Returns:
- text (str): Re-colored text.
-
- """
- text = self.re_bgfg.sub(self._sub_bgfg, text)
- text = self.re_fgs.sub(self._sub_fg, text)
- text = self.re_bgs.sub(self._sub_bg, text)
- text = self.re_normal.sub("", text)
- return text
-
-[docs] def re_bold(self, text):
- """
- Clean out superfluous hilights rather than set <strong>to make
- it match the look of telnet.
-
- Args:
- text (str): Text to process.
-
- Returns:
- text (str): Processed text.
-
- """
- text = self.re_hilite.sub(r"<strong>\1</strong>", text)
- return self.re_unhilite.sub(r"\1", text) # strip unhilite - there is no equivalent in css.
-
-[docs] def re_underline(self, text):
- """
- Replace ansi underline with html underline class name.
-
- Args:
- text (str): Text to process.
-
- Returns:
- text (str): Processed text.
-
- """
- return self.re_uline.sub(r'<span class="underline">\1</span>', text)
-
-[docs] def re_blinking(self, text):
- """
- Replace ansi blink with custom blink css class
-
- Args:
- text (str): Text to process.
-
- Returns:
- text (str): Processed text.
- """
- return self.re_blink.sub(r'<span class="blink">\1</span>', text)
-
-[docs] def re_inversing(self, text):
- """
- Replace ansi inverse with custom inverse css class
-
- Args:
- text (str): Text to process.
-
- Returns:
- text (str): Processed text.
- """
- return self.re_inverse.sub(r'<span class="inverse">\1</span>', text)
-
[docs] def remove_bells(self, text):
"""
Remove ansi specials
@@ -260,7 +146,7 @@
text (str): Processed text.
"""
- return text.replace("\07", "")
+ return text.replace(ANSI_BEEP, "")
[docs] def remove_backspaces(self, text):
"""
@@ -307,20 +193,6 @@
# change pages (and losing our webclient session).
return self.re_url.sub(r'<a href="\1" target="_blank">\1</a>\2', text)
-[docs] def re_double_space(self, text):
- """
- HTML will swallow any normal space after the first, so if any slipped
- through we must make sure to replace them with " "
- """
- return self.re_dblspace.sub(self.sub_dblspace, text)
-
-[docs] def re_invisible_space(self, text):
- """
- If two spaces are separated by an invisble html element, they act as a
- hidden double-space and the last of them should be replaced by
- """
- return self.re_invisiblespace.sub(self.sub_invisiblespace, text)
-
[docs] def sub_mxp_links(self, match):
"""
Helper method to be passed to re.sub,
@@ -374,27 +246,131 @@
elif cdict["lineend"]:
return "<br>"
elif cdict["tab"]:
- text = cdict["tab"].replace("\t", " " + " " * (self.tabstop - 1))
- return text
- elif cdict["space"] or cdict["spacestart"]:
- text = cdict["space"]
- text = " " if len(text) == 1 else " " + text[1:].replace(" ", " ")
+ text = cdict["tab"].replace("\t", " " * (self.tabstop))
return text
return None
-[docs] def sub_dblspace(self, match):
- "clean up double-spaces"
- return " " + " " * (len(match.group()) - 1)
+[docs] def format_styles(self, text):
+ """
+ Takes a string with parsed ANSI codes and replaces them with
+ HTML spans and CSS classes.
-[docs] def sub_invisiblespace(self, match):
- "clean up invisible spaces"
- return match.group(1) + " "
+ Args:
+ text (str): The string to process.
-[docs] def handle_single_first_space(self, text):
- "Don't swallow an initial lone space"
- if text.startswith(" "):
- return " " + text[1:]
- return text
+ Returns:
+ text (str): Processed text.
+ """
+
+ # split out the ANSI codes and clean out any empty items
+ str_list = [substr for substr in self.re_style.split(text) if substr]
+ # initialize all the flags and classes
+ classes = []
+ clean = True
+ inverse = False
+ # default color is light grey - unhilite + white
+ hilight = ANSI_UNHILITE
+ fg = ANSI_WHITE
+ # default bg is black
+ bg = ANSI_BACK_BLACK
+
+ for i, substr in enumerate(str_list):
+ # reset all current styling
+ if substr == ANSI_NORMAL:
+ # close any existing span if necessary
+ str_list[i] = "</span>" if not clean else ""
+ # reset to defaults
+ classes = []
+ clean = True
+ inverse = False
+ hilight = ANSI_UNHILITE
+ fg = ANSI_WHITE
+ bg = ANSI_BACK_BLACK
+
+ # change color
+ elif substr in self.ansi_color_codes + self.xterm_fg_codes:
+ # erase ANSI code from output
+ str_list[i] = ""
+ # set new color
+ fg = substr
+
+ # change bg color
+ elif substr in self.ansi_bg_codes + self.xterm_bg_codes:
+ # erase ANSI code from output
+ str_list[i] = ""
+ # set new bg
+ bg = substr
+
+ # non-color codes
+ elif substr in self.style_codes:
+ # erase ANSI code from output
+ str_list[i] = ""
+
+ # hilight codes
+ if substr in (ANSI_HILITE, ANSI_UNHILITE, ANSI_INV_HILITE, ANSI_INV_BLINK_HILITE):
+ # set new hilight status
+ hilight = ANSI_UNHILITE if substr == ANSI_UNHILITE else ANSI_HILITE
+
+ # inversion codes
+ if substr in (ANSI_INVERSE, ANSI_INV_HILITE, ANSI_INV_BLINK_HILITE):
+ inverse = True
+
+ # blink codes
+ if (
+ substr in (ANSI_BLINK, ANSI_BLINK_HILITE, ANSI_INV_BLINK_HILITE)
+ and "blink" not in classes
+ ):
+ classes.append("blink")
+
+ # underline
+ if substr == ANSI_UNDERLINE and "underline" not in classes:
+ classes.append("underline")
+
+ else:
+ # normal text, add text back to list
+ if not str_list[i - 1]:
+ # prior entry was cleared, which means style change
+ # get indices for the fg and bg codes
+ bg_index = self.bglist.index(bg)
+ try:
+ color_index = self.colorlist.index(hilight + fg)
+ except ValueError:
+ # xterm256 colors don't have the hilight codes
+ color_index = self.colorlist.index(fg)
+
+ if inverse:
+ # inverse means swap fg and bg indices
+ bg_class = "bgcolor-{}".format(str(color_index).rjust(3, "0"))
+ color_class = "color-{}".format(str(bg_index).rjust(3, "0"))
+ else:
+ # use fg and bg indices for classes
+ bg_class = "bgcolor-{}".format(str(bg_index).rjust(3, "0"))
+ color_class = "color-{}".format(str(color_index).rjust(3, "0"))
+
+ # black bg is the default, don't explicitly style
+ if bg_class != "bgcolor-000":
+ classes.append(bg_class)
+ # light grey text is the default, don't explicitly style
+ if color_class != "color-007":
+ classes.append(color_class)
+ # define the new style span
+ prefix = '<span class="{}">'.format(" ".join(classes))
+ # close any prior span
+ if not clean:
+ prefix = "</span>" + prefix
+ # add span to output
+ str_list[i - 1] = prefix
+
+ # clean out color classes to easily update next time
+ classes = [cls for cls in classes if "color" not in cls]
+ # flag as currently being styled
+ clean = False
+
+ # close span if necessary
+ if not clean:
+ str_list.append("</span>")
+ # recombine back into string
+ return "".join(str_list)
[docs] def parse(self, text, strip_ansi=False):
"""
@@ -409,25 +385,17 @@
text (str): Parsed text.
"""
- # print(f"incoming text:\n{text}")
# parse everything to ansi first
text = parse_ansi(text, strip_ansi=strip_ansi, xterm256=True, mxp=True)
# convert all ansi to html
result = re.sub(self.re_string, self.sub_text, text)
result = re.sub(self.re_mxplink, self.sub_mxp_links, result)
result = re.sub(self.re_mxpurl, self.sub_mxp_urls, result)
- result = self.re_color(result)
- result = self.re_bold(result)
- result = self.re_underline(result)
- result = self.re_blinking(result)
- result = self.re_inversing(result)
result = self.remove_bells(result)
+ result = self.format_styles(result)
result = self.convert_linebreaks(result)
result = self.remove_backspaces(result)
result = self.convert_urls(result)
- result = self.re_double_space(result)
- result = self.re_invisible_space(result)
- result = self.handle_single_first_space(result)
# clean out eventual ansi that was missed
## result = parse_ansi(result, strip_ansi=True)
diff --git a/docs/1.0-dev/_modules/evennia/utils/utils.html b/docs/1.0-dev/_modules/evennia/utils/utils.html
index af9902a8cb..46f79246e5 100644
--- a/docs/1.0-dev/_modules/evennia/utils/utils.html
+++ b/docs/1.0-dev/_modules/evennia/utils/utils.html
@@ -2737,6 +2737,7 @@
+ excess
)
+
[docs]def run_in_main_thread(function_or_method, *args, **kwargs):
"""
Force a callable to execute in the main Evennia thread. This is only relevant when
diff --git a/docs/1.0-dev/_sources/Coding/Changelog.md.txt b/docs/1.0-dev/_sources/Coding/Changelog.md.txt
index 6268fa57ec..be0527668a 100644
--- a/docs/1.0-dev/_sources/Coding/Changelog.md.txt
+++ b/docs/1.0-dev/_sources/Coding/Changelog.md.txt
@@ -160,6 +160,14 @@ Up requirements to Django 4.0+, Twisted 22+, Python 3.9 or 3.10
- Attribute storage support defaultdics (Hendher)
- Add ObjectParent mixin to default game folder template as an easy, ready-made
way to override features on all ObjectDB-inheriting objects easily.
+- Add `TagProperty`, `AliasProperty` and `PermissionProperty` to assign these
+ data in a similar way to django fields.
+- The db pickle-serializer now checks for methods `__serialize_dbobjs__` and `__deserialize_dbobjs__`
+ to allow custom packing/unpacking of nested dbobjs, to allow storing in Attribute.
+- Optimizations to rpsystem contrib performance. Breaking change: `.get_sdesc()` will
+ now return `None` instead of `.db.desc` if no sdesc is set; fallback in hook (inspectorCaracal)
+- Reworked text2html parser to avoid problems with stateful color tags (inspectorCaracal)
+- Simplified `EvMenu.options_formatter` hook to use `EvColumn` and f-strings (inspectorcaracal)
## Evennia 0.9.5
diff --git a/docs/1.0-dev/_sources/Components/Attributes.md.txt b/docs/1.0-dev/_sources/Components/Attributes.md.txt
index d5eaa49842..3d0cdda131 100644
--- a/docs/1.0-dev/_sources/Components/Attributes.md.txt
+++ b/docs/1.0-dev/_sources/Components/Attributes.md.txt
@@ -3,33 +3,43 @@
```{code-block}
:caption: In-game
> set obj/myattr = "test"
-```
+```
```{code-block} python
-:caption: In-code
-obj.db.foo = [1,2,3, "bar"]
+:caption: In-code, using the .db wrapper
+obj.db.foo = [1, 2, 3, "bar"]
value = obj.db.foo
-
+```
+```{code-block} python
+:caption: In-code, using the .attributes handler
obj.attributes.add("myattr", 1234, category="bar")
value = attributes.get("myattr", category="bar")
```
+```{code-block} python
+:caption: In-code, using `AttributeProperty` at class level
+from evennia import DefaultObject
+from evennia import AttributeProperty
-_Attributes_ allow you to to store arbitrary data on objects and make sure the data survives a
-server reboot. An Attribute can store pretty much any
-Python data structure and data type, like numbers, strings, lists, dicts etc. You can also
+class MyObject(DefaultObject):
+ foo = AttributeProperty(default=[1, 2, 3, "bar"])
+ myattr = AttributeProperty(100, category='bar')
+
+```
+
+_Attributes_ allow you to to store arbitrary data on objects and make sure the data survives a server reboot. An Attribute can store pretty much any
+Python data structure and data type, like numbers, strings, lists, dicts etc. You can also
store (references to) database objects like characters and rooms.
-- [What can be stored in an Attribute](#what-types-of-data-can-i-save-in-an-attribute) is a must-read
- also for experienced developers, to avoid getting surprised. Attributes can store _almost_ everything
+- [What can be stored in an Attribute](#what-types-of-data-can-i-save-in-an-attribute) is a must-read to avoid being surprised, also for experienced developers. Attributes can store _almost_ everything
but you need to know the quirks.
-- [NAttributes](#in-memory-attributes-nattributes) are the in-memory, non-persistent
+- [NAttributes](#in-memory-attributes-nattributes) are the in-memory, non-persistent
siblings of Attributes.
- [Managing Attributes In-game](#managing-attributes-in-game) for in-game builder commands.
-## Managing Attributes in Code
+## Managing Attributes in Code
-Attributes are usually handled in code. All [Typeclassed](./Typeclasses.md) entities
-([Accounts](./Accounts.md), [Objects](./Objects.md), [Scripts](./Scripts.md) and
-[Channels](./Channels.md)) all can (and usually do) have Attributes associated with them. There
+Attributes are usually handled in code. All [Typeclassed](./Typeclasses.md) entities
+([Accounts](./Accounts.md), [Objects](./Objects.md), [Scripts](./Scripts.md) and
+[Channels](./Channels.md)) can (and usually do) have Attributes associated with them. There
are three ways to manage Attributes, all of which can be mixed.
- [Using the `.db` property shortcut](#using-db)
@@ -38,10 +48,10 @@ are three ways to manage Attributes, all of which can be mixed.
### Using .db
-The simplest way to get/set Attributes is to use the `.db` shortcut:
+The simplest way to get/set Attributes is to use the `.db` shortcut. This allows for setting and getting Attributes that lack a _category_ (having category `None`)
-```python
-import evennia
+```python
+import evennia
obj = evennia.create_object(key="Foo")
@@ -54,10 +64,10 @@ obj.db.self_reference = obj # stores a reference to the obj
rose = evennia.search_object(key="rose")[0] # returns a list, grab 0th element
rose.db.has_thorns = True
-# retrieving
+# retrieving
val1 = obj.db.foo1
val2 = obj.db.foo2
-weap = obj.db.weapon
+weap = obj.db.weapon
myself = obj.db.self_reference # retrieve reference from db, get object back
is_ouch = rose.db.has_thorns
@@ -65,26 +75,25 @@ is_ouch = rose.db.has_thorns
# this will return None, not AttributeError!
not_found = obj.db.jiwjpowiwwerw
-# returns all Attributes on the object
-obj.db.all
+# returns all Attributes on the object
+obj.db.all
# delete an Attribute
del obj.db.foo2
```
-Trying to access a non-existing Attribute will never lead to an `AttributeError`. Instead
-you will get `None` back. The special `.db.all` will return a list of all Attributes on
-the object. You can replace this with your own Attribute `all` if you want, it will replace the
+Trying to access a non-existing Attribute will never lead to an `AttributeError`. Instead
+you will get `None` back. The special `.db.all` will return a list of all Attributes on
+the object. You can replace this with your own Attribute `all` if you want, it will replace the
default `all` functionality until you delete it again.
### Using .attributes
-If you don't know the name of the Attribute beforehand you can also use
-the `AttributeHandler`, available as `.attributes`. With no extra keywords this is identical
-to using the `.db` shortcut (`.db` is actually using the `AttributeHandler` internally):
+If you want to group your Attribute in a category, or don't know the name of the Attribute beforehand, you can make use of
+the [AttributeHandler](evennia.typeclasses.attributes.AttributeHandler), available as `.attributes` on all typeclassed entities. With no extra keywords, this is identical to using the `.db` shortcut (`.db` is actually using the `AttributeHandler` internally):
+
+```python
+is_ouch = rose.attributes.get("has_thorns")
-```python
-is_ouch = rose.attributes.get("has_thorns")
-
obj.attributes.add("helmet", "Knight's helmet")
helmet = obj.attributes.get("helmet")
@@ -92,10 +101,9 @@ helmet = obj.attributes.get("helmet")
obj.attributes.add("my game log", "long text about ...")
```
-With the `AttributeHandler` you can also give Attributes a `category`. By using a category you can
-separate same-named Attributes on the same object which can help organization:
+By using a category you can separate same-named Attributes on the same object to help organization.
-```python
+```python
# store (let's say we have gold_necklace and ringmail_armor from before)
obj.attributes.add("neck", gold_necklace, category="clothing")
obj.attributes.add("neck", ringmail_armor, category="armor")
@@ -105,23 +113,19 @@ neck_clothing = obj.attributes.get("neck", category="clothing")
neck_armor = obj.attributes.get("neck", category="armor")
```
-If you don't specify a category, the Attribute's `category` will be `None`. Note that
-`None` is also considered a category of its own, so you won't find `None`-category Attributes mixed
-with Attributes having categories.
+If you don't specify a category, the Attribute's `category` will be `None` and can thus also be found via `.db`. `None` is considered a category of its own, so you won't find `None`-category Attributes mixed with Attributes having categories.
-> When using `.db`, you will always use the `None` category.
-
-Here are the methods of the `AttributeHandler`. See
+Here are the methods of the `AttributeHandler`. See
the [AttributeHandler API](evennia.typeclasses.attributes.AttributeHandler) for more details.
- `has(...)` - this checks if the object has an Attribute with this key. This is equivalent
to doing `obj.db.attrname` except you can also check for a specific `category.
-- `get(...)` - this retrieves the given Attribute. You can also provide a `default` value to return
+- `get(...)` - this retrieves the given Attribute. You can also provide a `default` value to return
if the Attribute is not defined (instead of None). By supplying an
`accessing_object` to the call one can also make sure to check permissions before modifying
- anything. The `raise_exception` kwarg allows you to raise an `AttributeError` instead of returning
- `None` when you access a non-existing `Attribute`. The `strattr` kwarg tells the system to store
- the Attribute as a raw string rather than to pickle it. While an optimization this should usually
+ anything. The `raise_exception` kwarg allows you to raise an `AttributeError` instead of returning
+ `None` when you access a non-existing `Attribute`. The `strattr` kwarg tells the system to store
+ the Attribute as a raw string rather than to pickle it. While an optimization this should usually
not be used unless the Attribute is used for some particular, limited purpose.
- `add(...)` - this adds a new Attribute to the object. An optional [lockstring](./Locks.md) can be
supplied here to restrict future access and also the call itself may be checked against locks.
@@ -131,31 +135,30 @@ the [AttributeHandler API](evennia.typeclasses.attributes.AttributeHandler) for
Examples:
-```python
+```python
try:
- # raise error if Attribute foo does not exist
+ # raise error if Attribute foo does not exist
val = obj.attributes.get("foo", raise_exception=True):
except AttributeError:
# ...
-
+
# return default value if foo2 doesn't exist
-val2 = obj.attributes.get("foo2", default=[1, 2, 3, "bar"])
+val2 = obj.attributes.get("foo2", default=[1, 2, 3, "bar"])
# delete foo if it exists (will silently fail if unset, unless
# raise_exception is set)
obj.attributes.remove("foo")
-
+
# view all clothes on obj
-all_clothes = obj.attributes.all(category="clothes")
+all_clothes = obj.attributes.all(category="clothes")
```
-### Using AttributeProperty
+### Using AttributeProperty
-There is a third way to set up an Attribute, and that is by setting up an `AttributeProperty`. This
-is done on the _class level_ of your typeclass and allows you to treat Attributes a bit like Django
-database Fields.
+The third way to set up an Attribute is to use an `AttributeProperty`. This
+is done on the _class level_ of your typeclass and allows you to treat Attributes a bit like Django database Fields. Unlike using `.db` and `.attributes`, an `AttributeProperty` can't be created on the fly, you must assign it in the class code.
-```python
+```python
# mygame/typeclasses/characters.py
from evennia import DefaultCharacter
@@ -163,161 +166,90 @@ from evennia.typeclasses.attributes import AttributeProperty
class Character(DefaultCharacter):
- strength = AttributeProperty(default=10, category='stat', autocreate=True)
- constitution = AttributeProperty(default=10, category='stat', autocreate=True)
- agility = AttributeProperty(default=10, category='stat', autocreate=True)
- magic = AttributeProperty(default=10, category='stat', autocreate=True)
-
- sleepy = AttributeProperty(default=False)
- poisoned = AttributeProperty(default=False)
-
- def at_object_creation(self):
- # ...
-```
-
-These "Attribute-properties" will be made available to all instances of the class.
-
-```{important}
-If you change the `default` of an `AttributeProperty` (and reload), it will
-change the default for _all_ instances of that class (it will not override
-explicitly changed values).
-```
-
-```python
-char = evennia.search_object(Character, key="Bob")[0] # returns list, get 0th element
-
-# get defaults
-strength = char.strength # will get the default value 10
-
-# assign new values (this will create/update new Attributes)
-char.strength = 12
-char.constitution = 16
-char.agility = 8
-char.magic = 2
-
-# you can also do arithmetic etc
-char.magic += 2 # char.magic is now 4
-
-# check Attributes
-strength = char.strength # this is now 12
-is_sleepy = char.sleepy
-is_poisoned = char.poisoned
-
-del char.strength # wipes the Attribute
-strength = char.strengh # back to the default (10) again
-```
-
-See the [AttributeProperty](evennia.typeclasses.attributes.AttributeProperty) docs for more
-details on arguments.
-
-An `AttributeProperty` will _not_ create an `Attribute` by default. A new `Attribute` will be created
-(or an existing one retrieved/updated) will happen differently depending on how the `autocreate`
-keyword:
-
-- If `autocreate=False` (default), an `Attribute` will be created only if the field is explicitly
- assigned a value (even if the value is the same as the default, such as `char.strength = 10`).
-- If `autocreate=True`, an `Attribute` will be created as soon as the field is _accessed_ in
- any way (So both `strength = char.strength` and `char.strength = 10` will both make sure that
- an `Attribute` exists.
-
-Example:
-
-```python
-# in mygame/typeclasses/objects.py
-
-from evennia import create_object
-from evennia import DefaultObject
-from evennia.typeclasses.attributes import AttributeProperty
-
-class Object(DefaultObject):
-
- value_a = AttributeProperty(default="foo")
- value_b = AttributeProperty(default="bar", autocreate=True)
-
-obj = evennia.create_object(key="Dummy")
-
-# these will find NO Attributes!
-obj.db.value_a
-obj.attributes.get("value_a")
-obj.db.value_b
-obj.attributes.get("value_b")
-
-# get data from attribute-properties
-vala = obj.value_a # returns "foo"
-valb = obj.value_b # return "bar" AND creates the Attribute (autocreate)
-
-# the autocreate property will now be found
-obj.db.value_a # still not found
-obj.attributes.get("value_a") # ''
-obj.db.value_b # now returns "bar"
-obj.attributes.get("value_b") # ''
-
-# assign new values
-obj.value_a = 10 # will now create a new Attribute
-obj.value_b = 12 # will update the existing Attribute
-
-# both are now found as Attributes
-obj.db.value_a # now returns 10
-obj.attributes.get("value_a") # ''
-obj.db.value_b # now returns 12
-obj.attributes.get("value_b") # ''
-```
-
-If you always access your Attributes via the `AttributeProperty` this does not matter that much
-(it's also a bit of an optimization to not create an actual database `Attribute` unless the value changed).
-But until an `Attribute` has been created, `AttributeProperty` fields will _not_ show up with the
-`examine` command or by using the `.db` or `.attributes` handlers - so this is a bit inconsistent.
-If this is important, you need to 'initialize' them by accessing them at least once ... something
-like this:
-
-
-```python
-# ...
-class Character(DefaultCharacter):
-
- strength = AttributeProperty(12, autocreate=True)
- agility = AttributeProperty(12, autocreate=True)
+ strength = AttributeProperty(10, category='stat')
+ constitution = AttributeProperty(11, category='stat')
+ agility = AttributeProperty(12, category='stat')
+ magic = AttributeProperty(13, category='stat')
+ sleepy = AttributeProperty(False, autocreate=False)
+ poisoned = AttributeProperty(False, autocreate=False)
def at_object_creation(self):
- # initializing
- self.strength # by accessing it, the Attribute is auto-created
- self.agility # ''
+ # ...
```
-```{important}
-If you created your `AttributeProperty` with a `category`, you *must* specify the
-category in `.attributes.get()` if you want to find it this way. Remember that
-`.db` always uses a `category` of `None`.
+When a new instance of the class is created, new `Attributes` will be created with the value and category given.
+
+With `AttributeProperty`'s set up like this, one can access the underlying `Attribute` like a regular property on the created object:
+
+```python
+char = create_object(Character)
+
+char.strength # returns 10
+char.agility = 15 # assign a new value (category remains 'stat')
+
+char.db.magic # returns None (wrong category)
+char.attributes.get("agility", category="stat") # returns 15
+
+char.db.sleepy # returns None because autocreate=False (see below)
+
```
+```{warning}
+Be careful to not assign AttributeProperty's to names of properties and methods already existing on the class, like 'key' or 'at_object_creation'. That could lead to very confusing errors.
+```
+
+The `autocreate=False` (default is `True`) used for `sleepy` and `poisoned` is worth a closer explanation. When `False`, _no_ Attribute will be auto-created for these AttributProperties unless they are _explicitly_ set.
+The advantage of not creating an Attribute is that the default value given to `AttributeProperty` is returned with no database access unless you change it. This also means that if you want to change the default later, all entities previously create will inherit the new default.
+The drawback is that without a database precense you can't find the Attribute via `.db` and `.attributes.get` (or by querying for it in other ways in the database):
+
+```python
+char.sleepy # returns False, no db access
+
+char.db.sleepy # returns None - no Attribute exists
+char.attributes.get("sleepy") # returns None too
+
+char.sleepy = True # now an Attribute is created
+char.db.sleepy # now returns True!
+char.attributes.get("sleepy") # now returns True
+
+char.sleepy # now returns True, involves db access
+
+```
+
+You can e.g. `del char.strength` to set the value back to the default (the value defined
+in the `AttributeProperty`).
+
+See the [AttributeProperty API](evennia.typeclasses.attributes.AttributeProperty) for more details on how to create it with special options, like giving access-restrictions.
+
+
## Managing Attributes in-game
-Attributes are mainly used by code. But one can also allow the builder to use Attributes to
-'turn knobs' in-game. For example a builder could want to manually tweak the "level" Attribute of an
+Attributes are mainly used by code. But one can also allow the builder to use Attributes to
+'turn knobs' in-game. For example a builder could want to manually tweak the "level" Attribute of an
enemy NPC to lower its difficuly.
-When setting Attributes this way, you are severely limited in what can be stored - this is because
+When setting Attributes this way, you are severely limited in what can be stored - this is because
giving players (even builders) the ability to store arbitrary Python would be a severe security
-problem.
+problem.
-In game you can set an Attribute like this:
+In game you can set an Attribute like this:
set myobj/foo = "bar"
-To view, do
+To view, do
- set myobj/foo
+ set myobj/foo
-or see them together with all object-info with
+or see them together with all object-info with
examine myobj
-The first `set`-example will store a new Attribute `foo` on the object `myobj` and give it the
+The first `set`-example will store a new Attribute `foo` on the object `myobj` and give it the
value "bar".
-You can store numbers, booleans, strings, tuples, lists and dicts this way. But if
+You can store numbers, booleans, strings, tuples, lists and dicts this way. But if
you store a list/tuple/dict they must be proper Python structures and may _only_ contain strings
-or numbers. If you try to insert an unsupported structure, the input will be converted to a
+or numbers. If you try to insert an unsupported structure, the input will be converted to a
string.
set myobj/mybool = True
@@ -331,8 +263,8 @@ For the last line you'll get a warning and the value instead will be saved as a
## Locking and checking Attributes
-While the `set` command is limited to builders, individual Attributes are usually not
-locked down. You may want to lock certain sensitive Attributes, in particular for games
+While the `set` command is limited to builders, individual Attributes are usually not
+locked down. You may want to lock certain sensitive Attributes, in particular for games
where you allow player building. You can add such limitations by adding a [lock string](./Locks.md)
to your Attribute. A NAttribute have no locks.
@@ -341,7 +273,7 @@ The relevant lock types are
- `attrread` - limits who may read the value of the Attribute
- `attredit` - limits who may set/change this Attribute
-You must use the `AttributeHandler` to assign the lockstring to the Attribute:
+You must use the `AttributeHandler` to assign the lockstring to the Attribute:
```python
lockstring = "attread:all();attredit:perm(Admins)"
@@ -349,7 +281,7 @@ obj.attributes.add("myattr", "bar", lockstring=lockstring)"
```
If you already have an Attribute and want to add a lock in-place you can do so
-by having the `AttributeHandler` return the `Attribute` object itself (rather than
+by having the `AttributeHandler` return the `Attribute` object itself (rather than
its value) and then assign the lock to it directly:
```python
@@ -361,8 +293,8 @@ Note the `return_obj` keyword which makes sure to return the `Attribute` object
could be accessed.
A lock is no good if nothing checks it -- and by default Evennia does not check locks on Attributes.
-To check the `lockstring` you provided, make sure you include `accessing_obj` and set
-`default_access=False` as you make a `get` call.
+To check the `lockstring` you provided, make sure you include `accessing_obj` and set
+`default_access=False` as you make a `get` call.
```python
# in some command code where we want to limit
@@ -396,13 +328,13 @@ values into a string representation before storing it to the database. This is d
With a single object, we mean anything that is *not iterable*, like numbers, strings or custom class
instances without the `__iter__` method.
-* You can generally store any non-iterable Python entity that can be pickled.
-* Single database objects/typeclasses can be stored, despite them normally not being possible
- to pickle. Evennia wil convert them to an internal representation using their classname,
- database-id and creation-date with a microsecond precision. When retrieving, the object
+* You can generally store any non-iterable Python entity that can be _pickled_.
+* Single database objects/typeclasses can be stored, despite them normally not being possible
+ to pickle. Evennia will convert them to an internal representation using theihr classname,
+ database-id and creation-date with a microsecond precision. When retrieving, the object
instance will be re-fetched from the database using this information.
-* To convert the database object, Evennia must know it's there. If you *hide* a database object
- inside a non-iterable class, you will run into errors - this is not supported!
+* If you 'hide' a db-obj as a property on a custom class, Evennia will not be
+ able to find it to serialize it. For that you need to help it out (see below).
```{code-block} python
:caption: Valid assignments
@@ -413,16 +345,55 @@ obj.db.test1 = False
# a database object (will be stored as an internal representation)
obj.db.test2 = myobj
```
+
+As mentioned, Evennia will not be able to automatically serialize db-objects
+'hidden' in arbitrary properties on an object. This will lead to an error
+when saving the Attribute.
+
```{code-block} python
:caption: Invalid, 'hidden' dbobject
-
-# example of an invalid, "hidden" dbobject
+# example of storing an invalid, "hidden" dbobject in Attribute
class Container:
def __init__(self, mydbobj):
# no way for Evennia to know this is a database object!
self.mydbobj = mydbobj
+
+# let's assume myobj is a db-object
container = Container(myobj)
-obj.db.invalid = container # will cause error!
+obj.db.mydata = container # will raise error!
+
+```
+
+By adding two methods `__serialize_dbobjs__` and `__deserialize_dbobjs__` to the
+object you want to save, you can pre-serialize and post-deserialize all 'hidden'
+objects before Evennia's main serializer gets to work. Inside these methods, use Evennia's
+[evennia.utils.dbserialize.dbserialize](evennia.utils.dbserialize.dbserialize) and
+[dbunserialize](evennia.utils.dbserialize.dbunserialize) functions to safely
+serialize the db-objects you want to store.
+
+```{code-block} python
+:caption: Fixing an invalid 'hidden' dbobj for storing in Attribute
+
+from evennia.utils import dbserialize # important
+
+class Container:
+ def __init__(self, mydbobj):
+ # A 'hidden' db-object
+ self.mydbobj = mydbobj
+
+ def __serialize_dbobjs__(self):
+ """This is called before serialization and allows
+ us to custom-handle those 'hidden' dbobjs"""
+ self.mydbobj = dbserialize.dbserialize(self.mydbobj
+
+ def __deserialize_dbobjs__(self):
+ """This is called after deserialization and allows you to
+ restore the 'hidden' dbobjs you serialized before"""
+ self.mydbobj = dbserialize.dbunserialize(self.mydbobj)
+
+# let's assume myobj is a db-object
+container = Container(myobj)
+obj.db.mydata = container # will now work fine!
```
### Storing multiple objects
@@ -472,6 +443,12 @@ obj.db.test8[2]["test"] = 5
# test8 is now [4,2,{"test":5}]
```
+Note that if make some advanced iterable object, and store an db-object on it in
+a way such that it is _not_ returned by iterating over it, you have created a
+'hidden' db-object. See [the previous section](#storing-single-objects) for how
+to tell Evennia how to serialize such hidden objects safely.
+
+
### Retrieving Mutable objects
A side effect of the way Evennia stores Attributes is that *mutable* iterables (iterables that can
@@ -497,41 +474,41 @@ print(obj.db.mylist) # now also [1, 2, 3, 5]
```
When you extract your mutable Attribute data into a variable like `mylist`, think of it as getting a _snapshot_
-of the variable. If you update the snapshot, it will save to the database, but this change _will not propagate to
+of the variable. If you update the snapshot, it will save to the database, but this change _will not propagate to
any other snapshots you may have done previously_.
-```python
+```python
obj.db.mylist = [1, 2, 3, 4]
-mylist1 = obj.db.mylist
-mylist2 = obj.db.mylist
-mylist1[3] = 5
+mylist1 = obj.db.mylist
+mylist2 = obj.db.mylist
+mylist1[3] = 5
print(mylist1) # this is now [1, 2, 3, 5]
-print(obj.db.mylist) # also updated to [1, 2, 3, 5]
+print(obj.db.mylist) # also updated to [1, 2, 3, 5]
-print(mylist2) # still [1, 2, 3, 4] !
+print(mylist2) # still [1, 2, 3, 4] !
```
```{sidebar}
Remember, the complexities of this section only relate to *mutable* iterables - things you can update
-in-place, like lists and dicts. [Immutable](https://en.wikipedia.org/wiki/Immutable) objects (strings,
+in-place, like lists and dicts. [Immutable](https://en.wikipedia.org/wiki/Immutable) objects (strings,
numbers, tuples etc) are already disconnected from the database from the onset.
```
-To avoid confusion with mutable Attributes, only work with one variable (snapshot) at a time and save
-back the results as needed.
+To avoid confusion with mutable Attributes, only work with one variable (snapshot) at a time and save
+back the results as needed.
You can also choose to "disconnect" the Attribute entirely from the
database with the help of the `.deserialize()` method:
```python
obj.db.mylist = [1, 2, 3, 4, {1: 2}]
-mylist = obj.db.mylist.deserialize()
+mylist = obj.db.mylist.deserialize()
```
The result of this operation will be a structure only consisting of normal Python mutables (`list`
-instead of `_SaverList`, `dict` instead of `_SaverDict` and so on). If you update it, you need to
+instead of `_SaverList`, `dict` instead of `_SaverDict` and so on). If you update it, you need to
explicitly save it back to the Attribute for it to save.
## Properties of Attributes
@@ -586,7 +563,7 @@ are **non-persistent** - they will _not_ survive a server reload.
Differences between `Attributes` and `NAttributes`:
- `NAttribute`s are always wiped on a server reload.
-- They only exist in memory and never involve the database at all, making them faster to
+- They only exist in memory and never involve the database at all, making them faster to
access and edit than `Attribute`s.
- `NAttribute`s can store _any_ Python structure (and database object) without limit.
- They can _not_ be set with the standard `set` command (but they are visible with `examine`)
@@ -594,10 +571,10 @@ Differences between `Attributes` and `NAttributes`:
There are some important reasons we recommend using `ndb` to store temporary data rather than
the simple alternative of just storing a variable directly on an object:
-- NAttributes are tracked by Evennia and will not be purged in various cache-cleanup operations
- the server may do. So using them guarantees that they'll remain available at least as long as
+- NAttributes are tracked by Evennia and will not be purged in various cache-cleanup operations
+ the server may do. So using them guarantees that they'll remain available at least as long as
the server lives.
-- It's a consistent style - `.db/.attributes` and `.ndb/.nattributes` makes for clean-looking code
+- It's a consistent style - `.db/.attributes` and `.ndb/.nattributes` makes for clean-looking code
where it's clear how long-lived (or not) your data is to be.
### Persistent vs non-persistent
@@ -625,4 +602,4 @@ useful in a few situations though.
- `NAttribute`s have no restrictions at all on what they can store, since they
don't need to worry about being saved to the database - they work very well for temporary storage.
- You want to implement a fully or partly *non-persistent world*. Who are we to argue with your
- grand vision!
\ No newline at end of file
+ grand vision!
diff --git a/docs/1.0-dev/_sources/Components/FuncParser.md.txt b/docs/1.0-dev/_sources/Components/FuncParser.md.txt
index cb51d80c6b..3bc8260bd2 100644
--- a/docs/1.0-dev/_sources/Components/FuncParser.md.txt
+++ b/docs/1.0-dev/_sources/Components/FuncParser.md.txt
@@ -10,14 +10,15 @@ the return from the function.
from evennia.utils.funcparser import FuncParser
def _power_callable(*args, **kwargs):
- """This will be callable as $square(number, power=) in string"""
+ """This will be callable as $pow(number, power=) in string"""
pow = int(kwargs.get('power', 2))
return float(args[0]) ** pow
+# create a parser and tell it that '$pow' means using _power_callable
parser = FuncParser({"pow": _power_callable})
```
-Next, just pass a string into the parser, optionally containing `$func(...)` markers:
+Next, just pass a string into the parser, containing `$func(...)` markers:
```python
parser.parse("We have that 4 x 4 x 4 is $pow(4, power=3).")
@@ -71,7 +72,7 @@ You can apply inline function parsing to any string. The
from evennia.utils import funcparser
parser = FuncParser(callables, **default_kwargs)
-parsed_string = parser.parser(input_string, raise_errors=False,
+parsed_string = parser.parse(input_string, raise_errors=False,
escape=False, strip=False,
return_str=True, **reserved_kwargs)
@@ -90,8 +91,12 @@ available to the parser as you parse strings with it. It can either be
an underscore `_`) will be considered a suitable callable. The name of the function will be the `$funcname`
by which it can be called.
- A `list` of modules/paths. This allows you to pull in modules from many sources for your parsing.
+- The `**default` kwargs are optional kwargs that will be passed to _all_
+ callables every time this parser is used - unless the user overrides it explicitly in
+ their call. This is great for providing sensible standards that the user can
+ tweak as needed.
-The other arguments to the parser:
+`FuncParser.parse` takes further arguments, and can vary for every string parsed.
- `raise_errors` - By default, any errors from a callable will be quietly ignored and the result
will be that the failing function call will show verbatim. If `raise_errors` is set,
@@ -102,12 +107,14 @@ The other arguments to the parser:
- `return_str` - When `True` (default), `parser` always returns a string. If `False`, it may return
the return value of a single function call in the string. This is the same as using the `.parse_to_any`
method.
-- The `**default/reserved_keywords` are optional and allow you to pass custom data into _every_ function
- call. This is great for including things like the current session or config options. Defaults can be
- replaced if the user gives the same-named kwarg in the string's function call. Reserved kwargs are always passed,
- ignoring defaults or what the user passed. In addition, the `funcparser` and `raise_errors`
- reserved kwargs are always passed - the first is a back-reference to the `FuncParser` instance and the second
- is the `raise_errors` boolean passed into `FuncParser.parse`.
+- The `**reserved_keywords` are _always_ passed to every callable in the string.
+ They override any `**defaults` given when instantiating the parser and cannot
+ be overridden by the user - if they enter the same kwarg it will be ignored.
+ This is great for providing the current session, settings etc.
+- The `funcparser` and `raise_errors`
+ are always added as reserved keywords - the first is a
+ back-reference to the `FuncParser` instance and the second
+ is the `raise_errors` boolean given to `FuncParser.parse`.
Here's an example of using the default/reserved keywords:
@@ -158,7 +165,8 @@ created the parser.
However, if you _nest_ functions, the return of the innermost function may be something other than
a string. Let's introduce the `$eval` function, which evaluates simple expressions using
-Python's `literal_eval` and/or `simple_eval`.
+Python's `literal_eval` and/or `simple_eval`. It returns whatever data type it
+evaluates to.
"There's a $toint($eval(10 * 2.2))% chance of survival."
@@ -177,23 +185,66 @@ will be a string:
"There's a 22% chance of survival."
```
-However, if you use the `parse_to_any` (or `parse(..., return_str=True)`) and _don't add any extra string around the outermost function call_,
+However, if you use the `parse_to_any` (or `parse(..., return_str=False)`) and
+_don't add any extra string around the outermost function call_,
you'll get the return type of the outermost callable back:
```python
-parser.parse_to_any("$toint($eval(10 * 2.2)%")
-"22%"
parser.parse_to_any("$toint($eval(10 * 2.2)")
22
+parser.parse_to_any("the number $toint($eval(10 * 2.2).")
+"the number 22"
+parser.parse_to_any("$toint($eval(10 * 2.2)%")
+"22%"
```
+### Escaping special character
+
+When entering funcparser callables in strings, it looks like a regular
+function call inside a string:
+
+```python
+"This is a $myfunc(arg1, arg2, kwarg=foo)."
+```
+
+Commas (`,`) and equal-signs (`=`) are considered to separate the arguments and
+kwargs. In the same way, the right parenthesis (`)`) closes the argument list.
+Sometimes you want to include commas in the argument without it breaking the
+argument list.
+
+```python
+"There is a $format(beautiful meadow, with dandelions) to the west."
+```
+
+You can escape in various ways.
+
+- Prepending with the escape character `\`
+
+ ```python
+ "There is a $format(beautiful meadow\, with dandelions) to the west."
+ ```
+- Wrapping your strings in quotes. This works like Python, and you can nest
+ double and single quotes inside each other if so needed. The result will
+ be a verbatim string that contains everything but the outermost quotes.
+
+ ```python
+ "There is a $format('beautiful meadow, with dandelions') to the west."
+ ```
+- If you want verbatim quotes in your string, you can escape them too.
+
+ ```python
+ "There is a $format('beautiful meadow, with \'dandelions\'') to the west."
+ ```
+
### Safe convertion of inputs
-Since you don't know in which order users may use your callables, they should always check the types
-of its inputs and convert to the type the callable needs. Note also that when converting from strings,
-there are limits what inputs you can support. This is because FunctionParser strings are often used by
-non-developer players/builders and some things (such as complex classes/callables etc) are just not
-safe/possible to convert from string representation.
+Since you don't know in which order users may use your callables, they should
+always check the types of its inputs and convert to the type the callable needs.
+Note also that when converting from strings, there are limits what inputs you
+can support. This is because FunctionParser strings can be used by
+non-developer players/builders and some things (such as complex
+classes/callables etc) are just not safe/possible to convert from string
+representation.
In `evennia.utils.utils` is a helper called
[safe_convert_to_types](evennia.utils.utils.safe_convert_to_types). This function
@@ -204,19 +255,24 @@ from evennia.utils.utils import safe_convert_to_types
def _process_callable(*args, **kwargs):
"""
- A callable with a lot of custom options
-
- $process(expression, local, extra=34, extra2=foo)
+ $process(expression, local, extra1=34, extra2=foo)
"""
args, kwargs = safe_convert_to_type(
- (('py', 'py'), {'extra1': int, 'extra2': str}),
+ (('py', str), {'extra1': int, 'extra2': str}),
*args, **kwargs)
# args/kwargs should be correct types now
```
+In other words, in the callable `$process(expression, local, extra1=..,
+extra2=...)`, the first argument will be handled by the 'py' converter
+(described below), the second will passed through regular Python `str`,
+kwargs will be handled by `int` and `str` respectively. You can supply
+your own converter function as long as it takes one argument and returns
+the converted result.
+
In other words,
```python
@@ -224,8 +280,7 @@ args, kwargs = safe_convert_to_type(
(tuple_of_arg_converters, dict_of_kwarg_converters), *args, **kwargs)
```
-Each converter should be a callable taking one argument - this will be the arg/kwarg-value to convert. The
-special converter `"py"` will try to convert a string argument to a Python structure with the help of the
+The special converter `"py"` will try to convert a string argument to a Python structure with the help of the
following tools (which you may also find useful to experiment with on your own):
- [ast.literal_eval](https://docs.python.org/3.8/library/ast.html#ast.literal_eval) is an in-built Python
@@ -339,12 +394,12 @@ references to other objects accessible via these callables.
result of `you_obj.get_display_name(looker=receiver)`. This allows for a single string to echo differently
depending on who sees it, and also to reference other people in the same way.
- `$You([key])` - same as `$you` but always capitalized.
-- `$conj(verb)` ([code](evennia.utils.funcparser.funcparser_callable_conjugate)) - conjugates a verb
+- `$conj(verb)` ([code](evennia.utils.funcparser.funcparser_callable_conjugate)) - conjugates a verb
between 2nd person presens to 3rd person presence depending on who
sees the string. For example `"$You() $conj(smiles)".` will show as "You smile." and "Tom smiles." depending
on who sees it. This makes use of the tools in [evennia.utils.verb_conjugation](evennia.utils.verb_conjugation)
to do this, and only works for English verbs.
-- `$pron(pronoun [,options])` ([code](evennia.utils.funcparser.funcparser_callable_pronoun)) - Dynamically
+- `$pron(pronoun [,options])` ([code](evennia.utils.funcparser.funcparser_callable_pronoun)) - Dynamically
map pronouns (like his, herself, you, its etc) between 1st/2nd person to 3rd person.
### Example
diff --git a/docs/1.0-dev/_sources/Components/Permissions.md.txt b/docs/1.0-dev/_sources/Components/Permissions.md.txt
index cac5e05b0f..84d4028a77 100644
--- a/docs/1.0-dev/_sources/Components/Permissions.md.txt
+++ b/docs/1.0-dev/_sources/Components/Permissions.md.txt
@@ -17,7 +17,7 @@ All new accounts are given a default set of permissions defined by
## Managing Permissions
In-game, you use the `perm` command to add and remove permissions
-
+j
perm/account Tommy = Builders
perm/account/del Tommy = Builders
diff --git a/docs/1.0-dev/_sources/Components/Tags.md.txt b/docs/1.0-dev/_sources/Components/Tags.md.txt
index 2234c1c14b..c3f7ce3b30 100644
--- a/docs/1.0-dev/_sources/Components/Tags.md.txt
+++ b/docs/1.0-dev/_sources/Components/Tags.md.txt
@@ -1,20 +1,33 @@
# Tags
+```{code-block}
+:caption: In game
+> tag obj = tagname
+```
+```{code-block} python
+:caption: In code, using .tags (TagHandler)
-A common task of a game designer is to organize and find groups of objects and do operations on
-them. A classic example is to have a weather script affect all "outside" rooms. Another would be for
-a player casting a magic spell that affects every location "in the dungeon", but not those
-"outside". Another would be to quickly find everyone joined with a particular guild or everyone
-currently dead.
+obj.tags.add("mytag", category="foo")
+obj.tags.get("mytag", category="foo")
+```
-*Tags* are short text labels that you attach to objects so as to easily be able to retrieve and
-group them. An Evennia entity can be tagged with any number of Tags. On the database side, Tag
-entities are *shared* between all objects with that tag. This makes them very efficient but also
-fundamentally different from [Attributes](./Attributes.md), each of which always belongs to one *single*
-object.
+```{code-block} python
+:caption: In code, using TagProperty (auto-assign tag to all instances of the class)
-In Evennia, Tags are technically also used to implement `Aliases` (alternative names for objects)
-and `Permissions` (simple strings for [Locks](./Locks.md) to check for).
+from evennia import DefaultObject
+from evennia import TagProperty
+class Sword(DefaultObject):
+ can_be_wielded = TagProperty(category='combat')
+ has_sharp_edge = TagProperty(category='combat')
+
+```
+
+_Tags_ are short text lables one can 'hang' on objects in order to organize, group and quickly find out their properties. An Evennia entity can be tagged by any number of tags. They are more efficient than [Attributes](./Attributes.md) since on the database-side, Tags are _shared_ between all objects with that particular tag. A tag does not carry a value in itself; it either sits on the entity
+
+Above, the tags inform us that the `Sword` is both sharp and can be wielded. If that's all they do, they could just be a normal Python flag. When tags become important is if there are a lot of objects with different combinations of tags. Maybe you have a magical spell that dulls _all_ sharp-edged objects in the castle - whether sword, dagger, spear or kitchen knife! You can then just grab all objects with the `has_sharp_edge` tag.
+Another example would be a weather script affecting all rooms tagged as `outdoors` or finding all characters tagged with `belongs_to_fighter_guild`.
+
+In Evennia, Tags are technically also used to implement `Aliases` (alternative names for objects) and `Permissions` (simple strings for [Locks](./Locks.md) to check for).
## Properties of Tags (and Aliases and Permissions)
diff --git a/docs/1.0-dev/_sources/Concepts/Internationalization.md.txt b/docs/1.0-dev/_sources/Concepts/Internationalization.md.txt
index 1db1753dd2..733d28dd86 100644
--- a/docs/1.0-dev/_sources/Concepts/Internationalization.md.txt
+++ b/docs/1.0-dev/_sources/Concepts/Internationalization.md.txt
@@ -17,7 +17,7 @@ updated after May 2021 will be missing some translations.
+===============+======================+==============+
| es | Spanish | Aug 2019 |
+---------------+----------------------+--------------+
-| fr | French | Nov 2018 |
+| fr | French | Mar 2022 |
+---------------+----------------------+--------------+
| it | Italian | Feb 2015 |
+---------------+----------------------+--------------+
diff --git a/docs/1.0-dev/_sources/Contribs/Contrib-Components.md.txt b/docs/1.0-dev/_sources/Contribs/Contrib-Components.md.txt
index 60e24e219b..63932e24bf 100644
--- a/docs/1.0-dev/_sources/Contribs/Contrib-Components.md.txt
+++ b/docs/1.0-dev/_sources/Contribs/Contrib-Components.md.txt
@@ -39,7 +39,7 @@ class Health(Component):
Components may define DBFields or NDBFields at the class level.
DBField will store its values in the host's DB with a prefixed key.
NDBField will store its values in the host's NDB and will not persist.
-The key used will be 'component_name__field_name'.
+The key used will be 'component_name::field_name'.
They use AttributeProperty under the hood.
Example:
@@ -50,7 +50,29 @@ class Health(Component):
health = DBField(default=1)
```
-Note that default is optional and will default to None
+Note that default is optional and will default to None.
+
+Adding a component to a host will also a similarly named tag with 'components' as category.
+A Component named health will appear as key="health, category="components".
+This allows you to retrieve objects with specific components by searching with the tag.
+
+It is also possible to add Component Tags the same way, using TagField.
+TagField accepts a default value and can be used to store a single or multiple tags.
+Default values are automatically added when the component is added.
+Component Tags are cleared from the host if the component is removed.
+
+Example:
+```python
+from evennia.contrib.base_systems.components import Component, TagField
+
+class Health(Component):
+ resistances = TagField()
+ vulnerability = TagField(default="fire", enforce_single=True)
+```
+
+The 'resistances' field in this example can be set to multiple times and it will keep the added tags.
+The 'vulnerability' field in this example will override the previous tag with the new one.
+
Each typeclass using the ComponentHolderMixin can declare its components
diff --git a/docs/1.0-dev/_sources/Howtos/Beginner-Tutorial/Part1/Building-Quickstart.md.txt b/docs/1.0-dev/_sources/Howtos/Beginner-Tutorial/Part1/Building-Quickstart.md.txt
index 3407ece825..c1f8daa202 100644
--- a/docs/1.0-dev/_sources/Howtos/Beginner-Tutorial/Part1/Building-Quickstart.md.txt
+++ b/docs/1.0-dev/_sources/Howtos/Beginner-Tutorial/Part1/Building-Quickstart.md.txt
@@ -115,7 +115,7 @@ Try to `look` at the box to see the (default) description.
The description you get is not very exciting. Let's add some flavor.
- describe box = This is a large and very heavy box.
+ desc box = This is a large and very heavy box.
If you try the `get` command we will pick up the box. So far so good, but if we really want this to
be a large and heavy box, people should _not_ be able to run off with it that easily. To prevent
@@ -155,10 +155,10 @@ later, in the [Commands tutorial](./Adding-Commands.md).
[Scripts](../../../Components/Scripts.md) are powerful out-of-character objects useful for many "under the hood" things.
One of their optional abilities is to do things on a timer. To try out a first script, let's put one
-on ourselves. There is an example script in `evennia/contrib/tutorial_examples/bodyfunctions.py`
+on ourselves. There is an example script in `evennia/contrib/tutorials/bodyfunctions/bodyfunctions.py`
that is called `BodyFunctions`. To add this to us we will use the `script` command:
- script self = tutorial_examples.bodyfunctions.BodyFunctions
+ script self = tutorials.bodyfunctions.BodyFunctions
This string will tell Evennia to dig up the Python code at the place we indicate. It already knows
to look in the `contrib/` folder, so we don't have to give the full path.
@@ -179,7 +179,7 @@ output every time it fires.
When you are tired of your character's "insights", kill the script with
- script/stop self = tutorial_examples.bodyfunctions.BodyFunctions
+ script/stop self = tutorials.bodyfunctions.BodyFunctions
You create your own scripts in Python, outside the game; the path you give to `script` is literally
the Python path to your script file. The [Scripts](../../../Components/Scripts.md) page explains more details.
@@ -199,7 +199,7 @@ named simply `Object`. Let's create an object that is a little more interesting.
Let's make us one of _those_!
- create/drop button:tutorial_examples.red_button.RedButton
+ create/drop button:tutorials.red_button.RedButton
The same way we did with the Script Earler, we specify a "Python-path" to the Python code we want Evennia
to use for creating the object. There you go - one red button.
@@ -301,7 +301,7 @@ The Command-help is something you modify in Python code. We'll get to that when
add Commands. But you can also add regular help entries, for example to explain something about
the history of your game world:
- sethelp/add History = At the dawn of time ...
+ sethelp History = At the dawn of time ...
You will now find your new `History` entry in the `help` list and read your help-text with `help History`.
diff --git a/docs/1.0-dev/_sources/Links.md.txt b/docs/1.0-dev/_sources/Links.md.txt
index ed9cdb5714..088ba072c6 100644
--- a/docs/1.0-dev/_sources/Links.md.txt
+++ b/docs/1.0-dev/_sources/Links.md.txt
@@ -2,137 +2,130 @@
*A list of resources that may be useful for Evennia users and developers.*
-## Official Evennia links
+## Official Evennia resources
- [evennia.com](https://www.evennia.com) - Main Evennia portal page. Links to all corners of Evennia.
-- [Evennia github page](https://github.com/evennia/evennia) - Download code and read documentation.
-- [Evennia official chat
-channel](https://webchat.freenode.net/?channels=evennia&uio=MT1mYWxzZSY5PXRydWUmMTE9MTk1JjEyPXRydWUbb)
-- Our official IRC chat #evennia at irc.freenode.net:6667.
-- [Evennia forums/mailing list](https://groups.google.com/group/evennia) - Web interface to our
-google group.
-- [Evennia development blog](https://evennia.blogspot.com/) - Musings from the lead developer.
- [Evennia's manual on ReadTheDocs](https://readthedocs.org/projects/evennia/) - Read and download
offline in html, PDF or epub formats.
-- [Evennia Game Index](http://games.evennia.com/) - An automated listing of Evennia games.
-----
+- [Evennia development blog](https://evennia.blogspot.com/) - Musings from the lead developer.
+- [Evennia on GitHub](https://github.com/evennia/evennia) - Download code and read documentation.
- [Evennia on Open Hub](https://www.openhub.net/p/6906)
- [Evennia on OpenHatch](https://openhatch.org/projects/Evennia)
- [Evennia on PyPi](https://pypi.python.org/pypi/Evennia-MUD-Server/)
-- [Evennia subreddit](https://www.reddit.com/r/Evennia/) (not much there yet though)
-## Third-party Evennia utilities and resources
+## Evennia Community
-*For publicly available games running on Evennia, add and find those in the [Evennia game
-index](http://games.evennia.com) instead!*
+- [Evennia Game Index](http://games.evennia.com/) - An automated listing of Evennia games.
+- [Evennia official Discord channel](https://discord.gg/AJJpcRUhtF)
+- [Evennia official forums](https://github.com/evennia/evennia/discussions) on Github Discussions.
+- [Evennia subreddit](https://www.reddit.com/r/Evennia/)
-- [Discord Evennia channel](https://discord.gg/NecFePw) - This is a fan-driven Discord channel with
-a bridge to the official Evennia IRC channel.
+## Third-party Evennia tools
----
-
-- [Discord live blog](https://discordapp.com/channels/517176782357528616/517176782781415434) of the
-_Blackbirds_ Evennia game project.
-- [Unreal Engine Evennia plugin](https://www.unrealengine.com/marketplace/en-US/slug/evennia-plugin)
- an in-progress Unreal plugin for integrating Evennia with Epic Games' Unreal Engine.
-- [The dark net/March Hare MUD](https://github.com/thedarknet/evennia) from the 2019 [DEF CON
-27](https://www.defcon.org/html/defcon-27/dc-27-index.html) hacker conference in Paris. This is an
-Evennia game dir with batchcode to build the custom _Hackers_ style cyberspace zone with puzzles and
-challenges [used during the conference](https://dcdark.net/home#).
-- [Arx sources](https://github.com/Arx-Game/arxcode) - Open-source code release of the very popular
-[Arx](https://play.arxmush.org/) Evennia game. [Here are instructions for installing](Arxcode-
-installing-help)
-- [Evennia-wiki](https://github.com/vincent-lg/evennia-wiki) - An Evennia-specific Wiki for your
-website.
-- [Evcolor](https://github.com/taladan/Pegasus/blob/origin/world/utilities/evcolor) - Optional
-coloration for Evennia unit-test output.
-- [Paxboards](https://github.com/aurorachain/paxboards) - Evennia bulletin board system (both for
-telnet/web).
-- [Encarnia sources](https://github.com/whitehorse-io/encarnia) - An open-sourced game dir for
-Evennia with things like races, combat etc. [Summary
-here](https://www.reddit.com/r/MUD/comments/6z6s3j/encarnia_an_evennia_python_mud_code_base_with/).
-- [The world of Cool battles sources](https://github.com/FlutterSprite/coolbattles) - Open source
-turn-based battle system for Evennia. It also has a [live demo](http://wcb.battlestudio.com/).
-- [nextRPI](https://github.com/cluebyte/nextrpi) - A github project for making a toolbox for people
-to make [RPI](https://www.topmudsites.com/forums/showthread.php?t=4804)-style Evennia games.
-- [Muddery](https://github.com/muddery/muddery) - A mud framework under development, based on an
-older fork of Evennia. It has some specific design goals for building and extending the game based
-on input files.
-- [vim-evennia](https://github.com/amfl/vim-evennia) - A mode for editing batch-build files (`.ev`)
-files in the [vim](https://www.vim.org/) text editor (Emacs users can use [evennia-
+- [Discord relay](https://github.com/InspectorCaracal/evennia-things/tree/main/discord_relay) - Two-way chat relays between Evennia channels and Discord channels.
+- [docker-compose for Evennia](https://github.com/gtaylor/evennia-docker) - A quick-install setup for running Evennia in a [Docker container](https://www.docker.com/). (See [the official Evennia docs](https://www.evennia.com/docs/latest/Running-Evennia-in-Docker.html) for more details on running Evennia with Docker.)
+- [Evcolor](https://github.com/taladan/Pegasus/blob/origin/world/utilities/evcolor) - Optional coloration for Evennia unit-test output.
+- [Evennia-wiki](https://github.com/vincent-lg/evennia-wiki) - An Evennia-specific Wiki for your website.
+- [nextRPI](https://github.com/cluebyte/nextrpi) - A github project for making a toolbox for people to make [RPI](https://www.topmudsites.com/forums/showthread.php?t=4804)-style Evennia games.
+- [Paxboards](https://github.com/aurorachain/paxboards) - Evennia bulletin board system (both for telnet/web).
+- [Unreal Engine Evennia plugin](https://www.unrealengine.com/marketplace/en-US/slug/evennia-plugin) an in-progress Unreal plugin for integrating Evennia with Epic Games' Unreal Engine.
+- [vim-evennia](https://github.com/amfl/vim-evennia) - A mode for editing batch-build files (`.ev`) files in the [vim](https://www.vim.org/) text editor (Emacs users can use [evennia-
mode.el](https://github.com/evennia/evennia/blob/master/evennia/utils/evennia-mode.el)).
+- [The world of Cool battles sources](https://github.com/FlutterSprite/coolbattles) - Open source turn-based battle system for an older version of Evennia.
- [Other Evennia-related repos on github](https://github.com/search?p=1&q=evennia)
+
----
-- [EvCast video series](https://www.youtube.com/playlist?list=PLyYMNttpc-SX1hvaqlUNmcxrhmM64pQXl) -
-Tutorial videos explaining installing Evennia, basic Python etc.
-- [Evennia-docker](https://github.com/gtaylor/evennia-docker) - Evennia in a [Docker
-container](https://www.docker.com/) for quick install and deployment in just a few commands.
-- [Evennia's docs in Chinese](http://www.evenniacn.com/) - A translated mirror of a slightly older
-Evennia version. Announcement [here](https://groups.google.com/forum/#!topic/evennia/3AXS8ZTzJaA).
-- [Evennia for MUSHers](https://musoapbox.net/topic/1150/evennia-for-mushers) - An article describing
-Evennia for those used to the MUSH way of doing things.
-- *[Language Understanding for Text games using Deep reinforcement
-learning](http://news.mit.edu/2015/learning-language-playing-computer-games-0924#_msocom_1)*
-([PDF](https://people.csail.mit.edu/karthikn/pdfs/mud-play15.pdf)) - MIT research paper using Evennia
-to train AIs.
-## Other useful mud development resources
+## Evennia-Based Projects
-- [ROM area reader](https://github.com/ctoth/area_reader) - Parser for converting ROM area files to
-Python objects.
-- [Gossip MUD chat network](https://gossip.haus/)
+### Code bases
+- [Arx sources](https://github.com/Arx-Game/arxcode) - Open-source code release of the very popular [Arx](https://play.arxmush.org/) Evennia game. [Here are instructions for installing](https://www.evennia.com/docs/1.0-dev/Howtos/Arxcode-Installation.html)
+- [Encarnia sources](https://github.com/whitehorse-io/encarnia) - An open-sourced game dir for an older version of Evennia with things like races, combat etc. [Summary here](https://www.reddit.com/r/MUD/comments/6z6s3j/encarnia_an_evennia_python_mud_code_base_with/).
+- [The dark net/March Hare MUD](https://github.com/thedarknet/evennia) from the 2019 [DEF CON 27](https://www.defcon.org/html/defcon-27/dc-27-index.html) hacker conference in Paris. This is an Evennia game dir with batchcode to build the custom _Hackers_ style cyberspace zone with puzzles and challenges [used during the conference](https://dcdark.net/home#).
+- [Muddery](https://github.com/muddery/muddery) - A mud framework under development, based on an older fork of Evennia. It has some specific design goals for building and extending the game based on input files.
-## General MUD forums and discussions
+### Other
-- [MUD Coder's Guild](https://mudcoders.com/) - A blog and [associated Slack
- channel](https://slack.mudcoders.com/) with discussions on MUD development.
-- [MuSoapbox](https://www.musoapbox.net/) - Very active Mu* game community mainly focused on MUSH-type gaming.
-- [Imaginary Realities](http://journal.imaginary-realities.com/) - An e-magazine on game and MUD
- design that has several articles about Evennia. There is also an
- [archive of older issues](http://disinterest.org/resource/imaginary-realities/)
- from 1998-2001 that are still very relevant.
-- [Optional Realities](http://optionalrealities.com/) - Mud development discussion forums that has
- regular articles on MUD development focused on roleplay-intensive games. After a HD crash it's not
- as content-rich as it once was.
-- [MudLab](http://mudlab.org/) - Mud design discussion forum
-- [MudConnector](http://www.mudconnect.com/) - Mud listing and forums
-- [MudBytes](http://www.mudbytes.net/) - Mud listing and forums
-- [Top Mud Sites](http://www.topmudsites.com/) - Mud listing and forums
-- [Planet Mud-Dev](http://planet-muddev.disinterest.org/) - A blog aggregator following blogs of
- current MUD development (including Evennia) around the 'net. Worth to put among your RSS
- subscriptions.
-- Mud Dev mailing list archive ([mirror](http://www.disinterest.org/resource/MUD-Dev/)) -
- Influential mailing list active 1996-2004. Advanced game design discussions.
+- [Discord live blog](https://discordapp.com/channels/517176782357528616/517176782781415434) of the _Blackbirds_ Evennia game project.
+- [Evennia for MUSHers](https://musoapbox.net/topic/1150/evennia-for-mushers) - An article describing Evennia for those used to the MUSH way of doing things.
+- *[Language Understanding for Text games using Deep reinforcement learning](http://news.mit.edu/2015/learning-language-playing-computer-games-0924#_msocom_1)*
+([PDF](https://people.csail.mit.edu/karthikn/pdfs/mud-play15.pdf)) - MIT research paper using Evennia to train AIs.
+
+----
+
+## General MU* resources
+
+### Tools
+
+- [ROM area reader](https://github.com/ctoth/area_reader) - Parser for converting ROM area files to Python objects.
+
+### Informational
+
+- [Imaginary Realities unofficial archive](http://tharsis-gate.org/articles/imaginary.html) - An e-magazine on game and MUD design that has several articles about Evennia.
+- [Lost Library of MOO](https://www.hayseed.net/MOO/) - Archive of scientific articles on mudding (in particular moo).
+- [Mud Client/Server Interaction](http://cryosphere.net/mud-protocol.html) - A page on classic MUD telnet protocols.
- [Mud-dev wiki](http://mud-dev.wikidot.com/) - A (very) slowly growing resource on MUD creation.
-- [Mud Client/Server Interaction](http://cryosphere.net/mud-protocol.html) - A page on classic MUD
- telnet protocols.
-- [Mud Tech's fun/cool but ...](https://gc-taylor.com/blog/2013/01/08/mud-tech-funcool-dont-forget-ship-damned-thing/) -
- Greg Taylor gives good advice on mud design.
-- [Lost Library of MOO](https://www.hayseed.net/MOO/) - Archive of scientific articles on mudding (in
-particular moo).
-- [Nick Gammon's hints thread](http://www.gammon.com.au/forum/bbshowpost.php?bbsubject_id=5959) -
-Contains a very useful list of things to think about when starting your new MUD.
-- [Lost Garden](http://www.lostgarden.com/) - A game development blog with long and interesting
- articles (not MUD-specific)
-- [What Games Are](http://whatgamesare.com/) - A blog about general game design (not MUD-specific)
-- [The Alexandrian](https://thealexandrian.net/) - A blog about tabletop roleplaying and board games,
- but with lots of general discussion about rule systems and game balance that could be applicable
- also for MUDs.
-- [Raph Koster's laws of game design](https://www.raphkoster.com/games/laws-of-online-world-design/the-laws-of-online-world-design/) -
- thought-provoking guidelines and things to think about when designing a virtual multiplayer world
- (Raph is known for *Ultima Online* among other things).
+- [Mud Tech's fun/cool but ...](https://gc-taylor.com/blog/2013/01/08/mud-tech-funcool-dont-forget-ship-damned-thing/) - Greg Taylor gives good advice on mud design.
+- [Nick Gammon's hints thread](http://www.gammon.com.au/forum/bbshowpost.php?bbsubject_id=5959) - Contains a very useful list of things to think about when starting your new MUD.
+- [Raph Koster's laws of game design](https://www.raphkoster.com/games/laws-of-online-world-design/the-laws-of-online-world-design/) - thought-provoking guidelines and things to think about when designing a virtual multiplayer world (Raph is known for *Ultima Online* among other things).
-## Literature
+### Community
+
+- [Grapevine](https://grapevine.haus/) - MUD listings and inter-game chat network
+- [MUD Coder's Guild](https://mudcoders.com/) - A blog and [associated Slack channel](https://slack.mudcoders.com/) with discussions on MUD development.
+- [MudBytes](http://www.mudbytes.net/) - MUD listing and forums
+- [MudConnector](http://www.mudconnect.com/) - MUD listing and forums
+- [MudLab](http://mudlab.org/) - MUD design discussion forum
+- [MuSoapbox](https://musoapbox.net/) - MU* forum mainly focused on MUSH-type gaming.
+- [Top Mud Sites](http://www.topmudsites.com/) - MUD listing and forums
+
+----
+
+## General Game-Dev Resources
+
+### Tools
+
+- [GIT](https://git-scm.com/)
+ - [Documentation](https://git-scm.com/documentation)
+ - [Learn GIT in 15 minutes](https://try.github.io/levels/1/challenges/1) (interactive tutorial)
+
+### Frameworks
+
+- [Django's homepage](https://www.djangoproject.com/)
+ - [Documentation](https://docs.djangoproject.com/en)
+ - [Code](https://code.djangoproject.com/)
+- [Twisted homepage](https://twistedmatrix.com/)
+ - [Documentation](https://twistedmatrix.com/documents/current/core/howto/index.html)
+ - [Code](https://twistedmatrix.com/trac/browser)
+
+### Learning Python
+
+- [Python Website](https://www.python.org/)
+ - [Documentation](https://www.python.org/doc/)
+ - [Tutorial](https://docs.python.org/tut/tut.html)
+ - [Library Reference](https://docs.python.org/lib/lib.html)
+ - [Language Reference](https://docs.python.org/ref/ref.html)
+- [Python tips and tricks](https://www.siafoo.net/article/52)
+- [Jetbrains Python academy](https://hyperskill.org/onboarding?track=python) - free online programming curriculum for different skill levels
+
+### Blogs
+
+- [Lost Garden](https://lostgarden.home.blog/) - A game development blog with long and interesting articles (not MUD-specific)
+- [What Games Are](http://whatgamesare.com/) - A blog about general game design (not MUD-specific)
+- [The Alexandrian](https://thealexandrian.net/) - A blog about tabletop roleplaying and board games, but with lots of general discussion about rule systems and game balance that could be applicable also for MUDs.
+
+### Literature
- Richard Bartle *Designing Virtual Worlds*
([amazon page](https://www.amazon.com/Designing-Virtual-Worlds-Richard-Bartle/dp/0131018167)) -
Essential reading for the design of any persistent game
world, written by the co-creator of the original game *MUD*. Published in 2003 but it's still as
relevant now as when it came out. Covers everything you need to know and then some.
-- Zed A. Shaw *Learn Python the Hard way* ([homepage](https://learnpythonthehardway.org/)) - Despite
- the imposing name this book is for the absolute Python/programming beginner. One learns the language
- by gradually creating a small text game! It has been used by multiple users before moving on to
- Evennia. *Update: This used to be free to read online, this is no longer the case.*
+
+ When the rights to Designing Virtual Worlds returned to him, Richard Bartle
+ made the PDF of his Designing Virtual Worlds freely available through his own
+ website ([Designing Virtual Worlds](https://mud.co.uk/dvw/)). A direct link to
+ the PDF can be found [here](https://mud.co.uk/richard/DesigningVirtualWorlds.pdf).
- David M. Beazley *Python Essential Reference (4th ed)*
([amazon page](https://www.amazon.com/Python-Essential-Reference-David-Beazley/dp/0672329786/)) -
Our recommended book on Python; it not only efficiently summarizes the language but is also
@@ -147,29 +140,3 @@ Contains a very useful list of things to think about when starting your new MUD.
economic theory. Written in 1730 but the translation is annotated and the essay is actually very
easy to follow also for a modern reader. Required reading if you think of implementing a sane game
economic system.
-
-## Frameworks
-
-- [Django's homepage](https://www.djangoproject.com/)
- - [Documentation](https://docs.djangoproject.com/en)
- - [Code](https://code.djangoproject.com/)
-- [Twisted homepage](https://twistedmatrix.com/)
- - [Documentation](https://twistedmatrix.com/documents/current/core/howto/index.html)
- - [Code](https://twistedmatrix.com/trac/browser)
-
-## Tools
-
-- [GIT](https://git-scm.com/)
- - [Documentation](https://git-scm.com/documentation)
- - [Learn GIT in 15 minutes](https://try.github.io/levels/1/challenges/1) (interactive tutorial)
-
-## Python Info
-
-- [Python Website](https://www.python.org/)
- - [Documentation](https://www.python.org/doc/)
- - [Tutorial](https://docs.python.org/tut/tut.html)
- - [Library Reference](https://docs.python.org/lib/lib.html)
- - [Language Reference](https://docs.python.org/ref/ref.html)
-- [Python tips and tricks](https://www.siafoo.net/article/52)
-- [Jetbrains Python academy](https://hyperskill.org/onboarding?track=python) -
- free online programming curriculum for different skill levels
diff --git a/docs/1.0-dev/_sources/api/evennia.contrib.base_systems.md.txt b/docs/1.0-dev/_sources/api/evennia.contrib.base_systems.md.txt
index 3de3dc1e4e..ccc1e8a0a1 100644
--- a/docs/1.0-dev/_sources/api/evennia.contrib.base_systems.md.txt
+++ b/docs/1.0-dev/_sources/api/evennia.contrib.base_systems.md.txt
@@ -14,6 +14,7 @@ evennia.contrib.base\_systems
evennia.contrib.base_systems.awsstorage
evennia.contrib.base_systems.building_menu
evennia.contrib.base_systems.color_markups
+ evennia.contrib.base_systems.components
evennia.contrib.base_systems.custom_gametime
evennia.contrib.base_systems.email_login
evennia.contrib.base_systems.ingame_python
diff --git a/docs/1.0-dev/api/evennia.commands.default.building.html b/docs/1.0-dev/api/evennia.commands.default.building.html
index 13cbcf4f5d..01983aa06c 100644
--- a/docs/1.0-dev/api/evennia.commands.default.building.html
+++ b/docs/1.0-dev/api/evennia.commands.default.building.html
@@ -543,7 +543,7 @@ You can specify the /force switch to bypass this confirmation.
@@ -584,7 +584,7 @@ You can specify the /force switch to bypass this confirmation.
-
-
search_index_entry = {'aliases': '@del @delete', 'category': 'building', 'key': '@destroy', 'no_prefix': 'destroy del delete', 'tags': '', 'text': '\n permanently delete objects\n\n Usage:\n destroy[/switches] [obj, obj2, obj3, [dbref-dbref], ...]\n\n Switches:\n override - The destroy command will usually avoid accidentally\n destroying account objects. This switch overrides this safety.\n force - destroy without confirmation.\n Examples:\n destroy house, roof, door, 44-78\n destroy 5-10, flower, 45\n destroy/force north\n\n Destroys one or many objects. If dbrefs are used, a range to delete can be\n given, e.g. 4-10. Also the end points will be deleted. This command\n displays a confirmation before destroying, to make sure of your choice.\n You can specify the /force switch to bypass this confirmation.\n '}¶
+search_index_entry = {'aliases': '@delete @del', 'category': 'building', 'key': '@destroy', 'no_prefix': 'destroy delete del', 'tags': '', 'text': '\n permanently delete objects\n\n Usage:\n destroy[/switches] [obj, obj2, obj3, [dbref-dbref], ...]\n\n Switches:\n override - The destroy command will usually avoid accidentally\n destroying account objects. This switch overrides this safety.\n force - destroy without confirmation.\n Examples:\n destroy house, roof, door, 44-78\n destroy 5-10, flower, 45\n destroy/force north\n\n Destroys one or many objects. If dbrefs are used, a range to delete can be\n given, e.g. 4-10. Also the end points will be deleted. This command\n displays a confirmation before destroying, to make sure of your choice.\n You can specify the /force switch to bypass this confirmation.\n '}¶
@@ -1296,7 +1296,7 @@ server settings.
-
-
aliases = ['@swap', '@update', '@parent', '@typeclasses', '@type']¶
+aliases = ['@swap', '@typeclasses', '@parent', '@update', '@type']¶
@@ -1327,7 +1327,7 @@ server settings.
-
-
search_index_entry = {'aliases': '@swap @update @parent @typeclasses @type', 'category': 'building', 'key': '@typeclass', 'no_prefix': 'typeclass swap update parent typeclasses type', 'tags': '', 'text': "\n set or change an object's typeclass\n\n Usage:\n typeclass[/switch] <object> [= typeclass.path]\n typeclass/prototype <object> = prototype_key\n\n typeclasses or typeclass/list/show [typeclass.path]\n swap - this is a shorthand for using /force/reset flags.\n update - this is a shorthand for using the /force/reload flag.\n\n Switch:\n show, examine - display the current typeclass of object (default) or, if\n given a typeclass path, show the docstring of that typeclass.\n update - *only* re-run at_object_creation on this object\n meaning locks or other properties set later may remain.\n reset - clean out *all* the attributes and properties on the\n object - basically making this a new clean object. This will also\n reset cmdsets!\n force - change to the typeclass also if the object\n already has a typeclass of the same name.\n list - show available typeclasses. Only typeclasses in modules actually\n imported or used from somewhere in the code will show up here\n (those typeclasses are still available if you know the path)\n prototype - clean and overwrite the object with the specified\n prototype key - effectively making a whole new object.\n\n Example:\n type button = examples.red_button.RedButton\n type/prototype button=a red button\n\n If the typeclass_path is not given, the current object's typeclass is\n assumed.\n\n View or set an object's typeclass. If setting, the creation hooks of the\n new typeclass will be run on the object. If you have clashing properties on\n the old class, use /reset. By default you are protected from changing to a\n typeclass of the same name as the one you already have - use /force to\n override this protection.\n\n The given typeclass must be identified by its location using python\n dot-notation pointing to the correct module and class. If no typeclass is\n given (or a wrong typeclass is given). Errors in the path or new typeclass\n will lead to the old typeclass being kept. The location of the typeclass\n module is searched from the default typeclass directory, as defined in the\n server settings.\n\n "}¶
+search_index_entry = {'aliases': '@swap @typeclasses @parent @update @type', 'category': 'building', 'key': '@typeclass', 'no_prefix': 'typeclass swap typeclasses parent update type', 'tags': '', 'text': "\n set or change an object's typeclass\n\n Usage:\n typeclass[/switch] <object> [= typeclass.path]\n typeclass/prototype <object> = prototype_key\n\n typeclasses or typeclass/list/show [typeclass.path]\n swap - this is a shorthand for using /force/reset flags.\n update - this is a shorthand for using the /force/reload flag.\n\n Switch:\n show, examine - display the current typeclass of object (default) or, if\n given a typeclass path, show the docstring of that typeclass.\n update - *only* re-run at_object_creation on this object\n meaning locks or other properties set later may remain.\n reset - clean out *all* the attributes and properties on the\n object - basically making this a new clean object. This will also\n reset cmdsets!\n force - change to the typeclass also if the object\n already has a typeclass of the same name.\n list - show available typeclasses. Only typeclasses in modules actually\n imported or used from somewhere in the code will show up here\n (those typeclasses are still available if you know the path)\n prototype - clean and overwrite the object with the specified\n prototype key - effectively making a whole new object.\n\n Example:\n type button = examples.red_button.RedButton\n type/prototype button=a red button\n\n If the typeclass_path is not given, the current object's typeclass is\n assumed.\n\n View or set an object's typeclass. If setting, the creation hooks of the\n new typeclass will be run on the object. If you have clashing properties on\n the old class, use /reset. By default you are protected from changing to a\n typeclass of the same name as the one you already have - use /force to\n override this protection.\n\n The given typeclass must be identified by its location using python\n dot-notation pointing to the correct module and class. If no typeclass is\n given (or a wrong typeclass is given). Errors in the path or new typeclass\n will lead to the old typeclass being kept. The location of the typeclass\n module is searched from the default typeclass directory, as defined in the\n server settings.\n\n "}¶
diff --git a/docs/1.0-dev/api/evennia.commands.default.general.html b/docs/1.0-dev/api/evennia.commands.default.general.html
index d0a7e770ee..b904f34aef 100644
--- a/docs/1.0-dev/api/evennia.commands.default.general.html
+++ b/docs/1.0-dev/api/evennia.commands.default.general.html
@@ -274,7 +274,7 @@ inv
@@ -305,7 +305,7 @@ inv
-
-
search_index_entry = {'aliases': 'i inv', 'category': 'general', 'key': 'inventory', 'no_prefix': ' i inv', 'tags': '', 'text': '\n view inventory\n\n Usage:\n inventory\n inv\n\n Shows your inventory.\n '}¶
+search_index_entry = {'aliases': 'inv i', 'category': 'general', 'key': 'inventory', 'no_prefix': ' inv i', 'tags': '', 'text': '\n view inventory\n\n Usage:\n inventory\n inv\n\n Shows your inventory.\n '}¶
diff --git a/docs/1.0-dev/api/evennia.commands.default.system.html b/docs/1.0-dev/api/evennia.commands.default.system.html
index eb2c3f622f..0ee7cb7b8c 100644
--- a/docs/1.0-dev/api/evennia.commands.default.system.html
+++ b/docs/1.0-dev/api/evennia.commands.default.system.html
@@ -634,7 +634,7 @@ See |luhttps://ww
@@ -680,7 +680,7 @@ to all the variables defined therein.
-
-
search_index_entry = {'aliases': '@delays @task', 'category': 'system', 'key': '@tasks', 'no_prefix': 'tasks delays task', 'tags': '', 'text': "\n Display or terminate active tasks (delays).\n\n Usage:\n tasks[/switch] [task_id or function_name]\n\n Switches:\n pause - Pause the callback of a task.\n unpause - Process all callbacks made since pause() was called.\n do_task - Execute the task (call its callback).\n call - Call the callback of this task.\n remove - Remove a task without executing it.\n cancel - Stop a task from automatically executing.\n\n Notes:\n A task is a single use method of delaying the call of a function. Calls are created\n in code, using `evennia.utils.delay`.\n See |luhttps://www.evennia.com/docs/latest/Command-Duration.html|ltthe docs|le for help.\n\n By default, tasks that are canceled and never called are cleaned up after one minute.\n\n Examples:\n - `tasks/cancel move_callback` - Cancels all movement delays from the slow_exit contrib.\n In this example slow exits creates it's tasks with\n `utils.delay(move_delay, move_callback)`\n - `tasks/cancel 2` - Cancel task id 2.\n\n "}¶
+search_index_entry = {'aliases': '@task @delays', 'category': 'system', 'key': '@tasks', 'no_prefix': 'tasks task delays', 'tags': '', 'text': "\n Display or terminate active tasks (delays).\n\n Usage:\n tasks[/switch] [task_id or function_name]\n\n Switches:\n pause - Pause the callback of a task.\n unpause - Process all callbacks made since pause() was called.\n do_task - Execute the task (call its callback).\n call - Call the callback of this task.\n remove - Remove a task without executing it.\n cancel - Stop a task from automatically executing.\n\n Notes:\n A task is a single use method of delaying the call of a function. Calls are created\n in code, using `evennia.utils.delay`.\n See |luhttps://www.evennia.com/docs/latest/Command-Duration.html|ltthe docs|le for help.\n\n By default, tasks that are canceled and never called are cleaned up after one minute.\n\n Examples:\n - `tasks/cancel move_callback` - Cancels all movement delays from the slow_exit contrib.\n In this example slow exits creates it's tasks with\n `utils.delay(move_delay, move_callback)`\n - `tasks/cancel 2` - Cancel task id 2.\n\n "}¶
diff --git a/docs/1.0-dev/api/evennia.commands.default.tests.html b/docs/1.0-dev/api/evennia.commands.default.tests.html
index 4f6ac25062..6ab436ec99 100644
--- a/docs/1.0-dev/api/evennia.commands.default.tests.html
+++ b/docs/1.0-dev/api/evennia.commands.default.tests.html
@@ -70,11 +70,31 @@ main test suite started with
test_look()[source]¶
+
+
+
+
+
+
+
+
+
+
-
test_get_and_drop()[source]¶
@@ -747,7 +772,7 @@ main test suite started with
Test the batch processor.
-
-
red_button = <module 'evennia.contrib.tutorials.red_button.red_button' from '/tmp/tmp7w77gzzs/473f2e37932759ab07e2e062ba461569106aef87/evennia/contrib/tutorials/red_button/red_button.py'>¶
+red_button = <module 'evennia.contrib.tutorials.red_button.red_button' from '/tmp/tmpgtt_9p0n/450d70118f8e336dd5533aecaf712782212d4305/evennia/contrib/tutorials/red_button/red_button.py'>¶
diff --git a/docs/1.0-dev/api/evennia.commands.default.unloggedin.html b/docs/1.0-dev/api/evennia.commands.default.unloggedin.html
index a520337eff..fd3947ee74 100644
--- a/docs/1.0-dev/api/evennia.commands.default.unloggedin.html
+++ b/docs/1.0-dev/api/evennia.commands.default.unloggedin.html
@@ -73,7 +73,7 @@ connect “account name” “pass word”
@@ -108,7 +108,7 @@ there is no object yet before the account has logged in)
-
-
search_index_entry = {'aliases': 'con conn co', 'category': 'general', 'key': 'connect', 'no_prefix': ' con conn co', 'tags': '', 'text': '\n connect to the game\n\n Usage (at login screen):\n connect accountname password\n connect "account name" "pass word"\n\n Use the create command to first create an account before logging in.\n\n If you have spaces in your name, enclose it in double quotes.\n '}¶
+search_index_entry = {'aliases': 'co conn con', 'category': 'general', 'key': 'connect', 'no_prefix': ' co conn con', 'tags': '', 'text': '\n connect to the game\n\n Usage (at login screen):\n connect accountname password\n connect "account name" "pass word"\n\n Use the create command to first create an account before logging in.\n\n If you have spaces in your name, enclose it in double quotes.\n '}¶
diff --git a/docs/1.0-dev/api/evennia.comms.comms.html b/docs/1.0-dev/api/evennia.comms.comms.html
index aba1964f35..57ec416477 100644
--- a/docs/1.0-dev/api/evennia.comms.comms.html
+++ b/docs/1.0-dev/api/evennia.comms.comms.html
@@ -59,20 +59,38 @@
Bases: evennia.comms.models.ChannelDB
This is the base class for all Channel Comms. Inherit from this to
create different types of communication channels.
-
-- Class-level variables:
-send_to_online_only (bool, default True) - if set, will only try to
-send to subscribers that are actually active. This is a useful optimization.
+Class-level variables:
+- send_to_online_only (bool, default True) - if set, will only try to
+
+send to subscribers that are actually active. This is a useful optimization.
+
+
log_file (str, default “channel_{channelname}.log”). This is the
log file to which the channel history will be saved. The {channelname} tag
will be replaced by the key of the Channel. If an Attribute ‘log_file’
is set, this will be used instead. If this is None and no Attribute is found,
no history will be saved.
channel_prefix_string (str, default “[{channelname} ]”) - this is used
-as a simple template to get the channel prefix with .channel_prefix().
+as a simple template to get the channel prefix with .channel_prefix(). It is used
+in front of every channel message; use {channelmessage} token to insert the
+name of the current channel. Set to None if you want no prefix (or want to
+handle it in a hook during message generation instead.
+channel_msg_nick_pattern**(str, default **”{alias}s*?|{alias}s+?(?P<arg1>.+?)”) -
+this is what used when a channel subscriber gets a channel nick assigned to this
+channel. The nickhandler uses the pattern to pick out this channel’s name from user
+input. The **{alias} token will get both the channel’s key and any set/custom aliases
+per subscriber. You need to allow for an <arg1> regex group to catch any message
+that should be send to the channel. You usually don’t need to change this pattern
+unless you are changing channel command-style entirely.
+channel_msg_nick_replacement (str, default “channel {channelname} = $1” - this
+is used by the nickhandler to generate a replacement string once the nickhandler (using
+the channel_msg_nick_pattern) identifies that the channel should be addressed
+to send a message to it. The <arg1> regex pattern match from channel_msg_nick_pattern
+will end up at the $1 position in the replacement. Together, this allows you do e.g.
+‘public Hello’ and have that become a mapping to channel public = Hello. By default,
+the account-level channel command is used. If you were to rename that command you must
+tweak the output to something like yourchannelcommandname {channelname} = $1.
-
-
-
objects = <evennia.comms.managers.ChannelManager object>¶
diff --git a/docs/1.0-dev/api/evennia.contrib.base_systems.email_login.email_login.html b/docs/1.0-dev/api/evennia.contrib.base_systems.email_login.email_login.html
index 987ef66fa7..1b95e2bbd4 100644
--- a/docs/1.0-dev/api/evennia.contrib.base_systems.email_login.email_login.html
+++ b/docs/1.0-dev/api/evennia.contrib.base_systems.email_login.email_login.html
@@ -90,7 +90,7 @@ the module given by settings.CONNECTION_SCREEN_MODULE.
@@ -120,7 +120,7 @@ there is no object yet before the account has logged in)
-
-
search_index_entry = {'aliases': 'con conn co', 'category': 'general', 'key': 'connect', 'no_prefix': ' con conn co', 'tags': '', 'text': '\n Connect to the game.\n\n Usage (at login screen):\n connect <email> <password>\n\n Use the create command to first create an account before logging in.\n '}¶
+search_index_entry = {'aliases': 'co conn con', 'category': 'general', 'key': 'connect', 'no_prefix': ' co conn con', 'tags': '', 'text': '\n Connect to the game.\n\n Usage (at login screen):\n connect <email> <password>\n\n Use the create command to first create an account before logging in.\n '}¶
diff --git a/docs/1.0-dev/api/evennia.contrib.base_systems.ingame_python.commands.html b/docs/1.0-dev/api/evennia.contrib.base_systems.ingame_python.commands.html
index 8513a49ffc..f81ec91830 100644
--- a/docs/1.0-dev/api/evennia.contrib.base_systems.ingame_python.commands.html
+++ b/docs/1.0-dev/api/evennia.contrib.base_systems.ingame_python.commands.html
@@ -67,7 +67,7 @@
@@ -148,7 +148,7 @@ on user permission.
-
-
search_index_entry = {'aliases': '@calls @callbacks @callback', 'category': 'building', 'key': '@call', 'no_prefix': 'call calls callbacks callback', 'tags': '', 'text': '\n Command to edit callbacks.\n '}¶
+search_index_entry = {'aliases': '@callbacks @calls @callback', 'category': 'building', 'key': '@call', 'no_prefix': 'call callbacks calls callback', 'tags': '', 'text': '\n Command to edit callbacks.\n '}¶
diff --git a/docs/1.0-dev/api/evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.html b/docs/1.0-dev/api/evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.html
index 9a40c4b31b..d63f369db9 100644
--- a/docs/1.0-dev/api/evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.html
+++ b/docs/1.0-dev/api/evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.html
@@ -168,7 +168,7 @@ for that channel.
@@ -199,7 +199,7 @@ for that channel.
-
-
search_index_entry = {'aliases': 'delchanalias delaliaschan', 'category': 'comms', 'key': 'delcom', 'no_prefix': ' delchanalias delaliaschan', 'tags': '', 'text': "\n remove a channel alias and/or unsubscribe from channel\n\n Usage:\n delcom <alias or channel>\n delcom/all <channel>\n\n If the full channel name is given, unsubscribe from the\n channel. If an alias is given, remove the alias but don't\n unsubscribe. If the 'all' switch is used, remove all aliases\n for that channel.\n "}¶
+search_index_entry = {'aliases': 'delaliaschan delchanalias', 'category': 'comms', 'key': 'delcom', 'no_prefix': ' delaliaschan delchanalias', 'tags': '', 'text': "\n remove a channel alias and/or unsubscribe from channel\n\n Usage:\n delcom <alias or channel>\n delcom/all <channel>\n\n If the full channel name is given, unsubscribe from the\n channel. If an alias is given, remove the alias but don't\n unsubscribe. If the 'all' switch is used, remove all aliases\n for that channel.\n "}¶
diff --git a/docs/1.0-dev/api/evennia.contrib.full_systems.evscaperoom.commands.html b/docs/1.0-dev/api/evennia.contrib.full_systems.evscaperoom.commands.html
index bbb4f56885..1874ec6bde 100644
--- a/docs/1.0-dev/api/evennia.contrib.full_systems.evscaperoom.commands.html
+++ b/docs/1.0-dev/api/evennia.contrib.full_systems.evscaperoom.commands.html
@@ -162,7 +162,7 @@ the operation will be general or on the room.
@@ -186,7 +186,7 @@ set in self.parse())
-
-
search_index_entry = {'aliases': 'abort chicken out q quit', 'category': 'evscaperoom', 'key': 'give up', 'no_prefix': ' abort chicken out q quit', 'tags': '', 'text': '\n Give up\n\n Usage:\n give up\n\n Abandons your attempts at escaping and of ever winning the pie-eating contest.\n\n '}¶
+search_index_entry = {'aliases': 'q quit chicken out abort', 'category': 'evscaperoom', 'key': 'give up', 'no_prefix': ' q quit chicken out abort', 'tags': '', 'text': '\n Give up\n\n Usage:\n give up\n\n Abandons your attempts at escaping and of ever winning the pie-eating contest.\n\n '}¶
@@ -322,7 +322,7 @@ shout
@@ -351,7 +351,7 @@ set in self.parse())
-
-
search_index_entry = {'aliases': 'whisper ; shout', 'category': 'general', 'key': 'say', 'no_prefix': ' whisper ; shout', 'tags': '', 'text': '\n Perform an communication action.\n\n Usage:\n say <text>\n whisper\n shout\n\n '}¶
+search_index_entry = {'aliases': '; whisper shout', 'category': 'general', 'key': 'say', 'no_prefix': ' ; whisper shout', 'tags': '', 'text': '\n Perform an communication action.\n\n Usage:\n say <text>\n whisper\n shout\n\n '}¶
@@ -441,7 +441,7 @@ looks and what actions is available.
@@ -470,7 +470,7 @@ set in self.parse())
-
-
search_index_entry = {'aliases': 'e ex examine unfocus', 'category': 'evscaperoom', 'key': 'focus', 'no_prefix': ' e ex examine unfocus', 'tags': '', 'text': '\n Focus your attention on a target.\n\n Usage:\n focus <obj>\n\n Once focusing on an object, use look to get more information about how it\n looks and what actions is available.\n\n '}¶
+search_index_entry = {'aliases': 'ex unfocus e examine', 'category': 'evscaperoom', 'key': 'focus', 'no_prefix': ' ex unfocus e examine', 'tags': '', 'text': '\n Focus your attention on a target.\n\n Usage:\n focus <obj>\n\n Once focusing on an object, use look to get more information about how it\n looks and what actions is available.\n\n '}¶
@@ -577,7 +577,7 @@ set in self.parse())
@@ -600,7 +600,7 @@ to all the variables defined therein.
-
-
search_index_entry = {'aliases': '@dig @open', 'category': 'general', 'key': 'open', 'no_prefix': ' dig open', 'tags': '', 'text': '\n Interact with an object in focus.\n\n Usage:\n <action> [arg]\n\n '}¶
+search_index_entry = {'aliases': '@open @dig', 'category': 'general', 'key': 'open', 'no_prefix': ' open dig', 'tags': '', 'text': '\n Interact with an object in focus.\n\n Usage:\n <action> [arg]\n\n '}¶
diff --git a/docs/1.0-dev/api/evennia.contrib.full_systems.evscaperoom.menu.html b/docs/1.0-dev/api/evennia.contrib.full_systems.evscaperoom.menu.html
index c4a7d18da0..271fb78ab0 100644
--- a/docs/1.0-dev/api/evennia.contrib.full_systems.evscaperoom.menu.html
+++ b/docs/1.0-dev/api/evennia.contrib.full_systems.evscaperoom.menu.html
@@ -108,11 +108,8 @@ new room (to start from scratch) or join an existing room (with other players).<
Formats the option block.
- Parameters
-
-optionlist (list) – List of (key, description) tuples for every
-option related to this node.
-caller (Object, Account or None, optional) – The caller of the node.
-
+optionlist (list) – List of (key, description) tuples for every
+option related to this node.
- Returns
options (str) – The formatted option display.
diff --git a/docs/1.0-dev/api/evennia.contrib.game_systems.clothing.clothing.html b/docs/1.0-dev/api/evennia.contrib.game_systems.clothing.clothing.html
index 735d68fcf6..3304dc8c6d 100644
--- a/docs/1.0-dev/api/evennia.contrib.game_systems.clothing.clothing.html
+++ b/docs/1.0-dev/api/evennia.contrib.game_systems.clothing.clothing.html
@@ -643,7 +643,7 @@ inv
@@ -674,7 +674,7 @@ inv
-
-
search_index_entry = {'aliases': 'i inv', 'category': 'general', 'key': 'inventory', 'no_prefix': ' i inv', 'tags': '', 'text': '\n view inventory\n\n Usage:\n inventory\n inv\n\n Shows your inventory.\n '}¶
+search_index_entry = {'aliases': 'inv i', 'category': 'general', 'key': 'inventory', 'no_prefix': ' inv i', 'tags': '', 'text': '\n view inventory\n\n Usage:\n inventory\n inv\n\n Shows your inventory.\n '}¶
diff --git a/docs/1.0-dev/api/evennia.contrib.rpg.rpsystem.rpsystem.html b/docs/1.0-dev/api/evennia.contrib.rpg.rpsystem.rpsystem.html
index 92a1269bf9..a1e318733c 100644
--- a/docs/1.0-dev/api/evennia.contrib.rpg.rpsystem.rpsystem.html
+++ b/docs/1.0-dev/api/evennia.contrib.rpg.rpsystem.rpsystem.html
@@ -118,7 +118,7 @@ in a room as sdesc + pose.
# ...
-from evennia.contrib.rpg.rpsystem import RPSystemCmdSet <---
+from evennia.contrib.rpg.rpsystem.rpsystem import RPSystemCmdSet <---
class CharacterCmdSet(default_cmds.CharacterCmdset):
# ...
@@ -131,7 +131,7 @@ in a room as sdesc + pose.
the typeclasses in this module:
# in mygame/typeclasses/characters.py
-from evennia.contrib.rpg import ContribRPCharacter
+from evennia.contrib.rpg.rpsystem.rpsystem import ContribRPCharacter
class Character(ContribRPCharacter):
# ...
@@ -139,7 +139,7 @@ the typeclasses in this module:
# in mygame/typeclasses/objects.py
-from evennia.contrib.rpg import ContribRPObject
+from evennia.contrib.rpg.rpsystem.rpsystem import ContribRPObject
class Object(ContribRPObject):
# ...
@@ -147,7 +147,7 @@ the typeclasses in this module:
# in mygame/typeclasses/rooms.py
-from evennia.contrib.rpg import ContribRPRoom
+from evennia.contrib.rpg.rpsystem.rpsystem import ContribRPRoom
class Room(ContribRPRoom):
# ...
@@ -178,7 +178,7 @@ case_sensitive=False to the send_emote function.
In typeclasses/character.py:
Import the ContribRPCharacter class:
-from evennia.contrib.rpg.rpsystem import ContribRPCharacter
+from evennia.contrib.rpg.rpsystem.rpsystem import ContribRPCharacter
- Inherit ContribRPCharacter:
Change “class Character(DefaultCharacter):” to
@@ -190,7 +190,7 @@ Import the ContribRPCharacter class:
- In typeclasses/rooms.py:
Import the ContribRPRoom class:
-from evennia.contrib.rpg.rpsystem import ContribRPRoom
+from evennia.contrib.rpg.rpsystem.rpsystem import ContribRPRoom
- Inherit ContribRPRoom:
Change class Room(DefaultRoom): to
class Room(ContribRPRoom):
@@ -199,7 +199,7 @@ Import the ContribRPCharacter class:
- In typeclasses/objects.py
Import the ContribRPObject class:
-from evennia.contrib.rpg.rpsystem import ContribRPObject
+from evennia.contrib.rpg.rpsystem.rpsystem import ContribRPObject
- Inherit ContribRPObject:
Change class Object(DefaultObject): to
class Object(ContribRPObject):
@@ -237,60 +237,6 @@ Import the ContribRPCharacter class:
Bases: Exception
-
--
-
evennia.contrib.rpg.rpsystem.rpsystem.ordered_permutation_regex(sentence)[source]¶
-Builds a regex that matches ‘ordered permutations’ of a sentence’s
-words.
-
-- Parameters
-sentence (str) – The sentence to build a match pattern to
-
-- Returns
-regex (re object) –
-
-- Compiled regex object represented the
possible ordered permutations of the sentence, from longest to
-shortest.
-
-
-
-
-
-Example
-The sdesc_regex for an sdesc of ” very tall man” will
-result in the following allowed permutations,
-regex-matched in inverse order of length (case-insensitive):
-“the very tall man”, “the very tall”, “very tall man”,
-“very tall”, “the very”, “tall man”, “the”, “very”, “tall”,
-and “man”.
-We also add regex to make sure it also accepts num-specifiers,
-like /2-tall.
-
-
-
--
-
evennia.contrib.rpg.rpsystem.rpsystem.regex_tuple_from_key_alias(obj)[source]¶
-This will build a regex tuple for any object, not just from those
-with sdesc/recog handlers. It’s used as a legacy mechanism for
-being able to mix this contrib with objects not using sdescs, but
-note that creating the ordered permutation regex dynamically for
-every object will add computational overhead.
-
-- Parameters
-obj (Object) – This object’s key and eventual aliases will
-be used to build the tuple.
-
-- Returns
-regex_tuple (tuple) –
-
-- A tuple
(ordered_permutation_regex, obj, key/alias)
-
-
-
-
-
-
-
be empty, but if it is we must fall back to the key.
-
--
-
get_regex_tuple()[source]¶
-Return data for sdesc/recog handling
-
-- Returns
-tup (tuple) – tuple (sdesc_regex, obj, sdesc)
-
-
-
-
@@ -502,8 +437,7 @@ of an Object.
the following names:
_recog_ref2recog
-_recog_obj2recog
-_recog_obj2regex
+_recog_obj2recog
-
@@ -544,14 +478,18 @@ than max_length.
-
get(obj)[source]¶
-Get recog replacement string, if one exists, otherwise
-get sdesc and as a last resort, the object’s key.
+Get recog replacement string, if one exists.
- Parameters
obj (Object) – The object, whose sdesc to replace
- Returns
-recog (str) – The replacement string to use.
+recog (str or None) –
+
+- The replacement string to use, or
None if there is no recog for this object.
+
+
+
Notes
@@ -582,16 +520,6 @@ mechanism. This is useful for adding masks/hoods etc.
-
-
@@ -882,7 +810,7 @@ Using the command without arguments will list all current recogs.
@@ -909,7 +837,7 @@ Using the command without arguments will list all current recogs.
-
-
search_index_entry = {'aliases': 'forget recognize', 'category': 'general', 'key': 'recog', 'no_prefix': ' forget recognize', 'tags': '', 'text': '\n Recognize another person in the same room.\n\n Usage:\n recog\n recog sdesc as alias\n forget alias\n\n Example:\n recog tall man as Griatch\n forget griatch\n\n This will assign a personal alias for a person, or forget said alias.\n Using the command without arguments will list all current recogs.\n\n '}¶
+search_index_entry = {'aliases': 'recognize forget', 'category': 'general', 'key': 'recog', 'no_prefix': ' recognize forget', 'tags': '', 'text': '\n Recognize another person in the same room.\n\n Usage:\n recog\n recog sdesc as alias\n forget alias\n\n Example:\n recog tall man as Griatch\n forget griatch\n\n This will assign a personal alias for a person, or forget said alias.\n Using the command without arguments will list all current recogs.\n\n '}¶
@@ -989,6 +917,11 @@ self.add().
Bases: evennia.objects.objects.DefaultObject
This class is meant as a mix-in or parent for objects in an
rp-heavy game. It implements the base functionality for poses.
+
+
+
+-
+
get_posed_sdesc(sdesc, **kwargs)[source]¶
+Displays the object with its current pose string.
+
+- Returns
+pose (str) –
+
+- A string containing the object’s sdesc and
current or default pose.
+
+
+
+
+
+
+
-
get_display_name(looker, **kwargs)[source]¶
@@ -1087,20 +1036,29 @@ messaging is assumed to be handled by the caller.
at/getting inforamtion for this object.
- Keyword Arguments
-pose (bool) – Include the pose (if available) in the return.
+
+pose (bool) – Include the pose (if available) in the return.
+ref (str) – The reference marker found in string to replace.
+This is on the form #{num}{case}, like ‘#12^’, where
+the number is a processing location in the string and the
+case symbol indicates the case of the original tag input
+- t - input was Titled, like /Tall
+- ^ - input was all uppercase, like /TALL
+- v - input was all lowercase, like /tall
+- ~ - input case should be kept, or was mixed-case
+noid (bool) – Don’t show DBREF even if viewer has control access.
+
- Returns
-name (str) – A string of the sdesc containing the name of the object,
-if this is defined.
-
-including the DBREF if this user is privileged to control
-said object.
-
+name (str) –
+
+- A string of the sdesc containing the name of the object,
if this is defined. By default, included the DBREF if this user
+is privileged to control said object.
+
+
-Notes
-The RPObject version doesn’t add color to its display.
@@ -1112,6 +1070,14 @@ should call.
- Parameters
looker (Object) – Object doing the looking.
+- Returns
+string (str) –
+
+- A string containing the name, appearance and contents
of the object.
+
+
+
+
@@ -1173,11 +1139,6 @@ should call.
class evennia.contrib.rpg.rpsystem.rpsystem.ContribRPCharacter(*args, **kwargs)[source]¶
Bases: evennia.objects.objects.DefaultCharacter, evennia.contrib.rpg.rpsystem.rpsystem.ContribRPObject
This is a character class that has poses, sdesc and recog.
-
-
- Keyword Arguments
-pose (bool) – Include the pose (if available) in the return.
+
+pose (bool) – Include the pose (if available) in the return.
+ref (str) – The reference marker found in string to replace.
+This is on the form #{num}{case}, like ‘#12^’, where
+the number is a processing location in the string and the
+case symbol indicates the case of the original tag input
+- t - input was Titled, like /Tall
+- ^ - input was all uppercase, like /TALL
+- v - input was all lowercase, like /tall
+- ~ - input case should be kept, or was mixed-case
+noid (bool) – Don’t show DBREF even if viewer has control access.
+
- Returns
-name (str) – A string of the sdesc containing the name of the object,
-if this is defined.
-
-including the DBREF if this user is privileged to control
-said object.
-
+name (str) –
+
+- A string of the sdesc containing the name of the object,
if this is defined. By default, included the DBREF if this user
+is privileged to control said object.
+
+
Notes
-The RPCharacter version of this method colors its display to make
+
The RPCharacter version adds additional processing to sdescs to make
characters stand out from other objects.
@@ -1230,6 +1202,24 @@ characters stand out from other objects.
+
+-
+
get_sdesc(obj, process=False, **kwargs)[source]¶
+Single method to handle getting recogs with sdesc fallback in an
+aware manner, to allow separate processing of recogs from sdescs.
+Gets the sdesc or recog for obj from the view of self.
+
+- Parameters
+obj (Object) – the object whose sdesc or recog is being gotten
+
+- Keyword Arguments
+process (bool) – If True, the sdesc/recog is run through the
+appropriate process method for self - .process_sdesc or
+.process_recog
+
+
+
+
-
process_sdesc(sdesc, obj, **kwargs)[source]¶
@@ -1284,14 +1274,8 @@ translated from the original sdesc at this point.
This is not used by default.
-
-
-- Kwargs:
ref (str): See process_sdesc.
-
-
-
-- Returns
-recog (str) – The modified recog string.
+- Returns
+recog (str) – The modified recog string.
diff --git a/docs/1.0-dev/api/evennia.contrib.rpg.rpsystem.tests.html b/docs/1.0-dev/api/evennia.contrib.rpg.rpsystem.tests.html
index bd98872cdd..70bccb8e5e 100644
--- a/docs/1.0-dev/api/evennia.contrib.rpg.rpsystem.tests.html
+++ b/docs/1.0-dev/api/evennia.contrib.rpg.rpsystem.tests.html
@@ -108,11 +108,6 @@
Sets up testing environment
-
-
+
+
-
-
diff --git a/docs/1.0-dev/api/evennia.contrib.tutorials.red_button.red_button.html b/docs/1.0-dev/api/evennia.contrib.tutorials.red_button.red_button.html
index f658a0a752..a0f0b8a45f 100644
--- a/docs/1.0-dev/api/evennia.contrib.tutorials.red_button.red_button.html
+++ b/docs/1.0-dev/api/evennia.contrib.tutorials.red_button.red_button.html
@@ -96,7 +96,7 @@ such as when closing the lid and un-blinding a character.
@@ -125,7 +125,7 @@ check if the lid is open or closed.
-
-
search_index_entry = {'aliases': 'push press button press', 'category': 'general', 'key': 'push button', 'no_prefix': ' push press button press', 'tags': '', 'text': '\n Push the red button (lid closed)\n\n Usage:\n push button\n\n '}¶
+search_index_entry = {'aliases': 'push press press button', 'category': 'general', 'key': 'push button', 'no_prefix': ' push press press button', 'tags': '', 'text': '\n Push the red button (lid closed)\n\n Usage:\n push button\n\n '}¶
@@ -195,7 +195,7 @@ check if the lid is open or closed.
@@ -222,7 +222,7 @@ break.
-
-
search_index_entry = {'aliases': 'smash lid break lid smash', 'category': 'general', 'key': 'smash glass', 'no_prefix': ' smash lid break lid smash', 'tags': '', 'text': '\n Smash the protective glass.\n\n Usage:\n smash glass\n\n Try to smash the glass of the button.\n\n '}¶
+search_index_entry = {'aliases': 'break lid smash smash lid', 'category': 'general', 'key': 'smash glass', 'no_prefix': ' break lid smash smash lid', 'tags': '', 'text': '\n Smash the protective glass.\n\n Usage:\n smash glass\n\n Try to smash the glass of the button.\n\n '}¶
@@ -322,7 +322,7 @@ be mutually exclusive.
@@ -351,7 +351,7 @@ set in self.parse())
-
-
search_index_entry = {'aliases': 'push press button press', 'category': 'general', 'key': 'push button', 'no_prefix': ' push press button press', 'tags': '', 'text': '\n Push the red button\n\n Usage:\n push button\n\n '}¶
+search_index_entry = {'aliases': 'push press press button', 'category': 'general', 'key': 'push button', 'no_prefix': ' push press press button', 'tags': '', 'text': '\n Push the red button\n\n Usage:\n push button\n\n '}¶
@@ -449,7 +449,7 @@ be mutually exclusive.
-
-
aliases = ['ex', 'get', 'examine', 'l', 'feel', 'listen']¶
+aliases = ['l', 'listen', 'ex', 'get', 'feel', 'examine']¶
@@ -475,7 +475,7 @@ be mutually exclusive.
-
-
search_index_entry = {'aliases': 'ex get examine l feel listen', 'category': 'general', 'key': 'look', 'no_prefix': ' ex get examine l feel listen', 'tags': '', 'text': "\n Looking around in darkness\n\n Usage:\n look <obj>\n\n ... not that there's much to see in the dark.\n\n "}¶
+search_index_entry = {'aliases': 'l listen ex get feel examine', 'category': 'general', 'key': 'look', 'no_prefix': ' l listen ex get feel examine', 'tags': '', 'text': "\n Looking around in darkness\n\n Usage:\n look <obj>\n\n ... not that there's much to see in the dark.\n\n "}¶
diff --git a/docs/1.0-dev/api/evennia.contrib.tutorials.tutorial_world.intro_menu.html b/docs/1.0-dev/api/evennia.contrib.tutorials.tutorial_world.intro_menu.html
index adddf1fc4b..68c1ba2c79 100644
--- a/docs/1.0-dev/api/evennia.contrib.tutorials.tutorial_world.intro_menu.html
+++ b/docs/1.0-dev/api/evennia.contrib.tutorials.tutorial_world.intro_menu.html
@@ -225,11 +225,8 @@ for testing out some commands.
Formats the option block.
- Parameters
-
-optionlist (list) – List of (key, description) tuples for every
-option related to this node.
-caller (Object, Account or None, optional) – The caller of the node.
-
+optionlist (list) – List of (key, description) tuples for every
+option related to this node.
- Returns
options (str) – The formatted option display.
diff --git a/docs/1.0-dev/api/evennia.contrib.tutorials.tutorial_world.objects.html b/docs/1.0-dev/api/evennia.contrib.tutorials.tutorial_world.objects.html
index af3ba87e98..89b6d89780 100644
--- a/docs/1.0-dev/api/evennia.contrib.tutorials.tutorial_world.objects.html
+++ b/docs/1.0-dev/api/evennia.contrib.tutorials.tutorial_world.objects.html
@@ -507,7 +507,7 @@ shift green root up/down
@@ -543,7 +543,7 @@ yellow/green - horizontal roots
-
-
search_index_entry = {'aliases': 'push pull shiftroot move', 'category': 'tutorialworld', 'key': 'shift', 'no_prefix': ' push pull shiftroot move', 'tags': '', 'text': '\n Shifts roots around.\n\n Usage:\n shift blue root left/right\n shift red root left/right\n shift yellow root up/down\n shift green root up/down\n\n '}¶
+search_index_entry = {'aliases': 'push shiftroot pull move', 'category': 'tutorialworld', 'key': 'shift', 'no_prefix': ' push shiftroot pull move', 'tags': '', 'text': '\n Shifts roots around.\n\n Usage:\n shift blue root left/right\n shift red root left/right\n shift yellow root up/down\n shift green root up/down\n\n '}¶
@@ -730,7 +730,7 @@ parry - forgoes your attack but will make you harder to hit on next
-
-
aliases = ['chop', 'parry', 'fight', 'kill', 'pierce', 'stab', 'defend', 'hit', 'thrust', 'bash', 'slash']¶
+aliases = ['bash', 'stab', 'thrust', 'fight', 'hit', 'kill', 'defend', 'parry', 'chop', 'pierce', 'slash']¶
@@ -756,7 +756,7 @@ parry - forgoes your attack but will make you harder to hit on next
-
-
search_index_entry = {'aliases': 'chop parry fight kill pierce stab defend hit thrust bash slash', 'category': 'tutorialworld', 'key': 'attack', 'no_prefix': ' chop parry fight kill pierce stab defend hit thrust bash slash', 'tags': '', 'text': '\n Attack the enemy. Commands:\n\n stab <enemy>\n slash <enemy>\n parry\n\n stab - (thrust) makes a lot of damage but is harder to hit with.\n slash - is easier to land, but does not make as much damage.\n parry - forgoes your attack but will make you harder to hit on next\n enemy attack.\n\n '}¶
+search_index_entry = {'aliases': 'bash stab thrust fight hit kill defend parry chop pierce slash', 'category': 'tutorialworld', 'key': 'attack', 'no_prefix': ' bash stab thrust fight hit kill defend parry chop pierce slash', 'tags': '', 'text': '\n Attack the enemy. Commands:\n\n stab <enemy>\n slash <enemy>\n parry\n\n stab - (thrust) makes a lot of damage but is harder to hit with.\n slash - is easier to land, but does not make as much damage.\n parry - forgoes your attack but will make you harder to hit on next\n enemy attack.\n\n '}¶
diff --git a/docs/1.0-dev/api/evennia.contrib.tutorials.tutorial_world.rooms.html b/docs/1.0-dev/api/evennia.contrib.tutorials.tutorial_world.rooms.html
index c647225881..ee85807886 100644
--- a/docs/1.0-dev/api/evennia.contrib.tutorials.tutorial_world.rooms.html
+++ b/docs/1.0-dev/api/evennia.contrib.tutorials.tutorial_world.rooms.html
@@ -919,7 +919,7 @@ to find something.
-
-
aliases = ['l', 'search', 'feel', 'feel around', 'fiddle']¶
+aliases = ['l', 'feel around', 'search', 'fiddle', 'feel']¶
@@ -947,7 +947,7 @@ random chance of eventually finding a light source.
-
-
search_index_entry = {'aliases': 'l search feel feel around fiddle', 'category': 'tutorialworld', 'key': 'look', 'no_prefix': ' l search feel feel around fiddle', 'tags': '', 'text': '\n Look around in darkness\n\n Usage:\n look\n\n Look around in the darkness, trying\n to find something.\n '}¶
+search_index_entry = {'aliases': 'l feel around search fiddle feel', 'category': 'tutorialworld', 'key': 'look', 'no_prefix': ' l feel around search fiddle feel', 'tags': '', 'text': '\n Look around in darkness\n\n Usage:\n look\n\n Look around in the darkness, trying\n to find something.\n '}¶
diff --git a/docs/1.0-dev/api/evennia.typeclasses.attributes.html b/docs/1.0-dev/api/evennia.typeclasses.attributes.html
index 8bf5e208ab..a58507ea28 100644
--- a/docs/1.0-dev/api/evennia.typeclasses.attributes.html
+++ b/docs/1.0-dev/api/evennia.typeclasses.attributes.html
@@ -192,7 +192,7 @@ of a .pk field as a sign that the Attribute was deleted.
-
-class
evennia.typeclasses.attributes.AttributeProperty(default=None, category=None, strattr=False, lockstring='', autocreate=False)[source]¶
+class evennia.typeclasses.attributes.AttributeProperty(default=None, category=None, strattr=False, lockstring='', autocreate=True)[source]¶
Bases: object
Attribute property descriptor. Allows for specifying Attributes as Django-like ‘fields’
on the class level. Note that while one can set a lock on the Attribute,
@@ -210,7 +210,7 @@ the full AttributeHandler if you need to do access checks.
-
-
__init__(default=None, category=None, strattr=False, lockstring='', autocreate=False)[source]¶
+__init__(default=None, category=None, strattr=False, lockstring='', autocreate=True)[source]¶
Initialize an Attribute as a property descriptor.
- Keyword Arguments
@@ -222,22 +222,55 @@ stored more efficiently.
lockstring (str) – This is not itself useful with the property, but only if
using the full AttributeHandler.get(accessing_obj=…) to access the
Attribute.
-autocreate (bool) – If an un-found Attr should lead to auto-creating the
-Attribute (with the default value). If False, the property will
-return the default value until it has been explicitly set. This means
-less database accesses, but also means the property will have no
-corresponding Attribute if wanting to access it directly via the
-AttributeHandler (it will also not show up in examine).
+autocreate (bool) – True by default; this means Evennia makes sure to create a new
+copy of the Attribute (with the default value) whenever a new object with this
+property is created. If False, no Attribute will be created until the property
+is explicitly assigned a value. This makes it more efficient while it retains
+its default (there’s no db access), but without an actual Attribute generated,
+one cannot access it via .db, the AttributeHandler or see it with examine.
+
+-
+
at_set(value)[source]¶
+The value to set is passed through the method. It can be used to customize/validate
+the input in a custom child class.
+
+- Parameters
+value (any) – The value about to the stored in this Attribute.
+
+- Returns
+any – The value to store.
+
+- Raises
+AttributeError – If the value is invalid to store.
+
+
+
+
+
+-
+
at_get(value)[source]¶
+The value returned from the Attribute is passed through this method. It can be used
+to react to the retrieval or modify the result in some way.
+
+- Parameters
+value (any) – Value returned from the Attribute.
+
+- Returns
+any – The value to return to the caller.
+
+
+
+
-
-class
evennia.typeclasses.attributes.NAttributeProperty(default=None, category=None, strattr=False, lockstring='', autocreate=False)[source]¶
+class evennia.typeclasses.attributes.NAttributeProperty(default=None, category=None, strattr=False, lockstring='', autocreate=True)[source]¶
Bases: evennia.typeclasses.attributes.AttributeProperty
NAttribute property descriptor. Allows for specifying NAttributes as Django-like ‘fields’
on the class level.
diff --git a/docs/1.0-dev/api/evennia.typeclasses.models.html b/docs/1.0-dev/api/evennia.typeclasses.models.html
index 908e806a4d..f2421396d8 100644
--- a/docs/1.0-dev/api/evennia.typeclasses.models.html
+++ b/docs/1.0-dev/api/evennia.typeclasses.models.html
@@ -195,6 +195,13 @@ will be logged for every step the loader must take beyond
2.
+
+-
+
init_evennia_properties()[source]¶
+Called by creation methods; makes sure to initialize Attribute/TagProperties
+by fetching them once.
+
+
-
attributes[source]¶
diff --git a/docs/1.0-dev/api/evennia.typeclasses.tags.html b/docs/1.0-dev/api/evennia.typeclasses.tags.html
index df83618450..8c5ddf2ace 100644
--- a/docs/1.0-dev/api/evennia.typeclasses.tags.html
+++ b/docs/1.0-dev/api/evennia.typeclasses.tags.html
@@ -237,6 +237,34 @@ class built by **create_forward_many_to_many_manager()** define
+
+-
+class
evennia.typeclasses.tags.TagProperty(category=None, data=None)[source]¶
+Bases: object
+Tag property descriptor. Allows for setting tags on an object as Django-like ‘fields’
+on the class level. Since Tags are almost always used for querying, Tags are always
+created/assigned along with the object. Make sure the property/tagname does not collide
+with an existing method/property on the class. If it does, you must use tags.add()
+instead.
+Example:
+class Character(DefaultCharacter):
+ mytag = TagProperty() # category=None
+ mytag2 = TagProperty(category="tagcategory")
+
+
+
+-
+
taghandler_name = 'tags'¶
+
+
+
+
+
+
-
class
evennia.typeclasses.tags.TagHandler(obj)[source]¶
@@ -312,7 +340,7 @@ category (note, that None is the default category).
-
-
get(key=None, default=None, category=None, return_tagobj=False, return_list=False)[source]¶
+get(key=None, default=None, category=None, return_tagobj=False, return_list=False, raise_exception=False)[source]¶
Get the tag for the given key, category or combination of the two.
- Parameters
@@ -327,6 +355,8 @@ returned.
instead of a string representation of the Tag.
return_list (bool, optional) – Always return a list, regardless
of number of matches.
+raise_exception (bool, optional) – Raise AttributeError if no matches
+are found.
- Returns
@@ -339,6 +369,9 @@ will be a list with the default value as its only element.
+- Raises
+AttributeError – If finding no matches and raise_exception is True.
+
@@ -418,6 +451,25 @@ of a latter tuple with the same category).
+
+-
+class
evennia.typeclasses.tags.AliasProperty(category=None, data=None)[source]¶
+Bases: evennia.typeclasses.tags.TagProperty
+Allows for setting aliases like Django fields:
+class Character(DefaultCharacter):
+ # note that every character will get the alias bob. Make sure
+ # the alias property does not collide with an existing method
+ # or property on the class.
+ bob = AliasProperty()
+
+
+
+-
+
taghandler_name = 'aliases'¶
+
+
+
+
-
class
evennia.typeclasses.tags.AliasHandler(obj)[source]¶
@@ -425,6 +477,24 @@ of a latter tuple with the same category).
A handler for the Alias Tag type.
+
+-
+class
evennia.typeclasses.tags.PermissionProperty(category=None, data=None)[source]¶
+Bases: evennia.typeclasses.tags.TagProperty
+Allows for setting permissions like Django fields:
+class Character(DefaultCharacter):
+ # note that every character will get this permission! Make
+ # sure it doesn't collide with an existing method or property.
+ myperm = PermissionProperty()
+
+
+
+-
+
taghandler_name = 'permissions'¶
+
+
+
+
-
class
evennia.typeclasses.tags.PermissionHandler(obj)[source]¶
diff --git a/docs/1.0-dev/api/evennia.utils.eveditor.html b/docs/1.0-dev/api/evennia.utils.eveditor.html
index fd598375a2..4d79332807 100644
--- a/docs/1.0-dev/api/evennia.utils.eveditor.html
+++ b/docs/1.0-dev/api/evennia.utils.eveditor.html
@@ -287,7 +287,7 @@ indentation.
-
-
aliases = [':w', ':f', ':dd', ':fd', ':p', ':fi', ':UU', ':S', ':A', ':x', ':I', ':dw', ':q', ':DD', ':::', ':=', ':u', ':i', ':j', ':s', ':!', ':wq', ':q!', ':<', '::', ':', ':echo', ':>', ':h', ':y', ':uu', ':r']¶
+aliases = [':fd', ':h', ':A', ':I', ':w', ':dd', ':q!', ':f', ':::', ':<', ':u', '::', ':j', ':i', ':fi', ':!', ':S', ':uu', ':dw', ':', ':echo', ':DD', ':p', ':=', ':>', ':q', ':s', ':y', ':wq', ':UU', ':r', ':x']¶
@@ -315,7 +315,7 @@ efficient presentation.
-
-
search_index_entry = {'aliases': ':w :f :dd :fd :p :fi :UU :S :A :x :I :dw :q :DD ::: := :u :i :j :s :! :wq :q! :< :: : :echo :> :h :y :uu :r', 'category': 'general', 'key': ':editor_command_group', 'no_prefix': ' :w :f :dd :fd :p :fi :UU :S :A :x :I :dw :q :DD ::: := :u :i :j :s :! :wq :q! :< :: : :echo :> :h :y :uu :r', 'tags': '', 'text': '\n Commands for the editor\n '}¶
+search_index_entry = {'aliases': ':fd :h :A :I :w :dd :q! :f ::: :< :u :: :j :i :fi :! :S :uu :dw : :echo :DD :p := :> :q :s :y :wq :UU :r :x', 'category': 'general', 'key': ':editor_command_group', 'no_prefix': ' :fd :h :A :I :w :dd :q! :f ::: :< :u :: :j :i :fi :! :S :uu :dw : :echo :DD :p := :> :q :s :y :wq :UU :r :x', 'tags': '', 'text': '\n Commands for the editor\n '}¶
diff --git a/docs/1.0-dev/api/evennia.utils.evmenu.html b/docs/1.0-dev/api/evennia.utils.evmenu.html
index 79b652c3ea..57dbef5f2c 100644
--- a/docs/1.0-dev/api/evennia.utils.evmenu.html
+++ b/docs/1.0-dev/api/evennia.utils.evmenu.html
@@ -717,11 +717,8 @@ should also report errors directly to the user.
Formats the option block.
- Parameters
-
-optionlist (list) – List of (key, description) tuples for every
-option related to this node.
-caller (Object, Account or None, optional) – The caller of the node.
-
+optionlist (list) – List of (key, description) tuples for every
+option related to this node.
- Returns
options (str) – The formatted option display.
@@ -957,7 +954,7 @@ single question.
-
-
aliases = ['abort', 'yes', 'n', 'a', '__nomatch_command', 'y', 'no']¶
+aliases = ['n', 'a', 'abort', '__nomatch_command', 'yes', 'no', 'y']¶
@@ -983,7 +980,7 @@ single question.
-
-
search_index_entry = {'aliases': 'abort yes n a __nomatch_command y no', 'category': 'general', 'key': '__noinput_command', 'no_prefix': ' abort yes n a __nomatch_command y no', 'tags': '', 'text': '\n Handle a prompt for yes or no. Press [return] for the default choice.\n\n '}¶
+search_index_entry = {'aliases': 'n a abort __nomatch_command yes no y', 'category': 'general', 'key': '__noinput_command', 'no_prefix': ' n a abort __nomatch_command yes no y', 'tags': '', 'text': '\n Handle a prompt for yes or no. Press [return] for the default choice.\n\n '}¶
diff --git a/docs/1.0-dev/api/evennia.utils.evmore.html b/docs/1.0-dev/api/evennia.utils.evmore.html
index 64d269d24a..72ed9232e5 100644
--- a/docs/1.0-dev/api/evennia.utils.evmore.html
+++ b/docs/1.0-dev/api/evennia.utils.evmore.html
@@ -88,7 +88,7 @@ the caller.msg() construct every time the page is updated.
-
-
aliases = ['q', 'abort', 'next', 'p', 't', 'end', 'n', 'previous', 'a', 'e', 'top', 'quit']¶
+aliases = ['p', 'next', 'end', 'n', 't', 'abort', 'previous', 'e', 'q', 'top', 'quit', 'a']¶
@@ -114,7 +114,7 @@ the caller.msg() construct every time the page is updated.
-
-
search_index_entry = {'aliases': 'q abort next p t end n previous a e top quit', 'category': 'general', 'key': '__noinput_command', 'no_prefix': ' q abort next p t end n previous a e top quit', 'tags': '', 'text': '\n Manipulate the text paging. Catch no-input with aliases.\n '}¶
+search_index_entry = {'aliases': 'p next end n t abort previous e q top quit a', 'category': 'general', 'key': '__noinput_command', 'no_prefix': ' p next end n t abort previous e q top quit a', 'tags': '', 'text': '\n Manipulate the text paging. Catch no-input with aliases.\n '}¶
diff --git a/docs/1.0-dev/api/evennia.utils.funcparser.html b/docs/1.0-dev/api/evennia.utils.funcparser.html
index f2563da04c..9e2206cc2f 100644
--- a/docs/1.0-dev/api/evennia.utils.funcparser.html
+++ b/docs/1.0-dev/api/evennia.utils.funcparser.html
@@ -68,14 +68,14 @@ regular Python functions on the form:
# use underscore to NOT make the function available as a callable
def funcname(*args, **kwargs):
- # this can be accecssed as $funcname(*args, **kwargs)
+ # this can be accessed as $funcname(*args, **kwargs)
# it must always accept *args and **kwargs.
...
return something
Usage:
-from evennia.utils.funcparser
+from evennia.utils.funcparser import FuncParser
parser = FuncParser("path.to.module_with_callables")
result = parser.parse("String with $funcname() in it")
@@ -612,7 +612,7 @@ used to find which object $you(key) refers to. If not given, th
The kwargs should be passed the to parser directly.
Examples
This can be used by the say or emote hooks to pass actor stance
-strings. This should usually be combined with the $inflect() callable.
+strings. This should usually be combined with the $conj() callable.
With a grin, $you() $conj(jump) at $you(tommy).
@@ -663,7 +663,7 @@ Others will see “With a grin, CharName jumps.”
-
evennia.utils.funcparser.funcparser_callable_pronoun(*args, caller=None, receiver=None, capitalize=False, **kwargs)[source]¶
-Usage: $prop(word, [options])
+Usage: $pron(word, [options])
Adjust pronouns to the expected form. Pronouns are words you use instead of a
proper name, such as ‘him’, ‘herself’, ‘theirs’ etc. These look different
depending on who sees the outgoing string.
@@ -782,7 +782,7 @@ get a default gender fallback (if not specified in the call). If a callable,
.gender will be called without arguments and should return a string
male/female/neutral/plural (plural is considered a gender for this purpose).
If no gender property/callable is found, neutral is used as a fallback.
-The pronoun-type default (if not spefified in call) is subject pronoun.
+The pronoun-type default (if not specified in call) is subject pronoun.
- Parameters
@@ -871,7 +871,7 @@ and the mapping can always be auto-detected.
-
evennia.utils.funcparser.funcparser_callable_pronoun_capitalize(*args, caller=None, receiver=None, capitalize=True, **kwargs)[source]¶
-Usage: $Pron(word) - always maps to a capitalized word.
+Usage: $Pron(word, [options]) - always maps to a capitalized word.
diff --git a/docs/1.0-dev/api/evennia.utils.text2html.html b/docs/1.0-dev/api/evennia.utils.text2html.html
index 38174a6910..a3af0ce400 100644
--- a/docs/1.0-dev/api/evennia.utils.text2html.html
+++ b/docs/1.0-dev/api/evennia.utils.text2html.html
@@ -68,143 +68,48 @@ snippet #577349 on
--
-
hilite = '\x1b[1m'¶
+-
+
style_codes = ['\x1b[0m', '\x1b[4m', '\x1b[1m', '\x1b[22m', '\x1b[7m', '\x1b[5m', '\x1b[1;7m', '\x1b[1;5m', '\x1b[7;5m', '\x1b[1;5;7m']¶
--
-
unhilite = '\x1b[22m'¶
+-
+
ansi_color_codes = ['\x1b[30m', '\x1b[31m', '\x1b[32m', '\x1b[33m', '\x1b[34m', '\x1b[35m', '\x1b[36m', '\x1b[37m']¶
--
-
normal = '\x1b[0m'¶
+-
+
xterm_fg_codes = ['\x1b[38;5;16m', '\x1b[38;5;17m', '\x1b[38;5;18m', '\x1b[38;5;19m', '\x1b[38;5;20m', '\x1b[38;5;21m', '\x1b[38;5;22m', '\x1b[38;5;23m', '\x1b[38;5;24m', '\x1b[38;5;25m', '\x1b[38;5;26m', '\x1b[38;5;27m', '\x1b[38;5;28m', '\x1b[38;5;29m', '\x1b[38;5;30m', '\x1b[38;5;31m', '\x1b[38;5;32m', '\x1b[38;5;33m', '\x1b[38;5;34m', '\x1b[38;5;35m', '\x1b[38;5;36m', '\x1b[38;5;37m', '\x1b[38;5;38m', '\x1b[38;5;39m', '\x1b[38;5;40m', '\x1b[38;5;41m', '\x1b[38;5;42m', '\x1b[38;5;43m', '\x1b[38;5;44m', '\x1b[38;5;45m', '\x1b[38;5;46m', '\x1b[38;5;47m', '\x1b[38;5;48m', '\x1b[38;5;49m', '\x1b[38;5;50m', '\x1b[38;5;51m', '\x1b[38;5;52m', '\x1b[38;5;53m', '\x1b[38;5;54m', '\x1b[38;5;55m', '\x1b[38;5;56m', '\x1b[38;5;57m', '\x1b[38;5;58m', '\x1b[38;5;59m', '\x1b[38;5;60m', '\x1b[38;5;61m', '\x1b[38;5;62m', '\x1b[38;5;63m', '\x1b[38;5;64m', '\x1b[38;5;65m', '\x1b[38;5;66m', '\x1b[38;5;67m', '\x1b[38;5;68m', '\x1b[38;5;69m', '\x1b[38;5;70m', '\x1b[38;5;71m', '\x1b[38;5;72m', '\x1b[38;5;73m', '\x1b[38;5;74m', '\x1b[38;5;75m', '\x1b[38;5;76m', '\x1b[38;5;77m', '\x1b[38;5;78m', '\x1b[38;5;79m', '\x1b[38;5;80m', '\x1b[38;5;81m', '\x1b[38;5;82m', '\x1b[38;5;83m', '\x1b[38;5;84m', '\x1b[38;5;85m', '\x1b[38;5;86m', '\x1b[38;5;87m', '\x1b[38;5;88m', '\x1b[38;5;89m', '\x1b[38;5;90m', '\x1b[38;5;91m', '\x1b[38;5;92m', '\x1b[38;5;93m', '\x1b[38;5;94m', '\x1b[38;5;95m', '\x1b[38;5;96m', '\x1b[38;5;97m', '\x1b[38;5;98m', '\x1b[38;5;99m', '\x1b[38;5;100m', '\x1b[38;5;101m', '\x1b[38;5;102m', '\x1b[38;5;103m', '\x1b[38;5;104m', '\x1b[38;5;105m', '\x1b[38;5;106m', '\x1b[38;5;107m', '\x1b[38;5;108m', '\x1b[38;5;109m', '\x1b[38;5;110m', '\x1b[38;5;111m', '\x1b[38;5;112m', '\x1b[38;5;113m', '\x1b[38;5;114m', '\x1b[38;5;115m', '\x1b[38;5;116m', '\x1b[38;5;117m', '\x1b[38;5;118m', '\x1b[38;5;119m', '\x1b[38;5;120m', '\x1b[38;5;121m', '\x1b[38;5;122m', '\x1b[38;5;123m', '\x1b[38;5;124m', '\x1b[38;5;125m', '\x1b[38;5;126m', '\x1b[38;5;127m', '\x1b[38;5;128m', '\x1b[38;5;129m', '\x1b[38;5;130m', '\x1b[38;5;131m', '\x1b[38;5;132m', '\x1b[38;5;133m', '\x1b[38;5;134m', '\x1b[38;5;135m', '\x1b[38;5;136m', '\x1b[38;5;137m', '\x1b[38;5;138m', '\x1b[38;5;139m', '\x1b[38;5;140m', '\x1b[38;5;141m', '\x1b[38;5;142m', '\x1b[38;5;143m', '\x1b[38;5;144m', '\x1b[38;5;145m', '\x1b[38;5;146m', '\x1b[38;5;147m', '\x1b[38;5;148m', '\x1b[38;5;149m', '\x1b[38;5;150m', '\x1b[38;5;151m', '\x1b[38;5;152m', '\x1b[38;5;153m', '\x1b[38;5;154m', '\x1b[38;5;155m', '\x1b[38;5;156m', '\x1b[38;5;157m', '\x1b[38;5;158m', '\x1b[38;5;159m', '\x1b[38;5;160m', '\x1b[38;5;161m', '\x1b[38;5;162m', '\x1b[38;5;163m', '\x1b[38;5;164m', '\x1b[38;5;165m', '\x1b[38;5;166m', '\x1b[38;5;167m', '\x1b[38;5;168m', '\x1b[38;5;169m', '\x1b[38;5;170m', '\x1b[38;5;171m', '\x1b[38;5;172m', '\x1b[38;5;173m', '\x1b[38;5;174m', '\x1b[38;5;175m', '\x1b[38;5;176m', '\x1b[38;5;177m', '\x1b[38;5;178m', '\x1b[38;5;179m', '\x1b[38;5;180m', '\x1b[38;5;181m', '\x1b[38;5;182m', '\x1b[38;5;183m', '\x1b[38;5;184m', '\x1b[38;5;185m', '\x1b[38;5;186m', '\x1b[38;5;187m', '\x1b[38;5;188m', '\x1b[38;5;189m', '\x1b[38;5;190m', '\x1b[38;5;191m', '\x1b[38;5;192m', '\x1b[38;5;193m', '\x1b[38;5;194m', '\x1b[38;5;195m', '\x1b[38;5;196m', '\x1b[38;5;197m', '\x1b[38;5;198m', '\x1b[38;5;199m', '\x1b[38;5;200m', '\x1b[38;5;201m', '\x1b[38;5;202m', '\x1b[38;5;203m', '\x1b[38;5;204m', '\x1b[38;5;205m', '\x1b[38;5;206m', '\x1b[38;5;207m', '\x1b[38;5;208m', '\x1b[38;5;209m', '\x1b[38;5;210m', '\x1b[38;5;211m', '\x1b[38;5;212m', '\x1b[38;5;213m', '\x1b[38;5;214m', '\x1b[38;5;215m', '\x1b[38;5;216m', '\x1b[38;5;217m', '\x1b[38;5;218m', '\x1b[38;5;219m', '\x1b[38;5;220m', '\x1b[38;5;221m', '\x1b[38;5;222m', '\x1b[38;5;223m', '\x1b[38;5;224m', '\x1b[38;5;225m', '\x1b[38;5;226m', '\x1b[38;5;227m', '\x1b[38;5;228m', '\x1b[38;5;229m', '\x1b[38;5;230m', '\x1b[38;5;231m', '\x1b[38;5;232m', '\x1b[38;5;233m', '\x1b[38;5;234m', '\x1b[38;5;235m', '\x1b[38;5;236m', '\x1b[38;5;237m', '\x1b[38;5;238m', '\x1b[38;5;239m', '\x1b[38;5;240m', '\x1b[38;5;241m', '\x1b[38;5;242m', '\x1b[38;5;243m', '\x1b[38;5;244m', '\x1b[38;5;245m', '\x1b[38;5;246m', '\x1b[38;5;247m', '\x1b[38;5;248m', '\x1b[38;5;249m', '\x1b[38;5;250m', '\x1b[38;5;251m', '\x1b[38;5;252m', '\x1b[38;5;253m', '\x1b[38;5;254m', '\x1b[38;5;255m']¶
--
-
underline = '\x1b[4m'¶
+-
+
ansi_bg_codes = ['\x1b[40m', '\x1b[41m', '\x1b[42m', '\x1b[43m', '\x1b[44m', '\x1b[45m', '\x1b[46m', '\x1b[47m']¶
--
-
blink = '\x1b[5m'¶
+-
+
xterm_bg_codes = ['\x1b[48;5;16m', '\x1b[48;5;17m', '\x1b[48;5;18m', '\x1b[48;5;19m', '\x1b[48;5;20m', '\x1b[48;5;21m', '\x1b[48;5;22m', '\x1b[48;5;23m', '\x1b[48;5;24m', '\x1b[48;5;25m', '\x1b[48;5;26m', '\x1b[48;5;27m', '\x1b[48;5;28m', '\x1b[48;5;29m', '\x1b[48;5;30m', '\x1b[48;5;31m', '\x1b[48;5;32m', '\x1b[48;5;33m', '\x1b[48;5;34m', '\x1b[48;5;35m', '\x1b[48;5;36m', '\x1b[48;5;37m', '\x1b[48;5;38m', '\x1b[48;5;39m', '\x1b[48;5;40m', '\x1b[48;5;41m', '\x1b[48;5;42m', '\x1b[48;5;43m', '\x1b[48;5;44m', '\x1b[48;5;45m', '\x1b[48;5;46m', '\x1b[48;5;47m', '\x1b[48;5;48m', '\x1b[48;5;49m', '\x1b[48;5;50m', '\x1b[48;5;51m', '\x1b[48;5;52m', '\x1b[48;5;53m', '\x1b[48;5;54m', '\x1b[48;5;55m', '\x1b[48;5;56m', '\x1b[48;5;57m', '\x1b[48;5;58m', '\x1b[48;5;59m', '\x1b[48;5;60m', '\x1b[48;5;61m', '\x1b[48;5;62m', '\x1b[48;5;63m', '\x1b[48;5;64m', '\x1b[48;5;65m', '\x1b[48;5;66m', '\x1b[48;5;67m', '\x1b[48;5;68m', '\x1b[48;5;69m', '\x1b[48;5;70m', '\x1b[48;5;71m', '\x1b[48;5;72m', '\x1b[48;5;73m', '\x1b[48;5;74m', '\x1b[48;5;75m', '\x1b[48;5;76m', '\x1b[48;5;77m', '\x1b[48;5;78m', '\x1b[48;5;79m', '\x1b[48;5;80m', '\x1b[48;5;81m', '\x1b[48;5;82m', '\x1b[48;5;83m', '\x1b[48;5;84m', '\x1b[48;5;85m', '\x1b[48;5;86m', '\x1b[48;5;87m', '\x1b[48;5;88m', '\x1b[48;5;89m', '\x1b[48;5;90m', '\x1b[48;5;91m', '\x1b[48;5;92m', '\x1b[48;5;93m', '\x1b[48;5;94m', '\x1b[48;5;95m', '\x1b[48;5;96m', '\x1b[48;5;97m', '\x1b[48;5;98m', '\x1b[48;5;99m', '\x1b[48;5;100m', '\x1b[48;5;101m', '\x1b[48;5;102m', '\x1b[48;5;103m', '\x1b[48;5;104m', '\x1b[48;5;105m', '\x1b[48;5;106m', '\x1b[48;5;107m', '\x1b[48;5;108m', '\x1b[48;5;109m', '\x1b[48;5;110m', '\x1b[48;5;111m', '\x1b[48;5;112m', '\x1b[48;5;113m', '\x1b[48;5;114m', '\x1b[48;5;115m', '\x1b[48;5;116m', '\x1b[48;5;117m', '\x1b[48;5;118m', '\x1b[48;5;119m', '\x1b[48;5;120m', '\x1b[48;5;121m', '\x1b[48;5;122m', '\x1b[48;5;123m', '\x1b[48;5;124m', '\x1b[48;5;125m', '\x1b[48;5;126m', '\x1b[48;5;127m', '\x1b[48;5;128m', '\x1b[48;5;129m', '\x1b[48;5;130m', '\x1b[48;5;131m', '\x1b[48;5;132m', '\x1b[48;5;133m', '\x1b[48;5;134m', '\x1b[48;5;135m', '\x1b[48;5;136m', '\x1b[48;5;137m', '\x1b[48;5;138m', '\x1b[48;5;139m', '\x1b[48;5;140m', '\x1b[48;5;141m', '\x1b[48;5;142m', '\x1b[48;5;143m', '\x1b[48;5;144m', '\x1b[48;5;145m', '\x1b[48;5;146m', '\x1b[48;5;147m', '\x1b[48;5;148m', '\x1b[48;5;149m', '\x1b[48;5;150m', '\x1b[48;5;151m', '\x1b[48;5;152m', '\x1b[48;5;153m', '\x1b[48;5;154m', '\x1b[48;5;155m', '\x1b[48;5;156m', '\x1b[48;5;157m', '\x1b[48;5;158m', '\x1b[48;5;159m', '\x1b[48;5;160m', '\x1b[48;5;161m', '\x1b[48;5;162m', '\x1b[48;5;163m', '\x1b[48;5;164m', '\x1b[48;5;165m', '\x1b[48;5;166m', '\x1b[48;5;167m', '\x1b[48;5;168m', '\x1b[48;5;169m', '\x1b[48;5;170m', '\x1b[48;5;171m', '\x1b[48;5;172m', '\x1b[48;5;173m', '\x1b[48;5;174m', '\x1b[48;5;175m', '\x1b[48;5;176m', '\x1b[48;5;177m', '\x1b[48;5;178m', '\x1b[48;5;179m', '\x1b[48;5;180m', '\x1b[48;5;181m', '\x1b[48;5;182m', '\x1b[48;5;183m', '\x1b[48;5;184m', '\x1b[48;5;185m', '\x1b[48;5;186m', '\x1b[48;5;187m', '\x1b[48;5;188m', '\x1b[48;5;189m', '\x1b[48;5;190m', '\x1b[48;5;191m', '\x1b[48;5;192m', '\x1b[48;5;193m', '\x1b[48;5;194m', '\x1b[48;5;195m', '\x1b[48;5;196m', '\x1b[48;5;197m', '\x1b[48;5;198m', '\x1b[48;5;199m', '\x1b[48;5;200m', '\x1b[48;5;201m', '\x1b[48;5;202m', '\x1b[48;5;203m', '\x1b[48;5;204m', '\x1b[48;5;205m', '\x1b[48;5;206m', '\x1b[48;5;207m', '\x1b[48;5;208m', '\x1b[48;5;209m', '\x1b[48;5;210m', '\x1b[48;5;211m', '\x1b[48;5;212m', '\x1b[48;5;213m', '\x1b[48;5;214m', '\x1b[48;5;215m', '\x1b[48;5;216m', '\x1b[48;5;217m', '\x1b[48;5;218m', '\x1b[48;5;219m', '\x1b[48;5;220m', '\x1b[48;5;221m', '\x1b[48;5;222m', '\x1b[48;5;223m', '\x1b[48;5;224m', '\x1b[48;5;225m', '\x1b[48;5;226m', '\x1b[48;5;227m', '\x1b[48;5;228m', '\x1b[48;5;229m', '\x1b[48;5;230m', '\x1b[48;5;231m', '\x1b[48;5;232m', '\x1b[48;5;233m', '\x1b[48;5;234m', '\x1b[48;5;235m', '\x1b[48;5;236m', '\x1b[48;5;237m', '\x1b[48;5;238m', '\x1b[48;5;239m', '\x1b[48;5;240m', '\x1b[48;5;241m', '\x1b[48;5;242m', '\x1b[48;5;243m', '\x1b[48;5;244m', '\x1b[48;5;245m', '\x1b[48;5;246m', '\x1b[48;5;247m', '\x1b[48;5;248m', '\x1b[48;5;249m', '\x1b[48;5;250m', '\x1b[48;5;251m', '\x1b[48;5;252m', '\x1b[48;5;253m', '\x1b[48;5;254m', '\x1b[48;5;255m']¶
--
-
inverse = '\x1b[7m'¶
+-
+
re_style = re.compile('(\x1b\\[0m|\x1b\\[4m|\x1b\\[1m|\x1b\\[22m|\x1b\\[7m|\x1b\\[5m|\x1b\\[1;7m|\x1b\\[1;5m|\x1b\\[7;5m|\x1b\\[1;5;7m|\x1b\\[30m|\x1b\\[31m|\x1b\\[32m|\x1b\\[33m|\x1b\\[34m|\x1b\\[35m|\x1b\\[36m|\x1b\\[37m)¶
--
-
colorcodes = [('color-000', '\x1b[22m\x1b[30m'), ('color-001', '\x1b[22m\x1b[31m'), ('color-002', '\x1b[22m\x1b[32m'), ('color-003', '\x1b[22m\x1b[33m'), ('color-004', '\x1b[22m\x1b[34m'), ('color-005', '\x1b[22m\x1b[35m'), ('color-006', '\x1b[22m\x1b[36m'), ('color-007', '\x1b[22m\x1b[37m'), ('color-008', '\x1b[1m\x1b[30m'), ('color-009', '\x1b[1m\x1b[31m'), ('color-010', '\x1b[1m\x1b[32m'), ('color-011', '\x1b[1m\x1b[33m'), ('color-012', '\x1b[1m\x1b[34m'), ('color-013', '\x1b[1m\x1b[35m'), ('color-014', '\x1b[1m\x1b[36m'), ('color-015', '\x1b[1m\x1b[37m'), ('color-016', '\x1b[38;5;16m'), ('color-017', '\x1b[38;5;17m'), ('color-018', '\x1b[38;5;18m'), ('color-019', '\x1b[38;5;19m'), ('color-020', '\x1b[38;5;20m'), ('color-021', '\x1b[38;5;21m'), ('color-022', '\x1b[38;5;22m'), ('color-023', '\x1b[38;5;23m'), ('color-024', '\x1b[38;5;24m'), ('color-025', '\x1b[38;5;25m'), ('color-026', '\x1b[38;5;26m'), ('color-027', '\x1b[38;5;27m'), ('color-028', '\x1b[38;5;28m'), ('color-029', '\x1b[38;5;29m'), ('color-030', '\x1b[38;5;30m'), ('color-031', '\x1b[38;5;31m'), ('color-032', '\x1b[38;5;32m'), ('color-033', '\x1b[38;5;33m'), ('color-034', '\x1b[38;5;34m'), ('color-035', '\x1b[38;5;35m'), ('color-036', '\x1b[38;5;36m'), ('color-037', '\x1b[38;5;37m'), ('color-038', '\x1b[38;5;38m'), ('color-039', '\x1b[38;5;39m'), ('color-040', '\x1b[38;5;40m'), ('color-041', '\x1b[38;5;41m'), ('color-042', '\x1b[38;5;42m'), ('color-043', '\x1b[38;5;43m'), ('color-044', '\x1b[38;5;44m'), ('color-045', '\x1b[38;5;45m'), ('color-046', '\x1b[38;5;46m'), ('color-047', '\x1b[38;5;47m'), ('color-048', '\x1b[38;5;48m'), ('color-049', '\x1b[38;5;49m'), ('color-050', '\x1b[38;5;50m'), ('color-051', '\x1b[38;5;51m'), ('color-052', '\x1b[38;5;52m'), ('color-053', '\x1b[38;5;53m'), ('color-054', '\x1b[38;5;54m'), ('color-055', '\x1b[38;5;55m'), ('color-056', '\x1b[38;5;56m'), ('color-057', '\x1b[38;5;57m'), ('color-058', '\x1b[38;5;58m'), ('color-059', '\x1b[38;5;59m'), ('color-060', '\x1b[38;5;60m'), ('color-061', '\x1b[38;5;61m'), ('color-062', '\x1b[38;5;62m'), ('color-063', '\x1b[38;5;63m'), ('color-064', '\x1b[38;5;64m'), ('color-065', '\x1b[38;5;65m'), ('color-066', '\x1b[38;5;66m'), ('color-067', '\x1b[38;5;67m'), ('color-068', '\x1b[38;5;68m'), ('color-069', '\x1b[38;5;69m'), ('color-070', '\x1b[38;5;70m'), ('color-071', '\x1b[38;5;71m'), ('color-072', '\x1b[38;5;72m'), ('color-073', '\x1b[38;5;73m'), ('color-074', '\x1b[38;5;74m'), ('color-075', '\x1b[38;5;75m'), ('color-076', '\x1b[38;5;76m'), ('color-077', '\x1b[38;5;77m'), ('color-078', '\x1b[38;5;78m'), ('color-079', '\x1b[38;5;79m'), ('color-080', '\x1b[38;5;80m'), ('color-081', '\x1b[38;5;81m'), ('color-082', '\x1b[38;5;82m'), ('color-083', '\x1b[38;5;83m'), ('color-084', '\x1b[38;5;84m'), ('color-085', '\x1b[38;5;85m'), ('color-086', '\x1b[38;5;86m'), ('color-087', '\x1b[38;5;87m'), ('color-088', '\x1b[38;5;88m'), ('color-089', '\x1b[38;5;89m'), ('color-090', '\x1b[38;5;90m'), ('color-091', '\x1b[38;5;91m'), ('color-092', '\x1b[38;5;92m'), ('color-093', '\x1b[38;5;93m'), ('color-094', '\x1b[38;5;94m'), ('color-095', '\x1b[38;5;95m'), ('color-096', '\x1b[38;5;96m'), ('color-097', '\x1b[38;5;97m'), ('color-098', '\x1b[38;5;98m'), ('color-099', '\x1b[38;5;99m'), ('color-100', '\x1b[38;5;100m'), ('color-101', '\x1b[38;5;101m'), ('color-102', '\x1b[38;5;102m'), ('color-103', '\x1b[38;5;103m'), ('color-104', '\x1b[38;5;104m'), ('color-105', '\x1b[38;5;105m'), ('color-106', '\x1b[38;5;106m'), ('color-107', '\x1b[38;5;107m'), ('color-108', '\x1b[38;5;108m'), ('color-109', '\x1b[38;5;109m'), ('color-110', '\x1b[38;5;110m'), ('color-111', '\x1b[38;5;111m'), ('color-112', '\x1b[38;5;112m'), ('color-113', '\x1b[38;5;113m'), ('color-114', '\x1b[38;5;114m'), ('color-115', '\x1b[38;5;115m'), ('color-116', '\x1b[38;5;116m'), ('color-117', '\x1b[38;5;117m'), ('color-118', '\x1b[38;5;118m'), ('color-119', '\x1b[38;5;119m'), ('color-120', '\x1b[38;5;120m'), ('color-121', '\x1b[38;5;121m'), ('color-122', '\x1b[38;5;122m'), ('color-123', '\x1b[38;5;123m'), ('color-124', '\x1b[38;5;124m'), ('color-125', '\x1b[38;5;125m'), ('color-126', '\x1b[38;5;126m'), ('color-127', '\x1b[38;5;127m'), ('color-128', '\x1b[38;5;128m'), ('color-129', '\x1b[38;5;129m'), ('color-130', '\x1b[38;5;130m'), ('color-131', '\x1b[38;5;131m'), ('color-132', '\x1b[38;5;132m'), ('color-133', '\x1b[38;5;133m'), ('color-134', '\x1b[38;5;134m'), ('color-135', '\x1b[38;5;135m'), ('color-136', '\x1b[38;5;136m'), ('color-137', '\x1b[38;5;137m'), ('color-138', '\x1b[38;5;138m'), ('color-139', '\x1b[38;5;139m'), ('color-140', '\x1b[38;5;140m'), ('color-141', '\x1b[38;5;141m'), ('color-142', '\x1b[38;5;142m'), ('color-143', '\x1b[38;5;143m'), ('color-144', '\x1b[38;5;144m'), ('color-145', '\x1b[38;5;145m'), ('color-146', '\x1b[38;5;146m'), ('color-147', '\x1b[38;5;147m'), ('color-148', '\x1b[38;5;148m'), ('color-149', '\x1b[38;5;149m'), ('color-150', '\x1b[38;5;150m'), ('color-151', '\x1b[38;5;151m'), ('color-152', '\x1b[38;5;152m'), ('color-153', '\x1b[38;5;153m'), ('color-154', '\x1b[38;5;154m'), ('color-155', '\x1b[38;5;155m'), ('color-156', '\x1b[38;5;156m'), ('color-157', '\x1b[38;5;157m'), ('color-158', '\x1b[38;5;158m'), ('color-159', '\x1b[38;5;159m'), ('color-160', '\x1b[38;5;160m'), ('color-161', '\x1b[38;5;161m'), ('color-162', '\x1b[38;5;162m'), ('color-163', '\x1b[38;5;163m'), ('color-164', '\x1b[38;5;164m'), ('color-165', '\x1b[38;5;165m'), ('color-166', '\x1b[38;5;166m'), ('color-167', '\x1b[38;5;167m'), ('color-168', '\x1b[38;5;168m'), ('color-169', '\x1b[38;5;169m'), ('color-170', '\x1b[38;5;170m'), ('color-171', '\x1b[38;5;171m'), ('color-172', '\x1b[38;5;172m'), ('color-173', '\x1b[38;5;173m'), ('color-174', '\x1b[38;5;174m'), ('color-175', '\x1b[38;5;175m'), ('color-176', '\x1b[38;5;176m'), ('color-177', '\x1b[38;5;177m'), ('color-178', '\x1b[38;5;178m'), ('color-179', '\x1b[38;5;179m'), ('color-180', '\x1b[38;5;180m'), ('color-181', '\x1b[38;5;181m'), ('color-182', '\x1b[38;5;182m'), ('color-183', '\x1b[38;5;183m'), ('color-184', '\x1b[38;5;184m'), ('color-185', '\x1b[38;5;185m'), ('color-186', '\x1b[38;5;186m'), ('color-187', '\x1b[38;5;187m'), ('color-188', '\x1b[38;5;188m'), ('color-189', '\x1b[38;5;189m'), ('color-190', '\x1b[38;5;190m'), ('color-191', '\x1b[38;5;191m'), ('color-192', '\x1b[38;5;192m'), ('color-193', '\x1b[38;5;193m'), ('color-194', '\x1b[38;5;194m'), ('color-195', '\x1b[38;5;195m'), ('color-196', '\x1b[38;5;196m'), ('color-197', '\x1b[38;5;197m'), ('color-198', '\x1b[38;5;198m'), ('color-199', '\x1b[38;5;199m'), ('color-200', '\x1b[38;5;200m'), ('color-201', '\x1b[38;5;201m'), ('color-202', '\x1b[38;5;202m'), ('color-203', '\x1b[38;5;203m'), ('color-204', '\x1b[38;5;204m'), ('color-205', '\x1b[38;5;205m'), ('color-206', '\x1b[38;5;206m'), ('color-207', '\x1b[38;5;207m'), ('color-208', '\x1b[38;5;208m'), ('color-209', '\x1b[38;5;209m'), ('color-210', '\x1b[38;5;210m'), ('color-211', '\x1b[38;5;211m'), ('color-212', '\x1b[38;5;212m'), ('color-213', '\x1b[38;5;213m'), ('color-214', '\x1b[38;5;214m'), ('color-215', '\x1b[38;5;215m'), ('color-216', '\x1b[38;5;216m'), ('color-217', '\x1b[38;5;217m'), ('color-218', '\x1b[38;5;218m'), ('color-219', '\x1b[38;5;219m'), ('color-220', '\x1b[38;5;220m'), ('color-221', '\x1b[38;5;221m'), ('color-222', '\x1b[38;5;222m'), ('color-223', '\x1b[38;5;223m'), ('color-224', '\x1b[38;5;224m'), ('color-225', '\x1b[38;5;225m'), ('color-226', '\x1b[38;5;226m'), ('color-227', '\x1b[38;5;227m'), ('color-228', '\x1b[38;5;228m'), ('color-229', '\x1b[38;5;229m'), ('color-230', '\x1b[38;5;230m'), ('color-231', '\x1b[38;5;231m'), ('color-232', '\x1b[38;5;232m'), ('color-233', '\x1b[38;5;233m'), ('color-234', '\x1b[38;5;234m'), ('color-235', '\x1b[38;5;235m'), ('color-236', '\x1b[38;5;236m'), ('color-237', '\x1b[38;5;237m'), ('color-238', '\x1b[38;5;238m'), ('color-239', '\x1b[38;5;239m'), ('color-240', '\x1b[38;5;240m'), ('color-241', '\x1b[38;5;241m'), ('color-242', '\x1b[38;5;242m'), ('color-243', '\x1b[38;5;243m'), ('color-244', '\x1b[38;5;244m'), ('color-245', '\x1b[38;5;245m'), ('color-246', '\x1b[38;5;246m'), ('color-247', '\x1b[38;5;247m'), ('color-248', '\x1b[38;5;248m'), ('color-249', '\x1b[38;5;249m'), ('color-250', '\x1b[38;5;250m'), ('color-251', '\x1b[38;5;251m'), ('color-252', '\x1b[38;5;252m'), ('color-253', '\x1b[38;5;253m'), ('color-254', '\x1b[38;5;254m'), ('color-255', '\x1b[38;5;255m')]¶
+-
+
colorlist = ['\x1b[22m\x1b[30m', '\x1b[22m\x1b[31m', '\x1b[22m\x1b[32m', '\x1b[22m\x1b[33m', '\x1b[22m\x1b[34m', '\x1b[22m\x1b[35m', '\x1b[22m\x1b[36m', '\x1b[22m\x1b[37m', '\x1b[1m\x1b[30m', '\x1b[1m\x1b[31m', '\x1b[1m\x1b[32m', '\x1b[1m\x1b[33m', '\x1b[1m\x1b[34m', '\x1b[1m\x1b[35m', '\x1b[1m\x1b[36m', '\x1b[1m\x1b[37m', '\x1b[38;5;16m', '\x1b[38;5;17m', '\x1b[38;5;18m', '\x1b[38;5;19m', '\x1b[38;5;20m', '\x1b[38;5;21m', '\x1b[38;5;22m', '\x1b[38;5;23m', '\x1b[38;5;24m', '\x1b[38;5;25m', '\x1b[38;5;26m', '\x1b[38;5;27m', '\x1b[38;5;28m', '\x1b[38;5;29m', '\x1b[38;5;30m', '\x1b[38;5;31m', '\x1b[38;5;32m', '\x1b[38;5;33m', '\x1b[38;5;34m', '\x1b[38;5;35m', '\x1b[38;5;36m', '\x1b[38;5;37m', '\x1b[38;5;38m', '\x1b[38;5;39m', '\x1b[38;5;40m', '\x1b[38;5;41m', '\x1b[38;5;42m', '\x1b[38;5;43m', '\x1b[38;5;44m', '\x1b[38;5;45m', '\x1b[38;5;46m', '\x1b[38;5;47m', '\x1b[38;5;48m', '\x1b[38;5;49m', '\x1b[38;5;50m', '\x1b[38;5;51m', '\x1b[38;5;52m', '\x1b[38;5;53m', '\x1b[38;5;54m', '\x1b[38;5;55m', '\x1b[38;5;56m', '\x1b[38;5;57m', '\x1b[38;5;58m', '\x1b[38;5;59m', '\x1b[38;5;60m', '\x1b[38;5;61m', '\x1b[38;5;62m', '\x1b[38;5;63m', '\x1b[38;5;64m', '\x1b[38;5;65m', '\x1b[38;5;66m', '\x1b[38;5;67m', '\x1b[38;5;68m', '\x1b[38;5;69m', '\x1b[38;5;70m', '\x1b[38;5;71m', '\x1b[38;5;72m', '\x1b[38;5;73m', '\x1b[38;5;74m', '\x1b[38;5;75m', '\x1b[38;5;76m', '\x1b[38;5;77m', '\x1b[38;5;78m', '\x1b[38;5;79m', '\x1b[38;5;80m', '\x1b[38;5;81m', '\x1b[38;5;82m', '\x1b[38;5;83m', '\x1b[38;5;84m', '\x1b[38;5;85m', '\x1b[38;5;86m', '\x1b[38;5;87m', '\x1b[38;5;88m', '\x1b[38;5;89m', '\x1b[38;5;90m', '\x1b[38;5;91m', '\x1b[38;5;92m', '\x1b[38;5;93m', '\x1b[38;5;94m', '\x1b[38;5;95m', '\x1b[38;5;96m', '\x1b[38;5;97m', '\x1b[38;5;98m', '\x1b[38;5;99m', '\x1b[38;5;100m', '\x1b[38;5;101m', '\x1b[38;5;102m', '\x1b[38;5;103m', '\x1b[38;5;104m', '\x1b[38;5;105m', '\x1b[38;5;106m', '\x1b[38;5;107m', '\x1b[38;5;108m', '\x1b[38;5;109m', '\x1b[38;5;110m', '\x1b[38;5;111m', '\x1b[38;5;112m', '\x1b[38;5;113m', '\x1b[38;5;114m', '\x1b[38;5;115m', '\x1b[38;5;116m', '\x1b[38;5;117m', '\x1b[38;5;118m', '\x1b[38;5;119m', '\x1b[38;5;120m', '\x1b[38;5;121m', '\x1b[38;5;122m', '\x1b[38;5;123m', '\x1b[38;5;124m', '\x1b[38;5;125m', '\x1b[38;5;126m', '\x1b[38;5;127m', '\x1b[38;5;128m', '\x1b[38;5;129m', '\x1b[38;5;130m', '\x1b[38;5;131m', '\x1b[38;5;132m', '\x1b[38;5;133m', '\x1b[38;5;134m', '\x1b[38;5;135m', '\x1b[38;5;136m', '\x1b[38;5;137m', '\x1b[38;5;138m', '\x1b[38;5;139m', '\x1b[38;5;140m', '\x1b[38;5;141m', '\x1b[38;5;142m', '\x1b[38;5;143m', '\x1b[38;5;144m', '\x1b[38;5;145m', '\x1b[38;5;146m', '\x1b[38;5;147m', '\x1b[38;5;148m', '\x1b[38;5;149m', '\x1b[38;5;150m', '\x1b[38;5;151m', '\x1b[38;5;152m', '\x1b[38;5;153m', '\x1b[38;5;154m', '\x1b[38;5;155m', '\x1b[38;5;156m', '\x1b[38;5;157m', '\x1b[38;5;158m', '\x1b[38;5;159m', '\x1b[38;5;160m', '\x1b[38;5;161m', '\x1b[38;5;162m', '\x1b[38;5;163m', '\x1b[38;5;164m', '\x1b[38;5;165m', '\x1b[38;5;166m', '\x1b[38;5;167m', '\x1b[38;5;168m', '\x1b[38;5;169m', '\x1b[38;5;170m', '\x1b[38;5;171m', '\x1b[38;5;172m', '\x1b[38;5;173m', '\x1b[38;5;174m', '\x1b[38;5;175m', '\x1b[38;5;176m', '\x1b[38;5;177m', '\x1b[38;5;178m', '\x1b[38;5;179m', '\x1b[38;5;180m', '\x1b[38;5;181m', '\x1b[38;5;182m', '\x1b[38;5;183m', '\x1b[38;5;184m', '\x1b[38;5;185m', '\x1b[38;5;186m', '\x1b[38;5;187m', '\x1b[38;5;188m', '\x1b[38;5;189m', '\x1b[38;5;190m', '\x1b[38;5;191m', '\x1b[38;5;192m', '\x1b[38;5;193m', '\x1b[38;5;194m', '\x1b[38;5;195m', '\x1b[38;5;196m', '\x1b[38;5;197m', '\x1b[38;5;198m', '\x1b[38;5;199m', '\x1b[38;5;200m', '\x1b[38;5;201m', '\x1b[38;5;202m', '\x1b[38;5;203m', '\x1b[38;5;204m', '\x1b[38;5;205m', '\x1b[38;5;206m', '\x1b[38;5;207m', '\x1b[38;5;208m', '\x1b[38;5;209m', '\x1b[38;5;210m', '\x1b[38;5;211m', '\x1b[38;5;212m', '\x1b[38;5;213m', '\x1b[38;5;214m', '\x1b[38;5;215m', '\x1b[38;5;216m', '\x1b[38;5;217m', '\x1b[38;5;218m', '\x1b[38;5;219m', '\x1b[38;5;220m', '\x1b[38;5;221m', '\x1b[38;5;222m', '\x1b[38;5;223m', '\x1b[38;5;224m', '\x1b[38;5;225m', '\x1b[38;5;226m', '\x1b[38;5;227m', '\x1b[38;5;228m', '\x1b[38;5;229m', '\x1b[38;5;230m', '\x1b[38;5;231m', '\x1b[38;5;232m', '\x1b[38;5;233m', '\x1b[38;5;234m', '\x1b[38;5;235m', '\x1b[38;5;236m', '\x1b[38;5;237m', '\x1b[38;5;238m', '\x1b[38;5;239m', '\x1b[38;5;240m', '\x1b[38;5;241m', '\x1b[38;5;242m', '\x1b[38;5;243m', '\x1b[38;5;244m', '\x1b[38;5;245m', '\x1b[38;5;246m', '\x1b[38;5;247m', '\x1b[38;5;248m', '\x1b[38;5;249m', '\x1b[38;5;250m', '\x1b[38;5;251m', '\x1b[38;5;252m', '\x1b[38;5;253m', '\x1b[38;5;254m', '\x1b[38;5;255m']¶
--
-
colorback = [('bgcolor-000', '\x1b[40m'), ('bgcolor-001', '\x1b[41m'), ('bgcolor-002', '\x1b[42m'), ('bgcolor-003', '\x1b[43m'), ('bgcolor-004', '\x1b[44m'), ('bgcolor-005', '\x1b[45m'), ('bgcolor-006', '\x1b[46m'), ('bgcolor-007', '\x1b[47m'), ('bgcolor-008', '\x1b[1m\x1b[40m'), ('bgcolor-009', '\x1b[1m\x1b[41m'), ('bgcolor-010', '\x1b[1m\x1b[42m'), ('bgcolor-011', '\x1b[1m\x1b[43m'), ('bgcolor-012', '\x1b[1m\x1b[44m'), ('bgcolor-013', '\x1b[1m\x1b[45m'), ('bgcolor-014', '\x1b[1m\x1b[46m'), ('bgcolor-015', '\x1b[1m\x1b[47m'), ('bgcolor-016', '\x1b[48;5;16m'), ('bgcolor-017', '\x1b[48;5;17m'), ('bgcolor-018', '\x1b[48;5;18m'), ('bgcolor-019', '\x1b[48;5;19m'), ('bgcolor-020', '\x1b[48;5;20m'), ('bgcolor-021', '\x1b[48;5;21m'), ('bgcolor-022', '\x1b[48;5;22m'), ('bgcolor-023', '\x1b[48;5;23m'), ('bgcolor-024', '\x1b[48;5;24m'), ('bgcolor-025', '\x1b[48;5;25m'), ('bgcolor-026', '\x1b[48;5;26m'), ('bgcolor-027', '\x1b[48;5;27m'), ('bgcolor-028', '\x1b[48;5;28m'), ('bgcolor-029', '\x1b[48;5;29m'), ('bgcolor-030', '\x1b[48;5;30m'), ('bgcolor-031', '\x1b[48;5;31m'), ('bgcolor-032', '\x1b[48;5;32m'), ('bgcolor-033', '\x1b[48;5;33m'), ('bgcolor-034', '\x1b[48;5;34m'), ('bgcolor-035', '\x1b[48;5;35m'), ('bgcolor-036', '\x1b[48;5;36m'), ('bgcolor-037', '\x1b[48;5;37m'), ('bgcolor-038', '\x1b[48;5;38m'), ('bgcolor-039', '\x1b[48;5;39m'), ('bgcolor-040', '\x1b[48;5;40m'), ('bgcolor-041', '\x1b[48;5;41m'), ('bgcolor-042', '\x1b[48;5;42m'), ('bgcolor-043', '\x1b[48;5;43m'), ('bgcolor-044', '\x1b[48;5;44m'), ('bgcolor-045', '\x1b[48;5;45m'), ('bgcolor-046', '\x1b[48;5;46m'), ('bgcolor-047', '\x1b[48;5;47m'), ('bgcolor-048', '\x1b[48;5;48m'), ('bgcolor-049', '\x1b[48;5;49m'), ('bgcolor-050', '\x1b[48;5;50m'), ('bgcolor-051', '\x1b[48;5;51m'), ('bgcolor-052', '\x1b[48;5;52m'), ('bgcolor-053', '\x1b[48;5;53m'), ('bgcolor-054', '\x1b[48;5;54m'), ('bgcolor-055', '\x1b[48;5;55m'), ('bgcolor-056', '\x1b[48;5;56m'), ('bgcolor-057', '\x1b[48;5;57m'), ('bgcolor-058', '\x1b[48;5;58m'), ('bgcolor-059', '\x1b[48;5;59m'), ('bgcolor-060', '\x1b[48;5;60m'), ('bgcolor-061', '\x1b[48;5;61m'), ('bgcolor-062', '\x1b[48;5;62m'), ('bgcolor-063', '\x1b[48;5;63m'), ('bgcolor-064', '\x1b[48;5;64m'), ('bgcolor-065', '\x1b[48;5;65m'), ('bgcolor-066', '\x1b[48;5;66m'), ('bgcolor-067', '\x1b[48;5;67m'), ('bgcolor-068', '\x1b[48;5;68m'), ('bgcolor-069', '\x1b[48;5;69m'), ('bgcolor-070', '\x1b[48;5;70m'), ('bgcolor-071', '\x1b[48;5;71m'), ('bgcolor-072', '\x1b[48;5;72m'), ('bgcolor-073', '\x1b[48;5;73m'), ('bgcolor-074', '\x1b[48;5;74m'), ('bgcolor-075', '\x1b[48;5;75m'), ('bgcolor-076', '\x1b[48;5;76m'), ('bgcolor-077', '\x1b[48;5;77m'), ('bgcolor-078', '\x1b[48;5;78m'), ('bgcolor-079', '\x1b[48;5;79m'), ('bgcolor-080', '\x1b[48;5;80m'), ('bgcolor-081', '\x1b[48;5;81m'), ('bgcolor-082', '\x1b[48;5;82m'), ('bgcolor-083', '\x1b[48;5;83m'), ('bgcolor-084', '\x1b[48;5;84m'), ('bgcolor-085', '\x1b[48;5;85m'), ('bgcolor-086', '\x1b[48;5;86m'), ('bgcolor-087', '\x1b[48;5;87m'), ('bgcolor-088', '\x1b[48;5;88m'), ('bgcolor-089', '\x1b[48;5;89m'), ('bgcolor-090', '\x1b[48;5;90m'), ('bgcolor-091', '\x1b[48;5;91m'), ('bgcolor-092', '\x1b[48;5;92m'), ('bgcolor-093', '\x1b[48;5;93m'), ('bgcolor-094', '\x1b[48;5;94m'), ('bgcolor-095', '\x1b[48;5;95m'), ('bgcolor-096', '\x1b[48;5;96m'), ('bgcolor-097', '\x1b[48;5;97m'), ('bgcolor-098', '\x1b[48;5;98m'), ('bgcolor-099', '\x1b[48;5;99m'), ('bgcolor-100', '\x1b[48;5;100m'), ('bgcolor-101', '\x1b[48;5;101m'), ('bgcolor-102', '\x1b[48;5;102m'), ('bgcolor-103', '\x1b[48;5;103m'), ('bgcolor-104', '\x1b[48;5;104m'), ('bgcolor-105', '\x1b[48;5;105m'), ('bgcolor-106', '\x1b[48;5;106m'), ('bgcolor-107', '\x1b[48;5;107m'), ('bgcolor-108', '\x1b[48;5;108m'), ('bgcolor-109', '\x1b[48;5;109m'), ('bgcolor-110', '\x1b[48;5;110m'), ('bgcolor-111', '\x1b[48;5;111m'), ('bgcolor-112', '\x1b[48;5;112m'), ('bgcolor-113', '\x1b[48;5;113m'), ('bgcolor-114', '\x1b[48;5;114m'), ('bgcolor-115', '\x1b[48;5;115m'), ('bgcolor-116', '\x1b[48;5;116m'), ('bgcolor-117', '\x1b[48;5;117m'), ('bgcolor-118', '\x1b[48;5;118m'), ('bgcolor-119', '\x1b[48;5;119m'), ('bgcolor-120', '\x1b[48;5;120m'), ('bgcolor-121', '\x1b[48;5;121m'), ('bgcolor-122', '\x1b[48;5;122m'), ('bgcolor-123', '\x1b[48;5;123m'), ('bgcolor-124', '\x1b[48;5;124m'), ('bgcolor-125', '\x1b[48;5;125m'), ('bgcolor-126', '\x1b[48;5;126m'), ('bgcolor-127', '\x1b[48;5;127m'), ('bgcolor-128', '\x1b[48;5;128m'), ('bgcolor-129', '\x1b[48;5;129m'), ('bgcolor-130', '\x1b[48;5;130m'), ('bgcolor-131', '\x1b[48;5;131m'), ('bgcolor-132', '\x1b[48;5;132m'), ('bgcolor-133', '\x1b[48;5;133m'), ('bgcolor-134', '\x1b[48;5;134m'), ('bgcolor-135', '\x1b[48;5;135m'), ('bgcolor-136', '\x1b[48;5;136m'), ('bgcolor-137', '\x1b[48;5;137m'), ('bgcolor-138', '\x1b[48;5;138m'), ('bgcolor-139', '\x1b[48;5;139m'), ('bgcolor-140', '\x1b[48;5;140m'), ('bgcolor-141', '\x1b[48;5;141m'), ('bgcolor-142', '\x1b[48;5;142m'), ('bgcolor-143', '\x1b[48;5;143m'), ('bgcolor-144', '\x1b[48;5;144m'), ('bgcolor-145', '\x1b[48;5;145m'), ('bgcolor-146', '\x1b[48;5;146m'), ('bgcolor-147', '\x1b[48;5;147m'), ('bgcolor-148', '\x1b[48;5;148m'), ('bgcolor-149', '\x1b[48;5;149m'), ('bgcolor-150', '\x1b[48;5;150m'), ('bgcolor-151', '\x1b[48;5;151m'), ('bgcolor-152', '\x1b[48;5;152m'), ('bgcolor-153', '\x1b[48;5;153m'), ('bgcolor-154', '\x1b[48;5;154m'), ('bgcolor-155', '\x1b[48;5;155m'), ('bgcolor-156', '\x1b[48;5;156m'), ('bgcolor-157', '\x1b[48;5;157m'), ('bgcolor-158', '\x1b[48;5;158m'), ('bgcolor-159', '\x1b[48;5;159m'), ('bgcolor-160', '\x1b[48;5;160m'), ('bgcolor-161', '\x1b[48;5;161m'), ('bgcolor-162', '\x1b[48;5;162m'), ('bgcolor-163', '\x1b[48;5;163m'), ('bgcolor-164', '\x1b[48;5;164m'), ('bgcolor-165', '\x1b[48;5;165m'), ('bgcolor-166', '\x1b[48;5;166m'), ('bgcolor-167', '\x1b[48;5;167m'), ('bgcolor-168', '\x1b[48;5;168m'), ('bgcolor-169', '\x1b[48;5;169m'), ('bgcolor-170', '\x1b[48;5;170m'), ('bgcolor-171', '\x1b[48;5;171m'), ('bgcolor-172', '\x1b[48;5;172m'), ('bgcolor-173', '\x1b[48;5;173m'), ('bgcolor-174', '\x1b[48;5;174m'), ('bgcolor-175', '\x1b[48;5;175m'), ('bgcolor-176', '\x1b[48;5;176m'), ('bgcolor-177', '\x1b[48;5;177m'), ('bgcolor-178', '\x1b[48;5;178m'), ('bgcolor-179', '\x1b[48;5;179m'), ('bgcolor-180', '\x1b[48;5;180m'), ('bgcolor-181', '\x1b[48;5;181m'), ('bgcolor-182', '\x1b[48;5;182m'), ('bgcolor-183', '\x1b[48;5;183m'), ('bgcolor-184', '\x1b[48;5;184m'), ('bgcolor-185', '\x1b[48;5;185m'), ('bgcolor-186', '\x1b[48;5;186m'), ('bgcolor-187', '\x1b[48;5;187m'), ('bgcolor-188', '\x1b[48;5;188m'), ('bgcolor-189', '\x1b[48;5;189m'), ('bgcolor-190', '\x1b[48;5;190m'), ('bgcolor-191', '\x1b[48;5;191m'), ('bgcolor-192', '\x1b[48;5;192m'), ('bgcolor-193', '\x1b[48;5;193m'), ('bgcolor-194', '\x1b[48;5;194m'), ('bgcolor-195', '\x1b[48;5;195m'), ('bgcolor-196', '\x1b[48;5;196m'), ('bgcolor-197', '\x1b[48;5;197m'), ('bgcolor-198', '\x1b[48;5;198m'), ('bgcolor-199', '\x1b[48;5;199m'), ('bgcolor-200', '\x1b[48;5;200m'), ('bgcolor-201', '\x1b[48;5;201m'), ('bgcolor-202', '\x1b[48;5;202m'), ('bgcolor-203', '\x1b[48;5;203m'), ('bgcolor-204', '\x1b[48;5;204m'), ('bgcolor-205', '\x1b[48;5;205m'), ('bgcolor-206', '\x1b[48;5;206m'), ('bgcolor-207', '\x1b[48;5;207m'), ('bgcolor-208', '\x1b[48;5;208m'), ('bgcolor-209', '\x1b[48;5;209m'), ('bgcolor-210', '\x1b[48;5;210m'), ('bgcolor-211', '\x1b[48;5;211m'), ('bgcolor-212', '\x1b[48;5;212m'), ('bgcolor-213', '\x1b[48;5;213m'), ('bgcolor-214', '\x1b[48;5;214m'), ('bgcolor-215', '\x1b[48;5;215m'), ('bgcolor-216', '\x1b[48;5;216m'), ('bgcolor-217', '\x1b[48;5;217m'), ('bgcolor-218', '\x1b[48;5;218m'), ('bgcolor-219', '\x1b[48;5;219m'), ('bgcolor-220', '\x1b[48;5;220m'), ('bgcolor-221', '\x1b[48;5;221m'), ('bgcolor-222', '\x1b[48;5;222m'), ('bgcolor-223', '\x1b[48;5;223m'), ('bgcolor-224', '\x1b[48;5;224m'), ('bgcolor-225', '\x1b[48;5;225m'), ('bgcolor-226', '\x1b[48;5;226m'), ('bgcolor-227', '\x1b[48;5;227m'), ('bgcolor-228', '\x1b[48;5;228m'), ('bgcolor-229', '\x1b[48;5;229m'), ('bgcolor-230', '\x1b[48;5;230m'), ('bgcolor-231', '\x1b[48;5;231m'), ('bgcolor-232', '\x1b[48;5;232m'), ('bgcolor-233', '\x1b[48;5;233m'), ('bgcolor-234', '\x1b[48;5;234m'), ('bgcolor-235', '\x1b[48;5;235m'), ('bgcolor-236', '\x1b[48;5;236m'), ('bgcolor-237', '\x1b[48;5;237m'), ('bgcolor-238', '\x1b[48;5;238m'), ('bgcolor-239', '\x1b[48;5;239m'), ('bgcolor-240', '\x1b[48;5;240m'), ('bgcolor-241', '\x1b[48;5;241m'), ('bgcolor-242', '\x1b[48;5;242m'), ('bgcolor-243', '\x1b[48;5;243m'), ('bgcolor-244', '\x1b[48;5;244m'), ('bgcolor-245', '\x1b[48;5;245m'), ('bgcolor-246', '\x1b[48;5;246m'), ('bgcolor-247', '\x1b[48;5;247m'), ('bgcolor-248', '\x1b[48;5;248m'), ('bgcolor-249', '\x1b[48;5;249m'), ('bgcolor-250', '\x1b[48;5;250m'), ('bgcolor-251', '\x1b[48;5;251m'), ('bgcolor-252', '\x1b[48;5;252m'), ('bgcolor-253', '\x1b[48;5;253m'), ('bgcolor-254', '\x1b[48;5;254m'), ('bgcolor-255', '\x1b[48;5;255m')]¶
-
-
-
--
-
fg_colormap = {'\x1b[1m\x1b[30m': 'color-008', '\x1b[1m\x1b[31m': 'color-009', '\x1b[1m\x1b[32m': 'color-010', '\x1b[1m\x1b[33m': 'color-011', '\x1b[1m\x1b[34m': 'color-012', '\x1b[1m\x1b[35m': 'color-013', '\x1b[1m\x1b[36m': 'color-014', '\x1b[1m\x1b[37m': 'color-015', '\x1b[22m\x1b[30m': 'color-000', '\x1b[22m\x1b[31m': 'color-001', '\x1b[22m\x1b[32m': 'color-002', '\x1b[22m\x1b[33m': 'color-003', '\x1b[22m\x1b[34m': 'color-004', '\x1b[22m\x1b[35m': 'color-005', '\x1b[22m\x1b[36m': 'color-006', '\x1b[22m\x1b[37m': 'color-007', '\x1b[38;5;100m': 'color-100', '\x1b[38;5;101m': 'color-101', '\x1b[38;5;102m': 'color-102', '\x1b[38;5;103m': 'color-103', '\x1b[38;5;104m': 'color-104', '\x1b[38;5;105m': 'color-105', '\x1b[38;5;106m': 'color-106', '\x1b[38;5;107m': 'color-107', '\x1b[38;5;108m': 'color-108', '\x1b[38;5;109m': 'color-109', '\x1b[38;5;110m': 'color-110', '\x1b[38;5;111m': 'color-111', '\x1b[38;5;112m': 'color-112', '\x1b[38;5;113m': 'color-113', '\x1b[38;5;114m': 'color-114', '\x1b[38;5;115m': 'color-115', '\x1b[38;5;116m': 'color-116', '\x1b[38;5;117m': 'color-117', '\x1b[38;5;118m': 'color-118', '\x1b[38;5;119m': 'color-119', '\x1b[38;5;120m': 'color-120', '\x1b[38;5;121m': 'color-121', '\x1b[38;5;122m': 'color-122', '\x1b[38;5;123m': 'color-123', '\x1b[38;5;124m': 'color-124', '\x1b[38;5;125m': 'color-125', '\x1b[38;5;126m': 'color-126', '\x1b[38;5;127m': 'color-127', '\x1b[38;5;128m': 'color-128', '\x1b[38;5;129m': 'color-129', '\x1b[38;5;130m': 'color-130', '\x1b[38;5;131m': 'color-131', '\x1b[38;5;132m': 'color-132', '\x1b[38;5;133m': 'color-133', '\x1b[38;5;134m': 'color-134', '\x1b[38;5;135m': 'color-135', '\x1b[38;5;136m': 'color-136', '\x1b[38;5;137m': 'color-137', '\x1b[38;5;138m': 'color-138', '\x1b[38;5;139m': 'color-139', '\x1b[38;5;140m': 'color-140', '\x1b[38;5;141m': 'color-141', '\x1b[38;5;142m': 'color-142', '\x1b[38;5;143m': 'color-143', '\x1b[38;5;144m': 'color-144', '\x1b[38;5;145m': 'color-145', '\x1b[38;5;146m': 'color-146', '\x1b[38;5;147m': 'color-147', '\x1b[38;5;148m': 'color-148', '\x1b[38;5;149m': 'color-149', '\x1b[38;5;150m': 'color-150', '\x1b[38;5;151m': 'color-151', '\x1b[38;5;152m': 'color-152', '\x1b[38;5;153m': 'color-153', '\x1b[38;5;154m': 'color-154', '\x1b[38;5;155m': 'color-155', '\x1b[38;5;156m': 'color-156', '\x1b[38;5;157m': 'color-157', '\x1b[38;5;158m': 'color-158', '\x1b[38;5;159m': 'color-159', '\x1b[38;5;160m': 'color-160', '\x1b[38;5;161m': 'color-161', '\x1b[38;5;162m': 'color-162', '\x1b[38;5;163m': 'color-163', '\x1b[38;5;164m': 'color-164', '\x1b[38;5;165m': 'color-165', '\x1b[38;5;166m': 'color-166', '\x1b[38;5;167m': 'color-167', '\x1b[38;5;168m': 'color-168', '\x1b[38;5;169m': 'color-169', '\x1b[38;5;16m': 'color-016', '\x1b[38;5;170m': 'color-170', '\x1b[38;5;171m': 'color-171', '\x1b[38;5;172m': 'color-172', '\x1b[38;5;173m': 'color-173', '\x1b[38;5;174m': 'color-174', '\x1b[38;5;175m': 'color-175', '\x1b[38;5;176m': 'color-176', '\x1b[38;5;177m': 'color-177', '\x1b[38;5;178m': 'color-178', '\x1b[38;5;179m': 'color-179', '\x1b[38;5;17m': 'color-017', '\x1b[38;5;180m': 'color-180', '\x1b[38;5;181m': 'color-181', '\x1b[38;5;182m': 'color-182', '\x1b[38;5;183m': 'color-183', '\x1b[38;5;184m': 'color-184', '\x1b[38;5;185m': 'color-185', '\x1b[38;5;186m': 'color-186', '\x1b[38;5;187m': 'color-187', '\x1b[38;5;188m': 'color-188', '\x1b[38;5;189m': 'color-189', '\x1b[38;5;18m': 'color-018', '\x1b[38;5;190m': 'color-190', '\x1b[38;5;191m': 'color-191', '\x1b[38;5;192m': 'color-192', '\x1b[38;5;193m': 'color-193', '\x1b[38;5;194m': 'color-194', '\x1b[38;5;195m': 'color-195', '\x1b[38;5;196m': 'color-196', '\x1b[38;5;197m': 'color-197', '\x1b[38;5;198m': 'color-198', '\x1b[38;5;199m': 'color-199', '\x1b[38;5;19m': 'color-019', '\x1b[38;5;200m': 'color-200', '\x1b[38;5;201m': 'color-201', '\x1b[38;5;202m': 'color-202', '\x1b[38;5;203m': 'color-203', '\x1b[38;5;204m': 'color-204', '\x1b[38;5;205m': 'color-205', '\x1b[38;5;206m': 'color-206', '\x1b[38;5;207m': 'color-207', '\x1b[38;5;208m': 'color-208', '\x1b[38;5;209m': 'color-209', '\x1b[38;5;20m': 'color-020', '\x1b[38;5;210m': 'color-210', '\x1b[38;5;211m': 'color-211', '\x1b[38;5;212m': 'color-212', '\x1b[38;5;213m': 'color-213', '\x1b[38;5;214m': 'color-214', '\x1b[38;5;215m': 'color-215', '\x1b[38;5;216m': 'color-216', '\x1b[38;5;217m': 'color-217', '\x1b[38;5;218m': 'color-218', '\x1b[38;5;219m': 'color-219', '\x1b[38;5;21m': 'color-021', '\x1b[38;5;220m': 'color-220', '\x1b[38;5;221m': 'color-221', '\x1b[38;5;222m': 'color-222', '\x1b[38;5;223m': 'color-223', '\x1b[38;5;224m': 'color-224', '\x1b[38;5;225m': 'color-225', '\x1b[38;5;226m': 'color-226', '\x1b[38;5;227m': 'color-227', '\x1b[38;5;228m': 'color-228', '\x1b[38;5;229m': 'color-229', '\x1b[38;5;22m': 'color-022', '\x1b[38;5;230m': 'color-230', '\x1b[38;5;231m': 'color-231', '\x1b[38;5;232m': 'color-232', '\x1b[38;5;233m': 'color-233', '\x1b[38;5;234m': 'color-234', '\x1b[38;5;235m': 'color-235', '\x1b[38;5;236m': 'color-236', '\x1b[38;5;237m': 'color-237', '\x1b[38;5;238m': 'color-238', '\x1b[38;5;239m': 'color-239', '\x1b[38;5;23m': 'color-023', '\x1b[38;5;240m': 'color-240', '\x1b[38;5;241m': 'color-241', '\x1b[38;5;242m': 'color-242', '\x1b[38;5;243m': 'color-243', '\x1b[38;5;244m': 'color-244', '\x1b[38;5;245m': 'color-245', '\x1b[38;5;246m': 'color-246', '\x1b[38;5;247m': 'color-247', '\x1b[38;5;248m': 'color-248', '\x1b[38;5;249m': 'color-249', '\x1b[38;5;24m': 'color-024', '\x1b[38;5;250m': 'color-250', '\x1b[38;5;251m': 'color-251', '\x1b[38;5;252m': 'color-252', '\x1b[38;5;253m': 'color-253', '\x1b[38;5;254m': 'color-254', '\x1b[38;5;255m': 'color-255', '\x1b[38;5;25m': 'color-025', '\x1b[38;5;26m': 'color-026', '\x1b[38;5;27m': 'color-027', '\x1b[38;5;28m': 'color-028', '\x1b[38;5;29m': 'color-029', '\x1b[38;5;30m': 'color-030', '\x1b[38;5;31m': 'color-031', '\x1b[38;5;32m': 'color-032', '\x1b[38;5;33m': 'color-033', '\x1b[38;5;34m': 'color-034', '\x1b[38;5;35m': 'color-035', '\x1b[38;5;36m': 'color-036', '\x1b[38;5;37m': 'color-037', '\x1b[38;5;38m': 'color-038', '\x1b[38;5;39m': 'color-039', '\x1b[38;5;40m': 'color-040', '\x1b[38;5;41m': 'color-041', '\x1b[38;5;42m': 'color-042', '\x1b[38;5;43m': 'color-043', '\x1b[38;5;44m': 'color-044', '\x1b[38;5;45m': 'color-045', '\x1b[38;5;46m': 'color-046', '\x1b[38;5;47m': 'color-047', '\x1b[38;5;48m': 'color-048', '\x1b[38;5;49m': 'color-049', '\x1b[38;5;50m': 'color-050', '\x1b[38;5;51m': 'color-051', '\x1b[38;5;52m': 'color-052', '\x1b[38;5;53m': 'color-053', '\x1b[38;5;54m': 'color-054', '\x1b[38;5;55m': 'color-055', '\x1b[38;5;56m': 'color-056', '\x1b[38;5;57m': 'color-057', '\x1b[38;5;58m': 'color-058', '\x1b[38;5;59m': 'color-059', '\x1b[38;5;60m': 'color-060', '\x1b[38;5;61m': 'color-061', '\x1b[38;5;62m': 'color-062', '\x1b[38;5;63m': 'color-063', '\x1b[38;5;64m': 'color-064', '\x1b[38;5;65m': 'color-065', '\x1b[38;5;66m': 'color-066', '\x1b[38;5;67m': 'color-067', '\x1b[38;5;68m': 'color-068', '\x1b[38;5;69m': 'color-069', '\x1b[38;5;70m': 'color-070', '\x1b[38;5;71m': 'color-071', '\x1b[38;5;72m': 'color-072', '\x1b[38;5;73m': 'color-073', '\x1b[38;5;74m': 'color-074', '\x1b[38;5;75m': 'color-075', '\x1b[38;5;76m': 'color-076', '\x1b[38;5;77m': 'color-077', '\x1b[38;5;78m': 'color-078', '\x1b[38;5;79m': 'color-079', '\x1b[38;5;80m': 'color-080', '\x1b[38;5;81m': 'color-081', '\x1b[38;5;82m': 'color-082', '\x1b[38;5;83m': 'color-083', '\x1b[38;5;84m': 'color-084', '\x1b[38;5;85m': 'color-085', '\x1b[38;5;86m': 'color-086', '\x1b[38;5;87m': 'color-087', '\x1b[38;5;88m': 'color-088', '\x1b[38;5;89m': 'color-089', '\x1b[38;5;90m': 'color-090', '\x1b[38;5;91m': 'color-091', '\x1b[38;5;92m': 'color-092', '\x1b[38;5;93m': 'color-093', '\x1b[38;5;94m': 'color-094', '\x1b[38;5;95m': 'color-095', '\x1b[38;5;96m': 'color-096', '\x1b[38;5;97m': 'color-097', '\x1b[38;5;98m': 'color-098', '\x1b[38;5;99m': 'color-099'}¶
-
-
-
--
-
bg_colormap = {'\x1b[1m\x1b[40m': 'bgcolor-008', '\x1b[1m\x1b[41m': 'bgcolor-009', '\x1b[1m\x1b[42m': 'bgcolor-010', '\x1b[1m\x1b[43m': 'bgcolor-011', '\x1b[1m\x1b[44m': 'bgcolor-012', '\x1b[1m\x1b[45m': 'bgcolor-013', '\x1b[1m\x1b[46m': 'bgcolor-014', '\x1b[1m\x1b[47m': 'bgcolor-015', '\x1b[40m': 'bgcolor-000', '\x1b[41m': 'bgcolor-001', '\x1b[42m': 'bgcolor-002', '\x1b[43m': 'bgcolor-003', '\x1b[44m': 'bgcolor-004', '\x1b[45m': 'bgcolor-005', '\x1b[46m': 'bgcolor-006', '\x1b[47m': 'bgcolor-007', '\x1b[48;5;100m': 'bgcolor-100', '\x1b[48;5;101m': 'bgcolor-101', '\x1b[48;5;102m': 'bgcolor-102', '\x1b[48;5;103m': 'bgcolor-103', '\x1b[48;5;104m': 'bgcolor-104', '\x1b[48;5;105m': 'bgcolor-105', '\x1b[48;5;106m': 'bgcolor-106', '\x1b[48;5;107m': 'bgcolor-107', '\x1b[48;5;108m': 'bgcolor-108', '\x1b[48;5;109m': 'bgcolor-109', '\x1b[48;5;110m': 'bgcolor-110', '\x1b[48;5;111m': 'bgcolor-111', '\x1b[48;5;112m': 'bgcolor-112', '\x1b[48;5;113m': 'bgcolor-113', '\x1b[48;5;114m': 'bgcolor-114', '\x1b[48;5;115m': 'bgcolor-115', '\x1b[48;5;116m': 'bgcolor-116', '\x1b[48;5;117m': 'bgcolor-117', '\x1b[48;5;118m': 'bgcolor-118', '\x1b[48;5;119m': 'bgcolor-119', '\x1b[48;5;120m': 'bgcolor-120', '\x1b[48;5;121m': 'bgcolor-121', '\x1b[48;5;122m': 'bgcolor-122', '\x1b[48;5;123m': 'bgcolor-123', '\x1b[48;5;124m': 'bgcolor-124', '\x1b[48;5;125m': 'bgcolor-125', '\x1b[48;5;126m': 'bgcolor-126', '\x1b[48;5;127m': 'bgcolor-127', '\x1b[48;5;128m': 'bgcolor-128', '\x1b[48;5;129m': 'bgcolor-129', '\x1b[48;5;130m': 'bgcolor-130', '\x1b[48;5;131m': 'bgcolor-131', '\x1b[48;5;132m': 'bgcolor-132', '\x1b[48;5;133m': 'bgcolor-133', '\x1b[48;5;134m': 'bgcolor-134', '\x1b[48;5;135m': 'bgcolor-135', '\x1b[48;5;136m': 'bgcolor-136', '\x1b[48;5;137m': 'bgcolor-137', '\x1b[48;5;138m': 'bgcolor-138', '\x1b[48;5;139m': 'bgcolor-139', '\x1b[48;5;140m': 'bgcolor-140', '\x1b[48;5;141m': 'bgcolor-141', '\x1b[48;5;142m': 'bgcolor-142', '\x1b[48;5;143m': 'bgcolor-143', '\x1b[48;5;144m': 'bgcolor-144', '\x1b[48;5;145m': 'bgcolor-145', '\x1b[48;5;146m': 'bgcolor-146', '\x1b[48;5;147m': 'bgcolor-147', '\x1b[48;5;148m': 'bgcolor-148', '\x1b[48;5;149m': 'bgcolor-149', '\x1b[48;5;150m': 'bgcolor-150', '\x1b[48;5;151m': 'bgcolor-151', '\x1b[48;5;152m': 'bgcolor-152', '\x1b[48;5;153m': 'bgcolor-153', '\x1b[48;5;154m': 'bgcolor-154', '\x1b[48;5;155m': 'bgcolor-155', '\x1b[48;5;156m': 'bgcolor-156', '\x1b[48;5;157m': 'bgcolor-157', '\x1b[48;5;158m': 'bgcolor-158', '\x1b[48;5;159m': 'bgcolor-159', '\x1b[48;5;160m': 'bgcolor-160', '\x1b[48;5;161m': 'bgcolor-161', '\x1b[48;5;162m': 'bgcolor-162', '\x1b[48;5;163m': 'bgcolor-163', '\x1b[48;5;164m': 'bgcolor-164', '\x1b[48;5;165m': 'bgcolor-165', '\x1b[48;5;166m': 'bgcolor-166', '\x1b[48;5;167m': 'bgcolor-167', '\x1b[48;5;168m': 'bgcolor-168', '\x1b[48;5;169m': 'bgcolor-169', '\x1b[48;5;16m': 'bgcolor-016', '\x1b[48;5;170m': 'bgcolor-170', '\x1b[48;5;171m': 'bgcolor-171', '\x1b[48;5;172m': 'bgcolor-172', '\x1b[48;5;173m': 'bgcolor-173', '\x1b[48;5;174m': 'bgcolor-174', '\x1b[48;5;175m': 'bgcolor-175', '\x1b[48;5;176m': 'bgcolor-176', '\x1b[48;5;177m': 'bgcolor-177', '\x1b[48;5;178m': 'bgcolor-178', '\x1b[48;5;179m': 'bgcolor-179', '\x1b[48;5;17m': 'bgcolor-017', '\x1b[48;5;180m': 'bgcolor-180', '\x1b[48;5;181m': 'bgcolor-181', '\x1b[48;5;182m': 'bgcolor-182', '\x1b[48;5;183m': 'bgcolor-183', '\x1b[48;5;184m': 'bgcolor-184', '\x1b[48;5;185m': 'bgcolor-185', '\x1b[48;5;186m': 'bgcolor-186', '\x1b[48;5;187m': 'bgcolor-187', '\x1b[48;5;188m': 'bgcolor-188', '\x1b[48;5;189m': 'bgcolor-189', '\x1b[48;5;18m': 'bgcolor-018', '\x1b[48;5;190m': 'bgcolor-190', '\x1b[48;5;191m': 'bgcolor-191', '\x1b[48;5;192m': 'bgcolor-192', '\x1b[48;5;193m': 'bgcolor-193', '\x1b[48;5;194m': 'bgcolor-194', '\x1b[48;5;195m': 'bgcolor-195', '\x1b[48;5;196m': 'bgcolor-196', '\x1b[48;5;197m': 'bgcolor-197', '\x1b[48;5;198m': 'bgcolor-198', '\x1b[48;5;199m': 'bgcolor-199', '\x1b[48;5;19m': 'bgcolor-019', '\x1b[48;5;200m': 'bgcolor-200', '\x1b[48;5;201m': 'bgcolor-201', '\x1b[48;5;202m': 'bgcolor-202', '\x1b[48;5;203m': 'bgcolor-203', '\x1b[48;5;204m': 'bgcolor-204', '\x1b[48;5;205m': 'bgcolor-205', '\x1b[48;5;206m': 'bgcolor-206', '\x1b[48;5;207m': 'bgcolor-207', '\x1b[48;5;208m': 'bgcolor-208', '\x1b[48;5;209m': 'bgcolor-209', '\x1b[48;5;20m': 'bgcolor-020', '\x1b[48;5;210m': 'bgcolor-210', '\x1b[48;5;211m': 'bgcolor-211', '\x1b[48;5;212m': 'bgcolor-212', '\x1b[48;5;213m': 'bgcolor-213', '\x1b[48;5;214m': 'bgcolor-214', '\x1b[48;5;215m': 'bgcolor-215', '\x1b[48;5;216m': 'bgcolor-216', '\x1b[48;5;217m': 'bgcolor-217', '\x1b[48;5;218m': 'bgcolor-218', '\x1b[48;5;219m': 'bgcolor-219', '\x1b[48;5;21m': 'bgcolor-021', '\x1b[48;5;220m': 'bgcolor-220', '\x1b[48;5;221m': 'bgcolor-221', '\x1b[48;5;222m': 'bgcolor-222', '\x1b[48;5;223m': 'bgcolor-223', '\x1b[48;5;224m': 'bgcolor-224', '\x1b[48;5;225m': 'bgcolor-225', '\x1b[48;5;226m': 'bgcolor-226', '\x1b[48;5;227m': 'bgcolor-227', '\x1b[48;5;228m': 'bgcolor-228', '\x1b[48;5;229m': 'bgcolor-229', '\x1b[48;5;22m': 'bgcolor-022', '\x1b[48;5;230m': 'bgcolor-230', '\x1b[48;5;231m': 'bgcolor-231', '\x1b[48;5;232m': 'bgcolor-232', '\x1b[48;5;233m': 'bgcolor-233', '\x1b[48;5;234m': 'bgcolor-234', '\x1b[48;5;235m': 'bgcolor-235', '\x1b[48;5;236m': 'bgcolor-236', '\x1b[48;5;237m': 'bgcolor-237', '\x1b[48;5;238m': 'bgcolor-238', '\x1b[48;5;239m': 'bgcolor-239', '\x1b[48;5;23m': 'bgcolor-023', '\x1b[48;5;240m': 'bgcolor-240', '\x1b[48;5;241m': 'bgcolor-241', '\x1b[48;5;242m': 'bgcolor-242', '\x1b[48;5;243m': 'bgcolor-243', '\x1b[48;5;244m': 'bgcolor-244', '\x1b[48;5;245m': 'bgcolor-245', '\x1b[48;5;246m': 'bgcolor-246', '\x1b[48;5;247m': 'bgcolor-247', '\x1b[48;5;248m': 'bgcolor-248', '\x1b[48;5;249m': 'bgcolor-249', '\x1b[48;5;24m': 'bgcolor-024', '\x1b[48;5;250m': 'bgcolor-250', '\x1b[48;5;251m': 'bgcolor-251', '\x1b[48;5;252m': 'bgcolor-252', '\x1b[48;5;253m': 'bgcolor-253', '\x1b[48;5;254m': 'bgcolor-254', '\x1b[48;5;255m': 'bgcolor-255', '\x1b[48;5;25m': 'bgcolor-025', '\x1b[48;5;26m': 'bgcolor-026', '\x1b[48;5;27m': 'bgcolor-027', '\x1b[48;5;28m': 'bgcolor-028', '\x1b[48;5;29m': 'bgcolor-029', '\x1b[48;5;30m': 'bgcolor-030', '\x1b[48;5;31m': 'bgcolor-031', '\x1b[48;5;32m': 'bgcolor-032', '\x1b[48;5;33m': 'bgcolor-033', '\x1b[48;5;34m': 'bgcolor-034', '\x1b[48;5;35m': 'bgcolor-035', '\x1b[48;5;36m': 'bgcolor-036', '\x1b[48;5;37m': 'bgcolor-037', '\x1b[48;5;38m': 'bgcolor-038', '\x1b[48;5;39m': 'bgcolor-039', '\x1b[48;5;40m': 'bgcolor-040', '\x1b[48;5;41m': 'bgcolor-041', '\x1b[48;5;42m': 'bgcolor-042', '\x1b[48;5;43m': 'bgcolor-043', '\x1b[48;5;44m': 'bgcolor-044', '\x1b[48;5;45m': 'bgcolor-045', '\x1b[48;5;46m': 'bgcolor-046', '\x1b[48;5;47m': 'bgcolor-047', '\x1b[48;5;48m': 'bgcolor-048', '\x1b[48;5;49m': 'bgcolor-049', '\x1b[48;5;50m': 'bgcolor-050', '\x1b[48;5;51m': 'bgcolor-051', '\x1b[48;5;52m': 'bgcolor-052', '\x1b[48;5;53m': 'bgcolor-053', '\x1b[48;5;54m': 'bgcolor-054', '\x1b[48;5;55m': 'bgcolor-055', '\x1b[48;5;56m': 'bgcolor-056', '\x1b[48;5;57m': 'bgcolor-057', '\x1b[48;5;58m': 'bgcolor-058', '\x1b[48;5;59m': 'bgcolor-059', '\x1b[48;5;60m': 'bgcolor-060', '\x1b[48;5;61m': 'bgcolor-061', '\x1b[48;5;62m': 'bgcolor-062', '\x1b[48;5;63m': 'bgcolor-063', '\x1b[48;5;64m': 'bgcolor-064', '\x1b[48;5;65m': 'bgcolor-065', '\x1b[48;5;66m': 'bgcolor-066', '\x1b[48;5;67m': 'bgcolor-067', '\x1b[48;5;68m': 'bgcolor-068', '\x1b[48;5;69m': 'bgcolor-069', '\x1b[48;5;70m': 'bgcolor-070', '\x1b[48;5;71m': 'bgcolor-071', '\x1b[48;5;72m': 'bgcolor-072', '\x1b[48;5;73m': 'bgcolor-073', '\x1b[48;5;74m': 'bgcolor-074', '\x1b[48;5;75m': 'bgcolor-075', '\x1b[48;5;76m': 'bgcolor-076', '\x1b[48;5;77m': 'bgcolor-077', '\x1b[48;5;78m': 'bgcolor-078', '\x1b[48;5;79m': 'bgcolor-079', '\x1b[48;5;80m': 'bgcolor-080', '\x1b[48;5;81m': 'bgcolor-081', '\x1b[48;5;82m': 'bgcolor-082', '\x1b[48;5;83m': 'bgcolor-083', '\x1b[48;5;84m': 'bgcolor-084', '\x1b[48;5;85m': 'bgcolor-085', '\x1b[48;5;86m': 'bgcolor-086', '\x1b[48;5;87m': 'bgcolor-087', '\x1b[48;5;88m': 'bgcolor-088', '\x1b[48;5;89m': 'bgcolor-089', '\x1b[48;5;90m': 'bgcolor-090', '\x1b[48;5;91m': 'bgcolor-091', '\x1b[48;5;92m': 'bgcolor-092', '\x1b[48;5;93m': 'bgcolor-093', '\x1b[48;5;94m': 'bgcolor-094', '\x1b[48;5;95m': 'bgcolor-095', '\x1b[48;5;96m': 'bgcolor-096', '\x1b[48;5;97m': 'bgcolor-097', '\x1b[48;5;98m': 'bgcolor-098', '\x1b[48;5;99m': 'bgcolor-099'}¶
-
-
-
--
-
fgstop = '(?:\x1b\\[1m|\x1b\\[22m){0,1}\x1b\\[3[0-8].*?m|\x1b\\[0m|$'¶
-
-
-
--
-
bgstop = '(?:\x1b\\[1m|\x1b\\[22m){0,1}\x1b\\[4[0-8].*?m|\x1b\\[0m|$'¶
-
-
-
--
-
bgfgstop = '(?:\x1b\\[1m|\x1b\\[22m){0,1}\x1b\\[4[0-8].*?m|\x1b\\[0m(\\s*)(?:\x1b\\[1m|\x1b\\[22m){0,1}\x1b\\[3[0-8].*?m|\x1b\\[0m|$'¶
-
-
-
--
-
fgstart = '((?:\x1b\\[1m|\x1b\\[22m){0,1}\x1b\\[3[0-8].*?m)'¶
-
-
-
--
-
bgstart = '((?:\x1b\\[1m|\x1b\\[22m){0,1}\x1b\\[4[0-8].*?m)'¶
-
-
-
--
-
bgfgstart = '((?:\x1b\\[1m|\x1b\\[22m){0,1}\x1b\\[4[0-8].*?m)(\\s*)((?:\x1b\\[1m|\x1b\\[22m){0,1}\x1b\\[[3-4][0-8].*?m){0,1}'¶
-
-
-
--
-
re_fgs = re.compile('((?:\x1b\\[1m|\x1b\\[22m){0,1}\x1b\\[3[0-8].*?m)(.*?)(?=(?:\x1b\\[1m|\x1b\\[22m){0,1}\x1b\\[3[0-8].*?m|\x1b\\[0m|$)')¶
-
-
-
--
-
re_bgs = re.compile('((?:\x1b\\[1m|\x1b\\[22m){0,1}\x1b\\[4[0-8].*?m)(.*?)(?=(?:\x1b\\[1m|\x1b\\[22m){0,1}\x1b\\[4[0-8].*?m|\x1b\\[0m|$)')¶
-
-
-
--
-
re_bgfg = re.compile('((?:\x1b\\[1m|\x1b\\[22m){0,1}\x1b\\[4[0-8].*?m)(\\s*)((?:\x1b\\[1m|\x1b\\[22m){0,1}\x1b\\[[3-4][0-8].*?m){0,1}(.*?)(?=(?:\x1b\\[1m|\x1b\\[22m){0,1}\x1b\\[4[0-8].*?m|\x1b\\[0m(\\s*)(?:\x1b\\[1m|\x1b\)¶
-
-
-
--
-
re_normal = re.compile('\x1b\\[0m')¶
-
-
-
--
-
re_hilite = re.compile('(?:\x1b\\[1m)(.*)(?=(?:\x1b\\[1m|\x1b\\[22m){0,1}\x1b\\[3[0-8].*?m|\x1b\\[0m|$|(?:\x1b\\[1m|\x1b\\[22m){0,1}\x1b\\[4[0-8].*?m|\x1b\\[0m|$)')¶
-
-
-
--
-
re_unhilite = re.compile('(?:\x1b\\[22m)(.*)(?=(?:\x1b\\[1m|\x1b\\[22m){0,1}\x1b\\[3[0-8].*?m|\x1b\\[0m|$|(?:\x1b\\[1m|\x1b\\[22m){0,1}\x1b\\[4[0-8].*?m|\x1b\\[0m|$)')¶
-
-
-
--
-
re_uline = re.compile('(?:\x1b\\[4m)(.*?)(?=(?:\x1b\\[1m|\x1b\\[22m){0,1}\x1b\\[3[0-8].*?m|\x1b\\[0m|$|(?:\x1b\\[1m|\x1b\\[22m){0,1}\x1b\\[4[0-8].*?m|\x1b\\[0m|$)')¶
-
-
-
--
-
re_blink = re.compile('(?:\x1b\\[5m)(.*?)(?=(?:\x1b\\[1m|\x1b\\[22m){0,1}\x1b\\[3[0-8].*?m|\x1b\\[0m|$|(?:\x1b\\[1m|\x1b\\[22m){0,1}\x1b\\[4[0-8].*?m|\x1b\\[0m|$)')¶
-
-
-
--
-
re_inverse = re.compile('(?:\x1b\\[7m)(.*?)(?=(?:\x1b\\[1m|\x1b\\[22m){0,1}\x1b\\[3[0-8].*?m|\x1b\\[0m|$|(?:\x1b\\[1m|\x1b\\[22m){0,1}\x1b\\[4[0-8].*?m|\x1b\\[0m|$)')¶
+-
+
bglist = ['\x1b[40m', '\x1b[41m', '\x1b[42m', '\x1b[43m', '\x1b[44m', '\x1b[45m', '\x1b[46m', '\x1b[47m', '\x1b[1m\x1b[40m', '\x1b[1m\x1b[41m', '\x1b[1m\x1b[42m', '\x1b[1m\x1b[43m', '\x1b[1m\x1b[44m', '\x1b[1m\x1b[45m', '\x1b[1m\x1b[46m', '\x1b[1m\x1b[47m', '\x1b[48;5;16m', '\x1b[48;5;17m', '\x1b[48;5;18m', '\x1b[48;5;19m', '\x1b[48;5;20m', '\x1b[48;5;21m', '\x1b[48;5;22m', '\x1b[48;5;23m', '\x1b[48;5;24m', '\x1b[48;5;25m', '\x1b[48;5;26m', '\x1b[48;5;27m', '\x1b[48;5;28m', '\x1b[48;5;29m', '\x1b[48;5;30m', '\x1b[48;5;31m', '\x1b[48;5;32m', '\x1b[48;5;33m', '\x1b[48;5;34m', '\x1b[48;5;35m', '\x1b[48;5;36m', '\x1b[48;5;37m', '\x1b[48;5;38m', '\x1b[48;5;39m', '\x1b[48;5;40m', '\x1b[48;5;41m', '\x1b[48;5;42m', '\x1b[48;5;43m', '\x1b[48;5;44m', '\x1b[48;5;45m', '\x1b[48;5;46m', '\x1b[48;5;47m', '\x1b[48;5;48m', '\x1b[48;5;49m', '\x1b[48;5;50m', '\x1b[48;5;51m', '\x1b[48;5;52m', '\x1b[48;5;53m', '\x1b[48;5;54m', '\x1b[48;5;55m', '\x1b[48;5;56m', '\x1b[48;5;57m', '\x1b[48;5;58m', '\x1b[48;5;59m', '\x1b[48;5;60m', '\x1b[48;5;61m', '\x1b[48;5;62m', '\x1b[48;5;63m', '\x1b[48;5;64m', '\x1b[48;5;65m', '\x1b[48;5;66m', '\x1b[48;5;67m', '\x1b[48;5;68m', '\x1b[48;5;69m', '\x1b[48;5;70m', '\x1b[48;5;71m', '\x1b[48;5;72m', '\x1b[48;5;73m', '\x1b[48;5;74m', '\x1b[48;5;75m', '\x1b[48;5;76m', '\x1b[48;5;77m', '\x1b[48;5;78m', '\x1b[48;5;79m', '\x1b[48;5;80m', '\x1b[48;5;81m', '\x1b[48;5;82m', '\x1b[48;5;83m', '\x1b[48;5;84m', '\x1b[48;5;85m', '\x1b[48;5;86m', '\x1b[48;5;87m', '\x1b[48;5;88m', '\x1b[48;5;89m', '\x1b[48;5;90m', '\x1b[48;5;91m', '\x1b[48;5;92m', '\x1b[48;5;93m', '\x1b[48;5;94m', '\x1b[48;5;95m', '\x1b[48;5;96m', '\x1b[48;5;97m', '\x1b[48;5;98m', '\x1b[48;5;99m', '\x1b[48;5;100m', '\x1b[48;5;101m', '\x1b[48;5;102m', '\x1b[48;5;103m', '\x1b[48;5;104m', '\x1b[48;5;105m', '\x1b[48;5;106m', '\x1b[48;5;107m', '\x1b[48;5;108m', '\x1b[48;5;109m', '\x1b[48;5;110m', '\x1b[48;5;111m', '\x1b[48;5;112m', '\x1b[48;5;113m', '\x1b[48;5;114m', '\x1b[48;5;115m', '\x1b[48;5;116m', '\x1b[48;5;117m', '\x1b[48;5;118m', '\x1b[48;5;119m', '\x1b[48;5;120m', '\x1b[48;5;121m', '\x1b[48;5;122m', '\x1b[48;5;123m', '\x1b[48;5;124m', '\x1b[48;5;125m', '\x1b[48;5;126m', '\x1b[48;5;127m', '\x1b[48;5;128m', '\x1b[48;5;129m', '\x1b[48;5;130m', '\x1b[48;5;131m', '\x1b[48;5;132m', '\x1b[48;5;133m', '\x1b[48;5;134m', '\x1b[48;5;135m', '\x1b[48;5;136m', '\x1b[48;5;137m', '\x1b[48;5;138m', '\x1b[48;5;139m', '\x1b[48;5;140m', '\x1b[48;5;141m', '\x1b[48;5;142m', '\x1b[48;5;143m', '\x1b[48;5;144m', '\x1b[48;5;145m', '\x1b[48;5;146m', '\x1b[48;5;147m', '\x1b[48;5;148m', '\x1b[48;5;149m', '\x1b[48;5;150m', '\x1b[48;5;151m', '\x1b[48;5;152m', '\x1b[48;5;153m', '\x1b[48;5;154m', '\x1b[48;5;155m', '\x1b[48;5;156m', '\x1b[48;5;157m', '\x1b[48;5;158m', '\x1b[48;5;159m', '\x1b[48;5;160m', '\x1b[48;5;161m', '\x1b[48;5;162m', '\x1b[48;5;163m', '\x1b[48;5;164m', '\x1b[48;5;165m', '\x1b[48;5;166m', '\x1b[48;5;167m', '\x1b[48;5;168m', '\x1b[48;5;169m', '\x1b[48;5;170m', '\x1b[48;5;171m', '\x1b[48;5;172m', '\x1b[48;5;173m', '\x1b[48;5;174m', '\x1b[48;5;175m', '\x1b[48;5;176m', '\x1b[48;5;177m', '\x1b[48;5;178m', '\x1b[48;5;179m', '\x1b[48;5;180m', '\x1b[48;5;181m', '\x1b[48;5;182m', '\x1b[48;5;183m', '\x1b[48;5;184m', '\x1b[48;5;185m', '\x1b[48;5;186m', '\x1b[48;5;187m', '\x1b[48;5;188m', '\x1b[48;5;189m', '\x1b[48;5;190m', '\x1b[48;5;191m', '\x1b[48;5;192m', '\x1b[48;5;193m', '\x1b[48;5;194m', '\x1b[48;5;195m', '\x1b[48;5;196m', '\x1b[48;5;197m', '\x1b[48;5;198m', '\x1b[48;5;199m', '\x1b[48;5;200m', '\x1b[48;5;201m', '\x1b[48;5;202m', '\x1b[48;5;203m', '\x1b[48;5;204m', '\x1b[48;5;205m', '\x1b[48;5;206m', '\x1b[48;5;207m', '\x1b[48;5;208m', '\x1b[48;5;209m', '\x1b[48;5;210m', '\x1b[48;5;211m', '\x1b[48;5;212m', '\x1b[48;5;213m', '\x1b[48;5;214m', '\x1b[48;5;215m', '\x1b[48;5;216m', '\x1b[48;5;217m', '\x1b[48;5;218m', '\x1b[48;5;219m', '\x1b[48;5;220m', '\x1b[48;5;221m', '\x1b[48;5;222m', '\x1b[48;5;223m', '\x1b[48;5;224m', '\x1b[48;5;225m', '\x1b[48;5;226m', '\x1b[48;5;227m', '\x1b[48;5;228m', '\x1b[48;5;229m', '\x1b[48;5;230m', '\x1b[48;5;231m', '\x1b[48;5;232m', '\x1b[48;5;233m', '\x1b[48;5;234m', '\x1b[48;5;235m', '\x1b[48;5;236m', '\x1b[48;5;237m', '\x1b[48;5;238m', '\x1b[48;5;239m', '\x1b[48;5;240m', '\x1b[48;5;241m', '\x1b[48;5;242m', '\x1b[48;5;243m', '\x1b[48;5;244m', '\x1b[48;5;245m', '\x1b[48;5;246m', '\x1b[48;5;247m', '\x1b[48;5;248m', '\x1b[48;5;249m', '\x1b[48;5;250m', '\x1b[48;5;251m', '\x1b[48;5;252m', '\x1b[48;5;253m', '\x1b[48;5;254m', '\x1b[48;5;255m']¶
-
-
re_string = re.compile('(?P<htmlchars>[<&>])|(?P<tab>[\\t]+)|(?P<space> +)|(?P<spacestart>^ )|(?P<lineend>\\r\\n|\\r|\\n)', re.IGNORECASE|re.MULTILINE|re.DOTALL)¶
-
-
-
--
-
re_dblspace = re.compile(' {2,}', re.MULTILINE)¶
-
-
-
--
-
re_invisiblespace = re.compile('( <.*?>)( )')¶
+re_string = re.compile('(?P<htmlchars>[<&>])|(?P<tab>[\\t]+)|(?P<lineend>\\r\\n|\\r|\\n)', re.IGNORECASE|re.MULTILINE|re.DOTALL)¶
@@ -222,78 +127,6 @@ snippet #577349 on re_mxpurl = re.compile('\\|lu(.*?)\\|lt(.*?)\\|le', re.DOTALL)¶
-
--
-
re_color(text)[source]¶
-Replace ansi colors with html color class names. Let the
-client choose how it will display colors, if it wishes to.
-
-- Parameters
-text (str) – the string with color to replace.
-
-- Returns
-text (str) – Re-colored text.
-
-
-
-
-
--
-
re_bold(text)[source]¶
-Clean out superfluous hilights rather than set <strong>to make
-it match the look of telnet.
-
-- Parameters
-text (str) – Text to process.
-
-- Returns
-text (str) – Processed text.
-
-
-
-
-
--
-
re_underline(text)[source]¶
-Replace ansi underline with html underline class name.
-
-- Parameters
-text (str) – Text to process.
-
-- Returns
-text (str) – Processed text.
-
-
-
-
-
--
-
re_blinking(text)[source]¶
-Replace ansi blink with custom blink css class
-
-- Parameters
-text (str) – Text to process.
-
-- Returns
-text (str) – Processed text.
-
-
-
-
-
-
-
--
-
re_double_space(text)[source]¶
-HTML will swallow any normal space after the first, so if any slipped
-through we must make sure to replace them with ” ”
-
-
-
--
-
re_invisible_space(text)[source]¶
-If two spaces are separated by an invisble html element, they act as a
-hidden double-space and the last of them should be replaced by
-
-
-
-
-
-
--
-
handle_single_first_space(text)[source]¶
-Don’t swallow an initial lone space
+-
+
format_styles(text)[source]¶
+Takes a string with parsed ANSI codes and replaces them with
+HTML spans and CSS classes.
+
+- Parameters
+text (str) – The string to process.
+
+- Returns
+text (str) – Processed text.
+
+
diff --git a/docs/1.0-dev/genindex.html b/docs/1.0-dev/genindex.html
index 7e9c5331fd..7040f33e3a 100644
--- a/docs/1.0-dev/genindex.html
+++ b/docs/1.0-dev/genindex.html
@@ -263,6 +263,8 @@
- (evennia.typeclasses.models.TypedObject method)
- (evennia.typeclasses.tags.TagHandler method)
+
+ - (evennia.typeclasses.tags.TagProperty method)
- (evennia.utils.ansi.ANSIMeta method)
@@ -1178,6 +1180,8 @@
- AliasFilter (class in evennia.web.api.filters)
- AliasHandler (class in evennia.typeclasses.tags)
+
+ - AliasProperty (class in evennia.typeclasses.tags)
- all() (evennia.commands.cmdsethandler.CmdSetHandler method)
@@ -1285,10 +1289,14 @@
- announce_move_to() (evennia.objects.objects.DefaultObject method)
- - ansi_escapes (evennia.utils.ansi.ANSIParser attribute)
+
- ansi_bg_codes (evennia.utils.text2html.TextToHTMLparser attribute)
+
+ - ansi_color_codes (evennia.utils.text2html.TextToHTMLparser attribute)
+ - ansi_escapes (evennia.utils.ansi.ANSIParser attribute)
+
- ansi_map (evennia.utils.ansi.ANSIParser attribute)
- ansi_map_dict (evennia.utils.ansi.ANSIParser attribute)
@@ -1739,6 +1747,8 @@
- (evennia.contrib.game_systems.turnbattle.tb_range.TBRangeObject method)
- (evennia.objects.objects.DefaultObject method)
+
+ - (evennia.typeclasses.attributes.AttributeProperty method)
- at_give() (evennia.contrib.game_systems.turnbattle.tb_equip.TBEArmor method)
@@ -2196,6 +2206,8 @@
- at_server_stop() (evennia.server.server.Evennia method)
+
+ - at_set() (evennia.typeclasses.attributes.AttributeProperty method)
- at_speech() (evennia.contrib.full_systems.evscaperoom.objects.EvscaperoomObject method)
@@ -2503,21 +2515,11 @@
- (class in evennia.contrib.game_systems.turnbattle.tb_range)
- - bg_colormap (evennia.utils.text2html.TextToHTMLparser attribute)
-
- - bgfgstart (evennia.utils.text2html.TextToHTMLparser attribute)
-
- - bgfgstop (evennia.utils.text2html.TextToHTMLparser attribute)
-
- - bgstart (evennia.utils.text2html.TextToHTMLparser attribute)
-
- - bgstop (evennia.utils.text2html.TextToHTMLparser attribute)
+
- bglist (evennia.utils.text2html.TextToHTMLparser attribute)
- blind_target() (evennia.contrib.tutorials.red_button.red_button.RedButton method)
- BlindCmdSet (class in evennia.contrib.tutorials.red_button.red_button)
-
- - blink (evennia.utils.text2html.TextToHTMLparser attribute)
- blink_msgs (evennia.contrib.tutorials.red_button.red_button.RedButton attribute)
@@ -3316,11 +3318,11 @@
- CmdMultiDesc (class in evennia.contrib.game_systems.multidescer.multidescer)
- CmdMvAttr (class in evennia.commands.default.building)
-
- - CmdName (class in evennia.commands.default.building)
+ - CmdName (class in evennia.commands.default.building)
+
- CmdNameColor (class in evennia.contrib.utils.tree_select.tree_select)
- CmdNewPassword (class in evennia.commands.default.admin)
@@ -3659,9 +3661,7 @@
- color() (in module evennia.utils.validatorfuncs)
- - colorback (evennia.utils.text2html.TextToHTMLparser attribute)
-
- - colorcodes (evennia.utils.text2html.TextToHTMLparser attribute)
+
- colorlist (evennia.utils.text2html.TextToHTMLparser attribute)
- columnize() (in module evennia.utils.utils)
@@ -7610,12 +7610,6 @@
- Feelable.DoesNotExist
- Feelable.MultipleObjectsReturned
-
- - fg_colormap (evennia.utils.text2html.TextToHTMLparser attribute)
-
- - fgstart (evennia.utils.text2html.TextToHTMLparser attribute)
-
- - fgstop (evennia.utils.text2html.TextToHTMLparser attribute)
- field_classes (evennia.web.website.forms.AccountForm.Meta attribute)
@@ -7894,6 +7888,8 @@
- format_single_tag() (evennia.commands.default.building.CmdExamine method)
- format_stored_cmdsets() (evennia.commands.default.building.CmdExamine method)
+
+ - format_styles() (evennia.utils.text2html.TextToHTMLparser method)
- format_table() (in module evennia.utils.utils)
@@ -8984,6 +8980,8 @@
- get_pid() (in module evennia.server.evennia_launcher)
- get_player_count() (evennia.server.portal.mssp.Mssp method)
+
+ - get_posed_sdesc() (evennia.contrib.rpg.rpsystem.rpsystem.ContribRPObject method)
- get_position() (evennia.contrib.full_systems.evscaperoom.objects.EvscaperoomObject method)
@@ -9035,13 +9033,9 @@
- get_redirect_url() (evennia.web.website.views.characters.CharacterPuppetView method)
- - get_regex_tuple() (evennia.contrib.rpg.rpsystem.rpsystem.RecogHandler method)
-
-
- get_room() (evennia.contrib.grid.xyzgrid.xyzgrid.XYZGrid method)
+
+ - get_sdesc() (evennia.contrib.rpg.rpsystem.rpsystem.ContribRPCharacter method)
- get_serializer_class() (evennia.web.api.views.GeneralViewSetMixin method)
@@ -9202,8 +9196,6 @@
- handle_QUIT() (evennia.server.portal.ssh.SshProtocol method)
- handle_setup() (in module evennia.server.initial_setup)
-
- - handle_single_first_space() (evennia.utils.text2html.TextToHTMLparser method)
- handshake_done() (evennia.server.portal.telnet.TelnetProtocol method)
@@ -9864,8 +9856,6 @@
- hide_from_accounts_set (evennia.accounts.models.AccountDB attribute)
- hide_from_objects_set (evennia.objects.models.ObjectDB attribute)
-
- - hilite (evennia.utils.text2html.TextToHTMLparser attribute)
- hints (evennia.contrib.full_systems.evscaperoom.state.BaseState attribute)
@@ -9994,6 +9984,8 @@
- init_delayed_message() (in module evennia.contrib.utils.fieldfill.fieldfill)
- init_django_paginator() (evennia.utils.evmore.EvMore method)
+
+ - init_evennia_properties() (evennia.typeclasses.models.TypedObject method)
- init_evtable() (evennia.utils.evmore.EvMore method)
@@ -10114,8 +10106,6 @@
- IntroRoom.DoesNotExist
- IntroRoom.MultipleObjectsReturned
-
- - inverse (evennia.utils.text2html.TextToHTMLparser attribute)
- InvisibleSmartMapLink (class in evennia.contrib.grid.xyzgrid.xymap_legend)
@@ -13677,8 +13667,6 @@
- nonce (evennia.server.portal.webclient.WebSocketClient attribute)
- none() (in module evennia.locks.lockfuncs)
-
- - normal (evennia.utils.text2html.TextToHTMLparser attribute)
- normalize_name() (evennia.objects.objects.DefaultCharacter class method)
@@ -13959,8 +13947,6 @@
- optlist_to_menuoptions() (in module evennia.contrib.utils.tree_select.tree_select)
- order_clothes_list() (in module evennia.contrib.game_systems.clothing.clothing)
-
- - ordered_permutation_regex() (in module evennia.contrib.rpg.rpsystem.rpsystem)
- ordering (evennia.typeclasses.models.TypedObject.Meta attribute)
@@ -14563,6 +14549,8 @@
- PermissionFilter (class in evennia.web.api.filters)
- PermissionHandler (class in evennia.typeclasses.tags)
+
+ - PermissionProperty (class in evennia.typeclasses.tags)
- permissions (evennia.typeclasses.models.TypedObject attribute)
@@ -14907,50 +14895,16 @@
- RawhideRecipe (class in evennia.contrib.game_systems.crafting.example_recipes)
-
- - re_bgfg (evennia.utils.text2html.TextToHTMLparser attribute)
-
- - re_bgs (evennia.utils.text2html.TextToHTMLparser attribute)
-
- - re_blink (evennia.utils.text2html.TextToHTMLparser attribute)
-
- - re_blinking() (evennia.utils.text2html.TextToHTMLparser method)
-
- - re_bold() (evennia.utils.text2html.TextToHTMLparser method)
-
- - re_color() (evennia.utils.text2html.TextToHTMLparser method)
-
- - re_dblspace (evennia.utils.text2html.TextToHTMLparser attribute)
-
- - re_double_space() (evennia.utils.text2html.TextToHTMLparser method)
-
- - re_fgs (evennia.utils.text2html.TextToHTMLparser attribute)
- re_format (evennia.utils.ansi.ANSIString attribute)
-
- - re_hilite (evennia.utils.text2html.TextToHTMLparser attribute)
-
- - re_inverse (evennia.utils.text2html.TextToHTMLparser attribute)
-
- - re_inversing() (evennia.utils.text2html.TextToHTMLparser method)
-
- - re_invisible_space() (evennia.utils.text2html.TextToHTMLparser method)
-
- - re_invisiblespace (evennia.utils.text2html.TextToHTMLparser attribute)
- re_mxplink (evennia.utils.text2html.TextToHTMLparser attribute)
- re_mxpurl (evennia.utils.text2html.TextToHTMLparser attribute)
-
- - re_normal (evennia.utils.text2html.TextToHTMLparser attribute)
- re_string (evennia.utils.text2html.TextToHTMLparser attribute)
- - re_uline (evennia.utils.text2html.TextToHTMLparser attribute)
-
- - re_underline() (evennia.utils.text2html.TextToHTMLparser method)
-
- - re_unhilite (evennia.utils.text2html.TextToHTMLparser attribute)
+
- re_style (evennia.utils.text2html.TextToHTMLparser attribute)
- re_url (evennia.utils.text2html.TextToHTMLparser attribute)
@@ -15061,8 +15015,6 @@
- reformat_cell() (evennia.utils.evtable.EvColumn method)
- reformat_column() (evennia.utils.evtable.EvTable method)
-
- - regex_tuple_from_key_alias() (in module evennia.contrib.rpg.rpsystem.rpsystem)
- register_events() (in module evennia.contrib.base_systems.ingame_python.utils)
@@ -15218,8 +15170,6 @@
- replace_data() (evennia.utils.evtable.EvCell method)
-
-
+
+
- reset_cache() (evennia.typeclasses.attributes.AttributeHandler method)
@@ -15712,7 +15664,7 @@
- ScriptTagInline (class in evennia.web.admin.scripts)
- - sdesc (evennia.contrib.rpg.rpsystem.rpsystem.ContribRPCharacter attribute)
+
- sdesc (evennia.contrib.rpg.rpsystem.rpsystem.ContribRPObject attribute)
- SdescError
@@ -17086,6 +17038,8 @@
- (evennia.typeclasses.attributes.IAttribute property)
+ - style_codes (evennia.utils.text2html.TextToHTMLparser attribute)
+
- styled_footer() (evennia.commands.command.Command method)
- styled_header() (evennia.commands.command.Command method)
@@ -17097,10 +17051,6 @@
- sub_ansi() (evennia.utils.ansi.ANSIParser method)
- sub_brightbg() (evennia.utils.ansi.ANSIParser method)
-
- - sub_dblspace() (evennia.utils.text2html.TextToHTMLparser method)
-
- - sub_invisiblespace() (evennia.utils.text2html.TextToHTMLparser method)
- sub_mxp_links() (evennia.utils.text2html.TextToHTMLparser method)
@@ -17364,7 +17314,17 @@
- TagHandler (class in evennia.typeclasses.tags)
+ - taghandler_name (evennia.typeclasses.tags.AliasProperty attribute)
+
+
- TagInline (class in evennia.web.admin.tags)
+
+ - TagProperty (class in evennia.typeclasses.tags)
- tags (evennia.comms.models.Msg attribute)
@@ -18065,6 +18025,8 @@
- test_get_disabled() (evennia.web.website.tests.WebclientTest method)
- test_get_new_coordinates() (evennia.contrib.grid.wilderness.tests.TestWilderness method)
+
+ - test_get_sdesc() (evennia.contrib.rpg.rpsystem.tests.TestRPSystem method)
- test_get_shortest_path() (evennia.contrib.grid.xyzgrid.tests.TestMap1 method)
@@ -18191,6 +18153,8 @@
- test_getting() (evennia.contrib.rpg.traits.tests.TraitHandlerTest method)
- test_give() (evennia.commands.default.tests.TestGeneral method)
+
+ - test_go_home() (evennia.commands.default.tests.TestGeneral method)
- test_grid_creation (evennia.contrib.grid.xyzgrid.tests.TestMapStressTest attribute)
@@ -18288,6 +18252,10 @@
- (evennia.contrib.full_systems.evscaperoom.tests.TestEvscaperoomCommands method)
+ - test_look_no_location() (evennia.commands.default.tests.TestGeneral method)
+
+ - test_look_nonexisting() (evennia.commands.default.tests.TestGeneral method)
+
- test_lspuzzlerecipes_lsarmedpuzzles() (evennia.contrib.game_systems.puzzles.tests.TestPuzzles method)
- test_mail() (evennia.contrib.game_systems.mail.tests.TestMail method)
@@ -18369,6 +18337,10 @@
- test_new_task_waiting_input() (evennia.commands.default.tests.TestCmdTasks method)
- test_nick() (evennia.commands.default.tests.TestGeneral method)
+
+ - test_nick_list() (evennia.commands.default.tests.TestGeneral method)
+
+ - test_no_home() (evennia.commands.default.tests.TestGeneral method)
- test_no_input() (evennia.commands.default.tests.TestCmdTasks method)
@@ -18395,8 +18367,6 @@
- test_ooc_look() (evennia.commands.default.tests.TestAccount method)
- test_option() (evennia.commands.default.tests.TestAccount method)
-
- - test_ordered_permutation_regex() (evennia.contrib.rpg.rpsystem.tests.TestRPSystem method)
- test_outroroom() (evennia.contrib.tutorials.tutorial_world.tests.TestTutorialWorldRooms method)
@@ -18483,8 +18453,6 @@
- test_realtime_to_gametime() (evennia.contrib.base_systems.custom_gametime.tests.TestCustomGameTime method)
- test_recog_handler() (evennia.contrib.rpg.rpsystem.tests.TestRPSystem method)
-
- - test_regex_tuple_from_key_alias() (evennia.contrib.rpg.rpsystem.tests.TestRPSystem method)
- test_remove() (evennia.commands.default.tests.TestCmdTasks method)
@@ -19919,10 +19887,6 @@
- unban() (evennia.comms.comms.DefaultChannel method)
- unban_user() (evennia.commands.default.comms.CmdChannel method)
-
- - underline (evennia.utils.text2html.TextToHTMLparser attribute)
-
- - unhilite (evennia.utils.text2html.TextToHTMLparser attribute)
- UnixCommand (class in evennia.contrib.base_systems.unixcommand.unixcommand)
@@ -19988,10 +19952,10 @@
- (evennia.utils.utils.LimitedSizeOrderedDict method)
-
-
+
- update_buffer() (evennia.utils.eveditor.EvEditor method)
- update_cached_instance() (in module evennia.utils.idmapper.models)
@@ -20435,6 +20399,10 @@
- xterm256_gfg (evennia.utils.ansi.ANSIParser attribute)
- xterm256_gfg_sub (evennia.utils.ansi.ANSIParser attribute)
+
+ - xterm_bg_codes (evennia.utils.text2html.TextToHTMLparser attribute)
+
+ - xterm_fg_codes (evennia.utils.text2html.TextToHTMLparser attribute)
- XYMap (class in evennia.contrib.grid.xyzgrid.xymap)
@@ -20448,10 +20416,10 @@
- (evennia.contrib.grid.xyzgrid.xyzroom.XYZRoom property)
- - xyz_destination() (evennia.contrib.grid.xyzgrid.xyzroom.XYZExit property)
-
+ - xyz_destination() (evennia.contrib.grid.xyzgrid.xyzroom.XYZExit property)
+
- xyzcommand() (in module evennia.contrib.grid.xyzgrid.launchcmd)
- XYZExit (class in evennia.contrib.grid.xyzgrid.xyzroom)
diff --git a/docs/1.0-dev/index.html b/docs/1.0-dev/index.html
index 373f5250d0..d12331ec20 100644
--- a/docs/1.0-dev/index.html
+++ b/docs/1.0-dev/index.html
@@ -473,14 +473,28 @@ or the original github wiki. You have been warned.
- Licensing Q&A
- Links
-- Official Evennia links
-- Third-party Evennia utilities and resources
-- Other useful mud development resources
-- General MUD forums and discussions
-- Literature
-- Frameworks
-- Tools
-- Python Info
+- Official Evennia resources
+- Evennia Community
+- Third-party Evennia tools
+- Evennia-Based Projects
+- Code bases
+- Other
+
+
+- General MU* resources
+- Tools
+- Informational
+- Community
+
+
+- General Game-Dev Resources
+
diff --git a/docs/1.0-dev/objects.inv b/docs/1.0-dev/objects.inv
index bbad67332b..ec21d49c27 100644
Binary files a/docs/1.0-dev/objects.inv and b/docs/1.0-dev/objects.inv differ
diff --git a/docs/1.0-dev/searchindex.js b/docs/1.0-dev/searchindex.js
index ee7d48eded..5242029fc0 100644
--- a/docs/1.0-dev/searchindex.js
+++ b/docs/1.0-dev/searchindex.js
@@ -1 +1 @@
-Search.setIndex({docnames:["Coding/Changelog","Coding/Coding-Introduction","Coding/Coding-Overview","Coding/Continuous-Integration","Coding/Continuous-Integration-TeamCity","Coding/Continuous-Integration-Travis","Coding/Debugging","Coding/Profiling","Coding/Quirks","Coding/Setting-up-PyCharm","Coding/Unit-Testing","Coding/Updating-Your-Game","Coding/Version-Control","Components/Accounts","Components/Attributes","Components/Batch-Code-Processor","Components/Batch-Command-Processor","Components/Batch-Processors","Components/Bootstrap-Components-and-Utilities","Components/Channels","Components/Coding-Utils","Components/Command-Sets","Components/Command-System","Components/Commands","Components/Components-Overview","Components/Connection-Screen","Components/Default-Commands","Components/EvEditor","Components/EvMenu","Components/EvMore","Components/FuncParser","Components/Help-System","Components/Inputfuncs","Components/Locks","Components/MonitorHandler","Components/Msg","Components/Nicks","Components/Objects","Components/Outputfuncs","Components/Permissions","Components/Portal-And-Server","Components/Prototypes","Components/Scripts","Components/Server","Components/Sessions","Components/Signals","Components/Tags","Components/TickerHandler","Components/Typeclasses","Components/Web-API","Components/Web-Admin","Components/Webclient","Components/Webserver","Components/Website","Concepts/Async-Process","Concepts/Banning","Concepts/Bootstrap-&-Evennia","Concepts/Building-Permissions","Concepts/Change-Messages-Per-Receiver","Concepts/Clickable-Links","Concepts/Colors","Concepts/Concepts-Overview","Concepts/Custom-Protocols","Concepts/Guest-Logins","Concepts/Internationalization","Concepts/Messagepath","Concepts/Multisession-modes","Concepts/New-Models","Concepts/OOB","Concepts/Soft-Code","Concepts/Text-Encodings","Concepts/TextTags","Concepts/Using-MUX-as-a-Standard","Concepts/Web-Features","Concepts/Zones","Contribs/Contrib-AWSStorage","Contribs/Contrib-Auditing","Contribs/Contrib-Barter","Contribs/Contrib-Batchprocessor","Contribs/Contrib-Bodyfunctions","Contribs/Contrib-Building-Menu","Contribs/Contrib-Clothing","Contribs/Contrib-Color-Markups","Contribs/Contrib-Components","Contribs/Contrib-Cooldowns","Contribs/Contrib-Crafting","Contribs/Contrib-Custom-Gametime","Contribs/Contrib-Dice","Contribs/Contrib-Email-Login","Contribs/Contrib-Evscaperoom","Contribs/Contrib-Extended-Room","Contribs/Contrib-Fieldfill","Contribs/Contrib-Gendersub","Contribs/Contrib-Health-Bar","Contribs/Contrib-Ingame-Python","Contribs/Contrib-Ingame-Python-Tutorial-Dialogue","Contribs/Contrib-Ingame-Python-Tutorial-Elevator","Contribs/Contrib-Mail","Contribs/Contrib-Mapbuilder","Contribs/Contrib-Menu-Login","Contribs/Contrib-Mirror","Contribs/Contrib-Multidescer","Contribs/Contrib-Mux-Comms-Cmds","Contribs/Contrib-Puzzles","Contribs/Contrib-RPSystem","Contribs/Contrib-Random-String-Generator","Contribs/Contrib-Red-Button","Contribs/Contrib-Simpledoor","Contribs/Contrib-Slow-Exit","Contribs/Contrib-Talking-Npc","Contribs/Contrib-Traits","Contribs/Contrib-Tree-Select","Contribs/Contrib-Turnbattle","Contribs/Contrib-Tutorial-World","Contribs/Contrib-Unixcommand","Contribs/Contrib-Wilderness","Contribs/Contrib-XYZGrid","Contribs/Contribs-Overview","Contributing","Contributing-Docs","Evennia-API","Evennia-Introduction","Glossary","Howtos/Add-a-wiki-on-your-website","Howtos/Arxcode-Installation","Howtos/Beginner-Tutorial/Beginner-Tutorial-Intro","Howtos/Beginner-Tutorial/Part1/Adding-Commands","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Part1-Intro","Howtos/Beginner-Tutorial/Part1/Building-Quickstart","Howtos/Beginner-Tutorial/Part1/Creating-Things","Howtos/Beginner-Tutorial/Part1/Django-queries","Howtos/Beginner-Tutorial/Part1/Evennia-Library-Overview","Howtos/Beginner-Tutorial/Part1/Gamedir-Overview","Howtos/Beginner-Tutorial/Part1/Learning-Typeclasses","Howtos/Beginner-Tutorial/Part1/More-on-Commands","Howtos/Beginner-Tutorial/Part1/Python-basic-introduction","Howtos/Beginner-Tutorial/Part1/Python-classes-and-objects","Howtos/Beginner-Tutorial/Part1/Searching-Things","Howtos/Beginner-Tutorial/Part1/Tutorial-World","Howtos/Beginner-Tutorial/Part2/Beginner-Tutorial-Part2-Intro","Howtos/Beginner-Tutorial/Part2/Game-Planning","Howtos/Beginner-Tutorial/Part2/Planning-Some-Useful-Contribs","Howtos/Beginner-Tutorial/Part2/Planning-The-Tutorial-Game","Howtos/Beginner-Tutorial/Part2/Planning-Where-Do-I-Begin","Howtos/Beginner-Tutorial/Part3/A-Sittable-Object","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Part3-Intro","Howtos/Beginner-Tutorial/Part3/Implementing-a-game-rule-system","Howtos/Beginner-Tutorial/Part3/Turn-based-Combat-System","Howtos/Beginner-Tutorial/Part4/Beginner-Tutorial-Part4-Intro","Howtos/Beginner-Tutorial/Part5/Add-a-simple-new-web-page","Howtos/Beginner-Tutorial/Part5/Beginner-Tutorial-Part5-Intro","Howtos/Beginner-Tutorial/Part5/Web-Tutorial","Howtos/Building-a-mech-tutorial","Howtos/Coding-FAQ","Howtos/Command-Cooldown","Howtos/Command-Duration","Howtos/Command-Prompt","Howtos/Coordinates","Howtos/Default-Exit-Errors","Howtos/Dynamic-In-Game-Map","Howtos/Evennia-for-Diku-Users","Howtos/Evennia-for-MUSH-Users","Howtos/Evennia-for-roleplaying-sessions","Howtos/Gametime-Tutorial","Howtos/Help-System-Tutorial","Howtos/Howtos-Overview","Howtos/Manually-Configuring-Color","Howtos/Mass-and-weight-for-objects","Howtos/NPC-shop-Tutorial","Howtos/Parsing-commands-tutorial","Howtos/Static-In-Game-Map","Howtos/Tutorial-Aggressive-NPCs","Howtos/Tutorial-NPCs-listening","Howtos/Tutorial-Tweeting-Game-Stats","Howtos/Tutorial-Vehicles","Howtos/Tutorial-for-basic-MUSH-like-game","Howtos/Understanding-Color-Tags","Howtos/Weather-Tutorial","Howtos/Web-Character-Generation","Howtos/Web-Character-View-Tutorial","Licensing","Links","Setup/Apache-Config","Setup/Choosing-An-SQL-Server","Setup/Client-Support-Grid","Setup/Evennia-Game-Index","Setup/Grapevine","Setup/HAProxy-Config","Setup/How-to-connect-Evennia-to-Twitter","Setup/IRC","Setup/Installation","Setup/Installation-Android","Setup/Installation-Docker","Setup/Installation-Git","Setup/Installation-Non-Interactive","Setup/Installation-Troubleshooting","Setup/Installation-Upgrade","Setup/Online-Setup","Setup/RSS","Setup/Security","Setup/Settings","Setup/Settings-Default","Setup/Setup-Overview","Setup/Start-Stop-Reload","Unimplemented","api/evennia","api/evennia-api","api/evennia.accounts","api/evennia.accounts.accounts","api/evennia.accounts.bots","api/evennia.accounts.manager","api/evennia.accounts.models","api/evennia.commands","api/evennia.commands.cmdhandler","api/evennia.commands.cmdparser","api/evennia.commands.cmdset","api/evennia.commands.cmdsethandler","api/evennia.commands.command","api/evennia.commands.default","api/evennia.commands.default.account","api/evennia.commands.default.admin","api/evennia.commands.default.batchprocess","api/evennia.commands.default.building","api/evennia.commands.default.cmdset_account","api/evennia.commands.default.cmdset_character","api/evennia.commands.default.cmdset_session","api/evennia.commands.default.cmdset_unloggedin","api/evennia.commands.default.comms","api/evennia.commands.default.general","api/evennia.commands.default.help","api/evennia.commands.default.muxcommand","api/evennia.commands.default.syscommands","api/evennia.commands.default.system","api/evennia.commands.default.tests","api/evennia.commands.default.unloggedin","api/evennia.comms","api/evennia.comms.comms","api/evennia.comms.managers","api/evennia.comms.models","api/evennia.contrib","api/evennia.contrib.base_systems","api/evennia.contrib.base_systems.awsstorage","api/evennia.contrib.base_systems.awsstorage.aws_s3_cdn","api/evennia.contrib.base_systems.awsstorage.tests","api/evennia.contrib.base_systems.building_menu","api/evennia.contrib.base_systems.building_menu.building_menu","api/evennia.contrib.base_systems.building_menu.tests","api/evennia.contrib.base_systems.color_markups","api/evennia.contrib.base_systems.color_markups.color_markups","api/evennia.contrib.base_systems.color_markups.tests","api/evennia.contrib.base_systems.custom_gametime","api/evennia.contrib.base_systems.custom_gametime.custom_gametime","api/evennia.contrib.base_systems.custom_gametime.tests","api/evennia.contrib.base_systems.email_login","api/evennia.contrib.base_systems.email_login.connection_screens","api/evennia.contrib.base_systems.email_login.email_login","api/evennia.contrib.base_systems.email_login.tests","api/evennia.contrib.base_systems.ingame_python","api/evennia.contrib.base_systems.ingame_python.callbackhandler","api/evennia.contrib.base_systems.ingame_python.commands","api/evennia.contrib.base_systems.ingame_python.eventfuncs","api/evennia.contrib.base_systems.ingame_python.scripts","api/evennia.contrib.base_systems.ingame_python.tests","api/evennia.contrib.base_systems.ingame_python.typeclasses","api/evennia.contrib.base_systems.ingame_python.utils","api/evennia.contrib.base_systems.menu_login","api/evennia.contrib.base_systems.menu_login.connection_screens","api/evennia.contrib.base_systems.menu_login.menu_login","api/evennia.contrib.base_systems.menu_login.tests","api/evennia.contrib.base_systems.mux_comms_cmds","api/evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds","api/evennia.contrib.base_systems.mux_comms_cmds.tests","api/evennia.contrib.base_systems.unixcommand","api/evennia.contrib.base_systems.unixcommand.tests","api/evennia.contrib.base_systems.unixcommand.unixcommand","api/evennia.contrib.full_systems","api/evennia.contrib.full_systems.evscaperoom","api/evennia.contrib.full_systems.evscaperoom.commands","api/evennia.contrib.full_systems.evscaperoom.menu","api/evennia.contrib.full_systems.evscaperoom.objects","api/evennia.contrib.full_systems.evscaperoom.room","api/evennia.contrib.full_systems.evscaperoom.scripts","api/evennia.contrib.full_systems.evscaperoom.state","api/evennia.contrib.full_systems.evscaperoom.tests","api/evennia.contrib.full_systems.evscaperoom.utils","api/evennia.contrib.game_systems","api/evennia.contrib.game_systems.barter","api/evennia.contrib.game_systems.barter.barter","api/evennia.contrib.game_systems.barter.tests","api/evennia.contrib.game_systems.clothing","api/evennia.contrib.game_systems.clothing.clothing","api/evennia.contrib.game_systems.clothing.tests","api/evennia.contrib.game_systems.cooldowns","api/evennia.contrib.game_systems.cooldowns.cooldowns","api/evennia.contrib.game_systems.cooldowns.tests","api/evennia.contrib.game_systems.crafting","api/evennia.contrib.game_systems.crafting.crafting","api/evennia.contrib.game_systems.crafting.example_recipes","api/evennia.contrib.game_systems.crafting.tests","api/evennia.contrib.game_systems.gendersub","api/evennia.contrib.game_systems.gendersub.gendersub","api/evennia.contrib.game_systems.gendersub.tests","api/evennia.contrib.game_systems.mail","api/evennia.contrib.game_systems.mail.mail","api/evennia.contrib.game_systems.mail.tests","api/evennia.contrib.game_systems.multidescer","api/evennia.contrib.game_systems.multidescer.multidescer","api/evennia.contrib.game_systems.multidescer.tests","api/evennia.contrib.game_systems.puzzles","api/evennia.contrib.game_systems.puzzles.puzzles","api/evennia.contrib.game_systems.puzzles.tests","api/evennia.contrib.game_systems.turnbattle","api/evennia.contrib.game_systems.turnbattle.tb_basic","api/evennia.contrib.game_systems.turnbattle.tb_equip","api/evennia.contrib.game_systems.turnbattle.tb_items","api/evennia.contrib.game_systems.turnbattle.tb_magic","api/evennia.contrib.game_systems.turnbattle.tb_range","api/evennia.contrib.game_systems.turnbattle.tests","api/evennia.contrib.grid","api/evennia.contrib.grid.extended_room","api/evennia.contrib.grid.extended_room.extended_room","api/evennia.contrib.grid.extended_room.tests","api/evennia.contrib.grid.mapbuilder","api/evennia.contrib.grid.mapbuilder.mapbuilder","api/evennia.contrib.grid.mapbuilder.tests","api/evennia.contrib.grid.simpledoor","api/evennia.contrib.grid.simpledoor.simpledoor","api/evennia.contrib.grid.simpledoor.tests","api/evennia.contrib.grid.slow_exit","api/evennia.contrib.grid.slow_exit.slow_exit","api/evennia.contrib.grid.slow_exit.tests","api/evennia.contrib.grid.wilderness","api/evennia.contrib.grid.wilderness.tests","api/evennia.contrib.grid.wilderness.wilderness","api/evennia.contrib.grid.xyzgrid","api/evennia.contrib.grid.xyzgrid.commands","api/evennia.contrib.grid.xyzgrid.example","api/evennia.contrib.grid.xyzgrid.launchcmd","api/evennia.contrib.grid.xyzgrid.prototypes","api/evennia.contrib.grid.xyzgrid.tests","api/evennia.contrib.grid.xyzgrid.utils","api/evennia.contrib.grid.xyzgrid.xymap","api/evennia.contrib.grid.xyzgrid.xymap_legend","api/evennia.contrib.grid.xyzgrid.xyzgrid","api/evennia.contrib.grid.xyzgrid.xyzroom","api/evennia.contrib.rpg","api/evennia.contrib.rpg.dice","api/evennia.contrib.rpg.dice.dice","api/evennia.contrib.rpg.dice.tests","api/evennia.contrib.rpg.health_bar","api/evennia.contrib.rpg.health_bar.health_bar","api/evennia.contrib.rpg.health_bar.tests","api/evennia.contrib.rpg.rpsystem","api/evennia.contrib.rpg.rpsystem.rplanguage","api/evennia.contrib.rpg.rpsystem.rpsystem","api/evennia.contrib.rpg.rpsystem.tests","api/evennia.contrib.rpg.traits","api/evennia.contrib.rpg.traits.tests","api/evennia.contrib.rpg.traits.traits","api/evennia.contrib.tutorials","api/evennia.contrib.tutorials.batchprocessor","api/evennia.contrib.tutorials.batchprocessor.example_batch_code","api/evennia.contrib.tutorials.bodyfunctions","api/evennia.contrib.tutorials.bodyfunctions.bodyfunctions","api/evennia.contrib.tutorials.bodyfunctions.tests","api/evennia.contrib.tutorials.mirror","api/evennia.contrib.tutorials.mirror.mirror","api/evennia.contrib.tutorials.red_button","api/evennia.contrib.tutorials.red_button.red_button","api/evennia.contrib.tutorials.talking_npc","api/evennia.contrib.tutorials.talking_npc.talking_npc","api/evennia.contrib.tutorials.talking_npc.tests","api/evennia.contrib.tutorials.tutorial_world","api/evennia.contrib.tutorials.tutorial_world.intro_menu","api/evennia.contrib.tutorials.tutorial_world.mob","api/evennia.contrib.tutorials.tutorial_world.objects","api/evennia.contrib.tutorials.tutorial_world.rooms","api/evennia.contrib.tutorials.tutorial_world.tests","api/evennia.contrib.utils","api/evennia.contrib.utils.auditing","api/evennia.contrib.utils.auditing.outputs","api/evennia.contrib.utils.auditing.server","api/evennia.contrib.utils.auditing.tests","api/evennia.contrib.utils.fieldfill","api/evennia.contrib.utils.fieldfill.fieldfill","api/evennia.contrib.utils.random_string_generator","api/evennia.contrib.utils.random_string_generator.random_string_generator","api/evennia.contrib.utils.random_string_generator.tests","api/evennia.contrib.utils.tree_select","api/evennia.contrib.utils.tree_select.tests","api/evennia.contrib.utils.tree_select.tree_select","api/evennia.help","api/evennia.help.filehelp","api/evennia.help.manager","api/evennia.help.models","api/evennia.help.utils","api/evennia.locks","api/evennia.locks.lockfuncs","api/evennia.locks.lockhandler","api/evennia.objects","api/evennia.objects.manager","api/evennia.objects.models","api/evennia.objects.objects","api/evennia.prototypes","api/evennia.prototypes.menus","api/evennia.prototypes.protfuncs","api/evennia.prototypes.prototypes","api/evennia.prototypes.spawner","api/evennia.scripts","api/evennia.scripts.manager","api/evennia.scripts.models","api/evennia.scripts.monitorhandler","api/evennia.scripts.scripthandler","api/evennia.scripts.scripts","api/evennia.scripts.taskhandler","api/evennia.scripts.tickerhandler","api/evennia.server","api/evennia.server.amp_client","api/evennia.server.connection_wizard","api/evennia.server.deprecations","api/evennia.server.evennia_launcher","api/evennia.server.game_index_client","api/evennia.server.game_index_client.client","api/evennia.server.game_index_client.service","api/evennia.server.initial_setup","api/evennia.server.inputfuncs","api/evennia.server.manager","api/evennia.server.models","api/evennia.server.portal","api/evennia.server.portal.amp","api/evennia.server.portal.amp_server","api/evennia.server.portal.grapevine","api/evennia.server.portal.irc","api/evennia.server.portal.mccp","api/evennia.server.portal.mssp","api/evennia.server.portal.mxp","api/evennia.server.portal.naws","api/evennia.server.portal.portal","api/evennia.server.portal.portalsessionhandler","api/evennia.server.portal.rss","api/evennia.server.portal.ssh","api/evennia.server.portal.ssl","api/evennia.server.portal.suppress_ga","api/evennia.server.portal.telnet","api/evennia.server.portal.telnet_oob","api/evennia.server.portal.telnet_ssl","api/evennia.server.portal.tests","api/evennia.server.portal.ttype","api/evennia.server.portal.webclient","api/evennia.server.portal.webclient_ajax","api/evennia.server.profiling","api/evennia.server.profiling.dummyrunner","api/evennia.server.profiling.dummyrunner_settings","api/evennia.server.profiling.memplot","api/evennia.server.profiling.settings_mixin","api/evennia.server.profiling.test_queries","api/evennia.server.profiling.tests","api/evennia.server.profiling.timetrace","api/evennia.server.server","api/evennia.server.serversession","api/evennia.server.session","api/evennia.server.sessionhandler","api/evennia.server.signals","api/evennia.server.throttle","api/evennia.server.validators","api/evennia.server.webserver","api/evennia.settings_default","api/evennia.typeclasses","api/evennia.typeclasses.attributes","api/evennia.typeclasses.managers","api/evennia.typeclasses.models","api/evennia.typeclasses.tags","api/evennia.utils","api/evennia.utils.ansi","api/evennia.utils.batchprocessors","api/evennia.utils.containers","api/evennia.utils.create","api/evennia.utils.dbserialize","api/evennia.utils.eveditor","api/evennia.utils.evform","api/evennia.utils.evmenu","api/evennia.utils.evmore","api/evennia.utils.evtable","api/evennia.utils.funcparser","api/evennia.utils.gametime","api/evennia.utils.idmapper","api/evennia.utils.idmapper.manager","api/evennia.utils.idmapper.models","api/evennia.utils.idmapper.tests","api/evennia.utils.logger","api/evennia.utils.optionclasses","api/evennia.utils.optionhandler","api/evennia.utils.picklefield","api/evennia.utils.search","api/evennia.utils.test_resources","api/evennia.utils.text2html","api/evennia.utils.utils","api/evennia.utils.validatorfuncs","api/evennia.utils.verb_conjugation","api/evennia.utils.verb_conjugation.conjugate","api/evennia.utils.verb_conjugation.pronouns","api/evennia.utils.verb_conjugation.tests","api/evennia.web","api/evennia.web.admin","api/evennia.web.admin.accounts","api/evennia.web.admin.attributes","api/evennia.web.admin.comms","api/evennia.web.admin.frontpage","api/evennia.web.admin.help","api/evennia.web.admin.objects","api/evennia.web.admin.scripts","api/evennia.web.admin.server","api/evennia.web.admin.tags","api/evennia.web.admin.urls","api/evennia.web.admin.utils","api/evennia.web.api","api/evennia.web.api.filters","api/evennia.web.api.permissions","api/evennia.web.api.root","api/evennia.web.api.serializers","api/evennia.web.api.tests","api/evennia.web.api.urls","api/evennia.web.api.views","api/evennia.web.templatetags","api/evennia.web.templatetags.addclass","api/evennia.web.urls","api/evennia.web.utils","api/evennia.web.utils.adminsite","api/evennia.web.utils.backends","api/evennia.web.utils.general_context","api/evennia.web.utils.middleware","api/evennia.web.utils.tests","api/evennia.web.webclient","api/evennia.web.webclient.urls","api/evennia.web.webclient.views","api/evennia.web.website","api/evennia.web.website.forms","api/evennia.web.website.tests","api/evennia.web.website.urls","api/evennia.web.website.views","api/evennia.web.website.views.accounts","api/evennia.web.website.views.channels","api/evennia.web.website.views.characters","api/evennia.web.website.views.errors","api/evennia.web.website.views.help","api/evennia.web.website.views.index","api/evennia.web.website.views.mixins","api/evennia.web.website.views.objects","index"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":1,"sphinx.ext.todo":2,"sphinx.ext.viewcode":1,sphinx:56},filenames:["Coding/Changelog.md","Coding/Coding-Introduction.md","Coding/Coding-Overview.md","Coding/Continuous-Integration.md","Coding/Continuous-Integration-TeamCity.md","Coding/Continuous-Integration-Travis.md","Coding/Debugging.md","Coding/Profiling.md","Coding/Quirks.md","Coding/Setting-up-PyCharm.md","Coding/Unit-Testing.md","Coding/Updating-Your-Game.md","Coding/Version-Control.md","Components/Accounts.md","Components/Attributes.md","Components/Batch-Code-Processor.md","Components/Batch-Command-Processor.md","Components/Batch-Processors.md","Components/Bootstrap-Components-and-Utilities.md","Components/Channels.md","Components/Coding-Utils.md","Components/Command-Sets.md","Components/Command-System.md","Components/Commands.md","Components/Components-Overview.md","Components/Connection-Screen.md","Components/Default-Commands.md","Components/EvEditor.md","Components/EvMenu.md","Components/EvMore.md","Components/FuncParser.md","Components/Help-System.md","Components/Inputfuncs.md","Components/Locks.md","Components/MonitorHandler.md","Components/Msg.md","Components/Nicks.md","Components/Objects.md","Components/Outputfuncs.md","Components/Permissions.md","Components/Portal-And-Server.md","Components/Prototypes.md","Components/Scripts.md","Components/Server.md","Components/Sessions.md","Components/Signals.md","Components/Tags.md","Components/TickerHandler.md","Components/Typeclasses.md","Components/Web-API.md","Components/Web-Admin.md","Components/Webclient.md","Components/Webserver.md","Components/Website.md","Concepts/Async-Process.md","Concepts/Banning.md","Concepts/Bootstrap-&-Evennia.md","Concepts/Building-Permissions.md","Concepts/Change-Messages-Per-Receiver.md","Concepts/Clickable-Links.md","Concepts/Colors.md","Concepts/Concepts-Overview.md","Concepts/Custom-Protocols.md","Concepts/Guest-Logins.md","Concepts/Internationalization.md","Concepts/Messagepath.md","Concepts/Multisession-modes.md","Concepts/New-Models.md","Concepts/OOB.md","Concepts/Soft-Code.md","Concepts/Text-Encodings.md","Concepts/TextTags.md","Concepts/Using-MUX-as-a-Standard.md","Concepts/Web-Features.md","Concepts/Zones.md","Contribs/Contrib-AWSStorage.md","Contribs/Contrib-Auditing.md","Contribs/Contrib-Barter.md","Contribs/Contrib-Batchprocessor.md","Contribs/Contrib-Bodyfunctions.md","Contribs/Contrib-Building-Menu.md","Contribs/Contrib-Clothing.md","Contribs/Contrib-Color-Markups.md","Contribs/Contrib-Components.md","Contribs/Contrib-Cooldowns.md","Contribs/Contrib-Crafting.md","Contribs/Contrib-Custom-Gametime.md","Contribs/Contrib-Dice.md","Contribs/Contrib-Email-Login.md","Contribs/Contrib-Evscaperoom.md","Contribs/Contrib-Extended-Room.md","Contribs/Contrib-Fieldfill.md","Contribs/Contrib-Gendersub.md","Contribs/Contrib-Health-Bar.md","Contribs/Contrib-Ingame-Python.md","Contribs/Contrib-Ingame-Python-Tutorial-Dialogue.md","Contribs/Contrib-Ingame-Python-Tutorial-Elevator.md","Contribs/Contrib-Mail.md","Contribs/Contrib-Mapbuilder.md","Contribs/Contrib-Menu-Login.md","Contribs/Contrib-Mirror.md","Contribs/Contrib-Multidescer.md","Contribs/Contrib-Mux-Comms-Cmds.md","Contribs/Contrib-Puzzles.md","Contribs/Contrib-RPSystem.md","Contribs/Contrib-Random-String-Generator.md","Contribs/Contrib-Red-Button.md","Contribs/Contrib-Simpledoor.md","Contribs/Contrib-Slow-Exit.md","Contribs/Contrib-Talking-Npc.md","Contribs/Contrib-Traits.md","Contribs/Contrib-Tree-Select.md","Contribs/Contrib-Turnbattle.md","Contribs/Contrib-Tutorial-World.md","Contribs/Contrib-Unixcommand.md","Contribs/Contrib-Wilderness.md","Contribs/Contrib-XYZGrid.md","Contribs/Contribs-Overview.md","Contributing.md","Contributing-Docs.md","Evennia-API.md","Evennia-Introduction.md","Glossary.md","Howtos/Add-a-wiki-on-your-website.md","Howtos/Arxcode-Installation.md","Howtos/Beginner-Tutorial/Beginner-Tutorial-Intro.md","Howtos/Beginner-Tutorial/Part1/Adding-Commands.md","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Part1-Intro.md","Howtos/Beginner-Tutorial/Part1/Building-Quickstart.md","Howtos/Beginner-Tutorial/Part1/Creating-Things.md","Howtos/Beginner-Tutorial/Part1/Django-queries.md","Howtos/Beginner-Tutorial/Part1/Evennia-Library-Overview.md","Howtos/Beginner-Tutorial/Part1/Gamedir-Overview.md","Howtos/Beginner-Tutorial/Part1/Learning-Typeclasses.md","Howtos/Beginner-Tutorial/Part1/More-on-Commands.md","Howtos/Beginner-Tutorial/Part1/Python-basic-introduction.md","Howtos/Beginner-Tutorial/Part1/Python-classes-and-objects.md","Howtos/Beginner-Tutorial/Part1/Searching-Things.md","Howtos/Beginner-Tutorial/Part1/Tutorial-World.md","Howtos/Beginner-Tutorial/Part2/Beginner-Tutorial-Part2-Intro.md","Howtos/Beginner-Tutorial/Part2/Game-Planning.md","Howtos/Beginner-Tutorial/Part2/Planning-Some-Useful-Contribs.md","Howtos/Beginner-Tutorial/Part2/Planning-The-Tutorial-Game.md","Howtos/Beginner-Tutorial/Part2/Planning-Where-Do-I-Begin.md","Howtos/Beginner-Tutorial/Part3/A-Sittable-Object.md","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Part3-Intro.md","Howtos/Beginner-Tutorial/Part3/Implementing-a-game-rule-system.md","Howtos/Beginner-Tutorial/Part3/Turn-based-Combat-System.md","Howtos/Beginner-Tutorial/Part4/Beginner-Tutorial-Part4-Intro.md","Howtos/Beginner-Tutorial/Part5/Add-a-simple-new-web-page.md","Howtos/Beginner-Tutorial/Part5/Beginner-Tutorial-Part5-Intro.md","Howtos/Beginner-Tutorial/Part5/Web-Tutorial.md","Howtos/Building-a-mech-tutorial.md","Howtos/Coding-FAQ.md","Howtos/Command-Cooldown.md","Howtos/Command-Duration.md","Howtos/Command-Prompt.md","Howtos/Coordinates.md","Howtos/Default-Exit-Errors.md","Howtos/Dynamic-In-Game-Map.md","Howtos/Evennia-for-Diku-Users.md","Howtos/Evennia-for-MUSH-Users.md","Howtos/Evennia-for-roleplaying-sessions.md","Howtos/Gametime-Tutorial.md","Howtos/Help-System-Tutorial.md","Howtos/Howtos-Overview.md","Howtos/Manually-Configuring-Color.md","Howtos/Mass-and-weight-for-objects.md","Howtos/NPC-shop-Tutorial.md","Howtos/Parsing-commands-tutorial.md","Howtos/Static-In-Game-Map.md","Howtos/Tutorial-Aggressive-NPCs.md","Howtos/Tutorial-NPCs-listening.md","Howtos/Tutorial-Tweeting-Game-Stats.md","Howtos/Tutorial-Vehicles.md","Howtos/Tutorial-for-basic-MUSH-like-game.md","Howtos/Understanding-Color-Tags.md","Howtos/Weather-Tutorial.md","Howtos/Web-Character-Generation.md","Howtos/Web-Character-View-Tutorial.md","Licensing.md","Links.md","Setup/Apache-Config.md","Setup/Choosing-An-SQL-Server.md","Setup/Client-Support-Grid.md","Setup/Evennia-Game-Index.md","Setup/Grapevine.md","Setup/HAProxy-Config.md","Setup/How-to-connect-Evennia-to-Twitter.md","Setup/IRC.md","Setup/Installation.md","Setup/Installation-Android.md","Setup/Installation-Docker.md","Setup/Installation-Git.md","Setup/Installation-Non-Interactive.md","Setup/Installation-Troubleshooting.md","Setup/Installation-Upgrade.md","Setup/Online-Setup.md","Setup/RSS.md","Setup/Security.md","Setup/Settings.md","Setup/Settings-Default.md","Setup/Setup-Overview.md","Setup/Start-Stop-Reload.md","Unimplemented.md","api/evennia.md","api/evennia-api.md","api/evennia.accounts.md","api/evennia.accounts.accounts.md","api/evennia.accounts.bots.md","api/evennia.accounts.manager.md","api/evennia.accounts.models.md","api/evennia.commands.md","api/evennia.commands.cmdhandler.md","api/evennia.commands.cmdparser.md","api/evennia.commands.cmdset.md","api/evennia.commands.cmdsethandler.md","api/evennia.commands.command.md","api/evennia.commands.default.md","api/evennia.commands.default.account.md","api/evennia.commands.default.admin.md","api/evennia.commands.default.batchprocess.md","api/evennia.commands.default.building.md","api/evennia.commands.default.cmdset_account.md","api/evennia.commands.default.cmdset_character.md","api/evennia.commands.default.cmdset_session.md","api/evennia.commands.default.cmdset_unloggedin.md","api/evennia.commands.default.comms.md","api/evennia.commands.default.general.md","api/evennia.commands.default.help.md","api/evennia.commands.default.muxcommand.md","api/evennia.commands.default.syscommands.md","api/evennia.commands.default.system.md","api/evennia.commands.default.tests.md","api/evennia.commands.default.unloggedin.md","api/evennia.comms.md","api/evennia.comms.comms.md","api/evennia.comms.managers.md","api/evennia.comms.models.md","api/evennia.contrib.md","api/evennia.contrib.base_systems.md","api/evennia.contrib.base_systems.awsstorage.md","api/evennia.contrib.base_systems.awsstorage.aws_s3_cdn.md","api/evennia.contrib.base_systems.awsstorage.tests.md","api/evennia.contrib.base_systems.building_menu.md","api/evennia.contrib.base_systems.building_menu.building_menu.md","api/evennia.contrib.base_systems.building_menu.tests.md","api/evennia.contrib.base_systems.color_markups.md","api/evennia.contrib.base_systems.color_markups.color_markups.md","api/evennia.contrib.base_systems.color_markups.tests.md","api/evennia.contrib.base_systems.custom_gametime.md","api/evennia.contrib.base_systems.custom_gametime.custom_gametime.md","api/evennia.contrib.base_systems.custom_gametime.tests.md","api/evennia.contrib.base_systems.email_login.md","api/evennia.contrib.base_systems.email_login.connection_screens.md","api/evennia.contrib.base_systems.email_login.email_login.md","api/evennia.contrib.base_systems.email_login.tests.md","api/evennia.contrib.base_systems.ingame_python.md","api/evennia.contrib.base_systems.ingame_python.callbackhandler.md","api/evennia.contrib.base_systems.ingame_python.commands.md","api/evennia.contrib.base_systems.ingame_python.eventfuncs.md","api/evennia.contrib.base_systems.ingame_python.scripts.md","api/evennia.contrib.base_systems.ingame_python.tests.md","api/evennia.contrib.base_systems.ingame_python.typeclasses.md","api/evennia.contrib.base_systems.ingame_python.utils.md","api/evennia.contrib.base_systems.menu_login.md","api/evennia.contrib.base_systems.menu_login.connection_screens.md","api/evennia.contrib.base_systems.menu_login.menu_login.md","api/evennia.contrib.base_systems.menu_login.tests.md","api/evennia.contrib.base_systems.mux_comms_cmds.md","api/evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.md","api/evennia.contrib.base_systems.mux_comms_cmds.tests.md","api/evennia.contrib.base_systems.unixcommand.md","api/evennia.contrib.base_systems.unixcommand.tests.md","api/evennia.contrib.base_systems.unixcommand.unixcommand.md","api/evennia.contrib.full_systems.md","api/evennia.contrib.full_systems.evscaperoom.md","api/evennia.contrib.full_systems.evscaperoom.commands.md","api/evennia.contrib.full_systems.evscaperoom.menu.md","api/evennia.contrib.full_systems.evscaperoom.objects.md","api/evennia.contrib.full_systems.evscaperoom.room.md","api/evennia.contrib.full_systems.evscaperoom.scripts.md","api/evennia.contrib.full_systems.evscaperoom.state.md","api/evennia.contrib.full_systems.evscaperoom.tests.md","api/evennia.contrib.full_systems.evscaperoom.utils.md","api/evennia.contrib.game_systems.md","api/evennia.contrib.game_systems.barter.md","api/evennia.contrib.game_systems.barter.barter.md","api/evennia.contrib.game_systems.barter.tests.md","api/evennia.contrib.game_systems.clothing.md","api/evennia.contrib.game_systems.clothing.clothing.md","api/evennia.contrib.game_systems.clothing.tests.md","api/evennia.contrib.game_systems.cooldowns.md","api/evennia.contrib.game_systems.cooldowns.cooldowns.md","api/evennia.contrib.game_systems.cooldowns.tests.md","api/evennia.contrib.game_systems.crafting.md","api/evennia.contrib.game_systems.crafting.crafting.md","api/evennia.contrib.game_systems.crafting.example_recipes.md","api/evennia.contrib.game_systems.crafting.tests.md","api/evennia.contrib.game_systems.gendersub.md","api/evennia.contrib.game_systems.gendersub.gendersub.md","api/evennia.contrib.game_systems.gendersub.tests.md","api/evennia.contrib.game_systems.mail.md","api/evennia.contrib.game_systems.mail.mail.md","api/evennia.contrib.game_systems.mail.tests.md","api/evennia.contrib.game_systems.multidescer.md","api/evennia.contrib.game_systems.multidescer.multidescer.md","api/evennia.contrib.game_systems.multidescer.tests.md","api/evennia.contrib.game_systems.puzzles.md","api/evennia.contrib.game_systems.puzzles.puzzles.md","api/evennia.contrib.game_systems.puzzles.tests.md","api/evennia.contrib.game_systems.turnbattle.md","api/evennia.contrib.game_systems.turnbattle.tb_basic.md","api/evennia.contrib.game_systems.turnbattle.tb_equip.md","api/evennia.contrib.game_systems.turnbattle.tb_items.md","api/evennia.contrib.game_systems.turnbattle.tb_magic.md","api/evennia.contrib.game_systems.turnbattle.tb_range.md","api/evennia.contrib.game_systems.turnbattle.tests.md","api/evennia.contrib.grid.md","api/evennia.contrib.grid.extended_room.md","api/evennia.contrib.grid.extended_room.extended_room.md","api/evennia.contrib.grid.extended_room.tests.md","api/evennia.contrib.grid.mapbuilder.md","api/evennia.contrib.grid.mapbuilder.mapbuilder.md","api/evennia.contrib.grid.mapbuilder.tests.md","api/evennia.contrib.grid.simpledoor.md","api/evennia.contrib.grid.simpledoor.simpledoor.md","api/evennia.contrib.grid.simpledoor.tests.md","api/evennia.contrib.grid.slow_exit.md","api/evennia.contrib.grid.slow_exit.slow_exit.md","api/evennia.contrib.grid.slow_exit.tests.md","api/evennia.contrib.grid.wilderness.md","api/evennia.contrib.grid.wilderness.tests.md","api/evennia.contrib.grid.wilderness.wilderness.md","api/evennia.contrib.grid.xyzgrid.md","api/evennia.contrib.grid.xyzgrid.commands.md","api/evennia.contrib.grid.xyzgrid.example.md","api/evennia.contrib.grid.xyzgrid.launchcmd.md","api/evennia.contrib.grid.xyzgrid.prototypes.md","api/evennia.contrib.grid.xyzgrid.tests.md","api/evennia.contrib.grid.xyzgrid.utils.md","api/evennia.contrib.grid.xyzgrid.xymap.md","api/evennia.contrib.grid.xyzgrid.xymap_legend.md","api/evennia.contrib.grid.xyzgrid.xyzgrid.md","api/evennia.contrib.grid.xyzgrid.xyzroom.md","api/evennia.contrib.rpg.md","api/evennia.contrib.rpg.dice.md","api/evennia.contrib.rpg.dice.dice.md","api/evennia.contrib.rpg.dice.tests.md","api/evennia.contrib.rpg.health_bar.md","api/evennia.contrib.rpg.health_bar.health_bar.md","api/evennia.contrib.rpg.health_bar.tests.md","api/evennia.contrib.rpg.rpsystem.md","api/evennia.contrib.rpg.rpsystem.rplanguage.md","api/evennia.contrib.rpg.rpsystem.rpsystem.md","api/evennia.contrib.rpg.rpsystem.tests.md","api/evennia.contrib.rpg.traits.md","api/evennia.contrib.rpg.traits.tests.md","api/evennia.contrib.rpg.traits.traits.md","api/evennia.contrib.tutorials.md","api/evennia.contrib.tutorials.batchprocessor.md","api/evennia.contrib.tutorials.batchprocessor.example_batch_code.md","api/evennia.contrib.tutorials.bodyfunctions.md","api/evennia.contrib.tutorials.bodyfunctions.bodyfunctions.md","api/evennia.contrib.tutorials.bodyfunctions.tests.md","api/evennia.contrib.tutorials.mirror.md","api/evennia.contrib.tutorials.mirror.mirror.md","api/evennia.contrib.tutorials.red_button.md","api/evennia.contrib.tutorials.red_button.red_button.md","api/evennia.contrib.tutorials.talking_npc.md","api/evennia.contrib.tutorials.talking_npc.talking_npc.md","api/evennia.contrib.tutorials.talking_npc.tests.md","api/evennia.contrib.tutorials.tutorial_world.md","api/evennia.contrib.tutorials.tutorial_world.intro_menu.md","api/evennia.contrib.tutorials.tutorial_world.mob.md","api/evennia.contrib.tutorials.tutorial_world.objects.md","api/evennia.contrib.tutorials.tutorial_world.rooms.md","api/evennia.contrib.tutorials.tutorial_world.tests.md","api/evennia.contrib.utils.md","api/evennia.contrib.utils.auditing.md","api/evennia.contrib.utils.auditing.outputs.md","api/evennia.contrib.utils.auditing.server.md","api/evennia.contrib.utils.auditing.tests.md","api/evennia.contrib.utils.fieldfill.md","api/evennia.contrib.utils.fieldfill.fieldfill.md","api/evennia.contrib.utils.random_string_generator.md","api/evennia.contrib.utils.random_string_generator.random_string_generator.md","api/evennia.contrib.utils.random_string_generator.tests.md","api/evennia.contrib.utils.tree_select.md","api/evennia.contrib.utils.tree_select.tests.md","api/evennia.contrib.utils.tree_select.tree_select.md","api/evennia.help.md","api/evennia.help.filehelp.md","api/evennia.help.manager.md","api/evennia.help.models.md","api/evennia.help.utils.md","api/evennia.locks.md","api/evennia.locks.lockfuncs.md","api/evennia.locks.lockhandler.md","api/evennia.objects.md","api/evennia.objects.manager.md","api/evennia.objects.models.md","api/evennia.objects.objects.md","api/evennia.prototypes.md","api/evennia.prototypes.menus.md","api/evennia.prototypes.protfuncs.md","api/evennia.prototypes.prototypes.md","api/evennia.prototypes.spawner.md","api/evennia.scripts.md","api/evennia.scripts.manager.md","api/evennia.scripts.models.md","api/evennia.scripts.monitorhandler.md","api/evennia.scripts.scripthandler.md","api/evennia.scripts.scripts.md","api/evennia.scripts.taskhandler.md","api/evennia.scripts.tickerhandler.md","api/evennia.server.md","api/evennia.server.amp_client.md","api/evennia.server.connection_wizard.md","api/evennia.server.deprecations.md","api/evennia.server.evennia_launcher.md","api/evennia.server.game_index_client.md","api/evennia.server.game_index_client.client.md","api/evennia.server.game_index_client.service.md","api/evennia.server.initial_setup.md","api/evennia.server.inputfuncs.md","api/evennia.server.manager.md","api/evennia.server.models.md","api/evennia.server.portal.md","api/evennia.server.portal.amp.md","api/evennia.server.portal.amp_server.md","api/evennia.server.portal.grapevine.md","api/evennia.server.portal.irc.md","api/evennia.server.portal.mccp.md","api/evennia.server.portal.mssp.md","api/evennia.server.portal.mxp.md","api/evennia.server.portal.naws.md","api/evennia.server.portal.portal.md","api/evennia.server.portal.portalsessionhandler.md","api/evennia.server.portal.rss.md","api/evennia.server.portal.ssh.md","api/evennia.server.portal.ssl.md","api/evennia.server.portal.suppress_ga.md","api/evennia.server.portal.telnet.md","api/evennia.server.portal.telnet_oob.md","api/evennia.server.portal.telnet_ssl.md","api/evennia.server.portal.tests.md","api/evennia.server.portal.ttype.md","api/evennia.server.portal.webclient.md","api/evennia.server.portal.webclient_ajax.md","api/evennia.server.profiling.md","api/evennia.server.profiling.dummyrunner.md","api/evennia.server.profiling.dummyrunner_settings.md","api/evennia.server.profiling.memplot.md","api/evennia.server.profiling.settings_mixin.md","api/evennia.server.profiling.test_queries.md","api/evennia.server.profiling.tests.md","api/evennia.server.profiling.timetrace.md","api/evennia.server.server.md","api/evennia.server.serversession.md","api/evennia.server.session.md","api/evennia.server.sessionhandler.md","api/evennia.server.signals.md","api/evennia.server.throttle.md","api/evennia.server.validators.md","api/evennia.server.webserver.md","api/evennia.settings_default.md","api/evennia.typeclasses.md","api/evennia.typeclasses.attributes.md","api/evennia.typeclasses.managers.md","api/evennia.typeclasses.models.md","api/evennia.typeclasses.tags.md","api/evennia.utils.md","api/evennia.utils.ansi.md","api/evennia.utils.batchprocessors.md","api/evennia.utils.containers.md","api/evennia.utils.create.md","api/evennia.utils.dbserialize.md","api/evennia.utils.eveditor.md","api/evennia.utils.evform.md","api/evennia.utils.evmenu.md","api/evennia.utils.evmore.md","api/evennia.utils.evtable.md","api/evennia.utils.funcparser.md","api/evennia.utils.gametime.md","api/evennia.utils.idmapper.md","api/evennia.utils.idmapper.manager.md","api/evennia.utils.idmapper.models.md","api/evennia.utils.idmapper.tests.md","api/evennia.utils.logger.md","api/evennia.utils.optionclasses.md","api/evennia.utils.optionhandler.md","api/evennia.utils.picklefield.md","api/evennia.utils.search.md","api/evennia.utils.test_resources.md","api/evennia.utils.text2html.md","api/evennia.utils.utils.md","api/evennia.utils.validatorfuncs.md","api/evennia.utils.verb_conjugation.md","api/evennia.utils.verb_conjugation.conjugate.md","api/evennia.utils.verb_conjugation.pronouns.md","api/evennia.utils.verb_conjugation.tests.md","api/evennia.web.md","api/evennia.web.admin.md","api/evennia.web.admin.accounts.md","api/evennia.web.admin.attributes.md","api/evennia.web.admin.comms.md","api/evennia.web.admin.frontpage.md","api/evennia.web.admin.help.md","api/evennia.web.admin.objects.md","api/evennia.web.admin.scripts.md","api/evennia.web.admin.server.md","api/evennia.web.admin.tags.md","api/evennia.web.admin.urls.md","api/evennia.web.admin.utils.md","api/evennia.web.api.md","api/evennia.web.api.filters.md","api/evennia.web.api.permissions.md","api/evennia.web.api.root.md","api/evennia.web.api.serializers.md","api/evennia.web.api.tests.md","api/evennia.web.api.urls.md","api/evennia.web.api.views.md","api/evennia.web.templatetags.md","api/evennia.web.templatetags.addclass.md","api/evennia.web.urls.md","api/evennia.web.utils.md","api/evennia.web.utils.adminsite.md","api/evennia.web.utils.backends.md","api/evennia.web.utils.general_context.md","api/evennia.web.utils.middleware.md","api/evennia.web.utils.tests.md","api/evennia.web.webclient.md","api/evennia.web.webclient.urls.md","api/evennia.web.webclient.views.md","api/evennia.web.website.md","api/evennia.web.website.forms.md","api/evennia.web.website.tests.md","api/evennia.web.website.urls.md","api/evennia.web.website.views.md","api/evennia.web.website.views.accounts.md","api/evennia.web.website.views.channels.md","api/evennia.web.website.views.characters.md","api/evennia.web.website.views.errors.md","api/evennia.web.website.views.help.md","api/evennia.web.website.views.index.md","api/evennia.web.website.views.mixins.md","api/evennia.web.website.views.objects.md","index.md"],objects:{"":{evennia:[205,0,0,"-"]},"evennia.accounts":{accounts:[208,0,0,"-"],bots:[209,0,0,"-"],manager:[210,0,0,"-"],models:[211,0,0,"-"]},"evennia.accounts.accounts":{DefaultAccount:[208,1,1,""],DefaultGuest:[208,1,1,""]},"evennia.accounts.accounts.DefaultAccount":{"delete":[208,3,1,""],DoesNotExist:[208,2,1,""],MultipleObjectsReturned:[208,2,1,""],access:[208,3,1,""],at_access:[208,3,1,""],at_account_creation:[208,3,1,""],at_cmdset_get:[208,3,1,""],at_disconnect:[208,3,1,""],at_failed_login:[208,3,1,""],at_first_login:[208,3,1,""],at_first_save:[208,3,1,""],at_init:[208,3,1,""],at_look:[208,3,1,""],at_msg_receive:[208,3,1,""],at_msg_send:[208,3,1,""],at_password_change:[208,3,1,""],at_post_channel_msg:[208,3,1,""],at_post_disconnect:[208,3,1,""],at_post_login:[208,3,1,""],at_pre_channel_msg:[208,3,1,""],at_pre_login:[208,3,1,""],at_server_reload:[208,3,1,""],at_server_shutdown:[208,3,1,""],authenticate:[208,3,1,""],basetype_setup:[208,3,1,""],channel_msg:[208,3,1,""],character:[208,3,1,""],characters:[208,3,1,""],cmdset:[208,4,1,""],connection_time:[208,3,1,""],create:[208,3,1,""],create_character:[208,3,1,""],disconnect_session_from_account:[208,3,1,""],execute_cmd:[208,3,1,""],get_all_puppets:[208,3,1,""],get_display_name:[208,3,1,""],get_puppet:[208,3,1,""],get_username_validators:[208,3,1,""],idle_time:[208,3,1,""],is_banned:[208,3,1,""],msg:[208,3,1,""],nicks:[208,4,1,""],normalize_username:[208,3,1,""],objects:[208,4,1,""],options:[208,4,1,""],path:[208,4,1,""],puppet:[208,3,1,""],puppet_object:[208,3,1,""],scripts:[208,4,1,""],search:[208,3,1,""],sessions:[208,4,1,""],set_password:[208,3,1,""],typename:[208,4,1,""],unpuppet_all:[208,3,1,""],unpuppet_object:[208,3,1,""],validate_password:[208,3,1,""],validate_username:[208,3,1,""]},"evennia.accounts.accounts.DefaultGuest":{DoesNotExist:[208,2,1,""],MultipleObjectsReturned:[208,2,1,""],at_post_disconnect:[208,3,1,""],at_post_login:[208,3,1,""],at_server_shutdown:[208,3,1,""],authenticate:[208,3,1,""],create:[208,3,1,""],path:[208,4,1,""],typename:[208,4,1,""]},"evennia.accounts.bots":{Bot:[209,1,1,""],BotStarter:[209,1,1,""],GrapevineBot:[209,1,1,""],IRCBot:[209,1,1,""],RSSBot:[209,1,1,""]},"evennia.accounts.bots.Bot":{DoesNotExist:[209,2,1,""],MultipleObjectsReturned:[209,2,1,""],at_server_shutdown:[209,3,1,""],basetype_setup:[209,3,1,""],execute_cmd:[209,3,1,""],msg:[209,3,1,""],path:[209,4,1,""],start:[209,3,1,""],typename:[209,4,1,""]},"evennia.accounts.bots.BotStarter":{DoesNotExist:[209,2,1,""],MultipleObjectsReturned:[209,2,1,""],at_repeat:[209,3,1,""],at_script_creation:[209,3,1,""],at_server_reload:[209,3,1,""],at_server_shutdown:[209,3,1,""],at_start:[209,3,1,""],path:[209,4,1,""],typename:[209,4,1,""]},"evennia.accounts.bots.GrapevineBot":{DoesNotExist:[209,2,1,""],MultipleObjectsReturned:[209,2,1,""],at_msg_send:[209,3,1,""],execute_cmd:[209,3,1,""],factory_path:[209,4,1,""],msg:[209,3,1,""],path:[209,4,1,""],start:[209,3,1,""],typename:[209,4,1,""]},"evennia.accounts.bots.IRCBot":{DoesNotExist:[209,2,1,""],MultipleObjectsReturned:[209,2,1,""],at_msg_send:[209,3,1,""],execute_cmd:[209,3,1,""],factory_path:[209,4,1,""],get_nicklist:[209,3,1,""],msg:[209,3,1,""],path:[209,4,1,""],ping:[209,3,1,""],reconnect:[209,3,1,""],start:[209,3,1,""],typename:[209,4,1,""]},"evennia.accounts.bots.RSSBot":{DoesNotExist:[209,2,1,""],MultipleObjectsReturned:[209,2,1,""],execute_cmd:[209,3,1,""],path:[209,4,1,""],start:[209,3,1,""],typename:[209,4,1,""]},"evennia.accounts.manager":{AccountDBManager:[210,1,1,""],AccountManager:[210,1,1,""]},"evennia.accounts.manager.AccountDBManager":{account_search:[210,3,1,""],create_account:[210,3,1,""],get_account_from_email:[210,3,1,""],get_account_from_name:[210,3,1,""],get_account_from_uid:[210,3,1,""],get_connected_accounts:[210,3,1,""],get_recently_connected_accounts:[210,3,1,""],get_recently_created_accounts:[210,3,1,""],num_total_accounts:[210,3,1,""],search_account:[210,3,1,""]},"evennia.accounts.models":{AccountDB:[211,1,1,""]},"evennia.accounts.models.AccountDB":{DoesNotExist:[211,2,1,""],MultipleObjectsReturned:[211,2,1,""],account_subscription_set:[211,4,1,""],cmdset_storage:[211,3,1,""],date_joined:[211,4,1,""],db_attributes:[211,4,1,""],db_cmdset_storage:[211,4,1,""],db_date_created:[211,4,1,""],db_is_bot:[211,4,1,""],db_is_connected:[211,4,1,""],db_key:[211,4,1,""],db_lock_storage:[211,4,1,""],db_tags:[211,4,1,""],db_typeclass_path:[211,4,1,""],email:[211,4,1,""],first_name:[211,4,1,""],get_next_by_date_joined:[211,3,1,""],get_next_by_db_date_created:[211,3,1,""],get_previous_by_date_joined:[211,3,1,""],get_previous_by_db_date_created:[211,3,1,""],groups:[211,4,1,""],hide_from_accounts_set:[211,4,1,""],id:[211,4,1,""],is_active:[211,4,1,""],is_bot:[211,3,1,""],is_connected:[211,3,1,""],is_staff:[211,4,1,""],is_superuser:[211,4,1,""],key:[211,3,1,""],last_login:[211,4,1,""],last_name:[211,4,1,""],logentry_set:[211,4,1,""],name:[211,3,1,""],objectdb_set:[211,4,1,""],objects:[211,4,1,""],password:[211,4,1,""],path:[211,4,1,""],receiver_account_set:[211,4,1,""],scriptdb_set:[211,4,1,""],sender_account_set:[211,4,1,""],typename:[211,4,1,""],uid:[211,3,1,""],user_permissions:[211,4,1,""],username:[211,4,1,""]},"evennia.commands":{"default":[218,0,0,"-"],cmdhandler:[213,0,0,"-"],cmdparser:[214,0,0,"-"],cmdset:[215,0,0,"-"],cmdsethandler:[216,0,0,"-"],command:[217,0,0,"-"]},"evennia.commands.cmdhandler":{InterruptCommand:[213,2,1,""],cmdhandler:[213,5,1,""]},"evennia.commands.cmdparser":{build_matches:[214,5,1,""],cmdparser:[214,5,1,""],create_match:[214,5,1,""],try_num_differentiators:[214,5,1,""]},"evennia.commands.cmdset":{CmdSet:[215,1,1,""]},"evennia.commands.cmdset.CmdSet":{__init__:[215,3,1,""],add:[215,3,1,""],at_cmdset_creation:[215,3,1,""],count:[215,3,1,""],duplicates:[215,4,1,""],errmessage:[215,4,1,""],get:[215,3,1,""],get_all_cmd_keys_and_aliases:[215,3,1,""],get_system_cmds:[215,3,1,""],key:[215,4,1,""],key_mergetypes:[215,4,1,""],make_unique:[215,3,1,""],mergetype:[215,4,1,""],no_channels:[215,4,1,""],no_exits:[215,4,1,""],no_objs:[215,4,1,""],path:[215,4,1,""],persistent:[215,4,1,""],priority:[215,4,1,""],remove:[215,3,1,""],to_duplicate:[215,4,1,""]},"evennia.commands.cmdsethandler":{CmdSetHandler:[216,1,1,""],import_cmdset:[216,5,1,""]},"evennia.commands.cmdsethandler.CmdSetHandler":{"delete":[216,3,1,""],__init__:[216,3,1,""],add:[216,3,1,""],add_default:[216,3,1,""],all:[216,3,1,""],clear:[216,3,1,""],delete_default:[216,3,1,""],get:[216,3,1,""],has:[216,3,1,""],has_cmdset:[216,3,1,""],remove:[216,3,1,""],remove_default:[216,3,1,""],reset:[216,3,1,""],update:[216,3,1,""]},"evennia.commands.command":{Command:[217,1,1,""],CommandMeta:[217,1,1,""],InterruptCommand:[217,2,1,""]},"evennia.commands.command.Command":{__init__:[217,3,1,""],access:[217,3,1,""],aliases:[217,4,1,""],arg_regex:[217,4,1,""],at_post_cmd:[217,3,1,""],at_pre_cmd:[217,3,1,""],auto_help:[217,4,1,""],client_width:[217,3,1,""],execute_cmd:[217,3,1,""],func:[217,3,1,""],get_command_info:[217,3,1,""],get_extra_info:[217,3,1,""],get_help:[217,3,1,""],help_category:[217,4,1,""],is_exit:[217,4,1,""],key:[217,4,1,""],lock_storage:[217,4,1,""],lockhandler:[217,4,1,""],locks:[217,4,1,""],match:[217,3,1,""],msg:[217,3,1,""],msg_all_sessions:[217,4,1,""],parse:[217,3,1,""],retain_instance:[217,4,1,""],save_for_next:[217,4,1,""],search_index_entry:[217,4,1,""],set_aliases:[217,3,1,""],set_key:[217,3,1,""],styled_footer:[217,3,1,""],styled_header:[217,3,1,""],styled_separator:[217,3,1,""],styled_table:[217,3,1,""],web_get_admin_url:[217,3,1,""],web_get_detail_url:[217,3,1,""]},"evennia.commands.command.CommandMeta":{__init__:[217,3,1,""]},"evennia.commands.default":{account:[219,0,0,"-"],admin:[220,0,0,"-"],batchprocess:[221,0,0,"-"],building:[222,0,0,"-"],cmdset_account:[223,0,0,"-"],cmdset_character:[224,0,0,"-"],cmdset_session:[225,0,0,"-"],cmdset_unloggedin:[226,0,0,"-"],comms:[227,0,0,"-"],general:[228,0,0,"-"],help:[229,0,0,"-"],muxcommand:[230,0,0,"-"],syscommands:[231,0,0,"-"],system:[232,0,0,"-"],unloggedin:[234,0,0,"-"]},"evennia.commands.default.account":{CmdCharCreate:[219,1,1,""],CmdCharDelete:[219,1,1,""],CmdColorTest:[219,1,1,""],CmdIC:[219,1,1,""],CmdOOC:[219,1,1,""],CmdOOCLook:[219,1,1,""],CmdOption:[219,1,1,""],CmdPassword:[219,1,1,""],CmdQuell:[219,1,1,""],CmdQuit:[219,1,1,""],CmdSessions:[219,1,1,""],CmdStyle:[219,1,1,""],CmdWho:[219,1,1,""]},"evennia.commands.default.account.CmdCharCreate":{account_caller:[219,4,1,""],aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],locks:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.commands.default.account.CmdCharDelete":{aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],locks:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.commands.default.account.CmdColorTest":{account_caller:[219,4,1,""],aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],locks:[219,4,1,""],search_index_entry:[219,4,1,""],slice_bright_bg:[219,4,1,""],slice_bright_fg:[219,4,1,""],slice_dark_bg:[219,4,1,""],slice_dark_fg:[219,4,1,""],table_format:[219,3,1,""]},"evennia.commands.default.account.CmdIC":{account_caller:[219,4,1,""],aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],locks:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.commands.default.account.CmdOOC":{account_caller:[219,4,1,""],aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],locks:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.commands.default.account.CmdOOCLook":{account_caller:[219,4,1,""],aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],locks:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.commands.default.account.CmdOption":{account_caller:[219,4,1,""],aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],locks:[219,4,1,""],search_index_entry:[219,4,1,""],switch_options:[219,4,1,""]},"evennia.commands.default.account.CmdPassword":{account_caller:[219,4,1,""],aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],locks:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.commands.default.account.CmdQuell":{account_caller:[219,4,1,""],aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],locks:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.commands.default.account.CmdQuit":{account_caller:[219,4,1,""],aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],locks:[219,4,1,""],search_index_entry:[219,4,1,""],switch_options:[219,4,1,""]},"evennia.commands.default.account.CmdSessions":{account_caller:[219,4,1,""],aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],locks:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.commands.default.account.CmdStyle":{aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],list_styles:[219,3,1,""],lock_storage:[219,4,1,""],search_index_entry:[219,4,1,""],set:[219,3,1,""],switch_options:[219,4,1,""]},"evennia.commands.default.account.CmdWho":{account_caller:[219,4,1,""],aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],locks:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.commands.default.admin":{CmdBan:[220,1,1,""],CmdBoot:[220,1,1,""],CmdEmit:[220,1,1,""],CmdForce:[220,1,1,""],CmdNewPassword:[220,1,1,""],CmdPerm:[220,1,1,""],CmdUnban:[220,1,1,""],CmdWall:[220,1,1,""]},"evennia.commands.default.admin.CmdBan":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],locks:[220,4,1,""],search_index_entry:[220,4,1,""]},"evennia.commands.default.admin.CmdBoot":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],locks:[220,4,1,""],search_index_entry:[220,4,1,""],switch_options:[220,4,1,""]},"evennia.commands.default.admin.CmdEmit":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],locks:[220,4,1,""],search_index_entry:[220,4,1,""],switch_options:[220,4,1,""]},"evennia.commands.default.admin.CmdForce":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],locks:[220,4,1,""],perm_used:[220,4,1,""],search_index_entry:[220,4,1,""]},"evennia.commands.default.admin.CmdNewPassword":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],locks:[220,4,1,""],search_index_entry:[220,4,1,""]},"evennia.commands.default.admin.CmdPerm":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],locks:[220,4,1,""],search_index_entry:[220,4,1,""],switch_options:[220,4,1,""]},"evennia.commands.default.admin.CmdUnban":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],locks:[220,4,1,""],search_index_entry:[220,4,1,""]},"evennia.commands.default.admin.CmdWall":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],locks:[220,4,1,""],search_index_entry:[220,4,1,""]},"evennia.commands.default.batchprocess":{CmdBatchCode:[221,1,1,""],CmdBatchCommands:[221,1,1,""]},"evennia.commands.default.batchprocess.CmdBatchCode":{aliases:[221,4,1,""],func:[221,3,1,""],help_category:[221,4,1,""],key:[221,4,1,""],lock_storage:[221,4,1,""],locks:[221,4,1,""],search_index_entry:[221,4,1,""],switch_options:[221,4,1,""]},"evennia.commands.default.batchprocess.CmdBatchCommands":{aliases:[221,4,1,""],func:[221,3,1,""],help_category:[221,4,1,""],key:[221,4,1,""],lock_storage:[221,4,1,""],locks:[221,4,1,""],search_index_entry:[221,4,1,""],switch_options:[221,4,1,""]},"evennia.commands.default.building":{CmdCopy:[222,1,1,""],CmdCpAttr:[222,1,1,""],CmdCreate:[222,1,1,""],CmdDesc:[222,1,1,""],CmdDestroy:[222,1,1,""],CmdDig:[222,1,1,""],CmdExamine:[222,1,1,""],CmdFind:[222,1,1,""],CmdLink:[222,1,1,""],CmdListCmdSets:[222,1,1,""],CmdLock:[222,1,1,""],CmdMvAttr:[222,1,1,""],CmdName:[222,1,1,""],CmdObjects:[222,1,1,""],CmdOpen:[222,1,1,""],CmdScripts:[222,1,1,""],CmdSetAttribute:[222,1,1,""],CmdSetHome:[222,1,1,""],CmdSetObjAlias:[222,1,1,""],CmdSpawn:[222,1,1,""],CmdTag:[222,1,1,""],CmdTeleport:[222,1,1,""],CmdTunnel:[222,1,1,""],CmdTypeclass:[222,1,1,""],CmdUnLink:[222,1,1,""],CmdWipe:[222,1,1,""],ObjManipCommand:[222,1,1,""]},"evennia.commands.default.building.CmdCopy":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""]},"evennia.commands.default.building.CmdCpAttr":{aliases:[222,4,1,""],check_from_attr:[222,3,1,""],check_has_attr:[222,3,1,""],check_to_attr:[222,3,1,""],func:[222,3,1,""],get_attr:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""],switch_options:[222,4,1,""]},"evennia.commands.default.building.CmdCreate":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],new_obj_lockstring:[222,4,1,""],search_index_entry:[222,4,1,""],switch_options:[222,4,1,""]},"evennia.commands.default.building.CmdDesc":{aliases:[222,4,1,""],edit_handler:[222,3,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""],switch_options:[222,4,1,""]},"evennia.commands.default.building.CmdDestroy":{aliases:[222,4,1,""],confirm:[222,4,1,""],default_confirm:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""],switch_options:[222,4,1,""]},"evennia.commands.default.building.CmdDig":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],new_room_lockstring:[222,4,1,""],search_index_entry:[222,4,1,""],switch_options:[222,4,1,""]},"evennia.commands.default.building.CmdExamine":{aliases:[222,4,1,""],arg_regex:[222,4,1,""],detail_color:[222,4,1,""],format_account_key:[222,3,1,""],format_account_permissions:[222,3,1,""],format_account_typeclass:[222,3,1,""],format_aliases:[222,3,1,""],format_attributes:[222,3,1,""],format_channel_account_subs:[222,3,1,""],format_channel_object_subs:[222,3,1,""],format_channel_sub_totals:[222,3,1,""],format_chars:[222,3,1,""],format_current_cmds:[222,3,1,""],format_destination:[222,3,1,""],format_email:[222,3,1,""],format_exits:[222,3,1,""],format_home:[222,3,1,""],format_key:[222,3,1,""],format_location:[222,3,1,""],format_locks:[222,3,1,""],format_merged_cmdsets:[222,3,1,""],format_nattributes:[222,3,1,""],format_output:[222,3,1,""],format_permissions:[222,3,1,""],format_script_desc:[222,3,1,""],format_script_is_persistent:[222,3,1,""],format_script_timer_data:[222,3,1,""],format_scripts:[222,3,1,""],format_sessions:[222,3,1,""],format_single_attribute:[222,3,1,""],format_single_attribute_detail:[222,3,1,""],format_single_cmdset:[222,3,1,""],format_single_cmdset_options:[222,3,1,""],format_single_tag:[222,3,1,""],format_stored_cmdsets:[222,3,1,""],format_tags:[222,3,1,""],format_things:[222,3,1,""],format_typeclass:[222,3,1,""],func:[222,3,1,""],get_formatted_obj_data:[222,3,1,""],header_color:[222,4,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],msg:[222,3,1,""],object_type:[222,4,1,""],parse:[222,3,1,""],quell_color:[222,4,1,""],search_index_entry:[222,4,1,""],separator:[222,4,1,""],switch_options:[222,4,1,""],text:[222,4,1,""]},"evennia.commands.default.building.CmdFind":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""],switch_options:[222,4,1,""]},"evennia.commands.default.building.CmdLink":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""]},"evennia.commands.default.building.CmdListCmdSets":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""]},"evennia.commands.default.building.CmdLock":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""]},"evennia.commands.default.building.CmdMvAttr":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""],switch_options:[222,4,1,""]},"evennia.commands.default.building.CmdName":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""]},"evennia.commands.default.building.CmdObjects":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""]},"evennia.commands.default.building.CmdOpen":{aliases:[222,4,1,""],create_exit:[222,3,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],new_obj_lockstring:[222,4,1,""],parse:[222,3,1,""],search_index_entry:[222,4,1,""]},"evennia.commands.default.building.CmdScripts":{aliases:[222,4,1,""],excluded_typeclass_paths:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""],switch_mapping:[222,4,1,""],switch_options:[222,4,1,""]},"evennia.commands.default.building.CmdSetAttribute":{aliases:[222,4,1,""],check_attr:[222,3,1,""],check_obj:[222,3,1,""],do_nested_lookup:[222,3,1,""],edit_handler:[222,3,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],nested_re:[222,4,1,""],not_found:[222,4,1,""],rm_attr:[222,3,1,""],search_for_obj:[222,3,1,""],search_index_entry:[222,4,1,""],set_attr:[222,3,1,""],split_nested_attr:[222,3,1,""],view_attr:[222,3,1,""]},"evennia.commands.default.building.CmdSetHome":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""]},"evennia.commands.default.building.CmdSetObjAlias":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""],switch_options:[222,4,1,""]},"evennia.commands.default.building.CmdSpawn":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""],switch_options:[222,4,1,""]},"evennia.commands.default.building.CmdTag":{aliases:[222,4,1,""],arg_regex:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],options:[222,4,1,""],search_index_entry:[222,4,1,""]},"evennia.commands.default.building.CmdTeleport":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],parse:[222,3,1,""],rhs_split:[222,4,1,""],search_index_entry:[222,4,1,""],switch_options:[222,4,1,""]},"evennia.commands.default.building.CmdTunnel":{aliases:[222,4,1,""],directions:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""],switch_options:[222,4,1,""]},"evennia.commands.default.building.CmdTypeclass":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""],switch_options:[222,4,1,""]},"evennia.commands.default.building.CmdUnLink":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],help_key:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""]},"evennia.commands.default.building.CmdWipe":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""]},"evennia.commands.default.building.ObjManipCommand":{aliases:[222,4,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],parse:[222,3,1,""],search_index_entry:[222,4,1,""]},"evennia.commands.default.cmdset_account":{AccountCmdSet:[223,1,1,""]},"evennia.commands.default.cmdset_account.AccountCmdSet":{at_cmdset_creation:[223,3,1,""],key:[223,4,1,""],path:[223,4,1,""],priority:[223,4,1,""]},"evennia.commands.default.cmdset_character":{CharacterCmdSet:[224,1,1,""]},"evennia.commands.default.cmdset_character.CharacterCmdSet":{at_cmdset_creation:[224,3,1,""],key:[224,4,1,""],path:[224,4,1,""],priority:[224,4,1,""]},"evennia.commands.default.cmdset_session":{SessionCmdSet:[225,1,1,""]},"evennia.commands.default.cmdset_session.SessionCmdSet":{at_cmdset_creation:[225,3,1,""],key:[225,4,1,""],path:[225,4,1,""],priority:[225,4,1,""]},"evennia.commands.default.cmdset_unloggedin":{UnloggedinCmdSet:[226,1,1,""]},"evennia.commands.default.cmdset_unloggedin.UnloggedinCmdSet":{at_cmdset_creation:[226,3,1,""],key:[226,4,1,""],path:[226,4,1,""],priority:[226,4,1,""]},"evennia.commands.default.comms":{CmdChannel:[227,1,1,""],CmdGrapevine2Chan:[227,1,1,""],CmdIRC2Chan:[227,1,1,""],CmdIRCStatus:[227,1,1,""],CmdObjectChannel:[227,1,1,""],CmdPage:[227,1,1,""],CmdRSS2Chan:[227,1,1,""]},"evennia.commands.default.comms.CmdChannel":{account_caller:[227,4,1,""],add_alias:[227,3,1,""],aliases:[227,4,1,""],ban_user:[227,3,1,""],boot_user:[227,3,1,""],channel_list_bans:[227,3,1,""],channel_list_who:[227,3,1,""],create_channel:[227,3,1,""],destroy_channel:[227,3,1,""],display_all_channels:[227,3,1,""],display_subbed_channels:[227,3,1,""],func:[227,3,1,""],get_channel_aliases:[227,3,1,""],get_channel_history:[227,3,1,""],help_category:[227,4,1,""],key:[227,4,1,""],list_channels:[227,3,1,""],lock_storage:[227,4,1,""],locks:[227,4,1,""],msg_channel:[227,3,1,""],mute_channel:[227,3,1,""],remove_alias:[227,3,1,""],search_channel:[227,3,1,""],search_index_entry:[227,4,1,""],set_desc:[227,3,1,""],set_lock:[227,3,1,""],sub_to_channel:[227,3,1,""],switch_options:[227,4,1,""],unban_user:[227,3,1,""],unmute_channel:[227,3,1,""],unset_lock:[227,3,1,""],unsub_from_channel:[227,3,1,""]},"evennia.commands.default.comms.CmdGrapevine2Chan":{aliases:[227,4,1,""],func:[227,3,1,""],help_category:[227,4,1,""],key:[227,4,1,""],lock_storage:[227,4,1,""],locks:[227,4,1,""],search_index_entry:[227,4,1,""],switch_options:[227,4,1,""]},"evennia.commands.default.comms.CmdIRC2Chan":{aliases:[227,4,1,""],func:[227,3,1,""],help_category:[227,4,1,""],key:[227,4,1,""],lock_storage:[227,4,1,""],locks:[227,4,1,""],search_index_entry:[227,4,1,""],switch_options:[227,4,1,""]},"evennia.commands.default.comms.CmdIRCStatus":{aliases:[227,4,1,""],func:[227,3,1,""],help_category:[227,4,1,""],key:[227,4,1,""],lock_storage:[227,4,1,""],locks:[227,4,1,""],search_index_entry:[227,4,1,""]},"evennia.commands.default.comms.CmdObjectChannel":{account_caller:[227,4,1,""],aliases:[227,4,1,""],help_category:[227,4,1,""],key:[227,4,1,""],lock_storage:[227,4,1,""],search_index_entry:[227,4,1,""]},"evennia.commands.default.comms.CmdPage":{account_caller:[227,4,1,""],aliases:[227,4,1,""],func:[227,3,1,""],help_category:[227,4,1,""],key:[227,4,1,""],lock_storage:[227,4,1,""],locks:[227,4,1,""],search_index_entry:[227,4,1,""],switch_options:[227,4,1,""]},"evennia.commands.default.comms.CmdRSS2Chan":{aliases:[227,4,1,""],func:[227,3,1,""],help_category:[227,4,1,""],key:[227,4,1,""],lock_storage:[227,4,1,""],locks:[227,4,1,""],search_index_entry:[227,4,1,""],switch_options:[227,4,1,""]},"evennia.commands.default.general":{CmdAccess:[228,1,1,""],CmdDrop:[228,1,1,""],CmdGet:[228,1,1,""],CmdGive:[228,1,1,""],CmdHome:[228,1,1,""],CmdInventory:[228,1,1,""],CmdLook:[228,1,1,""],CmdNick:[228,1,1,""],CmdPose:[228,1,1,""],CmdSay:[228,1,1,""],CmdSetDesc:[228,1,1,""],CmdWhisper:[228,1,1,""]},"evennia.commands.default.general.CmdAccess":{aliases:[228,4,1,""],arg_regex:[228,4,1,""],func:[228,3,1,""],help_category:[228,4,1,""],key:[228,4,1,""],lock_storage:[228,4,1,""],locks:[228,4,1,""],search_index_entry:[228,4,1,""]},"evennia.commands.default.general.CmdDrop":{aliases:[228,4,1,""],arg_regex:[228,4,1,""],func:[228,3,1,""],help_category:[228,4,1,""],key:[228,4,1,""],lock_storage:[228,4,1,""],locks:[228,4,1,""],search_index_entry:[228,4,1,""]},"evennia.commands.default.general.CmdGet":{aliases:[228,4,1,""],arg_regex:[228,4,1,""],func:[228,3,1,""],help_category:[228,4,1,""],key:[228,4,1,""],lock_storage:[228,4,1,""],locks:[228,4,1,""],search_index_entry:[228,4,1,""]},"evennia.commands.default.general.CmdGive":{aliases:[228,4,1,""],arg_regex:[228,4,1,""],func:[228,3,1,""],help_category:[228,4,1,""],key:[228,4,1,""],lock_storage:[228,4,1,""],locks:[228,4,1,""],rhs_split:[228,4,1,""],search_index_entry:[228,4,1,""]},"evennia.commands.default.general.CmdHome":{aliases:[228,4,1,""],arg_regex:[228,4,1,""],func:[228,3,1,""],help_category:[228,4,1,""],key:[228,4,1,""],lock_storage:[228,4,1,""],locks:[228,4,1,""],search_index_entry:[228,4,1,""]},"evennia.commands.default.general.CmdInventory":{aliases:[228,4,1,""],arg_regex:[228,4,1,""],func:[228,3,1,""],help_category:[228,4,1,""],key:[228,4,1,""],lock_storage:[228,4,1,""],locks:[228,4,1,""],search_index_entry:[228,4,1,""]},"evennia.commands.default.general.CmdLook":{aliases:[228,4,1,""],arg_regex:[228,4,1,""],func:[228,3,1,""],help_category:[228,4,1,""],key:[228,4,1,""],lock_storage:[228,4,1,""],locks:[228,4,1,""],search_index_entry:[228,4,1,""]},"evennia.commands.default.general.CmdNick":{aliases:[228,4,1,""],func:[228,3,1,""],help_category:[228,4,1,""],key:[228,4,1,""],lock_storage:[228,4,1,""],locks:[228,4,1,""],parse:[228,3,1,""],search_index_entry:[228,4,1,""],switch_options:[228,4,1,""]},"evennia.commands.default.general.CmdPose":{aliases:[228,4,1,""],arg_regex:[228,4,1,""],func:[228,3,1,""],help_category:[228,4,1,""],key:[228,4,1,""],lock_storage:[228,4,1,""],locks:[228,4,1,""],parse:[228,3,1,""],search_index_entry:[228,4,1,""]},"evennia.commands.default.general.CmdSay":{aliases:[228,4,1,""],arg_regex:[228,4,1,""],func:[228,3,1,""],help_category:[228,4,1,""],key:[228,4,1,""],lock_storage:[228,4,1,""],locks:[228,4,1,""],search_index_entry:[228,4,1,""]},"evennia.commands.default.general.CmdSetDesc":{aliases:[228,4,1,""],arg_regex:[228,4,1,""],func:[228,3,1,""],help_category:[228,4,1,""],key:[228,4,1,""],lock_storage:[228,4,1,""],locks:[228,4,1,""],search_index_entry:[228,4,1,""]},"evennia.commands.default.general.CmdWhisper":{aliases:[228,4,1,""],func:[228,3,1,""],help_category:[228,4,1,""],key:[228,4,1,""],lock_storage:[228,4,1,""],locks:[228,4,1,""],search_index_entry:[228,4,1,""]},"evennia.commands.default.help":{CmdHelp:[229,1,1,""],CmdSetHelp:[229,1,1,""]},"evennia.commands.default.help.CmdHelp":{aliases:[229,4,1,""],arg_regex:[229,4,1,""],can_list_topic:[229,3,1,""],can_read_topic:[229,3,1,""],clickable_topics:[229,4,1,""],collect_topics:[229,3,1,""],do_search:[229,3,1,""],format_help_entry:[229,3,1,""],format_help_index:[229,3,1,""],func:[229,3,1,""],help_category:[229,4,1,""],help_more:[229,4,1,""],index_category_clr:[229,4,1,""],index_topic_clr:[229,4,1,""],index_type_separator_clr:[229,4,1,""],key:[229,4,1,""],lock_storage:[229,4,1,""],locks:[229,4,1,""],msg_help:[229,3,1,""],parse:[229,3,1,""],return_cmdset:[229,4,1,""],search_index_entry:[229,4,1,""],strip_cmd_prefix:[229,3,1,""],subtopic_separator_char:[229,4,1,""],suggestion_cutoff:[229,4,1,""],suggestion_maxnum:[229,4,1,""]},"evennia.commands.default.help.CmdSetHelp":{aliases:[229,4,1,""],arg_regex:[229,4,1,""],func:[229,3,1,""],help_category:[229,4,1,""],key:[229,4,1,""],lock_storage:[229,4,1,""],locks:[229,4,1,""],parse:[229,3,1,""],search_index_entry:[229,4,1,""],switch_options:[229,4,1,""]},"evennia.commands.default.muxcommand":{MuxAccountCommand:[230,1,1,""],MuxCommand:[230,1,1,""]},"evennia.commands.default.muxcommand.MuxAccountCommand":{account_caller:[230,4,1,""],aliases:[230,4,1,""],help_category:[230,4,1,""],key:[230,4,1,""],lock_storage:[230,4,1,""],search_index_entry:[230,4,1,""]},"evennia.commands.default.muxcommand.MuxCommand":{aliases:[230,4,1,""],at_post_cmd:[230,3,1,""],at_pre_cmd:[230,3,1,""],func:[230,3,1,""],get_command_info:[230,3,1,""],has_perm:[230,3,1,""],help_category:[230,4,1,""],key:[230,4,1,""],lock_storage:[230,4,1,""],parse:[230,3,1,""],search_index_entry:[230,4,1,""]},"evennia.commands.default.syscommands":{SystemMultimatch:[231,1,1,""],SystemNoInput:[231,1,1,""],SystemNoMatch:[231,1,1,""]},"evennia.commands.default.syscommands.SystemMultimatch":{aliases:[231,4,1,""],func:[231,3,1,""],help_category:[231,4,1,""],key:[231,4,1,""],lock_storage:[231,4,1,""],locks:[231,4,1,""],search_index_entry:[231,4,1,""]},"evennia.commands.default.syscommands.SystemNoInput":{aliases:[231,4,1,""],func:[231,3,1,""],help_category:[231,4,1,""],key:[231,4,1,""],lock_storage:[231,4,1,""],locks:[231,4,1,""],search_index_entry:[231,4,1,""]},"evennia.commands.default.syscommands.SystemNoMatch":{aliases:[231,4,1,""],func:[231,3,1,""],help_category:[231,4,1,""],key:[231,4,1,""],lock_storage:[231,4,1,""],locks:[231,4,1,""],search_index_entry:[231,4,1,""]},"evennia.commands.default.system":{CmdAbout:[232,1,1,""],CmdAccounts:[232,1,1,""],CmdPy:[232,1,1,""],CmdReload:[232,1,1,""],CmdReset:[232,1,1,""],CmdServerLoad:[232,1,1,""],CmdService:[232,1,1,""],CmdShutdown:[232,1,1,""],CmdTasks:[232,1,1,""],CmdTickers:[232,1,1,""],CmdTime:[232,1,1,""]},"evennia.commands.default.system.CmdAbout":{aliases:[232,4,1,""],func:[232,3,1,""],help_category:[232,4,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],locks:[232,4,1,""],search_index_entry:[232,4,1,""]},"evennia.commands.default.system.CmdAccounts":{aliases:[232,4,1,""],func:[232,3,1,""],help_category:[232,4,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],locks:[232,4,1,""],search_index_entry:[232,4,1,""],switch_options:[232,4,1,""]},"evennia.commands.default.system.CmdPy":{aliases:[232,4,1,""],arg_regex:[232,4,1,""],func:[232,3,1,""],help_category:[232,4,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],locks:[232,4,1,""],search_index_entry:[232,4,1,""],switch_options:[232,4,1,""]},"evennia.commands.default.system.CmdReload":{aliases:[232,4,1,""],func:[232,3,1,""],help_category:[232,4,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],locks:[232,4,1,""],search_index_entry:[232,4,1,""]},"evennia.commands.default.system.CmdReset":{aliases:[232,4,1,""],func:[232,3,1,""],help_category:[232,4,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],locks:[232,4,1,""],search_index_entry:[232,4,1,""]},"evennia.commands.default.system.CmdServerLoad":{aliases:[232,4,1,""],func:[232,3,1,""],help_category:[232,4,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],locks:[232,4,1,""],search_index_entry:[232,4,1,""],switch_options:[232,4,1,""]},"evennia.commands.default.system.CmdService":{aliases:[232,4,1,""],func:[232,3,1,""],help_category:[232,4,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],locks:[232,4,1,""],search_index_entry:[232,4,1,""],switch_options:[232,4,1,""]},"evennia.commands.default.system.CmdShutdown":{aliases:[232,4,1,""],func:[232,3,1,""],help_category:[232,4,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],locks:[232,4,1,""],search_index_entry:[232,4,1,""]},"evennia.commands.default.system.CmdTasks":{aliases:[232,4,1,""],coll_date_func:[232,3,1,""],do_task_action:[232,3,1,""],func:[232,3,1,""],help_category:[232,4,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],locks:[232,4,1,""],search_index_entry:[232,4,1,""],switch_options:[232,4,1,""]},"evennia.commands.default.system.CmdTickers":{aliases:[232,4,1,""],func:[232,3,1,""],help_category:[232,4,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],locks:[232,4,1,""],search_index_entry:[232,4,1,""]},"evennia.commands.default.system.CmdTime":{aliases:[232,4,1,""],func:[232,3,1,""],help_category:[232,4,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],locks:[232,4,1,""],search_index_entry:[232,4,1,""]},"evennia.commands.default.tests":{CmdInterrupt:[233,1,1,""],TestAccount:[233,1,1,""],TestAdmin:[233,1,1,""],TestBatchProcess:[233,1,1,""],TestBuilding:[233,1,1,""],TestCmdTasks:[233,1,1,""],TestComms:[233,1,1,""],TestCommsChannel:[233,1,1,""],TestGeneral:[233,1,1,""],TestHelp:[233,1,1,""],TestInterruptCommand:[233,1,1,""],TestSystem:[233,1,1,""],TestSystemCommands:[233,1,1,""],TestUnconnectedCommand:[233,1,1,""],func_test_cmd_tasks:[233,5,1,""]},"evennia.commands.default.tests.CmdInterrupt":{aliases:[233,4,1,""],func:[233,3,1,""],help_category:[233,4,1,""],key:[233,4,1,""],lock_storage:[233,4,1,""],parse:[233,3,1,""],search_index_entry:[233,4,1,""]},"evennia.commands.default.tests.TestAccount":{test_char_create:[233,3,1,""],test_char_delete:[233,3,1,""],test_color_test:[233,3,1,""],test_ic:[233,3,1,""],test_ic__nonaccess:[233,3,1,""],test_ic__other_object:[233,3,1,""],test_ooc:[233,3,1,""],test_ooc_look:[233,3,1,""],test_option:[233,3,1,""],test_password:[233,3,1,""],test_quell:[233,3,1,""],test_quit:[233,3,1,""],test_sessions:[233,3,1,""],test_who:[233,3,1,""]},"evennia.commands.default.tests.TestAdmin":{test_ban:[233,3,1,""],test_emit:[233,3,1,""],test_force:[233,3,1,""],test_perm:[233,3,1,""],test_wall:[233,3,1,""]},"evennia.commands.default.tests.TestBatchProcess":{red_button:[233,4,1,""],test_batch_commands:[233,3,1,""]},"evennia.commands.default.tests.TestBuilding":{test_attribute_commands:[233,3,1,""],test_copy:[233,3,1,""],test_create:[233,3,1,""],test_desc:[233,3,1,""],test_desc_default_to_room:[233,3,1,""],test_destroy:[233,3,1,""],test_destroy_sequence:[233,3,1,""],test_dig:[233,3,1,""],test_do_nested_lookup:[233,3,1,""],test_empty_desc:[233,3,1,""],test_examine:[233,3,1,""],test_exit_commands:[233,3,1,""],test_find:[233,3,1,""],test_list_cmdsets:[233,3,1,""],test_lock:[233,3,1,""],test_name:[233,3,1,""],test_nested_attribute_commands:[233,3,1,""],test_script:[233,3,1,""],test_script_multi_delete:[233,3,1,""],test_set_home:[233,3,1,""],test_set_obj_alias:[233,3,1,""],test_spawn:[233,3,1,""],test_split_nested_attr:[233,3,1,""],test_tag:[233,3,1,""],test_teleport:[233,3,1,""],test_tunnel:[233,3,1,""],test_tunnel_exit_typeclass:[233,3,1,""],test_typeclass:[233,3,1,""]},"evennia.commands.default.tests.TestCmdTasks":{setUp:[233,3,1,""],tearDown:[233,3,1,""],test_active_task:[233,3,1,""],test_call:[233,3,1,""],test_cancel:[233,3,1,""],test_do_task:[233,3,1,""],test_func_name_manipulation:[233,3,1,""],test_misformed_command:[233,3,1,""],test_new_task_waiting_input:[233,3,1,""],test_no_input:[233,3,1,""],test_no_tasks:[233,3,1,""],test_pause_unpause:[233,3,1,""],test_persistent_task:[233,3,1,""],test_remove:[233,3,1,""],test_responce_of_yes:[233,3,1,""],test_task_complete_waiting_input:[233,3,1,""],test_wrong_func_name:[233,3,1,""]},"evennia.commands.default.tests.TestComms":{test_page:[233,3,1,""]},"evennia.commands.default.tests.TestCommsChannel":{setUp:[233,3,1,""],tearDown:[233,3,1,""],test_channel__alias__unalias:[233,3,1,""],test_channel__all:[233,3,1,""],test_channel__ban__unban:[233,3,1,""],test_channel__boot:[233,3,1,""],test_channel__create:[233,3,1,""],test_channel__desc:[233,3,1,""],test_channel__destroy:[233,3,1,""],test_channel__history:[233,3,1,""],test_channel__list:[233,3,1,""],test_channel__lock:[233,3,1,""],test_channel__msg:[233,3,1,""],test_channel__mute:[233,3,1,""],test_channel__noarg:[233,3,1,""],test_channel__sub:[233,3,1,""],test_channel__unlock:[233,3,1,""],test_channel__unmute:[233,3,1,""],test_channel__unsub:[233,3,1,""],test_channel__who:[233,3,1,""]},"evennia.commands.default.tests.TestGeneral":{test_access:[233,3,1,""],test_get_and_drop:[233,3,1,""],test_give:[233,3,1,""],test_home:[233,3,1,""],test_inventory:[233,3,1,""],test_look:[233,3,1,""],test_mux_command:[233,3,1,""],test_nick:[233,3,1,""],test_pose:[233,3,1,""],test_say:[233,3,1,""],test_whisper:[233,3,1,""]},"evennia.commands.default.tests.TestHelp":{maxDiff:[233,4,1,""],setUp:[233,3,1,""],tearDown:[233,3,1,""],test_help:[233,3,1,""],test_set_help:[233,3,1,""],test_subtopic_fetch:[233,4,1,""],test_subtopic_fetch_00_test:[233,3,1,""],test_subtopic_fetch_01_test_creating_extra_stuff:[233,3,1,""],test_subtopic_fetch_02_test_creating:[233,3,1,""],test_subtopic_fetch_03_test_extra:[233,3,1,""],test_subtopic_fetch_04_test_extra_subsubtopic:[233,3,1,""],test_subtopic_fetch_05_test_creating_extra_subsub:[233,3,1,""],test_subtopic_fetch_06_test_Something_else:[233,3,1,""],test_subtopic_fetch_07_test_More:[233,3,1,""],test_subtopic_fetch_08_test_More_Second_more:[233,3,1,""],test_subtopic_fetch_09_test_More_more:[233,3,1,""],test_subtopic_fetch_10_test_more_second_more_again:[233,3,1,""],test_subtopic_fetch_11_test_more_second_third:[233,3,1,""]},"evennia.commands.default.tests.TestInterruptCommand":{test_interrupt_command:[233,3,1,""]},"evennia.commands.default.tests.TestSystem":{test_about:[233,3,1,""],test_objects:[233,3,1,""],test_py:[233,3,1,""],test_scripts:[233,3,1,""],test_server_load:[233,3,1,""]},"evennia.commands.default.tests.TestSystemCommands":{test_multimatch:[233,3,1,""],test_simple_defaults:[233,3,1,""]},"evennia.commands.default.tests.TestUnconnectedCommand":{test_info_command:[233,3,1,""]},"evennia.commands.default.unloggedin":{CmdUnconnectedConnect:[234,1,1,""],CmdUnconnectedCreate:[234,1,1,""],CmdUnconnectedEncoding:[234,1,1,""],CmdUnconnectedHelp:[234,1,1,""],CmdUnconnectedInfo:[234,1,1,""],CmdUnconnectedLook:[234,1,1,""],CmdUnconnectedQuit:[234,1,1,""],CmdUnconnectedScreenreader:[234,1,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedConnect":{aliases:[234,4,1,""],arg_regex:[234,4,1,""],func:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],locks:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedCreate":{aliases:[234,4,1,""],arg_regex:[234,4,1,""],func:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],locks:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedEncoding":{aliases:[234,4,1,""],func:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],locks:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedHelp":{aliases:[234,4,1,""],func:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],locks:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedInfo":{aliases:[234,4,1,""],func:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],locks:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedLook":{aliases:[234,4,1,""],func:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],locks:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedQuit":{aliases:[234,4,1,""],func:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],locks:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedScreenreader":{aliases:[234,4,1,""],func:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.comms":{comms:[236,0,0,"-"],managers:[237,0,0,"-"],models:[238,0,0,"-"]},"evennia.comms.comms":{DefaultChannel:[236,1,1,""]},"evennia.comms.comms.DefaultChannel":{"delete":[236,3,1,""],DoesNotExist:[236,2,1,""],MultipleObjectsReturned:[236,2,1,""],access:[236,3,1,""],add_user_channel_alias:[236,3,1,""],at_channel_creation:[236,3,1,""],at_first_save:[236,3,1,""],at_init:[236,3,1,""],at_post_msg:[236,3,1,""],at_pre_msg:[236,3,1,""],ban:[236,3,1,""],banlist:[236,3,1,""],basetype_setup:[236,3,1,""],channel_msg_nick_pattern:[236,4,1,""],channel_msg_nick_replacement:[236,4,1,""],channel_prefix:[236,3,1,""],channel_prefix_string:[236,4,1,""],connect:[236,3,1,""],create:[236,3,1,""],disconnect:[236,3,1,""],distribute_message:[236,3,1,""],format_external:[236,3,1,""],format_message:[236,3,1,""],format_senders:[236,3,1,""],get_absolute_url:[236,3,1,""],get_log_filename:[236,3,1,""],has_connection:[236,3,1,""],log_file:[236,4,1,""],message_transform:[236,3,1,""],msg:[236,3,1,""],mute:[236,3,1,""],mutelist:[236,3,1,""],objects:[236,4,1,""],path:[236,4,1,""],pose_transform:[236,3,1,""],post_join_channel:[236,3,1,""],post_leave_channel:[236,3,1,""],post_send_message:[236,3,1,""],pre_join_channel:[236,3,1,""],pre_leave_channel:[236,3,1,""],pre_send_message:[236,3,1,""],remove_user_channel_alias:[236,3,1,""],send_to_online_only:[236,4,1,""],set_log_filename:[236,3,1,""],typename:[236,4,1,""],unban:[236,3,1,""],unmute:[236,3,1,""],web_get_admin_url:[236,3,1,""],web_get_create_url:[236,3,1,""],web_get_delete_url:[236,3,1,""],web_get_detail_url:[236,3,1,""],web_get_update_url:[236,3,1,""],wholist:[236,3,1,""]},"evennia.comms.managers":{ChannelDBManager:[237,1,1,""],ChannelManager:[237,1,1,""],CommError:[237,2,1,""],MsgManager:[237,1,1,""],identify_object:[237,5,1,""],to_object:[237,5,1,""]},"evennia.comms.managers.ChannelDBManager":{channel_search:[237,3,1,""],create_channel:[237,3,1,""],get_all_channels:[237,3,1,""],get_channel:[237,3,1,""],get_subscriptions:[237,3,1,""],search_channel:[237,3,1,""]},"evennia.comms.managers.MsgManager":{create_message:[237,3,1,""],get_message_by_id:[237,3,1,""],get_messages_by_receiver:[237,3,1,""],get_messages_by_sender:[237,3,1,""],identify_object:[237,3,1,""],message_search:[237,3,1,""],search_message:[237,3,1,""]},"evennia.comms.models":{ChannelDB:[238,1,1,""],Msg:[238,1,1,""],SubscriptionHandler:[238,1,1,""],TempMsg:[238,1,1,""]},"evennia.comms.models.ChannelDB":{DoesNotExist:[238,2,1,""],MultipleObjectsReturned:[238,2,1,""],db_account_subscriptions:[238,4,1,""],db_attributes:[238,4,1,""],db_date_created:[238,4,1,""],db_key:[238,4,1,""],db_lock_storage:[238,4,1,""],db_object_subscriptions:[238,4,1,""],db_tags:[238,4,1,""],db_typeclass_path:[238,4,1,""],get_next_by_db_date_created:[238,3,1,""],get_previous_by_db_date_created:[238,3,1,""],id:[238,4,1,""],objects:[238,4,1,""],path:[238,4,1,""],subscriptions:[238,4,1,""],typename:[238,4,1,""]},"evennia.comms.models.Msg":{DoesNotExist:[238,2,1,""],MultipleObjectsReturned:[238,2,1,""],access:[238,3,1,""],date_created:[238,3,1,""],db_date_created:[238,4,1,""],db_header:[238,4,1,""],db_hide_from_accounts:[238,4,1,""],db_hide_from_objects:[238,4,1,""],db_lock_storage:[238,4,1,""],db_message:[238,4,1,""],db_receiver_external:[238,4,1,""],db_receivers_accounts:[238,4,1,""],db_receivers_objects:[238,4,1,""],db_receivers_scripts:[238,4,1,""],db_sender_accounts:[238,4,1,""],db_sender_external:[238,4,1,""],db_sender_objects:[238,4,1,""],db_sender_scripts:[238,4,1,""],db_tags:[238,4,1,""],get_next_by_db_date_created:[238,3,1,""],get_previous_by_db_date_created:[238,3,1,""],header:[238,3,1,""],hide_from:[238,3,1,""],id:[238,4,1,""],lock_storage:[238,3,1,""],locks:[238,4,1,""],message:[238,3,1,""],objects:[238,4,1,""],path:[238,4,1,""],receiver_external:[238,3,1,""],receivers:[238,3,1,""],remove_receiver:[238,3,1,""],remove_sender:[238,3,1,""],sender_external:[238,3,1,""],senders:[238,3,1,""],tags:[238,4,1,""],typename:[238,4,1,""]},"evennia.comms.models.SubscriptionHandler":{__init__:[238,3,1,""],add:[238,3,1,""],all:[238,3,1,""],clear:[238,3,1,""],get:[238,3,1,""],has:[238,3,1,""],online:[238,3,1,""],remove:[238,3,1,""]},"evennia.comms.models.TempMsg":{__init__:[238,3,1,""],access:[238,3,1,""],locks:[238,4,1,""],remove_receiver:[238,3,1,""],remove_sender:[238,3,1,""]},"evennia.contrib":{base_systems:[240,0,0,"-"],full_systems:[275,0,0,"-"],game_systems:[285,0,0,"-"],grid:[318,0,0,"-"],rpg:[345,0,0,"-"],tutorials:[359,0,0,"-"],utils:[378,0,0,"-"]},"evennia.contrib.base_systems":{awsstorage:[241,0,0,"-"],building_menu:[244,0,0,"-"],color_markups:[247,0,0,"-"],custom_gametime:[250,0,0,"-"],email_login:[253,0,0,"-"],mux_comms_cmds:[269,0,0,"-"],unixcommand:[272,0,0,"-"]},"evennia.contrib.base_systems.awsstorage":{tests:[243,0,0,"-"]},"evennia.contrib.base_systems.awsstorage.tests":{S3Boto3StorageTests:[243,1,1,""],S3Boto3TestCase:[243,1,1,""]},"evennia.contrib.base_systems.awsstorage.tests.S3Boto3StorageTests":{test_auto_creating_bucket:[243,3,1,""],test_auto_creating_bucket_with_acl:[243,3,1,""],test_clean_name:[243,3,1,""],test_clean_name_normalize:[243,3,1,""],test_clean_name_trailing_slash:[243,3,1,""],test_clean_name_windows:[243,3,1,""],test_compress_content_len:[243,3,1,""],test_connection_threading:[243,3,1,""],test_content_type:[243,3,1,""],test_generated_url_is_encoded:[243,3,1,""],test_location_leading_slash:[243,3,1,""],test_override_class_variable:[243,3,1,""],test_override_init_argument:[243,3,1,""],test_pickle_with_bucket:[243,3,1,""],test_pickle_without_bucket:[243,3,1,""],test_special_characters:[243,3,1,""],test_storage_delete:[243,3,1,""],test_storage_exists:[243,3,1,""],test_storage_exists_doesnt_create_bucket:[243,3,1,""],test_storage_exists_false:[243,3,1,""],test_storage_listdir_base:[243,3,1,""],test_storage_listdir_subdir:[243,3,1,""],test_storage_mtime:[243,3,1,""],test_storage_open_no_overwrite_existing:[243,3,1,""],test_storage_open_no_write:[243,3,1,""],test_storage_open_write:[243,3,1,""],test_storage_save:[243,3,1,""],test_storage_save_gzip:[243,3,1,""],test_storage_save_gzip_twice:[243,3,1,""],test_storage_save_gzipped:[243,3,1,""],test_storage_save_with_acl:[243,3,1,""],test_storage_size:[243,3,1,""],test_storage_url:[243,3,1,""],test_storage_url_slashes:[243,3,1,""],test_storage_write_beyond_buffer_size:[243,3,1,""],test_strip_signing_parameters:[243,3,1,""]},"evennia.contrib.base_systems.awsstorage.tests.S3Boto3TestCase":{setUp:[243,3,1,""]},"evennia.contrib.base_systems.building_menu":{building_menu:[245,0,0,"-"],tests:[246,0,0,"-"]},"evennia.contrib.base_systems.building_menu.building_menu":{BuildingMenu:[245,1,1,""],BuildingMenuCmdSet:[245,1,1,""],Choice:[245,1,1,""],CmdNoInput:[245,1,1,""],CmdNoMatch:[245,1,1,""],GenericBuildingCmd:[245,1,1,""],GenericBuildingMenu:[245,1,1,""],menu_edit:[245,5,1,""],menu_quit:[245,5,1,""],menu_setattr:[245,5,1,""]},"evennia.contrib.base_systems.building_menu.building_menu.BuildingMenu":{__init__:[245,3,1,""],add_choice:[245,3,1,""],add_choice_edit:[245,3,1,""],add_choice_quit:[245,3,1,""],close:[245,3,1,""],current_choice:[245,3,1,""],display:[245,3,1,""],display_choice:[245,3,1,""],display_title:[245,3,1,""],init:[245,3,1,""],joker_key:[245,4,1,""],keys_go_back:[245,4,1,""],min_shortcut:[245,4,1,""],move:[245,3,1,""],open:[245,3,1,""],open_parent_menu:[245,3,1,""],open_submenu:[245,3,1,""],relevant_choices:[245,3,1,""],restore:[245,3,1,""],sep_keys:[245,4,1,""]},"evennia.contrib.base_systems.building_menu.building_menu.BuildingMenuCmdSet":{at_cmdset_creation:[245,3,1,""],key:[245,4,1,""],path:[245,4,1,""],priority:[245,4,1,""]},"evennia.contrib.base_systems.building_menu.building_menu.Choice":{__init__:[245,3,1,""],enter:[245,3,1,""],format_text:[245,3,1,""],keys:[245,3,1,""],leave:[245,3,1,""],nomatch:[245,3,1,""]},"evennia.contrib.base_systems.building_menu.building_menu.CmdNoInput":{__init__:[245,3,1,""],aliases:[245,4,1,""],func:[245,3,1,""],help_category:[245,4,1,""],key:[245,4,1,""],lock_storage:[245,4,1,""],locks:[245,4,1,""],search_index_entry:[245,4,1,""]},"evennia.contrib.base_systems.building_menu.building_menu.CmdNoMatch":{__init__:[245,3,1,""],aliases:[245,4,1,""],func:[245,3,1,""],help_category:[245,4,1,""],key:[245,4,1,""],lock_storage:[245,4,1,""],locks:[245,4,1,""],search_index_entry:[245,4,1,""]},"evennia.contrib.base_systems.building_menu.building_menu.GenericBuildingCmd":{aliases:[245,4,1,""],func:[245,3,1,""],help_category:[245,4,1,""],key:[245,4,1,""],lock_storage:[245,4,1,""],search_index_entry:[245,4,1,""]},"evennia.contrib.base_systems.building_menu.building_menu.GenericBuildingMenu":{init:[245,3,1,""]},"evennia.contrib.base_systems.building_menu.tests":{Submenu:[246,1,1,""],TestBuildingMenu:[246,1,1,""]},"evennia.contrib.base_systems.building_menu.tests.Submenu":{init:[246,3,1,""]},"evennia.contrib.base_systems.building_menu.tests.TestBuildingMenu":{setUp:[246,3,1,""],test_add_choice_without_key:[246,3,1,""],test_callbacks:[246,3,1,""],test_multi_level:[246,3,1,""],test_quit:[246,3,1,""],test_setattr:[246,3,1,""],test_submenu:[246,3,1,""]},"evennia.contrib.base_systems.color_markups":{color_markups:[248,0,0,"-"],tests:[249,0,0,"-"]},"evennia.contrib.base_systems.color_markups.tests":{TestColorMarkup:[249,1,1,""]},"evennia.contrib.base_systems.color_markups.tests.TestColorMarkup":{test_curly_markup:[249,3,1,""],test_mux_markup:[249,3,1,""]},"evennia.contrib.base_systems.custom_gametime":{custom_gametime:[251,0,0,"-"],tests:[252,0,0,"-"]},"evennia.contrib.base_systems.custom_gametime.custom_gametime":{GametimeScript:[251,1,1,""],custom_gametime:[251,5,1,""],gametime_to_realtime:[251,5,1,""],real_seconds_until:[251,5,1,""],realtime_to_gametime:[251,5,1,""],schedule:[251,5,1,""],time_to_tuple:[251,5,1,""]},"evennia.contrib.base_systems.custom_gametime.custom_gametime.GametimeScript":{DoesNotExist:[251,2,1,""],MultipleObjectsReturned:[251,2,1,""],at_repeat:[251,3,1,""],at_script_creation:[251,3,1,""],path:[251,4,1,""],typename:[251,4,1,""]},"evennia.contrib.base_systems.custom_gametime.tests":{TestCustomGameTime:[252,1,1,""]},"evennia.contrib.base_systems.custom_gametime.tests.TestCustomGameTime":{tearDown:[252,3,1,""],test_custom_gametime:[252,3,1,""],test_gametime_to_realtime:[252,3,1,""],test_real_seconds_until:[252,3,1,""],test_realtime_to_gametime:[252,3,1,""],test_schedule:[252,3,1,""],test_time_to_tuple:[252,3,1,""]},"evennia.contrib.base_systems.email_login":{connection_screens:[254,0,0,"-"],email_login:[255,0,0,"-"],tests:[256,0,0,"-"]},"evennia.contrib.base_systems.email_login.email_login":{CmdUnconnectedConnect:[255,1,1,""],CmdUnconnectedCreate:[255,1,1,""],CmdUnconnectedHelp:[255,1,1,""],CmdUnconnectedLook:[255,1,1,""],CmdUnconnectedQuit:[255,1,1,""]},"evennia.contrib.base_systems.email_login.email_login.CmdUnconnectedConnect":{aliases:[255,4,1,""],func:[255,3,1,""],help_category:[255,4,1,""],key:[255,4,1,""],lock_storage:[255,4,1,""],locks:[255,4,1,""],search_index_entry:[255,4,1,""]},"evennia.contrib.base_systems.email_login.email_login.CmdUnconnectedCreate":{aliases:[255,4,1,""],func:[255,3,1,""],help_category:[255,4,1,""],key:[255,4,1,""],lock_storage:[255,4,1,""],locks:[255,4,1,""],parse:[255,3,1,""],search_index_entry:[255,4,1,""]},"evennia.contrib.base_systems.email_login.email_login.CmdUnconnectedHelp":{aliases:[255,4,1,""],func:[255,3,1,""],help_category:[255,4,1,""],key:[255,4,1,""],lock_storage:[255,4,1,""],locks:[255,4,1,""],search_index_entry:[255,4,1,""]},"evennia.contrib.base_systems.email_login.email_login.CmdUnconnectedLook":{aliases:[255,4,1,""],func:[255,3,1,""],help_category:[255,4,1,""],key:[255,4,1,""],lock_storage:[255,4,1,""],locks:[255,4,1,""],search_index_entry:[255,4,1,""]},"evennia.contrib.base_systems.email_login.email_login.CmdUnconnectedQuit":{aliases:[255,4,1,""],func:[255,3,1,""],help_category:[255,4,1,""],key:[255,4,1,""],lock_storage:[255,4,1,""],locks:[255,4,1,""],search_index_entry:[255,4,1,""]},"evennia.contrib.base_systems.email_login.tests":{TestEmailLogin:[256,1,1,""]},"evennia.contrib.base_systems.email_login.tests.TestEmailLogin":{test_connect:[256,3,1,""],test_quit:[256,3,1,""],test_unconnectedhelp:[256,3,1,""],test_unconnectedlook:[256,3,1,""]},"evennia.contrib.base_systems.ingame_python":{callbackhandler:[258,0,0,"-"],commands:[259,0,0,"-"],eventfuncs:[260,0,0,"-"],scripts:[261,0,0,"-"],tests:[262,0,0,"-"],utils:[264,0,0,"-"]},"evennia.contrib.base_systems.ingame_python.callbackhandler":{Callback:[258,1,1,""],CallbackHandler:[258,1,1,""]},"evennia.contrib.base_systems.ingame_python.callbackhandler.Callback":{author:[258,4,1,""],code:[258,4,1,""],created_on:[258,4,1,""],name:[258,4,1,""],number:[258,4,1,""],obj:[258,4,1,""],parameters:[258,4,1,""],updated_by:[258,4,1,""],updated_on:[258,4,1,""],valid:[258,4,1,""]},"evennia.contrib.base_systems.ingame_python.callbackhandler.CallbackHandler":{__init__:[258,3,1,""],add:[258,3,1,""],all:[258,3,1,""],call:[258,3,1,""],edit:[258,3,1,""],format_callback:[258,3,1,""],get:[258,3,1,""],get_variable:[258,3,1,""],remove:[258,3,1,""],script:[258,4,1,""]},"evennia.contrib.base_systems.ingame_python.commands":{CmdCallback:[259,1,1,""]},"evennia.contrib.base_systems.ingame_python.commands.CmdCallback":{accept_callback:[259,3,1,""],add_callback:[259,3,1,""],aliases:[259,4,1,""],del_callback:[259,3,1,""],edit_callback:[259,3,1,""],func:[259,3,1,""],get_help:[259,3,1,""],help_category:[259,4,1,""],key:[259,4,1,""],list_callbacks:[259,3,1,""],list_tasks:[259,3,1,""],lock_storage:[259,4,1,""],locks:[259,4,1,""],search_index_entry:[259,4,1,""]},"evennia.contrib.base_systems.ingame_python.eventfuncs":{call_event:[260,5,1,""],deny:[260,5,1,""],get:[260,5,1,""]},"evennia.contrib.base_systems.ingame_python.scripts":{EventHandler:[261,1,1,""],TimeEventScript:[261,1,1,""],complete_task:[261,5,1,""]},"evennia.contrib.base_systems.ingame_python.scripts.EventHandler":{DoesNotExist:[261,2,1,""],MultipleObjectsReturned:[261,2,1,""],accept_callback:[261,3,1,""],add_callback:[261,3,1,""],add_event:[261,3,1,""],at_script_creation:[261,3,1,""],at_server_start:[261,3,1,""],call:[261,3,1,""],del_callback:[261,3,1,""],edit_callback:[261,3,1,""],get_callbacks:[261,3,1,""],get_events:[261,3,1,""],get_variable:[261,3,1,""],handle_error:[261,3,1,""],path:[261,4,1,""],set_task:[261,3,1,""],typename:[261,4,1,""]},"evennia.contrib.base_systems.ingame_python.scripts.TimeEventScript":{DoesNotExist:[261,2,1,""],MultipleObjectsReturned:[261,2,1,""],at_repeat:[261,3,1,""],at_script_creation:[261,3,1,""],path:[261,4,1,""],typename:[261,4,1,""]},"evennia.contrib.base_systems.ingame_python.tests":{TestCmdCallback:[262,1,1,""],TestDefaultCallbacks:[262,1,1,""],TestEventHandler:[262,1,1,""]},"evennia.contrib.base_systems.ingame_python.tests.TestCmdCallback":{setUp:[262,3,1,""],tearDown:[262,3,1,""],test_accept:[262,3,1,""],test_add:[262,3,1,""],test_del:[262,3,1,""],test_list:[262,3,1,""],test_lock:[262,3,1,""]},"evennia.contrib.base_systems.ingame_python.tests.TestDefaultCallbacks":{setUp:[262,3,1,""],tearDown:[262,3,1,""],test_exit:[262,3,1,""]},"evennia.contrib.base_systems.ingame_python.tests.TestEventHandler":{setUp:[262,3,1,""],tearDown:[262,3,1,""],test_accept:[262,3,1,""],test_add_validation:[262,3,1,""],test_call:[262,3,1,""],test_del:[262,3,1,""],test_edit:[262,3,1,""],test_edit_validation:[262,3,1,""],test_handler:[262,3,1,""],test_start:[262,3,1,""]},"evennia.contrib.base_systems.ingame_python.utils":{InterruptEvent:[264,2,1,""],get_event_handler:[264,5,1,""],get_next_wait:[264,5,1,""],keyword_event:[264,5,1,""],phrase_event:[264,5,1,""],register_events:[264,5,1,""],time_event:[264,5,1,""]},"evennia.contrib.base_systems.mux_comms_cmds":{mux_comms_cmds:[270,0,0,"-"],tests:[271,0,0,"-"]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds":{CmdAddCom:[270,1,1,""],CmdAllCom:[270,1,1,""],CmdCBoot:[270,1,1,""],CmdCWho:[270,1,1,""],CmdCdesc:[270,1,1,""],CmdCdestroy:[270,1,1,""],CmdChannelCreate:[270,1,1,""],CmdClock:[270,1,1,""],CmdDelCom:[270,1,1,""],CmdSetLegacyComms:[270,1,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdAddCom":{account_caller:[270,4,1,""],aliases:[270,4,1,""],func:[270,3,1,""],help_category:[270,4,1,""],key:[270,4,1,""],lock_storage:[270,4,1,""],locks:[270,4,1,""],search_index_entry:[270,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdAllCom":{account_caller:[270,4,1,""],aliases:[270,4,1,""],func:[270,3,1,""],help_category:[270,4,1,""],key:[270,4,1,""],lock_storage:[270,4,1,""],locks:[270,4,1,""],search_index_entry:[270,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdCBoot":{account_caller:[270,4,1,""],aliases:[270,4,1,""],func:[270,3,1,""],help_category:[270,4,1,""],key:[270,4,1,""],lock_storage:[270,4,1,""],locks:[270,4,1,""],search_index_entry:[270,4,1,""],switch_options:[270,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdCWho":{account_caller:[270,4,1,""],aliases:[270,4,1,""],func:[270,3,1,""],help_category:[270,4,1,""],key:[270,4,1,""],lock_storage:[270,4,1,""],locks:[270,4,1,""],search_index_entry:[270,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdCdesc":{account_caller:[270,4,1,""],aliases:[270,4,1,""],func:[270,3,1,""],help_category:[270,4,1,""],key:[270,4,1,""],lock_storage:[270,4,1,""],locks:[270,4,1,""],search_index_entry:[270,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdCdestroy":{account_caller:[270,4,1,""],aliases:[270,4,1,""],func:[270,3,1,""],help_category:[270,4,1,""],key:[270,4,1,""],lock_storage:[270,4,1,""],locks:[270,4,1,""],search_index_entry:[270,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdChannelCreate":{account_caller:[270,4,1,""],aliases:[270,4,1,""],func:[270,3,1,""],help_category:[270,4,1,""],key:[270,4,1,""],lock_storage:[270,4,1,""],locks:[270,4,1,""],search_index_entry:[270,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdClock":{account_caller:[270,4,1,""],aliases:[270,4,1,""],func:[270,3,1,""],help_category:[270,4,1,""],key:[270,4,1,""],lock_storage:[270,4,1,""],locks:[270,4,1,""],search_index_entry:[270,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdDelCom":{account_caller:[270,4,1,""],aliases:[270,4,1,""],func:[270,3,1,""],help_category:[270,4,1,""],key:[270,4,1,""],lock_storage:[270,4,1,""],locks:[270,4,1,""],search_index_entry:[270,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdSetLegacyComms":{at_cmdset_createion:[270,3,1,""],path:[270,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.tests":{TestLegacyMuxComms:[271,1,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.tests.TestLegacyMuxComms":{setUp:[271,3,1,""],test_all_com:[271,3,1,""],test_cboot:[271,3,1,""],test_cdesc:[271,3,1,""],test_cdestroy:[271,3,1,""],test_clock:[271,3,1,""],test_cwho:[271,3,1,""],test_toggle_com:[271,3,1,""]},"evennia.contrib.base_systems.unixcommand":{tests:[273,0,0,"-"],unixcommand:[274,0,0,"-"]},"evennia.contrib.base_systems.unixcommand.tests":{CmdDummy:[273,1,1,""],TestUnixCommand:[273,1,1,""]},"evennia.contrib.base_systems.unixcommand.tests.CmdDummy":{aliases:[273,4,1,""],func:[273,3,1,""],help_category:[273,4,1,""],init_parser:[273,3,1,""],key:[273,4,1,""],lock_storage:[273,4,1,""],search_index_entry:[273,4,1,""]},"evennia.contrib.base_systems.unixcommand.tests.TestUnixCommand":{test_failure:[273,3,1,""],test_success:[273,3,1,""]},"evennia.contrib.base_systems.unixcommand.unixcommand":{HelpAction:[274,1,1,""],ParseError:[274,2,1,""],UnixCommand:[274,1,1,""],UnixCommandParser:[274,1,1,""]},"evennia.contrib.base_systems.unixcommand.unixcommand.UnixCommand":{__init__:[274,3,1,""],aliases:[274,4,1,""],func:[274,3,1,""],get_help:[274,3,1,""],help_category:[274,4,1,""],init_parser:[274,3,1,""],key:[274,4,1,""],lock_storage:[274,4,1,""],parse:[274,3,1,""],search_index_entry:[274,4,1,""]},"evennia.contrib.base_systems.unixcommand.unixcommand.UnixCommandParser":{__init__:[274,3,1,""],format_help:[274,3,1,""],format_usage:[274,3,1,""],print_help:[274,3,1,""],print_usage:[274,3,1,""]},"evennia.contrib.full_systems":{evscaperoom:[276,0,0,"-"]},"evennia.contrib.full_systems.evscaperoom":{commands:[277,0,0,"-"],menu:[278,0,0,"-"],objects:[279,0,0,"-"],room:[280,0,0,"-"],scripts:[281,0,0,"-"],state:[282,0,0,"-"],tests:[283,0,0,"-"],utils:[284,0,0,"-"]},"evennia.contrib.full_systems.evscaperoom.commands":{CmdCreateObj:[277,1,1,""],CmdEmote:[277,1,1,""],CmdEvscapeRoom:[277,1,1,""],CmdEvscapeRoomStart:[277,1,1,""],CmdFocus:[277,1,1,""],CmdFocusInteraction:[277,1,1,""],CmdGet:[277,1,1,""],CmdGiveUp:[277,1,1,""],CmdHelp:[277,1,1,""],CmdJumpState:[277,1,1,""],CmdLook:[277,1,1,""],CmdOptions:[277,1,1,""],CmdRerouter:[277,1,1,""],CmdSetEvScapeRoom:[277,1,1,""],CmdSetFlag:[277,1,1,""],CmdSpeak:[277,1,1,""],CmdStand:[277,1,1,""],CmdWho:[277,1,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdCreateObj":{aliases:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],locks:[277,4,1,""],obj1_search:[277,4,1,""],obj2_search:[277,4,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdEmote":{aliases:[277,4,1,""],arg_regex:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],room_replace:[277,3,1,""],search_index_entry:[277,4,1,""],you_replace:[277,3,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdEvscapeRoom":{aliases:[277,4,1,""],arg_regex:[277,4,1,""],focus:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],obj1_search:[277,4,1,""],obj2_search:[277,4,1,""],parse:[277,3,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdEvscapeRoomStart":{aliases:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdFocus":{aliases:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],obj1_search:[277,4,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdFocusInteraction":{aliases:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],obj1_search:[277,4,1,""],obj2_search:[277,4,1,""],parse:[277,3,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdGet":{aliases:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdGiveUp":{aliases:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdHelp":{aliases:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdJumpState":{aliases:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],locks:[277,4,1,""],obj1_search:[277,4,1,""],obj2_search:[277,4,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdLook":{aliases:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],obj1_search:[277,4,1,""],obj2_search:[277,4,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdOptions":{aliases:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdRerouter":{aliases:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdSetEvScapeRoom":{at_cmdset_creation:[277,3,1,""],path:[277,4,1,""],priority:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdSetFlag":{aliases:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],locks:[277,4,1,""],obj1_search:[277,4,1,""],obj2_search:[277,4,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdSpeak":{aliases:[277,4,1,""],arg_regex:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdStand":{aliases:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdWho":{aliases:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],obj1_search:[277,4,1,""],obj2_search:[277,4,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.menu":{EvscaperoomMenu:[278,1,1,""],OptionsMenu:[278,1,1,""],node_create_room:[278,5,1,""],node_join_room:[278,5,1,""],node_options:[278,5,1,""],node_quit:[278,5,1,""],node_set_desc:[278,5,1,""],run_evscaperoom_menu:[278,5,1,""],run_option_menu:[278,5,1,""]},"evennia.contrib.full_systems.evscaperoom.menu.EvscaperoomMenu":{node_border_char:[278,4,1,""],nodetext_formatter:[278,3,1,""],options_formatter:[278,3,1,""]},"evennia.contrib.full_systems.evscaperoom.menu.OptionsMenu":{node_formatter:[278,3,1,""]},"evennia.contrib.full_systems.evscaperoom.objects":{BaseApplicable:[279,1,1,""],BaseConsumable:[279,1,1,""],BasePositionable:[279,1,1,""],Climbable:[279,1,1,""],CodeInput:[279,1,1,""],Combinable:[279,1,1,""],Drinkable:[279,1,1,""],Edible:[279,1,1,""],EvscaperoomObject:[279,1,1,""],Feelable:[279,1,1,""],HasButtons:[279,1,1,""],IndexReadable:[279,1,1,""],Insertable:[279,1,1,""],Kneelable:[279,1,1,""],Liable:[279,1,1,""],Listenable:[279,1,1,""],Mixable:[279,1,1,""],Movable:[279,1,1,""],Openable:[279,1,1,""],Positionable:[279,1,1,""],Readable:[279,1,1,""],Rotatable:[279,1,1,""],Sittable:[279,1,1,""],Smellable:[279,1,1,""],Usable:[279,1,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.BaseApplicable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_apply:[279,3,1,""],at_cannot_apply:[279,3,1,""],handle_apply:[279,3,1,""],path:[279,4,1,""],target_flag:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.BaseConsumable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_already_consumed:[279,3,1,""],at_consume:[279,3,1,""],consume_flag:[279,4,1,""],handle_consume:[279,3,1,""],has_consumed:[279,3,1,""],one_consume_only:[279,4,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.BasePositionable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_again_position:[279,3,1,""],at_cannot_position:[279,3,1,""],at_object_creation:[279,3,1,""],at_position:[279,3,1,""],handle_position:[279,3,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Climbable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_focus_climb:[279,3,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.CodeInput":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_code_correct:[279,3,1,""],at_code_incorrect:[279,3,1,""],at_focus_code:[279,3,1,""],at_no_code:[279,3,1,""],case_insensitive:[279,4,1,""],code:[279,4,1,""],code_hint:[279,4,1,""],get_cmd_signatures:[279,3,1,""],infinitely_locked:[279,4,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Combinable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_apply:[279,3,1,""],at_cannot_apply:[279,3,1,""],at_focus_combine:[279,3,1,""],destroy_components:[279,4,1,""],get_cmd_signatures:[279,3,1,""],new_create_dict:[279,4,1,""],path:[279,4,1,""],target_flag:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Drinkable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_already_consumed:[279,3,1,""],at_consume:[279,3,1,""],at_focus_drink:[279,3,1,""],at_focus_sip:[279,3,1,""],consume_flag:[279,4,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Edible":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_focus_eat:[279,3,1,""],consume_flag:[279,4,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.EvscaperoomObject":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],action_prepositions:[279,4,1,""],at_focus:[279,3,1,""],at_object_creation:[279,3,1,""],at_speech:[279,3,1,""],at_unfocus:[279,3,1,""],check_character_flag:[279,3,1,""],check_flag:[279,3,1,""],get_cmd_signatures:[279,3,1,""],get_help:[279,3,1,""],get_position:[279,3,1,""],get_short_desc:[279,3,1,""],msg_char:[279,3,1,""],msg_room:[279,3,1,""],msg_system:[279,3,1,""],next_state:[279,3,1,""],parse:[279,3,1,""],path:[279,4,1,""],position_prep_map:[279,4,1,""],return_appearance:[279,3,1,""],room:[279,3,1,""],roomstate:[279,3,1,""],set_character_flag:[279,3,1,""],set_flag:[279,3,1,""],set_position:[279,3,1,""],tagcategory:[279,3,1,""],typename:[279,4,1,""],unset_character_flag:[279,3,1,""],unset_flag:[279,3,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Feelable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_focus_feel:[279,3,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.HasButtons":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_focus_press:[279,3,1,""],at_focus_push:[279,3,1,""],at_green_button:[279,3,1,""],at_nomatch:[279,3,1,""],at_red_button:[279,3,1,""],buttons:[279,4,1,""],get_cmd_signatures:[279,3,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.IndexReadable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_cannot_read:[279,3,1,""],at_focus_read:[279,3,1,""],at_read:[279,3,1,""],get_cmd_signatures:[279,3,1,""],index:[279,4,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Insertable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_apply:[279,3,1,""],at_cannot_apply:[279,3,1,""],at_focus_insert:[279,3,1,""],get_cmd_signatures:[279,3,1,""],path:[279,4,1,""],target_flag:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Kneelable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_focus_kneel:[279,3,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Liable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_focus_lie:[279,3,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Listenable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_focus_listen:[279,3,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Mixable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_mix:[279,3,1,""],at_mix_failure:[279,3,1,""],at_mix_success:[279,3,1,""],at_object_creation:[279,3,1,""],check_mixture:[279,3,1,""],handle_mix:[279,3,1,""],ingredient_recipe:[279,4,1,""],mixer_flag:[279,4,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Movable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_already_moved:[279,3,1,""],at_cannot_move:[279,3,1,""],at_focus_move:[279,3,1,""],at_focus_push:[279,3,1,""],at_focus_shove:[279,3,1,""],at_left:[279,3,1,""],at_object_creation:[279,3,1,""],at_right:[279,3,1,""],get_cmd_signatures:[279,3,1,""],move_positions:[279,4,1,""],path:[279,4,1,""],start_position:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Openable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_already_closed:[279,3,1,""],at_already_open:[279,3,1,""],at_close:[279,3,1,""],at_focus_close:[279,3,1,""],at_focus_open:[279,3,1,""],at_locked:[279,3,1,""],at_object_creation:[279,3,1,""],at_open:[279,3,1,""],open_flag:[279,4,1,""],path:[279,4,1,""],start_open:[279,4,1,""],typename:[279,4,1,""],unlock_flag:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Positionable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],get_cmd_signatures:[279,3,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Readable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_cannot_read:[279,3,1,""],at_focus_read:[279,3,1,""],at_object_creation:[279,3,1,""],at_read:[279,3,1,""],path:[279,4,1,""],read_flag:[279,4,1,""],start_readable:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Rotatable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_cannot_rotate:[279,3,1,""],at_focus_rotate:[279,3,1,""],at_focus_turn:[279,3,1,""],at_object_creation:[279,3,1,""],at_rotate:[279,3,1,""],path:[279,4,1,""],rotate_flag:[279,4,1,""],start_rotatable:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Sittable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_focus_sit:[279,3,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Smellable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_focus_smell:[279,3,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Usable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_apply:[279,3,1,""],at_cannot_apply:[279,3,1,""],at_focus_use:[279,3,1,""],path:[279,4,1,""],target_flag:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.room":{EvscapeRoom:[280,1,1,""]},"evennia.contrib.full_systems.evscaperoom.room.EvscapeRoom":{"delete":[280,3,1,""],DoesNotExist:[280,2,1,""],MultipleObjectsReturned:[280,2,1,""],achievement:[280,3,1,""],at_object_creation:[280,3,1,""],at_object_leave:[280,3,1,""],at_object_receive:[280,3,1,""],character_cleanup:[280,3,1,""],character_exit:[280,3,1,""],check_flag:[280,3,1,""],check_perm:[280,3,1,""],get_all_characters:[280,3,1,""],log:[280,3,1,""],path:[280,4,1,""],progress:[280,3,1,""],return_appearance:[280,3,1,""],score:[280,3,1,""],set_flag:[280,3,1,""],state:[280,3,1,""],statehandler:[280,4,1,""],tag_all_characters:[280,3,1,""],tag_character:[280,3,1,""],typename:[280,4,1,""],unset_flag:[280,3,1,""]},"evennia.contrib.full_systems.evscaperoom.scripts":{CleanupScript:[281,1,1,""]},"evennia.contrib.full_systems.evscaperoom.scripts.CleanupScript":{DoesNotExist:[281,2,1,""],MultipleObjectsReturned:[281,2,1,""],at_repeat:[281,3,1,""],at_script_creation:[281,3,1,""],path:[281,4,1,""],typename:[281,4,1,""]},"evennia.contrib.full_systems.evscaperoom.state":{BaseState:[282,1,1,""],StateHandler:[282,1,1,""]},"evennia.contrib.full_systems.evscaperoom.state.BaseState":{__init__:[282,3,1,""],character_enters:[282,3,1,""],character_leaves:[282,3,1,""],cinematic:[282,3,1,""],clean:[282,3,1,""],create_object:[282,3,1,""],get_hint:[282,3,1,""],get_object:[282,3,1,""],hints:[282,4,1,""],init:[282,3,1,""],msg:[282,3,1,""],next:[282,3,1,""],next_state:[282,4,1,""]},"evennia.contrib.full_systems.evscaperoom.state.StateHandler":{__init__:[282,3,1,""],init_state:[282,3,1,""],load_state:[282,3,1,""],next_state:[282,3,1,""]},"evennia.contrib.full_systems.evscaperoom.tests":{TestEvScapeRoom:[283,1,1,""],TestEvscaperoomCommands:[283,1,1,""],TestStates:[283,1,1,""],TestUtils:[283,1,1,""]},"evennia.contrib.full_systems.evscaperoom.tests.TestEvScapeRoom":{setUp:[283,3,1,""],tearDown:[283,3,1,""],test_room_methods:[283,3,1,""]},"evennia.contrib.full_systems.evscaperoom.tests.TestEvscaperoomCommands":{setUp:[283,3,1,""],test_base_parse:[283,3,1,""],test_base_search:[283,3,1,""],test_emote:[283,3,1,""],test_focus:[283,3,1,""],test_focus_interaction:[283,3,1,""],test_look:[283,3,1,""],test_set_focus:[283,3,1,""],test_speech:[283,3,1,""]},"evennia.contrib.full_systems.evscaperoom.tests.TestStates":{setUp:[283,3,1,""],tearDown:[283,3,1,""],test_all_states:[283,3,1,""],test_base_state:[283,3,1,""]},"evennia.contrib.full_systems.evscaperoom.tests.TestUtils":{test_overwrite:[283,3,1,""],test_parse_for_perspectives:[283,3,1,""],test_parse_for_things:[283,3,1,""]},"evennia.contrib.full_systems.evscaperoom.utils":{add_msg_borders:[284,5,1,""],create_evscaperoom_object:[284,5,1,""],create_fantasy_word:[284,5,1,""],msg_cinematic:[284,5,1,""],parse_for_perspectives:[284,5,1,""],parse_for_things:[284,5,1,""]},"evennia.contrib.game_systems":{barter:[286,0,0,"-"],clothing:[289,0,0,"-"],cooldowns:[292,0,0,"-"],crafting:[295,0,0,"-"],gendersub:[299,0,0,"-"],mail:[302,0,0,"-"],multidescer:[305,0,0,"-"],puzzles:[308,0,0,"-"],turnbattle:[311,0,0,"-"]},"evennia.contrib.game_systems.barter":{barter:[287,0,0,"-"],tests:[288,0,0,"-"]},"evennia.contrib.game_systems.barter.barter":{CmdAccept:[287,1,1,""],CmdDecline:[287,1,1,""],CmdEvaluate:[287,1,1,""],CmdFinish:[287,1,1,""],CmdOffer:[287,1,1,""],CmdStatus:[287,1,1,""],CmdTrade:[287,1,1,""],CmdTradeBase:[287,1,1,""],CmdTradeHelp:[287,1,1,""],CmdsetTrade:[287,1,1,""],TradeHandler:[287,1,1,""],TradeTimeout:[287,1,1,""]},"evennia.contrib.game_systems.barter.barter.CmdAccept":{aliases:[287,4,1,""],func:[287,3,1,""],help_category:[287,4,1,""],key:[287,4,1,""],lock_storage:[287,4,1,""],locks:[287,4,1,""],search_index_entry:[287,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdDecline":{aliases:[287,4,1,""],func:[287,3,1,""],help_category:[287,4,1,""],key:[287,4,1,""],lock_storage:[287,4,1,""],locks:[287,4,1,""],search_index_entry:[287,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdEvaluate":{aliases:[287,4,1,""],func:[287,3,1,""],help_category:[287,4,1,""],key:[287,4,1,""],lock_storage:[287,4,1,""],locks:[287,4,1,""],search_index_entry:[287,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdFinish":{aliases:[287,4,1,""],func:[287,3,1,""],help_category:[287,4,1,""],key:[287,4,1,""],lock_storage:[287,4,1,""],locks:[287,4,1,""],search_index_entry:[287,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdOffer":{aliases:[287,4,1,""],func:[287,3,1,""],help_category:[287,4,1,""],key:[287,4,1,""],lock_storage:[287,4,1,""],locks:[287,4,1,""],search_index_entry:[287,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdStatus":{aliases:[287,4,1,""],func:[287,3,1,""],help_category:[287,4,1,""],key:[287,4,1,""],lock_storage:[287,4,1,""],locks:[287,4,1,""],search_index_entry:[287,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdTrade":{aliases:[287,4,1,""],func:[287,3,1,""],help_category:[287,4,1,""],key:[287,4,1,""],lock_storage:[287,4,1,""],locks:[287,4,1,""],search_index_entry:[287,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdTradeBase":{aliases:[287,4,1,""],help_category:[287,4,1,""],key:[287,4,1,""],lock_storage:[287,4,1,""],parse:[287,3,1,""],search_index_entry:[287,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdTradeHelp":{aliases:[287,4,1,""],func:[287,3,1,""],help_category:[287,4,1,""],key:[287,4,1,""],lock_storage:[287,4,1,""],locks:[287,4,1,""],search_index_entry:[287,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdsetTrade":{at_cmdset_creation:[287,3,1,""],key:[287,4,1,""],path:[287,4,1,""]},"evennia.contrib.game_systems.barter.barter.TradeHandler":{__init__:[287,3,1,""],accept:[287,3,1,""],decline:[287,3,1,""],finish:[287,3,1,""],get_other:[287,3,1,""],join:[287,3,1,""],list:[287,3,1,""],msg_other:[287,3,1,""],offer:[287,3,1,""],search:[287,3,1,""],unjoin:[287,3,1,""]},"evennia.contrib.game_systems.barter.barter.TradeTimeout":{DoesNotExist:[287,2,1,""],MultipleObjectsReturned:[287,2,1,""],at_repeat:[287,3,1,""],at_script_creation:[287,3,1,""],is_valid:[287,3,1,""],path:[287,4,1,""],typename:[287,4,1,""]},"evennia.contrib.game_systems.barter.tests":{TestBarter:[288,1,1,""]},"evennia.contrib.game_systems.barter.tests.TestBarter":{setUp:[288,3,1,""],test_cmdtrade:[288,3,1,""],test_cmdtradehelp:[288,3,1,""],test_tradehandler_base:[288,3,1,""],test_tradehandler_joins:[288,3,1,""],test_tradehandler_offers:[288,3,1,""]},"evennia.contrib.game_systems.clothing":{clothing:[290,0,0,"-"],tests:[291,0,0,"-"]},"evennia.contrib.game_systems.clothing.clothing":{ClothedCharacter:[290,1,1,""],ClothedCharacterCmdSet:[290,1,1,""],CmdCover:[290,1,1,""],CmdDrop:[290,1,1,""],CmdGive:[290,1,1,""],CmdInventory:[290,1,1,""],CmdRemove:[290,1,1,""],CmdUncover:[290,1,1,""],CmdWear:[290,1,1,""],ContribClothing:[290,1,1,""],clothing_type_count:[290,5,1,""],get_worn_clothes:[290,5,1,""],order_clothes_list:[290,5,1,""],single_type_count:[290,5,1,""]},"evennia.contrib.game_systems.clothing.clothing.ClothedCharacter":{DoesNotExist:[290,2,1,""],MultipleObjectsReturned:[290,2,1,""],path:[290,4,1,""],return_appearance:[290,3,1,""],typename:[290,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.ClothedCharacterCmdSet":{at_cmdset_creation:[290,3,1,""],key:[290,4,1,""],path:[290,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.CmdCover":{aliases:[290,4,1,""],func:[290,3,1,""],help_category:[290,4,1,""],key:[290,4,1,""],lock_storage:[290,4,1,""],search_index_entry:[290,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.CmdDrop":{aliases:[290,4,1,""],arg_regex:[290,4,1,""],func:[290,3,1,""],help_category:[290,4,1,""],key:[290,4,1,""],lock_storage:[290,4,1,""],locks:[290,4,1,""],search_index_entry:[290,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.CmdGive":{aliases:[290,4,1,""],arg_regex:[290,4,1,""],func:[290,3,1,""],help_category:[290,4,1,""],key:[290,4,1,""],lock_storage:[290,4,1,""],locks:[290,4,1,""],search_index_entry:[290,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.CmdInventory":{aliases:[290,4,1,""],arg_regex:[290,4,1,""],func:[290,3,1,""],help_category:[290,4,1,""],key:[290,4,1,""],lock_storage:[290,4,1,""],locks:[290,4,1,""],search_index_entry:[290,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.CmdRemove":{aliases:[290,4,1,""],func:[290,3,1,""],help_category:[290,4,1,""],key:[290,4,1,""],lock_storage:[290,4,1,""],search_index_entry:[290,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.CmdUncover":{aliases:[290,4,1,""],func:[290,3,1,""],help_category:[290,4,1,""],key:[290,4,1,""],lock_storage:[290,4,1,""],search_index_entry:[290,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.CmdWear":{aliases:[290,4,1,""],func:[290,3,1,""],help_category:[290,4,1,""],key:[290,4,1,""],lock_storage:[290,4,1,""],search_index_entry:[290,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.ContribClothing":{DoesNotExist:[290,2,1,""],MultipleObjectsReturned:[290,2,1,""],at_get:[290,3,1,""],path:[290,4,1,""],remove:[290,3,1,""],typename:[290,4,1,""],wear:[290,3,1,""]},"evennia.contrib.game_systems.clothing.tests":{TestClothingCmd:[291,1,1,""],TestClothingFunc:[291,1,1,""]},"evennia.contrib.game_systems.clothing.tests.TestClothingCmd":{test_clothingcommands:[291,3,1,""]},"evennia.contrib.game_systems.clothing.tests.TestClothingFunc":{test_clothingfunctions:[291,3,1,""]},"evennia.contrib.game_systems.cooldowns":{cooldowns:[293,0,0,"-"],tests:[294,0,0,"-"]},"evennia.contrib.game_systems.cooldowns.cooldowns":{CooldownHandler:[293,1,1,""]},"evennia.contrib.game_systems.cooldowns.cooldowns.CooldownHandler":{__init__:[293,3,1,""],add:[293,3,1,""],all:[293,3,1,""],cleanup:[293,3,1,""],clear:[293,3,1,""],data:[293,4,1,""],db_attribute:[293,4,1,""],extend:[293,3,1,""],obj:[293,4,1,""],ready:[293,3,1,""],reset:[293,3,1,""],set:[293,3,1,""],time_left:[293,3,1,""]},"evennia.contrib.game_systems.cooldowns.tests":{TestCooldowns:[294,1,1,""]},"evennia.contrib.game_systems.cooldowns.tests.TestCooldowns":{setUp:[294,3,1,""],test_add:[294,3,1,""],test_add_float:[294,3,1,""],test_add_multi:[294,3,1,""],test_add_negative:[294,3,1,""],test_add_none:[294,3,1,""],test_add_overwrite:[294,3,1,""],test_cleanup:[294,3,1,""],test_cleanup_doesnt_delete_anything:[294,3,1,""],test_clear:[294,3,1,""],test_empty:[294,3,1,""],test_extend:[294,3,1,""],test_extend_float:[294,3,1,""],test_extend_negative:[294,3,1,""],test_extend_none:[294,3,1,""],test_reset:[294,3,1,""],test_reset_non_existent:[294,3,1,""]},"evennia.contrib.game_systems.crafting":{crafting:[296,0,0,"-"],example_recipes:[297,0,0,"-"],tests:[298,0,0,"-"]},"evennia.contrib.game_systems.crafting.crafting":{CmdCraft:[296,1,1,""],CraftingCmdSet:[296,1,1,""],CraftingError:[296,2,1,""],CraftingRecipe:[296,1,1,""],CraftingRecipeBase:[296,1,1,""],CraftingValidationError:[296,2,1,""],craft:[296,5,1,""]},"evennia.contrib.game_systems.crafting.crafting.CmdCraft":{aliases:[296,4,1,""],arg_regex:[296,4,1,""],func:[296,3,1,""],help_category:[296,4,1,""],key:[296,4,1,""],lock_storage:[296,4,1,""],locks:[296,4,1,""],parse:[296,3,1,""],search_index_entry:[296,4,1,""]},"evennia.contrib.game_systems.crafting.crafting.CraftingCmdSet":{at_cmdset_creation:[296,3,1,""],key:[296,4,1,""],path:[296,4,1,""]},"evennia.contrib.game_systems.crafting.crafting.CraftingRecipe":{__init__:[296,3,1,""],consumable_names:[296,4,1,""],consumable_tag_category:[296,4,1,""],consumable_tags:[296,4,1,""],consume_on_fail:[296,4,1,""],do_craft:[296,3,1,""],error_consumable_excess_message:[296,4,1,""],error_consumable_missing_message:[296,4,1,""],error_consumable_order_message:[296,4,1,""],error_tool_excess_message:[296,4,1,""],error_tool_missing_message:[296,4,1,""],error_tool_order_message:[296,4,1,""],exact_consumable_order:[296,4,1,""],exact_consumables:[296,4,1,""],exact_tool_order:[296,4,1,""],exact_tools:[296,4,1,""],failure_message:[296,4,1,""],name:[296,4,1,""],output_names:[296,4,1,""],output_prototypes:[296,4,1,""],post_craft:[296,3,1,""],pre_craft:[296,3,1,""],seed:[296,3,1,""],success_message:[296,4,1,""],tool_names:[296,4,1,""],tool_tag_category:[296,4,1,""],tool_tags:[296,4,1,""]},"evennia.contrib.game_systems.crafting.crafting.CraftingRecipeBase":{__init__:[296,3,1,""],allow_reuse:[296,4,1,""],craft:[296,3,1,""],do_craft:[296,3,1,""],msg:[296,3,1,""],name:[296,4,1,""],post_craft:[296,3,1,""],pre_craft:[296,3,1,""]},"evennia.contrib.game_systems.crafting.example_recipes":{CmdCast:[297,1,1,""],CrucibleSteelRecipe:[297,1,1,""],FireballRecipe:[297,1,1,""],HealingRecipe:[297,1,1,""],LeatherRecipe:[297,1,1,""],OakBarkRecipe:[297,1,1,""],PigIronRecipe:[297,1,1,""],RawhideRecipe:[297,1,1,""],SwordBladeRecipe:[297,1,1,""],SwordGuardRecipe:[297,1,1,""],SwordHandleRecipe:[297,1,1,""],SwordPommelRecipe:[297,1,1,""],SwordRecipe:[297,1,1,""],random:[297,5,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.CmdCast":{aliases:[297,4,1,""],func:[297,3,1,""],help_category:[297,4,1,""],key:[297,4,1,""],lock_storage:[297,4,1,""],parse:[297,3,1,""],search_index_entry:[297,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.CrucibleSteelRecipe":{consumable_tags:[297,4,1,""],name:[297,4,1,""],output_prototypes:[297,4,1,""],tool_tags:[297,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.FireballRecipe":{desired_effects:[297,4,1,""],failure_effects:[297,4,1,""],name:[297,4,1,""],skill_requirements:[297,4,1,""],skill_roll:[297,4,1,""],success_message:[297,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.HealingRecipe":{desired_effects:[297,4,1,""],failure_effects:[297,4,1,""],name:[297,4,1,""],skill_requirements:[297,4,1,""],skill_roll:[297,4,1,""],success_message:[297,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.LeatherRecipe":{consumable_tags:[297,4,1,""],name:[297,4,1,""],output_prototypes:[297,4,1,""],tool_tags:[297,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.OakBarkRecipe":{consumable_tags:[297,4,1,""],name:[297,4,1,""],output_prototypes:[297,4,1,""],tool_tags:[297,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.PigIronRecipe":{consumable_tags:[297,4,1,""],name:[297,4,1,""],output_prototypes:[297,4,1,""],tool_tags:[297,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.RawhideRecipe":{consumable_tags:[297,4,1,""],name:[297,4,1,""],output_prototypes:[297,4,1,""],tool_tags:[297,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.SwordBladeRecipe":{consumable_tags:[297,4,1,""],name:[297,4,1,""],output_prototypes:[297,4,1,""],tool_tags:[297,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.SwordGuardRecipe":{consumable_tags:[297,4,1,""],name:[297,4,1,""],output_prototypes:[297,4,1,""],tool_tags:[297,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.SwordHandleRecipe":{consumable_tags:[297,4,1,""],name:[297,4,1,""],output_prototypes:[297,4,1,""],tool_tags:[297,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.SwordPommelRecipe":{consumable_tags:[297,4,1,""],name:[297,4,1,""],output_prototypes:[297,4,1,""],tool_tags:[297,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.SwordRecipe":{consumable_tags:[297,4,1,""],exact_consumable_order:[297,4,1,""],name:[297,4,1,""],output_prototypes:[297,4,1,""],tool_tags:[297,4,1,""]},"evennia.contrib.game_systems.crafting.tests":{TestCraftCommand:[298,1,1,""],TestCraftSword:[298,1,1,""],TestCraftUtils:[298,1,1,""],TestCraftingRecipe:[298,1,1,""],TestCraftingRecipeBase:[298,1,1,""]},"evennia.contrib.game_systems.crafting.tests.TestCraftCommand":{setUp:[298,3,1,""],test_craft__nocons__failure:[298,3,1,""],test_craft__notools__failure:[298,3,1,""],test_craft__success:[298,3,1,""]},"evennia.contrib.game_systems.crafting.tests.TestCraftSword":{setUp:[298,3,1,""],test_craft_sword:[298,3,1,""]},"evennia.contrib.game_systems.crafting.tests.TestCraftUtils":{maxDiff:[298,4,1,""],test_load_recipes:[298,3,1,""]},"evennia.contrib.game_systems.crafting.tests.TestCraftingRecipe":{maxDiff:[298,4,1,""],setUp:[298,3,1,""],tearDown:[298,3,1,""],test_craft__success:[298,3,1,""],test_craft_cons_excess__fail:[298,3,1,""],test_craft_cons_excess__sucess:[298,3,1,""],test_craft_cons_order__fail:[298,3,1,""],test_craft_missing_cons__always_consume__fail:[298,3,1,""],test_craft_missing_cons__fail:[298,3,1,""],test_craft_missing_tool__fail:[298,3,1,""],test_craft_tool_excess__fail:[298,3,1,""],test_craft_tool_excess__sucess:[298,3,1,""],test_craft_tool_order__fail:[298,3,1,""],test_craft_wrong_tool__fail:[298,3,1,""],test_error_format:[298,3,1,""],test_seed__success:[298,3,1,""]},"evennia.contrib.game_systems.crafting.tests.TestCraftingRecipeBase":{setUp:[298,3,1,""],test_craft_hook__fail:[298,3,1,""],test_craft_hook__succeed:[298,3,1,""],test_msg:[298,3,1,""],test_pre_craft:[298,3,1,""],test_pre_craft_fail:[298,3,1,""]},"evennia.contrib.game_systems.gendersub":{gendersub:[300,0,0,"-"],tests:[301,0,0,"-"]},"evennia.contrib.game_systems.gendersub.gendersub":{GenderCharacter:[300,1,1,""],SetGender:[300,1,1,""]},"evennia.contrib.game_systems.gendersub.gendersub.GenderCharacter":{DoesNotExist:[300,2,1,""],MultipleObjectsReturned:[300,2,1,""],at_object_creation:[300,3,1,""],msg:[300,3,1,""],path:[300,4,1,""],typename:[300,4,1,""]},"evennia.contrib.game_systems.gendersub.gendersub.SetGender":{aliases:[300,4,1,""],func:[300,3,1,""],help_category:[300,4,1,""],key:[300,4,1,""],lock_storage:[300,4,1,""],locks:[300,4,1,""],search_index_entry:[300,4,1,""]},"evennia.contrib.game_systems.gendersub.tests":{TestGenderSub:[301,1,1,""]},"evennia.contrib.game_systems.gendersub.tests.TestGenderSub":{test_gendercharacter:[301,3,1,""],test_setgender:[301,3,1,""]},"evennia.contrib.game_systems.mail":{mail:[303,0,0,"-"],tests:[304,0,0,"-"]},"evennia.contrib.game_systems.mail.mail":{CmdMail:[303,1,1,""],CmdMailCharacter:[303,1,1,""]},"evennia.contrib.game_systems.mail.mail.CmdMail":{aliases:[303,4,1,""],func:[303,3,1,""],get_all_mail:[303,3,1,""],help_category:[303,4,1,""],key:[303,4,1,""],lock:[303,4,1,""],lock_storage:[303,4,1,""],parse:[303,3,1,""],search_index_entry:[303,4,1,""],search_targets:[303,3,1,""],send_mail:[303,3,1,""]},"evennia.contrib.game_systems.mail.mail.CmdMailCharacter":{account_caller:[303,4,1,""],aliases:[303,4,1,""],help_category:[303,4,1,""],key:[303,4,1,""],lock_storage:[303,4,1,""],search_index_entry:[303,4,1,""]},"evennia.contrib.game_systems.mail.tests":{TestMail:[304,1,1,""]},"evennia.contrib.game_systems.mail.tests.TestMail":{test_mail:[304,3,1,""]},"evennia.contrib.game_systems.multidescer":{multidescer:[306,0,0,"-"],tests:[307,0,0,"-"]},"evennia.contrib.game_systems.multidescer.multidescer":{CmdMultiDesc:[306,1,1,""],DescValidateError:[306,2,1,""]},"evennia.contrib.game_systems.multidescer.multidescer.CmdMultiDesc":{aliases:[306,4,1,""],func:[306,3,1,""],help_category:[306,4,1,""],key:[306,4,1,""],lock_storage:[306,4,1,""],locks:[306,4,1,""],search_index_entry:[306,4,1,""]},"evennia.contrib.game_systems.multidescer.tests":{TestMultidescer:[307,1,1,""]},"evennia.contrib.game_systems.multidescer.tests.TestMultidescer":{test_cmdmultidesc:[307,3,1,""]},"evennia.contrib.game_systems.puzzles":{puzzles:[309,0,0,"-"],tests:[310,0,0,"-"]},"evennia.contrib.game_systems.puzzles.puzzles":{CmdArmPuzzle:[309,1,1,""],CmdCreatePuzzleRecipe:[309,1,1,""],CmdEditPuzzle:[309,1,1,""],CmdListArmedPuzzles:[309,1,1,""],CmdListPuzzleRecipes:[309,1,1,""],CmdUsePuzzleParts:[309,1,1,""],PuzzleRecipe:[309,1,1,""],PuzzleSystemCmdSet:[309,1,1,""],maskout_protodef:[309,5,1,""],proto_def:[309,5,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.CmdArmPuzzle":{aliases:[309,4,1,""],func:[309,3,1,""],help_category:[309,4,1,""],key:[309,4,1,""],lock_storage:[309,4,1,""],locks:[309,4,1,""],search_index_entry:[309,4,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.CmdCreatePuzzleRecipe":{aliases:[309,4,1,""],confirm:[309,4,1,""],default_confirm:[309,4,1,""],func:[309,3,1,""],help_category:[309,4,1,""],key:[309,4,1,""],lock_storage:[309,4,1,""],locks:[309,4,1,""],search_index_entry:[309,4,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.CmdEditPuzzle":{aliases:[309,4,1,""],func:[309,3,1,""],help_category:[309,4,1,""],key:[309,4,1,""],lock_storage:[309,4,1,""],locks:[309,4,1,""],search_index_entry:[309,4,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.CmdListArmedPuzzles":{aliases:[309,4,1,""],func:[309,3,1,""],help_category:[309,4,1,""],key:[309,4,1,""],lock_storage:[309,4,1,""],locks:[309,4,1,""],search_index_entry:[309,4,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.CmdListPuzzleRecipes":{aliases:[309,4,1,""],func:[309,3,1,""],help_category:[309,4,1,""],key:[309,4,1,""],lock_storage:[309,4,1,""],locks:[309,4,1,""],search_index_entry:[309,4,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.CmdUsePuzzleParts":{aliases:[309,4,1,""],func:[309,3,1,""],help_category:[309,4,1,""],key:[309,4,1,""],lock_storage:[309,4,1,""],locks:[309,4,1,""],search_index_entry:[309,4,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.PuzzleRecipe":{DoesNotExist:[309,2,1,""],MultipleObjectsReturned:[309,2,1,""],path:[309,4,1,""],save_recipe:[309,3,1,""],typename:[309,4,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.PuzzleSystemCmdSet":{at_cmdset_creation:[309,3,1,""],path:[309,4,1,""]},"evennia.contrib.game_systems.puzzles.tests":{TestPuzzles:[310,1,1,""]},"evennia.contrib.game_systems.puzzles.tests.TestPuzzles":{setUp:[310,3,1,""],test_cmd_armpuzzle:[310,3,1,""],test_cmd_puzzle:[310,3,1,""],test_cmd_use:[310,3,1,""],test_cmdset_puzzle:[310,3,1,""],test_e2e:[310,3,1,""],test_e2e_accumulative:[310,3,1,""],test_e2e_interchangeable_parts_and_results:[310,3,1,""],test_lspuzzlerecipes_lsarmedpuzzles:[310,3,1,""],test_puzzleedit:[310,3,1,""],test_puzzleedit_add_remove_parts_results:[310,3,1,""]},"evennia.contrib.game_systems.turnbattle":{tb_basic:[312,0,0,"-"],tb_equip:[313,0,0,"-"],tb_items:[314,0,0,"-"],tb_magic:[315,0,0,"-"],tb_range:[316,0,0,"-"],tests:[317,0,0,"-"]},"evennia.contrib.game_systems.turnbattle.tb_basic":{ACTIONS_PER_TURN:[312,6,1,""],BasicCombatRules:[312,1,1,""],BattleCmdSet:[312,1,1,""],COMBAT_RULES:[312,6,1,""],CmdAttack:[312,1,1,""],CmdCombatHelp:[312,1,1,""],CmdDisengage:[312,1,1,""],CmdFight:[312,1,1,""],CmdPass:[312,1,1,""],CmdRest:[312,1,1,""],TBBasicCharacter:[312,1,1,""],TBBasicTurnHandler:[312,1,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.BasicCombatRules":{apply_damage:[312,3,1,""],at_defeat:[312,3,1,""],combat_cleanup:[312,3,1,""],get_attack:[312,3,1,""],get_damage:[312,3,1,""],get_defense:[312,3,1,""],is_in_combat:[312,3,1,""],is_turn:[312,3,1,""],resolve_attack:[312,3,1,""],roll_init:[312,3,1,""],spend_action:[312,3,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.BattleCmdSet":{at_cmdset_creation:[312,3,1,""],key:[312,4,1,""],path:[312,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.CmdAttack":{aliases:[312,4,1,""],func:[312,3,1,""],help_category:[312,4,1,""],key:[312,4,1,""],lock_storage:[312,4,1,""],rules:[312,4,1,""],search_index_entry:[312,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.CmdCombatHelp":{aliases:[312,4,1,""],combat_help_text:[312,4,1,""],func:[312,3,1,""],help_category:[312,4,1,""],key:[312,4,1,""],lock_storage:[312,4,1,""],rules:[312,4,1,""],search_index_entry:[312,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.CmdDisengage":{aliases:[312,4,1,""],func:[312,3,1,""],help_category:[312,4,1,""],key:[312,4,1,""],lock_storage:[312,4,1,""],rules:[312,4,1,""],search_index_entry:[312,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.CmdFight":{aliases:[312,4,1,""],combat_handler_class:[312,4,1,""],func:[312,3,1,""],help_category:[312,4,1,""],key:[312,4,1,""],lock_storage:[312,4,1,""],rules:[312,4,1,""],search_index_entry:[312,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.CmdPass":{aliases:[312,4,1,""],func:[312,3,1,""],help_category:[312,4,1,""],key:[312,4,1,""],lock_storage:[312,4,1,""],rules:[312,4,1,""],search_index_entry:[312,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.CmdRest":{aliases:[312,4,1,""],func:[312,3,1,""],help_category:[312,4,1,""],key:[312,4,1,""],lock_storage:[312,4,1,""],rules:[312,4,1,""],search_index_entry:[312,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.TBBasicCharacter":{DoesNotExist:[312,2,1,""],MultipleObjectsReturned:[312,2,1,""],at_object_creation:[312,3,1,""],at_pre_move:[312,3,1,""],path:[312,4,1,""],rules:[312,4,1,""],typename:[312,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.TBBasicTurnHandler":{DoesNotExist:[312,2,1,""],MultipleObjectsReturned:[312,2,1,""],at_repeat:[312,3,1,""],at_script_creation:[312,3,1,""],at_stop:[312,3,1,""],initialize_for_combat:[312,3,1,""],join_fight:[312,3,1,""],next_turn:[312,3,1,""],path:[312,4,1,""],rules:[312,4,1,""],start_turn:[312,3,1,""],turn_end_check:[312,3,1,""],typename:[312,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip":{ACTIONS_PER_TURN:[313,6,1,""],BattleCmdSet:[313,1,1,""],COMBAT_RULES:[313,6,1,""],CmdAttack:[313,1,1,""],CmdCombatHelp:[313,1,1,""],CmdDisengage:[313,1,1,""],CmdDoff:[313,1,1,""],CmdDon:[313,1,1,""],CmdFight:[313,1,1,""],CmdPass:[313,1,1,""],CmdRest:[313,1,1,""],CmdUnwield:[313,1,1,""],CmdWield:[313,1,1,""],EquipmentCombatRules:[313,1,1,""],TBEArmor:[313,1,1,""],TBEWeapon:[313,1,1,""],TBEquipCharacter:[313,1,1,""],TBEquipTurnHandler:[313,1,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.BattleCmdSet":{at_cmdset_creation:[313,3,1,""],key:[313,4,1,""],path:[313,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdAttack":{aliases:[313,4,1,""],help_category:[313,4,1,""],key:[313,4,1,""],lock_storage:[313,4,1,""],rules:[313,4,1,""],search_index_entry:[313,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdCombatHelp":{aliases:[313,4,1,""],help_category:[313,4,1,""],key:[313,4,1,""],lock_storage:[313,4,1,""],rules:[313,4,1,""],search_index_entry:[313,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdDisengage":{aliases:[313,4,1,""],help_category:[313,4,1,""],key:[313,4,1,""],lock_storage:[313,4,1,""],rules:[313,4,1,""],search_index_entry:[313,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdDoff":{aliases:[313,4,1,""],func:[313,3,1,""],help_category:[313,4,1,""],key:[313,4,1,""],lock_storage:[313,4,1,""],rules:[313,4,1,""],search_index_entry:[313,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdDon":{aliases:[313,4,1,""],func:[313,3,1,""],help_category:[313,4,1,""],key:[313,4,1,""],lock_storage:[313,4,1,""],rules:[313,4,1,""],search_index_entry:[313,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdFight":{aliases:[313,4,1,""],command_handler_class:[313,4,1,""],help_category:[313,4,1,""],key:[313,4,1,""],lock_storage:[313,4,1,""],rules:[313,4,1,""],search_index_entry:[313,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdPass":{aliases:[313,4,1,""],help_category:[313,4,1,""],key:[313,4,1,""],lock_storage:[313,4,1,""],rules:[313,4,1,""],search_index_entry:[313,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdRest":{aliases:[313,4,1,""],help_category:[313,4,1,""],key:[313,4,1,""],lock_storage:[313,4,1,""],rules:[313,4,1,""],search_index_entry:[313,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdUnwield":{aliases:[313,4,1,""],func:[313,3,1,""],help_category:[313,4,1,""],key:[313,4,1,""],lock_storage:[313,4,1,""],rules:[313,4,1,""],search_index_entry:[313,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdWield":{aliases:[313,4,1,""],func:[313,3,1,""],help_category:[313,4,1,""],key:[313,4,1,""],lock_storage:[313,4,1,""],rules:[313,4,1,""],search_index_entry:[313,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.EquipmentCombatRules":{get_attack:[313,3,1,""],get_damage:[313,3,1,""],get_defense:[313,3,1,""],resolve_attack:[313,3,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.TBEArmor":{DoesNotExist:[313,2,1,""],MultipleObjectsReturned:[313,2,1,""],at_drop:[313,3,1,""],at_give:[313,3,1,""],at_object_creation:[313,3,1,""],at_pre_drop:[313,3,1,""],at_pre_give:[313,3,1,""],path:[313,4,1,""],typename:[313,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.TBEWeapon":{DoesNotExist:[313,2,1,""],MultipleObjectsReturned:[313,2,1,""],at_drop:[313,3,1,""],at_give:[313,3,1,""],at_object_creation:[313,3,1,""],path:[313,4,1,""],rules:[313,4,1,""],typename:[313,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.TBEquipCharacter":{DoesNotExist:[313,2,1,""],MultipleObjectsReturned:[313,2,1,""],at_object_creation:[313,3,1,""],path:[313,4,1,""],typename:[313,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.TBEquipTurnHandler":{DoesNotExist:[313,2,1,""],MultipleObjectsReturned:[313,2,1,""],path:[313,4,1,""],rules:[313,4,1,""],typename:[313,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items":{AMULET_OF_WEAKNESS:[314,6,1,""],BattleCmdSet:[314,1,1,""],CmdAttack:[314,1,1,""],CmdCombatHelp:[314,1,1,""],CmdDisengage:[314,1,1,""],CmdFight:[314,1,1,""],CmdPass:[314,1,1,""],CmdRest:[314,1,1,""],CmdUse:[314,1,1,""],DEF_DOWN_MOD:[314,6,1,""],ITEMFUNCS:[314,6,1,""],ItemCombatRules:[314,1,1,""],TBItemsCharacter:[314,1,1,""],TBItemsCharacterTest:[314,1,1,""],TBItemsTurnHandler:[314,1,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.BattleCmdSet":{at_cmdset_creation:[314,3,1,""],key:[314,4,1,""],path:[314,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.CmdAttack":{aliases:[314,4,1,""],help_category:[314,4,1,""],key:[314,4,1,""],lock_storage:[314,4,1,""],rules:[314,4,1,""],search_index_entry:[314,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.CmdCombatHelp":{aliases:[314,4,1,""],combat_help_text:[314,4,1,""],help_category:[314,4,1,""],key:[314,4,1,""],lock_storage:[314,4,1,""],rules:[314,4,1,""],search_index_entry:[314,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.CmdDisengage":{aliases:[314,4,1,""],help_category:[314,4,1,""],key:[314,4,1,""],lock_storage:[314,4,1,""],rules:[314,4,1,""],search_index_entry:[314,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.CmdFight":{aliases:[314,4,1,""],combat_handler_class:[314,4,1,""],help_category:[314,4,1,""],key:[314,4,1,""],lock_storage:[314,4,1,""],rules:[314,4,1,""],search_index_entry:[314,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.CmdPass":{aliases:[314,4,1,""],help_category:[314,4,1,""],key:[314,4,1,""],lock_storage:[314,4,1,""],rules:[314,4,1,""],search_index_entry:[314,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.CmdRest":{aliases:[314,4,1,""],help_category:[314,4,1,""],key:[314,4,1,""],lock_storage:[314,4,1,""],rules:[314,4,1,""],search_index_entry:[314,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.CmdUse":{aliases:[314,4,1,""],func:[314,3,1,""],help_category:[314,4,1,""],key:[314,4,1,""],lock_storage:[314,4,1,""],rules:[314,4,1,""],search_index_entry:[314,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.ItemCombatRules":{add_condition:[314,3,1,""],condition_tickdown:[314,3,1,""],get_attack:[314,3,1,""],get_damage:[314,3,1,""],get_defense:[314,3,1,""],itemfunc_add_condition:[314,3,1,""],itemfunc_attack:[314,3,1,""],itemfunc_cure_condition:[314,3,1,""],itemfunc_heal:[314,3,1,""],resolve_attack:[314,3,1,""],spend_item_use:[314,3,1,""],use_item:[314,3,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.TBItemsCharacter":{DoesNotExist:[314,2,1,""],MultipleObjectsReturned:[314,2,1,""],apply_turn_conditions:[314,3,1,""],at_object_creation:[314,3,1,""],at_turn_start:[314,3,1,""],at_update:[314,3,1,""],path:[314,4,1,""],rules:[314,4,1,""],typename:[314,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.TBItemsCharacterTest":{DoesNotExist:[314,2,1,""],MultipleObjectsReturned:[314,2,1,""],at_object_creation:[314,3,1,""],path:[314,4,1,""],typename:[314,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.TBItemsTurnHandler":{DoesNotExist:[314,2,1,""],MultipleObjectsReturned:[314,2,1,""],next_turn:[314,3,1,""],path:[314,4,1,""],rules:[314,4,1,""],typename:[314,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic":{ACTIONS_PER_TURN:[315,6,1,""],BattleCmdSet:[315,1,1,""],COMBAT_RULES:[315,6,1,""],CmdAttack:[315,1,1,""],CmdCast:[315,1,1,""],CmdCombatHelp:[315,1,1,""],CmdDisengage:[315,1,1,""],CmdFight:[315,1,1,""],CmdLearnSpell:[315,1,1,""],CmdPass:[315,1,1,""],CmdRest:[315,1,1,""],CmdStatus:[315,1,1,""],MagicCombatRules:[315,1,1,""],SPELLS:[315,6,1,""],TBMagicCharacter:[315,1,1,""],TBMagicTurnHandler:[315,1,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.BattleCmdSet":{at_cmdset_creation:[315,3,1,""],key:[315,4,1,""],path:[315,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdAttack":{aliases:[315,4,1,""],help_category:[315,4,1,""],key:[315,4,1,""],lock_storage:[315,4,1,""],rules:[315,4,1,""],search_index_entry:[315,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdCast":{aliases:[315,4,1,""],func:[315,3,1,""],help_category:[315,4,1,""],key:[315,4,1,""],lock_storage:[315,4,1,""],rules:[315,4,1,""],search_index_entry:[315,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdCombatHelp":{aliases:[315,4,1,""],help_category:[315,4,1,""],key:[315,4,1,""],lock_storage:[315,4,1,""],search_index_entry:[315,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdDisengage":{aliases:[315,4,1,""],help_category:[315,4,1,""],key:[315,4,1,""],lock_storage:[315,4,1,""],rules:[315,4,1,""],search_index_entry:[315,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdFight":{aliases:[315,4,1,""],combat_handler_class:[315,4,1,""],help_category:[315,4,1,""],key:[315,4,1,""],lock_storage:[315,4,1,""],rules:[315,4,1,""],search_index_entry:[315,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdLearnSpell":{aliases:[315,4,1,""],func:[315,3,1,""],help_category:[315,4,1,""],key:[315,4,1,""],lock_storage:[315,4,1,""],search_index_entry:[315,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdPass":{aliases:[315,4,1,""],help_category:[315,4,1,""],key:[315,4,1,""],lock_storage:[315,4,1,""],rules:[315,4,1,""],search_index_entry:[315,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdRest":{aliases:[315,4,1,""],func:[315,3,1,""],help_category:[315,4,1,""],key:[315,4,1,""],lock_storage:[315,4,1,""],rules:[315,4,1,""],search_index_entry:[315,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdStatus":{aliases:[315,4,1,""],func:[315,3,1,""],help_category:[315,4,1,""],key:[315,4,1,""],lock_storage:[315,4,1,""],search_index_entry:[315,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.MagicCombatRules":{spell_attack:[315,3,1,""],spell_conjure:[315,3,1,""],spell_healing:[315,3,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.TBMagicCharacter":{DoesNotExist:[315,2,1,""],MultipleObjectsReturned:[315,2,1,""],at_object_creation:[315,3,1,""],path:[315,4,1,""],rules:[315,4,1,""],typename:[315,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.TBMagicTurnHandler":{DoesNotExist:[315,2,1,""],MultipleObjectsReturned:[315,2,1,""],path:[315,4,1,""],rules:[315,4,1,""],typename:[315,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range":{ACTIONS_PER_TURN:[316,6,1,""],BattleCmdSet:[316,1,1,""],COMBAT_RULES:[316,6,1,""],CmdApproach:[316,1,1,""],CmdAttack:[316,1,1,""],CmdCombatHelp:[316,1,1,""],CmdDisengage:[316,1,1,""],CmdFight:[316,1,1,""],CmdPass:[316,1,1,""],CmdRest:[316,1,1,""],CmdShoot:[316,1,1,""],CmdStatus:[316,1,1,""],CmdWithdraw:[316,1,1,""],RangedCombatRules:[316,1,1,""],TBRangeCharacter:[316,1,1,""],TBRangeObject:[316,1,1,""],TBRangeTurnHandler:[316,1,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.BattleCmdSet":{at_cmdset_creation:[316,3,1,""],key:[316,4,1,""],path:[316,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdApproach":{aliases:[316,4,1,""],func:[316,3,1,""],help_category:[316,4,1,""],key:[316,4,1,""],lock_storage:[316,4,1,""],rules:[316,4,1,""],search_index_entry:[316,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdAttack":{aliases:[316,4,1,""],func:[316,3,1,""],help_category:[316,4,1,""],key:[316,4,1,""],lock_storage:[316,4,1,""],rules:[316,4,1,""],search_index_entry:[316,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdCombatHelp":{aliases:[316,4,1,""],combat_help_text:[316,4,1,""],help_category:[316,4,1,""],key:[316,4,1,""],lock_storage:[316,4,1,""],rules:[316,4,1,""],search_index_entry:[316,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdDisengage":{aliases:[316,4,1,""],help_category:[316,4,1,""],key:[316,4,1,""],lock_storage:[316,4,1,""],rules:[316,4,1,""],search_index_entry:[316,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdFight":{aliases:[316,4,1,""],combat_handler_class:[316,4,1,""],help_category:[316,4,1,""],key:[316,4,1,""],lock_storage:[316,4,1,""],rules:[316,4,1,""],search_index_entry:[316,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdPass":{aliases:[316,4,1,""],help_category:[316,4,1,""],key:[316,4,1,""],lock_storage:[316,4,1,""],rules:[316,4,1,""],search_index_entry:[316,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdRest":{aliases:[316,4,1,""],help_category:[316,4,1,""],key:[316,4,1,""],lock_storage:[316,4,1,""],rules:[316,4,1,""],search_index_entry:[316,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdShoot":{aliases:[316,4,1,""],func:[316,3,1,""],help_category:[316,4,1,""],key:[316,4,1,""],lock_storage:[316,4,1,""],rules:[316,4,1,""],search_index_entry:[316,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdStatus":{aliases:[316,4,1,""],func:[316,3,1,""],help_category:[316,4,1,""],key:[316,4,1,""],lock_storage:[316,4,1,""],rules:[316,4,1,""],search_index_entry:[316,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdWithdraw":{aliases:[316,4,1,""],func:[316,3,1,""],help_category:[316,4,1,""],key:[316,4,1,""],lock_storage:[316,4,1,""],rules:[316,4,1,""],search_index_entry:[316,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.RangedCombatRules":{approach:[316,3,1,""],combat_status_message:[316,3,1,""],distance_dec:[316,3,1,""],distance_inc:[316,3,1,""],get_attack:[316,3,1,""],get_defense:[316,3,1,""],get_range:[316,3,1,""],resolve_attack:[316,3,1,""],withdraw:[316,3,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.TBRangeCharacter":{DoesNotExist:[316,2,1,""],MultipleObjectsReturned:[316,2,1,""],path:[316,4,1,""],rules:[316,4,1,""],typename:[316,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.TBRangeObject":{DoesNotExist:[316,2,1,""],MultipleObjectsReturned:[316,2,1,""],at_drop:[316,3,1,""],at_get:[316,3,1,""],at_give:[316,3,1,""],at_pre_drop:[316,3,1,""],at_pre_get:[316,3,1,""],at_pre_give:[316,3,1,""],path:[316,4,1,""],typename:[316,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.TBRangeTurnHandler":{DoesNotExist:[316,2,1,""],MultipleObjectsReturned:[316,2,1,""],init_range:[316,3,1,""],join_fight:[316,3,1,""],join_rangefield:[316,3,1,""],path:[316,4,1,""],rules:[316,4,1,""],start_turn:[316,3,1,""],typename:[316,4,1,""]},"evennia.contrib.game_systems.turnbattle.tests":{TestTurnBattleBasicCmd:[317,1,1,""],TestTurnBattleBasicFunc:[317,1,1,""],TestTurnBattleEquipCmd:[317,1,1,""],TestTurnBattleEquipFunc:[317,1,1,""],TestTurnBattleItemsCmd:[317,1,1,""],TestTurnBattleItemsFunc:[317,1,1,""],TestTurnBattleMagicCmd:[317,1,1,""],TestTurnBattleMagicFunc:[317,1,1,""],TestTurnBattleRangeCmd:[317,1,1,""],TestTurnBattleRangeFunc:[317,1,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleBasicCmd":{test_turnbattlecmd:[317,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleBasicFunc":{setUp:[317,3,1,""],tearDown:[317,3,1,""],test_tbbasicfunc:[317,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleEquipCmd":{setUp:[317,3,1,""],test_turnbattleequipcmd:[317,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleEquipFunc":{setUp:[317,3,1,""],tearDown:[317,3,1,""],test_tbequipfunc:[317,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleItemsCmd":{setUp:[317,3,1,""],test_turnbattleitemcmd:[317,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleItemsFunc":{setUp:[317,3,1,""],tearDown:[317,3,1,""],test_tbitemsfunc:[317,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleMagicCmd":{test_turnbattlemagiccmd:[317,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleMagicFunc":{setUp:[317,3,1,""],tearDown:[317,3,1,""],test_tbbasicfunc:[317,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleRangeCmd":{test_turnbattlerangecmd:[317,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleRangeFunc":{setUp:[317,3,1,""],tearDown:[317,3,1,""],test_tbrangefunc:[317,3,1,""]},"evennia.contrib.grid":{extended_room:[319,0,0,"-"],simpledoor:[325,0,0,"-"],slow_exit:[328,0,0,"-"],wilderness:[331,0,0,"-"],xyzgrid:[334,0,0,"-"]},"evennia.contrib.grid.extended_room":{extended_room:[320,0,0,"-"],tests:[321,0,0,"-"]},"evennia.contrib.grid.extended_room.extended_room":{CmdExtendedRoomDesc:[320,1,1,""],CmdExtendedRoomDetail:[320,1,1,""],CmdExtendedRoomGameTime:[320,1,1,""],CmdExtendedRoomLook:[320,1,1,""],ExtendedRoom:[320,1,1,""],ExtendedRoomCmdSet:[320,1,1,""]},"evennia.contrib.grid.extended_room.extended_room.CmdExtendedRoomDesc":{aliases:[320,4,1,""],func:[320,3,1,""],help_category:[320,4,1,""],key:[320,4,1,""],lock_storage:[320,4,1,""],reset_times:[320,3,1,""],search_index_entry:[320,4,1,""],switch_options:[320,4,1,""]},"evennia.contrib.grid.extended_room.extended_room.CmdExtendedRoomDetail":{aliases:[320,4,1,""],func:[320,3,1,""],help_category:[320,4,1,""],key:[320,4,1,""],lock_storage:[320,4,1,""],locks:[320,4,1,""],search_index_entry:[320,4,1,""]},"evennia.contrib.grid.extended_room.extended_room.CmdExtendedRoomGameTime":{aliases:[320,4,1,""],func:[320,3,1,""],help_category:[320,4,1,""],key:[320,4,1,""],lock_storage:[320,4,1,""],locks:[320,4,1,""],search_index_entry:[320,4,1,""]},"evennia.contrib.grid.extended_room.extended_room.CmdExtendedRoomLook":{aliases:[320,4,1,""],func:[320,3,1,""],help_category:[320,4,1,""],key:[320,4,1,""],lock_storage:[320,4,1,""],search_index_entry:[320,4,1,""]},"evennia.contrib.grid.extended_room.extended_room.ExtendedRoom":{DoesNotExist:[320,2,1,""],MultipleObjectsReturned:[320,2,1,""],at_object_creation:[320,3,1,""],del_detail:[320,3,1,""],get_time_and_season:[320,3,1,""],path:[320,4,1,""],replace_timeslots:[320,3,1,""],return_appearance:[320,3,1,""],return_detail:[320,3,1,""],set_detail:[320,3,1,""],typename:[320,4,1,""],update_current_description:[320,3,1,""]},"evennia.contrib.grid.extended_room.extended_room.ExtendedRoomCmdSet":{at_cmdset_creation:[320,3,1,""],path:[320,4,1,""]},"evennia.contrib.grid.extended_room.tests":{ForceUTCDatetime:[321,1,1,""],TestExtendedRoom:[321,1,1,""]},"evennia.contrib.grid.extended_room.tests.ForceUTCDatetime":{fromtimestamp:[321,3,1,""]},"evennia.contrib.grid.extended_room.tests.TestExtendedRoom":{DETAIL_DESC:[321,4,1,""],OLD_DESC:[321,4,1,""],SPRING_DESC:[321,4,1,""],room_typeclass:[321,4,1,""],setUp:[321,3,1,""],test_cmdextendedlook:[321,3,1,""],test_cmdgametime:[321,3,1,""],test_cmdsetdetail:[321,3,1,""],test_return_appearance:[321,3,1,""],test_return_detail:[321,3,1,""]},"evennia.contrib.grid.simpledoor":{simpledoor:[326,0,0,"-"],tests:[327,0,0,"-"]},"evennia.contrib.grid.simpledoor.simpledoor":{CmdOpen:[326,1,1,""],CmdOpenCloseDoor:[326,1,1,""],SimpleDoor:[326,1,1,""],SimpleDoorCmdSet:[326,1,1,""]},"evennia.contrib.grid.simpledoor.simpledoor.CmdOpen":{aliases:[326,4,1,""],create_exit:[326,3,1,""],help_category:[326,4,1,""],key:[326,4,1,""],lock_storage:[326,4,1,""],search_index_entry:[326,4,1,""]},"evennia.contrib.grid.simpledoor.simpledoor.CmdOpenCloseDoor":{aliases:[326,4,1,""],func:[326,3,1,""],help_category:[326,4,1,""],key:[326,4,1,""],lock_storage:[326,4,1,""],locks:[326,4,1,""],search_index_entry:[326,4,1,""]},"evennia.contrib.grid.simpledoor.simpledoor.SimpleDoor":{"delete":[326,3,1,""],DoesNotExist:[326,2,1,""],MultipleObjectsReturned:[326,2,1,""],at_failed_traverse:[326,3,1,""],at_object_creation:[326,3,1,""],path:[326,4,1,""],setdesc:[326,3,1,""],setlock:[326,3,1,""],typename:[326,4,1,""]},"evennia.contrib.grid.simpledoor.simpledoor.SimpleDoorCmdSet":{at_cmdset_creation:[326,3,1,""],path:[326,4,1,""]},"evennia.contrib.grid.simpledoor.tests":{TestSimpleDoor:[327,1,1,""]},"evennia.contrib.grid.simpledoor.tests.TestSimpleDoor":{test_cmdopen:[327,3,1,""]},"evennia.contrib.grid.slow_exit":{slow_exit:[329,0,0,"-"],tests:[330,0,0,"-"]},"evennia.contrib.grid.slow_exit.slow_exit":{CmdSetSpeed:[329,1,1,""],CmdStop:[329,1,1,""],SlowExit:[329,1,1,""],SlowExitCmdSet:[329,1,1,""]},"evennia.contrib.grid.slow_exit.slow_exit.CmdSetSpeed":{aliases:[329,4,1,""],func:[329,3,1,""],help_category:[329,4,1,""],key:[329,4,1,""],lock_storage:[329,4,1,""],search_index_entry:[329,4,1,""]},"evennia.contrib.grid.slow_exit.slow_exit.CmdStop":{aliases:[329,4,1,""],func:[329,3,1,""],help_category:[329,4,1,""],key:[329,4,1,""],lock_storage:[329,4,1,""],search_index_entry:[329,4,1,""]},"evennia.contrib.grid.slow_exit.slow_exit.SlowExit":{DoesNotExist:[329,2,1,""],MultipleObjectsReturned:[329,2,1,""],at_traverse:[329,3,1,""],path:[329,4,1,""],typename:[329,4,1,""]},"evennia.contrib.grid.slow_exit.slow_exit.SlowExitCmdSet":{at_cmdset_creation:[329,3,1,""],path:[329,4,1,""]},"evennia.contrib.grid.slow_exit.tests":{TestSlowExit:[330,1,1,""]},"evennia.contrib.grid.slow_exit.tests.TestSlowExit":{test_exit:[330,3,1,""]},"evennia.contrib.grid.wilderness":{tests:[332,0,0,"-"],wilderness:[333,0,0,"-"]},"evennia.contrib.grid.wilderness.tests":{TestWilderness:[332,1,1,""]},"evennia.contrib.grid.wilderness.tests.TestWilderness":{get_wilderness_script:[332,3,1,""],setUp:[332,3,1,""],test_create_wilderness_custom_name:[332,3,1,""],test_create_wilderness_default_name:[332,3,1,""],test_enter_wilderness:[332,3,1,""],test_enter_wilderness_custom_coordinates:[332,3,1,""],test_enter_wilderness_custom_name:[332,3,1,""],test_get_new_coordinates:[332,3,1,""],test_room_creation:[332,3,1,""],test_wilderness_correct_exits:[332,3,1,""]},"evennia.contrib.grid.wilderness.wilderness":{WildernessExit:[333,1,1,""],WildernessMapProvider:[333,1,1,""],WildernessRoom:[333,1,1,""],WildernessScript:[333,1,1,""],create_wilderness:[333,5,1,""],enter_wilderness:[333,5,1,""],get_new_coordinates:[333,5,1,""]},"evennia.contrib.grid.wilderness.wilderness.WildernessExit":{DoesNotExist:[333,2,1,""],MultipleObjectsReturned:[333,2,1,""],at_traverse:[333,3,1,""],at_traverse_coordinates:[333,3,1,""],mapprovider:[333,3,1,""],path:[333,4,1,""],typename:[333,4,1,""],wilderness:[333,3,1,""]},"evennia.contrib.grid.wilderness.wilderness.WildernessMapProvider":{at_prepare_room:[333,3,1,""],exit_typeclass:[333,4,1,""],get_location_name:[333,3,1,""],is_valid_coordinates:[333,3,1,""],room_typeclass:[333,4,1,""]},"evennia.contrib.grid.wilderness.wilderness.WildernessRoom":{DoesNotExist:[333,2,1,""],MultipleObjectsReturned:[333,2,1,""],at_object_leave:[333,3,1,""],at_object_receive:[333,3,1,""],coordinates:[333,3,1,""],get_display_name:[333,3,1,""],location_name:[333,3,1,""],path:[333,4,1,""],set_active_coordinates:[333,3,1,""],typename:[333,4,1,""],wilderness:[333,3,1,""]},"evennia.contrib.grid.wilderness.wilderness.WildernessScript":{DoesNotExist:[333,2,1,""],MultipleObjectsReturned:[333,2,1,""],at_post_object_leave:[333,3,1,""],at_script_creation:[333,3,1,""],at_start:[333,3,1,""],get_obj_coordinates:[333,3,1,""],get_objs_at_coordinates:[333,3,1,""],is_valid_coordinates:[333,3,1,""],itemcoordinates:[333,3,1,""],mapprovider:[333,3,1,""],move_obj:[333,3,1,""],path:[333,4,1,""],typename:[333,4,1,""]},"evennia.contrib.grid.xyzgrid":{commands:[335,0,0,"-"],example:[336,0,0,"-"],launchcmd:[337,0,0,"-"],prototypes:[338,0,0,"-"],tests:[339,0,0,"-"],utils:[340,0,0,"-"],xymap:[341,0,0,"-"],xymap_legend:[342,0,0,"-"],xyzgrid:[343,0,0,"-"],xyzroom:[344,0,0,"-"]},"evennia.contrib.grid.xyzgrid.commands":{CmdGoto:[335,1,1,""],CmdMap:[335,1,1,""],CmdXYZOpen:[335,1,1,""],CmdXYZTeleport:[335,1,1,""],PathData:[335,1,1,""],XYZGridCmdSet:[335,1,1,""]},"evennia.contrib.grid.xyzgrid.commands.CmdGoto":{aliases:[335,4,1,""],auto_step_delay:[335,4,1,""],default_xyz_path_interrupt_msg:[335,4,1,""],func:[335,3,1,""],help_category:[335,4,1,""],key:[335,4,1,""],lock_storage:[335,4,1,""],locks:[335,4,1,""],search_index_entry:[335,4,1,""]},"evennia.contrib.grid.xyzgrid.commands.CmdMap":{aliases:[335,4,1,""],func:[335,3,1,""],help_category:[335,4,1,""],key:[335,4,1,""],lock_storage:[335,4,1,""],locks:[335,4,1,""],search_index_entry:[335,4,1,""]},"evennia.contrib.grid.xyzgrid.commands.CmdXYZOpen":{aliases:[335,4,1,""],help_category:[335,4,1,""],key:[335,4,1,""],lock_storage:[335,4,1,""],parse:[335,3,1,""],search_index_entry:[335,4,1,""]},"evennia.contrib.grid.xyzgrid.commands.CmdXYZTeleport":{aliases:[335,4,1,""],help_category:[335,4,1,""],key:[335,4,1,""],lock_storage:[335,4,1,""],parse:[335,3,1,""],search_index_entry:[335,4,1,""]},"evennia.contrib.grid.xyzgrid.commands.PathData":{directions:[335,4,1,""],step_sequence:[335,4,1,""],target:[335,4,1,""],task:[335,4,1,""],xymap:[335,4,1,""]},"evennia.contrib.grid.xyzgrid.commands.XYZGridCmdSet":{at_cmdset_creation:[335,3,1,""],key:[335,4,1,""],path:[335,4,1,""]},"evennia.contrib.grid.xyzgrid.example":{TransitionToCave:[336,1,1,""],TransitionToLargeTree:[336,1,1,""]},"evennia.contrib.grid.xyzgrid.example.TransitionToCave":{symbol:[336,4,1,""],target_map_xyz:[336,4,1,""]},"evennia.contrib.grid.xyzgrid.example.TransitionToLargeTree":{symbol:[336,4,1,""],target_map_xyz:[336,4,1,""]},"evennia.contrib.grid.xyzgrid.launchcmd":{xyzcommand:[337,5,1,""]},"evennia.contrib.grid.xyzgrid.tests":{Map12aTransition:[339,1,1,""],Map12bTransition:[339,1,1,""],TestBuildExampleGrid:[339,1,1,""],TestMap10:[339,1,1,""],TestMap11:[339,1,1,""],TestMap1:[339,1,1,""],TestMap2:[339,1,1,""],TestMap3:[339,1,1,""],TestMap4:[339,1,1,""],TestMap5:[339,1,1,""],TestMap6:[339,1,1,""],TestMap7:[339,1,1,""],TestMap8:[339,1,1,""],TestMap9:[339,1,1,""],TestMapStressTest:[339,1,1,""],TestXYZGrid:[339,1,1,""],TestXYZGridTransition:[339,1,1,""]},"evennia.contrib.grid.xyzgrid.tests.Map12aTransition":{symbol:[339,4,1,""],target_map_xyz:[339,4,1,""]},"evennia.contrib.grid.xyzgrid.tests.Map12bTransition":{symbol:[339,4,1,""],target_map_xyz:[339,4,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestBuildExampleGrid":{setUp:[339,3,1,""],tearDown:[339,3,1,""],test_build:[339,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap1":{test_get_shortest_path:[339,3,1,""],test_get_visual_range__nodes__character:[339,4,1,""],test_get_visual_range__nodes__character_0:[339,3,1,""],test_get_visual_range__nodes__character_1:[339,3,1,""],test_get_visual_range__nodes__character_2:[339,3,1,""],test_get_visual_range__nodes__character_3:[339,3,1,""],test_get_visual_range__nodes__character_4:[339,3,1,""],test_get_visual_range__scan:[339,4,1,""],test_get_visual_range__scan_0:[339,3,1,""],test_get_visual_range__scan_1:[339,3,1,""],test_get_visual_range__scan_2:[339,3,1,""],test_get_visual_range__scan_3:[339,3,1,""],test_get_visual_range__scan__character:[339,4,1,""],test_get_visual_range__scan__character_0:[339,3,1,""],test_get_visual_range__scan__character_1:[339,3,1,""],test_get_visual_range__scan__character_2:[339,3,1,""],test_get_visual_range__scan__character_3:[339,3,1,""],test_node_from_coord:[339,3,1,""],test_spawn:[339,3,1,""],test_str_output:[339,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap10":{map_data:[339,4,1,""],map_display:[339,4,1,""],test_paths:[339,4,1,""],test_paths_0:[339,3,1,""],test_paths_1:[339,3,1,""],test_shortest_path:[339,4,1,""],test_shortest_path_0:[339,3,1,""],test_shortest_path_1:[339,3,1,""],test_shortest_path_2:[339,3,1,""],test_shortest_path_3:[339,3,1,""],test_shortest_path_4:[339,3,1,""],test_shortest_path_5:[339,3,1,""],test_shortest_path_6:[339,3,1,""],test_shortest_path_7:[339,3,1,""],test_shortest_path_8:[339,3,1,""],test_shortest_path_9:[339,3,1,""],test_spawn:[339,3,1,""],test_str_output:[339,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap11":{map_data:[339,4,1,""],map_display:[339,4,1,""],test_get_visual_range_with_path:[339,4,1,""],test_get_visual_range_with_path_0:[339,3,1,""],test_get_visual_range_with_path_1:[339,3,1,""],test_paths:[339,4,1,""],test_paths_0:[339,3,1,""],test_paths_1:[339,3,1,""],test_shortest_path:[339,4,1,""],test_shortest_path_0:[339,3,1,""],test_shortest_path_1:[339,3,1,""],test_spawn:[339,3,1,""],test_str_output:[339,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap2":{map_data:[339,4,1,""],map_display:[339,4,1,""],test_extended_path_tracking__horizontal:[339,3,1,""],test_extended_path_tracking__vertical:[339,3,1,""],test_get_visual_range__nodes__character:[339,4,1,""],test_get_visual_range__nodes__character_0:[339,3,1,""],test_get_visual_range__nodes__character_1:[339,3,1,""],test_get_visual_range__nodes__character_2:[339,3,1,""],test_get_visual_range__nodes__character_3:[339,3,1,""],test_get_visual_range__nodes__character_4:[339,3,1,""],test_get_visual_range__nodes__character_5:[339,3,1,""],test_get_visual_range__nodes__character_6:[339,3,1,""],test_get_visual_range__nodes__character_7:[339,3,1,""],test_get_visual_range__nodes__character_8:[339,3,1,""],test_get_visual_range__nodes__character_9:[339,3,1,""],test_get_visual_range__scan__character:[339,4,1,""],test_get_visual_range__scan__character_0:[339,3,1,""],test_get_visual_range__scan__character_1:[339,3,1,""],test_get_visual_range__scan__character_2:[339,3,1,""],test_get_visual_range__scan__character_3:[339,3,1,""],test_node_from_coord:[339,3,1,""],test_shortest_path:[339,4,1,""],test_shortest_path_0:[339,3,1,""],test_shortest_path_1:[339,3,1,""],test_shortest_path_2:[339,3,1,""],test_shortest_path_3:[339,3,1,""],test_shortest_path_4:[339,3,1,""],test_shortest_path_5:[339,3,1,""],test_shortest_path_6:[339,3,1,""],test_spawn:[339,3,1,""],test_str_output:[339,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap3":{map_data:[339,4,1,""],map_display:[339,4,1,""],test_get_visual_range__nodes__character:[339,4,1,""],test_get_visual_range__nodes__character_0:[339,3,1,""],test_get_visual_range__nodes__character_1:[339,3,1,""],test_shortest_path:[339,4,1,""],test_shortest_path_00:[339,3,1,""],test_shortest_path_01:[339,3,1,""],test_shortest_path_02:[339,3,1,""],test_shortest_path_03:[339,3,1,""],test_shortest_path_04:[339,3,1,""],test_shortest_path_05:[339,3,1,""],test_shortest_path_06:[339,3,1,""],test_shortest_path_07:[339,3,1,""],test_shortest_path_08:[339,3,1,""],test_shortest_path_09:[339,3,1,""],test_shortest_path_10:[339,3,1,""],test_spawn:[339,3,1,""],test_str_output:[339,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap4":{map_data:[339,4,1,""],map_display:[339,4,1,""],test_shortest_path:[339,4,1,""],test_shortest_path_0:[339,3,1,""],test_shortest_path_1:[339,3,1,""],test_shortest_path_2:[339,3,1,""],test_shortest_path_3:[339,3,1,""],test_shortest_path_4:[339,3,1,""],test_shortest_path_5:[339,3,1,""],test_spawn:[339,3,1,""],test_str_output:[339,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap5":{map_data:[339,4,1,""],map_display:[339,4,1,""],test_shortest_path:[339,4,1,""],test_shortest_path_0:[339,3,1,""],test_shortest_path_1:[339,3,1,""],test_shortest_path_2:[339,3,1,""],test_shortest_path_3:[339,3,1,""],test_spawn:[339,3,1,""],test_str_output:[339,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap6":{map_data:[339,4,1,""],map_display:[339,4,1,""],test_shortest_path:[339,4,1,""],test_shortest_path_0:[339,3,1,""],test_shortest_path_1:[339,3,1,""],test_shortest_path_2:[339,3,1,""],test_shortest_path_3:[339,3,1,""],test_shortest_path_4:[339,3,1,""],test_shortest_path_5:[339,3,1,""],test_shortest_path_6:[339,3,1,""],test_shortest_path_7:[339,3,1,""],test_spawn:[339,3,1,""],test_str_output:[339,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap7":{map_data:[339,4,1,""],map_display:[339,4,1,""],test_shortest_path:[339,4,1,""],test_shortest_path_0:[339,3,1,""],test_shortest_path_1:[339,3,1,""],test_shortest_path_2:[339,3,1,""],test_shortest_path_3:[339,3,1,""],test_spawn:[339,3,1,""],test_str_output:[339,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap8":{map_data:[339,4,1,""],map_display:[339,4,1,""],test_get_visual_range__nodes__character:[339,4,1,""],test_get_visual_range__nodes__character_0:[339,3,1,""],test_get_visual_range_with_path:[339,4,1,""],test_get_visual_range_with_path_0:[339,3,1,""],test_get_visual_range_with_path_1:[339,3,1,""],test_get_visual_range_with_path_2:[339,3,1,""],test_get_visual_range_with_path_3:[339,3,1,""],test_get_visual_range_with_path_4:[339,3,1,""],test_shortest_path:[339,4,1,""],test_shortest_path_0:[339,3,1,""],test_shortest_path_1:[339,3,1,""],test_shortest_path_2:[339,3,1,""],test_shortest_path_3:[339,3,1,""],test_shortest_path_4:[339,3,1,""],test_shortest_path_5:[339,3,1,""],test_shortest_path_6:[339,3,1,""],test_spawn:[339,3,1,""],test_str_output:[339,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap9":{map_data:[339,4,1,""],map_display:[339,4,1,""],test_shortest_path:[339,4,1,""],test_shortest_path_0:[339,3,1,""],test_shortest_path_1:[339,3,1,""],test_shortest_path_2:[339,3,1,""],test_shortest_path_3:[339,3,1,""],test_spawn:[339,3,1,""],test_str_output:[339,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMapStressTest":{test_grid_creation:[339,4,1,""],test_grid_creation_0:[339,3,1,""],test_grid_creation_1:[339,3,1,""],test_grid_pathfind:[339,4,1,""],test_grid_pathfind_0:[339,3,1,""],test_grid_pathfind_1:[339,3,1,""],test_grid_visibility:[339,4,1,""],test_grid_visibility_0:[339,3,1,""],test_grid_visibility_1:[339,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestXYZGrid":{setUp:[339,3,1,""],tearDown:[339,3,1,""],test_spawn:[339,3,1,""],test_str_output:[339,3,1,""],zcoord:[339,4,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestXYZGridTransition":{setUp:[339,3,1,""],tearDown:[339,3,1,""],test_shortest_path:[339,4,1,""],test_shortest_path_0:[339,3,1,""],test_shortest_path_1:[339,3,1,""],test_spawn:[339,3,1,""]},"evennia.contrib.grid.xyzgrid.utils":{MapError:[340,2,1,""],MapParserError:[340,2,1,""],MapTransition:[340,2,1,""]},"evennia.contrib.grid.xyzgrid.utils.MapError":{__init__:[340,3,1,""]},"evennia.contrib.grid.xyzgrid.xymap":{XYMap:[341,1,1,""]},"evennia.contrib.grid.xyzgrid.xymap.XYMap":{__init__:[341,3,1,""],calculate_path_matrix:[341,3,1,""],empty_symbol:[341,4,1,""],get_components_with_symbol:[341,3,1,""],get_node_from_coord:[341,3,1,""],get_shortest_path:[341,3,1,""],get_visual_range:[341,3,1,""],legend_key_exceptions:[341,4,1,""],log:[341,3,1,""],mapcorner_symbol:[341,4,1,""],max_pathfinding_length:[341,4,1,""],parse:[341,3,1,""],reload:[341,3,1,""],spawn_links:[341,3,1,""],spawn_nodes:[341,3,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend":{BasicMapNode:[342,1,1,""],BlockedMapLink:[342,1,1,""],CrossMapLink:[342,1,1,""],DownMapLink:[342,1,1,""],EWMapLink:[342,1,1,""],EWOneWayMapLink:[342,1,1,""],InterruptMapLink:[342,1,1,""],InterruptMapNode:[342,1,1,""],InvisibleSmartMapLink:[342,1,1,""],MapLink:[342,1,1,""],MapNode:[342,1,1,""],MapTransitionNode:[342,1,1,""],NESWMapLink:[342,1,1,""],NSMapLink:[342,1,1,""],NSOneWayMapLink:[342,1,1,""],PlusMapLink:[342,1,1,""],RouterMapLink:[342,1,1,""],SENWMapLink:[342,1,1,""],SNOneWayMapLink:[342,1,1,""],SmartMapLink:[342,1,1,""],SmartRerouterMapLink:[342,1,1,""],SmartTeleporterMapLink:[342,1,1,""],TeleporterMapLink:[342,1,1,""],TransitionMapNode:[342,1,1,""],UpMapLink:[342,1,1,""],WEOneWayMapLink:[342,1,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.BasicMapNode":{prototype:[342,4,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.BlockedMapLink":{prototype:[342,4,1,""],symbol:[342,4,1,""],weights:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.CrossMapLink":{directions:[342,4,1,""],prototype:[342,4,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.DownMapLink":{direction_aliases:[342,4,1,""],prototype:[342,4,1,""],spawn_aliases:[342,4,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.EWMapLink":{directions:[342,4,1,""],prototype:[342,4,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.EWOneWayMapLink":{directions:[342,4,1,""],prototype:[342,4,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.InterruptMapLink":{interrupt_path:[342,4,1,""],prototype:[342,4,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.InterruptMapNode":{display_symbol:[342,4,1,""],interrupt_path:[342,4,1,""],prototype:[342,4,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.InvisibleSmartMapLink":{direction_aliases:[342,4,1,""],display_symbol_aliases:[342,4,1,""],get_display_symbol:[342,3,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.MapLink":{__init__:[342,3,1,""],at_empty_target:[342,3,1,""],average_long_link_weights:[342,4,1,""],default_weight:[342,4,1,""],direction_aliases:[342,4,1,""],directions:[342,4,1,""],display_symbol:[342,4,1,""],generate_prototype_key:[342,3,1,""],get_direction:[342,3,1,""],get_display_symbol:[342,3,1,""],get_linked_neighbors:[342,3,1,""],get_weight:[342,3,1,""],interrupt_path:[342,4,1,""],multilink:[342,4,1,""],prototype:[342,4,1,""],spawn_aliases:[342,4,1,""],symbol:[342,4,1,""],traverse:[342,3,1,""],weights:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.MapNode":{__init__:[342,3,1,""],build_links:[342,3,1,""],direction_spawn_defaults:[342,4,1,""],display_symbol:[342,4,1,""],generate_prototype_key:[342,3,1,""],get_display_symbol:[342,3,1,""],get_exit_spawn_name:[342,3,1,""],get_spawn_xyz:[342,3,1,""],interrupt_path:[342,4,1,""],linkweights:[342,3,1,""],log:[342,3,1,""],multilink:[342,4,1,""],node_index:[342,4,1,""],prototype:[342,4,1,""],spawn:[342,3,1,""],spawn_links:[342,3,1,""],symbol:[342,4,1,""],unspawn:[342,3,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.MapTransitionNode":{display_symbol:[342,4,1,""],prototype:[342,4,1,""],symbol:[342,4,1,""],target_map_xyz:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.NESWMapLink":{directions:[342,4,1,""],prototype:[342,4,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.NSMapLink":{directions:[342,4,1,""],display_symbol:[342,4,1,""],prototype:[342,4,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.NSOneWayMapLink":{directions:[342,4,1,""],prototype:[342,4,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.PlusMapLink":{directions:[342,4,1,""],prototype:[342,4,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.RouterMapLink":{symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.SENWMapLink":{directions:[342,4,1,""],prototype:[342,4,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.SNOneWayMapLink":{directions:[342,4,1,""],prototype:[342,4,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.SmartMapLink":{get_direction:[342,3,1,""],multilink:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.SmartRerouterMapLink":{get_direction:[342,3,1,""],multilink:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.SmartTeleporterMapLink":{__init__:[342,3,1,""],at_empty_target:[342,3,1,""],direction_name:[342,4,1,""],display_symbol:[342,4,1,""],get_direction:[342,3,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.TeleporterMapLink":{symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.TransitionMapNode":{build_links:[342,3,1,""],display_symbol:[342,4,1,""],get_spawn_xyz:[342,3,1,""],symbol:[342,4,1,""],taget_map_xyz:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.UpMapLink":{direction_aliases:[342,4,1,""],prototype:[342,4,1,""],spawn_aliases:[342,4,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.WEOneWayMapLink":{directions:[342,4,1,""],prototype:[342,4,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xyzgrid":{XYZGrid:[343,1,1,""],get_xyzgrid:[343,5,1,""]},"evennia.contrib.grid.xyzgrid.xyzgrid.XYZGrid":{"delete":[343,3,1,""],DoesNotExist:[343,2,1,""],MultipleObjectsReturned:[343,2,1,""],add_maps:[343,3,1,""],all_maps:[343,3,1,""],at_script_creation:[343,3,1,""],get_exit:[343,3,1,""],get_map:[343,3,1,""],get_room:[343,3,1,""],grid:[343,3,1,""],log:[343,3,1,""],maps_from_module:[343,3,1,""],path:[343,4,1,""],reload:[343,3,1,""],remove_map:[343,3,1,""],spawn:[343,3,1,""],typename:[343,4,1,""]},"evennia.contrib.grid.xyzgrid.xyzroom":{XYZExit:[344,1,1,""],XYZExitManager:[344,1,1,""],XYZManager:[344,1,1,""],XYZRoom:[344,1,1,""]},"evennia.contrib.grid.xyzgrid.xyzroom.XYZExit":{DoesNotExist:[344,2,1,""],MultipleObjectsReturned:[344,2,1,""],create:[344,3,1,""],objects:[344,4,1,""],path:[344,4,1,""],typename:[344,4,1,""],xyz:[344,3,1,""],xyz_destination:[344,3,1,""],xyzgrid:[344,3,1,""]},"evennia.contrib.grid.xyzgrid.xyzroom.XYZExitManager":{filter_xyz_exit:[344,3,1,""],get_xyz_exit:[344,3,1,""]},"evennia.contrib.grid.xyzgrid.xyzroom.XYZManager":{filter_xyz:[344,3,1,""],get_xyz:[344,3,1,""]},"evennia.contrib.grid.xyzgrid.xyzroom.XYZRoom":{DoesNotExist:[344,2,1,""],MultipleObjectsReturned:[344,2,1,""],create:[344,3,1,""],get_display_name:[344,3,1,""],map_align:[344,4,1,""],map_character_symbol:[344,4,1,""],map_display:[344,4,1,""],map_fill_all:[344,4,1,""],map_mode:[344,4,1,""],map_separator_char:[344,4,1,""],map_target_path_style:[344,4,1,""],map_visual_range:[344,4,1,""],objects:[344,4,1,""],path:[344,4,1,""],return_appearance:[344,3,1,""],typename:[344,4,1,""],xymap:[344,3,1,""],xyz:[344,3,1,""],xyzgrid:[344,3,1,""]},"evennia.contrib.rpg":{dice:[346,0,0,"-"],health_bar:[349,0,0,"-"],rpsystem:[352,0,0,"-"],traits:[356,0,0,"-"]},"evennia.contrib.rpg.dice":{dice:[347,0,0,"-"],tests:[348,0,0,"-"]},"evennia.contrib.rpg.dice.dice":{CmdDice:[347,1,1,""],DiceCmdSet:[347,1,1,""],roll:[347,5,1,""],roll_dice:[347,5,1,""]},"evennia.contrib.rpg.dice.dice.CmdDice":{aliases:[347,4,1,""],func:[347,3,1,""],help_category:[347,4,1,""],key:[347,4,1,""],lock_storage:[347,4,1,""],locks:[347,4,1,""],search_index_entry:[347,4,1,""]},"evennia.contrib.rpg.dice.dice.DiceCmdSet":{at_cmdset_creation:[347,3,1,""],path:[347,4,1,""]},"evennia.contrib.rpg.dice.tests":{TestDice:[348,1,1,""]},"evennia.contrib.rpg.dice.tests.TestDice":{test_cmddice:[348,3,1,""],test_roll_dice:[348,3,1,""]},"evennia.contrib.rpg.health_bar":{health_bar:[350,0,0,"-"],tests:[351,0,0,"-"]},"evennia.contrib.rpg.health_bar.health_bar":{display_meter:[350,5,1,""]},"evennia.contrib.rpg.health_bar.tests":{TestHealthBar:[351,1,1,""]},"evennia.contrib.rpg.health_bar.tests.TestHealthBar":{test_healthbar:[351,3,1,""]},"evennia.contrib.rpg.rpsystem":{rplanguage:[353,0,0,"-"],rpsystem:[354,0,0,"-"],tests:[355,0,0,"-"]},"evennia.contrib.rpg.rpsystem.rplanguage":{LanguageError:[353,2,1,""],LanguageExistsError:[353,2,1,""],LanguageHandler:[353,1,1,""],add_language:[353,5,1,""],available_languages:[353,5,1,""],obfuscate_language:[353,5,1,""],obfuscate_whisper:[353,5,1,""]},"evennia.contrib.rpg.rpsystem.rplanguage.LanguageHandler":{DoesNotExist:[353,2,1,""],MultipleObjectsReturned:[353,2,1,""],add:[353,3,1,""],at_script_creation:[353,3,1,""],path:[353,4,1,""],translate:[353,3,1,""],typename:[353,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem":{CmdEmote:[354,1,1,""],CmdMask:[354,1,1,""],CmdPose:[354,1,1,""],CmdRecog:[354,1,1,""],CmdSay:[354,1,1,""],CmdSdesc:[354,1,1,""],ContribRPCharacter:[354,1,1,""],ContribRPObject:[354,1,1,""],ContribRPRoom:[354,1,1,""],EmoteError:[354,2,1,""],LanguageError:[354,2,1,""],RPCommand:[354,1,1,""],RPSystemCmdSet:[354,1,1,""],RecogError:[354,2,1,""],RecogHandler:[354,1,1,""],SdescError:[354,2,1,""],SdescHandler:[354,1,1,""],ordered_permutation_regex:[354,5,1,""],parse_language:[354,5,1,""],parse_sdescs_and_recogs:[354,5,1,""],regex_tuple_from_key_alias:[354,5,1,""],send_emote:[354,5,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.CmdEmote":{aliases:[354,4,1,""],arg_regex:[354,4,1,""],func:[354,3,1,""],help_category:[354,4,1,""],key:[354,4,1,""],lock_storage:[354,4,1,""],locks:[354,4,1,""],search_index_entry:[354,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.CmdMask":{aliases:[354,4,1,""],func:[354,3,1,""],help_category:[354,4,1,""],key:[354,4,1,""],lock_storage:[354,4,1,""],search_index_entry:[354,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.CmdPose":{aliases:[354,4,1,""],func:[354,3,1,""],help_category:[354,4,1,""],key:[354,4,1,""],lock_storage:[354,4,1,""],parse:[354,3,1,""],search_index_entry:[354,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.CmdRecog":{aliases:[354,4,1,""],func:[354,3,1,""],help_category:[354,4,1,""],key:[354,4,1,""],lock_storage:[354,4,1,""],parse:[354,3,1,""],search_index_entry:[354,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.CmdSay":{aliases:[354,4,1,""],arg_regex:[354,4,1,""],func:[354,3,1,""],help_category:[354,4,1,""],key:[354,4,1,""],lock_storage:[354,4,1,""],locks:[354,4,1,""],search_index_entry:[354,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.CmdSdesc":{aliases:[354,4,1,""],func:[354,3,1,""],help_category:[354,4,1,""],key:[354,4,1,""],lock_storage:[354,4,1,""],locks:[354,4,1,""],search_index_entry:[354,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.ContribRPCharacter":{DoesNotExist:[354,2,1,""],MultipleObjectsReturned:[354,2,1,""],at_object_creation:[354,3,1,""],at_pre_say:[354,3,1,""],get_display_name:[354,3,1,""],path:[354,4,1,""],process_language:[354,3,1,""],process_recog:[354,3,1,""],process_sdesc:[354,3,1,""],recog:[354,4,1,""],sdesc:[354,4,1,""],typename:[354,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.ContribRPObject":{DoesNotExist:[354,2,1,""],MultipleObjectsReturned:[354,2,1,""],at_object_creation:[354,3,1,""],get_display_name:[354,3,1,""],path:[354,4,1,""],return_appearance:[354,3,1,""],search:[354,3,1,""],typename:[354,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.ContribRPRoom":{DoesNotExist:[354,2,1,""],MultipleObjectsReturned:[354,2,1,""],path:[354,4,1,""],typename:[354,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.RPCommand":{aliases:[354,4,1,""],help_category:[354,4,1,""],key:[354,4,1,""],lock_storage:[354,4,1,""],parse:[354,3,1,""],search_index_entry:[354,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.RPSystemCmdSet":{at_cmdset_creation:[354,3,1,""],path:[354,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.RecogHandler":{__init__:[354,3,1,""],add:[354,3,1,""],all:[354,3,1,""],get:[354,3,1,""],get_regex_tuple:[354,3,1,""],remove:[354,3,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.SdescHandler":{__init__:[354,3,1,""],add:[354,3,1,""],get:[354,3,1,""],get_regex_tuple:[354,3,1,""]},"evennia.contrib.rpg.rpsystem.tests":{TestLanguage:[355,1,1,""],TestRPSystem:[355,1,1,""],TestRPSystemCommands:[355,1,1,""]},"evennia.contrib.rpg.rpsystem.tests.TestLanguage":{setUp:[355,3,1,""],tearDown:[355,3,1,""],test_available_languages:[355,3,1,""],test_faulty_language:[355,3,1,""],test_obfuscate_language:[355,3,1,""],test_obfuscate_whisper:[355,3,1,""]},"evennia.contrib.rpg.rpsystem.tests.TestRPSystem":{maxDiff:[355,4,1,""],parse_sdescs_and_recogs:[355,3,1,""],setUp:[355,3,1,""],test_ordered_permutation_regex:[355,3,1,""],test_parse_language:[355,3,1,""],test_recog_handler:[355,3,1,""],test_regex_tuple_from_key_alias:[355,3,1,""],test_rpsearch:[355,3,1,""],test_sdesc_handler:[355,3,1,""],test_send_case_sensitive_emote:[355,3,1,""],test_send_emote:[355,3,1,""]},"evennia.contrib.rpg.rpsystem.tests.TestRPSystemCommands":{setUp:[355,3,1,""],test_commands:[355,3,1,""]},"evennia.contrib.rpg.traits":{tests:[357,0,0,"-"],traits:[358,0,0,"-"]},"evennia.contrib.rpg.traits.tests":{DummyCharacter:[357,1,1,""],TestNumericTraitOperators:[357,1,1,""],TestTrait:[357,1,1,""],TestTraitCounter:[357,1,1,""],TestTraitCounterTimed:[357,1,1,""],TestTraitFields:[357,1,1,""],TestTraitGauge:[357,1,1,""],TestTraitGaugeTimed:[357,1,1,""],TestTraitStatic:[357,1,1,""],TraitHandlerTest:[357,1,1,""]},"evennia.contrib.rpg.traits.tests.DummyCharacter":{health:[357,4,1,""],hunting:[357,4,1,""],strength:[357,4,1,""]},"evennia.contrib.rpg.traits.tests.TestNumericTraitOperators":{setUp:[357,3,1,""],tearDown:[357,3,1,""],test_add_traits:[357,3,1,""],test_comparisons_numeric:[357,3,1,""],test_comparisons_traits:[357,3,1,""],test_floordiv:[357,3,1,""],test_mul_traits:[357,3,1,""],test_pos_shortcut:[357,3,1,""],test_sub_traits:[357,3,1,""]},"evennia.contrib.rpg.traits.tests.TestTrait":{setUp:[357,3,1,""],test_init:[357,3,1,""],test_repr:[357,3,1,""],test_trait_getset:[357,3,1,""],test_validate_input__fail:[357,3,1,""],test_validate_input__valid:[357,3,1,""]},"evennia.contrib.rpg.traits.tests.TestTraitCounter":{setUp:[357,3,1,""],test_boundaries__bigmod:[357,3,1,""],test_boundaries__change_boundaries:[357,3,1,""],test_boundaries__disable:[357,3,1,""],test_boundaries__inverse:[357,3,1,""],test_boundaries__minmax:[357,3,1,""],test_current:[357,3,1,""],test_delete:[357,3,1,""],test_descs:[357,3,1,""],test_init:[357,3,1,""],test_percentage:[357,3,1,""],test_value:[357,3,1,""]},"evennia.contrib.rpg.traits.tests.TestTraitCounterTimed":{setUp:[357,3,1,""],test_timer_rate:[357,3,1,""],test_timer_ratetarget:[357,3,1,""]},"evennia.contrib.rpg.traits.tests.TestTraitFields":{test_traitfields:[357,3,1,""]},"evennia.contrib.rpg.traits.tests.TestTraitGauge":{setUp:[357,3,1,""],test_boundaries__bigmod:[357,3,1,""],test_boundaries__change_boundaries:[357,3,1,""],test_boundaries__disable:[357,3,1,""],test_boundaries__inverse:[357,3,1,""],test_boundaries__minmax:[357,3,1,""],test_current:[357,3,1,""],test_delete:[357,3,1,""],test_descs:[357,3,1,""],test_init:[357,3,1,""],test_percentage:[357,3,1,""],test_value:[357,3,1,""]},"evennia.contrib.rpg.traits.tests.TestTraitGaugeTimed":{setUp:[357,3,1,""],test_timer_rate:[357,3,1,""],test_timer_ratetarget:[357,3,1,""]},"evennia.contrib.rpg.traits.tests.TestTraitStatic":{setUp:[357,3,1,""],test_delete:[357,3,1,""],test_init:[357,3,1,""],test_value:[357,3,1,""]},"evennia.contrib.rpg.traits.tests.TraitHandlerTest":{setUp:[357,3,1,""],test_add_trait:[357,3,1,""],test_all:[357,3,1,""],test_cache:[357,3,1,""],test_clear:[357,3,1,""],test_getting:[357,3,1,""],test_remove:[357,3,1,""],test_setting:[357,3,1,""],test_trait_db_connection:[357,3,1,""]},"evennia.contrib.rpg.traits.traits":{CounterTrait:[358,1,1,""],GaugeTrait:[358,1,1,""],MandatoryTraitKey:[358,1,1,""],StaticTrait:[358,1,1,""],Trait:[358,1,1,""],TraitException:[358,2,1,""],TraitHandler:[358,1,1,""],TraitProperty:[358,1,1,""]},"evennia.contrib.rpg.traits.traits.CounterTrait":{base:[358,3,1,""],current:[358,3,1,""],default_keys:[358,4,1,""],desc:[358,3,1,""],max:[358,3,1,""],min:[358,3,1,""],mod:[358,3,1,""],mult:[358,3,1,""],percent:[358,3,1,""],ratetarget:[358,3,1,""],reset:[358,3,1,""],trait_type:[358,4,1,""],validate_input:[358,3,1,""],value:[358,3,1,""]},"evennia.contrib.rpg.traits.traits.GaugeTrait":{base:[358,3,1,""],current:[358,3,1,""],default_keys:[358,4,1,""],max:[358,3,1,""],min:[358,3,1,""],mod:[358,3,1,""],mult:[358,3,1,""],percent:[358,3,1,""],reset:[358,3,1,""],trait_type:[358,4,1,""],value:[358,3,1,""]},"evennia.contrib.rpg.traits.traits.StaticTrait":{base:[358,3,1,""],default_keys:[358,4,1,""],mod:[358,3,1,""],mult:[358,3,1,""],trait_type:[358,4,1,""],value:[358,3,1,""]},"evennia.contrib.rpg.traits.traits.Trait":{__init__:[358,3,1,""],allow_extra_properties:[358,4,1,""],default_keys:[358,4,1,""],key:[358,3,1,""],name:[358,3,1,""],trait_type:[358,4,1,""],validate_input:[358,3,1,""],value:[358,3,1,""]},"evennia.contrib.rpg.traits.traits.TraitException":{__init__:[358,3,1,""]},"evennia.contrib.rpg.traits.traits.TraitHandler":{__init__:[358,3,1,""],add:[358,3,1,""],all:[358,3,1,""],clear:[358,3,1,""],get:[358,3,1,""],remove:[358,3,1,""]},"evennia.contrib.rpg.traits.traits.TraitProperty":{__init__:[358,3,1,""]},"evennia.contrib.tutorials":{batchprocessor:[360,0,0,"-"],bodyfunctions:[362,0,0,"-"],mirror:[365,0,0,"-"],red_button:[367,0,0,"-"],talking_npc:[369,0,0,"-"],tutorial_world:[372,0,0,"-"]},"evennia.contrib.tutorials.bodyfunctions":{bodyfunctions:[363,0,0,"-"],tests:[364,0,0,"-"]},"evennia.contrib.tutorials.bodyfunctions.bodyfunctions":{BodyFunctions:[363,1,1,""]},"evennia.contrib.tutorials.bodyfunctions.bodyfunctions.BodyFunctions":{DoesNotExist:[363,2,1,""],MultipleObjectsReturned:[363,2,1,""],at_repeat:[363,3,1,""],at_script_creation:[363,3,1,""],path:[363,4,1,""],send_random_message:[363,3,1,""],typename:[363,4,1,""]},"evennia.contrib.tutorials.bodyfunctions.tests":{TestBodyFunctions:[364,1,1,""]},"evennia.contrib.tutorials.bodyfunctions.tests.TestBodyFunctions":{script_typeclass:[364,4,1,""],setUp:[364,3,1,""],tearDown:[364,3,1,""],test_at_repeat:[364,3,1,""],test_send_random_message:[364,3,1,""]},"evennia.contrib.tutorials.mirror":{mirror:[366,0,0,"-"]},"evennia.contrib.tutorials.mirror.mirror":{TutorialMirror:[366,1,1,""]},"evennia.contrib.tutorials.mirror.mirror.TutorialMirror":{DoesNotExist:[366,2,1,""],MultipleObjectsReturned:[366,2,1,""],msg:[366,3,1,""],path:[366,4,1,""],return_appearance:[366,3,1,""],typename:[366,4,1,""]},"evennia.contrib.tutorials.red_button":{red_button:[368,0,0,"-"]},"evennia.contrib.tutorials.red_button.red_button":{BlindCmdSet:[368,1,1,""],CmdBlindHelp:[368,1,1,""],CmdBlindLook:[368,1,1,""],CmdCloseLid:[368,1,1,""],CmdNudge:[368,1,1,""],CmdOpenLid:[368,1,1,""],CmdPushLidClosed:[368,1,1,""],CmdPushLidOpen:[368,1,1,""],CmdSmashGlass:[368,1,1,""],LidClosedCmdSet:[368,1,1,""],LidOpenCmdSet:[368,1,1,""],RedButton:[368,1,1,""]},"evennia.contrib.tutorials.red_button.red_button.BlindCmdSet":{at_cmdset_creation:[368,3,1,""],key:[368,4,1,""],mergetype:[368,4,1,""],no_exits:[368,4,1,""],no_objs:[368,4,1,""],path:[368,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdBlindHelp":{aliases:[368,4,1,""],func:[368,3,1,""],help_category:[368,4,1,""],key:[368,4,1,""],lock_storage:[368,4,1,""],locks:[368,4,1,""],search_index_entry:[368,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdBlindLook":{aliases:[368,4,1,""],func:[368,3,1,""],help_category:[368,4,1,""],key:[368,4,1,""],lock_storage:[368,4,1,""],locks:[368,4,1,""],search_index_entry:[368,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdCloseLid":{aliases:[368,4,1,""],func:[368,3,1,""],help_category:[368,4,1,""],key:[368,4,1,""],lock_storage:[368,4,1,""],locks:[368,4,1,""],search_index_entry:[368,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdNudge":{aliases:[368,4,1,""],func:[368,3,1,""],help_category:[368,4,1,""],key:[368,4,1,""],lock_storage:[368,4,1,""],locks:[368,4,1,""],search_index_entry:[368,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdOpenLid":{aliases:[368,4,1,""],func:[368,3,1,""],help_category:[368,4,1,""],key:[368,4,1,""],lock_storage:[368,4,1,""],locks:[368,4,1,""],search_index_entry:[368,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdPushLidClosed":{aliases:[368,4,1,""],func:[368,3,1,""],help_category:[368,4,1,""],key:[368,4,1,""],lock_storage:[368,4,1,""],locks:[368,4,1,""],search_index_entry:[368,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdPushLidOpen":{aliases:[368,4,1,""],func:[368,3,1,""],help_category:[368,4,1,""],key:[368,4,1,""],lock_storage:[368,4,1,""],locks:[368,4,1,""],search_index_entry:[368,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdSmashGlass":{aliases:[368,4,1,""],func:[368,3,1,""],help_category:[368,4,1,""],key:[368,4,1,""],lock_storage:[368,4,1,""],locks:[368,4,1,""],search_index_entry:[368,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.LidClosedCmdSet":{at_cmdset_creation:[368,3,1,""],key:[368,4,1,""],path:[368,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.LidOpenCmdSet":{at_cmdset_creation:[368,3,1,""],key:[368,4,1,""],path:[368,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.RedButton":{DoesNotExist:[368,2,1,""],MultipleObjectsReturned:[368,2,1,""],at_object_creation:[368,3,1,""],auto_close_msg:[368,4,1,""],blind_target:[368,3,1,""],blink_msgs:[368,4,1,""],break_lamp:[368,3,1,""],desc_add_lamp_broken:[368,4,1,""],desc_closed_lid:[368,4,1,""],desc_open_lid:[368,4,1,""],lamp_breaks_msg:[368,4,1,""],path:[368,4,1,""],to_closed_state:[368,3,1,""],to_open_state:[368,3,1,""],typename:[368,4,1,""]},"evennia.contrib.tutorials.talking_npc":{talking_npc:[370,0,0,"-"],tests:[371,0,0,"-"]},"evennia.contrib.tutorials.talking_npc.talking_npc":{CmdTalk:[370,1,1,""],END:[370,5,1,""],TalkingCmdSet:[370,1,1,""],TalkingNPC:[370,1,1,""],info1:[370,5,1,""],info2:[370,5,1,""],info3:[370,5,1,""],menu_start_node:[370,5,1,""]},"evennia.contrib.tutorials.talking_npc.talking_npc.CmdTalk":{aliases:[370,4,1,""],func:[370,3,1,""],help_category:[370,4,1,""],key:[370,4,1,""],lock_storage:[370,4,1,""],locks:[370,4,1,""],search_index_entry:[370,4,1,""]},"evennia.contrib.tutorials.talking_npc.talking_npc.TalkingCmdSet":{at_cmdset_creation:[370,3,1,""],key:[370,4,1,""],path:[370,4,1,""]},"evennia.contrib.tutorials.talking_npc.talking_npc.TalkingNPC":{DoesNotExist:[370,2,1,""],MultipleObjectsReturned:[370,2,1,""],at_object_creation:[370,3,1,""],path:[370,4,1,""],typename:[370,4,1,""]},"evennia.contrib.tutorials.talking_npc.tests":{TestTalkingNPC:[371,1,1,""]},"evennia.contrib.tutorials.talking_npc.tests.TestTalkingNPC":{test_talkingnpc:[371,3,1,""]},"evennia.contrib.tutorials.tutorial_world":{intro_menu:[373,0,0,"-"],mob:[374,0,0,"-"],objects:[375,0,0,"-"],rooms:[376,0,0,"-"],tests:[377,0,0,"-"]},"evennia.contrib.tutorials.tutorial_world.intro_menu":{DemoCommandSetComms:[373,1,1,""],DemoCommandSetHelp:[373,1,1,""],DemoCommandSetRoom:[373,1,1,""],TutorialEvMenu:[373,1,1,""],do_nothing:[373,5,1,""],goto_cleanup_cmdsets:[373,5,1,""],goto_command_demo_comms:[373,5,1,""],goto_command_demo_help:[373,5,1,""],goto_command_demo_room:[373,5,1,""],init_menu:[373,5,1,""],send_testing_tagged:[373,5,1,""]},"evennia.contrib.tutorials.tutorial_world.intro_menu.DemoCommandSetComms":{at_cmdset_creation:[373,3,1,""],key:[373,4,1,""],no_exits:[373,4,1,""],no_objs:[373,4,1,""],path:[373,4,1,""],priority:[373,4,1,""]},"evennia.contrib.tutorials.tutorial_world.intro_menu.DemoCommandSetHelp":{at_cmdset_creation:[373,3,1,""],key:[373,4,1,""],path:[373,4,1,""],priority:[373,4,1,""]},"evennia.contrib.tutorials.tutorial_world.intro_menu.DemoCommandSetRoom":{at_cmdset_creation:[373,3,1,""],key:[373,4,1,""],no_exits:[373,4,1,""],no_objs:[373,4,1,""],path:[373,4,1,""],priority:[373,4,1,""]},"evennia.contrib.tutorials.tutorial_world.intro_menu.TutorialEvMenu":{close_menu:[373,3,1,""],options_formatter:[373,3,1,""]},"evennia.contrib.tutorials.tutorial_world.mob":{CmdMobOnOff:[374,1,1,""],Mob:[374,1,1,""],MobCmdSet:[374,1,1,""]},"evennia.contrib.tutorials.tutorial_world.mob.CmdMobOnOff":{aliases:[374,4,1,""],func:[374,3,1,""],help_category:[374,4,1,""],key:[374,4,1,""],lock_storage:[374,4,1,""],locks:[374,4,1,""],search_index_entry:[374,4,1,""]},"evennia.contrib.tutorials.tutorial_world.mob.Mob":{DoesNotExist:[374,2,1,""],MultipleObjectsReturned:[374,2,1,""],at_hit:[374,3,1,""],at_init:[374,3,1,""],at_new_arrival:[374,3,1,""],at_object_creation:[374,3,1,""],do_attack:[374,3,1,""],do_hunting:[374,3,1,""],do_patrol:[374,3,1,""],path:[374,4,1,""],set_alive:[374,3,1,""],set_dead:[374,3,1,""],start_attacking:[374,3,1,""],start_hunting:[374,3,1,""],start_idle:[374,3,1,""],start_patrolling:[374,3,1,""],typename:[374,4,1,""]},"evennia.contrib.tutorials.tutorial_world.mob.MobCmdSet":{at_cmdset_creation:[374,3,1,""],path:[374,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects":{CmdAttack:[375,1,1,""],CmdClimb:[375,1,1,""],CmdGetWeapon:[375,1,1,""],CmdLight:[375,1,1,""],CmdPressButton:[375,1,1,""],CmdRead:[375,1,1,""],CmdSetClimbable:[375,1,1,""],CmdSetCrumblingWall:[375,1,1,""],CmdSetLight:[375,1,1,""],CmdSetReadable:[375,1,1,""],CmdSetWeapon:[375,1,1,""],CmdSetWeaponRack:[375,1,1,""],CmdShiftRoot:[375,1,1,""],CrumblingWall:[375,1,1,""],LightSource:[375,1,1,""],Obelisk:[375,1,1,""],TutorialClimbable:[375,1,1,""],TutorialObject:[375,1,1,""],TutorialReadable:[375,1,1,""],TutorialWeapon:[375,1,1,""],TutorialWeaponRack:[375,1,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdAttack":{aliases:[375,4,1,""],func:[375,3,1,""],help_category:[375,4,1,""],key:[375,4,1,""],lock_storage:[375,4,1,""],locks:[375,4,1,""],search_index_entry:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdClimb":{aliases:[375,4,1,""],func:[375,3,1,""],help_category:[375,4,1,""],key:[375,4,1,""],lock_storage:[375,4,1,""],locks:[375,4,1,""],search_index_entry:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdGetWeapon":{aliases:[375,4,1,""],func:[375,3,1,""],help_category:[375,4,1,""],key:[375,4,1,""],lock_storage:[375,4,1,""],locks:[375,4,1,""],search_index_entry:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdLight":{aliases:[375,4,1,""],func:[375,3,1,""],help_category:[375,4,1,""],key:[375,4,1,""],lock_storage:[375,4,1,""],locks:[375,4,1,""],search_index_entry:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdPressButton":{aliases:[375,4,1,""],func:[375,3,1,""],help_category:[375,4,1,""],key:[375,4,1,""],lock_storage:[375,4,1,""],locks:[375,4,1,""],search_index_entry:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdRead":{aliases:[375,4,1,""],func:[375,3,1,""],help_category:[375,4,1,""],key:[375,4,1,""],lock_storage:[375,4,1,""],locks:[375,4,1,""],search_index_entry:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdSetClimbable":{at_cmdset_creation:[375,3,1,""],path:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdSetCrumblingWall":{at_cmdset_creation:[375,3,1,""],key:[375,4,1,""],path:[375,4,1,""],priority:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdSetLight":{at_cmdset_creation:[375,3,1,""],key:[375,4,1,""],path:[375,4,1,""],priority:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdSetReadable":{at_cmdset_creation:[375,3,1,""],path:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdSetWeapon":{at_cmdset_creation:[375,3,1,""],path:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdSetWeaponRack":{at_cmdset_creation:[375,3,1,""],key:[375,4,1,""],path:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdShiftRoot":{aliases:[375,4,1,""],func:[375,3,1,""],help_category:[375,4,1,""],key:[375,4,1,""],lock_storage:[375,4,1,""],locks:[375,4,1,""],parse:[375,3,1,""],search_index_entry:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CrumblingWall":{DoesNotExist:[375,2,1,""],MultipleObjectsReturned:[375,2,1,""],at_failed_traverse:[375,3,1,""],at_init:[375,3,1,""],at_object_creation:[375,3,1,""],at_post_traverse:[375,3,1,""],open_wall:[375,3,1,""],path:[375,4,1,""],reset:[375,3,1,""],return_appearance:[375,3,1,""],typename:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.LightSource":{DoesNotExist:[375,2,1,""],MultipleObjectsReturned:[375,2,1,""],at_init:[375,3,1,""],at_object_creation:[375,3,1,""],light:[375,3,1,""],path:[375,4,1,""],typename:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.Obelisk":{DoesNotExist:[375,2,1,""],MultipleObjectsReturned:[375,2,1,""],at_object_creation:[375,3,1,""],path:[375,4,1,""],return_appearance:[375,3,1,""],typename:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.TutorialClimbable":{DoesNotExist:[375,2,1,""],MultipleObjectsReturned:[375,2,1,""],at_object_creation:[375,3,1,""],path:[375,4,1,""],typename:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.TutorialObject":{DoesNotExist:[375,2,1,""],MultipleObjectsReturned:[375,2,1,""],at_object_creation:[375,3,1,""],path:[375,4,1,""],reset:[375,3,1,""],typename:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.TutorialReadable":{DoesNotExist:[375,2,1,""],MultipleObjectsReturned:[375,2,1,""],at_object_creation:[375,3,1,""],path:[375,4,1,""],typename:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.TutorialWeapon":{DoesNotExist:[375,2,1,""],MultipleObjectsReturned:[375,2,1,""],at_object_creation:[375,3,1,""],path:[375,4,1,""],reset:[375,3,1,""],typename:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.TutorialWeaponRack":{DoesNotExist:[375,2,1,""],MultipleObjectsReturned:[375,2,1,""],at_object_creation:[375,3,1,""],path:[375,4,1,""],produce_weapon:[375,3,1,""],typename:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms":{BridgeCmdSet:[376,1,1,""],BridgeRoom:[376,1,1,""],CmdBridgeHelp:[376,1,1,""],CmdDarkHelp:[376,1,1,""],CmdDarkNoMatch:[376,1,1,""],CmdEast:[376,1,1,""],CmdEvenniaIntro:[376,1,1,""],CmdLookBridge:[376,1,1,""],CmdLookDark:[376,1,1,""],CmdSetEvenniaIntro:[376,1,1,""],CmdTutorial:[376,1,1,""],CmdTutorialGiveUp:[376,1,1,""],CmdTutorialLook:[376,1,1,""],CmdTutorialSetDetail:[376,1,1,""],CmdWest:[376,1,1,""],DarkCmdSet:[376,1,1,""],DarkRoom:[376,1,1,""],IntroRoom:[376,1,1,""],OutroRoom:[376,1,1,""],TeleportRoom:[376,1,1,""],TutorialRoom:[376,1,1,""],TutorialRoomCmdSet:[376,1,1,""],TutorialStartExit:[376,1,1,""],WeatherRoom:[376,1,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.BridgeCmdSet":{at_cmdset_creation:[376,3,1,""],key:[376,4,1,""],path:[376,4,1,""],priority:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.BridgeRoom":{DoesNotExist:[376,2,1,""],MultipleObjectsReturned:[376,2,1,""],at_object_creation:[376,3,1,""],at_object_leave:[376,3,1,""],at_object_receive:[376,3,1,""],path:[376,4,1,""],typename:[376,4,1,""],update_weather:[376,3,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdBridgeHelp":{aliases:[376,4,1,""],func:[376,3,1,""],help_category:[376,4,1,""],key:[376,4,1,""],lock_storage:[376,4,1,""],locks:[376,4,1,""],search_index_entry:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdDarkHelp":{aliases:[376,4,1,""],func:[376,3,1,""],help_category:[376,4,1,""],key:[376,4,1,""],lock_storage:[376,4,1,""],locks:[376,4,1,""],search_index_entry:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdDarkNoMatch":{aliases:[376,4,1,""],func:[376,3,1,""],help_category:[376,4,1,""],key:[376,4,1,""],lock_storage:[376,4,1,""],locks:[376,4,1,""],search_index_entry:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdEast":{aliases:[376,4,1,""],func:[376,3,1,""],help_category:[376,4,1,""],key:[376,4,1,""],lock_storage:[376,4,1,""],locks:[376,4,1,""],search_index_entry:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdEvenniaIntro":{aliases:[376,4,1,""],func:[376,3,1,""],help_category:[376,4,1,""],key:[376,4,1,""],lock_storage:[376,4,1,""],search_index_entry:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdLookBridge":{aliases:[376,4,1,""],func:[376,3,1,""],help_category:[376,4,1,""],key:[376,4,1,""],lock_storage:[376,4,1,""],locks:[376,4,1,""],search_index_entry:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdLookDark":{aliases:[376,4,1,""],func:[376,3,1,""],help_category:[376,4,1,""],key:[376,4,1,""],lock_storage:[376,4,1,""],locks:[376,4,1,""],search_index_entry:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdSetEvenniaIntro":{at_cmdset_creation:[376,3,1,""],key:[376,4,1,""],path:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdTutorial":{aliases:[376,4,1,""],func:[376,3,1,""],help_category:[376,4,1,""],key:[376,4,1,""],lock_storage:[376,4,1,""],locks:[376,4,1,""],search_index_entry:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdTutorialGiveUp":{aliases:[376,4,1,""],func:[376,3,1,""],help_category:[376,4,1,""],key:[376,4,1,""],lock_storage:[376,4,1,""],search_index_entry:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdTutorialLook":{aliases:[376,4,1,""],func:[376,3,1,""],help_category:[376,4,1,""],key:[376,4,1,""],lock_storage:[376,4,1,""],search_index_entry:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdTutorialSetDetail":{aliases:[376,4,1,""],func:[376,3,1,""],help_category:[376,4,1,""],key:[376,4,1,""],lock_storage:[376,4,1,""],locks:[376,4,1,""],search_index_entry:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdWest":{aliases:[376,4,1,""],func:[376,3,1,""],help_category:[376,4,1,""],key:[376,4,1,""],lock_storage:[376,4,1,""],locks:[376,4,1,""],search_index_entry:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.DarkCmdSet":{at_cmdset_creation:[376,3,1,""],key:[376,4,1,""],mergetype:[376,4,1,""],path:[376,4,1,""],priority:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.DarkRoom":{DoesNotExist:[376,2,1,""],MultipleObjectsReturned:[376,2,1,""],at_init:[376,3,1,""],at_object_creation:[376,3,1,""],at_object_leave:[376,3,1,""],at_object_receive:[376,3,1,""],check_light_state:[376,3,1,""],path:[376,4,1,""],typename:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.IntroRoom":{DoesNotExist:[376,2,1,""],MultipleObjectsReturned:[376,2,1,""],at_object_creation:[376,3,1,""],at_object_receive:[376,3,1,""],path:[376,4,1,""],typename:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.OutroRoom":{DoesNotExist:[376,2,1,""],MultipleObjectsReturned:[376,2,1,""],at_object_creation:[376,3,1,""],at_object_leave:[376,3,1,""],at_object_receive:[376,3,1,""],path:[376,4,1,""],typename:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.TeleportRoom":{DoesNotExist:[376,2,1,""],MultipleObjectsReturned:[376,2,1,""],at_object_creation:[376,3,1,""],at_object_receive:[376,3,1,""],path:[376,4,1,""],typename:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.TutorialRoom":{DoesNotExist:[376,2,1,""],MultipleObjectsReturned:[376,2,1,""],at_object_creation:[376,3,1,""],at_object_receive:[376,3,1,""],path:[376,4,1,""],return_detail:[376,3,1,""],set_detail:[376,3,1,""],typename:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.TutorialRoomCmdSet":{at_cmdset_creation:[376,3,1,""],key:[376,4,1,""],path:[376,4,1,""],priority:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.TutorialStartExit":{DoesNotExist:[376,2,1,""],MultipleObjectsReturned:[376,2,1,""],at_object_creation:[376,3,1,""],path:[376,4,1,""],typename:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.WeatherRoom":{DoesNotExist:[376,2,1,""],MultipleObjectsReturned:[376,2,1,""],at_object_creation:[376,3,1,""],path:[376,4,1,""],typename:[376,4,1,""],update_weather:[376,3,1,""]},"evennia.contrib.tutorials.tutorial_world.tests":{TestTutorialWorldMob:[377,1,1,""],TestTutorialWorldObjects:[377,1,1,""],TestTutorialWorldRooms:[377,1,1,""]},"evennia.contrib.tutorials.tutorial_world.tests.TestTutorialWorldMob":{test_mob:[377,3,1,""]},"evennia.contrib.tutorials.tutorial_world.tests.TestTutorialWorldObjects":{test_climbable:[377,3,1,""],test_crumblingwall:[377,3,1,""],test_lightsource:[377,3,1,""],test_obelisk:[377,3,1,""],test_readable:[377,3,1,""],test_tutorialobj:[377,3,1,""],test_weapon:[377,3,1,""],test_weaponrack:[377,3,1,""]},"evennia.contrib.tutorials.tutorial_world.tests.TestTutorialWorldRooms":{test_bridgeroom:[377,3,1,""],test_cmdtutorial:[377,3,1,""],test_darkroom:[377,3,1,""],test_introroom:[377,3,1,""],test_outroroom:[377,3,1,""],test_teleportroom:[377,3,1,""],test_weatherroom:[377,3,1,""]},"evennia.contrib.utils":{auditing:[379,0,0,"-"],fieldfill:[383,0,0,"-"],random_string_generator:[385,0,0,"-"],tree_select:[388,0,0,"-"]},"evennia.contrib.utils.auditing":{outputs:[380,0,0,"-"],server:[381,0,0,"-"],tests:[382,0,0,"-"]},"evennia.contrib.utils.auditing.outputs":{to_file:[380,5,1,""],to_syslog:[380,5,1,""]},"evennia.contrib.utils.auditing.server":{AuditedServerSession:[381,1,1,""]},"evennia.contrib.utils.auditing.server.AuditedServerSession":{audit:[381,3,1,""],data_in:[381,3,1,""],data_out:[381,3,1,""],mask:[381,3,1,""]},"evennia.contrib.utils.auditing.tests":{AuditingTest:[382,1,1,""]},"evennia.contrib.utils.auditing.tests.AuditingTest":{setup_session:[382,3,1,""],test_audit:[382,3,1,""],test_mask:[382,3,1,""]},"evennia.contrib.utils.fieldfill":{fieldfill:[384,0,0,"-"]},"evennia.contrib.utils.fieldfill.fieldfill":{CmdTestMenu:[384,1,1,""],FieldEvMenu:[384,1,1,""],display_formdata:[384,5,1,""],form_template_to_dict:[384,5,1,""],init_delayed_message:[384,5,1,""],init_fill_field:[384,5,1,""],menunode_fieldfill:[384,5,1,""],sendmessage:[384,5,1,""],verify_online_player:[384,5,1,""]},"evennia.contrib.utils.fieldfill.fieldfill.CmdTestMenu":{aliases:[384,4,1,""],func:[384,3,1,""],help_category:[384,4,1,""],key:[384,4,1,""],lock_storage:[384,4,1,""],search_index_entry:[384,4,1,""]},"evennia.contrib.utils.fieldfill.fieldfill.FieldEvMenu":{node_formatter:[384,3,1,""]},"evennia.contrib.utils.random_string_generator":{random_string_generator:[386,0,0,"-"],tests:[387,0,0,"-"]},"evennia.contrib.utils.random_string_generator.random_string_generator":{ExhaustedGenerator:[386,2,1,""],RandomStringGenerator:[386,1,1,""],RandomStringGeneratorScript:[386,1,1,""],RejectedRegex:[386,2,1,""]},"evennia.contrib.utils.random_string_generator.random_string_generator.RandomStringGenerator":{__init__:[386,3,1,""],all:[386,3,1,""],clear:[386,3,1,""],get:[386,3,1,""],remove:[386,3,1,""],script:[386,4,1,""]},"evennia.contrib.utils.random_string_generator.random_string_generator.RandomStringGeneratorScript":{DoesNotExist:[386,2,1,""],MultipleObjectsReturned:[386,2,1,""],at_script_creation:[386,3,1,""],path:[386,4,1,""],typename:[386,4,1,""]},"evennia.contrib.utils.random_string_generator.tests":{TestRandomStringGenerator:[387,1,1,""]},"evennia.contrib.utils.random_string_generator.tests.TestRandomStringGenerator":{test_generate:[387,3,1,""]},"evennia.contrib.utils.tree_select":{tests:[389,0,0,"-"],tree_select:[390,0,0,"-"]},"evennia.contrib.utils.tree_select.tests":{TestFieldFillFunc:[389,1,1,""],TestTreeSelectFunc:[389,1,1,""]},"evennia.contrib.utils.tree_select.tests.TestFieldFillFunc":{test_field_functions:[389,3,1,""]},"evennia.contrib.utils.tree_select.tests.TestTreeSelectFunc":{test_tree_functions:[389,3,1,""]},"evennia.contrib.utils.tree_select.tree_select":{CmdNameColor:[390,1,1,""],change_name_color:[390,5,1,""],dashcount:[390,5,1,""],go_up_one_category:[390,5,1,""],index_to_selection:[390,5,1,""],init_tree_selection:[390,5,1,""],is_category:[390,5,1,""],menunode_treeselect:[390,5,1,""],optlist_to_menuoptions:[390,5,1,""],parse_opts:[390,5,1,""]},"evennia.contrib.utils.tree_select.tree_select.CmdNameColor":{aliases:[390,4,1,""],func:[390,3,1,""],help_category:[390,4,1,""],key:[390,4,1,""],lock_storage:[390,4,1,""],search_index_entry:[390,4,1,""]},"evennia.help":{filehelp:[392,0,0,"-"],manager:[393,0,0,"-"],models:[394,0,0,"-"],utils:[395,0,0,"-"]},"evennia.help.filehelp":{FileHelpEntry:[392,1,1,""],FileHelpStorageHandler:[392,1,1,""]},"evennia.help.filehelp.FileHelpEntry":{__init__:[392,3,1,""],access:[392,3,1,""],aliases:[392,4,1,""],entrytext:[392,4,1,""],help_category:[392,4,1,""],key:[392,4,1,""],lock_storage:[392,4,1,""],locks:[392,4,1,""],search_index_entry:[392,3,1,""],web_get_admin_url:[392,3,1,""],web_get_detail_url:[392,3,1,""]},"evennia.help.filehelp.FileHelpStorageHandler":{__init__:[392,3,1,""],all:[392,3,1,""],load:[392,3,1,""]},"evennia.help.manager":{HelpEntryManager:[393,1,1,""]},"evennia.help.manager.HelpEntryManager":{all_to_category:[393,3,1,""],create_help:[393,3,1,""],find_apropos:[393,3,1,""],find_topicmatch:[393,3,1,""],find_topics_with_category:[393,3,1,""],find_topicsuggestions:[393,3,1,""],get_all_categories:[393,3,1,""],get_all_topics:[393,3,1,""],search_help:[393,3,1,""]},"evennia.help.models":{HelpEntry:[394,1,1,""]},"evennia.help.models.HelpEntry":{DoesNotExist:[394,2,1,""],MultipleObjectsReturned:[394,2,1,""],access:[394,3,1,""],aliases:[394,4,1,""],date_created:[394,3,1,""],db_date_created:[394,4,1,""],db_entrytext:[394,4,1,""],db_help_category:[394,4,1,""],db_key:[394,4,1,""],db_lock_storage:[394,4,1,""],db_tags:[394,4,1,""],entrytext:[394,3,1,""],get_absolute_url:[394,3,1,""],get_next_by_db_date_created:[394,3,1,""],get_previous_by_db_date_created:[394,3,1,""],help_category:[394,3,1,""],id:[394,4,1,""],key:[394,3,1,""],lock_storage:[394,3,1,""],locks:[394,4,1,""],objects:[394,4,1,""],path:[394,4,1,""],search_index_entry:[394,3,1,""],tags:[394,4,1,""],typename:[394,4,1,""],web_get_admin_url:[394,3,1,""],web_get_create_url:[394,3,1,""],web_get_delete_url:[394,3,1,""],web_get_detail_url:[394,3,1,""],web_get_update_url:[394,3,1,""]},"evennia.help.utils":{help_search_with_index:[395,5,1,""],parse_entry_for_subcategories:[395,5,1,""]},"evennia.locks":{lockfuncs:[397,0,0,"-"],lockhandler:[398,0,0,"-"]},"evennia.locks.lockfuncs":{"false":[397,5,1,""],"true":[397,5,1,""],all:[397,5,1,""],attr:[397,5,1,""],attr_eq:[397,5,1,""],attr_ge:[397,5,1,""],attr_gt:[397,5,1,""],attr_le:[397,5,1,""],attr_lt:[397,5,1,""],attr_ne:[397,5,1,""],dbref:[397,5,1,""],has_account:[397,5,1,""],holds:[397,5,1,""],id:[397,5,1,""],inside:[397,5,1,""],inside_rec:[397,5,1,""],is_ooc:[397,5,1,""],locattr:[397,5,1,""],none:[397,5,1,""],objattr:[397,5,1,""],objlocattr:[397,5,1,""],objtag:[397,5,1,""],pdbref:[397,5,1,""],perm:[397,5,1,""],perm_above:[397,5,1,""],pid:[397,5,1,""],pperm:[397,5,1,""],pperm_above:[397,5,1,""],self:[397,5,1,""],serversetting:[397,5,1,""],superuser:[397,5,1,""],tag:[397,5,1,""]},"evennia.locks.lockhandler":{LockException:[398,2,1,""],LockHandler:[398,1,1,""]},"evennia.locks.lockhandler.LockHandler":{"delete":[398,3,1,""],__init__:[398,3,1,""],add:[398,3,1,""],all:[398,3,1,""],append:[398,3,1,""],cache_lock_bypass:[398,3,1,""],check:[398,3,1,""],check_lockstring:[398,3,1,""],clear:[398,3,1,""],get:[398,3,1,""],remove:[398,3,1,""],replace:[398,3,1,""],reset:[398,3,1,""],validate:[398,3,1,""]},"evennia.objects":{manager:[400,0,0,"-"],models:[401,0,0,"-"],objects:[402,0,0,"-"]},"evennia.objects.manager":{ObjectDBManager:[400,1,1,""],ObjectManager:[400,1,1,""]},"evennia.objects.manager.ObjectDBManager":{clear_all_sessids:[400,3,1,""],copy_object:[400,3,1,""],create_object:[400,3,1,""],get_contents:[400,3,1,""],get_object_with_account:[400,3,1,""],get_objs_with_attr:[400,3,1,""],get_objs_with_attr_value:[400,3,1,""],get_objs_with_db_property:[400,3,1,""],get_objs_with_db_property_value:[400,3,1,""],get_objs_with_key_and_typeclass:[400,3,1,""],get_objs_with_key_or_alias:[400,3,1,""],object_search:[400,3,1,""],search:[400,3,1,""],search_object:[400,3,1,""]},"evennia.objects.models":{ContentsHandler:[401,1,1,""],ObjectDB:[401,1,1,""]},"evennia.objects.models.ContentsHandler":{__init__:[401,3,1,""],add:[401,3,1,""],clear:[401,3,1,""],get:[401,3,1,""],init:[401,3,1,""],load:[401,3,1,""],remove:[401,3,1,""]},"evennia.objects.models.ObjectDB":{DoesNotExist:[401,2,1,""],MultipleObjectsReturned:[401,2,1,""],account:[401,3,1,""],at_db_location_postsave:[401,3,1,""],cmdset_storage:[401,3,1,""],contents_cache:[401,4,1,""],db_account:[401,4,1,""],db_account_id:[401,4,1,""],db_attributes:[401,4,1,""],db_cmdset_storage:[401,4,1,""],db_date_created:[401,4,1,""],db_destination:[401,4,1,""],db_destination_id:[401,4,1,""],db_home:[401,4,1,""],db_home_id:[401,4,1,""],db_key:[401,4,1,""],db_location:[401,4,1,""],db_location_id:[401,4,1,""],db_lock_storage:[401,4,1,""],db_sessid:[401,4,1,""],db_tags:[401,4,1,""],db_typeclass_path:[401,4,1,""],destination:[401,3,1,""],destinations_set:[401,4,1,""],get_next_by_db_date_created:[401,3,1,""],get_previous_by_db_date_created:[401,3,1,""],hide_from_objects_set:[401,4,1,""],home:[401,3,1,""],homes_set:[401,4,1,""],id:[401,4,1,""],location:[401,3,1,""],locations_set:[401,4,1,""],object_subscription_set:[401,4,1,""],objects:[401,4,1,""],path:[401,4,1,""],receiver_object_set:[401,4,1,""],scriptdb_set:[401,4,1,""],sender_object_set:[401,4,1,""],sessid:[401,3,1,""],typename:[401,4,1,""]},"evennia.objects.objects":{DefaultCharacter:[402,1,1,""],DefaultExit:[402,1,1,""],DefaultObject:[402,1,1,""],DefaultRoom:[402,1,1,""],ExitCommand:[402,1,1,""],ObjectSessionHandler:[402,1,1,""]},"evennia.objects.objects.DefaultCharacter":{DoesNotExist:[402,2,1,""],MultipleObjectsReturned:[402,2,1,""],at_after_move:[402,3,1,""],at_post_move:[402,3,1,""],at_post_puppet:[402,3,1,""],at_post_unpuppet:[402,3,1,""],at_pre_puppet:[402,3,1,""],basetype_setup:[402,3,1,""],connection_time:[402,3,1,""],create:[402,3,1,""],idle_time:[402,3,1,""],lockstring:[402,4,1,""],normalize_name:[402,3,1,""],path:[402,4,1,""],typename:[402,4,1,""],validate_name:[402,3,1,""]},"evennia.objects.objects.DefaultExit":{DoesNotExist:[402,2,1,""],MultipleObjectsReturned:[402,2,1,""],at_cmdset_get:[402,3,1,""],at_failed_traverse:[402,3,1,""],at_init:[402,3,1,""],at_traverse:[402,3,1,""],basetype_setup:[402,3,1,""],create:[402,3,1,""],create_exit_cmdset:[402,3,1,""],exit_command:[402,4,1,""],lockstring:[402,4,1,""],path:[402,4,1,""],priority:[402,4,1,""],typename:[402,4,1,""]},"evennia.objects.objects.DefaultObject":{"delete":[402,3,1,""],DoesNotExist:[402,2,1,""],MultipleObjectsReturned:[402,2,1,""],access:[402,3,1,""],announce_move_from:[402,3,1,""],announce_move_to:[402,3,1,""],appearance_template:[402,4,1,""],at_access:[402,3,1,""],at_after_move:[402,3,1,""],at_after_traverse:[402,3,1,""],at_before_drop:[402,3,1,""],at_before_get:[402,3,1,""],at_before_give:[402,3,1,""],at_before_move:[402,3,1,""],at_before_say:[402,3,1,""],at_cmdset_get:[402,3,1,""],at_desc:[402,3,1,""],at_drop:[402,3,1,""],at_failed_traverse:[402,3,1,""],at_first_save:[402,3,1,""],at_get:[402,3,1,""],at_give:[402,3,1,""],at_init:[402,3,1,""],at_look:[402,3,1,""],at_msg_receive:[402,3,1,""],at_msg_send:[402,3,1,""],at_object_creation:[402,3,1,""],at_object_delete:[402,3,1,""],at_object_leave:[402,3,1,""],at_object_post_copy:[402,3,1,""],at_object_receive:[402,3,1,""],at_post_move:[402,3,1,""],at_post_puppet:[402,3,1,""],at_post_traverse:[402,3,1,""],at_post_unpuppet:[402,3,1,""],at_pre_drop:[402,3,1,""],at_pre_get:[402,3,1,""],at_pre_give:[402,3,1,""],at_pre_move:[402,3,1,""],at_pre_puppet:[402,3,1,""],at_pre_say:[402,3,1,""],at_pre_unpuppet:[402,3,1,""],at_say:[402,3,1,""],at_server_reload:[402,3,1,""],at_server_shutdown:[402,3,1,""],at_traverse:[402,3,1,""],basetype_posthook_setup:[402,3,1,""],basetype_setup:[402,3,1,""],clear_contents:[402,3,1,""],clear_exits:[402,3,1,""],cmdset:[402,4,1,""],contents:[402,3,1,""],contents_get:[402,3,1,""],contents_set:[402,3,1,""],copy:[402,3,1,""],create:[402,3,1,""],execute_cmd:[402,3,1,""],exits:[402,3,1,""],for_contents:[402,3,1,""],get_content_names:[402,3,1,""],get_display_name:[402,3,1,""],get_numbered_name:[402,3,1,""],get_visible_contents:[402,3,1,""],has_account:[402,3,1,""],is_connected:[402,3,1,""],is_superuser:[402,3,1,""],lockstring:[402,4,1,""],move_to:[402,3,1,""],msg:[402,3,1,""],msg_contents:[402,3,1,""],nicks:[402,4,1,""],objects:[402,4,1,""],path:[402,4,1,""],return_appearance:[402,3,1,""],scripts:[402,4,1,""],search:[402,3,1,""],search_account:[402,3,1,""],sessions:[402,4,1,""],typename:[402,4,1,""]},"evennia.objects.objects.DefaultRoom":{DoesNotExist:[402,2,1,""],MultipleObjectsReturned:[402,2,1,""],basetype_setup:[402,3,1,""],create:[402,3,1,""],lockstring:[402,4,1,""],path:[402,4,1,""],typename:[402,4,1,""]},"evennia.objects.objects.ExitCommand":{aliases:[402,4,1,""],func:[402,3,1,""],get_extra_info:[402,3,1,""],help_category:[402,4,1,""],key:[402,4,1,""],lock_storage:[402,4,1,""],obj:[402,4,1,""],search_index_entry:[402,4,1,""]},"evennia.objects.objects.ObjectSessionHandler":{__init__:[402,3,1,""],add:[402,3,1,""],all:[402,3,1,""],clear:[402,3,1,""],count:[402,3,1,""],get:[402,3,1,""],remove:[402,3,1,""]},"evennia.prototypes":{menus:[404,0,0,"-"],protfuncs:[405,0,0,"-"],prototypes:[406,0,0,"-"],spawner:[407,0,0,"-"]},"evennia.prototypes.menus":{OLCMenu:[404,1,1,""],node_apply_diff:[404,5,1,""],node_destination:[404,5,1,""],node_examine_entity:[404,5,1,""],node_home:[404,5,1,""],node_index:[404,5,1,""],node_key:[404,5,1,""],node_location:[404,5,1,""],node_prototype_desc:[404,5,1,""],node_prototype_key:[404,5,1,""],node_prototype_save:[404,5,1,""],node_prototype_spawn:[404,5,1,""],node_validate_prototype:[404,5,1,""],start_olc:[404,5,1,""]},"evennia.prototypes.menus.OLCMenu":{display_helptext:[404,3,1,""],helptext_formatter:[404,3,1,""],nodetext_formatter:[404,3,1,""],options_formatter:[404,3,1,""]},"evennia.prototypes.protfuncs":{protfunc_callable_protkey:[405,5,1,""]},"evennia.prototypes.prototypes":{DbPrototype:[406,1,1,""],PermissionError:[406,2,1,""],PrototypeEvMore:[406,1,1,""],ValidationError:[406,2,1,""],check_permission:[406,5,1,""],create_prototype:[406,5,1,""],delete_prototype:[406,5,1,""],format_available_protfuncs:[406,5,1,""],homogenize_prototype:[406,5,1,""],init_spawn_value:[406,5,1,""],list_prototypes:[406,5,1,""],load_module_prototypes:[406,5,1,""],protfunc_parser:[406,5,1,""],prototype_to_str:[406,5,1,""],save_prototype:[406,5,1,""],search_objects_with_prototype:[406,5,1,""],search_prototype:[406,5,1,""],validate_prototype:[406,5,1,""],value_to_obj:[406,5,1,""],value_to_obj_or_any:[406,5,1,""]},"evennia.prototypes.prototypes.DbPrototype":{DoesNotExist:[406,2,1,""],MultipleObjectsReturned:[406,2,1,""],at_script_creation:[406,3,1,""],path:[406,4,1,""],prototype:[406,3,1,""],typename:[406,4,1,""]},"evennia.prototypes.prototypes.PrototypeEvMore":{__init__:[406,3,1,""],init_pages:[406,3,1,""],page_formatter:[406,3,1,""],prototype_paginator:[406,3,1,""]},"evennia.prototypes.spawner":{Unset:[407,1,1,""],batch_create_object:[407,5,1,""],batch_update_objects_with_prototype:[407,5,1,""],flatten_diff:[407,5,1,""],flatten_prototype:[407,5,1,""],format_diff:[407,5,1,""],prototype_diff:[407,5,1,""],prototype_diff_from_object:[407,5,1,""],prototype_from_object:[407,5,1,""],spawn:[407,5,1,""]},"evennia.scripts":{manager:[409,0,0,"-"],models:[410,0,0,"-"],monitorhandler:[411,0,0,"-"],scripthandler:[412,0,0,"-"],scripts:[413,0,0,"-"],taskhandler:[414,0,0,"-"],tickerhandler:[415,0,0,"-"]},"evennia.scripts.manager":{ScriptDBManager:[409,1,1,""],ScriptManager:[409,1,1,""]},"evennia.scripts.manager.ScriptDBManager":{copy_script:[409,3,1,""],create_script:[409,3,1,""],delete_script:[409,3,1,""],get_all_scripts:[409,3,1,""],get_all_scripts_on_obj:[409,3,1,""],script_search:[409,3,1,""],search_script:[409,3,1,""],update_scripts_after_server_start:[409,3,1,""]},"evennia.scripts.models":{ScriptDB:[410,1,1,""]},"evennia.scripts.models.ScriptDB":{DoesNotExist:[410,2,1,""],MultipleObjectsReturned:[410,2,1,""],account:[410,3,1,""],db_account:[410,4,1,""],db_account_id:[410,4,1,""],db_attributes:[410,4,1,""],db_date_created:[410,4,1,""],db_desc:[410,4,1,""],db_interval:[410,4,1,""],db_is_active:[410,4,1,""],db_key:[410,4,1,""],db_lock_storage:[410,4,1,""],db_obj:[410,4,1,""],db_obj_id:[410,4,1,""],db_persistent:[410,4,1,""],db_repeats:[410,4,1,""],db_start_delay:[410,4,1,""],db_tags:[410,4,1,""],db_typeclass_path:[410,4,1,""],desc:[410,3,1,""],get_next_by_db_date_created:[410,3,1,""],get_previous_by_db_date_created:[410,3,1,""],id:[410,4,1,""],interval:[410,3,1,""],is_active:[410,3,1,""],obj:[410,3,1,""],object:[410,3,1,""],objects:[410,4,1,""],path:[410,4,1,""],persistent:[410,3,1,""],receiver_script_set:[410,4,1,""],repeats:[410,3,1,""],sender_script_set:[410,4,1,""],start_delay:[410,3,1,""],typename:[410,4,1,""]},"evennia.scripts.monitorhandler":{MonitorHandler:[411,1,1,""]},"evennia.scripts.monitorhandler.MonitorHandler":{__init__:[411,3,1,""],add:[411,3,1,""],all:[411,3,1,""],at_update:[411,3,1,""],clear:[411,3,1,""],remove:[411,3,1,""],restore:[411,3,1,""],save:[411,3,1,""]},"evennia.scripts.scripthandler":{ScriptHandler:[412,1,1,""]},"evennia.scripts.scripthandler.ScriptHandler":{"delete":[412,3,1,""],__init__:[412,3,1,""],add:[412,3,1,""],all:[412,3,1,""],get:[412,3,1,""],start:[412,3,1,""],stop:[412,3,1,""]},"evennia.scripts.scripts":{DefaultScript:[413,1,1,""],DoNothing:[413,1,1,""],Store:[413,1,1,""]},"evennia.scripts.scripts.DefaultScript":{DoesNotExist:[413,2,1,""],MultipleObjectsReturned:[413,2,1,""],at_pause:[413,3,1,""],at_repeat:[413,3,1,""],at_script_creation:[413,3,1,""],at_script_delete:[413,3,1,""],at_server_reload:[413,3,1,""],at_server_shutdown:[413,3,1,""],at_server_start:[413,3,1,""],at_start:[413,3,1,""],at_stop:[413,3,1,""],create:[413,3,1,""],is_valid:[413,3,1,""],path:[413,4,1,""],typename:[413,4,1,""]},"evennia.scripts.scripts.DoNothing":{DoesNotExist:[413,2,1,""],MultipleObjectsReturned:[413,2,1,""],at_script_creation:[413,3,1,""],path:[413,4,1,""],typename:[413,4,1,""]},"evennia.scripts.scripts.Store":{DoesNotExist:[413,2,1,""],MultipleObjectsReturned:[413,2,1,""],at_script_creation:[413,3,1,""],path:[413,4,1,""],typename:[413,4,1,""]},"evennia.scripts.taskhandler":{TaskHandler:[414,1,1,""],TaskHandlerTask:[414,1,1,""],handle_error:[414,5,1,""]},"evennia.scripts.taskhandler.TaskHandler":{__init__:[414,3,1,""],active:[414,3,1,""],add:[414,3,1,""],call_task:[414,3,1,""],cancel:[414,3,1,""],clean_stale_tasks:[414,3,1,""],clear:[414,3,1,""],create_delays:[414,3,1,""],do_task:[414,3,1,""],exists:[414,3,1,""],get_deferred:[414,3,1,""],load:[414,3,1,""],remove:[414,3,1,""],save:[414,3,1,""]},"evennia.scripts.taskhandler.TaskHandlerTask":{__init__:[414,3,1,""],active:[414,3,1,"id6"],call:[414,3,1,"id3"],called:[414,3,1,""],cancel:[414,3,1,"id5"],do_task:[414,3,1,"id2"],exists:[414,3,1,"id7"],get_deferred:[414,3,1,""],get_id:[414,3,1,"id8"],pause:[414,3,1,"id0"],paused:[414,3,1,""],remove:[414,3,1,"id4"],unpause:[414,3,1,"id1"]},"evennia.scripts.tickerhandler":{Ticker:[415,1,1,""],TickerHandler:[415,1,1,""],TickerPool:[415,1,1,""]},"evennia.scripts.tickerhandler.Ticker":{__init__:[415,3,1,""],add:[415,3,1,""],remove:[415,3,1,""],stop:[415,3,1,""],validate:[415,3,1,""]},"evennia.scripts.tickerhandler.TickerHandler":{__init__:[415,3,1,""],add:[415,3,1,""],all:[415,3,1,""],all_display:[415,3,1,""],clear:[415,3,1,""],remove:[415,3,1,""],restore:[415,3,1,""],save:[415,3,1,""],ticker_pool_class:[415,4,1,""]},"evennia.scripts.tickerhandler.TickerPool":{__init__:[415,3,1,""],add:[415,3,1,""],remove:[415,3,1,""],stop:[415,3,1,""],ticker_class:[415,4,1,""]},"evennia.server":{amp_client:[417,0,0,"-"],connection_wizard:[418,0,0,"-"],deprecations:[419,0,0,"-"],evennia_launcher:[420,0,0,"-"],game_index_client:[421,0,0,"-"],initial_setup:[424,0,0,"-"],inputfuncs:[425,0,0,"-"],manager:[426,0,0,"-"],models:[427,0,0,"-"],portal:[428,0,0,"-"],profiling:[450,0,0,"-"],server:[458,0,0,"-"],serversession:[459,0,0,"-"],session:[460,0,0,"-"],sessionhandler:[461,0,0,"-"],signals:[462,0,0,"-"],throttle:[463,0,0,"-"],validators:[464,0,0,"-"],webserver:[465,0,0,"-"]},"evennia.server.amp_client":{AMPClientFactory:[417,1,1,""],AMPServerClientProtocol:[417,1,1,""]},"evennia.server.amp_client.AMPClientFactory":{__init__:[417,3,1,""],buildProtocol:[417,3,1,""],clientConnectionFailed:[417,3,1,""],clientConnectionLost:[417,3,1,""],factor:[417,4,1,""],initialDelay:[417,4,1,""],maxDelay:[417,4,1,""],noisy:[417,4,1,""],startedConnecting:[417,3,1,""]},"evennia.server.amp_client.AMPServerClientProtocol":{connectionMade:[417,3,1,""],data_to_portal:[417,3,1,""],send_AdminServer2Portal:[417,3,1,""],send_MsgServer2Portal:[417,3,1,""],server_receive_adminportal2server:[417,3,1,""],server_receive_msgportal2server:[417,3,1,""],server_receive_status:[417,3,1,""]},"evennia.server.connection_wizard":{ConnectionWizard:[418,1,1,""],node_game_index_fields:[418,5,1,""],node_game_index_start:[418,5,1,""],node_mssp_start:[418,5,1,""],node_start:[418,5,1,""],node_view_and_apply_settings:[418,5,1,""]},"evennia.server.connection_wizard.ConnectionWizard":{__init__:[418,3,1,""],ask_choice:[418,3,1,""],ask_continue:[418,3,1,""],ask_input:[418,3,1,""],ask_node:[418,3,1,""],ask_yesno:[418,3,1,""],display:[418,3,1,""]},"evennia.server.deprecations":{check_errors:[419,5,1,""],check_warnings:[419,5,1,""]},"evennia.server.evennia_launcher":{AMPLauncherProtocol:[420,1,1,""],MsgLauncher2Portal:[420,1,1,""],MsgStatus:[420,1,1,""],check_database:[420,5,1,""],check_main_evennia_dependencies:[420,5,1,""],collectstatic:[420,5,1,""],create_game_directory:[420,5,1,""],create_secret_key:[420,5,1,""],create_settings_file:[420,5,1,""],create_superuser:[420,5,1,""],del_pid:[420,5,1,""],error_check_python_modules:[420,5,1,""],evennia_version:[420,5,1,""],get_pid:[420,5,1,""],getenv:[420,5,1,""],init_game_directory:[420,5,1,""],kill:[420,5,1,""],list_settings:[420,5,1,""],main:[420,5,1,""],query_info:[420,5,1,""],query_status:[420,5,1,""],reboot_evennia:[420,5,1,""],reload_evennia:[420,5,1,""],run_connect_wizard:[420,5,1,""],run_custom_commands:[420,5,1,""],run_dummyrunner:[420,5,1,""],run_menu:[420,5,1,""],send_instruction:[420,5,1,""],set_gamedir:[420,5,1,""],show_version_info:[420,5,1,""],start_evennia:[420,5,1,""],start_only_server:[420,5,1,""],start_portal_interactive:[420,5,1,""],start_server_interactive:[420,5,1,""],stop_evennia:[420,5,1,""],stop_server_only:[420,5,1,""],tail_log_files:[420,5,1,""],wait_for_status:[420,5,1,""],wait_for_status_reply:[420,5,1,""]},"evennia.server.evennia_launcher.AMPLauncherProtocol":{__init__:[420,3,1,""],receive_status_from_portal:[420,3,1,""],wait_for_status:[420,3,1,""]},"evennia.server.evennia_launcher.MsgLauncher2Portal":{allErrors:[420,4,1,""],arguments:[420,4,1,""],commandName:[420,4,1,""],errors:[420,4,1,""],key:[420,4,1,""],response:[420,4,1,""],reverseErrors:[420,4,1,""]},"evennia.server.evennia_launcher.MsgStatus":{allErrors:[420,4,1,""],arguments:[420,4,1,""],commandName:[420,4,1,""],errors:[420,4,1,""],key:[420,4,1,""],response:[420,4,1,""],reverseErrors:[420,4,1,""]},"evennia.server.game_index_client":{client:[422,0,0,"-"],service:[423,0,0,"-"]},"evennia.server.game_index_client.client":{EvenniaGameIndexClient:[422,1,1,""],QuietHTTP11ClientFactory:[422,1,1,""],SimpleResponseReceiver:[422,1,1,""],StringProducer:[422,1,1,""]},"evennia.server.game_index_client.client.EvenniaGameIndexClient":{__init__:[422,3,1,""],handle_egd_response:[422,3,1,""],send_game_details:[422,3,1,""]},"evennia.server.game_index_client.client.QuietHTTP11ClientFactory":{noisy:[422,4,1,""]},"evennia.server.game_index_client.client.SimpleResponseReceiver":{__init__:[422,3,1,""],connectionLost:[422,3,1,""],dataReceived:[422,3,1,""]},"evennia.server.game_index_client.client.StringProducer":{__init__:[422,3,1,""],pauseProducing:[422,3,1,""],startProducing:[422,3,1,""],stopProducing:[422,3,1,""]},"evennia.server.game_index_client.service":{EvenniaGameIndexService:[423,1,1,""]},"evennia.server.game_index_client.service.EvenniaGameIndexService":{__init__:[423,3,1,""],name:[423,4,1,""],startService:[423,3,1,""],stopService:[423,3,1,""]},"evennia.server.initial_setup":{at_initial_setup:[424,5,1,""],collectstatic:[424,5,1,""],create_objects:[424,5,1,""],handle_setup:[424,5,1,""],reset_server:[424,5,1,""]},"evennia.server.inputfuncs":{"default":[425,5,1,""],bot_data_in:[425,5,1,""],client_gui:[425,5,1,""],client_options:[425,5,1,""],echo:[425,5,1,""],external_discord_hello:[425,5,1,""],get_client_options:[425,5,1,""],get_inputfuncs:[425,5,1,""],get_value:[425,5,1,""],hello:[425,5,1,""],login:[425,5,1,""],monitor:[425,5,1,""],monitored:[425,5,1,""],msdp_list:[425,5,1,""],msdp_report:[425,5,1,""],msdp_send:[425,5,1,""],msdp_unreport:[425,5,1,""],repeat:[425,5,1,""],supports_set:[425,5,1,""],text:[425,5,1,""],unmonitor:[425,5,1,""],unrepeat:[425,5,1,""],webclient_options:[425,5,1,""]},"evennia.server.manager":{ServerConfigManager:[426,1,1,""]},"evennia.server.manager.ServerConfigManager":{conf:[426,3,1,""]},"evennia.server.models":{ServerConfig:[427,1,1,""]},"evennia.server.models.ServerConfig":{DoesNotExist:[427,2,1,""],MultipleObjectsReturned:[427,2,1,""],db_key:[427,4,1,""],db_value:[427,4,1,""],id:[427,4,1,""],key:[427,3,1,""],objects:[427,4,1,""],path:[427,4,1,""],store:[427,3,1,""],typename:[427,4,1,""],value:[427,3,1,""]},"evennia.server.portal":{amp:[429,0,0,"-"],amp_server:[430,0,0,"-"],grapevine:[431,0,0,"-"],irc:[432,0,0,"-"],mccp:[433,0,0,"-"],mssp:[434,0,0,"-"],mxp:[435,0,0,"-"],naws:[436,0,0,"-"],portal:[437,0,0,"-"],portalsessionhandler:[438,0,0,"-"],rss:[439,0,0,"-"],ssh:[440,0,0,"-"],ssl:[441,0,0,"-"],suppress_ga:[442,0,0,"-"],telnet:[443,0,0,"-"],telnet_oob:[444,0,0,"-"],telnet_ssl:[445,0,0,"-"],tests:[446,0,0,"-"],ttype:[447,0,0,"-"],webclient:[448,0,0,"-"],webclient_ajax:[449,0,0,"-"]},"evennia.server.portal.amp":{AMPMultiConnectionProtocol:[429,1,1,""],AdminPortal2Server:[429,1,1,""],AdminServer2Portal:[429,1,1,""],Compressed:[429,1,1,""],FunctionCall:[429,1,1,""],MsgLauncher2Portal:[429,1,1,""],MsgPortal2Server:[429,1,1,""],MsgServer2Portal:[429,1,1,""],MsgStatus:[429,1,1,""],dumps:[429,5,1,""],loads:[429,5,1,""]},"evennia.server.portal.amp.AMPMultiConnectionProtocol":{__init__:[429,3,1,""],broadcast:[429,3,1,""],connectionLost:[429,3,1,""],connectionMade:[429,3,1,""],dataReceived:[429,3,1,""],data_in:[429,3,1,""],errback:[429,3,1,""],makeConnection:[429,3,1,""],receive_functioncall:[429,3,1,""],send_FunctionCall:[429,3,1,""],stringReceived:[429,3,1,""]},"evennia.server.portal.amp.AdminPortal2Server":{allErrors:[429,4,1,""],arguments:[429,4,1,""],commandName:[429,4,1,""],errors:[429,4,1,""],key:[429,4,1,""],response:[429,4,1,""],reverseErrors:[429,4,1,""]},"evennia.server.portal.amp.AdminServer2Portal":{allErrors:[429,4,1,""],arguments:[429,4,1,""],commandName:[429,4,1,""],errors:[429,4,1,""],key:[429,4,1,""],response:[429,4,1,""],reverseErrors:[429,4,1,""]},"evennia.server.portal.amp.Compressed":{fromBox:[429,3,1,""],fromString:[429,3,1,""],toBox:[429,3,1,""],toString:[429,3,1,""]},"evennia.server.portal.amp.FunctionCall":{allErrors:[429,4,1,""],arguments:[429,4,1,""],commandName:[429,4,1,""],errors:[429,4,1,""],key:[429,4,1,""],response:[429,4,1,""],reverseErrors:[429,4,1,""]},"evennia.server.portal.amp.MsgLauncher2Portal":{allErrors:[429,4,1,""],arguments:[429,4,1,""],commandName:[429,4,1,""],errors:[429,4,1,""],key:[429,4,1,""],response:[429,4,1,""],reverseErrors:[429,4,1,""]},"evennia.server.portal.amp.MsgPortal2Server":{allErrors:[429,4,1,""],arguments:[429,4,1,""],commandName:[429,4,1,""],errors:[429,4,1,""],key:[429,4,1,""],response:[429,4,1,""],reverseErrors:[429,4,1,""]},"evennia.server.portal.amp.MsgServer2Portal":{allErrors:[429,4,1,""],arguments:[429,4,1,""],commandName:[429,4,1,""],errors:[429,4,1,""],key:[429,4,1,""],response:[429,4,1,""],reverseErrors:[429,4,1,""]},"evennia.server.portal.amp.MsgStatus":{allErrors:[429,4,1,""],arguments:[429,4,1,""],commandName:[429,4,1,""],errors:[429,4,1,""],key:[429,4,1,""],response:[429,4,1,""],reverseErrors:[429,4,1,""]},"evennia.server.portal.amp_server":{AMPServerFactory:[430,1,1,""],AMPServerProtocol:[430,1,1,""],getenv:[430,5,1,""]},"evennia.server.portal.amp_server.AMPServerFactory":{__init__:[430,3,1,""],buildProtocol:[430,3,1,""],logPrefix:[430,3,1,""],noisy:[430,4,1,""]},"evennia.server.portal.amp_server.AMPServerProtocol":{connectionLost:[430,3,1,""],data_to_server:[430,3,1,""],get_status:[430,3,1,""],portal_receive_adminserver2portal:[430,3,1,""],portal_receive_launcher2portal:[430,3,1,""],portal_receive_server2portal:[430,3,1,""],portal_receive_status:[430,3,1,""],send_AdminPortal2Server:[430,3,1,""],send_MsgPortal2Server:[430,3,1,""],send_Status2Launcher:[430,3,1,""],start_server:[430,3,1,""],stop_server:[430,3,1,""],wait_for_disconnect:[430,3,1,""],wait_for_server_connect:[430,3,1,""]},"evennia.server.portal.grapevine":{GrapevineClient:[431,1,1,""],RestartingWebsocketServerFactory:[431,1,1,""]},"evennia.server.portal.grapevine.GrapevineClient":{__init__:[431,3,1,""],at_login:[431,3,1,""],data_in:[431,3,1,""],disconnect:[431,3,1,""],onClose:[431,3,1,""],onMessage:[431,3,1,""],onOpen:[431,3,1,""],send_authenticate:[431,3,1,""],send_channel:[431,3,1,""],send_default:[431,3,1,""],send_heartbeat:[431,3,1,""],send_subscribe:[431,3,1,""],send_unsubscribe:[431,3,1,""]},"evennia.server.portal.grapevine.RestartingWebsocketServerFactory":{__init__:[431,3,1,""],buildProtocol:[431,3,1,""],clientConnectionFailed:[431,3,1,""],clientConnectionLost:[431,3,1,""],factor:[431,4,1,""],initialDelay:[431,4,1,""],maxDelay:[431,4,1,""],reconnect:[431,3,1,""],start:[431,3,1,""],startedConnecting:[431,3,1,""]},"evennia.server.portal.irc":{IRCBot:[432,1,1,""],IRCBotFactory:[432,1,1,""],parse_ansi_to_irc:[432,5,1,""],parse_irc_to_ansi:[432,5,1,""]},"evennia.server.portal.irc.IRCBot":{action:[432,3,1,""],at_login:[432,3,1,""],channel:[432,4,1,""],data_in:[432,3,1,""],disconnect:[432,3,1,""],factory:[432,4,1,""],get_nicklist:[432,3,1,""],irc_RPL_ENDOFNAMES:[432,3,1,""],irc_RPL_NAMREPLY:[432,3,1,""],lineRate:[432,4,1,""],logger:[432,4,1,""],nickname:[432,4,1,""],pong:[432,3,1,""],privmsg:[432,3,1,""],send_channel:[432,3,1,""],send_default:[432,3,1,""],send_ping:[432,3,1,""],send_privmsg:[432,3,1,""],send_reconnect:[432,3,1,""],send_request_nicklist:[432,3,1,""],signedOn:[432,3,1,""],sourceURL:[432,4,1,""]},"evennia.server.portal.irc.IRCBotFactory":{__init__:[432,3,1,""],buildProtocol:[432,3,1,""],clientConnectionFailed:[432,3,1,""],clientConnectionLost:[432,3,1,""],factor:[432,4,1,""],initialDelay:[432,4,1,""],maxDelay:[432,4,1,""],reconnect:[432,3,1,""],start:[432,3,1,""],startedConnecting:[432,3,1,""]},"evennia.server.portal.mccp":{Mccp:[433,1,1,""],mccp_compress:[433,5,1,""]},"evennia.server.portal.mccp.Mccp":{__init__:[433,3,1,""],do_mccp:[433,3,1,""],no_mccp:[433,3,1,""]},"evennia.server.portal.mssp":{Mssp:[434,1,1,""]},"evennia.server.portal.mssp.Mssp":{__init__:[434,3,1,""],do_mssp:[434,3,1,""],get_player_count:[434,3,1,""],get_uptime:[434,3,1,""],no_mssp:[434,3,1,""]},"evennia.server.portal.mxp":{Mxp:[435,1,1,""],mxp_parse:[435,5,1,""]},"evennia.server.portal.mxp.Mxp":{__init__:[435,3,1,""],do_mxp:[435,3,1,""],no_mxp:[435,3,1,""]},"evennia.server.portal.naws":{Naws:[436,1,1,""]},"evennia.server.portal.naws.Naws":{__init__:[436,3,1,""],do_naws:[436,3,1,""],negotiate_sizes:[436,3,1,""],no_naws:[436,3,1,""]},"evennia.server.portal.portal":{Portal:[437,1,1,""],Websocket:[437,1,1,""]},"evennia.server.portal.portal.Portal":{__init__:[437,3,1,""],get_info_dict:[437,3,1,""],shutdown:[437,3,1,""]},"evennia.server.portal.portalsessionhandler":{PortalSessionHandler:[438,1,1,""]},"evennia.server.portal.portalsessionhandler.PortalSessionHandler":{__init__:[438,3,1,""],announce_all:[438,3,1,""],at_server_connection:[438,3,1,""],connect:[438,3,1,""],count_loggedin:[438,3,1,""],data_in:[438,3,1,""],data_out:[438,3,1,""],disconnect:[438,3,1,""],disconnect_all:[438,3,1,""],generate_sessid:[438,3,1,""],server_connect:[438,3,1,""],server_disconnect:[438,3,1,""],server_disconnect_all:[438,3,1,""],server_logged_in:[438,3,1,""],server_session_sync:[438,3,1,""],sessions_from_csessid:[438,3,1,""],sync:[438,3,1,""]},"evennia.server.portal.rss":{RSSBotFactory:[439,1,1,""],RSSReader:[439,1,1,""]},"evennia.server.portal.rss.RSSBotFactory":{__init__:[439,3,1,""],start:[439,3,1,""]},"evennia.server.portal.rss.RSSReader":{__init__:[439,3,1,""],data_in:[439,3,1,""],disconnect:[439,3,1,""],get_new:[439,3,1,""],update:[439,3,1,""]},"evennia.server.portal.ssh":{AccountDBPasswordChecker:[440,1,1,""],ExtraInfoAuthServer:[440,1,1,""],PassAvatarIdTerminalRealm:[440,1,1,""],SSHServerFactory:[440,1,1,""],SshProtocol:[440,1,1,""],TerminalSessionTransport_getPeer:[440,1,1,""],getKeyPair:[440,5,1,""],makeFactory:[440,5,1,""]},"evennia.server.portal.ssh.AccountDBPasswordChecker":{__init__:[440,3,1,""],credentialInterfaces:[440,4,1,""],noisy:[440,4,1,""],requestAvatarId:[440,3,1,""]},"evennia.server.portal.ssh.ExtraInfoAuthServer":{auth_password:[440,3,1,""],noisy:[440,4,1,""]},"evennia.server.portal.ssh.PassAvatarIdTerminalRealm":{noisy:[440,4,1,""]},"evennia.server.portal.ssh.SSHServerFactory":{logPrefix:[440,3,1,""],noisy:[440,4,1,""]},"evennia.server.portal.ssh.SshProtocol":{__init__:[440,3,1,""],at_login:[440,3,1,""],connectionLost:[440,3,1,""],connectionMade:[440,3,1,""],data_out:[440,3,1,""],disconnect:[440,3,1,""],getClientAddress:[440,3,1,""],handle_EOF:[440,3,1,""],handle_FF:[440,3,1,""],handle_INT:[440,3,1,""],handle_QUIT:[440,3,1,""],lineReceived:[440,3,1,""],noisy:[440,4,1,""],sendLine:[440,3,1,""],send_default:[440,3,1,""],send_prompt:[440,3,1,""],send_text:[440,3,1,""],terminalSize:[440,3,1,""]},"evennia.server.portal.ssh.TerminalSessionTransport_getPeer":{__init__:[440,3,1,""],noisy:[440,4,1,""]},"evennia.server.portal.ssl":{SSLProtocol:[441,1,1,""],getSSLContext:[441,5,1,""],verify_SSL_key_and_cert:[441,5,1,""]},"evennia.server.portal.ssl.SSLProtocol":{__init__:[441,3,1,""]},"evennia.server.portal.suppress_ga":{SuppressGA:[442,1,1,""]},"evennia.server.portal.suppress_ga.SuppressGA":{__init__:[442,3,1,""],will_suppress_ga:[442,3,1,""],wont_suppress_ga:[442,3,1,""]},"evennia.server.portal.telnet":{TelnetProtocol:[443,1,1,""],TelnetServerFactory:[443,1,1,""]},"evennia.server.portal.telnet.TelnetProtocol":{__init__:[443,3,1,""],applicationDataReceived:[443,3,1,""],at_login:[443,3,1,""],connectionLost:[443,3,1,""],connectionMade:[443,3,1,""],dataReceived:[443,3,1,""],data_in:[443,3,1,""],data_out:[443,3,1,""],disableLocal:[443,3,1,""],disableRemote:[443,3,1,""],disconnect:[443,3,1,""],enableLocal:[443,3,1,""],enableRemote:[443,3,1,""],handshake_done:[443,3,1,""],sendLine:[443,3,1,""],send_default:[443,3,1,""],send_prompt:[443,3,1,""],send_text:[443,3,1,""],toggle_nop_keepalive:[443,3,1,""]},"evennia.server.portal.telnet.TelnetServerFactory":{logPrefix:[443,3,1,""],noisy:[443,4,1,""]},"evennia.server.portal.telnet_oob":{TelnetOOB:[444,1,1,""]},"evennia.server.portal.telnet_oob.TelnetOOB":{__init__:[444,3,1,""],data_out:[444,3,1,""],decode_gmcp:[444,3,1,""],decode_msdp:[444,3,1,""],do_gmcp:[444,3,1,""],do_msdp:[444,3,1,""],encode_gmcp:[444,3,1,""],encode_msdp:[444,3,1,""],no_gmcp:[444,3,1,""],no_msdp:[444,3,1,""]},"evennia.server.portal.telnet_ssl":{SSLProtocol:[445,1,1,""],getSSLContext:[445,5,1,""],verify_or_create_SSL_key_and_cert:[445,5,1,""]},"evennia.server.portal.telnet_ssl.SSLProtocol":{__init__:[445,3,1,""]},"evennia.server.portal.tests":{TestAMPServer:[446,1,1,""],TestIRC:[446,1,1,""],TestTelnet:[446,1,1,""],TestWebSocket:[446,1,1,""]},"evennia.server.portal.tests.TestAMPServer":{setUp:[446,3,1,""],test_amp_in:[446,3,1,""],test_amp_out:[446,3,1,""],test_large_msg:[446,3,1,""]},"evennia.server.portal.tests.TestIRC":{test_bold:[446,3,1,""],test_colors:[446,3,1,""],test_identity:[446,3,1,""],test_italic:[446,3,1,""],test_plain_ansi:[446,3,1,""]},"evennia.server.portal.tests.TestTelnet":{setUp:[446,3,1,""],test_mudlet_ttype:[446,3,1,""]},"evennia.server.portal.tests.TestWebSocket":{setUp:[446,3,1,""],tearDown:[446,3,1,""],test_data_in:[446,3,1,""],test_data_out:[446,3,1,""]},"evennia.server.portal.ttype":{Ttype:[447,1,1,""]},"evennia.server.portal.ttype.Ttype":{__init__:[447,3,1,""],will_ttype:[447,3,1,""],wont_ttype:[447,3,1,""]},"evennia.server.portal.webclient":{WebSocketClient:[448,1,1,""]},"evennia.server.portal.webclient.WebSocketClient":{__init__:[448,3,1,""],at_login:[448,3,1,""],data_in:[448,3,1,""],disconnect:[448,3,1,""],get_client_session:[448,3,1,""],nonce:[448,4,1,""],onClose:[448,3,1,""],onMessage:[448,3,1,""],onOpen:[448,3,1,""],sendLine:[448,3,1,""],send_default:[448,3,1,""],send_prompt:[448,3,1,""],send_text:[448,3,1,""]},"evennia.server.portal.webclient_ajax":{AjaxWebClient:[449,1,1,""],AjaxWebClientSession:[449,1,1,""],LazyEncoder:[449,1,1,""],jsonify:[449,5,1,""]},"evennia.server.portal.webclient_ajax.AjaxWebClient":{__init__:[449,3,1,""],allowedMethods:[449,4,1,""],at_login:[449,3,1,""],client_disconnect:[449,3,1,""],get_browserstr:[449,3,1,""],get_client_sessid:[449,3,1,""],isLeaf:[449,4,1,""],lineSend:[449,3,1,""],mode_close:[449,3,1,""],mode_init:[449,3,1,""],mode_input:[449,3,1,""],mode_keepalive:[449,3,1,""],mode_receive:[449,3,1,""],render_POST:[449,3,1,""]},"evennia.server.portal.webclient_ajax.AjaxWebClientSession":{__init__:[449,3,1,""],at_login:[449,3,1,""],data_in:[449,3,1,""],data_out:[449,3,1,""],disconnect:[449,3,1,""],get_client_session:[449,3,1,""],send_default:[449,3,1,""],send_prompt:[449,3,1,""],send_text:[449,3,1,""]},"evennia.server.portal.webclient_ajax.LazyEncoder":{"default":[449,3,1,""]},"evennia.server.profiling":{dummyrunner:[451,0,0,"-"],dummyrunner_settings:[452,0,0,"-"],memplot:[453,0,0,"-"],settings_mixin:[454,0,0,"-"],test_queries:[455,0,0,"-"],tests:[456,0,0,"-"],timetrace:[457,0,0,"-"]},"evennia.server.profiling.dummyrunner":{CmdDummyRunnerEchoResponse:[451,1,1,""],DummyClient:[451,1,1,""],DummyFactory:[451,1,1,""],DummyRunnerCmdSet:[451,1,1,""],gidcounter:[451,5,1,""],idcounter:[451,5,1,""],makeiter:[451,5,1,""],start_all_dummy_clients:[451,5,1,""]},"evennia.server.profiling.dummyrunner.CmdDummyRunnerEchoResponse":{aliases:[451,4,1,""],func:[451,3,1,""],help_category:[451,4,1,""],key:[451,4,1,""],lock_storage:[451,4,1,""],search_index_entry:[451,4,1,""]},"evennia.server.profiling.dummyrunner.DummyClient":{connectionLost:[451,3,1,""],connectionMade:[451,3,1,""],counter:[451,3,1,""],dataReceived:[451,3,1,""],error:[451,3,1,""],logout:[451,3,1,""],report:[451,3,1,""],step:[451,3,1,""]},"evennia.server.profiling.dummyrunner.DummyFactory":{__init__:[451,3,1,""],initialDelay:[451,4,1,""],maxDelay:[451,4,1,""],noisy:[451,4,1,""],protocol:[451,4,1,""]},"evennia.server.profiling.dummyrunner.DummyRunnerCmdSet":{at_cmdset_creation:[451,3,1,""],path:[451,4,1,""]},"evennia.server.profiling.dummyrunner_settings":{c_creates_button:[452,5,1,""],c_creates_obj:[452,5,1,""],c_digs:[452,5,1,""],c_examines:[452,5,1,""],c_help:[452,5,1,""],c_idles:[452,5,1,""],c_login:[452,5,1,""],c_login_nodig:[452,5,1,""],c_logout:[452,5,1,""],c_looks:[452,5,1,""],c_measure_lag:[452,5,1,""],c_moves:[452,5,1,""],c_moves_n:[452,5,1,""],c_moves_s:[452,5,1,""],c_socialize:[452,5,1,""]},"evennia.server.profiling.memplot":{Memplot:[453,1,1,""]},"evennia.server.profiling.memplot.Memplot":{DoesNotExist:[453,2,1,""],MultipleObjectsReturned:[453,2,1,""],at_repeat:[453,3,1,""],at_script_creation:[453,3,1,""],path:[453,4,1,""],typename:[453,4,1,""]},"evennia.server.profiling.test_queries":{count_queries:[455,5,1,""]},"evennia.server.profiling.tests":{TestDummyrunnerSettings:[456,1,1,""],TestMemPlot:[456,1,1,""]},"evennia.server.profiling.tests.TestDummyrunnerSettings":{clear_client_lists:[456,3,1,""],perception_method_tests:[456,3,1,""],setUp:[456,3,1,""],test_c_creates_button:[456,3,1,""],test_c_creates_obj:[456,3,1,""],test_c_digs:[456,3,1,""],test_c_examines:[456,3,1,""],test_c_help:[456,3,1,""],test_c_login:[456,3,1,""],test_c_login_no_dig:[456,3,1,""],test_c_logout:[456,3,1,""],test_c_looks:[456,3,1,""],test_c_move_n:[456,3,1,""],test_c_move_s:[456,3,1,""],test_c_moves:[456,3,1,""],test_c_socialize:[456,3,1,""],test_idles:[456,3,1,""]},"evennia.server.profiling.tests.TestMemPlot":{test_memplot:[456,3,1,""]},"evennia.server.profiling.timetrace":{timetrace:[457,5,1,""]},"evennia.server.server":{Evennia:[458,1,1,""]},"evennia.server.server.Evennia":{__init__:[458,3,1,""],at_post_portal_sync:[458,3,1,""],at_server_cold_start:[458,3,1,""],at_server_cold_stop:[458,3,1,""],at_server_reload_start:[458,3,1,""],at_server_reload_stop:[458,3,1,""],at_server_start:[458,3,1,""],at_server_stop:[458,3,1,""],create_default_channels:[458,3,1,""],get_info_dict:[458,3,1,""],run_init_hooks:[458,3,1,""],run_initial_setup:[458,3,1,""],shutdown:[458,3,1,""],sqlite3_prep:[458,3,1,""],update_defaults:[458,3,1,""]},"evennia.server.serversession":{ServerSession:[459,1,1,""]},"evennia.server.serversession.ServerSession":{__init__:[459,3,1,""],access:[459,3,1,""],at_cmdset_get:[459,3,1,""],at_disconnect:[459,3,1,""],at_login:[459,3,1,""],at_sync:[459,3,1,""],attributes:[459,4,1,""],cmdset_storage:[459,3,1,""],data_in:[459,3,1,""],data_out:[459,3,1,""],db:[459,3,1,""],execute_cmd:[459,3,1,""],get_account:[459,3,1,""],get_character:[459,3,1,""],get_client_size:[459,3,1,""],get_puppet:[459,3,1,""],get_puppet_or_account:[459,3,1,""],id:[459,3,1,""],log:[459,3,1,""],msg:[459,3,1,""],nattributes:[459,4,1,""],ndb:[459,3,1,""],ndb_del:[459,3,1,""],ndb_get:[459,3,1,""],ndb_set:[459,3,1,""],update_flags:[459,3,1,""],update_session_counters:[459,3,1,""]},"evennia.server.session":{Session:[460,1,1,""]},"evennia.server.session.Session":{at_sync:[460,3,1,""],data_in:[460,3,1,""],data_out:[460,3,1,""],disconnect:[460,3,1,""],get_sync_data:[460,3,1,""],init_session:[460,3,1,""],load_sync_data:[460,3,1,""]},"evennia.server.sessionhandler":{DummySession:[461,1,1,""],ServerSessionHandler:[461,1,1,""],SessionHandler:[461,1,1,""],delayed_import:[461,5,1,""]},"evennia.server.sessionhandler.DummySession":{sessid:[461,4,1,""]},"evennia.server.sessionhandler.ServerSessionHandler":{__init__:[461,3,1,""],account_count:[461,3,1,""],all_connected_accounts:[461,3,1,""],all_sessions_portal_sync:[461,3,1,""],announce_all:[461,3,1,""],call_inputfuncs:[461,3,1,""],data_in:[461,3,1,""],data_out:[461,3,1,""],disconnect:[461,3,1,""],disconnect_all_sessions:[461,3,1,""],disconnect_duplicate_sessions:[461,3,1,""],get_inputfuncs:[461,3,1,""],login:[461,3,1,""],portal_connect:[461,3,1,""],portal_disconnect:[461,3,1,""],portal_disconnect_all:[461,3,1,""],portal_reset_server:[461,3,1,""],portal_restart_server:[461,3,1,""],portal_session_sync:[461,3,1,""],portal_sessions_sync:[461,3,1,""],portal_shutdown:[461,3,1,""],session_from_account:[461,3,1,""],session_from_sessid:[461,3,1,""],session_portal_partial_sync:[461,3,1,""],session_portal_sync:[461,3,1,""],sessions_from_account:[461,3,1,""],sessions_from_character:[461,3,1,""],sessions_from_csessid:[461,3,1,""],sessions_from_puppet:[461,3,1,""],start_bot_session:[461,3,1,""],validate_sessions:[461,3,1,""]},"evennia.server.sessionhandler.SessionHandler":{clean_senddata:[461,3,1,""],get:[461,3,1,""],get_all_sync_data:[461,3,1,""],get_sessions:[461,3,1,""]},"evennia.server.throttle":{Throttle:[463,1,1,""]},"evennia.server.throttle.Throttle":{__init__:[463,3,1,""],check:[463,3,1,""],error_msg:[463,4,1,""],get:[463,3,1,""],get_cache_key:[463,3,1,""],record_ip:[463,3,1,""],remove:[463,3,1,""],touch:[463,3,1,""],unrecord_ip:[463,3,1,""],update:[463,3,1,""]},"evennia.server.validators":{EvenniaPasswordValidator:[464,1,1,""],EvenniaUsernameAvailabilityValidator:[464,1,1,""]},"evennia.server.validators.EvenniaPasswordValidator":{__init__:[464,3,1,""],get_help_text:[464,3,1,""],validate:[464,3,1,""]},"evennia.server.webserver":{DjangoWebRoot:[465,1,1,""],EvenniaReverseProxyResource:[465,1,1,""],HTTPChannelWithXForwardedFor:[465,1,1,""],LockableThreadPool:[465,1,1,""],PrivateStaticRoot:[465,1,1,""],WSGIWebServer:[465,1,1,""],Website:[465,1,1,""]},"evennia.server.webserver.DjangoWebRoot":{__init__:[465,3,1,""],empty_threadpool:[465,3,1,""],getChild:[465,3,1,""]},"evennia.server.webserver.EvenniaReverseProxyResource":{getChild:[465,3,1,""],render:[465,3,1,""]},"evennia.server.webserver.HTTPChannelWithXForwardedFor":{allHeadersReceived:[465,3,1,""]},"evennia.server.webserver.LockableThreadPool":{__init__:[465,3,1,""],callInThread:[465,3,1,""],lock:[465,3,1,""]},"evennia.server.webserver.PrivateStaticRoot":{directoryListing:[465,3,1,""]},"evennia.server.webserver.WSGIWebServer":{__init__:[465,3,1,""],startService:[465,3,1,""],stopService:[465,3,1,""]},"evennia.server.webserver.Website":{log:[465,3,1,""],logPrefix:[465,3,1,""],noisy:[465,4,1,""]},"evennia.typeclasses":{attributes:[468,0,0,"-"],managers:[469,0,0,"-"],models:[470,0,0,"-"],tags:[471,0,0,"-"]},"evennia.typeclasses.attributes":{Attribute:[468,1,1,""],AttributeHandler:[468,1,1,""],AttributeProperty:[468,1,1,""],DbHolder:[468,1,1,""],IAttribute:[468,1,1,""],IAttributeBackend:[468,1,1,""],InMemoryAttribute:[468,1,1,""],InMemoryAttributeBackend:[468,1,1,""],ModelAttributeBackend:[468,1,1,""],NAttributeProperty:[468,1,1,""],NickHandler:[468,1,1,""],NickTemplateInvalid:[468,2,1,""],initialize_nick_templates:[468,5,1,""],parse_nick_template:[468,5,1,""]},"evennia.typeclasses.attributes.Attribute":{DoesNotExist:[468,2,1,""],MultipleObjectsReturned:[468,2,1,""],accountdb_set:[468,4,1,""],attrtype:[468,3,1,""],category:[468,3,1,""],channeldb_set:[468,4,1,""],date_created:[468,3,1,""],db_attrtype:[468,4,1,""],db_category:[468,4,1,""],db_date_created:[468,4,1,""],db_key:[468,4,1,""],db_lock_storage:[468,4,1,""],db_model:[468,4,1,""],db_strvalue:[468,4,1,""],db_value:[468,4,1,""],get_next_by_db_date_created:[468,3,1,""],get_previous_by_db_date_created:[468,3,1,""],id:[468,4,1,""],key:[468,3,1,""],lock_storage:[468,3,1,""],model:[468,3,1,""],objectdb_set:[468,4,1,""],path:[468,4,1,""],scriptdb_set:[468,4,1,""],strvalue:[468,3,1,""],typename:[468,4,1,""],value:[468,3,1,""]},"evennia.typeclasses.attributes.AttributeHandler":{__init__:[468,3,1,""],add:[468,3,1,""],all:[468,3,1,""],batch_add:[468,3,1,""],clear:[468,3,1,""],get:[468,3,1,""],has:[468,3,1,""],remove:[468,3,1,""],reset_cache:[468,3,1,""]},"evennia.typeclasses.attributes.AttributeProperty":{__init__:[468,3,1,""],attrhandler_name:[468,4,1,""]},"evennia.typeclasses.attributes.DbHolder":{__init__:[468,3,1,""],all:[468,3,1,""],get_all:[468,3,1,""]},"evennia.typeclasses.attributes.IAttribute":{access:[468,3,1,""],attrtype:[468,3,1,""],category:[468,3,1,""],date_created:[468,3,1,""],key:[468,3,1,""],lock_storage:[468,3,1,""],locks:[468,4,1,""],model:[468,3,1,""],strvalue:[468,3,1,""]},"evennia.typeclasses.attributes.IAttributeBackend":{__init__:[468,3,1,""],batch_add:[468,3,1,""],clear_attributes:[468,3,1,""],create_attribute:[468,3,1,""],delete_attribute:[468,3,1,""],do_batch_delete:[468,3,1,""],do_batch_finish:[468,3,1,""],do_batch_update_attribute:[468,3,1,""],do_create_attribute:[468,3,1,""],do_delete_attribute:[468,3,1,""],do_update_attribute:[468,3,1,""],get:[468,3,1,""],get_all_attributes:[468,3,1,""],query_all:[468,3,1,""],query_category:[468,3,1,""],query_key:[468,3,1,""],reset_cache:[468,3,1,""],update_attribute:[468,3,1,""]},"evennia.typeclasses.attributes.InMemoryAttribute":{__init__:[468,3,1,""],value:[468,3,1,""]},"evennia.typeclasses.attributes.InMemoryAttributeBackend":{__init__:[468,3,1,""],do_batch_finish:[468,3,1,""],do_batch_update_attribute:[468,3,1,""],do_create_attribute:[468,3,1,""],do_delete_attribute:[468,3,1,""],do_update_attribute:[468,3,1,""],query_all:[468,3,1,""],query_category:[468,3,1,""],query_key:[468,3,1,""]},"evennia.typeclasses.attributes.ModelAttributeBackend":{__init__:[468,3,1,""],do_batch_finish:[468,3,1,""],do_batch_update_attribute:[468,3,1,""],do_create_attribute:[468,3,1,""],do_delete_attribute:[468,3,1,""],do_update_attribute:[468,3,1,""],query_all:[468,3,1,""],query_category:[468,3,1,""],query_key:[468,3,1,""]},"evennia.typeclasses.attributes.NAttributeProperty":{attrhandler_name:[468,4,1,""]},"evennia.typeclasses.attributes.NickHandler":{__init__:[468,3,1,""],add:[468,3,1,""],get:[468,3,1,""],has:[468,3,1,""],nickreplace:[468,3,1,""],remove:[468,3,1,""]},"evennia.typeclasses.managers":{TypedObjectManager:[469,1,1,""]},"evennia.typeclasses.managers.TypedObjectManager":{create_tag:[469,3,1,""],dbref:[469,3,1,""],dbref_search:[469,3,1,""],get_alias:[469,3,1,""],get_attribute:[469,3,1,""],get_by_alias:[469,3,1,""],get_by_attribute:[469,3,1,""],get_by_nick:[469,3,1,""],get_by_permission:[469,3,1,""],get_by_tag:[469,3,1,""],get_dbref_range:[469,3,1,""],get_id:[469,3,1,""],get_nick:[469,3,1,""],get_permission:[469,3,1,""],get_tag:[469,3,1,""],get_typeclass_totals:[469,3,1,""],object_totals:[469,3,1,""],typeclass_search:[469,3,1,""]},"evennia.typeclasses.models":{TypedObject:[470,1,1,""]},"evennia.typeclasses.models.TypedObject":{"delete":[470,3,1,""],Meta:[470,1,1,""],__init__:[470,3,1,""],access:[470,3,1,""],aliases:[470,4,1,""],at_idmapper_flush:[470,3,1,""],at_init:[470,3,1,""],at_rename:[470,3,1,""],attributes:[470,4,1,""],check_permstring:[470,3,1,""],date_created:[470,3,1,""],db:[470,3,1,""],db_attributes:[470,4,1,""],db_date_created:[470,4,1,""],db_key:[470,4,1,""],db_lock_storage:[470,4,1,""],db_tags:[470,4,1,""],db_typeclass_path:[470,4,1,""],dbid:[470,3,1,""],dbref:[470,3,1,""],get_absolute_url:[470,3,1,""],get_display_name:[470,3,1,""],get_extra_info:[470,3,1,""],get_next_by_db_date_created:[470,3,1,""],get_previous_by_db_date_created:[470,3,1,""],is_typeclass:[470,3,1,""],key:[470,3,1,""],lock_storage:[470,3,1,""],locks:[470,4,1,""],name:[470,3,1,""],nattributes:[470,4,1,""],ndb:[470,3,1,""],objects:[470,4,1,""],path:[470,4,1,""],permissions:[470,4,1,""],search:[470,3,1,""],set_class_from_typeclass:[470,3,1,""],swap_typeclass:[470,3,1,""],tags:[470,4,1,""],typeclass_path:[470,3,1,""],typename:[470,4,1,""],web_get_admin_url:[470,3,1,""],web_get_create_url:[470,3,1,""],web_get_delete_url:[470,3,1,""],web_get_detail_url:[470,3,1,""],web_get_puppet_url:[470,3,1,""],web_get_update_url:[470,3,1,""]},"evennia.typeclasses.models.TypedObject.Meta":{"abstract":[470,4,1,""],ordering:[470,4,1,""],verbose_name:[470,4,1,""]},"evennia.typeclasses.tags":{AliasHandler:[471,1,1,""],PermissionHandler:[471,1,1,""],Tag:[471,1,1,""],TagHandler:[471,1,1,""]},"evennia.typeclasses.tags.PermissionHandler":{check:[471,3,1,""]},"evennia.typeclasses.tags.Tag":{DoesNotExist:[471,2,1,""],MultipleObjectsReturned:[471,2,1,""],accountdb_set:[471,4,1,""],channeldb_set:[471,4,1,""],db_category:[471,4,1,""],db_data:[471,4,1,""],db_key:[471,4,1,""],db_model:[471,4,1,""],db_tagtype:[471,4,1,""],helpentry_set:[471,4,1,""],id:[471,4,1,""],msg_set:[471,4,1,""],objectdb_set:[471,4,1,""],objects:[471,4,1,""],scriptdb_set:[471,4,1,""]},"evennia.typeclasses.tags.TagHandler":{__init__:[471,3,1,""],add:[471,3,1,""],all:[471,3,1,""],batch_add:[471,3,1,""],clear:[471,3,1,""],get:[471,3,1,""],has:[471,3,1,""],remove:[471,3,1,""],reset_cache:[471,3,1,""]},"evennia.utils":{ansi:[473,0,0,"-"],batchprocessors:[474,0,0,"-"],containers:[475,0,0,"-"],create:[476,0,0,"-"],dbserialize:[477,0,0,"-"],eveditor:[478,0,0,"-"],evform:[479,0,0,"-"],evmenu:[480,0,0,"-"],evmore:[481,0,0,"-"],evtable:[482,0,0,"-"],funcparser:[483,0,0,"-"],gametime:[484,0,0,"-"],idmapper:[485,0,0,"-"],logger:[489,0,0,"-"],optionclasses:[490,0,0,"-"],optionhandler:[491,0,0,"-"],picklefield:[492,0,0,"-"],search:[493,0,0,"-"],test_resources:[494,0,0,"-"],text2html:[495,0,0,"-"],utils:[496,0,0,"-"],validatorfuncs:[497,0,0,"-"],verb_conjugation:[498,0,0,"-"]},"evennia.utils.ansi":{ANSIMeta:[473,1,1,""],ANSIParser:[473,1,1,""],ANSIString:[473,1,1,""],parse_ansi:[473,5,1,""],raw:[473,5,1,""],strip_ansi:[473,5,1,""],strip_mxp:[473,5,1,""],strip_raw_ansi:[473,5,1,""],strip_unsafe_tokens:[473,5,1,""]},"evennia.utils.ansi.ANSIMeta":{__init__:[473,3,1,""]},"evennia.utils.ansi.ANSIParser":{ansi_escapes:[473,4,1,""],ansi_map:[473,4,1,""],ansi_map_dict:[473,4,1,""],ansi_re:[473,4,1,""],ansi_regex:[473,4,1,""],ansi_sub:[473,4,1,""],ansi_xterm256_bright_bg_map:[473,4,1,""],ansi_xterm256_bright_bg_map_dict:[473,4,1,""],brightbg_sub:[473,4,1,""],mxp_re:[473,4,1,""],mxp_sub:[473,4,1,""],mxp_url_re:[473,4,1,""],mxp_url_sub:[473,4,1,""],parse_ansi:[473,3,1,""],strip_mxp:[473,3,1,""],strip_raw_codes:[473,3,1,""],strip_unsafe_tokens:[473,3,1,""],sub_ansi:[473,3,1,""],sub_brightbg:[473,3,1,""],sub_xterm256:[473,3,1,""],unsafe_tokens:[473,4,1,""],xterm256_bg:[473,4,1,""],xterm256_bg_sub:[473,4,1,""],xterm256_fg:[473,4,1,""],xterm256_fg_sub:[473,4,1,""],xterm256_gbg:[473,4,1,""],xterm256_gbg_sub:[473,4,1,""],xterm256_gfg:[473,4,1,""],xterm256_gfg_sub:[473,4,1,""]},"evennia.utils.ansi.ANSIString":{__init__:[473,3,1,""],capitalize:[473,3,1,""],center:[473,3,1,""],clean:[473,3,1,""],count:[473,3,1,""],decode:[473,3,1,""],encode:[473,3,1,""],endswith:[473,3,1,""],expandtabs:[473,3,1,""],find:[473,3,1,""],format:[473,3,1,""],index:[473,3,1,""],isalnum:[473,3,1,""],isalpha:[473,3,1,""],isdigit:[473,3,1,""],islower:[473,3,1,""],isspace:[473,3,1,""],istitle:[473,3,1,""],isupper:[473,3,1,""],join:[473,3,1,""],ljust:[473,3,1,""],lower:[473,3,1,""],lstrip:[473,3,1,""],partition:[473,3,1,""],raw:[473,3,1,""],re_format:[473,4,1,""],replace:[473,3,1,""],rfind:[473,3,1,""],rindex:[473,3,1,""],rjust:[473,3,1,""],rsplit:[473,3,1,""],rstrip:[473,3,1,""],split:[473,3,1,""],startswith:[473,3,1,""],strip:[473,3,1,""],swapcase:[473,3,1,""],translate:[473,3,1,""],upper:[473,3,1,""]},"evennia.utils.batchprocessors":{BatchCodeProcessor:[474,1,1,""],BatchCommandProcessor:[474,1,1,""],read_batchfile:[474,5,1,""],tb_filename:[474,5,1,""],tb_iter:[474,5,1,""]},"evennia.utils.batchprocessors.BatchCodeProcessor":{code_exec:[474,3,1,""],parse_file:[474,3,1,""]},"evennia.utils.batchprocessors.BatchCommandProcessor":{parse_file:[474,3,1,""]},"evennia.utils.containers":{Container:[475,1,1,""],GlobalScriptContainer:[475,1,1,""],OptionContainer:[475,1,1,""]},"evennia.utils.containers.Container":{__init__:[475,3,1,""],all:[475,3,1,""],get:[475,3,1,""],load_data:[475,3,1,""],storage_modules:[475,4,1,""]},"evennia.utils.containers.GlobalScriptContainer":{__init__:[475,3,1,""],all:[475,3,1,""],get:[475,3,1,""],load_data:[475,3,1,""],start:[475,3,1,""]},"evennia.utils.containers.OptionContainer":{storage_modules:[475,4,1,""]},"evennia.utils.create":{create_account:[476,5,1,""],create_channel:[476,5,1,""],create_help_entry:[476,5,1,""],create_message:[476,5,1,""],create_object:[476,5,1,""],create_script:[476,5,1,""]},"evennia.utils.dbserialize":{dbserialize:[477,5,1,""],dbunserialize:[477,5,1,""],do_pickle:[477,5,1,""],do_unpickle:[477,5,1,""],from_pickle:[477,5,1,""],to_pickle:[477,5,1,""]},"evennia.utils.eveditor":{CmdEditorBase:[478,1,1,""],CmdEditorGroup:[478,1,1,""],CmdLineInput:[478,1,1,""],CmdSaveYesNo:[478,1,1,""],EvEditor:[478,1,1,""],EvEditorCmdSet:[478,1,1,""],SaveYesNoCmdSet:[478,1,1,""]},"evennia.utils.eveditor.CmdEditorBase":{aliases:[478,4,1,""],editor:[478,4,1,""],help_category:[478,4,1,""],help_entry:[478,4,1,""],key:[478,4,1,""],lock_storage:[478,4,1,""],locks:[478,4,1,""],parse:[478,3,1,""],search_index_entry:[478,4,1,""]},"evennia.utils.eveditor.CmdEditorGroup":{aliases:[478,4,1,""],arg_regex:[478,4,1,""],func:[478,3,1,""],help_category:[478,4,1,""],key:[478,4,1,""],lock_storage:[478,4,1,""],search_index_entry:[478,4,1,""]},"evennia.utils.eveditor.CmdLineInput":{aliases:[478,4,1,""],func:[478,3,1,""],help_category:[478,4,1,""],key:[478,4,1,""],lock_storage:[478,4,1,""],search_index_entry:[478,4,1,""]},"evennia.utils.eveditor.CmdSaveYesNo":{aliases:[478,4,1,""],func:[478,3,1,""],help_category:[478,4,1,""],help_cateogory:[478,4,1,""],key:[478,4,1,""],lock_storage:[478,4,1,""],locks:[478,4,1,""],search_index_entry:[478,4,1,""]},"evennia.utils.eveditor.EvEditor":{__init__:[478,3,1,""],decrease_indent:[478,3,1,""],deduce_indent:[478,3,1,""],display_buffer:[478,3,1,""],display_help:[478,3,1,""],get_buffer:[478,3,1,""],increase_indent:[478,3,1,""],load_buffer:[478,3,1,""],quit:[478,3,1,""],save_buffer:[478,3,1,""],swap_autoindent:[478,3,1,""],update_buffer:[478,3,1,""],update_undo:[478,3,1,""]},"evennia.utils.eveditor.EvEditorCmdSet":{at_cmdset_creation:[478,3,1,""],key:[478,4,1,""],mergetype:[478,4,1,""],path:[478,4,1,""]},"evennia.utils.eveditor.SaveYesNoCmdSet":{at_cmdset_creation:[478,3,1,""],key:[478,4,1,""],mergetype:[478,4,1,""],path:[478,4,1,""],priority:[478,4,1,""]},"evennia.utils.evform":{EvForm:[479,1,1,""]},"evennia.utils.evform.EvForm":{__init__:[479,3,1,""],map:[479,3,1,""],reload:[479,3,1,""]},"evennia.utils.evmenu":{CmdEvMenuNode:[480,1,1,""],CmdGetInput:[480,1,1,""],CmdYesNoQuestion:[480,1,1,""],EvMenu:[480,1,1,""],EvMenuCmdSet:[480,1,1,""],EvMenuError:[480,2,1,""],EvMenuGotoAbortMessage:[480,2,1,""],InputCmdSet:[480,1,1,""],YesNoQuestionCmdSet:[480,1,1,""],ask_yes_no:[480,5,1,""],get_input:[480,5,1,""],list_node:[480,5,1,""],parse_menu_template:[480,5,1,""],template2menu:[480,5,1,""]},"evennia.utils.evmenu.CmdEvMenuNode":{aliases:[480,4,1,""],auto_help_display_key:[480,4,1,""],func:[480,3,1,""],get_help:[480,3,1,""],help_category:[480,4,1,""],key:[480,4,1,""],lock_storage:[480,4,1,""],locks:[480,4,1,""],search_index_entry:[480,4,1,""]},"evennia.utils.evmenu.CmdGetInput":{aliases:[480,4,1,""],func:[480,3,1,""],help_category:[480,4,1,""],key:[480,4,1,""],lock_storage:[480,4,1,""],search_index_entry:[480,4,1,""]},"evennia.utils.evmenu.CmdYesNoQuestion":{aliases:[480,4,1,""],arg_regex:[480,4,1,""],func:[480,3,1,""],help_category:[480,4,1,""],key:[480,4,1,""],lock_storage:[480,4,1,""],search_index_entry:[480,4,1,""]},"evennia.utils.evmenu.EvMenu":{"goto":[480,3,1,""],__init__:[480,3,1,""],close_menu:[480,3,1,""],display_helptext:[480,3,1,""],display_nodetext:[480,3,1,""],extract_goto_exec:[480,3,1,""],helptext_formatter:[480,3,1,""],msg:[480,3,1,""],node_border_char:[480,4,1,""],node_formatter:[480,3,1,""],nodetext_formatter:[480,3,1,""],options_formatter:[480,3,1,""],parse_input:[480,3,1,""],print_debug_info:[480,3,1,""],run_exec:[480,3,1,""],run_exec_then_goto:[480,3,1,""]},"evennia.utils.evmenu.EvMenuCmdSet":{at_cmdset_creation:[480,3,1,""],key:[480,4,1,""],mergetype:[480,4,1,""],no_channels:[480,4,1,""],no_exits:[480,4,1,""],no_objs:[480,4,1,""],path:[480,4,1,""],priority:[480,4,1,""]},"evennia.utils.evmenu.InputCmdSet":{at_cmdset_creation:[480,3,1,""],key:[480,4,1,""],mergetype:[480,4,1,""],no_channels:[480,4,1,""],no_exits:[480,4,1,""],no_objs:[480,4,1,""],path:[480,4,1,""],priority:[480,4,1,""]},"evennia.utils.evmenu.YesNoQuestionCmdSet":{at_cmdset_creation:[480,3,1,""],key:[480,4,1,""],mergetype:[480,4,1,""],no_channels:[480,4,1,""],no_exits:[480,4,1,""],no_objs:[480,4,1,""],path:[480,4,1,""],priority:[480,4,1,""]},"evennia.utils.evmore":{CmdMore:[481,1,1,""],CmdMoreExit:[481,1,1,""],CmdSetMore:[481,1,1,""],EvMore:[481,1,1,""],msg:[481,5,1,""],queryset_maxsize:[481,5,1,""]},"evennia.utils.evmore.CmdMore":{aliases:[481,4,1,""],auto_help:[481,4,1,""],func:[481,3,1,""],help_category:[481,4,1,""],key:[481,4,1,""],lock_storage:[481,4,1,""],search_index_entry:[481,4,1,""]},"evennia.utils.evmore.CmdMoreExit":{aliases:[481,4,1,""],func:[481,3,1,""],help_category:[481,4,1,""],key:[481,4,1,""],lock_storage:[481,4,1,""],search_index_entry:[481,4,1,""]},"evennia.utils.evmore.CmdSetMore":{at_cmdset_creation:[481,3,1,""],key:[481,4,1,""],mergetype:[481,4,1,""],path:[481,4,1,""],priority:[481,4,1,""]},"evennia.utils.evmore.EvMore":{__init__:[481,3,1,""],display:[481,3,1,""],init_django_paginator:[481,3,1,""],init_evtable:[481,3,1,""],init_f_str:[481,3,1,""],init_iterable:[481,3,1,""],init_pages:[481,3,1,""],init_queryset:[481,3,1,""],init_str:[481,3,1,""],page_back:[481,3,1,""],page_end:[481,3,1,""],page_formatter:[481,3,1,""],page_next:[481,3,1,""],page_quit:[481,3,1,""],page_top:[481,3,1,""],paginator:[481,3,1,""],paginator_django:[481,3,1,""],paginator_index:[481,3,1,""],paginator_slice:[481,3,1,""],start:[481,3,1,""]},"evennia.utils.evtable":{ANSITextWrapper:[482,1,1,""],EvCell:[482,1,1,""],EvColumn:[482,1,1,""],EvTable:[482,1,1,""],fill:[482,5,1,""],wrap:[482,5,1,""]},"evennia.utils.evtable.EvCell":{__init__:[482,3,1,""],get:[482,3,1,""],get_height:[482,3,1,""],get_min_height:[482,3,1,""],get_min_width:[482,3,1,""],get_width:[482,3,1,""],reformat:[482,3,1,""],replace_data:[482,3,1,""]},"evennia.utils.evtable.EvColumn":{__init__:[482,3,1,""],add_rows:[482,3,1,""],reformat:[482,3,1,""],reformat_cell:[482,3,1,""]},"evennia.utils.evtable.EvTable":{__init__:[482,3,1,""],add_column:[482,3,1,""],add_header:[482,3,1,""],add_row:[482,3,1,""],get:[482,3,1,""],reformat:[482,3,1,""],reformat_column:[482,3,1,""]},"evennia.utils.funcparser":{FuncParser:[483,1,1,""],ParsingError:[483,2,1,""],funcparser_callable_add:[483,5,1,""],funcparser_callable_center_justify:[483,5,1,""],funcparser_callable_choice:[483,5,1,""],funcparser_callable_clr:[483,5,1,""],funcparser_callable_conjugate:[483,5,1,""],funcparser_callable_crop:[483,5,1,""],funcparser_callable_div:[483,5,1,""],funcparser_callable_eval:[483,5,1,""],funcparser_callable_justify:[483,5,1,""],funcparser_callable_left_justify:[483,5,1,""],funcparser_callable_mult:[483,5,1,""],funcparser_callable_pad:[483,5,1,""],funcparser_callable_pronoun:[483,5,1,""],funcparser_callable_pronoun_capitalize:[483,5,1,""],funcparser_callable_randint:[483,5,1,""],funcparser_callable_random:[483,5,1,""],funcparser_callable_right_justify:[483,5,1,""],funcparser_callable_round:[483,5,1,""],funcparser_callable_search:[483,5,1,""],funcparser_callable_search_list:[483,5,1,""],funcparser_callable_space:[483,5,1,""],funcparser_callable_sub:[483,5,1,""],funcparser_callable_toint:[483,5,1,""],funcparser_callable_you:[483,5,1,""],funcparser_callable_you_capitalize:[483,5,1,""]},"evennia.utils.funcparser.FuncParser":{__init__:[483,3,1,""],execute:[483,3,1,""],parse:[483,3,1,""],parse_to_any:[483,3,1,""],validate_callables:[483,3,1,""]},"evennia.utils.gametime":{TimeScript:[484,1,1,""],game_epoch:[484,5,1,""],gametime:[484,5,1,""],portal_uptime:[484,5,1,""],real_seconds_until:[484,5,1,""],reset_gametime:[484,5,1,""],runtime:[484,5,1,""],schedule:[484,5,1,""],server_epoch:[484,5,1,""],uptime:[484,5,1,""]},"evennia.utils.gametime.TimeScript":{DoesNotExist:[484,2,1,""],MultipleObjectsReturned:[484,2,1,""],at_repeat:[484,3,1,""],at_script_creation:[484,3,1,""],path:[484,4,1,""],typename:[484,4,1,""]},"evennia.utils.idmapper":{manager:[486,0,0,"-"],models:[487,0,0,"-"],tests:[488,0,0,"-"]},"evennia.utils.idmapper.manager":{SharedMemoryManager:[486,1,1,""]},"evennia.utils.idmapper.manager.SharedMemoryManager":{get:[486,3,1,""]},"evennia.utils.idmapper.models":{SharedMemoryModel:[487,1,1,""],SharedMemoryModelBase:[487,1,1,""],WeakSharedMemoryModel:[487,1,1,""],WeakSharedMemoryModelBase:[487,1,1,""],cache_size:[487,5,1,""],conditional_flush:[487,5,1,""],flush_cache:[487,5,1,""],flush_cached_instance:[487,5,1,""],update_cached_instance:[487,5,1,""]},"evennia.utils.idmapper.models.SharedMemoryModel":{"delete":[487,3,1,""],Meta:[487,1,1,""],at_idmapper_flush:[487,3,1,""],cache_instance:[487,3,1,""],flush_cached_instance:[487,3,1,""],flush_from_cache:[487,3,1,""],flush_instance_cache:[487,3,1,""],get_all_cached_instances:[487,3,1,""],get_cached_instance:[487,3,1,""],objects:[487,4,1,""],path:[487,4,1,""],save:[487,3,1,""],typename:[487,4,1,""]},"evennia.utils.idmapper.models.SharedMemoryModel.Meta":{"abstract":[487,4,1,""]},"evennia.utils.idmapper.models.WeakSharedMemoryModel":{Meta:[487,1,1,""],path:[487,4,1,""],typename:[487,4,1,""]},"evennia.utils.idmapper.models.WeakSharedMemoryModel.Meta":{"abstract":[487,4,1,""]},"evennia.utils.idmapper.tests":{Article:[488,1,1,""],Category:[488,1,1,""],RegularArticle:[488,1,1,""],RegularCategory:[488,1,1,""],SharedMemorysTest:[488,1,1,""]},"evennia.utils.idmapper.tests.Article":{DoesNotExist:[488,2,1,""],MultipleObjectsReturned:[488,2,1,""],category2:[488,4,1,""],category2_id:[488,4,1,""],category:[488,4,1,""],category_id:[488,4,1,""],id:[488,4,1,""],name:[488,4,1,""],path:[488,4,1,""],typename:[488,4,1,""]},"evennia.utils.idmapper.tests.Category":{DoesNotExist:[488,2,1,""],MultipleObjectsReturned:[488,2,1,""],article_set:[488,4,1,""],id:[488,4,1,""],name:[488,4,1,""],path:[488,4,1,""],regulararticle_set:[488,4,1,""],typename:[488,4,1,""]},"evennia.utils.idmapper.tests.RegularArticle":{DoesNotExist:[488,2,1,""],MultipleObjectsReturned:[488,2,1,""],category2:[488,4,1,""],category2_id:[488,4,1,""],category:[488,4,1,""],category_id:[488,4,1,""],id:[488,4,1,""],name:[488,4,1,""],objects:[488,4,1,""]},"evennia.utils.idmapper.tests.RegularCategory":{DoesNotExist:[488,2,1,""],MultipleObjectsReturned:[488,2,1,""],article_set:[488,4,1,""],id:[488,4,1,""],name:[488,4,1,""],objects:[488,4,1,""],regulararticle_set:[488,4,1,""]},"evennia.utils.idmapper.tests.SharedMemorysTest":{setUp:[488,3,1,""],testMixedReferences:[488,3,1,""],testObjectDeletion:[488,3,1,""],testRegularReferences:[488,3,1,""],testSharedMemoryReferences:[488,3,1,""]},"evennia.utils.logger":{EvenniaLogFile:[489,1,1,""],GetLogObserver:[489,1,1,""],GetPortalLogObserver:[489,1,1,""],GetServerLogObserver:[489,1,1,""],WeeklyLogFile:[489,1,1,""],critical:[489,5,1,""],dep:[489,5,1,""],deprecated:[489,5,1,""],err:[489,5,1,""],error:[489,5,1,""],exception:[489,5,1,""],info:[489,5,1,""],log_dep:[489,5,1,""],log_depmsg:[489,5,1,""],log_err:[489,5,1,""],log_errmsg:[489,5,1,""],log_file:[489,5,1,""],log_file_exists:[489,5,1,""],log_info:[489,5,1,""],log_infomsg:[489,5,1,""],log_msg:[489,5,1,""],log_sec:[489,5,1,""],log_secmsg:[489,5,1,""],log_server:[489,5,1,""],log_trace:[489,5,1,""],log_tracemsg:[489,5,1,""],log_warn:[489,5,1,""],log_warnmsg:[489,5,1,""],rotate_log_file:[489,5,1,""],sec:[489,5,1,""],security:[489,5,1,""],tail_log_file:[489,5,1,""],timeformat:[489,5,1,""],trace:[489,5,1,""],warn:[489,5,1,""],warning:[489,5,1,""]},"evennia.utils.logger.EvenniaLogFile":{num_lines_to_append:[489,4,1,""],readlines:[489,3,1,""],rotate:[489,3,1,""],seek:[489,3,1,""],settings:[489,4,1,""]},"evennia.utils.logger.GetLogObserver":{component_prefix:[489,4,1,""],event_levels:[489,4,1,""],format_log_event:[489,3,1,""]},"evennia.utils.logger.GetPortalLogObserver":{component_prefix:[489,4,1,""]},"evennia.utils.logger.GetServerLogObserver":{component_prefix:[489,4,1,""]},"evennia.utils.logger.WeeklyLogFile":{__init__:[489,3,1,""],shouldRotate:[489,3,1,""],suffix:[489,3,1,""],write:[489,3,1,""]},"evennia.utils.optionclasses":{BaseOption:[490,1,1,""],Boolean:[490,1,1,""],Color:[490,1,1,""],Datetime:[490,1,1,""],Duration:[490,1,1,""],Email:[490,1,1,""],Future:[490,1,1,""],Lock:[490,1,1,""],PositiveInteger:[490,1,1,""],SignedInteger:[490,1,1,""],Text:[490,1,1,""],Timezone:[490,1,1,""],UnsignedInteger:[490,1,1,""]},"evennia.utils.optionclasses.BaseOption":{"default":[490,3,1,""],__init__:[490,3,1,""],changed:[490,3,1,""],deserialize:[490,3,1,""],display:[490,3,1,""],load:[490,3,1,""],save:[490,3,1,""],serialize:[490,3,1,""],set:[490,3,1,""],validate:[490,3,1,""],value:[490,3,1,""]},"evennia.utils.optionclasses.Boolean":{deserialize:[490,3,1,""],display:[490,3,1,""],serialize:[490,3,1,""],validate:[490,3,1,""]},"evennia.utils.optionclasses.Color":{deserialize:[490,3,1,""],display:[490,3,1,""],validate:[490,3,1,""]},"evennia.utils.optionclasses.Datetime":{deserialize:[490,3,1,""],serialize:[490,3,1,""],validate:[490,3,1,""]},"evennia.utils.optionclasses.Duration":{deserialize:[490,3,1,""],serialize:[490,3,1,""],validate:[490,3,1,""]},"evennia.utils.optionclasses.Email":{deserialize:[490,3,1,""],validate:[490,3,1,""]},"evennia.utils.optionclasses.Future":{validate:[490,3,1,""]},"evennia.utils.optionclasses.Lock":{validate:[490,3,1,""]},"evennia.utils.optionclasses.PositiveInteger":{deserialize:[490,3,1,""],validate:[490,3,1,""]},"evennia.utils.optionclasses.SignedInteger":{deserialize:[490,3,1,""],validate:[490,3,1,""]},"evennia.utils.optionclasses.Text":{deserialize:[490,3,1,""]},"evennia.utils.optionclasses.Timezone":{"default":[490,3,1,""],deserialize:[490,3,1,""],serialize:[490,3,1,""],validate:[490,3,1,""]},"evennia.utils.optionclasses.UnsignedInteger":{deserialize:[490,3,1,""],validate:[490,3,1,""],validator_key:[490,4,1,""]},"evennia.utils.optionhandler":{InMemorySaveHandler:[491,1,1,""],OptionHandler:[491,1,1,""]},"evennia.utils.optionhandler.InMemorySaveHandler":{__init__:[491,3,1,""],add:[491,3,1,""],get:[491,3,1,""]},"evennia.utils.optionhandler.OptionHandler":{__init__:[491,3,1,""],all:[491,3,1,""],get:[491,3,1,""],set:[491,3,1,""]},"evennia.utils.picklefield":{PickledFormField:[492,1,1,""],PickledObject:[492,1,1,""],PickledObjectField:[492,1,1,""],PickledWidget:[492,1,1,""],dbsafe_decode:[492,5,1,""],dbsafe_encode:[492,5,1,""],wrap_conflictual_object:[492,5,1,""]},"evennia.utils.picklefield.PickledFormField":{__init__:[492,3,1,""],clean:[492,3,1,""],default_error_messages:[492,4,1,""],widget:[492,4,1,""]},"evennia.utils.picklefield.PickledObjectField":{__init__:[492,3,1,""],formfield:[492,3,1,""],from_db_value:[492,3,1,""],get_db_prep_lookup:[492,3,1,""],get_db_prep_value:[492,3,1,""],get_default:[492,3,1,""],get_internal_type:[492,3,1,""],pre_save:[492,3,1,""],value_to_string:[492,3,1,""]},"evennia.utils.picklefield.PickledWidget":{media:[492,3,1,""],render:[492,3,1,""],value_from_datadict:[492,3,1,""]},"evennia.utils.search":{search_account:[493,5,1,""],search_account_tag:[493,5,1,""],search_channel:[493,5,1,""],search_channel_tag:[493,5,1,""],search_help_entry:[493,5,1,""],search_message:[493,5,1,""],search_object:[493,5,1,""],search_script:[493,5,1,""],search_script_tag:[493,5,1,""],search_tag:[493,5,1,""]},"evennia.utils.test_resources":{BaseEvenniaCommandTest:[494,1,1,""],BaseEvenniaTest:[494,1,1,""],BaseEvenniaTestCase:[494,1,1,""],EvenniaCommandTest:[494,1,1,""],EvenniaCommandTestMixin:[494,1,1,""],EvenniaTest:[494,1,1,""],EvenniaTestCase:[494,1,1,""],EvenniaTestMixin:[494,1,1,""],mockdeferLater:[494,5,1,""],mockdelay:[494,5,1,""],unload_module:[494,5,1,""]},"evennia.utils.test_resources.EvenniaCommandTestMixin":{call:[494,3,1,""]},"evennia.utils.test_resources.EvenniaTest":{account_typeclass:[494,4,1,""],character_typeclass:[494,4,1,""],exit_typeclass:[494,4,1,""],object_typeclass:[494,4,1,""],room_typeclass:[494,4,1,""],script_typeclass:[494,4,1,""]},"evennia.utils.test_resources.EvenniaTestMixin":{account_typeclass:[494,4,1,""],character_typeclass:[494,4,1,""],create_accounts:[494,3,1,""],create_chars:[494,3,1,""],create_objs:[494,3,1,""],create_rooms:[494,3,1,""],create_script:[494,3,1,""],exit_typeclass:[494,4,1,""],object_typeclass:[494,4,1,""],room_typeclass:[494,4,1,""],script_typeclass:[494,4,1,""],setUp:[494,3,1,""],setup_session:[494,3,1,""],tearDown:[494,3,1,""],teardown_accounts:[494,3,1,""],teardown_session:[494,3,1,""]},"evennia.utils.text2html":{TextToHTMLparser:[495,1,1,""],parse_html:[495,5,1,""]},"evennia.utils.text2html.TextToHTMLparser":{bg_colormap:[495,4,1,""],bgfgstart:[495,4,1,""],bgfgstop:[495,4,1,""],bgstart:[495,4,1,""],bgstop:[495,4,1,""],blink:[495,4,1,""],colorback:[495,4,1,""],colorcodes:[495,4,1,""],convert_linebreaks:[495,3,1,""],convert_urls:[495,3,1,""],fg_colormap:[495,4,1,""],fgstart:[495,4,1,""],fgstop:[495,4,1,""],handle_single_first_space:[495,3,1,""],hilite:[495,4,1,""],inverse:[495,4,1,""],normal:[495,4,1,""],parse:[495,3,1,""],re_bgfg:[495,4,1,""],re_bgs:[495,4,1,""],re_blink:[495,4,1,""],re_blinking:[495,3,1,""],re_bold:[495,3,1,""],re_color:[495,3,1,""],re_dblspace:[495,4,1,""],re_double_space:[495,3,1,""],re_fgs:[495,4,1,""],re_hilite:[495,4,1,""],re_inverse:[495,4,1,""],re_inversing:[495,3,1,""],re_invisible_space:[495,3,1,""],re_invisiblespace:[495,4,1,""],re_mxplink:[495,4,1,""],re_mxpurl:[495,4,1,""],re_normal:[495,4,1,""],re_string:[495,4,1,""],re_uline:[495,4,1,""],re_underline:[495,3,1,""],re_unhilite:[495,4,1,""],re_url:[495,4,1,""],remove_backspaces:[495,3,1,""],remove_bells:[495,3,1,""],sub_dblspace:[495,3,1,""],sub_invisiblespace:[495,3,1,""],sub_mxp_links:[495,3,1,""],sub_mxp_urls:[495,3,1,""],sub_text:[495,3,1,""],tabstop:[495,4,1,""],underline:[495,4,1,""],unhilite:[495,4,1,""]},"evennia.utils.utils":{LimitedSizeOrderedDict:[496,1,1,""],all_from_module:[496,5,1,""],at_search_result:[496,5,1,""],callables_from_module:[496,5,1,""],calledby:[496,5,1,""],check_evennia_dependencies:[496,5,1,""],class_from_module:[496,5,1,""],columnize:[496,5,1,""],copy_word_case:[496,5,1,""],crop:[496,5,1,""],datetime_format:[496,5,1,""],dbid_to_obj:[496,5,1,""],dbref:[496,5,1,""],dbref_to_obj:[496,5,1,""],dedent:[496,5,1,""],deepsize:[496,5,1,""],delay:[496,5,1,""],display_len:[496,5,1,""],fill:[496,5,1,""],format_grid:[496,5,1,""],format_table:[496,5,1,""],fuzzy_import_from_module:[496,5,1,""],get_all_cmdsets:[496,5,1,""],get_all_typeclasses:[496,5,1,""],get_evennia_pids:[496,5,1,""],get_evennia_version:[496,5,1,""],get_game_dir_path:[496,5,1,""],has_parent:[496,5,1,""],host_os_is:[496,5,1,""],inherits_from:[496,5,1,""],init_new_account:[496,5,1,""],interactive:[496,5,1,""],is_iter:[496,5,1,""],iter_to_str:[496,5,1,""],iter_to_string:[496,5,1,""],justify:[496,5,1,""],latinify:[496,5,1,""],lazy_property:[496,1,1,""],list_to_string:[496,5,1,""],m_len:[496,5,1,""],make_iter:[496,5,1,""],mod_import:[496,5,1,""],mod_import_from_path:[496,5,1,""],object_from_module:[496,5,1,""],pad:[496,5,1,""],percent:[496,5,1,""],percentile:[496,5,1,""],pypath_to_realpath:[496,5,1,""],random_string_from_module:[496,5,1,""],repeat:[496,5,1,""],run_async:[496,5,1,""],run_in_main_thread:[496,5,1,""],safe_convert_to_types:[496,5,1,""],server_services:[496,5,1,""],string_from_module:[496,5,1,""],string_partial_matching:[496,5,1,""],string_similarity:[496,5,1,""],string_suggestions:[496,5,1,""],strip_control_sequences:[496,5,1,""],strip_unsafe_input:[496,5,1,""],time_format:[496,5,1,""],to_bytes:[496,5,1,""],to_str:[496,5,1,""],unrepeat:[496,5,1,""],uses_database:[496,5,1,""],validate_email_address:[496,5,1,""],variable_from_module:[496,5,1,""],wildcard_to_regexp:[496,5,1,""],wrap:[496,5,1,""]},"evennia.utils.utils.LimitedSizeOrderedDict":{__init__:[496,3,1,""],update:[496,3,1,""]},"evennia.utils.utils.lazy_property":{__init__:[496,3,1,""]},"evennia.utils.validatorfuncs":{"boolean":[497,5,1,""],color:[497,5,1,""],datetime:[497,5,1,""],duration:[497,5,1,""],email:[497,5,1,""],future:[497,5,1,""],lock:[497,5,1,""],positive_integer:[497,5,1,""],signed_integer:[497,5,1,""],text:[497,5,1,""],timezone:[497,5,1,""],unsigned_integer:[497,5,1,""]},"evennia.utils.verb_conjugation":{conjugate:[499,0,0,"-"],pronouns:[500,0,0,"-"],tests:[501,0,0,"-"]},"evennia.utils.verb_conjugation.conjugate":{verb_actor_stance_components:[499,5,1,""],verb_all_tenses:[499,5,1,""],verb_conjugate:[499,5,1,""],verb_infinitive:[499,5,1,""],verb_is_past:[499,5,1,""],verb_is_past_participle:[499,5,1,""],verb_is_present:[499,5,1,""],verb_is_present_participle:[499,5,1,""],verb_is_tense:[499,5,1,""],verb_past:[499,5,1,""],verb_past_participle:[499,5,1,""],verb_present:[499,5,1,""],verb_present_participle:[499,5,1,""],verb_tense:[499,5,1,""]},"evennia.utils.verb_conjugation.pronouns":{pronoun_to_viewpoints:[500,5,1,""]},"evennia.utils.verb_conjugation.tests":{TestPronounMapping:[501,1,1,""],TestVerbConjugate:[501,1,1,""]},"evennia.utils.verb_conjugation.tests.TestPronounMapping":{test_mapping_with_options:[501,4,1,""],test_mapping_with_options_00_you:[501,3,1,""],test_mapping_with_options_01_you:[501,3,1,""],test_mapping_with_options_02_I:[501,3,1,""],test_mapping_with_options_03_I:[501,3,1,""],test_mapping_with_options_04_I:[501,3,1,""],test_mapping_with_options_05_Me:[501,3,1,""],test_mapping_with_options_06_your:[501,3,1,""],test_mapping_with_options_07_ours:[501,3,1,""],test_mapping_with_options_08_yourself:[501,3,1,""],test_mapping_with_options_09_yourself:[501,3,1,""],test_mapping_with_options_10_yourself:[501,3,1,""],test_mapping_with_options_11_yourself:[501,3,1,""],test_mapping_with_options_12_yourselves:[501,3,1,""],test_mapping_with_options_13_he:[501,3,1,""],test_mapping_with_options_14_he:[501,3,1,""],test_mapping_with_options_15_he:[501,3,1,""],test_mapping_with_options_16_her:[501,3,1,""],test_mapping_with_options_17_her:[501,3,1,""],test_mapping_with_options_18_their:[501,3,1,""],test_mapping_with_options_19_their:[501,3,1,""],test_mapping_with_options_20_itself:[501,3,1,""],test_mapping_with_options_21_themselves:[501,3,1,""],test_mapping_with_options_22_herself:[501,3,1,""]},"evennia.utils.verb_conjugation.tests.TestVerbConjugate":{test_verb_actor_stance_components:[501,4,1,""],test_verb_actor_stance_components_00_have:[501,3,1,""],test_verb_actor_stance_components_01_swimming:[501,3,1,""],test_verb_actor_stance_components_02_give:[501,3,1,""],test_verb_actor_stance_components_03_given:[501,3,1,""],test_verb_actor_stance_components_04_am:[501,3,1,""],test_verb_actor_stance_components_05_doing:[501,3,1,""],test_verb_actor_stance_components_06_are:[501,3,1,""],test_verb_actor_stance_components_07_had:[501,3,1,""],test_verb_actor_stance_components_08_grin:[501,3,1,""],test_verb_actor_stance_components_09_smile:[501,3,1,""],test_verb_actor_stance_components_10_vex:[501,3,1,""],test_verb_actor_stance_components_11_thrust:[501,3,1,""],test_verb_conjugate:[501,4,1,""],test_verb_conjugate_0_inf:[501,3,1,""],test_verb_conjugate_1_inf:[501,3,1,""],test_verb_conjugate_2_inf:[501,3,1,""],test_verb_conjugate_3_inf:[501,3,1,""],test_verb_conjugate_4_inf:[501,3,1,""],test_verb_conjugate_5_inf:[501,3,1,""],test_verb_conjugate_6_inf:[501,3,1,""],test_verb_conjugate_7_2sgpres:[501,3,1,""],test_verb_conjugate_8_3sgpres:[501,3,1,""],test_verb_get_all_tenses:[501,3,1,""],test_verb_infinitive:[501,4,1,""],test_verb_infinitive_0_have:[501,3,1,""],test_verb_infinitive_1_swim:[501,3,1,""],test_verb_infinitive_2_give:[501,3,1,""],test_verb_infinitive_3_given:[501,3,1,""],test_verb_infinitive_4_am:[501,3,1,""],test_verb_infinitive_5_doing:[501,3,1,""],test_verb_infinitive_6_are:[501,3,1,""],test_verb_is_past:[501,4,1,""],test_verb_is_past_0_1st:[501,3,1,""],test_verb_is_past_1_1st:[501,3,1,""],test_verb_is_past_2_1st:[501,3,1,""],test_verb_is_past_3_1st:[501,3,1,""],test_verb_is_past_4_1st:[501,3,1,""],test_verb_is_past_5_1st:[501,3,1,""],test_verb_is_past_6_1st:[501,3,1,""],test_verb_is_past_7_2nd:[501,3,1,""],test_verb_is_past_participle:[501,4,1,""],test_verb_is_past_participle_0_have:[501,3,1,""],test_verb_is_past_participle_1_swimming:[501,3,1,""],test_verb_is_past_participle_2_give:[501,3,1,""],test_verb_is_past_participle_3_given:[501,3,1,""],test_verb_is_past_participle_4_am:[501,3,1,""],test_verb_is_past_participle_5_doing:[501,3,1,""],test_verb_is_past_participle_6_are:[501,3,1,""],test_verb_is_past_participle_7_had:[501,3,1,""],test_verb_is_present:[501,4,1,""],test_verb_is_present_0_1st:[501,3,1,""],test_verb_is_present_1_1st:[501,3,1,""],test_verb_is_present_2_1st:[501,3,1,""],test_verb_is_present_3_1st:[501,3,1,""],test_verb_is_present_4_1st:[501,3,1,""],test_verb_is_present_5_1st:[501,3,1,""],test_verb_is_present_6_1st:[501,3,1,""],test_verb_is_present_7_1st:[501,3,1,""],test_verb_is_present_participle:[501,4,1,""],test_verb_is_present_participle_0_have:[501,3,1,""],test_verb_is_present_participle_1_swim:[501,3,1,""],test_verb_is_present_participle_2_give:[501,3,1,""],test_verb_is_present_participle_3_given:[501,3,1,""],test_verb_is_present_participle_4_am:[501,3,1,""],test_verb_is_present_participle_5_doing:[501,3,1,""],test_verb_is_present_participle_6_are:[501,3,1,""],test_verb_is_tense:[501,4,1,""],test_verb_is_tense_0_inf:[501,3,1,""],test_verb_is_tense_1_inf:[501,3,1,""],test_verb_is_tense_2_inf:[501,3,1,""],test_verb_is_tense_3_inf:[501,3,1,""],test_verb_is_tense_4_inf:[501,3,1,""],test_verb_is_tense_5_inf:[501,3,1,""],test_verb_is_tense_6_inf:[501,3,1,""],test_verb_past:[501,4,1,""],test_verb_past_0_1st:[501,3,1,""],test_verb_past_1_1st:[501,3,1,""],test_verb_past_2_1st:[501,3,1,""],test_verb_past_3_1st:[501,3,1,""],test_verb_past_4_1st:[501,3,1,""],test_verb_past_5_1st:[501,3,1,""],test_verb_past_6_1st:[501,3,1,""],test_verb_past_7_2nd:[501,3,1,""],test_verb_past_participle:[501,4,1,""],test_verb_past_participle_0_have:[501,3,1,""],test_verb_past_participle_1_swim:[501,3,1,""],test_verb_past_participle_2_give:[501,3,1,""],test_verb_past_participle_3_given:[501,3,1,""],test_verb_past_participle_4_am:[501,3,1,""],test_verb_past_participle_5_doing:[501,3,1,""],test_verb_past_participle_6_are:[501,3,1,""],test_verb_present:[501,4,1,""],test_verb_present_0_1st:[501,3,1,""],test_verb_present_1_1st:[501,3,1,""],test_verb_present_2_1st:[501,3,1,""],test_verb_present_3_1st:[501,3,1,""],test_verb_present_4_1st:[501,3,1,""],test_verb_present_5_1st:[501,3,1,""],test_verb_present_6_1st:[501,3,1,""],test_verb_present_7_2nd:[501,3,1,""],test_verb_present_8_3rd:[501,3,1,""],test_verb_present_participle:[501,4,1,""],test_verb_present_participle_0_have:[501,3,1,""],test_verb_present_participle_1_swim:[501,3,1,""],test_verb_present_participle_2_give:[501,3,1,""],test_verb_present_participle_3_given:[501,3,1,""],test_verb_present_participle_4_am:[501,3,1,""],test_verb_present_participle_5_doing:[501,3,1,""],test_verb_present_participle_6_are:[501,3,1,""],test_verb_tense:[501,4,1,""],test_verb_tense_0_have:[501,3,1,""],test_verb_tense_1_swim:[501,3,1,""],test_verb_tense_2_give:[501,3,1,""],test_verb_tense_3_given:[501,3,1,""],test_verb_tense_4_am:[501,3,1,""],test_verb_tense_5_doing:[501,3,1,""],test_verb_tense_6_are:[501,3,1,""]},"evennia.web":{admin:[503,0,0,"-"],api:[515,0,0,"-"],templatetags:[523,0,0,"-"],urls:[525,0,0,"-"],utils:[526,0,0,"-"],webclient:[532,0,0,"-"],website:[535,0,0,"-"]},"evennia.web.admin":{accounts:[504,0,0,"-"],attributes:[505,0,0,"-"],comms:[506,0,0,"-"],frontpage:[507,0,0,"-"],help:[508,0,0,"-"],objects:[509,0,0,"-"],scripts:[510,0,0,"-"],server:[511,0,0,"-"],tags:[512,0,0,"-"],urls:[513,0,0,"-"],utils:[514,0,0,"-"]},"evennia.web.admin.accounts":{AccountAdmin:[504,1,1,""],AccountAttributeInline:[504,1,1,""],AccountChangeForm:[504,1,1,""],AccountCreationForm:[504,1,1,""],AccountTagInline:[504,1,1,""],ObjectPuppetInline:[504,1,1,""]},"evennia.web.admin.accounts.AccountAdmin":{add_fieldsets:[504,4,1,""],add_form:[504,4,1,""],fieldsets:[504,4,1,""],form:[504,4,1,""],get_form:[504,3,1,""],inlines:[504,4,1,""],list_display:[504,4,1,""],list_display_links:[504,4,1,""],list_filter:[504,4,1,""],media:[504,3,1,""],ordering:[504,4,1,""],puppeted_objects:[504,3,1,""],readonly_fields:[504,4,1,""],response_add:[504,3,1,""],save_model:[504,3,1,""],search_fields:[504,4,1,""],serialized_string:[504,3,1,""],user_change_password:[504,3,1,""],view_on_site:[504,4,1,""]},"evennia.web.admin.accounts.AccountAttributeInline":{media:[504,3,1,""],model:[504,4,1,""],related_field:[504,4,1,""]},"evennia.web.admin.accounts.AccountChangeForm":{Meta:[504,1,1,""],__init__:[504,3,1,""],base_fields:[504,4,1,""],clean_username:[504,3,1,""],declared_fields:[504,4,1,""],media:[504,3,1,""]},"evennia.web.admin.accounts.AccountChangeForm.Meta":{fields:[504,4,1,""],model:[504,4,1,""]},"evennia.web.admin.accounts.AccountCreationForm":{Meta:[504,1,1,""],base_fields:[504,4,1,""],clean_username:[504,3,1,""],declared_fields:[504,4,1,""],media:[504,3,1,""]},"evennia.web.admin.accounts.AccountCreationForm.Meta":{fields:[504,4,1,""],model:[504,4,1,""]},"evennia.web.admin.accounts.AccountTagInline":{media:[504,3,1,""],model:[504,4,1,""],related_field:[504,4,1,""]},"evennia.web.admin.accounts.ObjectPuppetInline":{ObjectCreateForm:[504,1,1,""],extra:[504,4,1,""],fieldsets:[504,4,1,""],form:[504,4,1,""],has_add_permission:[504,3,1,""],has_delete_permission:[504,3,1,""],media:[504,3,1,""],model:[504,4,1,""],readonly_fields:[504,4,1,""],show_change_link:[504,4,1,""],verbose_name:[504,4,1,""],view_on_site:[504,4,1,""]},"evennia.web.admin.accounts.ObjectPuppetInline.ObjectCreateForm":{Meta:[504,1,1,""],__init__:[504,3,1,""],base_fields:[504,4,1,""],declared_fields:[504,4,1,""],media:[504,3,1,""]},"evennia.web.admin.accounts.ObjectPuppetInline.ObjectCreateForm.Meta":{fields:[504,4,1,""],model:[504,4,1,""]},"evennia.web.admin.attributes":{AttributeForm:[505,1,1,""],AttributeFormSet:[505,1,1,""],AttributeInline:[505,1,1,""]},"evennia.web.admin.attributes.AttributeForm":{Meta:[505,1,1,""],__init__:[505,3,1,""],base_fields:[505,4,1,""],clean_attr_value:[505,3,1,""],declared_fields:[505,4,1,""],media:[505,3,1,""],save:[505,3,1,""]},"evennia.web.admin.attributes.AttributeForm.Meta":{fields:[505,4,1,""]},"evennia.web.admin.attributes.AttributeFormSet":{save:[505,3,1,""]},"evennia.web.admin.attributes.AttributeInline":{extra:[505,4,1,""],form:[505,4,1,""],formset:[505,4,1,""],get_formset:[505,3,1,""],media:[505,3,1,""],model:[505,4,1,""],related_field:[505,4,1,""],verbose_name:[505,4,1,""],verbose_name_plural:[505,4,1,""]},"evennia.web.admin.comms":{ChannelAdmin:[506,1,1,""],ChannelAttributeInline:[506,1,1,""],ChannelForm:[506,1,1,""],ChannelTagInline:[506,1,1,""],MsgAdmin:[506,1,1,""],MsgForm:[506,1,1,""],MsgTagInline:[506,1,1,""]},"evennia.web.admin.comms.ChannelAdmin":{fieldsets:[506,4,1,""],form:[506,4,1,""],get_form:[506,3,1,""],inlines:[506,4,1,""],list_display:[506,4,1,""],list_display_links:[506,4,1,""],list_select_related:[506,4,1,""],media:[506,3,1,""],no_of_subscribers:[506,3,1,""],ordering:[506,4,1,""],raw_id_fields:[506,4,1,""],readonly_fields:[506,4,1,""],response_add:[506,3,1,""],save_as:[506,4,1,""],save_model:[506,3,1,""],save_on_top:[506,4,1,""],search_fields:[506,4,1,""],serialized_string:[506,3,1,""],subscriptions:[506,3,1,""]},"evennia.web.admin.comms.ChannelAttributeInline":{media:[506,3,1,""],model:[506,4,1,""],related_field:[506,4,1,""]},"evennia.web.admin.comms.ChannelForm":{Meta:[506,1,1,""],base_fields:[506,4,1,""],declared_fields:[506,4,1,""],media:[506,3,1,""]},"evennia.web.admin.comms.ChannelForm.Meta":{fields:[506,4,1,""],model:[506,4,1,""]},"evennia.web.admin.comms.ChannelTagInline":{media:[506,3,1,""],model:[506,4,1,""],related_field:[506,4,1,""]},"evennia.web.admin.comms.MsgAdmin":{fieldsets:[506,4,1,""],form:[506,4,1,""],get_form:[506,3,1,""],inlines:[506,4,1,""],list_display:[506,4,1,""],list_display_links:[506,4,1,""],list_select_related:[506,4,1,""],media:[506,3,1,""],ordering:[506,4,1,""],raw_id_fields:[506,4,1,""],readonly_fields:[506,4,1,""],receiver:[506,3,1,""],save_as:[506,4,1,""],save_on_top:[506,4,1,""],search_fields:[506,4,1,""],sender:[506,3,1,""],serialized_string:[506,3,1,""],start_of_message:[506,3,1,""],view_on_site:[506,4,1,""]},"evennia.web.admin.comms.MsgForm":{Meta:[506,1,1,""],base_fields:[506,4,1,""],declared_fields:[506,4,1,""],media:[506,3,1,""]},"evennia.web.admin.comms.MsgForm.Meta":{fields:[506,4,1,""],models:[506,4,1,""]},"evennia.web.admin.comms.MsgTagInline":{media:[506,3,1,""],model:[506,4,1,""],related_field:[506,4,1,""]},"evennia.web.admin.frontpage":{admin_wrapper:[507,5,1,""],evennia_admin:[507,5,1,""]},"evennia.web.admin.help":{HelpEntryAdmin:[508,1,1,""],HelpEntryForm:[508,1,1,""],HelpTagInline:[508,1,1,""]},"evennia.web.admin.help.HelpEntryAdmin":{fieldsets:[508,4,1,""],form:[508,4,1,""],inlines:[508,4,1,""],list_display:[508,4,1,""],list_display_links:[508,4,1,""],list_filter:[508,4,1,""],list_select_related:[508,4,1,""],media:[508,3,1,""],ordering:[508,4,1,""],save_as:[508,4,1,""],save_on_top:[508,4,1,""],search_fields:[508,4,1,""],view_on_site:[508,4,1,""]},"evennia.web.admin.help.HelpEntryForm":{Meta:[508,1,1,""],base_fields:[508,4,1,""],declared_fields:[508,4,1,""],media:[508,3,1,""]},"evennia.web.admin.help.HelpEntryForm.Meta":{fields:[508,4,1,""],model:[508,4,1,""]},"evennia.web.admin.help.HelpTagInline":{media:[508,3,1,""],model:[508,4,1,""],related_field:[508,4,1,""]},"evennia.web.admin.objects":{ObjectAdmin:[509,1,1,""],ObjectAttributeInline:[509,1,1,""],ObjectCreateForm:[509,1,1,""],ObjectEditForm:[509,1,1,""],ObjectTagInline:[509,1,1,""]},"evennia.web.admin.objects.ObjectAdmin":{add_fieldsets:[509,4,1,""],add_form:[509,4,1,""],fieldsets:[509,4,1,""],form:[509,4,1,""],get_fieldsets:[509,3,1,""],get_form:[509,3,1,""],get_urls:[509,3,1,""],inlines:[509,4,1,""],link_button:[509,3,1,""],link_object_to_account:[509,3,1,""],list_display:[509,4,1,""],list_display_links:[509,4,1,""],list_filter:[509,4,1,""],list_select_related:[509,4,1,""],media:[509,3,1,""],ordering:[509,4,1,""],raw_id_fields:[509,4,1,""],readonly_fields:[509,4,1,""],response_add:[509,3,1,""],save_as:[509,4,1,""],save_model:[509,3,1,""],save_on_top:[509,4,1,""],search_fields:[509,4,1,""],serialized_string:[509,3,1,""],view_on_site:[509,4,1,""]},"evennia.web.admin.objects.ObjectAttributeInline":{media:[509,3,1,""],model:[509,4,1,""],related_field:[509,4,1,""]},"evennia.web.admin.objects.ObjectCreateForm":{Meta:[509,1,1,""],__init__:[509,3,1,""],base_fields:[509,4,1,""],declared_fields:[509,4,1,""],media:[509,3,1,""]},"evennia.web.admin.objects.ObjectCreateForm.Meta":{fields:[509,4,1,""],model:[509,4,1,""]},"evennia.web.admin.objects.ObjectEditForm":{Meta:[509,1,1,""],base_fields:[509,4,1,""],declared_fields:[509,4,1,""],media:[509,3,1,""]},"evennia.web.admin.objects.ObjectEditForm.Meta":{fields:[509,4,1,""],model:[509,4,1,""]},"evennia.web.admin.objects.ObjectTagInline":{media:[509,3,1,""],model:[509,4,1,""],related_field:[509,4,1,""]},"evennia.web.admin.scripts":{ScriptAdmin:[510,1,1,""],ScriptAttributeInline:[510,1,1,""],ScriptForm:[510,1,1,""],ScriptTagInline:[510,1,1,""]},"evennia.web.admin.scripts.ScriptAdmin":{fieldsets:[510,4,1,""],form:[510,4,1,""],get_form:[510,3,1,""],inlines:[510,4,1,""],list_display:[510,4,1,""],list_display_links:[510,4,1,""],list_select_related:[510,4,1,""],media:[510,3,1,""],ordering:[510,4,1,""],raw_id_fields:[510,4,1,""],readonly_fields:[510,4,1,""],save_as:[510,4,1,""],save_model:[510,3,1,""],save_on_top:[510,4,1,""],search_fields:[510,4,1,""],serialized_string:[510,3,1,""],view_on_site:[510,4,1,""]},"evennia.web.admin.scripts.ScriptAttributeInline":{media:[510,3,1,""],model:[510,4,1,""],related_field:[510,4,1,""]},"evennia.web.admin.scripts.ScriptForm":{base_fields:[510,4,1,""],declared_fields:[510,4,1,""],media:[510,3,1,""]},"evennia.web.admin.scripts.ScriptTagInline":{media:[510,3,1,""],model:[510,4,1,""],related_field:[510,4,1,""]},"evennia.web.admin.server":{ServerConfigAdmin:[511,1,1,""]},"evennia.web.admin.server.ServerConfigAdmin":{list_display:[511,4,1,""],list_display_links:[511,4,1,""],list_select_related:[511,4,1,""],media:[511,3,1,""],ordering:[511,4,1,""],save_as:[511,4,1,""],save_on_top:[511,4,1,""],search_fields:[511,4,1,""]},"evennia.web.admin.tags":{InlineTagForm:[512,1,1,""],TagAdmin:[512,1,1,""],TagForm:[512,1,1,""],TagFormSet:[512,1,1,""],TagInline:[512,1,1,""]},"evennia.web.admin.tags.InlineTagForm":{Meta:[512,1,1,""],__init__:[512,3,1,""],base_fields:[512,4,1,""],declared_fields:[512,4,1,""],media:[512,3,1,""],save:[512,3,1,""]},"evennia.web.admin.tags.InlineTagForm.Meta":{fields:[512,4,1,""]},"evennia.web.admin.tags.TagAdmin":{fieldsets:[512,4,1,""],form:[512,4,1,""],list_display:[512,4,1,""],list_filter:[512,4,1,""],media:[512,3,1,""],search_fields:[512,4,1,""],view_on_site:[512,4,1,""]},"evennia.web.admin.tags.TagForm":{Meta:[512,1,1,""],base_fields:[512,4,1,""],declared_fields:[512,4,1,""],media:[512,3,1,""]},"evennia.web.admin.tags.TagForm.Meta":{fields:[512,4,1,""]},"evennia.web.admin.tags.TagFormSet":{save:[512,3,1,""],verbose_name:[512,4,1,""],verbose_name_plural:[512,4,1,""]},"evennia.web.admin.tags.TagInline":{extra:[512,4,1,""],form:[512,4,1,""],formset:[512,4,1,""],get_formset:[512,3,1,""],media:[512,3,1,""],model:[512,4,1,""],related_field:[512,4,1,""],verbose_name:[512,4,1,""],verbose_name_plural:[512,4,1,""]},"evennia.web.admin.utils":{get_and_load_cmdsets:[514,5,1,""],get_and_load_typeclasses:[514,5,1,""]},"evennia.web.api":{filters:[516,0,0,"-"],permissions:[517,0,0,"-"],root:[518,0,0,"-"],serializers:[519,0,0,"-"],tests:[520,0,0,"-"],urls:[521,0,0,"-"],views:[522,0,0,"-"]},"evennia.web.api.filters":{AccountDBFilterSet:[516,1,1,""],AliasFilter:[516,1,1,""],BaseTypeclassFilterSet:[516,1,1,""],HelpFilterSet:[516,1,1,""],ObjectDBFilterSet:[516,1,1,""],PermissionFilter:[516,1,1,""],ScriptDBFilterSet:[516,1,1,""],TagTypeFilter:[516,1,1,""],get_tag_query:[516,5,1,""]},"evennia.web.api.filters.AccountDBFilterSet":{Meta:[516,1,1,""],base_filters:[516,4,1,""],declared_filters:[516,4,1,""]},"evennia.web.api.filters.AccountDBFilterSet.Meta":{fields:[516,4,1,""],model:[516,4,1,""]},"evennia.web.api.filters.AliasFilter":{tag_type:[516,4,1,""]},"evennia.web.api.filters.BaseTypeclassFilterSet":{base_filters:[516,4,1,""],declared_filters:[516,4,1,""],filter_name:[516,3,1,""]},"evennia.web.api.filters.HelpFilterSet":{base_filters:[516,4,1,""],declared_filters:[516,4,1,""]},"evennia.web.api.filters.ObjectDBFilterSet":{Meta:[516,1,1,""],base_filters:[516,4,1,""],declared_filters:[516,4,1,""]},"evennia.web.api.filters.ObjectDBFilterSet.Meta":{fields:[516,4,1,""],model:[516,4,1,""]},"evennia.web.api.filters.PermissionFilter":{tag_type:[516,4,1,""]},"evennia.web.api.filters.ScriptDBFilterSet":{Meta:[516,1,1,""],base_filters:[516,4,1,""],declared_filters:[516,4,1,""]},"evennia.web.api.filters.ScriptDBFilterSet.Meta":{fields:[516,4,1,""],model:[516,4,1,""]},"evennia.web.api.filters.TagTypeFilter":{filter:[516,3,1,""],tag_type:[516,4,1,""]},"evennia.web.api.permissions":{EvenniaPermission:[517,1,1,""]},"evennia.web.api.permissions.EvenniaPermission":{MINIMUM_CREATE_PERMISSION:[517,4,1,""],MINIMUM_LIST_PERMISSION:[517,4,1,""],check_locks:[517,3,1,""],destroy_locks:[517,4,1,""],has_object_permission:[517,3,1,""],has_permission:[517,3,1,""],update_locks:[517,4,1,""],view_locks:[517,4,1,""]},"evennia.web.api.root":{APIRootRouter:[518,1,1,""],EvenniaAPIRoot:[518,1,1,""]},"evennia.web.api.root.APIRootRouter":{APIRootView:[518,4,1,""]},"evennia.web.api.serializers":{AccountListSerializer:[519,1,1,""],AccountSerializer:[519,1,1,""],AttributeSerializer:[519,1,1,""],HelpListSerializer:[519,1,1,""],HelpSerializer:[519,1,1,""],ObjectDBSerializer:[519,1,1,""],ObjectListSerializer:[519,1,1,""],ScriptDBSerializer:[519,1,1,""],ScriptListSerializer:[519,1,1,""],SimpleObjectDBSerializer:[519,1,1,""],TagSerializer:[519,1,1,""],TypeclassListSerializerMixin:[519,1,1,""],TypeclassSerializerMixin:[519,1,1,""]},"evennia.web.api.serializers.AccountListSerializer":{Meta:[519,1,1,""]},"evennia.web.api.serializers.AccountListSerializer.Meta":{fields:[519,4,1,""],model:[519,4,1,""],read_only_fields:[519,4,1,""]},"evennia.web.api.serializers.AccountSerializer":{Meta:[519,1,1,""],get_session_ids:[519,3,1,""]},"evennia.web.api.serializers.AccountSerializer.Meta":{fields:[519,4,1,""],model:[519,4,1,""],read_only_fields:[519,4,1,""]},"evennia.web.api.serializers.AttributeSerializer":{Meta:[519,1,1,""],get_value_display:[519,3,1,""]},"evennia.web.api.serializers.AttributeSerializer.Meta":{fields:[519,4,1,""],model:[519,4,1,""]},"evennia.web.api.serializers.HelpListSerializer":{Meta:[519,1,1,""]},"evennia.web.api.serializers.HelpListSerializer.Meta":{fields:[519,4,1,""],model:[519,4,1,""],read_only_fields:[519,4,1,""]},"evennia.web.api.serializers.HelpSerializer":{Meta:[519,1,1,""]},"evennia.web.api.serializers.HelpSerializer.Meta":{fields:[519,4,1,""],model:[519,4,1,""],read_only_fields:[519,4,1,""]},"evennia.web.api.serializers.ObjectDBSerializer":{Meta:[519,1,1,""],get_contents:[519,3,1,""],get_exits:[519,3,1,""]},"evennia.web.api.serializers.ObjectDBSerializer.Meta":{fields:[519,4,1,""],model:[519,4,1,""],read_only_fields:[519,4,1,""]},"evennia.web.api.serializers.ObjectListSerializer":{Meta:[519,1,1,""]},"evennia.web.api.serializers.ObjectListSerializer.Meta":{fields:[519,4,1,""],model:[519,4,1,""],read_only_fields:[519,4,1,""]},"evennia.web.api.serializers.ScriptDBSerializer":{Meta:[519,1,1,""]},"evennia.web.api.serializers.ScriptDBSerializer.Meta":{fields:[519,4,1,""],model:[519,4,1,""],read_only_fields:[519,4,1,""]},"evennia.web.api.serializers.ScriptListSerializer":{Meta:[519,1,1,""]},"evennia.web.api.serializers.ScriptListSerializer.Meta":{fields:[519,4,1,""],model:[519,4,1,""],read_only_fields:[519,4,1,""]},"evennia.web.api.serializers.SimpleObjectDBSerializer":{Meta:[519,1,1,""]},"evennia.web.api.serializers.SimpleObjectDBSerializer.Meta":{fields:[519,4,1,""],model:[519,4,1,""]},"evennia.web.api.serializers.TagSerializer":{Meta:[519,1,1,""]},"evennia.web.api.serializers.TagSerializer.Meta":{fields:[519,4,1,""],model:[519,4,1,""]},"evennia.web.api.serializers.TypeclassListSerializerMixin":{shared_fields:[519,4,1,""]},"evennia.web.api.serializers.TypeclassSerializerMixin":{get_aliases:[519,3,1,""],get_attributes:[519,3,1,""],get_nicks:[519,3,1,""],get_permissions:[519,3,1,""],get_tags:[519,3,1,""],shared_fields:[519,4,1,""]},"evennia.web.api.tests":{TestEvenniaRESTApi:[520,1,1,""]},"evennia.web.api.tests.TestEvenniaRESTApi":{client_class:[520,4,1,""],get_view_details:[520,3,1,""],maxDiff:[520,4,1,""],setUp:[520,3,1,""],tearDown:[520,3,1,""],test_create:[520,3,1,""],test_delete:[520,3,1,""],test_list:[520,3,1,""],test_retrieve:[520,3,1,""],test_set_attribute:[520,3,1,""],test_update:[520,3,1,""]},"evennia.web.api.views":{AccountDBViewSet:[522,1,1,""],CharacterViewSet:[522,1,1,""],ExitViewSet:[522,1,1,""],GeneralViewSetMixin:[522,1,1,""],HelpViewSet:[522,1,1,""],ObjectDBViewSet:[522,1,1,""],RoomViewSet:[522,1,1,""],ScriptDBViewSet:[522,1,1,""],TypeclassViewSetMixin:[522,1,1,""]},"evennia.web.api.views.AccountDBViewSet":{basename:[522,4,1,""],description:[522,4,1,""],detail:[522,4,1,""],filterset_class:[522,4,1,""],list_serializer_class:[522,4,1,""],name:[522,4,1,""],queryset:[522,4,1,""],serializer_class:[522,4,1,""],suffix:[522,4,1,""]},"evennia.web.api.views.CharacterViewSet":{basename:[522,4,1,""],description:[522,4,1,""],detail:[522,4,1,""],list_serializer_class:[522,4,1,""],name:[522,4,1,""],queryset:[522,4,1,""],suffix:[522,4,1,""]},"evennia.web.api.views.ExitViewSet":{basename:[522,4,1,""],description:[522,4,1,""],detail:[522,4,1,""],list_serializer_class:[522,4,1,""],name:[522,4,1,""],queryset:[522,4,1,""],suffix:[522,4,1,""]},"evennia.web.api.views.GeneralViewSetMixin":{get_serializer_class:[522,3,1,""]},"evennia.web.api.views.HelpViewSet":{basename:[522,4,1,""],description:[522,4,1,""],detail:[522,4,1,""],filterset_class:[522,4,1,""],list_serializer_class:[522,4,1,""],name:[522,4,1,""],queryset:[522,4,1,""],serializer_class:[522,4,1,""],suffix:[522,4,1,""]},"evennia.web.api.views.ObjectDBViewSet":{basename:[522,4,1,""],description:[522,4,1,""],detail:[522,4,1,""],filterset_class:[522,4,1,""],list_serializer_class:[522,4,1,""],name:[522,4,1,""],queryset:[522,4,1,""],serializer_class:[522,4,1,""],suffix:[522,4,1,""]},"evennia.web.api.views.RoomViewSet":{basename:[522,4,1,""],description:[522,4,1,""],detail:[522,4,1,""],list_serializer_class:[522,4,1,""],name:[522,4,1,""],queryset:[522,4,1,""],suffix:[522,4,1,""]},"evennia.web.api.views.ScriptDBViewSet":{basename:[522,4,1,""],description:[522,4,1,""],detail:[522,4,1,""],filterset_class:[522,4,1,""],list_serializer_class:[522,4,1,""],name:[522,4,1,""],queryset:[522,4,1,""],serializer_class:[522,4,1,""],suffix:[522,4,1,""]},"evennia.web.api.views.TypeclassViewSetMixin":{filter_backends:[522,4,1,""],permission_classes:[522,4,1,""],set_attribute:[522,3,1,""]},"evennia.web.templatetags":{addclass:[524,0,0,"-"]},"evennia.web.templatetags.addclass":{addclass:[524,5,1,""]},"evennia.web.utils":{adminsite:[527,0,0,"-"],backends:[528,0,0,"-"],general_context:[529,0,0,"-"],middleware:[530,0,0,"-"],tests:[531,0,0,"-"]},"evennia.web.utils.adminsite":{EvenniaAdminApp:[527,1,1,""],EvenniaAdminSite:[527,1,1,""]},"evennia.web.utils.adminsite.EvenniaAdminApp":{default_site:[527,4,1,""]},"evennia.web.utils.adminsite.EvenniaAdminSite":{app_order:[527,4,1,""],get_app_list:[527,3,1,""],site_header:[527,4,1,""]},"evennia.web.utils.backends":{CaseInsensitiveModelBackend:[528,1,1,""]},"evennia.web.utils.backends.CaseInsensitiveModelBackend":{authenticate:[528,3,1,""]},"evennia.web.utils.general_context":{general_context:[529,5,1,""],load_game_settings:[529,5,1,""]},"evennia.web.utils.middleware":{SharedLoginMiddleware:[530,1,1,""]},"evennia.web.utils.middleware.SharedLoginMiddleware":{__init__:[530,3,1,""],make_shared_login:[530,3,1,""]},"evennia.web.utils.tests":{TestGeneralContext:[531,1,1,""]},"evennia.web.utils.tests.TestGeneralContext":{maxDiff:[531,4,1,""],test_general_context:[531,3,1,""]},"evennia.web.webclient":{urls:[533,0,0,"-"],views:[534,0,0,"-"]},"evennia.web.webclient.views":{webclient:[534,5,1,""]},"evennia.web.website":{forms:[536,0,0,"-"],tests:[537,0,0,"-"],urls:[538,0,0,"-"],views:[539,0,0,"-"]},"evennia.web.website.forms":{AccountForm:[536,1,1,""],CharacterForm:[536,1,1,""],CharacterUpdateForm:[536,1,1,""],EvenniaForm:[536,1,1,""],ObjectForm:[536,1,1,""]},"evennia.web.website.forms.AccountForm":{Meta:[536,1,1,""],base_fields:[536,4,1,""],declared_fields:[536,4,1,""],media:[536,3,1,""]},"evennia.web.website.forms.AccountForm.Meta":{field_classes:[536,4,1,""],fields:[536,4,1,""],model:[536,4,1,""]},"evennia.web.website.forms.CharacterForm":{Meta:[536,1,1,""],base_fields:[536,4,1,""],declared_fields:[536,4,1,""],media:[536,3,1,""]},"evennia.web.website.forms.CharacterForm.Meta":{fields:[536,4,1,""],labels:[536,4,1,""],model:[536,4,1,""]},"evennia.web.website.forms.CharacterUpdateForm":{base_fields:[536,4,1,""],declared_fields:[536,4,1,""],media:[536,3,1,""]},"evennia.web.website.forms.EvenniaForm":{base_fields:[536,4,1,""],clean:[536,3,1,""],declared_fields:[536,4,1,""],media:[536,3,1,""]},"evennia.web.website.forms.ObjectForm":{Meta:[536,1,1,""],base_fields:[536,4,1,""],declared_fields:[536,4,1,""],media:[536,3,1,""]},"evennia.web.website.forms.ObjectForm.Meta":{fields:[536,4,1,""],labels:[536,4,1,""],model:[536,4,1,""]},"evennia.web.website.tests":{AdminTest:[537,1,1,""],ChannelDetailTest:[537,1,1,""],ChannelListTest:[537,1,1,""],CharacterCreateView:[537,1,1,""],CharacterDeleteView:[537,1,1,""],CharacterListView:[537,1,1,""],CharacterManageView:[537,1,1,""],CharacterPuppetView:[537,1,1,""],CharacterUpdateView:[537,1,1,""],EvenniaWebTest:[537,1,1,""],HelpDetailTest:[537,1,1,""],HelpListTest:[537,1,1,""],HelpLockedDetailTest:[537,1,1,""],IndexTest:[537,1,1,""],LoginTest:[537,1,1,""],LogoutTest:[537,1,1,""],PasswordResetTest:[537,1,1,""],RegisterTest:[537,1,1,""],WebclientTest:[537,1,1,""]},"evennia.web.website.tests.AdminTest":{unauthenticated_response:[537,4,1,""],url_name:[537,4,1,""]},"evennia.web.website.tests.ChannelDetailTest":{get_kwargs:[537,3,1,""],setUp:[537,3,1,""],url_name:[537,4,1,""]},"evennia.web.website.tests.ChannelListTest":{url_name:[537,4,1,""]},"evennia.web.website.tests.CharacterCreateView":{test_valid_access_multisession_0:[537,3,1,""],test_valid_access_multisession_2:[537,3,1,""],unauthenticated_response:[537,4,1,""],url_name:[537,4,1,""]},"evennia.web.website.tests.CharacterDeleteView":{get_kwargs:[537,3,1,""],test_invalid_access:[537,3,1,""],test_valid_access:[537,3,1,""],unauthenticated_response:[537,4,1,""],url_name:[537,4,1,""]},"evennia.web.website.tests.CharacterListView":{unauthenticated_response:[537,4,1,""],url_name:[537,4,1,""]},"evennia.web.website.tests.CharacterManageView":{unauthenticated_response:[537,4,1,""],url_name:[537,4,1,""]},"evennia.web.website.tests.CharacterPuppetView":{get_kwargs:[537,3,1,""],test_invalid_access:[537,3,1,""],unauthenticated_response:[537,4,1,""],url_name:[537,4,1,""]},"evennia.web.website.tests.CharacterUpdateView":{get_kwargs:[537,3,1,""],test_invalid_access:[537,3,1,""],test_valid_access:[537,3,1,""],unauthenticated_response:[537,4,1,""],url_name:[537,4,1,""]},"evennia.web.website.tests.EvenniaWebTest":{account_typeclass:[537,4,1,""],authenticated_response:[537,4,1,""],channel_typeclass:[537,4,1,""],character_typeclass:[537,4,1,""],exit_typeclass:[537,4,1,""],get_kwargs:[537,3,1,""],login:[537,3,1,""],object_typeclass:[537,4,1,""],room_typeclass:[537,4,1,""],script_typeclass:[537,4,1,""],setUp:[537,3,1,""],test_get:[537,3,1,""],test_get_authenticated:[537,3,1,""],test_valid_chars:[537,3,1,""],unauthenticated_response:[537,4,1,""],url_name:[537,4,1,""]},"evennia.web.website.tests.HelpDetailTest":{get_kwargs:[537,3,1,""],setUp:[537,3,1,""],test_object_cache:[537,3,1,""],test_view:[537,3,1,""],url_name:[537,4,1,""]},"evennia.web.website.tests.HelpListTest":{url_name:[537,4,1,""]},"evennia.web.website.tests.HelpLockedDetailTest":{get_kwargs:[537,3,1,""],setUp:[537,3,1,""],test_lock_with_perm:[537,3,1,""],test_locked_entry:[537,3,1,""],url_name:[537,4,1,""]},"evennia.web.website.tests.IndexTest":{url_name:[537,4,1,""]},"evennia.web.website.tests.LoginTest":{url_name:[537,4,1,""]},"evennia.web.website.tests.LogoutTest":{url_name:[537,4,1,""]},"evennia.web.website.tests.PasswordResetTest":{unauthenticated_response:[537,4,1,""],url_name:[537,4,1,""]},"evennia.web.website.tests.RegisterTest":{url_name:[537,4,1,""]},"evennia.web.website.tests.WebclientTest":{test_get:[537,3,1,""],test_get_disabled:[537,3,1,""],url_name:[537,4,1,""]},"evennia.web.website.views":{accounts:[540,0,0,"-"],channels:[541,0,0,"-"],characters:[542,0,0,"-"],errors:[543,0,0,"-"],help:[544,0,0,"-"],index:[545,0,0,"-"],mixins:[546,0,0,"-"],objects:[547,0,0,"-"]},"evennia.web.website.views.accounts":{AccountCreateView:[540,1,1,""],AccountMixin:[540,1,1,""]},"evennia.web.website.views.accounts.AccountCreateView":{form_valid:[540,3,1,""],success_url:[540,4,1,""],template_name:[540,4,1,""]},"evennia.web.website.views.accounts.AccountMixin":{form_class:[540,4,1,""],model:[540,4,1,""]},"evennia.web.website.views.channels":{ChannelDetailView:[541,1,1,""],ChannelListView:[541,1,1,""],ChannelMixin:[541,1,1,""]},"evennia.web.website.views.channels.ChannelDetailView":{attributes:[541,4,1,""],get_context_data:[541,3,1,""],get_object:[541,3,1,""],max_num_lines:[541,4,1,""],template_name:[541,4,1,""]},"evennia.web.website.views.channels.ChannelListView":{get_context_data:[541,3,1,""],max_popular:[541,4,1,""],page_title:[541,4,1,""],paginate_by:[541,4,1,""],template_name:[541,4,1,""]},"evennia.web.website.views.channels.ChannelMixin":{access_type:[541,4,1,""],get_queryset:[541,3,1,""],model:[541,4,1,""],page_title:[541,4,1,""]},"evennia.web.website.views.characters":{CharacterCreateView:[542,1,1,""],CharacterDeleteView:[542,1,1,""],CharacterDetailView:[542,1,1,""],CharacterListView:[542,1,1,""],CharacterManageView:[542,1,1,""],CharacterMixin:[542,1,1,""],CharacterPuppetView:[542,1,1,""],CharacterUpdateView:[542,1,1,""]},"evennia.web.website.views.characters.CharacterCreateView":{form_valid:[542,3,1,""],template_name:[542,4,1,""]},"evennia.web.website.views.characters.CharacterDeleteView":{form_class:[542,4,1,""]},"evennia.web.website.views.characters.CharacterDetailView":{access_type:[542,4,1,""],attributes:[542,4,1,""],get_queryset:[542,3,1,""],template_name:[542,4,1,""]},"evennia.web.website.views.characters.CharacterListView":{access_type:[542,4,1,""],get_queryset:[542,3,1,""],page_title:[542,4,1,""],paginate_by:[542,4,1,""],template_name:[542,4,1,""]},"evennia.web.website.views.characters.CharacterManageView":{page_title:[542,4,1,""],paginate_by:[542,4,1,""],template_name:[542,4,1,""]},"evennia.web.website.views.characters.CharacterMixin":{form_class:[542,4,1,""],get_queryset:[542,3,1,""],model:[542,4,1,""],success_url:[542,4,1,""]},"evennia.web.website.views.characters.CharacterPuppetView":{get_redirect_url:[542,3,1,""]},"evennia.web.website.views.characters.CharacterUpdateView":{form_class:[542,4,1,""],template_name:[542,4,1,""]},"evennia.web.website.views.errors":{to_be_implemented:[543,5,1,""]},"evennia.web.website.views.help":{HelpDetailView:[544,1,1,""],HelpListView:[544,1,1,""],HelpMixin:[544,1,1,""],can_read_topic:[544,5,1,""],collect_topics:[544,5,1,""],get_help_category:[544,5,1,""],get_help_topic:[544,5,1,""]},"evennia.web.website.views.help.HelpDetailView":{get_context_data:[544,3,1,""],get_object:[544,3,1,""],page_title:[544,3,1,""],template_name:[544,4,1,""]},"evennia.web.website.views.help.HelpListView":{page_title:[544,4,1,""],paginate_by:[544,4,1,""],template_name:[544,4,1,""]},"evennia.web.website.views.help.HelpMixin":{get_queryset:[544,3,1,""],page_title:[544,4,1,""]},"evennia.web.website.views.index":{EvenniaIndexView:[545,1,1,""]},"evennia.web.website.views.index.EvenniaIndexView":{get_context_data:[545,3,1,""],template_name:[545,4,1,""]},"evennia.web.website.views.mixins":{EvenniaCreateView:[546,1,1,""],EvenniaDeleteView:[546,1,1,""],EvenniaDetailView:[546,1,1,""],EvenniaUpdateView:[546,1,1,""],TypeclassMixin:[546,1,1,""]},"evennia.web.website.views.mixins.EvenniaCreateView":{page_title:[546,3,1,""]},"evennia.web.website.views.mixins.EvenniaDeleteView":{page_title:[546,3,1,""]},"evennia.web.website.views.mixins.EvenniaDetailView":{page_title:[546,3,1,""]},"evennia.web.website.views.mixins.EvenniaUpdateView":{page_title:[546,3,1,""]},"evennia.web.website.views.mixins.TypeclassMixin":{typeclass:[546,3,1,""]},"evennia.web.website.views.objects":{ObjectCreateView:[547,1,1,""],ObjectDeleteView:[547,1,1,""],ObjectDetailView:[547,1,1,""],ObjectUpdateView:[547,1,1,""]},"evennia.web.website.views.objects.ObjectCreateView":{model:[547,4,1,""]},"evennia.web.website.views.objects.ObjectDeleteView":{access_type:[547,4,1,""],model:[547,4,1,""],template_name:[547,4,1,""]},"evennia.web.website.views.objects.ObjectDetailView":{access_type:[547,4,1,""],attributes:[547,4,1,""],get_context_data:[547,3,1,""],get_object:[547,3,1,""],model:[547,4,1,""],template_name:[547,4,1,""]},"evennia.web.website.views.objects.ObjectUpdateView":{access_type:[547,4,1,""],form_valid:[547,3,1,""],get_initial:[547,3,1,""],get_success_url:[547,3,1,""],model:[547,4,1,""]},evennia:{accounts:[207,0,0,"-"],commands:[212,0,0,"-"],comms:[235,0,0,"-"],contrib:[239,0,0,"-"],help:[391,0,0,"-"],locks:[396,0,0,"-"],objects:[399,0,0,"-"],prototypes:[403,0,0,"-"],scripts:[408,0,0,"-"],server:[416,0,0,"-"],set_trace:[205,5,1,""],settings_default:[466,0,0,"-"],typeclasses:[467,0,0,"-"],utils:[472,0,0,"-"],web:[502,0,0,"-"]}},objnames:{"0":["py","module","Python module"],"1":["py","class","Python class"],"2":["py","exception","Python exception"],"3":["py","method","Python method"],"4":["py","attribute","Python attribute"],"5":["py","function","Python function"],"6":["py","data","Python data"]},objtypes:{"0":"py:module","1":"py:class","2":"py:exception","3":"py:method","4":"py:attribute","5":"py:function","6":"py:data"},terms:{"000":[60,95,96,116,167,201,495],"0000":[95,96],"0004":80,"0005":75,"001":[80,339,495],"002":495,"003":[135,495],"004":495,"005":[60,473,495],"006":495,"007":495,"008":495,"009":495,"010":[153,495],"011":495,"012":495,"013":495,"014":495,"015":495,"0157":201,"015public":153,"016":495,"017":495,"018":495,"019":495,"020":495,"020t":153,"021":495,"022":495,"023":495,"024":495,"0247":80,"025":495,"026":495,"027":495,"028":495,"029":495,"030":495,"030a":153,"031":495,"032":495,"033":[473,495],"034":[80,495],"035":495,"036":495,"037":495,"038":495,"039":495,"040":495,"040f":153,"041":495,"042":495,"043":495,"043thi":135,"044":495,"045":495,"046":495,"047":495,"048":495,"049":495,"050":[473,495],"050f":153,"051":495,"052":495,"053":495,"054":[60,495],"055":[473,495],"056":495,"057":495,"058":495,"059":495,"060":495,"061":495,"062":495,"063":495,"064":495,"065":495,"066":495,"067":495,"068":495,"069":495,"070":495,"071":495,"072":495,"073":495,"074":495,"075":495,"076":495,"077":495,"078":495,"079":495,"080":495,"081":495,"082":495,"083":495,"084":495,"085":495,"086":495,"087":495,"088":495,"089":495,"090":495,"091":495,"092":495,"093":495,"094":495,"095":495,"096":495,"097":495,"098":495,"099":495,"0b16":184,"0d0":160,"0jyyngi":0,"0th":14,"0x045a0990":6,"100":[7,21,48,83,85,91,93,110,124,141,146,160,168,170,201,232,280,312,315,316,339,347,350,357,358,384,495,496,541,542],"1000":[0,7,42,147,160,192,201,312,406],"10000":541,"1000000":[7,167,201,489],"100m":495,"100mb":197,"100x":0,"101":[21,402,495],"101m":495,"102":[110,358,495],"102m":495,"103":495,"103m":495,"104":495,"104m":495,"105":495,"105m":495,"106":495,"106m":495,"107":495,"107m":495,"108":495,"108m":495,"109":495,"1098":48,"109m":495,"10gold":141,"10m":187,"110":[110,358,473,481,495],"1100":358,"110m":495,"111":[55,60,220,495],"111m":495,"112":495,"112m":495,"113":[197,495],"113m":495,"114":495,"114m":495,"115":495,"115600":160,"115m":495,"116":495,"116m":495,"117":495,"117m":495,"118":[47,495],"1184":183,"118m":495,"119":495,"119m":495,"120":[21,495],"1200":[201,479],"1209600":201,"120m":495,"121":495,"121m":495,"122":495,"122m":495,"123":[12,82,117,179,402,483,495],"1234":[14,41,103,185,201,309],"123dark":166,"123m":495,"124":495,"12400":167,"124m":495,"125":[49,201,495],"125m":495,"126":495,"126m":495,"127":[53,124,125,182,183,184,187,193,195,197,201,440,495],"127m":495,"128":495,"128m":495,"129":495,"129m":495,"12s":20,"130":495,"130m":495,"131":495,"131m":495,"132":495,"132m":495,"133":495,"133m":495,"134":[55,220,495],"134m":495,"135":495,"13541":429,"135m":495,"136":495,"1369":0,"136m":495,"137":495,"137m":495,"138":495,"138m":495,"139":495,"139m":495,"140":[0,6,205,495],"1400":479,"140313967648552":23,"140m":495,"141":495,"141m":495,"142":[80,245,495],"142m":495,"143":495,"143m":495,"144":495,"144m":495,"145":495,"145m":495,"146":495,"146m":495,"147":495,"147m":495,"148":495,"148m":495,"149":495,"149m":495,"150":[478,495],"150m":495,"151":495,"151m":495,"152":495,"152m":495,"153":495,"153m":495,"154":495,"154m":495,"155":495,"155m":495,"156":495,"156m":495,"157":495,"1577865600":163,"157m":495,"158":495,"158m":495,"159":[131,495],"159m":495,"15th":94,"160":495,"1600":201,"160m":495,"161":495,"161m":495,"162":495,"162m":495,"163":495,"163m":495,"164":495,"164m":495,"165":495,"165m":495,"166":495,"166m":495,"167":495,"167m":495,"168":495,"168m":495,"169":495,"169m":495,"16m":495,"170":495,"170m":495,"171":495,"171m":495,"172":495,"172m":495,"173":495,"1730":181,"173m":495,"174":495,"174m":495,"175":495,"175m":495,"176":495,"1763":130,"1764":130,"176m":495,"177":495,"177m":495,"178":495,"178m":495,"179":495,"179m":495,"17m":495,"180":495,"180m":495,"181":495,"181m":495,"182":495,"182m":495,"183":495,"183m":495,"184":495,"184m":495,"185":495,"185m":495,"186":495,"186m":495,"187":495,"187m":495,"188":495,"188m":495,"189":495,"189m":495,"18m":495,"190":495,"1903":130,"190m":495,"191":495,"1912":0,"191m":495,"192":495,"192m":495,"193":495,"193m":495,"194":495,"194m":495,"195":495,"195m":495,"196":495,"196m":495,"197":495,"1970":[163,201],"197m":495,"198":495,"198m":495,"199":495,"1996":181,"1998":181,"199m":495,"19m":495,"1_7":10,"1d100":[87,141,146,347],"1d2":160,"1d20":[87,141,347],"1d6":146,"1em":0,"1gb":197,"1st":[30,58,94,163,483,499,500,501],"200":[110,201,358,495,537],"2000":201,"2001":181,"2003":181,"2004":181,"2006":0,"2008":496,"200m":495,"201":495,"2010":[2,495],"2011":[2,106,109,113,117,367,368,369,370,372,375],"2012":[2,75,77,78,79,87,88,90,117,253,255,286,287,319,320,346,347,360,362,363],"2013":2,"2014":[2,108,110,117,152,328,329,356,358],"2015":[2,64,92,104,113,117,184,299,300,352,353,354,365,372],"2016":[2,97,98,99,101,107,109,117,302,303,305,306,325,326,369,370],"2017":[2,76,81,82,86,93,94,100,105,111,112,114,115,117,163,197,247,248,250,251,272,274,289,290,311,312,313,314,315,316,331,333,349,350,380,381,385,386,388,390],"2018":[0,64,80,91,103,117,124,135,136,244,245,264,308,309,383,384],"2019":[0,64,89,90,99,117,181,276,319,320],"201m":495,"202":495,"2020":[0,55,64,75,85,110,117,163,241,295,296,356,358,373],"2020_01_29":489,"2020_01_29__1":489,"2020_01_29__2":489,"2021":[50,64,83,84,102,116,117,269,270,292,293,334,499,500,544],"2022":[0,312,313,315],"2025":94,"202m":495,"203":[197,495],"203m":495,"204":495,"2048":187,"204m":495,"205":[479,495],"2053":429,"205m":495,"206":495,"206m":495,"207":495,"2076":130,"207m":495,"208":[169,495],"208m":495,"209":495,"2099":75,"209m":495,"20m":495,"210":495,"210m":495,"211":495,"211m":495,"212":[55,495],"2128":160,"212m":495,"213":[49,495],"213m":495,"214":[49,495],"214m":495,"215":495,"215m":495,"216":495,"216m":495,"217":495,"217m":495,"218":495,"218m":495,"219":[124,495],"219m":495,"21m":495,"220":495,"2207":[105,386],"220m":495,"221":[474,495],"221m":495,"222":[60,473,495],"222m":495,"223":[55,495],"223m":495,"224":495,"224m":495,"225":[55,495],"225m":495,"226":495,"226m":495,"227":495,"227m":495,"228":495,"228m":495,"229":495,"229m":495,"22m":[473,495],"22nd":496,"230":[60,495],"230m":495,"231":495,"231m":495,"232":495,"232m":495,"233":[55,220,483,495],"233m":495,"234":[82,117,248,495],"234m":495,"235":495,"235m":495,"236":495,"236m":495,"237":[55,495],"237m":495,"238":495,"238m":495,"239":495,"239m":495,"23fwsf23sdfw23wef23":7,"23m":495,"240":495,"2401":0,"240m":495,"241":495,"241m":495,"242":495,"2429":544,"242m":495,"243":495,"243m":495,"244":[42,495],"244m":495,"245":495,"245m":495,"246":495,"246m":495,"247":495,"247m":495,"248":495,"248m":495,"249":495,"249m":495,"24m":495,"250":495,"250m":495,"251":495,"251m":495,"252":495,"252m":495,"253":495,"253m":495,"254":495,"254m":495,"255":[184,473,495],"255m":495,"256":[55,60,219,473],"25m":495,"26m":495,"27m":495,"280":188,"28gmcp":444,"28m":495,"29m":495,"2d10":[87,117],"2d6":[87,141,162,347],"2gb":197,"2nd":[30,58,284,483,499,500,501],"2nd_person_pronoun":500,"2sgpre":501,"2xcoal":297,"300":[60,176,251,484],"3000000":167,"302":537,"30m":[473,495],"30s":[141,339],"31m":[473,495],"31st":163,"32bit":[184,195],"32m":[473,495],"32nd":162,"333":[55,60],"33m":[473,495],"340":160,"343":30,"34m":[473,495],"358":50,"358283996582031":7,"35m":[473,495],"360":163,"3600":[163,201],"36m":[473,495],"37m":[473,495],"3872":130,"38m":495,"39m":495,"3c3ccec30f037be174d3":496,"3d10":[87,347],"3d6":347,"3rd":[30,58,163,284,483,499,500,501],"3rd_person_pronoun":500,"3sgpast":499,"3sgpre":[499,501],"4000":[4,121,124,125,187,190,191,192,193,195,197,199,201],"4001":[4,49,50,51,52,53,73,123,124,125,149,164,178,179,182,187,190,191,192,193,195,197,199,201,449],"4002":[4,182,187,192,197,201],"4003":[197,201],"4004":[197,201],"4005":[197,201],"4006":[197,201],"403":12,"404":[53,164],"40m":[473,495],"41917":440,"41m":[473,495],"4201":197,"425":473,"42m":[473,495],"430000":163,"431":473,"43m":[473,495],"443":[182,187,199,201],"444":60,"44m":[473,495],"45m":[20,473,495],"46m":[473,495],"473f2e37932759ab07e2e062ba461569106aef87":233,"474a3b9f":40,"47m":[473,495],"48m":495,"49m":495,"4er43233fwefwfw":124,"4th":[116,119,181],"500":[53,60,116,176,201,341,473,544],"50000":167,"500red":473,"502916":10,"503435":10,"505":473,"50m":495,"50mb":197,"516106":160,"51m":495,"520":60,"52m":495,"530":135,"53m":495,"543":[30,483],"5432":183,"54343":30,"5434343":483,"54m":495,"550":[473,479],"550n":153,"551e":153,"552w":153,"553b":153,"554i":153,"555":[60,105,386,473],"555e":153,"55m":495,"565000":163,"566":42,"56m":495,"577349":495,"57m":495,"58m":495,"593":496,"59m":495,"5d5":160,"5mb":75,"5x5":170,"600":496,"6000":201,"60m":495,"61m":495,"624660":50,"62cb3a1a":40,"62m":495,"63m":495,"64m":495,"64x64":53,"65m":495,"6666":62,"6667":[181,189,209,227,461],"66m":495,"67m":495,"686":58,"68m":495,"69m":495,"6d6":160,"6em":0,"70982813835144":7,"70m":495,"71m":495,"72m":495,"73m":495,"74m":495,"75m":495,"760000":163,"76m":495,"775":4,"77m":495,"78m":495,"79m":495,"7a3d54":53,"800":201,"8080":197,"80m":495,"8111":4,"81m":495,"82m":495,"83m":495,"84m":495,"85000":167,"85m":495,"8601":201,"86400":173,"86m":495,"87m":495,"8859":[17,70,201,234],"88m":495,"89m":495,"8f64fec2670c":197,"900":[91,384,479],"9000":536,"90m":495,"90s":497,"91m":495,"92m":495,"93m":495,"94608000":75,"94m":495,"95m":495,"96m":495,"97m":495,"981":[105,386],"98m":495,"990":479,"999":315,"99999":140,"999999999999":342,"99m":495,"\u6d4b\u8bd5":153,"abstract":[0,67,112,116,122,131,141,279,316,468,469,470,487,490,496],"ansl\u00f6t":64,"boolean":[0,14,15,19,23,30,51,91,126,178,217,347,384,398,402,413,440,468,471,473,474,490,497],"break":[0,6,10,16,31,48,51,54,55,60,64,69,102,117,134,135,136,140,142,144,156,161,162,169,170,185,199,201,205,222,229,230,270,306,335,344,368,429,473,480,481,496],"byte":[0,17,20,30,70,201,420,422,429,431,440,448,496],"case":[0,6,10,11,12,14,15,16,17,19,20,21,23,28,31,32,33,37,39,41,44,45,48,49,50,51,52,53,54,55,60,62,64,65,67,68,69,70,75,80,84,89,94,95,104,116,118,119,122,125,126,128,129,130,131,132,133,134,135,136,137,138,139,140,143,144,147,152,153,154,155,158,159,162,163,164,166,167,169,170,173,174,175,178,181,182,183,192,196,199,201,203,208,209,210,214,216,217,219,222,228,229,230,236,237,243,245,262,287,290,293,296,297,320,335,342,344,347,354,355,357,368,376,382,384,386,392,393,394,397,398,400,402,406,410,412,425,429,433,437,451,458,461,468,469,470,471,473,475,483,487,493,494,496,500,504,528],"catch":[0,1,8,17,20,28,36,42,47,144,156,162,169,172,209,228,277,376,411,420,425,432,458,459,468,478,480,481,487,492,545],"char":[0,10,14,44,68,92,94,116,130,133,146,147,160,162,168,170,173,178,188,201,208,222,228,279,280,300,341,344,376,402,417,430,443,444,465,473,479,482],"class":[0,1,2,6,8,13,14,18,19,21,24,27,28,29,30,31,37,39,41,42,44,49,50,52,53,54,55,56,62,64,67,73,77,81,83,84,85,87,89,90,92,97,101,102,104,105,107,108,110,114,115,116,117,119,120,121,122,125,126,127,128,129,130,131,134,137,139,140,141,144,146,147,149,152,153,154,155,156,157,158,159,160,161,162,163,166,167,168,169,171,172,173,174,175,177,178,179,188,201,208,209,210,211,212,215,216,217,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,236,237,238,243,245,246,249,251,252,255,256,258,259,261,262,264,270,271,273,274,277,278,279,280,281,282,283,284,287,288,290,291,293,294,296,297,298,300,301,303,304,306,307,309,310,312,313,314,315,316,317,320,321,326,327,329,330,332,333,335,336,339,341,342,343,344,347,348,351,353,354,355,357,358,363,364,366,368,370,371,373,374,375,376,377,381,382,384,386,387,389,390,392,393,394,398,399,400,401,402,404,406,407,409,410,411,412,413,414,415,417,418,420,422,423,426,427,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,451,453,456,458,459,460,461,463,464,465,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,486,487,488,489,490,491,492,493,494,495,496,501,504,505,506,508,509,510,511,512,514,516,517,518,519,520,522,525,527,528,530,531,536,537,540,541,542,544,545,546,547],"const":274,"default":[0,4,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,31,35,36,37,39,41,42,44,45,46,48,49,50,52,54,55,56,57,60,62,63,64,65,67,68,70,71,72,73,74,75,76,77,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,98,99,101,102,104,108,110,111,112,114,115,117,119,120,121,122,123,124,125,126,127,128,129,130,131,132,135,136,137,141,142,143,144,147,149,151,152,155,157,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,178,179,182,183,186,187,188,189,190,191,192,193,195,196,197,199,200,202,205,206,208,209,211,212,213,214,215,216,217,236,237,238,245,248,251,255,259,261,262,270,274,277,279,280,281,282,284,287,290,293,296,300,303,306,309,312,313,314,315,316,320,326,329,332,333,335,338,341,342,343,344,347,350,353,354,357,358,366,368,370,374,376,380,381,382,384,390,391,392,393,394,395,396,398,400,402,406,407,410,411,413,414,415,418,420,422,424,425,426,430,442,443,444,449,451,452,458,459,460,461,465,466,468,469,470,471,473,475,476,478,480,481,482,483,486,487,489,490,491,492,493,494,496,497,504,516,522,527,528,536,542,544,545,546,547,548],"elsd\u00f6rfer":75,"export":[75,191],"final":[1,4,20,23,41,44,48,53,54,60,64,65,67,94,119,126,129,130,131,133,134,138,142,146,147,151,155,157,162,164,168,175,176,178,179,183,187,193,199,213,214,215,222,227,231,296,341,347,390,398,407,457,461,473,475,480,481],"float":[0,30,110,119,134,159,209,251,260,261,264,293,358,414,420,432,469,483,484,492,496],"function":[0,1,3,7,9,10,11,14,15,16,20,23,24,27,28,29,31,32,39,41,42,45,47,48,49,51,52,54,57,58,60,62,65,67,68,69,71,73,74,75,76,77,85,86,87,91,93,94,95,98,102,104,106,110,111,112,115,116,117,119,121,122,123,124,125,126,127,128,130,132,133,134,136,138,140,141,142,143,144,146,149,152,153,155,158,161,162,163,164,166,167,168,169,170,172,174,175,178,179,183,191,200,201,203,205,208,211,214,216,217,219,220,221,222,223,227,228,229,230,232,233,234,236,237,245,251,254,260,261,264,270,274,277,279,284,287,293,296,298,303,309,312,313,314,315,316,320,326,333,341,342,343,347,350,353,354,358,368,373,375,376,382,384,390,394,396,397,398,402,405,406,407,411,413,414,415,420,424,425,429,440,441,446,449,452,459,461,463,470,471,472,473,474,476,477,478,480,481,483,484,489,490,491,494,495,496,497,500,520,522,525,545,546,547,548],"g\u00e9n\u00e9ral":181,"goto":[0,116,168,335,373,480],"import":[0,2,5,6,7,9,10,13,14,15,16,17,19,20,21,23,27,28,29,30,31,32,33,34,35,37,39,42,44,45,46,47,48,49,50,51,53,54,56,57,58,62,64,65,67,70,73,74,77,80,81,82,83,84,85,86,87,89,90,91,92,93,94,95,96,97,98,101,102,104,107,108,110,111,114,115,117,118,120,121,122,123,124,125,126,127,129,130,132,133,134,137,140,142,143,144,146,147,149,151,152,153,154,155,156,157,158,159,160,161,162,163,164,166,168,169,170,171,172,173,174,175,176,177,178,179,185,188,189,193,196,197,199,200,201,203,205,216,222,232,245,248,249,251,264,270,274,284,287,290,293,296,303,306,312,313,314,315,316,320,326,329,333,347,350,353,354,357,358,368,375,376,384,386,390,393,398,406,407,415,420,424,429,432,433,454,458,461,462,468,470,474,475,478,479,480,481,482,483,493,494,496,527,547],"int":[0,14,21,28,30,32,42,48,91,110,114,116,133,135,153,157,159,160,162,168,169,175,179,208,209,210,214,215,217,237,251,258,260,261,264,274,284,287,290,293,312,313,314,315,316,341,342,344,347,350,354,358,384,390,395,400,402,407,409,412,414,415,417,418,420,425,429,430,431,432,434,438,439,440,448,449,451,461,463,465,468,469,473,476,478,479,480,481,482,483,484,487,489,493,496,499],"long":[0,1,10,12,14,17,19,20,23,28,29,31,33,36,44,47,48,54,62,67,69,70,72,73,80,94,95,104,113,115,116,117,119,122,124,126,128,130,133,135,136,142,143,144,146,153,155,158,159,162,163,166,168,170,172,174,176,178,180,181,183,188,189,197,201,219,229,255,261,274,287,297,309,315,329,342,429,434,449,473,474,481,482,483,496,499],"n\u00fa\u00f1ez":75,"new":[1,2,4,7,9,11,12,13,14,15,16,19,20,21,23,24,25,26,27,28,31,33,34,35,37,39,40,41,44,45,46,49,50,51,55,56,57,61,62,64,65,68,69,72,73,78,80,84,89,90,91,96,103,104,107,108,111,113,115,116,117,118,119,121,122,124,125,126,127,128,130,134,135,136,137,138,139,140,141,143,144,145,146,147,148,150,151,152,153,155,157,158,159,161,163,166,167,168,169,170,171,172,174,175,177,179,180,181,183,184,185,186,187,188,189,191,192,193,195,196,197,198,200,201,202,208,209,210,215,216,217,219,220,222,227,229,230,233,234,236,237,245,255,258,261,270,277,278,279,282,284,290,293,296,303,306,309,312,314,316,320,326,329,333,335,341,342,343,344,353,354,355,358,374,375,376,384,386,390,392,394,398,400,401,402,404,406,407,409,410,413,414,415,417,420,429,430,431,432,438,439,440,445,452,460,461,465,468,469,470,471,473,474,476,479,480,481,482,487,489,490,496,504,506,509,510,537,542,544,546,548],"null":[49,67,76,126,182,505,512],"public":[0,12,19,53,75,76,89,126,132,142,153,162,179,186,187,189,192,197,199,201,227,402,465,482,548],"return":[0,4,6,7,8,10,14,17,19,20,23,24,27,29,30,31,32,33,37,39,41,42,45,46,48,49,51,52,53,54,58,60,62,64,69,72,80,83,84,85,91,94,98,105,110,111,115,116,119,122,123,125,126,127,128,133,134,137,138,144,146,147,149,152,153,154,155,156,157,158,159,162,163,164,166,167,168,169,170,171,172,174,175,178,179,188,192,195,199,201,203,204,208,209,210,211,213,214,215,216,217,219,222,227,229,232,233,236,237,238,243,245,251,254,258,259,260,261,264,274,277,278,279,280,282,284,287,290,293,296,303,309,312,313,314,316,320,326,333,335,341,342,343,344,347,350,353,354,357,358,363,368,373,374,375,376,381,382,384,386,390,392,393,394,395,397,398,400,401,402,404,405,406,407,409,411,412,413,414,415,417,418,420,425,426,429,430,432,433,434,435,437,438,439,440,441,443,444,445,447,448,449,451,452,458,459,461,463,464,465,468,469,470,471,473,474,475,476,477,478,480,481,482,483,484,487,489,490,491,492,493,494,495,496,497,499,500,504,505,506,508,509,510,512,514,516,517,519,525,527,529,536,541,542,544,545,547],"short":[6,14,28,36,37,46,51,58,60,65,72,74,80,94,95,104,114,116,117,128,131,133,135,141,155,157,161,162,163,175,185,188,199,201,203,227,245,261,274,279,290,306,342,353,354,407,474,496,499],"static":[31,49,51,52,53,73,75,78,104,109,117,119,132,141,142,151,159,162,165,201,205,206,232,239,245,258,345,354,356,357,370,393,406,407,465,476,516,517,519,525,534,545,548],"super":[10,21,37,48,61,62,80,81,85,94,133,136,153,159,161,162,163,166,172,174,175,190,245,290,354],"switch":[0,12,13,15,16,19,21,23,27,31,39,48,54,56,57,60,68,72,78,94,95,96,97,98,101,117,124,128,147,153,162,166,167,174,175,176,183,186,189,196,197,198,201,219,220,221,222,227,228,229,230,232,234,237,270,279,282,303,306,309,313,320,335,347,368,410,470,476,481,497,548],"th\u00ed":128,"throw":[12,14,41,63,80,178,191,216,414,496],"true":[0,1,10,13,14,15,19,20,21,23,27,28,30,31,32,33,34,36,37,39,42,44,47,48,49,50,51,52,53,54,60,62,63,64,67,71,73,75,80,82,83,86,91,94,116,123,126,128,132,133,134,137,138,142,144,147,152,153,155,159,160,162,163,164,166,168,169,171,173,174,175,176,178,185,186,189,192,197,198,201,208,210,211,213,215,216,217,219,222,227,229,230,233,236,237,238,245,248,251,258,261,270,277,278,279,282,284,287,290,293,296,297,309,312,314,315,326,333,341,342,343,344,347,350,353,354,358,368,373,374,384,386,390,392,394,397,398,400,401,402,404,406,407,409,410,411,412,413,414,415,418,420,425,426,429,431,438,443,448,449,459,461,463,465,468,469,470,473,476,478,480,481,482,483,484,487,491,492,493,494,496,497,501,504,505,506,508,509,510,511,512,517,544],"try":[0,1,6,7,8,14,15,17,19,20,27,28,30,31,32,33,39,42,50,51,54,55,56,58,63,64,67,69,70,73,74,80,85,89,94,95,96,106,107,108,110,115,116,118,119,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,138,139,140,141,143,144,145,146,148,150,151,152,153,155,156,157,158,159,160,161,162,164,166,169,170,172,173,174,175,176,178,179,182,183,185,186,187,191,195,197,199,201,203,208,211,215,217,222,236,238,245,246,249,251,255,262,287,296,312,313,314,315,316,326,329,333,341,344,353,354,357,358,368,374,375,376,386,392,394,400,402,406,417,420,429,444,445,449,463,468,470,473,475,476,478,479,483,492,496,505,512],"var":[0,51,68,98,183,187,380,444,474],"void":160,"while":[0,7,12,14,15,16,19,21,23,25,27,28,30,35,39,42,49,51,54,58,60,64,65,67,69,72,75,80,91,94,96,103,104,113,115,116,118,119,121,124,128,129,131,132,133,135,136,138,140,141,142,144,147,151,153,154,155,158,159,160,161,162,163,169,170,172,174,178,179,183,187,191,193,196,197,199,201,203,208,219,222,229,230,233,262,287,296,309,313,316,333,341,344,354,368,374,376,384,386,402,406,407,413,444,467,468,470,480,482,483,494,496,497,505,512,545],AIs:181,AND:[14,33,39,91,130,146,222,384,398,468,471],ARE:28,AWS:[117,192,197,241],Added:0,Adding:[12,22,23,24,39,41,61,69,90,125,127,132,135,141,142,144,147,161,165,167,168,188,229,320,341,480,548],Age:[91,384,536],And:[1,4,6,19,23,24,28,44,54,67,80,81,94,95,96,111,123,133,135,136,141,143,146,152,153,155,161,163,164,169,170,176,178,216,290,312,313,314,315,316,344,390,548],Are:[23,125,128,139,140,167,181,480],Aye:95,BGs:176,Being:[94,118,135,138,162,166,175],But:[1,6,10,14,15,17,19,20,21,23,28,31,39,41,42,45,48,54,58,60,65,67,77,80,89,94,96,110,116,118,119,121,122,126,128,130,132,133,134,135,136,137,140,142,143,144,146,148,152,153,154,155,157,158,161,163,164,167,168,169,170,176,178,179,185,187,189,192,200,201,215,216,287,344,358,406,471,546],DNS:[187,197],DOING:[91,384],DoS:[7,201,438],Doing:[12,23,42,121,126,146,155,160,179,216,219],For:[0,3,4,5,6,7,8,12,13,14,15,16,18,19,20,21,23,28,30,31,33,35,37,38,41,42,44,49,50,52,53,55,56,57,58,59,60,64,65,67,68,70,72,73,74,75,76,80,81,85,87,89,91,92,94,95,96,98,109,111,116,118,119,121,122,124,128,130,132,133,134,135,136,137,141,142,144,146,147,151,152,153,155,157,159,160,161,162,163,164,166,168,169,170,174,175,176,177,178,179,181,182,183,187,189,192,193,194,197,198,199,201,203,208,215,216,217,222,227,229,232,236,237,238,245,264,279,290,298,300,313,320,326,342,344,347,354,358,370,374,384,390,392,394,397,398,402,407,414,440,444,449,468,470,473,477,480,483,490,492,494,496,521,529,536,546],GMs:[141,142,162],Going:[114,142,143,274,548],Has:[184,312,313,314,315,316],His:[92,161,300],IDE:[9,119,125],IDEs:161,IDs:[96,178,179,192,260,468,496,519],INTO:[91,222,335,384],IOS:184,IPs:[55,183,199,201,380,463],IRE:[68,444],Its:[8,23,33,37,42,44,58,65,67,92,163,164,227,300,368,407,478,480,496],NOT:[23,33,51,113,130,153,197,199,201,222,342,398,407,463,483],Near:131,Not:[0,19,32,46,47,51,58,69,94,126,130,135,136,140,143,156,161,177,178,182,184,185,197,209,216,230,402,417,430,431,432,434,435,436,442,444,447,468,469,490,500],OBS:[57,201],ONE:199,Obs:201,One:[0,3,5,11,28,30,33,36,42,44,47,55,58,77,80,87,89,94,95,96,110,111,117,119,122,126,128,130,133,135,136,137,142,144,153,155,159,161,162,164,169,171,174,175,176,177,181,182,183,195,203,205,211,213,229,279,287,293,296,341,342,344,347,353,358,374,375,390,400,406,407,430,458,468,469,473,474,480,481,483,496,505,512,544],Such:[10,15,23,28,50,94,122,140,142,146,154,161,222,407,473,480],THAT:169,THE:[91,384],THEN:[91,216,384],THERE:[91,384],TLS:[199,201],That:[1,6,7,8,12,17,21,23,30,32,39,41,42,44,46,47,48,54,74,77,80,84,88,94,95,96,110,111,116,121,122,123,124,126,128,130,131,133,134,135,138,141,142,144,146,149,151,152,153,157,159,161,163,164,169,170,179,198,245,255,270,287,293,342,358,390,398,407,461,480,521],The:[0,2,4,5,6,8,9,10,11,12,13,14,17,18,19,20,21,23,24,26,29,32,33,34,35,36,37,40,44,45,46,47,48,49,51,52,53,55,58,60,61,62,63,64,67,68,69,70,71,72,74,75,76,77,78,80,81,84,85,86,87,88,89,90,91,92,93,96,97,98,103,104,105,106,107,108,110,111,112,113,114,115,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,139,141,142,144,146,150,151,152,153,154,156,157,158,160,161,163,165,166,167,169,170,172,173,174,176,177,178,179,180,181,182,183,184,185,187,189,191,192,193,194,195,196,197,198,199,200,201,202,203,208,209,210,211,213,214,215,216,217,219,222,226,227,228,229,230,231,232,233,234,236,237,238,245,251,254,255,258,259,260,261,264,274,277,278,279,280,282,284,287,290,293,296,297,300,303,309,312,313,314,315,316,320,326,329,333,335,338,341,342,343,344,347,350,353,354,358,363,366,368,373,374,375,376,384,386,390,391,392,393,394,395,397,398,400,401,402,404,405,406,407,409,410,411,412,413,414,415,417,418,419,420,422,424,425,427,429,430,431,432,433,434,435,436,437,438,439,440,442,443,444,445,447,448,449,451,452,457,458,459,460,461,465,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,487,489,490,491,492,493,494,496,497,499,500,505,506,512,516,517,519,521,522,525,527,536,544,545,548],Their:[28,41,53,92,146,199,300],Theirs:[92,300],Then:[6,7,10,12,17,45,51,53,64,80,83,90,94,95,96,100,116,119,124,133,157,160,164,169,192,195,320,336],There:[0,1,3,7,10,11,14,15,16,17,19,20,21,23,28,30,31,37,39,42,44,45,46,48,49,50,53,54,57,58,60,67,68,69,70,75,78,80,89,90,91,94,95,96,110,111,115,116,119,122,126,128,129,130,132,134,135,137,140,141,142,143,144,146,147,151,152,153,159,161,162,163,164,166,168,169,170,171,172,174,175,178,181,182,183,187,189,197,198,199,200,230,296,312,313,314,315,316,320,333,341,358,384,390,407,415,425,444,461,473,474,480,483],These:[0,7,10,12,14,15,18,23,24,25,28,30,31,32,35,41,42,44,45,46,48,50,51,52,53,58,60,62,65,67,68,71,80,81,83,85,89,94,96,103,104,106,116,117,119,123,124,126,128,129,130,132,133,135,136,137,141,142,144,146,153,157,159,164,169,170,174,178,186,187,192,194,196,197,199,201,203,207,208,213,215,217,219,221,223,227,231,237,245,251,264,296,303,309,339,341,342,344,353,354,358,368,376,381,392,393,398,402,406,407,415,419,426,445,448,449,451,460,461,462,468,470,473,477,480,481,482,483,484,489,490,491,496,500,504,513,546],USING:296,Use:[0,2,5,7,10,12,13,15,16,21,28,30,31,35,37,41,44,48,51,55,58,60,77,79,80,88,97,98,99,105,106,109,116,119,123,124,125,128,134,135,136,138,147,153,162,164,175,182,183,184,185,186,187,190,192,193,195,197,201,202,208,214,219,220,222,227,228,229,232,234,236,245,246,251,255,274,277,287,296,303,306,309,313,314,315,316,337,354,370,386,392,400,401,402,420,422,426,431,448,449,451,455,468,470,473,479,480,482,483,487,493,496,509],Used:[0,23,174,201,213,216,222,234,306,333,340,341,344,384,390,400,401,413,422,440,468,470,481,482,494,496,504],Useful:[28,116,197],Uses:[24,222,234,255,374,380,420,468,482,487],Using:[0,2,8,20,24,28,33,35,39,47,58,61,71,80,85,95,106,117,121,125,127,130,133,134,135,136,139,142,145,150,162,163,169,174,175,190,205,206,239,274,313,345,354,356,368,402,440,467,480,548],VCS:4,VHS:[91,384],VPS:197,WILL:[169,184],WIS:162,WITH:[28,91,183,384],Was:227,Will:[21,32,105,116,125,128,139,140,203,208,227,251,282,284,296,344,354,386,402,405,407,418,420,429,430,470,480,482,483,484,491,496],With:[0,14,17,19,28,36,53,57,75,94,116,121,126,130,137,138,140,141,142,144,161,170,175,182,183,192,201,205,208,245,296,342,354,407,468,473,483],Yes:[23,91,94,384,478,480],__1:489,__2:489,_________________:48,_________________________:28,___________________________:111,______________________________:28,_______________________________:111,________________________________:28,_________________________________:48,______________________________________:480,_________________________________________:28,______________________________________________:28,_______________________________________________:28,____________________________________________________:28,_________________________________________________________:168,__________________________________________________________:168,_______________________________________________________________:111,________________________________________________________________:111,__all__:[504,506,508,509],__defaultclasspath__:470,__dict__:420,__doc__:[23,31,217,230,232,233,393,394,476,480],__example__:8,__file__:201,__ge:130,__ge__:8,__getitem__:473,__gt:130,__iendswith:130,__in:130,__init_:482,__init__:[8,14,45,48,62,80,118,120,131,132,133,136,149,159,201,215,216,217,238,245,258,274,282,287,293,296,340,341,342,354,358,386,392,398,401,402,406,411,412,414,415,417,418,420,422,423,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,447,448,449,451,458,459,461,463,464,465,468,470,471,473,475,478,479,480,481,482,483,489,490,491,492,496,504,505,509,512,527,530],__istartswith:130,__iter__:14,__le:130,__lt:130,__multimatch_command:231,__noinput_command:[215,231,245,478,480,481],__nomatch_command:[231,245,277,376,478,480,481],__packed_dbobj__:50,__pycache__:132,__settingsclasspath__:470,__str__:544,__unloggedin_look_command:[26,234,255],_action_thre:28,_action_two:28,_actual_myfunc_cal:28,_all_:215,_always_:[296,483],_and_:[483,496],_answer:429,_ask_again:28,_asynctest:[377,446],_attrs_to_sync:460,_attrtyp:468,_by_tag:20,_cach:470,_cached_cmdset:216,_call_or_get:245,_callable_no:480,_callable_y:480,_callback:[20,415],_char_index:473,_check_password:28,_check_usernam:28,_clean_nam:243,_clean_str:473,_cleanup_charact:147,_code_index:473,_compress_cont:243,_copi:[222,402],_create_charact:178,_creation:48,_dashlin:30,_data:481,_default:[28,480],_defend:28,_differ:473,_errorcmdset:216,_event:[94,264],_every_:296,_evmenu:[0,480],_file:489,_flag:406,_footer:23,_format_diff_text_and_opt:407,_funcnam:496,_gambl:28,_get_a_random_goblin_nam:41,_get_db_hold:[459,470],_get_top:164,_getinput:480,_gettabl:425,_guaranteed_:483,_handle_answ:28,_helper:483,_http11clientfactori:422,_init:1,_init_charact:147,_is_fight:155,_is_in_mage_guild:28,_ital:119,_italic_:185,_last_puppet:[50,509],_linklen:342,_loadfunc:478,_magicrecip:297,_maptest:339,_menutre:[0,28,153,480],_mockobj:357,_monitor:425,_monitor_callback:34,_nicklist_cal:209,_npage:481,_oob_at_:487,_option:28,_overrid:[51,73],_page_formatt:481,_pagin:481,_parsedfunc:483,_pending_request:465,_permission_hierarchi:397,_ping_cal:209,_playabel_charact:50,_playable_charact:[0,164,178,509],_postsav:487,_power_cal:30,_prefix:354,_process_cal:30,_quell:397,_quitfunc:478,_raw_str:473,_reactor_stop:[437,458],_read:358,_recog_obj2recog:354,_recog_obj2regex:354,_recog_ref2recog:354,_regex:354,_repeat:425,_safe_contents_upd:401,_savefunc:478,_saver:[0,14,477],_saverdict:[14,358,477],_saverlist:[14,477],_saverset:477,_sdesc:354,_select:28,_sensitive_:528,_session:480,_set:130,_set_attribut:28,_set_nam:28,_shared_login:0,_should:[125,139],_skill_check:28,_some_other_monitor_callback:34,_start_delai:415,_static:119,_step:342,_stop_:496,_stop_serv:437,_swordsmithingbaserecip:297,_templat:119,_test:[30,213],_test_environ:201,_to_evt:481,_traithandlerbas:357,_transit_:344,_try_again:28,_typeclass:53,_uptim:30,_validate_fieldnam:162,_weight:342,_yes_no_quest:480,a2enmod:182,a8oc3d5b:192,a_off:287,aaaaaargh:135,aardwolf:68,aaron:0,abandon:277,abat:143,abbrevi:[60,64,222,297,306,483],abcd:228,abid:176,abil:[0,14,21,23,29,33,41,51,54,69,94,104,108,116,117,128,132,135,138,141,142,146,160,161,162,175,179,192,197,201,312,313,314,316,329,353,354,402,413,420,468,540],abl:[0,1,4,5,6,7,9,12,14,15,16,19,20,21,23,28,29,30,36,37,41,42,46,50,52,53,57,67,74,80,85,89,93,94,96,102,107,110,116,119,121,122,123,125,128,130,134,135,138,139,140,143,144,146,147,149,152,154,155,159,161,162,164,166,168,169,170,174,175,178,179,182,183,187,188,191,192,195,197,199,200,201,216,219,220,222,223,227,229,236,238,245,251,279,303,312,313,314,315,316,326,337,341,342,350,354,358,468,470,477,492,496,537],abort:[20,23,28,29,37,108,116,117,137,144,153,201,208,217,222,236,277,296,329,335,342,376,402,405,413,480,481,483,496],about:[0,1,2,4,6,7,12,14,15,16,17,18,21,23,24,26,28,30,31,35,38,41,46,49,50,53,54,55,56,60,65,67,69,70,73,76,80,84,94,95,96,117,118,119,121,122,124,125,126,127,128,129,130,131,132,133,134,135,138,139,140,143,144,145,146,147,148,149,150,151,152,153,156,157,158,161,164,165,166,168,169,172,173,175,176,179,180,181,183,184,185,188,191,192,193,195,197,199,200,201,203,208,222,229,232,245,277,279,280,287,290,293,296,314,315,316,339,341,347,370,375,376,394,402,420,422,425,434,436,438,447,449,451,452,459,461,469,471,473,481,487,496,505,512,519],abov:[1,4,9,10,12,13,14,15,16,20,21,23,27,28,30,31,32,33,34,41,42,44,46,48,49,51,52,53,54,55,58,62,64,67,73,74,75,80,83,85,89,93,94,95,97,98,104,105,110,116,118,119,122,123,124,125,128,130,132,133,134,135,136,137,141,144,147,152,154,155,156,158,159,160,161,162,163,164,166,168,169,170,172,174,175,177,178,182,183,184,187,192,193,197,201,203,215,216,222,245,284,296,303,312,314,315,316,329,335,341,347,350,354,358,370,384,386,390,398,400,402,425,480,483,491,505],above_str:30,abruptli:[110,358],absolut:[20,53,92,119,160,163,165,169,181,201,251,290,300,347,479,484,496],absorb:32,abspath:[201,496],abstractus:211,abus:[61,76,199],academi:181,accecss:483,accept:[0,14,16,19,20,21,28,30,32,33,47,48,68,77,80,91,94,104,108,116,118,134,135,141,142,162,178,179,183,185,197,201,208,213,214,232,259,262,287,329,341,342,344,347,353,354,374,376,384,386,402,420,425,438,464,465,469,474,480,483,492,496],accept_callback:[259,261],access:[0,1,10,11,12,14,15,16,19,20,21,23,24,26,28,29,30,31,32,33,34,35,36,39,41,42,44,45,46,48,49,51,52,53,55,57,62,63,65,67,69,73,75,80,83,85,93,94,96,110,116,117,118,119,120,122,123,126,129,130,131,132,133,134,135,138,141,142,144,146,147,152,153,155,157,159,160,161,162,164,168,169,170,174,175,176,178,179,182,183,187,188,190,192,193,197,199,200,201,208,210,211,215,216,217,219,220,222,227,228,229,230,232,234,236,237,238,245,258,260,270,274,277,296,298,309,312,313,314,315,316,320,344,350,353,354,357,358,376,392,393,394,395,396,397,398,401,402,405,406,407,410,412,414,415,417,420,429,430,459,461,467,468,470,471,474,475,476,483,489,495,496,500,505,506,512,517,519,522,536,542,544,547,548],access_obj:[397,468],access_object:33,access_opt:497,access_token_kei:[173,188],access_token_secret:[173,188],access_typ:[37,208,217,222,236,238,392,394,397,398,402,468,470,541,542,547],accessed_obj:[33,144,153,174,397,398],accessing_obj:[14,33,144,153,174,208,236,238,392,394,397,398,402,468,470],accessing_object:[14,33,397],accessor:[211,238,394,401,410,468,470,471,488],accessori:193,accident:[17,21,58,116,119,142,175,220,222,297,459],accommod:123,accomod:482,accompani:175,accomplish:[55,113,121,140,142,144,153,159,483],accord:[21,23,104,130,142,147,170,176,245,284,290,313,341,353,386,414,473,474,483],accordingli:[9,159,162,197,274],account1:[10,537],account2:[10,537],account:[0,2,7,10,12,14,16,18,19,21,23,24,25,26,27,28,29,30,32,33,35,36,37,39,40,41,42,44,45,46,48,49,53,55,57,60,63,65,69,72,73,80,86,93,96,97,98,99,107,117,119,120,123,124,125,126,127,128,131,132,133,134,137,139,140,152,153,159,160,161,163,164,166,169,170,173,175,176,178,179,184,186,188,190,192,197,200,201,203,205,206,212,213,214,215,216,217,218,220,222,223,224,227,228,229,230,232,234,236,237,238,245,251,255,258,259,261,270,277,278,290,293,303,312,314,316,320,326,333,344,350,354,368,373,374,375,376,380,384,392,394,397,398,400,401,402,404,406,407,408,409,410,420,424,425,440,451,452,459,460,461,468,470,471,473,476,480,481,483,490,491,493,494,496,497,502,503,509,516,517,519,522,527,528,535,536,537,539,542,544,546,548],account_cal:[219,227,230,270,303],account_count:461,account_id:[178,402],account_nam:160,account_search:[210,354,402],account_subscription_set:211,account_typeclass:[494,537],accountadmin:[50,504],accountattributeinlin:504,accountchangeform:504,accountcmdset:[13,21,26,80,97,134,161,162,163,201,219,223,303],accountcreateview:540,accountcreationform:504,accountdb:[0,48,120,178,201,205,208,211,217,236,392,394,467,470,490,497,504,505,512,516],accountdb_db_attribut:504,accountdb_db_tag:504,accountdb_set:[468,471],accountdbfilterset:[516,522],accountdbmanag:[210,211],accountdbpasswordcheck:440,accountdbviewset:522,accountform:[536,540],accountid:178,accountlist:162,accountlistseri:[519,522],accountmanag:[208,210],accountmixin:540,accountnam:[162,222,234,237,255],accountseri:[519,522],accounttaginlin:504,accross:116,accru:208,acct:137,accur:[80,217,258,282,293,313,316,340,358,392,407,414,418,420,422,423,431,440,441,443,445,448,449,468,473,491,492,530],accuraci:[0,95,112,141,169,313,314,315],accus:146,accustom:36,aceamro:0,acept:[91,384],achiev:[20,23,60,80,96,119,130,138,143,161,176,280,315,420],ack:29,acl:[75,243],acquaint:[143,161],acquir:475,across:[0,28,30,41,42,44,48,56,62,67,69,81,83,104,116,135,140,142,160,169,187,201,208,215,216,290,342,344,353,376,384,393,402,413,415,417,429,430,444,461,481,482,483],act:[0,7,13,15,19,21,28,42,44,52,61,91,94,110,111,116,130,135,140,142,155,159,160,162,170,175,182,183,203,205,208,222,227,238,254,279,280,336,341,342,343,344,358,359,384,390,417,429,430,449,468,471,475,480,495],action1:147,action2:147,action:[6,7,28,42,49,50,58,60,68,75,78,80,84,89,91,94,95,96,112,114,116,117,121,122,125,132,133,135,139,140,144,146,147,155,157,161,163,169,171,172,175,178,197,201,208,209,217,227,228,232,236,274,277,279,282,284,287,293,312,313,314,315,316,342,354,368,373,384,392,393,394,406,410,411,432,451,452,453,463,470,480,481,487,504,517,520,521,522],action_count:147,action_nam:312,action_preposit:279,actiondict:147,actions_per_turn:[312,313,315,316],activ:[1,4,11,15,20,21,23,37,39,42,44,49,55,60,63,64,65,73,75,94,118,119,122,123,124,125,126,139,140,151,154,163,166,181,186,189,190,191,193,195,196,197,198,201,203,208,213,216,220,222,232,234,236,259,333,368,374,381,401,402,405,414,425,432,433,434,435,436,440,442,443,444,451,461,463,468,469,480,481,482,483,496],activest:495,actor:[0,30,61,316,402,483,499],actual:[0,1,4,6,7,8,9,10,11,12,13,14,15,16,19,20,24,28,30,31,33,35,36,37,39,41,44,46,47,50,51,52,53,54,57,58,60,62,65,67,68,70,75,80,89,95,102,115,116,117,119,122,126,128,129,130,131,132,134,135,136,137,138,140,141,142,143,144,146,147,148,151,152,155,158,159,162,164,166,168,169,170,174,175,176,178,179,181,182,188,192,193,195,197,201,208,213,217,219,222,227,228,230,232,233,234,236,238,245,264,277,282,287,290,296,297,306,309,312,313,314,315,316,320,329,333,338,339,341,342,343,353,354,357,368,370,375,376,384,390,392,394,397,398,401,402,407,440,443,449,451,457,459,460,461,465,466,468,470,473,475,478,480,487,490,491,492,494,496,514,547],actual_return:10,ada:31,adam:75,adapt:[62,96,123,141,146,152,164,178,296],add:[0,1,4,5,6,7,9,10,11,12,13,14,15,16,17,18,19,21,23,25,26,27,28,30,31,32,33,34,35,36,37,39,41,42,44,46,47,48,49,50,51,54,56,57,60,62,63,64,67,68,70,73,74,77,79,80,81,82,83,84,85,87,88,89,90,92,94,95,96,97,98,99,101,102,103,104,107,108,110,111,112,114,116,117,118,119,121,122,124,125,126,128,130,132,133,134,135,136,137,140,141,142,143,144,146,147,150,152,155,156,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,177,178,179,180,181,182,184,185,186,187,188,192,197,198,200,201,202,205,208,211,215,216,222,227,228,229,231,233,236,238,245,246,248,251,255,258,259,261,262,264,270,274,277,279,284,287,290,293,296,303,306,309,312,313,314,315,316,320,326,329,335,336,337,338,341,342,343,347,353,354,357,358,363,368,373,374,375,376,380,390,397,398,401,402,406,407,410,411,412,413,414,415,420,425,426,429,430,433,434,436,438,442,449,451,452,454,462,468,471,474,478,479,480,481,482,483,487,489,491,492,494,504,509,516,522,544,547,548],add_:482,add_act:147,add_alia:227,add_argu:[114,274],add_callback:[259,261],add_charact:147,add_choic:[245,246],add_choice_:245,add_choice_edit:[80,245],add_choice_quit:[80,245],add_collumn:217,add_column:[162,482],add_condit:314,add_default:[21,144,152,168,174,216],add_dist:316,add_ev:261,add_fieldset:[504,509],add_form:[504,509],add_head:482,add_languag:[104,353],add_map:343,add_msg_bord:284,add_row:[162,167,217,482],add_user_channel_alia:[19,236],add_view:[504,506,509],add_xp:146,addcallback:[23,402],addclass:[51,205,206,502,523],addcom:[0,102,126,162,270],added:[0,4,6,9,11,12,18,20,21,23,31,33,41,42,46,49,62,67,68,69,75,80,81,82,92,94,96,104,106,110,112,115,116,118,119,123,126,130,132,133,134,135,136,141,144,146,147,152,153,161,162,164,169,170,171,174,175,177,178,180,184,186,191,192,201,203,208,213,215,216,217,227,231,232,234,245,248,258,261,264,287,290,293,296,297,300,312,313,314,315,316,333,337,341,342,347,353,354,358,368,392,398,402,405,407,412,414,425,459,463,468,471,474,480,481,482,489,496,522,529,540,544,548],addendum:118,adding:[0,4,7,8,9,10,11,14,16,18,20,21,25,26,28,33,41,46,47,48,51,53,60,62,64,67,69,80,85,86,89,91,94,95,96,97,110,111,112,116,119,124,130,134,135,136,142,147,149,152,155,158,161,162,163,164,166,168,169,174,175,176,178,200,201,215,216,220,222,229,245,251,258,261,274,296,303,312,315,335,350,353,354,358,376,384,390,400,402,406,407,412,420,451,468,476,482,496,505,512],addingservermxp:435,addit:[0,3,4,21,27,30,42,50,53,60,68,80,83,94,95,98,111,116,117,118,119,123,153,159,162,163,164,167,169,179,182,197,199,200,201,202,208,209,216,217,229,236,245,248,258,259,261,274,313,316,342,344,353,357,380,390,398,402,405,414,431,459,468,470,480,536,548],addition:[153,170,316],additionalcmdset:21,addpart:309,addquot:496,addr:[210,417,430,431,432,476],address:[0,12,23,36,44,55,58,62,73,88,92,117,124,149,159,169,183,187,197,199,201,208,210,220,236,255,300,402,417,430,432,440,460,463,496,497],address_and_port:440,addresult:309,addscript:42,addservic:62,adjac:[98,116,316,374],adject:[8,58,144,483,500],adjoin:354,adjust:[23,96,118,141,176,178,193,201,350,414,480,482,483],admin:[0,1,2,13,14,17,19,23,24,33,39,52,53,55,57,61,67,76,124,132,133,140,142,152,159,162,164,168,174,175,178,179,189,198,201,203,205,206,210,211,212,217,218,222,227,232,234,236,255,270,277,284,374,392,394,398,401,402,429,430,470,476,492,502,527,548],admin_sit:[504,505,506,508,509,510,511,512],admin_wrapp:507,adminconfig:527,admindoc:201,administr:[4,23,33,39,54,72,94,119,121,122,125,139,162,183,190,193,195,199,201,417,429,430],adminportal2serv:429,adminserver2port:429,adminsit:[50,201,205,206,502,526],adminstr:417,admintest:537,admit:157,admittedli:[0,116,138],adopt:[0,1,80,117,122,142,152,161,238,444,499],advanc:[7,15,21,23,24,28,30,41,44,48,53,54,55,62,67,69,75,80,98,104,106,110,113,117,121,122,125,127,135,142,154,157,162,170,175,181,200,202,222,230,312,314,320,354,358,368,386,435,474,478,479,480,482],advantag:[3,16,17,28,31,41,58,95,104,116,121,142,144,146,147,149,154,157,160,162,163,164,172,175,178,197,199,200,245,287,312,380,390,471,474],adventur:[85,103,113,117,132,138,142,170],advic:181,advis:[80,96,153],aesthet:27,affair:475,affect:[7,11,15,16,21,23,39,42,44,46,50,57,60,82,106,112,116,135,140,142,144,146,147,153,163,166,176,190,201,208,215,232,248,264,282,296,314,326,341,353,368,402,406,470,474,482,490],affili:414,affliat:414,afford:[44,168],afraid:197,after:[0,1,3,4,5,10,11,12,14,16,17,20,21,23,27,28,33,42,45,52,53,54,60,64,65,67,75,77,80,81,85,91,94,95,96,106,110,112,113,116,119,121,124,126,128,132,133,134,135,136,138,140,142,143,147,151,152,153,154,155,156,157,159,162,168,169,171,174,175,176,178,181,182,187,190,192,193,194,195,196,197,199,201,208,215,216,217,218,219,222,229,230,232,233,234,236,245,251,252,255,261,274,277,282,283,287,290,296,297,298,309,312,313,314,317,320,333,339,342,350,353,354,355,357,358,364,368,374,375,376,384,390,392,401,402,407,409,411,413,414,420,442,443,446,451,458,459,460,461,463,465,468,473,474,475,478,480,481,487,491,495,496,517,520,540,542,547],after_:0,afterlif:142,afternoon:[90,320],afterward:[12,67,78,116,133,137,138,155,164,169,245],again:[0,6,9,11,14,15,16,19,23,28,35,42,44,52,55,60,67,80,84,89,94,96,105,106,113,115,116,117,122,125,126,128,131,133,134,135,136,140,142,144,146,147,152,154,155,157,158,159,160,161,162,163,164,166,168,169,170,174,175,176,178,183,185,187,190,192,195,197,198,201,203,209,216,227,233,251,261,293,312,333,368,386,413,420,437,440,443,463,473,474,477,492,494],againnneven:233,against:[0,12,14,21,23,48,64,65,94,112,118,130,138,141,147,152,161,162,197,199,201,208,214,215,297,312,313,314,316,354,398,400,402,406,407,438,463,468,470,471,493,496],age:[75,91,114,201,274,384,536],agenc:199,agent:4,agenta:[60,473],ages:[91,384],aggreg:[0,181],aggress:[14,16,113,138,165,191,201,374,470,548],aggressive_pac:374,agi:[14,110,117,358],agil:14,agnost:[118,122],ago:[94,133,153,192,496],agre:[70,77,117,142,143,146,282,287],agree:287,ahead:[4,16,69,80,134,159,174,184,197,442],aid:[70,77,116,117,125,229,230,287,465],aim:[2,67,69,121,135,140,141,143,146,162,165,168,176,197,406],ain:95,ainnev:[0,110,117,130,146,358],air:[128,136,152,170],airport:137,ajax:[0,51,62,197,201,449,460],ajaxwebcli:449,ajaxwebclientsess:449,aka:[7,14,103,124,142,309,496],akin:133,alarm:[128,167],alchin:75,ale:98,alert:[19,236,402],alex:75,alexandrian:181,algebra:159,algorith:353,algorithm:[0,31,116,142,341,342,400,496],alia:[0,2,12,13,19,21,23,26,30,36,37,42,44,46,48,50,72,80,102,104,116,124,126,128,135,137,152,158,161,162,170,195,197,211,214,217,219,222,227,228,229,230,233,236,258,270,293,312,313,314,315,316,320,321,326,333,335,342,354,358,364,374,376,397,401,402,407,410,415,425,451,469,470,471,476,483,492,493,494,500,504,505,506,508,509,510,512,516,518,519,520,522,536,540,541,542,547],alias1:[222,320],alias2:[222,320],alias3:320,alias:[0,12,13,15,19,20,21,23,24,28,30,31,32,36,37,41,50,58,72,74,80,83,85,94,98,125,126,128,144,147,152,153,155,158,162,166,167,168,170,175,201,208,215,217,219,220,221,222,227,228,229,230,231,232,233,234,236,237,245,255,259,270,273,274,277,279,287,290,296,297,300,303,306,309,312,313,314,315,316,320,326,329,333,335,342,347,354,368,370,374,375,376,384,390,392,393,394,395,400,401,402,407,451,469,470,471,476,478,480,481,489,493,494,500,516,519],aliaschan:270,aliasdb:208,aliasfilt:516,aliashandl:[471,512,519],aliasnam:407,aliasstr:[400,476],align:[30,41,162,350,473,482,483,496],alist:8,aliv:[121,374],alkarouri:495,all:[0,1,4,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,23,25,27,28,30,31,32,33,35,36,37,39,41,42,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,62,64,65,67,68,69,70,71,72,73,74,75,76,78,80,83,85,87,89,90,91,95,96,102,103,104,105,107,110,111,113,115,116,117,118,119,120,121,122,124,125,126,128,129,130,131,132,134,135,136,137,138,139,140,141,143,144,146,147,148,149,151,152,154,155,156,157,158,159,160,161,162,163,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,185,189,190,191,192,193,195,196,197,198,199,200,201,202,203,208,209,210,212,213,214,215,216,217,218,219,220,221,222,223,224,227,228,229,230,231,232,233,234,236,237,238,245,255,258,261,270,273,274,277,279,280,282,283,287,290,293,296,297,300,303,306,309,312,313,314,315,316,320,326,329,333,335,341,342,343,344,347,353,354,357,358,366,368,370,373,374,375,376,381,384,386,390,392,393,394,395,396,397,398,399,400,401,402,405,406,407,409,411,412,413,414,415,416,419,420,424,425,426,429,431,432,434,436,437,438,439,440,443,444,447,448,449,451,452,458,459,460,461,463,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,487,489,491,493,494,495,496,497,499,501,504,505,506,508,509,510,512,513,514,522,525,527,529,536,542,544,545,547],all_alias:46,all_attr:470,all_book:137,all_cannon:130,all_cloth:14,all_cmd:229,all_connected_account:461,all_displai:415,all_famili:130,all_fantasy_book:137,all_flow:137,all_from_modul:496,all_kei:229,all_map:[116,343],all_opt:491,all_receiv:402,all_room:[15,130],all_ros:137,all_script:42,all_scripts_on_obj:42,all_sessions_portal_sync:461,all_to_categori:393,all_weapon:130,allcom:[102,126,270],allerror:[420,429],allevi:[10,14,69,465],allheadersreceiv:465,alli:316,alloc:197,allow:[0,1,3,4,6,8,9,10,12,13,14,15,16,17,20,21,23,24,28,30,31,32,33,35,36,37,39,40,41,46,48,49,50,51,52,53,54,55,56,57,58,64,67,69,70,71,72,73,75,76,77,80,85,86,89,90,91,92,94,95,96,98,101,104,110,111,112,115,116,117,119,120,121,122,123,124,125,128,130,132,133,134,135,136,137,139,140,141,144,146,147,149,152,155,156,157,158,159,161,162,166,168,169,170,174,175,176,178,179,180,182,183,185,186,187,188,189,191,192,193,195,197,198,199,200,201,208,209,211,213,215,216,217,219,220,221,222,227,229,230,232,233,236,237,238,245,251,261,270,274,277,279,282,284,287,290,296,298,300,306,312,315,316,320,333,341,342,344,347,353,354,357,358,368,374,375,376,384,386,390,392,394,395,397,398,400,402,406,407,411,414,415,420,424,425,427,431,433,434,435,436,443,444,445,447,452,458,459,461,463,464,468,470,471,473,474,476,478,480,481,482,483,484,487,490,491,492,494,496,507,509,516,517,522,536,541,544],allow_abort:480,allow_dupl:215,allow_extra_properti:358,allow_nan:449,allow_quit:480,allow_reus:296,allowed_attr:162,allowed_fieldnam:162,allowed_host:[197,199,201],allowed_propnam:175,allowedmethod:449,allowext:465,almost:[0,14,23,31,47,48,50,57,80,81,135,136,245,290,422,429,467],alon:[0,10,12,15,28,33,36,67,89,113,117,135,143,146,147,155,159,160,162,201,215,229,344,415,425,451,474,476,482,483,512],alone_suffix:456,along:[0,7,23,28,32,42,45,55,60,68,76,77,78,94,98,104,110,111,113,116,122,130,131,135,138,140,143,144,145,169,174,180,200,208,219,287,315,342,347,353,358,380,390,398,402,449,467,522],alongsid:[91,187,343,384],alonw:410,alpha:[0,125,139,185,190,197,201,473],alphabet:[17,70,170,473],alreadi:[0,1,9,10,11,12,13,14,15,17,20,21,23,27,28,30,31,33,42,44,46,48,51,53,62,68,73,76,80,89,94,95,96,113,116,118,119,122,124,125,126,128,129,132,133,134,135,136,137,140,143,144,146,147,151,152,153,155,159,160,161,162,164,166,167,168,169,171,172,173,174,175,178,179,185,189,190,192,193,199,201,203,208,210,215,216,219,222,230,232,236,237,270,279,284,287,290,293,296,297,312,313,315,316,333,341,342,344,353,354,358,374,375,386,398,402,406,407,420,429,437,438,440,445,448,453,458,459,461,468,471,473,476,481,489,494,496,517,528],alredi:62,alright:[77,287],also:[0,1,2,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,25,27,28,30,31,32,33,34,36,37,39,41,42,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,60,62,63,64,65,67,68,69,70,72,73,74,75,77,80,81,83,84,85,87,88,89,90,91,93,94,95,96,99,101,104,105,108,110,111,113,115,116,117,118,119,120,121,122,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,166,167,168,169,170,171,172,174,175,176,177,178,179,181,182,183,184,185,186,187,189,190,191,192,193,195,197,198,199,200,201,203,208,210,211,214,215,216,217,219,220,221,222,224,227,228,229,230,232,233,236,237,238,245,261,279,280,284,287,290,293,296,297,303,306,314,315,316,320,329,333,335,341,342,344,347,350,353,354,358,368,374,375,376,384,386,390,392,396,397,398,400,401,402,406,407,408,410,413,415,416,420,424,425,429,431,438,440,443,444,447,448,451,452,461,465,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,487,493,494,496,516,542,544,545,547],alt:473,alter:[51,94,96,122,123,170,183,201,468],altern:[2,14,19,23,28,31,36,42,46,50,60,64,74,83,85,103,110,114,117,119,125,126,144,155,158,161,166,170,172,178,183,190,195,197,227,230,236,237,254,309,316,354,358,368,393,397,398,400,438,473,476,496],although:[6,80,94,136,155,157,193,219,245,347,465,492,496],althougn:95,altogeth:[27,60,116,199],alwai:[0,8,10,11,13,14,15,16,19,20,21,23,28,30,31,32,33,35,37,39,41,42,44,45,46,47,48,51,55,58,60,67,68,73,83,85,94,96,97,104,107,110,116,118,119,122,123,125,126,128,133,134,135,136,137,140,142,144,146,152,153,156,157,159,161,162,163,164,168,169,174,175,176,179,182,183,189,193,197,201,208,215,216,217,219,221,222,227,229,230,233,236,237,238,277,282,296,298,303,326,341,342,344,353,354,358,368,395,397,398,400,401,402,406,407,415,420,422,425,429,437,440,443,444,448,449,452,459,461,466,468,469,470,471,473,476,483,487,492,493,496,497,517,529,545],always_fail:429,always_pag:481,always_return:420,amaz:191,amazon:[75,117,181,197],amazonaw:75,amazons3:75,ambianc:69,ambigu:[92,116,217,300,342,402,470],ambiti:[69,72],amend:12,amfl:16,ammo:152,among:[13,25,37,122,137,143,163,170,175,181,200,228,290,375,398,400,482,493],amongst:98,amor:262,amount:[19,42,56,60,125,139,140,141,146,175,199,232,293,297,312,314,315,402,461,478],amp:[0,40,44,62,65,201,205,206,416,417,420,428,430,438,446,458,461],amp_client:[201,205,206,416,429],amp_client_protocol_class:201,amp_host:201,amp_interfac:201,amp_maxlen:446,amp_port:[197,201],amp_serv:[201,205,206,416,428],amp_server_protocol_class:201,ampbox:429,ampclientfactori:417,ampersand:69,amphack:429,ampl:135,amplauncherprotocol:420,ampmulticonnectionprotocol:[417,429,430],ampprotocol:417,ampserverclientprotocol:[201,417,429],ampserverfactori:430,ampserverprotocol:[201,430],amsterdam:197,amulet:314,amulet_of_weak:314,amus:126,anaconda:124,analog:[65,159],analys:28,analysi:381,analyz:[17,23,28,33,85,113,142,172,213,229,296,354,402,406,407,411,420,481,496,499],anchor:[0,217,236,316,392,394,470],anchor_obj:316,ancient:[60,98],andr:184,andrei:75,andrew:75,android:[190,202,548],anew:[134,135,170,195,236,420],angelica:141,angl:[72,116,279],angri:31,angular:232,ani:[0,6,8,10,11,12,13,14,16,17,19,20,21,23,27,28,30,31,32,33,34,35,36,37,39,41,42,44,45,46,47,48,49,51,54,55,56,57,60,62,64,65,67,68,72,73,74,75,76,80,81,84,85,87,88,89,91,93,94,96,101,104,110,112,113,114,115,116,117,118,119,122,124,126,128,129,130,132,133,134,135,136,137,138,139,141,142,143,144,146,147,151,152,153,156,157,158,159,160,161,162,166,167,168,169,171,172,174,175,176,178,179,181,182,183,184,185,186,189,190,192,193,195,196,197,198,199,200,201,208,211,213,214,215,216,217,219,220,222,228,229,232,233,236,237,238,245,255,260,274,277,279,282,284,287,290,293,296,300,303,306,312,313,314,315,316,320,329,333,341,342,344,350,353,354,358,363,366,368,374,376,380,381,384,386,392,395,397,398,400,402,405,406,407,410,411,413,414,415,417,418,420,422,424,425,429,430,432,438,439,440,443,444,448,449,451,459,460,461,465,468,469,470,471,473,474,475,477,478,479,480,481,482,483,489,490,491,492,493,495,496,504,514,521,522,527,540,541,542,544,545,546,547,548],anim:[20,29,52,297],anna:[58,162,171,172,175,189,193,222],anna_object:58,annoi:[55,89,126,136,142,168,169],annot:[125,127,181],announc:[11,147,153,175,181,220,227,232,236,312,402],announce_al:[438,461],announce_move_from:[37,153,402],announce_move_to:[37,153,402],annoy:208,annoyinguser123:19,anonym:[63,123,164,201,354],anonymous_add:354,anoth:[0,4,6,7,8,9,10,14,15,16,21,23,24,28,31,33,37,41,44,46,49,51,54,56,58,60,69,70,74,80,85,89,91,94,95,96,105,111,115,116,118,122,125,126,128,130,132,135,136,141,142,144,147,151,152,155,157,159,160,161,162,163,164,169,170,174,175,177,180,182,187,197,198,208,215,216,219,222,227,228,236,245,260,279,282,287,290,296,303,312,313,314,315,316,333,335,340,342,354,375,384,386,390,392,394,395,402,405,461,468,470,474,478,480,481,483,494,496,522],another_batch_fil:474,another_nod:480,another_script:42,anotherusernam:49,ansi:[0,32,51,61,71,82,120,135,165,166,184,201,205,206,219,248,249,306,350,425,432,440,443,448,449,472,482,483,495,496,548],ansi_escap:473,ansi_map:473,ansi_map_dict:473,ansi_pars:473,ansi_r:[201,473],ansi_regex:473,ansi_sub:473,ansi_xterm256_bright_bg_map:473,ansi_xterm256_bright_bg_map_dict:473,ansimatch:473,ansimeta:473,ansipars:473,ansistr:[0,205,473,482],ansitextwrapp:482,answer:[1,10,14,23,28,95,96,135,140,142,143,144,146,152,153,164,187,195,199,418,480],ant:94,antechamb:113,anthoni:75,anti:195,anticip:116,anul:182,anvil:[296,297],any_options_her:119,anybodi:199,anychar:315,anymor:[105,123,124,144,201,261,309,333,386,480,492],anyobj:315,anyon:[6,33,55,64,89,123,142,147,152,153,155,162,168,172,175,185,197,201],anyth:[1,6,9,11,12,14,15,19,21,23,28,33,36,37,42,48,50,51,53,56,57,62,65,73,75,80,89,95,96,98,111,116,118,122,126,128,132,133,135,136,137,140,142,143,144,147,151,155,159,160,164,167,168,169,170,172,174,175,178,183,190,192,193,196,197,200,201,215,217,231,245,312,314,315,316,341,354,358,390,398,432,466,468,474,480,483],anytim:142,anywai:[16,19,28,60,69,74,88,96,116,121,123,128,144,169,191,255,287,341],anywher:[23,28,42,48,116,122,125,133,135,144,179,341,478],apach:[0,75,183,197,199,202,465,548],apache2:182,apache_wsgi:182,apart:[13,14,20,33,48,113,117,121,166,176,179,192,200,316,335],api:[0,1,2,6,10,14,15,17,19,20,24,29,31,35,37,41,42,44,48,52,58,78,85,133,137,146,170,173,178,188,201,205,206,208,221,232,234,238,255,296,392,459,468,470,474,475,481,502,548],api_kei:188,api_secret:188,apicli:520,apirootrout:518,apirootview:518,apocalyps:142,apostroph:17,app:[0,33,53,62,64,67,73,75,123,151,179,188,197,201,527],app_dir:201,app_id:178,app_modul:527,app_nam:527,app_ord:527,appar:[94,162,176],apparit:376,appeal:[28,60],appear:[0,1,9,12,19,20,28,31,33,41,42,50,51,53,54,59,60,63,80,81,98,107,116,119,124,125,126,130,135,138,139,140,152,153,156,167,170,175,176,186,189,192,193,195,197,200,205,219,229,249,261,290,297,326,333,342,354,402,444,445,470,482,489,512],appearance_templ:402,append:[7,8,20,21,27,33,37,62,68,76,80,81,117,130,147,153,157,159,164,168,169,175,178,187,197,201,217,222,229,290,303,354,398,400,453,474,489,496],appendto:51,appform:178,appl:[77,279,287,402],appli:[0,4,9,11,15,21,23,30,31,33,41,47,48,53,56,65,78,80,82,94,96,110,116,117,118,124,134,142,143,145,166,170,174,176,178,182,183,201,208,213,215,230,248,277,279,312,314,333,341,342,357,358,398,402,406,407,410,415,461,468,469,470,473,474,479,482,484,493,496],applic:[11,33,46,49,62,67,73,90,131,151,178,179,181,182,192,193,199,201,208,279,296,316,320,384,420,423,433,437,458,459,465,533],applicationdatareceiv:443,applied_d:178,apply_damag:312,apply_turn_condit:314,appnam:[14,33,201],appreci:[10,12,42,80,118,180,487],approach:[9,28,47,80,117,142,153,157,160,169,178,245,316,342],appropri:[4,9,21,23,58,72,93,94,117,124,169,174,178,182,183,188,208,220,279,350,420,459,490,492,496,525],approrpri:62,approv:[12,94,178,179],approxim:[232,496],apr:64,april:[2,89,117,163],apt:[12,182,187,191,193,195,197,199],arbitrari:[0,8,14,15,20,30,33,48,51,57,74,94,95,110,111,116,122,130,133,170,192,208,236,277,281,293,316,320,358,366,376,390,402,407,413,418,429,449,463,468,477,489,492,496],arcan:72,arcanist:142,arch:61,archer:407,archetyp:142,architectur:[33,143,407],archiv:[132,181,199],archwizard:407,area:[13,80,113,115,116,117,138,140,143,159,162,171,181,184,333,335,341,344,374,397,479,480,482,496],aren:[12,91,96,123,151,155,157,164,178,199,208,261,290,309,314,384,489,492,499],arg1:[33,217,230,233,236,277,468],arg2:[217,230,233,277,468],arg:[0,6,23,28,30,31,32,33,35,41,47,51,54,62,65,68,71,72,80,83,94,110,119,126,132,134,144,146,147,152,153,155,156,157,162,166,168,174,175,177,188,201,208,209,210,211,214,217,222,230,231,232,233,236,237,238,251,258,261,274,277,279,280,287,290,293,300,309,312,313,314,315,316,320,326,329,333,337,342,343,344,353,354,358,363,366,368,370,374,375,376,386,390,393,394,395,397,398,400,401,402,405,406,407,409,410,413,414,415,417,420,425,426,427,429,430,431,432,437,438,440,441,443,444,445,448,449,453,459,461,463,465,468,469,470,471,473,480,482,483,484,486,487,489,492,494,496,497,504,505,509,512,518,519,536,542,546,547],arg_regex:[158,201,217,222,228,229,232,233,234,277,290,296,354,478,480],arglist:230,argn:468,argpars:[114,274],argtyp:496,argu:14,arguabl:[116,135,141],argument:[0,1,6,7,10,14,16,19,20,21,23,27,29,30,32,33,36,37,41,42,47,48,54,55,58,62,65,68,72,76,80,89,91,94,95,98,105,114,117,123,125,126,127,128,129,130,136,144,149,152,153,155,161,162,163,164,165,166,168,170,175,179,183,201,208,209,210,213,214,216,217,219,220,222,227,228,229,230,232,233,236,237,245,251,254,258,260,261,270,274,277,279,281,282,284,290,296,300,312,314,315,316,320,326,335,343,344,350,353,354,366,376,381,384,386,398,400,402,406,407,409,411,413,414,415,418,420,425,429,431,432,438,439,440,443,444,448,449,451,452,459,460,461,463,464,468,469,470,471,473,474,476,478,479,480,481,482,483,487,490,492,493,496,522,545,548],argumentpars:[114,117,274],argumnet:482,argv:201,aribtrarili:496,ariel:75,aris:199,arithmet:[14,30,110,358],arm:[1,23,103,309],armchair:144,armi:168,armor:[0,14,81,112,141,145,155,167,290,313],armour:155,armpuzzl:[103,309],armscii:[17,70],arn:75,arnold:36,around:[0,6,15,16,17,21,30,33,37,41,52,53,54,60,70,72,81,89,94,96,116,119,121,122,123,125,126,127,130,132,133,134,135,136,137,140,141,142,144,146,147,151,152,155,157,159,162,164,168,169,170,171,174,175,181,183,188,195,197,222,230,251,260,290,297,309,316,333,339,342,354,368,374,375,376,402,473,474,482],arrai:[49,68,169,342,444,496],arrang:80,arrayclos:[68,444],arrayopen:[68,444],arrest:116,arriv:[44,65,94,96,146,153,155,222,280,335,432],arrow:[6,51,116,135],art:[60,479],articl:[10,12,17,70,123,152,157,161,181,488],article_set:488,artifact:[314,482],artifici:[142,146],artist:0,artsi:143,arx:181,arxcod:[165,181,548],as_view:[53,217,236,392,394,470],ascii:[17,70,98,116,117,124,170,208,234,341,479,482,496],asciiusernamevalid:[201,208],asdf:222,ash:297,ashlei:[0,81,91,93,111,112,117,289,290,311,312,313,314,315,316,349,350,383,384,388,390],asian:[0,496],asid:124,ask:[0,1,6,7,8,12,24,27,31,34,54,58,88,94,95,99,116,117,118,128,133,134,140,142,143,144,146,152,162,164,169,178,183,185,193,194,197,215,217,222,251,259,274,287,386,418,420,447,480,484,496],ask_again:28,ask_choic:418,ask_continu:418,ask_input:418,ask_nod:418,ask_yes_no:[0,480],ask_yesno:418,askew:141,asn:380,aspect:[28,41,53,67,122,132,135,146,161,296,350],assert:[10,147,483],assertequ:10,assertionerror:[483,494],asset:[75,125,139,151,199,424,525],assetown:124,assign:[0,4,8,13,14,15,19,28,33,36,37,39,41,42,46,47,51,55,61,82,91,104,113,116,117,128,132,133,134,135,137,144,147,160,162,174,175,208,213,214,216,222,227,229,230,248,277,312,313,314,315,316,320,354,358,376,384,398,401,402,406,407,425,432,438,440,443,459,477,489,494],assist:197,associ:[0,14,28,44,65,73,123,126,133,137,155,181,197,201,208,212,222,236,258,261,354,402,459,461,469,542],assort:[24,61],assum:[0,8,9,10,11,12,14,15,16,17,19,20,21,23,28,31,32,33,34,37,41,42,44,47,55,57,58,62,69,70,80,84,85,89,94,95,96,104,108,110,116,118,119,121,124,128,130,132,137,143,146,147,149,152,153,154,155,157,159,160,162,163,166,167,168,170,171,172,173,174,175,177,178,179,187,191,192,196,197,199,201,203,213,215,216,217,219,222,227,229,233,236,238,245,277,279,293,297,329,343,344,354,358,375,376,392,397,402,407,411,444,461,473,474,480,483,496,500,517,528,544,547],assumpt:[144,214],assur:[48,76,117,159],ast:[30,483],asterisk:[13,55,119,134,220],astronom:163,async:[61,178,496,548],asynccommand:54,asynchron:[0,7,20,23,40,61,84,117,122,154,155,209,293,402,429,430,444,489,496],at_:[48,487],at_access:[208,402],at_account_cr:[13,208],at_after_mov:402,at_after_travers:402,at_again_posit:279,at_already_clos:279,at_already_consum:279,at_already_mov:279,at_already_open:279,at_appli:279,at_befor:0,at_before_drop:402,at_before_g:402,at_before_get:402,at_before_mov:402,at_before_sai:402,at_cannot_appli:279,at_cannot_mov:279,at_cannot_posit:279,at_cannot_read:279,at_cannot_rot:279,at_channel_cr:236,at_channel_msg:236,at_char_ent:171,at_clos:279,at_cmdset_cr:[21,23,80,81,90,92,94,97,101,102,104,107,108,126,134,144,147,152,153,156,158,161,162,163,166,168,174,175,215,223,224,225,226,245,270,277,287,290,296,303,306,309,312,313,314,315,316,320,326,329,335,347,354,368,370,373,374,375,376,451,478,480,481],at_cmdset_createion:270,at_cmdset_get:[208,402,459],at_code_correct:279,at_code_incorrect:279,at_consum:279,at_db_location_postsav:401,at_defeat:312,at_desc:402,at_disconnect:[208,459],at_drink:279,at_drop:[313,316,402],at_empty_target:342,at_end:410,at_err:[54,496],at_err_funct:54,at_err_kwarg:[54,496],at_failed_login:208,at_failed_travers:[37,326,375,402],at_first_login:208,at_first_sav:[208,236,402],at_first_start:470,at_focu:279,at_focus_:[277,279],at_focus_climb:279,at_focus_clos:279,at_focus_cod:279,at_focus_combin:279,at_focus_drink:279,at_focus_eat:279,at_focus_feel:279,at_focus_insert:279,at_focus_kneel:279,at_focus_li:279,at_focus_listen:279,at_focus_mov:279,at_focus_open:279,at_focus_press:279,at_focus_push:279,at_focus_read:279,at_focus_rot:279,at_focus_shov:279,at_focus_sip:279,at_focus_sit:279,at_focus_smel:279,at_focus_turn:279,at_focus_us:279,at_get:[94,290,316,402],at_giv:[313,316,402],at_green_button:279,at_heard_sai:172,at_hit:374,at_idmapper_flush:[470,487],at_init:[45,48,208,236,374,375,376,402,470],at_initial_setup:[132,200,201,424],at_initial_setup_hook_modul:[201,424],at_left:279,at_lock:279,at_login:[48,62,431,432,440,443,448,449,459],at_look:[208,402],at_message_rec:208,at_message_send:208,at_mix:279,at_mix_failur:279,at_mix_success:279,at_msg_rec:[208,300,402],at_msg_send:[208,209,300,366,402],at_new_arriv:374,at_no_cod:279,at_nomatch:279,at_now_add:67,at_object_cr:[14,21,33,37,48,87,110,144,146,152,153,157,159,162,166,168,174,175,177,222,279,280,300,312,313,314,315,320,326,347,354,358,368,370,374,375,376,402,470],at_object_delet:402,at_object_leav:[280,333,376,402],at_object_post_copi:402,at_object_rec:[37,171,280,333,376,402],at_open:279,at_password_chang:208,at_paus:[42,413],at_posit:279,at_post_all_msg:236,at_post_channel_msg:[19,208,236],at_post_cmd:[0,23,156,213,217,230,494],at_post_command:23,at_post_disconnect:208,at_post_func:144,at_post_login:[153,208],at_post_mov:[37,171,402],at_post_msg:236,at_post_object_leav:333,at_post_portal_sync:458,at_post_puppet:402,at_post_travers:[37,375,402],at_post_unpuppet:402,at_pr:[0,402],at_pre_channel_msg:[19,208,236],at_pre_cmd:[23,83,213,217,230,494],at_pre_command:[23,144],at_pre_drop:[313,316,402],at_pre_g:[313,316,402],at_pre_get:[37,316,402],at_pre_leav:37,at_pre_login:208,at_pre_mov:[37,144,153,312,402],at_pre_msg:[19,236],at_pre_puppet:402,at_pre_sai:[354,402],at_pre_unpuppet:402,at_prepare_room:[115,333],at_read:279,at_red_button:279,at_reload:[232,458],at_renam:470,at_repeat:[42,48,147,173,174,209,251,261,281,287,312,363,413,453,484],at_return:[54,496],at_return_funct:54,at_return_kwarg:[54,496],at_right:279,at_rot:279,at_sai:[172,279,402],at_script_cr:[42,147,173,174,209,251,261,281,287,312,333,343,353,363,386,406,413,453,484],at_script_delet:413,at_search:[132,200],at_search_result:[201,231,496],at_server_cold_start:458,at_server_cold_stop:458,at_server_connect:438,at_server_reload:[42,201,203,208,209,402,413],at_server_reload_start:458,at_server_reload_stop:[153,458],at_server_shutdown:[42,203,208,209,402,413],at_server_start:[42,201,261,413,458],at_server_startstop:[132,153,200,201],at_server_startstop_modul:201,at_server_stop:[201,458],at_shutdown:458,at_smel:279,at_speech:279,at_start:[42,147,209,333,410,413],at_startstop_modul:415,at_stop:[42,147,174,312,413],at_sunris:163,at_sync:[459,460],at_tick:[47,415],at_travers:[37,329,333,402],at_traverse_coordin:333,at_turn_start:314,at_unfocu:279,at_upd:[314,411],at_weather_upd:177,ating:233,atlanti:184,atleast:[104,353],atom:[125,198],atop:[115,333],atribut:477,att:[28,64],attach:[2,14,24,37,44,46,64,74,84,111,117,122,123,126,130,134,135,137,152,160,162,203,217,222,230,243,293,300,303,333,390,398,402,412,457,471,505,512],attachmentsconfig:123,attack:[0,16,28,83,84,95,111,112,125,134,138,139,140,141,146,147,154,155,156,179,197,199,201,216,293,312,313,314,315,316,354,374,375,390,402,407,438],attack_count:315,attack_nam:315,attack_skil:407,attack_typ:316,attack_valu:[312,313,314,316],attempt:[9,13,21,28,36,73,80,83,96,116,155,169,173,184,199,201,219,222,277,312,313,314,315,316,320,326,381,417,420,425,458,463,470,483,496,542],attemt:30,attent:[37,119,160,162,170,199,277],attitud:161,attr1:[222,309],attr2:[222,309],attr3:222,attr:[0,14,28,33,41,51,80,130,159,162,222,229,238,245,280,376,397,406,407,459,468,470,487,492],attr_categori:505,attr_eq:397,attr_g:[33,397],attr_gt:[33,397],attr_kei:505,attr_l:[33,397],attr_lockstr:505,attr_lt:[33,397],attr_n:[33,397],attr_nam:222,attr_obj:[468,470],attr_object:470,attr_typ:505,attr_valu:505,attrcreat:[33,468],attread:14,attredit:[14,33,468],attrhandler_nam:468,attrib:398,attribiut:468,attribut:[0,2,6,13,19,20,24,27,28,32,33,34,35,36,37,41,42,44,46,47,48,55,67,69,80,83,84,95,96,101,104,110,112,117,125,128,130,135,141,144,146,147,153,154,156,157,159,160,161,162,164,166,167,168,169,175,178,179,201,205,206,208,210,211,216,222,231,232,236,245,260,261,279,293,296,297,306,309,312,313,314,315,316,320,329,342,354,358,368,374,375,376,397,400,401,402,405,406,407,409,410,411,414,425,459,467,469,470,471,476,477,478,484,489,490,493,496,502,503,504,506,509,510,512,519,521,522,536,541,542,544,547,548],attribute1:175,attribute2:175,attribute_list:468,attribute_nam:[144,208,354,400,402,493],attribute_stored_model_renam:201,attribute_valu:400,attributeerror:[6,14,67,133,144,459,468],attributeform:505,attributeformset:505,attributehandl:[0,14,48,83,468,491,496,519],attributeinlin:[504,505,506,509,510],attributemanag:14,attributeproperti:[0,83,468],attributeseri:519,attrkei:407,attrlist:468,attrnam:[14,28,33,41,48,110,222,358,397,400,470],attrread:[14,33,468],attrtyp:[14,468,469],attrvalu:28,attryp:469,atttribut:159,atyp:398,audibl:[104,353],audio:[0,51],audit:[0,205,206,236,239,378,402,548],audit_allow_spars:76,audit_callback:[76,380],audit_in:76,audit_mask:76,audit_out:76,auditedserversess:[76,380,381],auditingtest:382,aug2010:0,aug:[2,64,124],august:[124,496],aura:297,aut:29,auth:[49,76,201,208,210,211,227,440,504,527,528,536,542,547],auth_password:440,auth_password_valid:201,auth_profile_modul:211,auth_user_model:201,auth_username_valid:[0,201],authent:[0,44,45,53,62,76,178,199,201,208,431,438,440,443,449,459,461,528,541,542,544,547],authenticated_respons:537,authentication_backend:201,authenticationmiddlewar:201,author:[0,75,94,176,197,208,258,261,499],auto:[0,6,8,12,14,16,19,21,22,23,26,28,35,37,41,42,44,52,55,96,110,116,117,119,131,138,142,152,178,187,188,195,201,205,208,211,217,221,222,229,232,233,335,341,342,353,354,358,368,391,394,398,402,407,410,415,417,420,431,441,448,449,458,461,468,470,475,480,481,482,483,522,528],auto_close_msg:368,auto_help:[23,28,31,158,164,217,229,233,278,373,384,404,480,481],auto_help_display_kei:[217,233,480],auto_id:[506,508,510,512,536],auto_look:[28,278,373,384,404,480],auto_now_add:67,auto_quit:[28,278,373,384,404,480],auto_step_delai:335,auto_transl:[104,353],autobahn:[0,431,437,448],autoconnect:201,autocr:[14,468],autodoc:[0,49,119],autofield:[178,201],autologin:528,autom:[3,16,30,49,50,67,161,162,181,187,190,192,199,203,542],automat:[0,5,8,11,16,19,20,21,27,28,30,31,33,34,41,42,44,48,50,53,54,57,63,67,73,74,77,80,81,94,95,96,98,103,109,113,116,117,118,121,122,126,130,132,133,134,135,136,137,138,141,144,147,151,156,162,163,166,168,170,171,172,174,175,176,183,186,187,188,189,192,194,197,201,208,215,216,217,222,227,228,230,232,245,260,261,262,274,279,287,290,296,298,309,316,335,343,353,354,370,386,398,401,402,412,414,415,425,434,437,440,445,458,461,463,474,478,480,481,482,483,494,496,521,522,529],automatical:415,autostart:[42,409,412,476],autumn:[90,320],avail:[0,1,6,7,9,10,11,12,14,15,19,21,23,24,28,30,31,32,33,35,37,41,42,44,48,49,51,53,54,56,58,60,62,64,68,69,70,71,75,77,80,85,89,90,92,94,95,96,97,101,104,105,110,116,119,120,122,126,128,129,132,133,134,135,136,137,138,140,142,143,144,147,152,153,157,158,159,161,162,163,166,167,168,169,170,174,175,178,179,180,181,182,183,186,189,190,191,192,193,195,197,198,200,201,203,205,208,213,214,215,216,217,219,222,224,227,228,229,230,232,233,234,245,254,261,277,279,284,287,296,297,300,303,306,312,314,316,320,337,353,354,358,368,370,375,376,386,390,398,402,405,406,407,410,425,449,451,452,463,474,475,480,481,482,483,494,496,514,529,541,544],available_chan:227,available_choic:[28,480],available_funct:406,available_languag:353,available_weapon:375,avatar:[68,122,132,133,135,402,440,522],avatarid:440,avenu:[81,290],averag:[7,15,104,114,116,117,197,232,261,274,353],average_long_link_weight:[116,342],avoid:[0,1,6,8,10,12,14,20,21,23,28,39,41,48,53,60,62,72,89,115,116,118,133,135,136,140,142,144,166,168,170,176,182,183,192,201,215,222,274,333,342,353,368,386,397,401,429,439,449,459,468,470,471,473,474,475,478,481,483,487,496,519],awai:[1,6,12,14,16,17,28,31,33,41,42,44,54,63,67,85,94,95,96,111,115,116,117,121,124,133,136,138,141,144,146,152,155,159,164,170,174,175,197,201,228,238,282,290,313,316,333,341,344,368,374,376,390,402,410,460,473,496,504,548],await:54,awak:142,awar:[0,1,12,14,16,21,23,28,48,68,92,116,117,125,141,176,177,178,203,274,279,300,333,335,342,344,354,374,386,402,470,473],award:142,awesom:[53,73,135],awesome_func:136,awesomegam:187,awhil:94,awkward:64,aws:[75,197],aws_access_key_id:75,aws_auto_create_bucket:75,aws_bucket_nam:75,aws_default_acl:75,aws_s3_cdn:[205,206,239,240,241],aws_s3_custom_domain:75,aws_s3_object_paramet:75,aws_s3_region_nam:75,aws_secret_access_kei:75,aws_storage_bucket_nam:75,awsstorag:[205,206,239,240,548],axe:142,axel:75,axes:[116,341],axi:[98,341],axio:49,azur:[75,192,197],b64decod:492,b64encod:492,b_offer:287,baaad:10,back:[0,1,3,8,9,12,14,15,16,19,20,21,23,27,28,30,32,36,42,44,48,49,51,52,53,54,55,64,65,67,70,73,80,94,95,96,100,110,111,113,115,116,117,119,122,125,128,130,132,133,134,135,136,137,138,139,140,141,142,143,146,147,149,152,155,158,159,160,162,164,166,168,169,170,172,174,175,176,178,183,187,192,196,197,201,203,204,205,208,216,219,222,227,231,245,279,282,287,293,296,315,326,335,354,358,366,368,390,404,420,425,429,432,438,440,443,458,470,477,480,481,489,496,500],back_exit:[94,96],backbon:[178,201,474],backend:[0,4,10,41,42,49,50,53,73,75,183,201,205,206,468,496,502,516,522,526],backend_class:468,background:[1,18,28,53,54,60,82,135,155,176,178,187,197,199,201,203,248,350,473,483,545],backpack:21,backport:0,backtick:[119,483],backtrack:12,backup:[12,37,44,54,132,196,197,231,474],backward:[0,19,27,28,162,174,210,489],bad:[10,42,64,80,96,116,118,122,135,137,142,143,162,168,184,381,422],bad_back:398,baddi:138,badli:358,bag:[31,126,296,496],bake:[85,117,341],baker:142,balanc:[140,142,147,155,160,181,482],ball:[21,200,214,215,297,407],ballon:309,balloon:309,ban:[0,19,33,61,102,126,142,153,208,220,227,233,236,270,398,548],ban_us:227,band:[0,51,68,201,440,443,444],bandit:95,bandwidth:[75,433],banid:220,bank:[125,139,140],banlist:[19,236],bar:[0,12,14,19,28,30,34,42,46,51,65,68,73,104,111,116,117,126,132,137,141,167,201,222,349,350,351,354,390,395,420,444,468,480,483,496,548],bardisk:98,bare:[23,93,121,134,141,146,162,200,313,350],barehandattack:160,bargain:67,bark:297,barkeep:[6,98,354],barrel:[98,138],barriento:75,barstool:144,barter:[42,125,139,140,171,205,206,239,285,548],bartl:181,base:[4,6,10,12,15,18,19,23,28,30,31,33,35,37,42,44,47,48,51,52,53,56,65,67,69,70,72,75,80,84,85,86,89,92,94,107,110,117,119,120,121,122,123,124,125,128,130,132,133,136,137,138,139,140,141,143,145,146,149,151,152,156,157,158,159,160,161,162,164,168,170,173,175,176,178,179,181,183,187,189,190,191,192,196,197,199,201,205,208,209,210,211,213,215,216,217,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,236,237,238,243,245,246,249,251,252,255,256,258,259,261,262,264,270,271,273,274,277,278,279,280,281,282,283,287,288,290,291,293,294,296,297,298,300,301,303,304,306,307,309,310,312,313,314,315,316,317,320,321,326,327,329,330,332,333,335,336,339,340,341,342,343,344,347,348,351,353,354,355,357,358,363,364,366,368,370,371,373,374,375,376,377,381,382,384,386,387,389,390,392,393,394,398,400,401,402,404,406,407,409,410,411,412,413,414,415,417,418,420,422,423,426,427,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,451,452,453,456,458,459,460,461,463,464,465,468,469,470,471,473,474,475,478,479,480,481,482,483,484,486,487,488,489,490,491,492,493,494,495,496,501,504,505,506,507,508,509,510,511,512,514,516,517,518,519,520,521,522,527,528,530,531,536,537,540,541,542,544,545,546,547,548],base_account_typeclass:[13,201],base_batchprocess_path:201,base_channel_typeclass:[19,201],base_char_typeclass:173,base_character_typeclass:[166,173,178,179,201,208,222],base_exit_typeclass:[116,201],base_field:[504,505,506,508,509,510,512,536],base_filt:516,base_guest_typeclass:[63,201],base_object_typeclass:[41,129,133,201,407,470],base_room_typeclass:[116,201],base_script_path:397,base_script_typeclass:[42,201],base_session_class:201,base_set:124,base_system:[75,80,82,83,86,88,94,99,102,114,201,205,206,239,548],base_systesm:94,base_word:496,baseapplic:279,baseclass:375,basecommand:126,baseconsum:279,basecontain:475,baseevenniacommandtest:[10,233,246,256,262,271,273,283,288,291,298,301,304,307,310,317,321,327,330,348,355,371,377,494],baseevenniatest:[10,201,249,252,262,283,291,294,317,332,339,351,355,364,377,382,387,389,446,494,520,537],baseevenniatestcas:[10,201,298,357,494],baseinlineformset:[505,512],baselin:124,baseline_index:[0,496],basenam:522,baseobject:48,baseopt:490,basepath:496,basepermiss:517,baseposition:279,basest:282,basetyp:[402,474],basetype_posthook_setup:402,basetype_setup:[33,157,208,209,236,402],basetypeclassfilterset:516,bash:[4,119,193,375],basi:[23,94,116,118,123,132,151,163,197,201,230,238,342,354,449,470,479],basic:[0,1,4,11,13,17,18,21,23,24,33,36,51,53,56,57,58,62,65,67,70,73,89,91,95,96,98,112,116,124,125,126,127,128,132,133,134,135,136,138,140,141,142,144,146,147,149,150,155,157,160,161,162,163,164,165,166,170,171,172,174,176,178,179,181,193,202,203,208,209,222,227,229,236,238,260,296,309,313,315,375,384,397,399,402,451,536,545,548],basicauthent:201,basiccombatrul:[312,313,314,315,316],basicmapnod:[116,342],bat:[124,193,195],batch:[24,26,117,132,170,181,201,205,206,221,233,360,407,429,468,471,472,548],batch_add:[407,468,471],batch_cmd:[16,132],batch_cod:[15,474],batch_code_insert:15,batch_create_object:407,batch_exampl:474,batch_import_path:[15,16],batch_insert_fil:16,batch_update_objects_with_prototyp:407,batchcmd:[26,140,142,221],batchcmdfil:[16,474],batchcod:[16,26,78,126,142,148,170,181,221],batchcode_map:170,batchcode_world:170,batchcodefil:15,batchcodeprocessor:474,batchcommand:[0,16,26,78,80,113,126,138,148,190,221,474],batchcommandprocessor:474,batchfil:[16,17,170,474],batchprocess:[205,206,212,218],batchprocessor:[15,78,201,205,206,221,239,359,472,548],batchscript:[15,474],batteri:208,battl:[117,138,147,181,199,312,313,314,315,316,548],battlecmdset:[312,313,314,315,316],bayonet:85,baz:[111,390],bazaar:69,beach:170,bear:[374,386],beat:[140,142,147],beaten:[147,376],beauti:[80,94,159,178],beazlei:181,becam:[155,176],becasu:8,becaus:[0,4,6,13,14,15,17,21,28,30,31,33,37,41,45,47,48,49,50,53,54,55,56,58,62,64,69,80,83,89,95,96,115,116,119,122,124,126,130,133,134,135,136,141,143,144,146,147,151,152,153,155,160,169,170,171,176,178,179,182,185,187,201,216,229,234,236,255,260,282,315,333,339,341,353,402,413,432,438,451,461,473,483,490,492,496,504,505,512,522,527],becom:[0,6,11,28,33,36,41,54,67,68,71,80,92,96,103,104,110,111,119,122,126,131,132,133,134,135,138,140,142,144,146,159,160,166,170,180,200,201,219,293,297,300,309,313,353,354,358,390,402,407,459,474,480,483,494],been:[4,6,7,11,14,15,16,28,30,31,42,44,57,64,73,76,80,94,95,96,98,103,104,110,116,117,119,123,130,135,137,147,152,159,162,164,168,169,171,175,176,178,179,181,183,199,204,208,215,216,217,221,222,227,230,236,238,245,261,296,309,312,316,333,342,354,358,376,386,392,394,398,401,402,406,407,414,415,422,434,438,440,448,458,459,460,461,463,468,470,474,478,479,496,499,501,512,527,543,548],befit:48,befor:[0,2,5,6,7,8,9,10,12,14,15,16,17,19,20,21,23,28,31,33,34,39,41,42,45,46,47,48,50,51,53,54,55,64,66,67,69,70,73,75,76,80,85,88,92,94,95,98,106,111,115,116,117,118,123,126,127,128,130,133,134,135,136,140,142,144,147,152,153,154,155,159,160,161,162,164,166,168,169,170,171,172,174,175,176,177,178,179,181,183,187,188,191,192,196,197,199,200,201,208,213,214,217,222,227,229,230,234,236,238,243,251,254,255,260,264,282,293,296,298,300,312,316,320,333,341,342,350,353,354,357,358,368,373,375,376,380,381,384,390,397,398,401,402,405,406,407,409,413,414,415,420,429,438,440,446,452,454,456,458,459,463,465,468,473,474,475,476,480,481,482,484,488,489,492,496,527,541,547],beforehand:[14,190,475],beg:16,beggar:96,begin:[0,1,6,7,9,10,15,16,23,27,31,33,45,54,80,94,95,96,104,119,121,123,125,128,130,135,139,140,147,153,162,164,169,170,171,177,179,189,201,228,229,260,312,314,341,353,354,390,400,402,429,473,474,480,483,493],beginn:[0,2,23,121,133,140,148,169,181,342,480,548],behav:[14,15,45,80,94,117,128,134,135,136,155,163,164,169,203,315,496],behavior:[0,7,21,23,24,27,31,37,41,51,60,73,81,83,91,94,96,104,116,132,164,176,208,217,233,274,290,296,314,316,342,354,376,384,420,468,480,505,512],behaviour:[21,23,33,98,176,201,409,466,476,482,496],behind:[8,12,14,23,32,41,46,55,60,94,105,116,121,136,138,152,159,176,193,201,221,358,376,386,410,415,487],behvaior:481,being:[0,4,6,7,12,14,15,21,23,28,30,31,35,39,41,42,45,47,48,52,54,58,65,68,72,75,78,80,85,87,92,94,96,100,104,110,112,116,117,122,129,131,132,133,135,138,141,142,143,152,153,154,160,164,169,170,172,176,178,185,187,195,197,199,201,208,214,222,228,232,233,236,251,300,303,312,313,314,315,316,342,347,353,354,358,366,368,376,394,402,409,422,425,432,452,461,463,468,470,473,474,476,480,481,482,483,496,499,501,505,512,516,519,527],beipmu:184,belong:[16,46,65,74,116,122,123,130,135,178,199,216,333,354,390,394,405],belov:142,below:[4,6,7,9,10,12,15,16,17,19,20,21,23,27,28,31,32,33,36,39,41,42,44,48,54,55,57,60,64,68,74,75,76,77,80,82,85,86,87,93,94,96,98,102,104,110,111,113,116,119,122,124,134,135,136,140,144,146,151,153,155,157,159,161,162,163,164,166,170,171,172,175,178,179,182,183,187,192,195,196,197,201,203,211,222,230,238,245,274,284,290,296,297,312,313,314,315,316,341,342,347,350,353,354,358,364,390,394,401,402,410,432,452,468,470,471,480,482,483,488,521],beneath:20,benefici:[159,314],benefit:[64,69,141,143,180,187,192,197,199,201,216,468,474,480],berserk:[110,358],besid:[9,16,21,39,64,93,96,117,134,170,315,350],best:[1,27,42,53,64,69,73,80,94,111,114,117,118,124,129,132,140,143,161,162,165,178,184,187,189,196,199,200,201,229,245,274,353,390,407,420,440,482,490,548],bet:[21,44,50,470],beta:[0,25,125,139,185,197,201,548],betray:28,better:[0,6,7,17,28,30,31,41,42,46,58,60,67,69,85,96,108,112,116,118,119,121,122,124,132,133,140,143,144,146,153,158,162,166,168,169,178,179,183,297,313,329,342,376,402,407,437,440,443,451,468,474,527],bettween:146,between:[0,4,7,12,13,14,16,19,21,23,24,30,31,36,41,42,44,46,51,54,58,60,62,64,68,70,74,76,77,80,82,89,94,95,96,97,98,101,105,110,111,112,116,117,119,122,126,132,133,135,136,138,141,142,146,147,153,154,157,159,160,161,162,164,168,169,173,174,175,176,187,192,197,201,214,217,222,227,229,232,233,237,238,248,260,261,264,287,290,296,297,303,306,312,316,339,341,342,343,344,353,354,357,358,386,390,402,407,415,420,429,432,439,440,443,444,451,452,459,471,473,474,476,480,482,483,484,496,500,530],bew:[90,320],bewar:157,beyond:[13,23,29,37,50,68,80,94,118,122,124,142,153,161,179,197,217,222,233,238,245,277,297,354,368,376,390,402,406,451,468,470,480,482],bg_colormap:495,bgcolor:495,bgfgstart:495,bgfgstop:495,bgstart:495,bgstop:495,bias:222,bidirect:429,big:[0,15,16,19,23,33,50,53,74,85,113,118,124,126,128,136,138,142,143,145,146,154,155,161,201,214,229,231,357,358,368,400,474,481,493,496],bigger:[62,104,110,130,152,164,175,339,341,353,358],biggest:[189,358,496],biggui:23,bigmech:152,bigsw:155,bikesh:130,bill:[197,199],bin:[4,122,123,124,131,191,192,193,196],binari:[7,116,183,195,431,433,448],bind:187,birth:536,birthdai:0,bit:[1,6,9,12,14,18,25,41,42,51,53,55,58,64,80,94,95,96,113,123,124,126,127,130,131,132,135,136,140,142,143,144,155,157,163,164,166,174,179,191,193,195,227,234,255,297,398,402,474],bitbucket:161,bite:[140,170],bitten:130,black:[0,60,136,146,176,201,473],blackbird:181,blackbox:296,blackhaven:116,blacklist:[19,199,227],blacksmith:[39,471],blade:[142,297,375],blank:[28,67,76,91,171,179,208,384,473],blankmsg:[91,384],blargh:41,blast:[296,297],blatant:55,blaufeuer:130,bleed:[12,60,132,358,482],blend:[103,309],blender:[103,117,309],blind:[60,106,172,368],blind_target:368,blindcmdset:368,blindli:398,blink:[128,368,495],blink_msg:368,blist:8,blob:[95,119],block:[0,7,8,24,27,28,30,33,42,53,55,60,72,89,90,107,121,122,125,126,135,149,153,154,162,164,169,175,178,179,197,199,203,220,221,222,278,279,284,316,320,333,339,342,373,374,375,395,404,439,474,480,483,496,545,548],blockedmaplink:[116,342],blocker:116,blocking_cmdset:153,blockingcmdset:153,blockingroom:153,blocknam:53,blockquot:548,blocktitl:164,blog:[0,118,121,125,181,197,198,201],blond:141,blowtorch:184,blue:[15,60,134,135,142,161,166,176,201,375,473],blueprint:[51,161,170],blurb:[89,185,201],board:[33,35,125,139,140,159,174,181],boat:[21,174,216],bob:[14,23,49,166,220,284],bodi:[1,18,20,23,28,41,53,72,80,95,135,141,149,162,178,259,303,393,395,422,476],bodyfunct:[42,79,128,205,206,239,359,548],bodymag:297,bog:[140,152],boi:46,boiler:[28,48,53],bold:[185,548],bolt:[315,407],bone:[28,121,141,146],bonu:[113,142,146,197,313,314,410],bonus:[142,155,313],book:[41,53,73,137,142,146,149,159,163,169,181,279],bool:[0,13,21,23,28,32,34,42,91,116,208,209,210,211,213,214,215,216,217,227,229,236,237,238,245,251,258,261,279,282,284,287,290,293,296,312,314,315,316,333,341,342,343,344,347,350,353,354,358,384,386,390,392,393,394,398,400,401,402,406,407,409,410,411,412,413,414,415,420,425,426,431,432,437,438,439,443,448,449,457,459,461,463,468,469,470,471,473,474,476,478,480,481,482,483,484,487,489,491,493,495,496,499,504,506,509,510,517,544],booleanfield:[178,504,510],booleanfilt:516,boom:[133,152],boost:395,boot:[19,33,61,102,126,133,192,203,220,227,236,270,415],boot_us:227,bootstrap:[0,24,53,61,123,195,201,548],border:[162,167,170,201,219,279,282,284,384,479,482,494],border_bottom:482,border_bottom_char:482,border_char:482,border_color:201,border_left:482,border_left_char:482,border_right:482,border_right_char:482,border_top:482,border_top_char:482,border_width:482,borderless:162,borderstyl:384,bore:[55,121,140,141,199],borrow:[21,215,429],bort:[28,29,480],boss:162,bot:[7,131,178,186,189,199,201,205,206,207,211,227,425,431,432,439,461,542],bot_data_in:[209,425],both:[0,1,4,8,9,10,11,14,17,19,20,21,23,28,30,31,32,34,36,39,44,48,49,53,57,58,62,67,68,77,78,80,82,83,94,96,97,98,99,107,110,111,116,117,118,119,130,132,134,135,136,138,141,142,143,144,147,151,153,159,160,161,162,163,164,168,169,170,174,178,179,181,183,186,187,188,197,199,200,201,203,213,215,222,227,232,237,238,248,279,284,287,296,303,309,315,316,326,335,341,342,344,350,358,376,390,398,400,402,406,407,408,410,413,415,429,438,448,449,451,458,460,463,468,469,473,476,480,482,483,491,496,519,522],bother:[11,155,199,468],botnam:[189,227,432,461],botnet:199,boto3:75,boto:75,botstart:209,bottl:98,bottom:[7,9,29,48,50,51,53,75,115,116,123,126,135,144,157,161,162,164,168,170,178,185,187,216,303,315,333,341,407,474,481,482,548],bottommost:116,bought:168,bouncer:[20,199,479],bound:[20,69,110,119,132,133,161,258,314,315,341,358,392,496],boundari:[110,116,357,358,496],bow:[142,407],bowl:[85,296],box:[0,6,9,30,33,35,36,41,49,63,73,85,95,96,121,124,127,128,130,133,134,135,136,141,146,149,162,164,170,175,182,188,197,200,201,222,277,335,341,354,397,429,474,536,548],brace:[80,94,96,153,169,402,473],bracket:[72,82,119,232,248,483],branch:[0,4,12,105,111,116,117,118,119,124,126,190,192,196,201,282,386,390,548],branchnam:12,brandymail:[97,117,303],braymer:75,bread:[56,85,117,296],breadrecip:296,breadth:316,break_lamp:368,break_long_word:482,break_on_hyphen:482,breakag:142,breakdown:232,breaker:429,breakpoint:[9,56,205],breath:[133,136],breez:[42,177],breviti:[135,162],bribe:28,brick:167,bridg:[44,65,80,113,120,138,181,183,376],bridgecmdset:376,bridgeroom:376,brief:[12,50,56,57,67,91,95,127,128,131,149,152,153,162,168,203,274,384,402,464],briefer:[37,203],briefli:[56,61,133,142,197,203,368],bright:[60,82,106,116,135,166,176,201,248,368,473],brightbg_sub:473,brighten:60,brighter:60,bring:[0,111,116,141,143,150,151,159,174,175,178,183,192,199,316,342,374,390,462],broad:157,broadcast:[76,201,208,236,429],broadcast_server_restart_messag:201,broader:[157,354,402],brodowski:75,broken:[0,31,60,69,119,125,139,140,201,353,368],brown:473,brows:[0,9,51,117,121,124,131,149,151,153,157,162,163,164,168,169,175,197,199,201,542],browser:[0,1,49,51,52,53,56,59,73,119,122,124,125,131,132,149,151,164,178,179,182,187,190,191,193,195,197,199,201,281,448,449,544,545],brunt:142,brutal:274,bsd:[0,75,180,500],bsubtopicnna:233,btest:60,btn:18,bucket:[75,243,380],buf:[141,478],buff:141,buffer:[23,27,51,80,231,243,422,449,478,544],bug:[0,1,6,8,10,12,15,54,75,89,113,118,135,140,142,143,161,175,180,185,203,402,470],bugfix:[0,75],buggi:[14,480],bui:[77,142,168,287],build:[0,3,4,5,7,9,14,15,16,17,19,20,21,23,24,26,28,31,35,36,37,41,44,46,48,51,53,54,58,61,67,69,70,72,74,78,85,91,98,104,113,116,117,121,122,124,125,126,127,129,130,132,133,134,135,138,139,141,143,144,145,150,151,161,164,165,166,173,175,181,190,191,192,193,194,195,201,205,206,212,214,218,220,221,228,229,244,245,246,259,274,282,284,320,326,335,336,338,339,341,342,343,353,354,374,398,402,406,407,420,431,432,474,482,536,548],build_forest:98,build_link:342,build_match:214,build_mountain:98,build_templ:98,buildchannel:19,builder:[0,13,14,16,19,30,31,33,39,41,46,49,50,57,69,80,81,91,94,103,114,116,117,123,125,129,133,139,140,143,144,153,160,162,168,175,201,220,222,227,228,232,245,274,290,309,320,326,333,335,354,368,376,384,398,402,451,470,471,474,517,548],buildier:407,building_menu:[80,205,206,239,240,548],buildingmenu:[80,245,246],buildingmenucmdset:245,buildprotocol:[417,430,431,432],buildshop:168,built:[0,7,15,20,24,28,30,56,62,73,103,117,119,122,125,132,135,138,139,140,141,143,146,161,162,174,175,185,191,192,199,211,238,309,341,342,343,353,394,401,410,415,468,470,471,474,478,480,488],builtin:433,bulk:[31,199,201],bullet:[119,140],bulletin:[33,35,125,139,140,181],bulletpoint:119,bunch:[17,20,69,70,130,134,136,141,144,162],burden:167,buri:[69,138],burn:[138,140,143,146,197,375],busi:[76,77,98,122,141,197,287],butter:[56,296],button:[0,9,12,15,16,21,23,33,36,49,50,51,52,53,65,68,73,78,94,117,124,125,127,132,134,135,178,179,222,279,297,367,368,375,452,481,509,548],button_expos:375,buy_ware_result:168,byngyri:[104,353],bypass:[0,8,33,39,54,57,107,123,128,133,138,144,147,162,176,201,208,210,222,236,326,398,400,470,476,493,496,528],bypass_mut:[19,236],bypass_perm:496,bypass_superus:33,byt:402,bytecod:473,bytes_or_buff:544,bytestr:[429,496],bytestream:496,c123:[82,117],c20:227,c_creates_button:452,c_creates_obj:452,c_dig:452,c_examin:452,c_help:452,c_idl:452,c_login:[7,452],c_login_nodig:452,c_logout:[7,452],c_look:[7,452],c_measure_lag:452,c_move:452,c_moves_:452,c_moves_n:452,c_score:175,c_social:452,cabinet:40,cabl:167,cach:[0,10,14,23,42,48,51,52,53,55,67,116,133,154,157,182,201,208,217,232,236,238,320,341,357,374,375,398,401,402,424,463,468,470,471,472,485,487,496,505,512,529],cache_dir:201,cache_inst:487,cache_lock_bypass:398,cache_s:[463,487],cachecontrol:75,cached_properti:496,cactu:315,cake:21,calcul:[0,20,42,54,90,110,116,130,146,147,153,157,175,216,251,264,312,313,315,316,320,339,342,353,357,358,407,484,487,496,541,547],calculate_path_matrix:341,calculated_node_to_go_to:28,calculu:160,calendar:[0,86,94,117,251,264,484],call:[0,1,4,6,7,10,11,12,13,14,15,16,19,20,21,27,28,30,32,33,34,37,41,42,44,45,47,48,49,51,52,54,56,58,62,65,67,68,69,71,73,78,80,85,95,96,98,102,105,106,109,110,111,114,115,116,117,119,122,123,125,126,128,129,130,131,132,134,135,136,137,140,143,144,146,147,149,152,153,154,155,156,157,159,160,161,162,163,164,166,168,169,170,171,172,173,174,175,176,177,178,179,183,186,188,189,190,191,192,193,197,200,201,203,208,209,213,214,215,216,217,219,222,227,230,231,232,233,234,236,238,245,251,254,255,258,259,260,261,262,264,270,274,277,279,280,281,282,284,287,290,293,296,297,298,300,309,312,313,314,315,316,320,326,333,342,344,347,353,354,358,363,366,368,370,373,374,375,376,384,386,390,397,398,401,402,405,406,407,409,411,413,414,415,417,420,422,424,425,429,430,431,432,433,434,435,436,438,439,440,441,442,443,444,445,447,448,449,451,452,453,458,459,460,461,462,465,468,470,471,473,474,475,476,478,480,481,482,483,484,487,489,491,492,493,494,496,505,512,517,522,536,540,542,545,546,547],call_async:54,call_command:10,call_ev:[96,260],call_inputfunc:[65,459,461],call_task:414,callabl:[0,24,27,28,34,41,47,52,53,58,71,91,111,117,159,175,201,245,261,282,314,315,341,384,390,402,405,406,407,411,415,418,420,422,430,461,475,478,480,481,483,484,489,491,492,496],callables_from_modul:496,callbac:80,callback1:480,callback:[20,23,24,27,28,32,34,47,54,76,80,84,86,91,111,117,123,155,163,209,232,245,246,251,258,259,260,261,262,264,293,373,381,384,390,402,411,414,415,418,420,422,425,429,430,431,433,447,448,451,462,480,484,489,494,496,548],callback_nam:[258,261],callbackhandl:[205,206,239,240,257],called_bi:213,calledbi:496,caller:[0,6,14,15,19,20,23,27,30,31,33,36,37,47,48,54,58,65,67,68,72,78,80,83,84,85,91,93,94,98,111,115,116,119,126,133,134,137,144,146,147,152,153,154,155,156,158,159,160,162,166,167,168,169,170,174,175,188,209,213,214,215,217,219,222,223,227,228,229,230,232,233,245,246,259,274,277,278,279,280,293,296,303,309,333,350,354,368,370,373,375,376,384,390,398,402,404,406,407,474,478,480,481,483,490,494,496],callerdepth:496,callertyp:213,callinthread:465,calllback:260,callsign:[28,279,425],calm:170,came:[94,121,124,126,135,152,153,170,177,181,333,374,402],camp:170,campfir:170,campsit:170,can:[0,1,3,4,5,6,7,8,9,10,11,12,13,15,16,17,18,19,20,21,23,24,25,27,28,30,31,32,33,34,35,36,37,39,40,41,42,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,62,63,64,65,67,68,69,70,71,73,74,75,76,77,78,81,82,83,84,85,86,87,89,90,91,92,93,94,95,96,97,98,103,104,105,106,107,110,111,112,113,114,115,116,117,118,119,122,123,124,125,126,127,128,129,130,131,132,133,134,135,138,139,140,141,143,144,146,147,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,166,167,168,169,170,171,172,173,174,175,176,178,179,180,181,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,203,207,208,209,210,211,214,215,216,217,219,220,222,227,228,229,230,231,232,233,234,236,237,238,243,245,248,251,254,260,261,264,270,274,278,279,280,281,282,284,287,290,293,296,297,300,303,309,312,313,314,315,316,320,326,333,335,337,338,341,342,344,347,350,353,354,358,366,368,374,375,376,380,384,386,390,392,394,397,398,400,401,402,405,406,407,408,409,410,411,413,415,420,429,431,435,438,440,443,444,448,449,451,452,458,459,460,461,462,465,466,467,468,469,470,471,473,474,475,476,478,479,480,481,482,483,490,491,492,493,494,496,497,499,500,504,517,519,522,536,541,542,544,545,547,548],can_:[94,260],can_delet:94,can_eat:94,can_ent:471,can_list_top:[229,544],can_mov:94,can_part:94,can_read_top:[229,544],can_sai:94,can_travers:94,cancel:[0,20,32,94,144,155,232,260,312,316,402,414],candid:[0,23,80,137,144,178,214,309,354,395,400,402,493],candidate_entri:395,candl:216,cannon:130,cannot:[0,8,10,11,14,15,16,20,21,23,27,28,35,39,41,46,50,54,57,60,64,80,89,90,91,95,107,113,116,118,124,125,132,133,134,137,138,139,140,143,146,152,153,154,155,157,158,160,164,168,175,178,195,197,200,201,208,209,216,219,222,229,245,258,261,282,296,316,320,326,335,374,375,384,390,393,398,400,402,406,415,468,475,477,479,482,487,496],cantanker:490,cantclear:[91,384],cantillon:181,cantmov:153,canva:159,cap:201,capabl:[33,44,65,68,109,117,122,125,139,140,159,162,201,219,370,425,447,536],cape:161,capfirst:164,capit:[0,30,55,58,68,92,104,105,122,124,135,136,142,153,155,175,222,284,300,353,358,386,444,473,483,496,500],captcha:178,caption:119,captur:[76,153,169,201,489],car:[36,85,174],carbon:[296,297],card:[116,199,343,344],cardin:[116,158,159,162,222,341,342,343],care:[23,28,54,55,67,76,94,96,110,116,119,122,123,133,135,142,143,147,159,160,161,163,169,174,176,177,180,183,202,203,208,215,236,277,296,309,320,326,329,335,341,354,358,373,374,376,397,402,451,470,474,478,480,481,482,496],career:143,carefulli:[7,44,50,94,117,121,170,178,201],carri:[21,33,125,128,132,139,140,144,147,167,168,171,238,290,297,313,314,374,397,459,469],carv:85,cascad:[201,487],case_insensit:279,case_sensit:[104,354],caseinsensitivemodelbackend:[201,528],cast:[41,46,111,112,136,154,205,206,239,285,295,315,390],caster:[154,297,315],castl:[15,113,116,129,138,170,320,376],cat:[187,191],catchi:[123,201],categor:[46,122,196,402],categori:[0,4,14,23,26,28,31,41,46,67,74,85,111,116,117,118,119,126,130,137,157,164,201,210,217,218,219,220,221,222,227,228,229,230,231,232,233,234,237,245,255,259,270,273,274,277,280,287,290,296,297,300,303,306,309,312,313,314,315,316,320,326,329,335,347,354,358,368,370,374,375,376,384,390,392,393,394,395,397,400,402,406,407,409,411,451,468,469,471,476,478,480,481,488,490,493,496,516,544],categoris:160,category2:488,category2_id:488,category_id:488,category_index:390,cater:[143,155],caught:[6,8,28,144,237],cauldron:297,caus:[0,6,10,14,21,33,51,55,74,88,122,126,133,147,155,156,171,175,183,197,201,216,236,249,255,293,297,333,342,368,402,451,480,482,496],caution:[51,94,163,201,480],cave:[95,116,335,336],caveat:[24,54,75,144,202],caveman:160,cblue:12,cboot:[55,102,126,270],cc1:195,cccacccc:479,ccccc2ccccc:162,cccccccc:479,ccccccccccc:162,cccccccccccccccccbccccccccccccccccc:479,ccccccccccccccccccccccccccccccccccc:479,ccreat:[0,102,126,162,186,189,198,270],cdesc:[102,126,270],cdestroi:[102,126,270],cdfaiwmpbaaj:0,cdmset:21,cdn:[75,199],ceas:222,cel:479,celebr:140,cell:[0,1,113,138,162,164,170,384,479,482],celltext:479,cemit:126,censu:469,center:[30,41,53,56,116,123,157,159,170,282,284,335,341,350,473,482,496],center_justifi:41,centos7:187,centr:[31,170],central:[0,10,19,32,85,116,122,170,177,192,208,216,222,233,236,237,238,280,296,339,402,407,429,476,480,487,525],centre_east:170,centre_north:170,centre_south:170,centre_west:170,centric:[33,44,104,124,175,354],cert:[182,441,445],certain:[8,14,15,16,21,23,33,42,44,45,47,56,57,59,68,69,77,84,85,106,110,117,119,122,125,127,132,141,142,153,155,174,183,191,197,201,222,237,287,293,297,333,341,353,358,368,375,380,397,400,406,413,420,426,443,444,447,462,468,469,478,482,483,493,496,505,522,536],certainli:17,certbot:[187,197,199],certfil:[441,445],certif:[182,197,202,441,445],certonli:187,cfg:187,cflag:191,cgi:197,cha:[28,162],chain:[0,28,41,54,95,96,116,130,155,260,261,342,420,452,480],chain_1:[94,96],chain_2:[94,96],chain_3:94,chain_:[94,96],chain_flood_room:94,chain_open_door:96,chain_x:[94,96],chainedprotocol:440,chainsol:130,chair:[15,37,46,48,78,125,139,140,169],challeng:[89,113,117,136,138,146,181,280],chamber:113,chan:[19,26,227],chanalia:270,chanc:[7,12,21,30,47,63,80,85,133,138,140,146,147,152,154,185,215,297,312,313,314,315,316,368,375,376,452],chance_of_act:[7,452],chance_of_login:[7,452],chandler:147,chang:[1,2,4,5,6,7,10,13,14,15,16,17,19,21,23,24,25,27,28,30,31,32,33,34,35,36,37,41,42,44,45,46,47,48,51,55,56,57,58,60,61,63,65,67,73,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,91,92,93,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,120,122,123,124,125,126,128,130,132,134,135,136,139,140,141,144,145,146,147,149,150,152,155,156,157,158,159,161,163,166,168,169,170,172,174,175,176,177,178,179,180,182,183,185,187,188,190,191,192,193,195,196,197,200,201,202,203,208,216,217,219,220,222,228,233,236,245,254,255,258,261,270,274,279,282,287,290,296,300,306,312,313,314,315,316,320,326,329,333,342,343,344,350,353,354,357,358,374,375,376,390,392,394,400,401,402,406,407,410,411,413,414,415,420,425,436,451,458,459,466,468,470,474,477,478,481,482,483,489,490,491,492,504,505,506,509,510,512,545,547],change_name_color:390,changelock:[19,227],changelog:[2,131,196,548],changem:201,changepag:179,channel:[0,13,14,21,23,24,26,33,35,36,45,46,48,52,53,55,57,67,102,117,118,120,121,125,126,132,133,137,139,140,167,175,181,186,188,189,197,198,201,205,206,208,209,215,216,222,227,233,235,236,237,238,261,270,368,431,432,439,452,458,459,461,468,476,489,493,502,506,535,537,539,548],channel_:[19,236],channel_ban:[19,227,270],channel_color:153,channel_connectinfo:[0,201,459],channel_detail:541,channel_handler_class:0,channel_list:541,channel_list_ban:227,channel_list_who:227,channel_log_num_tail_lin:201,channel_log_rotate_s:201,channel_msg:[19,208],channel_msg_nick_pattern:[19,236],channel_msg_nick_replac:[19,227,236],channel_msg_pattern:227,channel_mudinfo:[0,201],channel_prefix:[19,153,236],channel_prefix_str:[19,236],channel_search:237,channel_typeclass:537,channeladmin:506,channelalia:[19,227,236],channelattributeinlin:506,channelcl:227,channelcmdset:[0,21,126],channelconnect:238,channelcr:270,channelcreateview:236,channeldb:[48,120,205,236,238,467,506],channeldb_db_attribut:506,channeldb_db_tag:506,channeldb_set:[468,471],channeldbmanag:[237,238],channeldeleteview:236,channeldetailtest:537,channeldetailview:[236,541],channelform:506,channelhandl:[0,19],channelkei:237,channellisttest:537,channellistview:541,channelmanag:[236,237],channelmixin:541,channelnam:[19,189,208,209,227,236,431],channeltaginlin:506,channelupdateview:236,char1:[10,146,228,494,537],char2:[10,146,228,537],char_creat:201,char_health:376,char_nam:178,charac:34,charact:[0,4,6,7,8,10,13,14,16,17,18,20,21,23,24,27,28,30,31,32,33,36,39,42,44,48,49,53,57,60,62,64,67,68,70,72,73,79,80,81,83,84,85,87,89,90,91,92,94,96,97,98,101,103,104,105,106,110,111,112,113,115,116,117,120,121,124,125,126,128,129,130,131,132,134,135,136,137,139,141,145,147,151,152,154,155,156,157,159,160,161,163,164,165,166,168,169,170,171,172,173,174,183,188,201,205,206,207,208,210,214,215,217,219,222,223,224,228,229,230,232,234,236,245,258,260,261,277,279,280,282,290,293,300,303,306,309,312,313,314,315,316,320,333,335,339,341,342,344,347,350,353,354,357,358,363,368,370,374,375,376,380,384,386,390,392,394,397,398,402,413,425,446,459,464,468,470,471,473,474,479,480,482,483,494,496,497,502,516,522,535,536,537,539,544,546,547,548],character1:146,character2:146,character_cleanup:[280,282],character_cmdset:[90,320],character_cr:201,character_encod:201,character_ent:282,character_exit:280,character_form:542,character_id:402,character_leav:282,character_list:542,character_manage_list:542,character_sai:94,character_typeclass:[208,494,537],charactercmdset:[0,19,21,26,50,77,80,81,87,89,90,92,94,97,101,102,104,107,108,116,133,134,144,152,153,156,158,161,162,163,166,175,201,224,245,270,290,297,303,306,312,313,314,315,316,320,326,329,347,354,376],charactercreateview:[537,542],characterdeleteview:[537,542],characterdetailview:542,characterform:[536,542],characterlistview:[537,542],charactermanageview:[537,542],charactermixin:542,characterpuppetview:[537,542],charactersheet:28,characterupdateform:[536,542],characterupdateview:[537,542],characterviewset:522,charapp:178,charat:[91,384],charcreat:[26,95,96,126,164,219],charcter:19,chardata:162,chardelet:[26,126,219],chardeleteview:[394,470],chardetailview:[217,392,394,470],charfield:[67,178,492,504,505,506,508,509,510,512,536],charfilt:516,charg:197,chargen:[178,236,394,470],chargencmdset:175,chargenroom:175,chargenview:[394,470],charnam:[162,219,483],charpuppetview:470,charset:496,charsheet:162,charsheetform:162,charupdateview:[394,470],chase:138,chat:[0,1,13,39,53,98,118,121,140,142,143,162,175,181,186,189,198,201,449,489],chatroom:161,chatzilla:189,chdir:201,cheap:143,cheaper:47,cheapest:[116,197],cheapli:376,cheat:[2,119,146,183],chec:494,check:[0,1,3,4,5,6,7,8,9,10,11,12,15,16,19,20,21,23,24,28,30,35,36,37,41,42,46,47,48,49,55,57,58,62,64,67,76,80,83,85,91,94,95,96,117,118,119,123,125,132,133,134,142,143,144,146,147,151,153,154,155,157,159,160,162,164,166,167,168,169,170,171,172,174,175,178,185,186,187,188,190,192,193,197,198,199,201,202,203,208,210,213,214,215,216,217,219,221,222,227,228,229,230,232,233,234,236,238,255,261,274,279,280,282,287,290,293,296,303,312,320,333,339,342,344,358,363,368,374,376,384,397,398,401,402,406,407,410,412,413,414,419,420,424,429,435,440,458,459,461,463,464,465,468,470,471,473,474,476,483,490,491,494,496,497,499,504,505,512,517,544,547],check_attr:222,check_character_flag:279,check_circular:449,check_databas:420,check_db:420,check_defeat:146,check_end_turn:147,check_error:419,check_evennia_depend:496,check_flag:[279,280],check_from_attr:222,check_grid:159,check_has_attr:222,check_light_st:376,check_lock:517,check_lockstr:[0,33,123,398],check_main_evennia_depend:420,check_mixtur:279,check_obj:222,check_perm:280,check_permiss:406,check_permstr:[208,470],check_to_attr:222,check_warn:419,checkbox:178,checker:[2,17,159,397,440,497,501],checklockstr:126,checkout:[12,124,192,196],checkoutdir:4,cheer:98,chemic:297,cheng:75,chest:[39,89,136,137,169],chicken:277,child:[0,19,23,28,33,41,116,122,126,133,134,136,144,147,209,211,217,222,233,277,279,282,296,376,401,407,410,465,488,519],childhood:28,children:[23,46,48,122,125,152,171,211,344,401,402,410,420,469,470,488,514,542],chillout:222,chime:20,chines:[0,64,70,153,181],chip:162,chmod:4,choci:245,choic:[17,23,28,30,41,42,44,45,70,72,91,98,111,117,121,123,125,134,135,136,144,147,169,177,180,183,197,201,208,219,222,245,246,274,287,312,384,418,478,480,483],choice1:72,choice2:72,choice3:72,choicefield:[504,505,509,510,512,514],choos:[9,14,15,28,30,53,54,73,74,76,109,111,116,117,119,122,124,130,141,142,146,147,159,161,163,168,173,175,176,178,189,202,312,313,314,315,316,368,370,374,390,433,480,483,494,495,548],chop:[23,375],chore:140,chose:[28,67,135,162,178,185,190,199,390,480],chosen:[9,28,68,80,94,147,177,350,384,480,483],chown:192,chractercmdset:376,chraract:341,chri:75,chrislr:[0,83,117],christa:75,christian:75,chrome:[0,184],chronicl:[91,384],chroot:187,chug:23,chunk:[15,78,164,170,422,474],church:[20,141],church_clock:20,churn:144,cid:452,cillum:29,cinemat:[282,284],circl:157,circuit:51,circular:[422,475],circumst:[28,71,95,132,134,135,144,161,168,215,315,536],circumv:220,cis:499,citi:[31,116,142,341],citymap:116,cjust:[30,483],clang:191,clank:[94,96],clarifi:153,clariti:[64,67,136,169,175,191,297],clash:[21,31,125,183,197,222,470,480],class_from_modul:496,classic:[0,15,44,46,47,133,142,147,149,181],classifi:201,classmethod:[157,208,236,296,298,321,344,394,402,413,470,487,530],classnam:[14,64,136],classobj:470,clatter:28,claus:[75,172,180],clean:[0,12,14,18,19,28,113,123,133,134,138,144,147,153,154,170,203,215,217,222,232,280,282,287,297,312,333,354,375,376,402,410,420,424,438,448,461,470,473,478,480,487,492,495,496,504,505,512,536],clean_attr_valu:505,clean_attribut:[48,208,470],clean_cmdset:[48,470],clean_senddata:461,clean_stale_task:414,clean_str:473,clean_usernam:504,cleaned_data:178,cleaner:[0,136,169,175],cleanli:[44,83,91,122,203,213,217,270,384,422,431,437,448,461,478],cleanup:[0,14,23,27,28,62,80,281,282,287,293,296,373,376,480,504],cleanupscript:281,clear:[0,11,14,17,19,23,27,46,47,48,51,55,58,62,70,72,80,91,116,118,119,122,123,140,143,144,146,155,164,166,170,177,200,203,216,219,220,222,228,234,238,293,335,343,354,357,358,376,384,386,398,400,401,402,411,414,415,422,459,463,468,470,471,480,487],clear_all_sessid:400,clear_attribut:468,clear_client_list:456,clear_cont:[37,402],clear_exit:[37,402],clearal:[72,228],clearli:[11,55,94,118,133,487],cleartext:[76,210,381,476],clemesha:465,clever:[0,19,21,28,54,398],cleverli:44,click:[0,4,9,11,12,49,50,51,52,53,59,71,73,119,125,131,164,178,197,201,480,548],click_top:229,clickabl:[0,61,71,119,201,229,548],clickable_top:229,client:[0,4,7,11,23,24,27,29,30,32,34,44,45,49,52,55,59,60,61,62,69,70,76,80,116,117,119,121,122,124,128,132,133,134,135,142,147,149,151,153,156,166,169,170,171,176,181,182,183,185,186,187,189,190,191,192,193,195,199,200,201,202,205,206,208,209,217,219,222,227,229,232,234,342,344,381,416,417,421,423,425,429,430,431,432,433,434,435,436,438,440,442,443,444,445,447,448,449,451,452,458,459,460,461,477,478,480,495,496,516,519,545,548],client_address:62,client_class:520,client_default_height:[29,201],client_default_width:201,client_disconnect:449,client_encod:183,client_gui:[0,425],client_height:0,client_nam:0,client_opt:[68,425,444],client_secret:186,client_typ:279,client_width:[0,23,217],clientconnectionfail:[417,431,432],clientconnectionlost:[417,431,432],clienthelp:51,clientkei:451,clientraw:[0,232],clientsess:[448,449],clientwidth:126,cliff:[98,113,128,222],climat:46,climb:[7,23,121,201,222,279,375],climbabl:[279,375],clipboard:50,clock:[20,23,55,102,126,146,270],cloer:316,clone:[5,11,64,119,122,124,131,193,196],close:[0,9,12,16,27,28,44,48,51,52,62,80,89,94,95,96,106,107,112,117,119,122,133,135,136,153,157,164,178,187,190,192,195,197,199,201,203,232,234,243,245,255,279,281,287,316,326,350,368,373,422,430,431,438,440,448,449,461,468,474,480,483],close_menu:[373,480],closer:[316,353],closest:[60,110,157,358,496],cloth:[14,101,125,139,205,206,239,285,474,548],clothedcharact:[81,290],clothedcharactercmdset:[81,290],clothes_list:290,clothing_typ:[81,290],clothing_type_count:290,clothing_type_ord:290,cloud9:202,cloud:[42,75,117,177,192,197,199],cloud_keep:[98,117],cloudi:42,clr:[30,284,406,483],cls:[157,208,358],club:296,clue:375,clump:136,clunki:[12,316],cluster:183,clutter:[119,216],cma:12,cmd:[0,7,16,19,21,23,31,33,55,68,78,80,125,126,135,144,153,154,155,158,162,163,167,168,174,175,188,190,201,215,217,219,220,221,222,227,228,229,230,231,232,233,234,245,255,259,270,273,274,277,287,290,296,297,300,303,306,309,312,313,314,315,316,320,326,329,335,347,354,368,370,374,375,376,384,390,391,402,444,448,449,451,474,478,480,481,544],cmd_arg:169,cmd_channel:23,cmd_help_dict:229,cmd_help_top:544,cmd_ignore_prefix:[23,201,214],cmd_kei:169,cmd_last:[44,201],cmd_last_vis:[44,201],cmd_loginstart:[23,201],cmd_multimatch:[23,213],cmd_na_m:68,cmd_name:[0,68,444],cmd_noinput:[23,213,480],cmd_nomatch:[23,213,376,480],cmd_noperm:23,cmd_on_exit:[28,278,373,384,390,404,480],cmd_or_top:[229,544],cmd_total:[44,201],cmdabout:232,cmdaccept:287,cmdaccess:228,cmdaccount:232,cmdaddcom:270,cmdallcom:270,cmdapproach:316,cmdarmpuzzl:309,cmdasync:54,cmdattack:[146,147,155,175,312,313,314,315,316,375],cmdban:220,cmdbare:126,cmdbatchcod:221,cmdbatchcommand:221,cmdbigsw:155,cmdblindhelp:368,cmdblindlook:368,cmdblock:153,cmdboot:220,cmdbridgehelp:376,cmdbui:168,cmdbuildshop:168,cmdcallback:[94,259],cmdcast:[297,315],cmdcboot:270,cmdcdesc:270,cmdcdestroi:270,cmdchannel:[19,227,270],cmdchannelcr:270,cmdcharcreat:219,cmdchardelet:219,cmdclimb:375,cmdclock:270,cmdcloselid:368,cmdcolortest:219,cmdcombathelp:[312,313,314,315,316],cmdconfigcolor:166,cmdconfirm:23,cmdcopi:222,cmdcover:290,cmdcpattr:222,cmdcraft:[85,296],cmdcraftarmour:155,cmdcreat:222,cmdcreatenpc:175,cmdcreateobj:277,cmdcreatepuzzlerecip:309,cmdcwho:270,cmddarkhelp:376,cmddarknomatch:376,cmddeclin:287,cmddefend:147,cmddelcom:270,cmddesc:[222,320],cmddestroi:222,cmddiagnos:156,cmddice:[87,162,347],cmddig:222,cmddisengag:[147,312,313,314,315,316],cmddoff:313,cmddon:313,cmddrop:[228,290],cmddummi:273,cmddummyrunnerechorespons:451,cmdeast:376,cmdecho:[23,119,126,134,155,494],cmdedit:[80,245],cmdeditnpc:175,cmdeditorbas:478,cmdeditorgroup:478,cmdeditpuzzl:309,cmdemit:220,cmdemot:[277,354],cmdentertrain:174,cmdevalu:287,cmdevenniaintro:376,cmdevmenunod:480,cmdevscaperoom:277,cmdevscaperoomstart:[89,277],cmdexamin:222,cmdexiterror:158,cmdexiterroreast:158,cmdexiterrornorth:158,cmdexiterrorsouth:158,cmdexiterrorwest:158,cmdextendedlook:0,cmdextendedroom:0,cmdextendedroomdesc:[90,320],cmdextendedroomdetail:[0,90,320],cmdextendedroomgametim:[90,320],cmdextendedroomlook:[0,90,320],cmdfeint:147,cmdfight:[312,313,314,315,316],cmdfind:222,cmdfinish:287,cmdfocu:277,cmdfocusinteract:277,cmdforc:220,cmdget:[0,134,153,228,277],cmdgetinput:480,cmdgetweapon:375,cmdgive:[228,290],cmdgiveup:277,cmdgmsheet:162,cmdgoto:335,cmdgrapevine2chan:227,cmdhandler:[21,23,37,65,132,205,206,208,212,214,215,216,217,219,230,231,232,233,234,277,309,320,376,401,402,410,494,496],cmdhelp:[31,147,201,229,277,312],cmdhit:[126,134,147],cmdhome:228,cmdic:219,cmdid:425,cmdinsid:174,cmdinterrupt:233,cmdinventori:[167,228,290],cmdirc2chan:227,cmdircstatu:227,cmdjumpstat:277,cmdlaunch:152,cmdlearnspel:315,cmdleavetrain:174,cmdlen:[214,231],cmdlight:375,cmdline:420,cmdlineinput:478,cmdlink:222,cmdlistarmedpuzzl:309,cmdlistcmdset:222,cmdlistpuzzlerecip:309,cmdlock:222,cmdlook:[8,156,228,277,320,376],cmdlookbridg:376,cmdlookdark:376,cmdmail:[0,97,303],cmdmailcharact:[0,97,303],cmdmakegm:162,cmdmap:335,cmdmapbuild:98,cmdmask:354,cmdmobonoff:374,cmdmore:481,cmdmoreexit:481,cmdmultidesc:[101,161,306],cmdmvattr:222,cmdmycmd:[31,160],cmdmylook:10,cmdname2:214,cmdname3:214,cmdname:[0,32,51,62,65,68,126,144,175,201,213,214,217,222,230,231,233,425,443,444,448,449,461,494],cmdnamecolor:[111,390],cmdnewpassword:220,cmdnick:228,cmdnoinput:245,cmdnomatch:245,cmdnositstand:144,cmdnpc:175,cmdnudg:368,cmdobj:[213,214,231,494],cmdobj_kei:213,cmdobject:[0,213,214,222],cmdobjectchannel:[19,227],cmdoffer:287,cmdooc:219,cmdooclook:219,cmdopen:[222,326,335],cmdopenclosedoor:326,cmdopenlid:368,cmdoption:[219,277],cmdpage:227,cmdparri:147,cmdparser:[200,201,205,206,212],cmdpass:[312,313,314,315,316],cmdpassword:219,cmdperm:220,cmdplant:[114,274],cmdpose:[147,228,354],cmdpressbutton:375,cmdpush:94,cmdpushlidclos:368,cmdpushlidopen:368,cmdpy:232,cmdquell:219,cmdquit:219,cmdread:375,cmdrecog:[0,354],cmdreload:232,cmdremov:290,cmdrerout:277,cmdreset:232,cmdrest:[312,313,314,315,316],cmdroll:169,cmdrss2chan:227,cmdsai:[147,228,354],cmdsaveyesno:478,cmdscript:[0,222],cmdsdesc:354,cmdser:480,cmdserverload:232,cmdservic:232,cmdsession:219,cmdset:[6,8,13,16,19,21,23,26,28,31,37,42,44,62,64,77,80,85,87,89,90,92,94,97,102,103,106,108,116,120,125,127,131,132,133,144,147,152,153,158,161,163,164,166,168,174,175,201,205,206,208,212,213,214,216,217,222,223,224,225,226,230,231,232,233,245,259,270,274,277,287,290,296,300,303,309,312,313,314,315,316,320,326,329,335,347,354,368,370,373,374,375,376,401,402,410,451,458,459,470,478,480,481,494,496,514],cmdset_account:[13,201,205,206,212,218],cmdset_charact:[201,205,206,212,218,290,312,313,314,315,316],cmdset_creat:77,cmdset_fallback:201,cmdset_mergetyp:[28,278,373,384,404,480],cmdset_path:201,cmdset_prior:[28,278,373,384,404,480],cmdset_sess:[44,201,205,206,212,218],cmdset_stack:216,cmdset_storag:[211,401,459],cmdset_storage_str:201,cmdset_trad:287,cmdset_unloggedin:[23,88,99,201,205,206,212,218,255],cmdsetattribut:222,cmdsetclimb:375,cmdsetcrumblingwal:375,cmdsetdesc:228,cmdsetevenniaintro:376,cmdsetevscaperoom:277,cmdsetflag:277,cmdsethandl:[44,205,206,212],cmdsethelp:229,cmdsethom:222,cmdsetkei:21,cmdsetkeystr:215,cmdsetlegacycomm:[102,270],cmdsetlight:375,cmdsetmor:481,cmdsetobj:[215,216,223,224,225,226,245,270,277,287,290,296,309,312,313,314,315,316,320,326,329,335,347,354,368,370,373,374,375,376,451,478,480,481],cmdsetobjalia:222,cmdsetpow:175,cmdsetread:375,cmdsetsit:144,cmdsetspe:[108,329],cmdsettestattr:27,cmdsettrad:[77,287],cmdsettrain:174,cmdsetweapon:375,cmdsetweaponrack:375,cmdsheet:162,cmdshiftroot:375,cmdshoot:[152,316],cmdshutdown:232,cmdsit2:144,cmdsit:144,cmdsmashglass:368,cmdsmile:23,cmdspawn:222,cmdspeak:277,cmdspellfirestorm:154,cmdstand2:144,cmdstand:[144,277],cmdstatu:[287,315,316],cmdstop:[108,329],cmdstring:[23,126,162,213,217,230,233,494],cmdstyle:219,cmdtag:222,cmdtalk:370,cmdtask:232,cmdteleport:[222,335],cmdtest:[6,155,169],cmdtestid:23,cmdtestinput:28,cmdtestmenu:[28,91,384,480],cmdticker:232,cmdtime:[163,232],cmdtrade:287,cmdtradebas:287,cmdtradehelp:287,cmdtunnel:222,cmdtutori:376,cmdtutorialgiveup:376,cmdtutoriallook:376,cmdtutorialsetdetail:376,cmdtweet:188,cmdtypeclass:222,cmdunban:220,cmdunconnectedconnect:[234,255],cmdunconnectedcr:[234,255],cmdunconnectedencod:234,cmdunconnectedhelp:[234,255],cmdunconnectedinfo:234,cmdunconnectedlook:[234,255],cmdunconnectedquit:[234,255],cmdunconnectedscreenread:234,cmduncov:290,cmdunlink:222,cmdunwield:313,cmduse:314,cmdusepuzzlepart:309,cmdwait:23,cmdwall:220,cmdwear:290,cmdwerewolf:153,cmdwest:376,cmdwhisper:228,cmdwho:[219,277],cmdwield:313,cmdwipe:222,cmdwithdraw:316,cmdxyzopen:335,cmdxyzteleport:335,cmdyesnoquest:480,cmp:83,cmset:[216,514],cmud:184,cnf:[4,183],coal:[296,297],coast:[138,170],coastal:170,cobj:277,cockpit:152,code:[0,3,5,7,8,9,10,13,16,17,21,23,24,28,30,31,33,34,37,39,41,44,46,47,48,49,50,52,53,54,55,56,57,60,61,62,64,67,68,72,73,75,77,78,84,85,89,95,96,98,105,110,113,116,117,120,121,122,123,124,125,127,128,130,131,132,133,134,136,137,138,139,141,143,144,145,147,148,150,151,155,157,158,159,160,161,162,163,164,165,169,170,171,172,174,175,176,177,179,181,183,192,193,195,196,198,199,200,201,203,205,206,208,212,213,216,219,221,222,227,229,232,235,239,245,251,258,261,274,279,282,285,287,293,295,314,341,347,350,376,386,398,407,410,429,431,432,448,459,462,470,472,473,478,480,482,493,494,495,496,503,545,548],code_exec:474,code_hint:279,code_tri:279,codebas:[12,72,74,119,121,137,160,201,233],codeblock:119,codec:473,codefunc:478,codeinput:279,coder:[0,1,2,89,117,140,142,143,160,181,213,402],coding_styl:119,coerc:491,coexist:176,coher:148,coin:[77,117,118,125,136,137,139,140,141,287],col:[56,149,482],cold:[55,201,203,232,407,411,415,458],cole:496,coll_date_func:232,collabor:[12,89,122,123,140,143,197,229],collat:[31,65,406],collect:[0,1,14,21,30,31,49,103,116,136,151,213,215,229,232,309,358,468,496,522,544],collect_top:[229,544],collector:151,collectstat:[51,53,151,420,424],collid:[21,41,110,185,197,279,358,480,483],collis:[0,21,23,463],collist:136,colon:[20,33,94,128,135,398],color:[0,19,23,26,28,30,32,41,51,56,61,71,72,93,111,116,117,119,120,125,126,128,159,162,164,165,170,181,201,217,219,247,248,249,274,284,297,341,342,344,350,354,373,390,402,406,425,432,440,443,448,449,473,482,483,490,494,495,497,548],color_ansi_bright_bg_extra_map:[82,248],color_ansi_bright_bgs_extra_map:[82,248],color_ansi_extra_map:[82,201,248],color_ansi_xterm256_bright_bg_extra_map:201,color_markup:[82,205,206,239,240,548],color_no_default:[82,201,248],color_typ:473,color_xterm256_extra_bg:[82,201,248],color_xterm256_extra_fg:[82,201,248],color_xterm256_extra_gbg:[82,201,248],color_xterm256_extra_gfg:[82,201,248],colorablecharact:166,colorback:495,colorcod:495,colour:[20,61,222,447,473,482],column:[0,51,56,58,67,94,95,115,116,119,122,159,162,164,170,201,217,219,333,344,482,496],column_names_color:201,com:[0,1,5,10,11,12,40,49,53,54,56,64,69,73,75,80,84,89,95,119,121,124,133,137,140,157,170,178,181,182,183,185,187,191,192,193,197,198,199,201,205,227,232,245,255,293,395,429,432,435,444,448,465,482,495,496,536],coman:75,combat:[0,12,16,21,28,41,48,69,95,112,113,117,121,122,125,126,132,133,138,141,142,145,146,153,154,170,171,181,216,312,313,314,315,316,374,410],combat_:312,combat_cleanup:312,combat_cmdset:147,combat_handl:147,combat_handler_:147,combat_handler_class:[312,314,315,316],combat_help_text:[312,314,316],combat_movesleft:312,combat_rul:[312,313,315,316],combat_scor:175,combat_spel:315,combat_status_messag:316,combatcmdset:147,combathandl:147,combatscor:175,combin:[10,14,20,21,23,34,35,41,46,47,55,60,85,103,110,116,117,121,128,130,134,135,142,154,156,161,162,172,174,182,187,197,213,214,215,222,279,296,297,306,309,342,344,353,358,368,398,406,409,415,420,469,471,476,483,490,494,496],combo:44,come:[7,12,13,17,20,23,28,29,31,33,42,44,51,52,53,54,56,60,62,65,68,72,73,89,90,94,95,113,116,117,121,122,123,128,132,133,135,136,140,142,143,144,146,147,149,152,153,155,159,161,162,163,164,168,169,170,172,174,175,176,178,179,183,187,190,192,208,215,312,316,320,354,386,406,407,429,438,443,448,449,451,457,473,481,519,545],comet:[51,62,449],comfi:144,comfort:[12,17,121,143,164,169,202],comg:49,comlist:270,comm:[19,23,26,35,117,120,122,131,188,201,205,206,212,218,269,270,271,476,502,503,527,541,548],comma:[0,19,50,58,67,94,95,128,135,136,179,183,222,230,264,296,303,398,402,483,496],comman:128,command:[1,2,4,7,9,10,11,12,13,14,15,17,19,20,27,28,29,32,33,35,36,37,39,40,41,44,46,48,50,51,52,54,55,57,58,59,60,62,63,64,65,67,68,69,70,71,72,74,76,77,78,81,83,84,85,87,89,91,92,95,96,97,98,101,103,104,106,107,108,109,111,112,113,115,116,117,119,121,122,123,124,127,129,131,137,138,140,142,143,146,151,152,159,160,161,164,165,170,171,172,173,176,181,182,183,184,186,187,189,190,191,192,193,195,196,197,198,199,200,201,202,203,205,206,208,209,236,237,239,240,245,254,255,257,260,262,269,270,272,273,274,275,276,278,279,284,287,290,293,296,297,298,300,303,306,309,312,313,314,315,316,318,320,326,329,333,334,336,337,347,354,366,368,370,373,374,375,376,381,384,390,391,392,393,394,395,397,398,402,406,407,410,417,420,425,429,430,438,440,443,444,448,449,451,452,458,459,470,472,473,476,478,480,481,490,493,494,496,522,544,545,548],command_default_arg_regex:[0,23,201],command_default_class:[153,201],command_default_help_categori:[31,201],command_default_lock:201,command_default_msg_all_sess:201,command_handler_class:313,command_pars:[201,214],command_rate_warn:201,commandhandl:[32,216,231],commandmeta:217,commandnam:[23,32,65,128,274,420,429,459,461],commandset:[33,37,126,216],commandss:158,commandtest:0,commandtestmixin:494,comment:[15,16,28,48,78,124,126,144,153,172,182,184,197,201,341,474,480],commerc:181,commerci:[9,143,197],commerror:237,commit:[0,4,5,11,17,63,69,118,119,122,153,183,192,196,198,380,505,512],commmand:[107,312,313,314,315,316,326],commom:24,common:[0,1,8,10,12,17,19,20,23,24,28,32,33,41,42,44,45,46,47,48,54,55,56,58,62,65,68,70,77,85,104,108,117,119,120,122,128,129,130,132,133,135,136,137,139,140,142,143,146,147,156,163,164,169,175,178,187,195,197,201,215,222,227,234,287,296,329,353,354,398,400,410,425,448,452,469,470,479,481,491,493,496,522,529,545],commonli:[11,30,31,36,42,44,45,47,53,58,65,67,94,110,116,122,130,134,142,183,200,342,358,402,494,522],commonmark:119,commonmiddlewar:201,commonpasswordvalid:201,commun:[0,9,19,23,35,40,51,52,62,65,68,70,75,76,80,117,120,121,122,126,131,132,133,142,143,161,169,181,182,183,189,197,199,201,208,224,227,234,235,236,237,238,277,303,343,373,401,409,417,429,430,440,441,443,444,445,446,459,461,476,477,492,548],compact:[130,168,179,368],compani:[68,122],compar:[0,8,10,12,15,17,20,21,65,94,98,104,110,116,123,124,130,143,146,147,154,155,158,162,168,169,175,309,312,313,314,316,353,358,397,398,407,451,473,494,496],comparison:[7,15,30,130,131,357,397,407,480,494],compartment:162,compass:128,compat:[0,16,28,75,110,111,152,222,358,482,489,496],compatabil:0,compet:[17,68,142],compil:[7,23,64,69,119,124,132,160,191,193,195,197,217,222,228,229,232,234,277,290,296,354,473,478,480,495],compilemessag:64,complain:[6,11,67,144,169,203],complement:[0,1,45,143,358],complementari:[24,30,41,42,70],complet:[0,4,7,11,12,13,14,15,16,17,20,21,23,24,27,37,39,41,44,45,50,52,54,68,76,80,82,84,93,94,98,113,117,118,122,130,134,135,138,140,141,142,143,153,159,162,163,166,168,170,175,183,187,190,197,200,201,203,208,215,216,217,230,232,233,248,261,275,293,313,320,342,350,368,376,384,402,414,420,422,430,431,448,468,474,479,480,481,493,496,517,536],complete_task:261,complex:[7,14,16,17,21,23,30,47,58,67,69,83,89,94,105,109,116,117,119,122,125,127,128,132,134,135,136,137,140,141,142,144,146,147,163,170,175,192,200,216,236,262,279,368,370,386,407,452,468],complianc:[184,320],compliant:[157,444],complic:[54,80,91,96,111,130,155,159,164,169,170,178,179,197,234,255,384,390,468],compon:[0,1,7,10,23,35,42,49,50,51,53,60,61,62,73,116,119,131,140,143,147,148,150,155,159,162,165,175,197,201,203,205,206,222,232,237,238,239,251,296,309,318,334,341,343,353,357,400,407,408,409,410,413,420,449,476,479,483,493,496,499,525,548],component_name__field_nam:83,component_prefix:489,componenta:8,componentholdermixin:83,componentid:51,componentnam:51,componentproperti:83,componentst:51,compos:[91,192,384],composit:[83,446,469],comprehens:[7,10,33,35,48,121,141,144,199],compress:[32,425,429,433,492],compress_object:492,compris:208,compromis:[199,380],comput:[12,47,54,55,70,122,130,131,142,146,159,160,177,189,192,195,220,232,354,496,497],computation:47,comsystem:238,con:[26,117,162,181,234,255,548],concaten:[132,473],concept:[0,12,40,47,62,64,84,95,101,117,118,119,125,127,135,136,139,140,141,144,157,161,164,165,166,293,306,358,548],conceptu:[28,159],concern:[64,68,94,116,117,135,193,215,386,394],conch:[440,443,451],concis:143,conclud:[130,287,480],conclus:[125,127,139],concret:94,concurr:183,conda:124,conder:474,condit:[0,7,30,58,87,94,95,112,117,121,126,130,134,140,141,146,159,168,169,175,182,213,229,314,347,354,398,402,413,419,420,465,471,496],condition:153,condition_result:347,condition_tickdown:314,conditional_flush:487,conduct:151,conductor:174,conect:461,conf:[0,4,7,10,12,25,32,33,41,42,50,53,62,64,67,73,76,82,85,89,94,98,99,116,119,123,124,125,133,144,153,163,164,166,173,174,178,179,182,183,185,186,187,195,197,199,201,202,208,248,296,336,338,420,426,427,466,474],confer:[181,496],confid:[6,118,157],config:[0,4,5,9,12,13,30,62,123,124,187,195,197,198,201,202,358,420,422,426,427,438,511,548],config_1:13,config_2:13,config_3:13,config_color:166,configcmd:166,configdict:[440,461],configur:[0,2,4,10,13,50,94,96,119,122,132,151,153,163,164,165,173,185,192,197,199,201,208,211,214,219,274,358,380,381,422,427,438,461,463,465,466,469,536,548],configut:9,confirm:[0,23,51,75,88,116,128,182,195,199,222,255,309,444,447],conflict:[6,142,176],confus:[1,7,8,12,14,21,23,36,39,42,51,54,60,64,74,80,88,94,116,119,122,130,133,136,151,162,169,176,197,202,227,255,342,546],congratul:[125,139],conid:439,conj:[30,58,402,483],conjug:[0,30,58,205,206,402,472,483,498,501],conjunct:94,conjur:[112,315],conn:[26,234,255],conn_max_ag:201,conn_tim:[44,201],connect:[0,2,7,10,13,15,18,19,21,23,24,26,32,37,39,40,42,44,45,48,50,51,52,53,55,60,62,63,64,65,68,71,76,88,89,93,94,95,96,98,99,108,113,116,117,121,122,123,124,128,130,131,132,133,134,142,151,153,159,161,164,168,169,170,173,175,176,182,183,184,186,187,189,190,192,193,195,198,199,200,201,202,203,208,209,210,211,219,220,222,227,234,236,237,238,254,255,258,259,261,270,329,339,341,342,344,350,381,401,402,408,416,417,420,422,429,430,431,432,433,438,439,440,443,448,449,451,452,458,459,460,461,462,465,468,470,476,492,519,522,548],connection_cr:45,connection_screen:[0,25,88,99,132,200,201,205,206,239,240,253,255,265],connection_screen_modul:[88,99,201,255],connection_set:185,connection_tim:[208,402],connection_wizard:[205,206,416],connectiondon:422,connectionlost:[422,429,430,440,443,451],connectionmad:[417,429,440,443,451],connectionwizard:418,connector:[417,431,432,438,461],conquer:138,cons3:298,consecut:28,consequ:[197,216],consid:[1,7,8,14,15,16,19,20,21,23,28,30,32,33,39,41,42,44,46,47,48,50,52,54,55,58,60,62,67,70,73,85,91,95,96,103,104,110,116,118,121,122,123,130,132,135,137,140,141,143,144,157,158,161,167,168,174,178,179,180,183,193,197,199,201,208,215,216,274,293,309,316,339,341,342,353,354,358,384,402,406,407,410,425,440,443,469,471,474,475,480,481,483],consider:[0,67,76,133,142,170,172,200,407,482],consist:[0,13,14,18,23,28,31,33,40,41,51,58,60,67,73,95,98,104,116,119,125,135,138,141,147,158,163,175,201,203,208,214,229,230,236,237,251,287,297,309,343,353,391,398,407,444,449,459,468,470,476,482,494,496,505,512,547],consitut:133,consol:[0,1,6,8,9,51,57,60,64,75,119,122,124,125,133,135,136,175,183,190,191,192,193,195,197,229,232,343,354,420],conson:[104,353],constant:[68,96,201,429,494],constantli:[171,376],constitu:[216,230],constitut:14,constraint:[96,183],construct:[4,122,144,155,178,407,464,468,473,481,536],constructor:[23,80,85,110,245,296,358,431],consum:[54,85,117,201,279,296,297,298,422,496],consumable_kwarg:296,consumable_nam:296,consumable_tag:[85,296,297],consumable_tag_categori:[85,296],consume_flag:279,consume_on_fail:296,consumer_kei:[173,188],consumer_secret:[173,188],consumpt:[7,183,463],contact:[19,37,192,197,201],contain:[0,1,8,11,14,15,16,18,21,23,24,26,28,30,31,33,35,37,41,44,51,52,53,54,56,60,62,67,72,76,80,83,89,91,92,94,95,96,98,104,105,108,111,112,114,116,117,118,119,120,121,122,124,126,128,130,131,132,133,134,135,141,144,151,152,153,157,160,161,163,164,169,172,175,176,178,179,181,190,191,193,195,200,201,205,206,208,209,210,212,213,214,215,216,218,221,222,227,229,235,245,258,259,260,261,262,264,274,277,296,300,309,314,329,333,341,342,343,344,353,354,358,368,375,381,382,384,386,390,392,393,396,402,404,406,407,414,416,419,423,425,451,463,464,465,468,469,470,471,472,473,474,477,479,480,481,482,483,493,494,495,496,497,519,525,534,544,545,547],container:192,containin:201,contempl:160,content:[7,12,15,18,20,30,35,37,48,50,51,52,53,56,78,89,94,117,119,123,125,130,132,134,135,137,142,143,144,149,152,157,159,160,162,164,167,168,169,171,174,175,178,179,181,187,197,217,220,222,243,279,280,335,354,392,400,401,402,471,473,474,475,478,480,482,493,494,502,512,519,525,534],content_typ:[0,401,402],contentof:482,contents_cach:401,contents_get:[137,402],contents_set:402,contentshandl:[0,401],contenttyp:201,contest:[89,277],context:[0,53,60,94,95,121,127,164,169,176,178,245,261,441,445,529,541,542,544,545,547],context_processor:[201,529],contextu:46,contibut:[78,117],continu:[0,2,6,14,20,23,28,46,47,53,54,59,67,75,94,95,98,116,117,118,121,126,134,135,147,151,152,155,159,162,164,168,175,188,191,193,195,196,197,201,342,402,418,429,465,468,480,489,496,548],contrari:[49,94,96,110,132,142,163,232,358,471],contrast:[39,42,70,160,197,444],contrib:[2,15,16,50,58,75,76,77,78,79,80,81,82,84,85,86,87,88,89,90,91,92,93,94,95,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,119,120,121,123,125,128,131,132,135,138,139,142,145,146,147,161,162,163,180,196,201,205,206,208,210,211,232,233,462,473,474,504,505,506,508,509,510,511,512,527,528,536,542,547,548],contribcloth:290,contribrpcharact:[104,354],contribrpobject:[104,354],contribrproom:[104,354],contribu:12,contribut:[1,10,12,64,75,76,77,79,80,81,84,85,87,89,90,91,92,93,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,122,123,124,131,141,151,167,180,193,239,248,274,287,290,303,309,320,326,329,347,354,370,380,381,386,548],contributor:[0,75,180,245,358],control:[0,2,3,4,6,8,11,13,15,16,19,21,23,27,28,29,30,31,32,33,37,40,41,42,44,49,50,55,57,58,60,65,67,69,73,75,77,78,85,106,116,117,118,119,120,122,124,125,128,131,132,133,134,140,142,143,146,152,161,162,166,172,174,175,187,195,196,197,199,201,203,208,209,219,221,222,227,260,270,279,287,333,344,354,368,374,376,397,402,410,420,459,461,470,480,483,494,517,536,548],contrub:85,convei:[354,402],convenei:45,conveni:[9,19,28,31,32,33,37,39,41,42,48,53,54,62,67,69,74,80,98,116,119,121,124,125,133,134,135,137,152,161,164,178,182,198,201,203,208,222,232,245,282,284,296,303,402,452,463,474,475,480,481,483,489,492,493],convent:[21,45,67,96,130,176,201],convention:[217,402,470],convers:[19,28,30,36,85,109,117,174,353,370,448,449,473,496],convert:[0,11,14,19,20,36,41,60,62,65,68,70,86,91,116,118,122,125,130,133,144,157,159,163,166,168,176,181,190,193,196,199,201,210,220,251,341,347,384,390,397,400,406,407,409,411,429,431,440,443,444,461,465,473,477,480,481,482,483,484,492,495,496,499,519],convert_linebreak:495,convert_url:495,convinc:[28,197],cooki:201,cool:[1,80,94,124,140,149,152,181,222,227],cool_gui:39,cooldown:[0,147,155,165,205,206,239,285,548],cooldownhandl:[84,293],coord:[157,339,341,342,344],coordi:157,coordin:[0,51,98,115,116,117,159,165,316,333,335,341,342,343,344,548],coordx:157,coordz:157,cope:315,copi:[0,1,4,7,11,12,15,16,23,26,27,28,41,44,49,50,51,53,73,75,89,96,117,122,123,126,128,131,132,151,153,163,166,170,175,178,187,190,192,196,197,200,201,221,222,261,290,312,313,314,315,316,376,400,402,409,420,429,466,473,544,545],copy_object:[400,402],copy_script:409,copy_word_cas:496,copyright:[180,197],core:[0,9,12,37,48,57,64,68,86,97,117,118,131,136,141,159,180,200,201,208,211,232,238,239,297,303,394,401,402,410,416,427,437,444,458,468,470,471,474,481,488,494,536,547,548],corner:[18,113,115,116,157,161,181,333,341,482],corner_bottom_left_char:482,corner_bottom_right_char:482,corner_char:482,corner_top_left_char:482,corner_top_right_char:482,corpu:[104,353],correct:[0,16,20,21,23,27,30,53,54,60,70,113,118,119,133,136,143,152,156,169,174,175,176,183,213,219,222,237,279,309,320,341,354,364,398,435,438,440,446,460,473,494,496],correctli:[0,4,6,20,23,27,28,46,47,116,119,123,124,132,155,159,163,168,169,174,175,176,182,189,197,201,203,208,211,216,219,296,411,420,429,465,492,519],correl:407,correspond:[23,33,44,53,73,98,103,116,128,168,201,251,309,390,468,505,512,517,536],correspondingli:11,corrupt:160,cosi:170,cosin:496,cosmet:[0,333],cost:[115,116,154,168,197,315,333,354],cottag:[59,170],couchdb:75,could:[0,4,6,7,9,10,11,13,14,15,16,17,19,21,23,28,30,31,33,34,35,36,37,39,41,42,46,47,48,53,54,55,57,58,60,62,65,67,68,69,70,72,73,74,77,80,85,89,94,95,96,105,108,110,111,116,117,119,121,122,123,124,125,126,128,130,132,133,134,135,136,140,141,142,143,144,146,147,149,151,152,153,154,155,156,157,158,159,161,162,163,164,166,167,168,169,170,171,172,173,174,175,176,177,178,181,186,187,188,189,193,195,197,198,201,208,216,222,229,237,238,245,264,279,280,287,296,329,333,342,344,347,350,354,357,358,368,376,386,390,398,402,413,425,444,449,465,470,471,473,474,478,482,483,484,487,491,496,500],couldn:[57,74,122,126,135,157,158,169,176,179,386],count:[19,49,52,112,122,130,133,135,147,173,210,215,290,293,314,390,402,434,438,451,455,461,463,469,473,480,483,489,500],count_loggedin:438,count_queri:455,countdown:[42,128,155],counter:[11,42,44,80,141,147,155,164,168,205,209,239,345,356,357,376,438,451,452,459,480],countermeasur:201,counterpart:[0,15,60,141,425,461,477],countertrait:358,countri:220,coupl:[12,39,80,108,164,171,192,236,329],cours:[1,5,7,9,17,23,47,53,55,69,74,76,80,85,94,95,96,113,116,117,119,122,123,124,133,134,135,136,138,140,152,161,169,175,177,180,190,201,313,316,373],court:113,courtesi:[0,55],cousin:[72,94,117,169],cover:[1,12,15,16,31,53,61,62,66,67,81,94,106,116,118,124,130,131,132,134,135,141,142,143,155,161,173,181,182,183,195,197,202,279,290,297,320,342,368,376,402,496],coverag:[0,10],coveral:10,cpanel:197,cpattr:[26,126,222],cprofil:2,cpu:[7,55,197,199,232],cpython:7,crack:67,craft:[0,33,58,91,103,125,139,140,155,170,205,206,239,285,384,548],craft_recipe_modul:[85,296],craft_recipes_modul:296,craft_result:296,crafted_result:296,crafter:[296,297,298],crafting_consumable_err_msg:296,crafting_materi:[85,296,297],crafting_recipe_modul:85,crafting_result:296,crafting_skil:85,crafting_tool:[85,296],crafting_tool_err_msg:296,craftingcmdset:296,craftingerror:296,craftingrecip:[85,296,297,298],craftingrecipebas:[85,296],craftingvalidationerror:[85,296],craftrecip:296,cram:138,crank:47,crash:[1,135,140,170,181,199,201,424,468],crate:[36,128],crawl:199,crawler:[201,234,434],cre:[26,234,255],creat:[0,1,2,5,6,7,9,10,12,14,15,16,17,19,21,24,25,26,27,28,30,31,33,35,36,39,41,42,44,45,46,49,50,51,53,56,57,61,62,63,69,72,73,74,75,77,78,80,81,83,85,89,90,91,95,98,100,101,102,103,104,105,106,109,110,111,113,115,116,117,118,119,121,122,123,124,125,127,130,132,134,136,137,138,139,140,141,143,144,145,146,147,150,151,153,155,157,158,159,160,161,162,163,166,168,169,171,172,173,177,179,180,181,183,185,186,188,189,190,191,193,194,197,199,200,201,202,205,206,208,209,210,211,214,215,216,217,219,222,227,228,229,230,231,232,233,234,236,237,238,243,245,246,249,251,255,260,261,262,264,270,274,277,278,279,280,281,282,284,287,290,296,297,298,300,303,306,309,312,313,314,315,320,326,333,341,342,343,344,347,353,354,358,363,368,370,373,374,375,376,381,384,386,390,392,393,394,398,400,401,402,404,405,406,407,409,410,413,414,415,417,420,424,425,430,432,433,438,440,441,445,452,458,460,461,463,465,468,469,470,471,472,473,474,475,478,479,480,482,483,484,489,494,496,504,509,516,521,522,537,540,542,544,545,546,547],creataion:339,create_:[0,48],create_account:[20,45,48,120,205,210,476,494],create_attribut:468,create_cal:208,create_channel:[19,20,120,205,227,236,237,476],create_char:494,create_charact:[208,402],create_default_channel:458,create_delai:414,create_evscaperoom_object:284,create_exit:[222,326],create_exit_cmdset:402,create_fantasy_word:284,create_forward_many_to_many_manag:[211,238,394,401,410,468,470,471,488],create_game_directori:420,create_grid:159,create_help:393,create_help_entri:[20,31,120,205,476],create_kwarg:407,create_match:214,create_messag:[20,35,120,205,237,476],create_obj:494,create_object:[10,14,15,20,33,37,48,78,85,98,120,125,129,168,170,175,178,205,282,284,296,368,400,402,407,424,474,476],create_prototyp:[406,407],create_room:494,create_script:[20,42,48,94,120,147,160,205,409,413,474,476,494],create_secret_kei:420,create_settings_fil:420,create_superus:420,create_tag:469,create_wild:[115,333],createbucket:75,created_on:258,createobj:277,creater:120,createview:546,creation:[0,8,12,14,16,28,33,37,44,48,67,74,76,98,116,119,125,128,129,131,133,139,140,142,145,152,162,166,170,175,178,181,190,201,205,208,211,222,227,229,236,281,296,309,312,313,314,315,316,326,335,341,344,354,358,375,376,381,394,400,401,402,407,410,415,453,470,476,478,479,480,482,504,505,509,512,536,540,542,547,548],creation_:476,creation_throttle_limit:201,creation_throttle_timeout:201,creativ:[69,142],creator:[0,28,33,74,120,143,170,175,181,229,236,312,402,482],creatur:202,cred:[12,440],credenti:[12,52,53,75,197,199,208,440],credentialinterfac:440,credit:[12,118,125,127,135,197,199,495,496],creset:12,crew:130,criteria:[28,105,117,130,237,260,386,406,469,493],criterion:[12,130,133,134,138,208,287,354,393,400,402,409,412,493,496],critic:[1,8,11,21,42,44,57,60,89,187,195,398,419,420,489],critici:470,cron:187,crontab:187,crop:[30,60,162,341,479,482,483,496],crop_str:482,cross:[113,116,170,297,339,342,376,482],crossbario:448,crossbow:155,crossmaplink:[116,342],crossov:0,crossroad:170,crowd:[140,199],crt:[182,187],crucial:[47,169],crucibl:297,crucible_steel:297,cruciblesteelrecip:297,crud:[521,522],crude:[96,296,297],crumblingwal:375,crumblingwall_cmdset:375,crush:152,crypt:138,cryptocurr:199,cscore:175,csessid:[201,438,448,449,461],csession:[448,449],csrf:201,csrf_token:178,csrfviewmiddlewar:201,css:[0,18,50,51,53,71,73,121,132,151,201,495,525],cssclass:51,ctrl:[0,7,53,125,135,187,190,192,197,203,451],cuddli:[133,136],culpa:29,cumbersom:[11,28,174,390],cumul:452,cup:118,cupidatat:29,cur_valu:350,cure:[112,314,315],cure_condit:314,curi:159,curiou:69,curl:195,curli:[82,248],curly_color_ansi_bright_bg_extra_map:[82,248],curly_color_ansi_bright_bgs_extra_map:[82,248],curly_color_ansi_extra_map:[82,248],curly_color_xterm256_extra_bg:[82,248],curly_color_xterm256_extra_fg:[82,248],curly_color_xterm256_extra_gbg:[82,248],curly_color_xterm256_extra_gfg:[82,248],curr_sess:461,curr_tim:320,currenc:[168,173],current:[0,7,9,10,11,12,13,15,16,19,20,21,23,26,27,28,30,32,37,39,42,43,44,46,47,51,52,53,55,57,58,60,67,75,77,80,83,90,91,93,94,95,96,98,105,110,112,116,117,122,124,126,128,130,131,132,133,134,136,141,144,147,152,153,154,155,159,162,168,173,174,175,178,181,187,190,192,196,201,208,210,211,213,214,216,217,219,220,222,227,228,229,231,232,234,245,261,264,270,277,279,282,287,290,296,306,312,313,314,315,316,320,326,329,333,335,342,344,350,354,357,358,366,373,375,376,384,386,390,393,400,401,402,407,410,414,415,420,425,430,436,437,440,441,444,452,459,461,463,469,470,478,480,482,483,484,489,490,493,496,504,519,541,542,544,545],current_choic:245,current_cmdset:222,current_coordin:333,current_kei:[405,406],current_tim:451,current_us:178,current_weath:42,current_weight:342,currentroom:174,curriculum:181,curs:[6,141],curtain:31,curv:[121,160],curx:159,cushion:144,custom:[0,1,2,8,13,14,16,17,18,20,21,23,24,25,26,32,36,37,41,46,48,52,55,56,58,61,63,65,67,74,75,76,81,84,91,92,94,96,98,104,110,112,113,115,116,117,120,121,122,125,127,128,130,132,134,138,140,141,142,144,146,147,151,152,153,156,159,160,162,164,168,171,172,174,175,176,177,178,180,181,186,188,192,197,200,201,203,208,209,210,211,213,215,216,217,222,227,228,229,234,236,250,251,252,261,264,277,278,279,280,282,287,290,293,296,300,309,320,333,337,341,342,353,354,358,368,373,375,376,380,381,384,392,393,400,402,404,405,406,407,409,415,420,424,426,429,451,460,470,475,478,480,481,482,487,490,491,494,495,496,503,504,506,511,521,522,527,528,545,548],custom_add:261,custom_cal:[261,264],custom_evennia_launcher_command:420,custom_gametim:[0,86,94,163,205,206,239,240,548],custom_helpstr:279,custom_kei:406,custom_pattern:[123,149,178,179],customis:[205,206,239,318,331],customiz:[18,80,93,104,117,144,245,350,354,368,384],customlog:182,customt:494,cut:[19,27,62,85,121,128,142,159,169,170,175,201,341,407],cute:151,cutoff:496,cvcc:353,cvccv:353,cvccvcv:353,cvcvcc:353,cvcvccc:353,cvcvccvv:353,cvcvcvcvv:353,cvcvvcvvcc:[104,353],cvv:353,cvvc:[104,353],cwho:[102,126,270],cyan:[60,176],cyberpunk:[19,137],cyberspac:181,cycl:[0,15,16,140,153,160,163,177,312],cycle_logfil:0,cyril:17,daemon:[0,7,76,182,187,192,199,203,437,465],daffodil:137,dai:[0,20,69,86,90,94,117,125,139,140,141,160,163,173,176,177,187,192,199,210,251,297,320,484,489,496,497],daili:36,dailylogfil:489,dali:[104,353],dalnet:227,dalton:130,dam:160,damag:[0,16,83,112,138,141,142,146,147,152,154,168,199,297,312,313,314,315,316,374,375],damage_rang:315,damage_taken:160,damage_valu:[312,313,314],damascu:297,danc:116,dandi:74,danger:[8,15,21,44,94,119,167,201,215],dare:[23,126,499],dark:[15,16,18,21,31,60,110,116,135,138,141,143,146,170,176,181,216,320,358,368,376,410,473,474],darkcmdset:376,darker:[60,176],darkgrai:176,darkroom:376,darkroom_cmdset:376,darkstat:376,dash:[94,105,119,386,390],dashcount:390,dashlin:30,data:[0,2,3,7,8,11,13,15,17,19,20,24,30,31,36,41,42,46,48,49,50,51,53,54,65,67,68,70,73,76,80,84,85,91,93,110,116,117,122,132,133,136,140,143,153,160,161,162,178,179,183,187,191,192,197,200,201,208,209,210,217,222,229,232,260,261,293,296,315,341,342,343,350,354,357,358,380,381,384,400,401,402,404,406,408,413,415,417,418,422,426,427,429,430,431,432,433,438,439,440,441,443,444,445,447,448,449,451,453,458,459,460,461,463,467,468,469,470,471,473,474,475,476,477,479,480,481,482,483,486,489,490,491,492,496,505,506,508,510,512,516,519,522,527,536,540,542,544,545,547],data_default_valu:358,data_in:[62,65,381,429,431,432,438,439,443,448,449,459,460,461],data_out:[62,381,438,440,443,444,449,459,460,461],data_to_port:[417,429],data_to_serv:430,databa:420,databas:[0,2,3,4,5,7,10,12,14,15,17,18,19,20,21,32,33,34,35,36,37,42,44,45,46,47,48,49,50,52,53,55,57,61,73,74,75,76,90,94,96,115,116,117,119,121,122,123,125,126,127,129,131,132,134,135,137,140,141,142,144,147,151,152,154,155,157,160,161,162,169,170,175,178,179,183,190,192,194,200,201,203,208,210,211,215,216,222,229,232,236,237,238,260,261,315,320,343,344,354,376,391,392,393,394,397,400,401,402,406,408,409,410,411,414,415,420,424,426,437,451,458,467,468,469,470,471,474,476,477,485,487,492,493,496,502,506,509,510,512,522,548],dataclass:483,datareceiv:[422,429,443,451],dataset:406,datastor:67,date:[11,12,14,31,55,64,67,75,159,163,176,178,183,187,191,200,201,216,220,232,380,484,489,497],date_appli:178,date_cr:[48,208,211,238,394,410,468,470],date_join:[211,504],date_s:35,datetim:[48,163,178,201,251,321,468,484,489,490,496,497],datetime_format:[201,496],datetimefield:[67,178,211,238,394,401,410,468,470,496,504],davewiththenicehat:[0,544],david:[75,181],dawn:128,day_rot:489,daylight:141,db3:[7,11,12,132,170,183,190,201],db3_backup:7,db_:[34,48,67,130,354,400,402,411,425,493],db_account:[281,290,400,401,410,504,509],db_account__db_kei:509,db_account__id:516,db_account__usernam:516,db_account_id:[401,410],db_account_subscript:[238,506],db_attribut:[45,84,211,238,293,401,410,470,504,506,509],db_attribute_categori:358,db_attribute_kei:358,db_attributes__db_kei:130,db_attributes__db_value__gt:130,db_attrtyp:[468,519],db_attryp:36,db_categori:[67,130,468,471,512,519],db_category__iequ:67,db_cmdset_storag:[211,290,401,504,509],db_data:[471,512,519],db_date_cr:[67,211,238,281,290,394,401,410,468,470,504,506,508,509,510,519],db_desc:[281,410,516],db_destin:[130,290,401,504,509],db_destination__isnul:173,db_destination_id:401,db_entrytext:[394,508,519],db_header:[238,506],db_help_categori:[394,508,519],db_help_dict:229,db_help_top:544,db_hide_from_account:[238,506],db_hide_from_object:[238,506],db_hide_from_receiv:238,db_hide_from_send:238,db_home:[290,401,504,509,519],db_home__db_kei:516,db_home__id:516,db_home_id:401,db_index:67,db_interv:[281,410,510,516,519],db_is_act:[281,410,516,519],db_is_bot:[211,504,516],db_is_connect:[211,504,516],db_kei:[34,48,49,67,116,129,130,133,164,211,238,260,281,290,394,401,410,411,427,468,470,471,504,506,508,509,510,511,512,516,519,536],db_key__contain:48,db_key__exact:130,db_key__icontain:[67,130],db_key__iexact:130,db_key__in:130,db_key__startswith:48,db_locat:[34,49,130,133,290,401,504,509,519],db_location__db_kei:[509,516],db_location__db_tags__db_key__iexact:130,db_location__id:516,db_location__isnul:173,db_location_id:401,db_lock_storag:[211,238,281,290,394,401,410,468,470,504,506,508,509,510],db_messag:[238,506],db_model:[468,471,512],db_obj:[281,410,477,510],db_obj__db_kei:516,db_obj__id:516,db_obj_id:410,db_object_subscript:[238,506],db_permiss:67,db_persist:[281,410,510,516,519],db_properti:425,db_protototyp:406,db_receiver_extern:[0,238,506],db_receivers_account:[238,506],db_receivers_accounts__db_kei:506,db_receivers_object:[238,506],db_receivers_objects__db_kei:506,db_receivers_script:[238,506],db_receivers_scripts__db_kei:506,db_repeat:[281,410,510,519],db_sender_account:[238,506],db_sender_accounts__db_kei:506,db_sender_extern:[238,506],db_sender_object:[238,506],db_sender_objects__db_kei:506,db_sender_script:[238,506],db_sender_scripts__db_kei:506,db_sessid:[290,400,401,504,509],db_start_delai:[281,410,510,519],db_strvalu:468,db_tag:[130,211,238,394,401,410,470,471,504,506,508,509],db_tags__db_categori:[130,157,516],db_tags__db_kei:[130,157,506,516],db_tags__db_key__iexact:130,db_tags__db_key__in:157,db_tagtyp:[471,512,516,519],db_text:67,db_typeclass_path:[67,173,211,238,281,290,401,410,470,496,504,506,509,510,516,519],db_valu:[34,36,130,427,468,511,519,522],dbef:[222,409,493],dbentri:229,dbfield:83,dbhandler:536,dbholder:468,dbid:[48,209,227,470],dbid_to_obj:496,dbmodel:469,dbobj:[14,468],dbobject:[14,469,470],dbprototyp:[222,406],dbref:[0,11,15,30,33,35,41,48,55,63,91,94,98,116,125,128,133,138,147,162,170,174,201,208,210,211,220,222,227,237,238,309,326,333,335,344,354,376,384,397,400,401,402,407,409,410,412,469,470,476,483,493,496],dbref_search:[210,400,409,469],dbref_to_obj:496,dbrefmax:222,dbrefmin:222,dbsafe_decod:492,dbsafe_encod:492,dbserial:[0,8,205,206,411,472],dbshell:[11,67,183,203],dbstore:357,dbunseri:477,ddesc:160,deactiv:[90,122,166,171,195,196,201,227,320,374,480],dead:[46,142,358,374,375,458,461,487],deadli:138,deal:[17,19,24,28,31,44,46,53,54,55,70,76,77,80,91,122,141,146,147,164,169,176,179,199,208,245,251,287,312,313,314,315,316,341,342,384,401,402,459,470,473,490,547],dealt:[230,314,315],dealth:314,death:[28,125,139,140,146,173],death_msg:374,death_pac:374,debat:169,debian:[12,182,183,187,193],debuff:[110,358],debug:[0,2,9,16,20,24,28,32,42,53,73,76,78,94,117,134,135,169,189,201,202,213,217,221,232,277,278,373,384,404,420,425,431,432,443,465,474,480,489,496,548],debugg:[0,2,6,17,203,205],dec:[2,64,75],decemb:197,decend:213,decent:[7,353],decic:[104,353],decid:[16,17,23,28,30,44,46,67,68,85,94,95,112,117,123,125,139,140,146,147,153,158,162,164,168,176,197,199,213,287,312,398,481],decis:[47,89,142,146,519],declar:[0,60,83,492],declared_field:[504,505,506,508,509,510,512,536],declared_filt:516,declin:[28,77,287],decod:[17,444,473,496,544],decode_gmcp:444,decode_msdp:444,decoded_text:496,decompos:178,decompress:[429,492],deconstruct:[138,233,252,283,298,317,339,355,357,364,446,520],decor:[0,12,23,24,45,61,85,94,95,96,116,155,201,211,284,401,402,409,410,417,429,430,470,476,480,481,494,496],decoupl:[0,124,406],decreas:[141,315,316,376,478],decrease_ind:478,dedent:[0,27,31,496],dedic:[39,94,135,136,146,187,197],deduc:478,deduce_ind:478,deduct:[146,168,312,313,314],deem:[12,72,118,161,239,540,542,547],deep:[31,131,181,548],deeper:[24,75,111,138,165,390],deepest:222,deepli:[14,94,117],deepsiz:496,def:[6,7,10,14,20,21,23,27,28,30,32,33,34,37,39,41,42,45,48,54,62,77,80,83,84,85,87,90,92,94,98,102,104,107,108,110,114,115,119,123,126,133,134,135,136,137,144,146,147,149,152,153,154,155,156,157,158,159,160,161,162,163,164,166,167,168,169,170,171,172,173,174,175,177,178,179,181,188,245,270,274,279,293,320,326,329,333,347,354,358,405,449,462,478,480,481,483,494,496],def_down_mod:314,defafultobject:133,defalt_cmdset:188,defauklt:0,default_access:[14,400,409,468,476],default_authentication_class:201,default_auto_field:201,default_categori:393,default_channel:[0,201],default_charact:[92,300],default_client_width:30,default_cmd:[8,19,77,80,81,87,90,92,94,97,102,104,107,108,116,120,126,134,147,152,153,154,155,156,158,161,162,163,166,205,245,254,270,290,303,320,326,329,347,354],default_cmdset:[25,44,77,80,81,87,89,90,91,92,94,98,101,102,104,107,108,111,132,133,134,144,153,156,158,161,162,163,166,175,201,216,245,270,290,297,306,312,313,314,315,316,320,326,329,347,354,384,390],default_command:[132,153],default_confirm:[222,309],default_create_permiss:[49,201],default_destroy_lock:201,default_error_messag:492,default_filter_backend:201,default_help_categori:[31,201,229,392,544],default_hom:[41,201],default_in:51,default_kei:[110,358],default_kwarg:[30,483],default_list_permiss:[49,201],default_out:51,default_pagination_class:201,default_pass:[210,476],default_permission_class:201,default_screen_width:23,default_set:[10,132,149],default_sit:527,default_transaction_isol:183,default_unload:51,default_update_lock:201,default_view_lock:201,default_weight:[116,342],default_xyz_path_interrupt_msg:335,defaultaccount:[0,13,48,120,122,133,134,201,205,208,209,223,402,494,519,536,540],defaultchannel:[0,19,48,120,133,201,205,227,236,541],defaultcharact:[14,37,48,67,80,83,92,94,110,120,133,134,144,146,153,161,162,163,166,175,201,205,208,224,245,290,300,312,313,314,315,316,354,357,358,402,468,494,536,542],defaultd:0,defaultdict:411,defaultexit:[37,48,94,116,120,133,168,201,205,326,329,333,344,375,376,402,494],defaultguest:[120,205,208],defaultmod:489,defaultobject:[0,1,2,14,30,37,48,67,94,110,119,120,122,129,131,133,136,137,144,167,168,170,171,174,201,205,208,279,290,313,316,354,358,366,368,370,375,402,470,494,519,536,547],defaultpath:496,defaultplay:201,defaultroom:[37,48,94,116,120,133,157,159,160,168,177,201,205,280,320,333,344,354,376,402,494],defaultrout:[518,521],defaultscript:[0,42,48,120,133,147,160,173,174,201,205,209,251,261,281,287,309,312,333,343,353,363,386,406,412,413,453,484,494],defaultsess:[134,225],defaulttyp:465,defaultunloggedin:[134,226],defeat:[89,125,138,139,140,146,147,312,374],defeat_msg:374,defeat_msg_room:374,defend:[28,138,147,312,313,314,316,375,402],defens:[0,112,141,147,312,313,314,316],defense_valu:[312,313,314,316],defer:[0,20,23,54,155,178,211,213,232,238,320,329,394,401,402,410,414,417,427,429,430,461,465,468,470,471,488,489,504],deferredlist:465,defin:[0,4,6,7,8,9,10,13,14,15,16,20,24,25,27,31,32,37,39,41,47,48,49,51,53,54,55,59,60,61,62,65,68,70,72,73,75,76,80,81,82,83,85,91,94,95,96,98,104,110,111,120,121,122,123,126,128,130,132,134,135,136,140,142,144,146,151,152,153,156,158,159,160,161,162,163,164,166,168,169,170,171,174,175,176,178,180,200,201,205,207,211,213,215,216,217,219,222,228,229,230,232,233,234,236,237,238,243,245,248,251,254,260,261,264,277,283,290,296,309,314,315,320,341,347,353,354,358,363,370,375,376,384,386,390,391,392,393,394,396,397,398,399,400,401,402,406,407,409,410,413,415,416,417,420,427,430,451,452,459,460,461,464,467,468,469,470,471,473,474,475,478,480,483,484,488,491,493,496,500,506,508,509,519,522,529,536,544,545],define_charact:28,definin:135,definit:[0,6,13,16,23,24,31,36,37,39,41,47,54,55,59,68,84,94,96,116,121,132,144,157,164,167,201,215,217,222,230,237,258,270,293,309,375,396,398,401,406,407,412,474,476,480,483,492],deflist:465,degre:[31,125],deindent:496,del:[14,26,39,55,94,106,110,138,144,147,155,162,220,222,306,309,320,357,358,470],del_callback:[259,261],del_detail:320,del_pid:420,delaccount:0,delai:[0,23,26,61,84,91,96,106,108,117,154,173,201,232,251,261,293,329,368,375,384,414,415,432,438,461,475,496],delaliaschan:270,delay_cmd_loginstart:201,delayed_import:461,delchanalia:270,delcom:[102,126,162,270],deleg:[211,238,394,401,410,468,470,471,488],delet:[0,10,11,12,13,14,15,19,21,26,27,28,30,33,36,37,42,44,45,46,50,55,63,78,80,85,94,110,116,123,132,133,134,138,144,147,170,183,190,192,195,196,198,201,208,216,219,220,221,222,227,228,229,232,236,238,258,259,261,262,270,280,284,293,296,303,306,309,320,326,343,357,358,375,376,394,398,402,406,409,411,412,413,414,415,426,438,459,468,470,473,474,480,487,504,505,512,517,521,537,542,546,547],delete_attribut:468,delete_default:[21,216],delete_dupl:284,delete_prototyp:406,delete_script:409,deleteobject:75,deletet:320,deleteview:546,deliber:[6,72,141,496],delic:[81,290],delimit:[64,169,230,474],deliv:[197,303,354],delpart:309,delresult:309,deltatim:496,delux:197,demand:[42,47,90,140,142,146,156,162,171,197,201,208,236,320,358,402,462,475],demo:[53,80,89,117,121,125,127,138,139,145,148,150,181,373,480],democommandsetcomm:373,democommandsethelp:373,democommandsetroom:373,demon:41,demonin:496,demonstr:[80,91,96,123,144,176,178,245,314,380,384],demowiki:123,deni:[19,182,199,260,264],denot:[10,160,179,341,474],denounc:479,dep:489,depart:[94,159],depend:[0,2,7,8,9,14,16,17,19,20,21,23,28,30,32,35,42,44,47,48,51,54,55,56,60,61,62,64,65,68,80,85,89,90,94,95,96,104,106,110,115,116,118,121,122,123,132,133,134,138,140,142,144,146,147,159,161,162,164,168,170,172,175,178,179,183,189,191,192,193,197,199,200,201,207,213,215,217,219,232,245,259,320,333,341,342,344,347,353,358,368,392,398,402,406,415,420,440,443,449,451,461,470,471,478,480,481,483,496,500,548],depict:280,deplet:[110,314,358],deploi:[3,5,95,119,194,197,199],deploy:[4,9,76,119,181,192,197],deprec:[0,20,28,205,206,407,416,473,480,489,496],deprecationwarn:419,depth:[4,18,31,56,116,138,229,390,395,407],dequ:[14,463],deriv:[10,48,69,160,183,187,192,193,274,473,497],desc1:28,desc2:28,desc3:28,desc:[0,16,19,26,32,33,34,37,41,42,50,80,85,90,94,98,101,102,115,116,117,126,128,130,133,141,147,152,161,162,164,167,168,170,173,179,201,216,219,222,227,229,233,237,239,245,270,279,290,296,297,306,309,314,315,320,326,333,345,356,368,390,402,409,410,418,474,476,478,479,480,536,542,547],desc_add_lamp_broken:368,desc_al:374,desc_closed_lid:368,desc_dead:374,desc_open_lid:368,descend:[130,536],describ:[5,12,14,15,16,19,21,23,28,33,39,40,41,48,50,51,53,60,64,67,68,70,73,80,89,94,95,110,116,118,119,121,122,124,126,128,132,133,135,136,141,144,147,152,156,162,163,164,168,170,178,181,183,188,191,193,195,197,201,203,215,222,226,228,238,251,270,278,290,296,297,315,320,341,342,354,358,368,386,402,407,413,417,438,440,443,453,480,495,496,509],descripion:374,descript:[1,10,16,17,19,28,32,41,46,50,53,58,72,73,77,80,81,94,95,96,98,100,101,104,110,111,115,116,117,119,121,125,128,130,131,139,140,141,152,157,159,161,162,168,170,176,178,179,185,192,197,201,219,222,227,228,236,237,245,270,274,278,287,290,306,320,321,326,333,341,344,354,357,358,366,368,373,374,375,376,386,390,402,409,410,474,476,480,490,491,504,509,518,522],description_str:170,descriptor:468,descvalidateerror:306,deseri:[0,8,14,490,519],deserunt:29,design:[1,16,23,37,41,46,53,56,69,72,80,85,113,117,121,130,132,138,140,141,142,143,144,157,161,169,170,171,172,178,181,183,216,222,245,260,354,375,380,402,474,490,496],desir:[20,46,47,51,60,69,82,84,116,123,154,155,159,161,162,169,174,175,178,201,222,236,237,248,284,293,353,398,420,465,468,476,482,497],desired_effect:297,desired_perm:398,desk:144,desktop:[17,56],despit:[14,15,44,122,161,166,181,195,376],desrib:201,dest:[274,402],destin:[0,23,32,37,41,50,80,94,96,98,108,116,130,137,144,153,159,168,169,170,174,222,312,326,329,335,336,341,342,344,375,376,380,400,401,402,407,476,522,542],destinations_set:401,destroi:[19,26,37,85,96,102,103,106,126,128,147,199,208,209,222,227,270,309,314,402],destroy:[107,117,326],destroy_channel:227,destroy_compon:279,destroy_lock:517,destruct:[21,215],detach:9,detail:[0,1,7,11,12,13,14,17,19,23,28,31,33,37,41,42,44,48,50,55,57,60,68,72,73,80,85,94,95,104,117,118,119,122,124,128,132,133,134,135,138,140,141,143,147,151,156,162,169,170,172,179,183,193,197,201,205,206,216,217,222,236,239,245,279,296,309,313,318,320,321,331,341,354,358,376,386,392,394,395,407,414,422,423,459,461,470,473,478,483,496,499,504,509,521,522,537,544,546,547],detail_color:222,detail_desc:321,detailkei:[320,376],detailview:[544,546],detect:[3,19,21,23,37,44,68,119,125,139,140,144,166,172,199,201,214,217,432,483,521],determ:469,determin:[0,7,13,15,17,19,20,21,23,27,28,29,31,33,36,41,42,51,65,85,94,98,104,116,123,128,134,144,146,147,151,155,157,159,167,168,175,183,195,201,203,208,215,216,217,219,227,229,230,236,287,312,313,314,315,316,329,342,353,354,375,390,392,394,398,402,406,444,468,469,470,473,478,481,483,489,494,496,500,504,506,509,516,517,525],determinist:342,detour:[65,132,136,152,461],dev:[0,31,118,121,122,135,143,161,181,183,187,188,193,195,197,198,201,548],devel:[0,132],develop:[0,1,3,4,6,7,8,9,10,12,14,17,19,20,23,30,31,39,41,49,51,53,56,57,58,64,67,68,69,73,78,94,112,117,118,119,121,122,124,128,129,131,132,133,134,135,136,140,142,143,149,151,153,160,162,169,170,176,178,183,185,188,189,190,193,195,196,197,201,202,217,220,221,227,228,229,232,236,258,259,264,277,380,392,394,402,407,466,470,471,474,480,548],deviat:143,devoid:473,dex:[14,28,133,135,141,162,479],dext:135,dexter:[141,312],diagnos:[8,156],diagon:[116,339],diagram:48,dialog:51,dialogu:[94,96,141],dice:[28,85,125,136,139,142,146,147,169,205,206,239,345,548],dicecmdset:347,dicenum:347,dicetyp:347,dict:[0,10,14,15,21,28,30,31,41,42,45,49,53,68,76,85,86,95,96,98,104,110,116,120,126,153,201,208,209,215,217,222,229,236,251,258,261,264,281,290,296,314,316,320,341,342,343,353,354,358,366,376,380,381,384,390,392,395,401,402,404,405,406,407,413,415,417,418,420,425,429,430,431,433,438,440,443,448,449,460,461,463,469,474,475,477,479,480,481,483,491,494,496,536,541,544,545,547],dict_of_kwarg_convert:30,dictat:[21,163,171,201],dictionari:[8,14,15,21,33,41,54,76,86,90,91,94,96,98,104,117,121,146,147,153,159,160,163,164,179,220,222,251,258,261,264,290,314,315,320,333,353,354,376,380,381,382,384,390,398,407,414,425,438,447,459,460,461,463,469,473,475,479,480,487,490,491,492,496,536,545,547],dicument:118,did:[12,13,64,80,122,126,128,133,134,135,144,152,155,161,169,170,175,200,201,208,287,402,414,471,492,496,501],did_declin:287,didn:[6,12,28,33,74,80,116,119,126,128,129,133,134,135,136,138,151,158,159,162,169,174,176,178,189,192,196,200,343],die:[9,138,142,146,169,171,347,353,461],dies:[142,374],diff:[12,191,347,407],differ:[0,6,7,9,10,13,14,15,16,17,20,21,23,24,27,28,30,31,33,34,36,41,42,44,45,46,47,51,56,57,60,61,62,63,65,68,70,71,72,74,78,80,84,85,89,94,95,96,97,104,110,112,115,116,117,118,119,121,122,124,125,126,128,129,130,132,133,134,135,136,139,140,143,144,146,147,151,152,153,157,159,161,162,163,164,165,167,169,170,172,173,174,176,178,181,182,184,185,192,196,199,201,203,205,208,213,215,216,219,222,229,231,232,234,236,245,251,255,261,262,274,278,279,282,293,296,303,312,314,315,316,329,333,339,341,342,344,347,354,358,386,390,400,402,404,407,409,410,415,418,422,444,449,451,468,470,474,476,480,483,489,492,496,500,501,504,505,512,516,521,522,545,547,548],differenti:[104,111,112,117,132,133,141,142,160,161,162,201,290,354,390,402,483,496,500],differnt:279,difficuli:14,difficult:[7,123,142,157,178,199,315,316],difficulti:[85,178],dig:[7,21,23,26,37,41,62,74,78,96,107,116,126,128,132,134,138,161,162,174,175,222,277,326,452],digit:[30,55,60,105,197,386,464,473,483,489],digitalocean:[187,197],dijkstra:[116,341,342],diku:[94,117,121,122,165,548],dikumud:72,dime:69,dimens:[121,159],dimension:[116,162],dimenst:136,diminish:60,dimli:170,dinner:[95,142],dip:135,dir:[0,2,4,5,11,12,37,42,53,64,76,89,119,122,124,127,133,135,136,152,162,179,181,183,185,187,191,192,193,196,197,201,489,496,525],direcetli:483,direcotri:[202,548],direct:[11,21,28,32,41,51,54,55,58,68,80,94,96,98,116,118,128,147,149,158,159,162,164,170,172,174,182,192,197,222,260,279,333,335,339,341,342,343,344,381,398,400,413,420,480,482,483,489,493,494,496,548],direction_alias:[116,342],direction_nam:342,direction_spawn_default:342,directli:[0,6,8,11,12,13,14,15,16,20,23,27,28,31,33,35,37,41,42,48,50,51,52,53,60,62,68,75,77,83,85,94,95,104,110,115,116,117,118,119,121,122,126,128,129,130,131,132,133,135,136,137,140,147,152,155,156,158,160,162,163,170,172,175,182,183,189,192,197,200,203,210,217,233,237,245,264,274,277,282,284,287,297,315,316,342,343,344,347,354,357,358,368,376,390,393,398,400,401,402,406,409,410,426,431,440,443,448,451,453,459,468,470,474,476,480,481,483,494,496],director:[61,104,354,402],directori:[3,4,5,7,9,10,11,12,15,20,48,51,53,73,75,94,117,118,122,123,124,131,132,151,153,162,163,164,175,178,179,182,183,191,192,193,195,196,201,202,222,380,420,440,441,465,474,489,496],directorylist:465,dirlang:201,dirnam:[201,420],dirti:121,dis:201,disabl:[0,7,9,10,27,33,51,60,71,76,91,96,110,111,123,144,153,166,184,195,201,202,217,233,274,354,357,358,368,384,390,398,406,443,463,481,483,487,497],disableloc:443,disableremot:443,disadvantag:[104,142,147,162,197,316],disambigu:[217,402,470],disappear:199,discard:473,disconcert:143,disconnect:[0,8,11,13,14,19,40,44,45,46,51,55,62,142,147,161,175,190,201,203,208,219,222,227,230,232,236,402,430,431,432,438,439,440,443,448,449,452,458,459,460,461],disconnect_al:438,disconnect_all_sess:461,disconnect_duplicate_sess:461,disconnect_session_from_account:208,discontinu:184,discord:[118,143,181],discordia:69,discourag:[122,142,191],discours:142,discov:[138,142,169,468],discoveri:381,discret:[35,132,522],discrimin:199,discuss:[1,19,23,53,116,117,118,121,123,137,142,147,153,164,183,193,201,548],discworld:68,disengag:[147,208,312,313,314,315,316],disguis:[58,104,117],disk:[12,14,20,67,69,76,192,203,341,353,380,392,404],dislik:161,dispel:176,displai:[0,6,7,18,21,23,24,27,28,31,33,37,42,49,51,52,53,59,60,65,68,73,80,90,93,94,95,96,116,117,119,133,140,144,147,151,153,156,162,164,166,167,168,169,170,175,178,179,199,200,201,208,217,219,222,227,229,232,234,245,254,255,259,261,274,278,282,284,287,290,303,320,333,339,341,342,344,350,354,358,368,373,375,376,384,390,392,402,406,407,418,420,437,455,458,463,470,471,478,479,480,481,482,489,490,491,492,494,495,496,497,506,508,510,511,512,519,536,541,545,546,547],display:415,display_all_channel:227,display_buff:478,display_choic:245,display_formdata:384,display_help:478,display_helptext:[404,480],display_len:496,display_map:339,display_met:[93,350],display_nam:483,display_nodetext:480,display_subbed_channel:227,display_symbol:[116,341,342,344],display_symbol_alias:342,display_titl:245,dispos:[103,170,309],disput:147,disregard:23,dissect:126,dist:[116,195,339,341],distanc:[10,20,48,95,104,112,116,117,122,129,130,157,159,315,316,339,341,353,402,496,514],distance_dec:316,distance_inc:316,distance_to_room:157,distant:[159,320,376],distinct:[44,74,121,122,130,316,516],distinguish:[80,217,316,390],distribut:[6,10,11,17,19,21,75,122,124,131,180,182,183,195,201,236,237,238,354,473,476,496,499],distribute_messag:236,distro:[182,183,187,189,193,201],disturb:[20,74],distutil:195,distutilserror:195,ditto:193,div:[18,30,41,51,56,119,149],dive:[80,127,136,137,548],diverg:65,divid:[0,15,30,78,122,164,251,376,496],dividend:251,divis:357,divisiblebi:164,divisor:251,divivid:141,django:[1,4,10,11,13,14,17,24,42,45,46,48,49,50,51,52,53,61,64,67,70,75,98,110,121,123,124,125,127,132,133,137,144,146,149,151,153,157,164,173,179,181,183,195,199,200,201,202,208,210,211,217,234,236,238,243,255,339,344,358,392,394,400,401,406,409,410,419,420,426,427,440,446,448,449,456,462,463,464,465,468,470,471,474,477,481,486,487,488,492,494,496,501,502,503,504,505,506,507,508,509,510,511,512,516,517,519,521,522,527,528,531,536,540,541,542,544,545,546,547],django_admin:537,django_extens:201,django_filt:[201,516,522],django_nyt:123,djangofilterbackend:[201,522],djangonytconfig:123,djangoproject:[64,133,183,201,536],djangotempl:201,djangowebroot:465,dmg:146,dnf:[182,187,195],do_attack:374,do_batch_delet:468,do_batch_finish:468,do_batch_update_attribut:468,do_craft:[85,296],do_create_attribut:468,do_delete_attribut:468,do_flush:[470,487],do_gmcp:444,do_hunt:374,do_mccp:433,do_msdp:444,do_mssp:434,do_mxp:435,do_naw:436,do_nested_lookup:222,do_not_exce:153,do_noth:373,do_patrol:374,do_pickl:477,do_power_attack:[84,293],do_search:229,do_sit:144,do_stand:144,do_task:[232,414,496],do_task_act:232,do_unpickl:477,do_update_attribut:468,do_xterm256:473,doabl:16,doc:[0,2,5,10,14,18,19,23,24,28,31,37,41,48,50,53,56,64,67,72,75,76,88,95,96,99,116,118,120,122,130,131,132,133,136,141,143,144,151,153,165,181,183,196,201,203,205,222,232,274,335,386,402,431,496,536,548],docker:[0,181,190,197,201,202,548],dockerfil:192,dockerhub:192,docstr:[31,32,126,133,134,144,153,217,222,233,245,259,274,277,297,341,353,354,358,368,376,390,395,451,480,548],document:[0,1,2,7,8,9,10,12,18,24,26,29,31,42,48,49,50,52,53,56,60,61,64,67,73,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,121,122,124,125,131,132,133,135,136,138,149,151,153,155,161,162,165,170,174,175,178,181,183,184,190,197,199,200,201,202,216,230,245,274,293,359,386,395,468,471,479,487,516,541,544],dodg:313,dodoo:75,doe:[0,1,10,13,14,19,21,23,28,30,31,33,35,37,39,41,42,46,48,51,52,53,58,59,60,62,68,70,72,74,75,82,83,85,87,88,89,98,101,111,115,116,117,118,119,121,122,123,124,125,126,128,131,132,133,135,136,138,139,140,141,144,146,147,151,152,153,155,157,159,160,161,162,164,168,169,170,171,172,174,175,176,177,178,180,183,184,185,187,193,195,200,201,203,208,209,219,230,232,234,248,255,274,277,284,290,293,296,306,309,312,315,316,320,333,341,342,358,375,376,390,402,406,407,411,413,414,419,420,424,425,426,429,432,440,441,447,468,470,475,480,483,489,492,494,496,528,536,544,547],doesn:[1,4,11,14,15,17,23,28,30,35,37,48,51,52,53,67,68,80,85,94,95,96,116,118,123,124,126,133,135,136,140,142,144,146,151,155,157,159,161,164,169,170,174,175,176,178,180,188,189,190,191,193,195,197,199,201,203,216,227,236,238,260,261,293,296,297,314,320,341,342,354,398,402,420,433,440,444,468,473,480,491,496,504],doesnotexist:[208,209,211,236,238,251,261,279,280,281,287,290,300,309,312,313,314,315,316,320,326,329,333,343,344,353,354,363,366,368,370,374,375,376,386,394,400,401,402,406,410,413,427,453,468,471,476,484,488],doff:313,dog:20,doing:[4,7,8,10,13,14,20,21,23,26,28,37,44,47,48,51,53,54,58,60,85,94,95,111,116,118,119,122,123,125,126,130,133,135,136,139,141,142,145,155,157,159,161,162,164,176,178,179,181,195,197,201,203,208,219,236,260,279,284,287,290,296,312,313,314,315,316,333,354,366,374,375,390,397,402,415,451,480,487,492,501,527],doll:[85,296],dolor:29,dolphin:126,dom:51,domain:[53,121,182,187,197,199,201,210,476],domexcept:197,domin:142,dominion:124,dompc:124,don:[0,1,6,7,8,9,10,11,12,14,19,20,21,23,27,28,30,31,33,39,42,44,48,53,54,60,64,65,67,68,73,74,75,78,80,85,94,95,96,104,110,112,113,115,116,117,118,119,122,123,124,125,126,128,130,132,133,134,135,136,138,140,141,142,143,146,147,149,151,152,153,155,156,157,158,162,163,164,166,168,169,170,175,176,177,178,179,183,185,187,189,190,191,194,196,197,199,200,201,208,209,215,216,222,227,228,229,230,231,234,236,245,260,264,270,274,279,280,293,297,313,314,315,333,335,341,342,347,353,354,357,358,368,376,398,401,402,406,407,415,425,432,437,438,443,445,452,459,466,470,473,474,480,487,489,492,495,496,505,517,536,545,548],donald:7,donat:[197,548],done:[0,1,4,7,10,11,12,14,21,23,28,30,31,33,36,45,47,50,51,52,53,54,64,69,80,94,104,106,115,116,118,119,121,122,123,124,125,127,128,132,133,135,136,142,144,146,147,151,152,153,155,156,157,158,159,160,161,162,163,164,167,168,169,171,172,173,174,175,176,178,183,187,192,197,201,203,208,217,219,227,238,254,287,316,333,341,343,347,353,398,401,402,413,414,415,420,424,433,437,439,441,445,449,455,458,459,461,466,468,473,474,481,483,487,494,496,501,545],donoth:413,dont:442,doom:[116,407],door:[20,23,31,33,37,80,94,96,107,116,117,128,137,140,159,168,199,222,284,325,326,342],doorwai:[107,326],dot:[8,53,80,216,222,474,496],dotal:[473,495],dotpath:496,doubl:[8,80,119,135,161,178,215,234,495,496],doublet:[215,216],doubt:[80,116,274],down:[3,7,8,9,14,21,23,27,28,51,55,67,69,79,80,85,94,96,111,112,115,119,121,123,125,127,131,135,138,139,140,142,144,145,146,148,150,151,152,155,157,159,161,162,166,168,169,170,175,192,195,197,199,200,202,208,222,227,232,261,279,293,313,314,333,339,341,342,375,380,390,395,397,402,407,413,415,420,422,429,430,437,438,458,459,461,473,481,482,496],download:[1,5,11,12,122,124,131,181,183,189,190,191,192,193,197],downmaplink:[116,342],downtim:[155,199,484],downward:219,dozen:[69,121,153],drag:[0,51],dragon:[126,129,133,134,136,142,160,201],drain:[110,358],drama:31,dramat:[0,130,140,144,201,406,407],dramati:31,drape:[81,290],draw:[16,75,98,116,117,119,146,157,159,482],draw_room_on_map:159,drawback:[16,28,67,110,129,142,144,146,154,155,162,183,201,358,474],drawn:[159,162,170],drawtext:146,dread:98,dream:[1,72,121,140,143],dress:[81,290],drf:[516,519],drift:142,drink:[141,279,468,470],drinkabl:279,drive:[12,30,57,75,122,124,131,136,140,142,143,152,174,178,192,193,195],driven:[109,117,141,142,143,153,175,181,370,404],driver:183,drizzl:[42,177],drop:[0,11,16,23,26,33,35,36,37,51,62,67,68,75,78,94,100,103,106,109,118,121,124,126,128,129,132,133,134,135,142,144,152,153,161,162,164,168,171,172,174,183,197,201,222,228,234,290,309,313,316,368,370,402,429,470,474,496],drop_whitespac:482,dropbox:75,dropdown:[0,9],droplet:187,dropper:[313,316,402],drum:197,dry:187,dtobj:496,duck:[20,135],duckclient:184,due:[7,21,23,45,48,55,62,74,80,122,135,155,162,163,169,176,193,195,197,200,201,216,232,401,402,422,458,461,473,489,505],dufresn:75,duh:69,dull:[1,94,128,170],dum:395,dumb:[128,461,473],dummi:[0,7,12,14,23,33,85,124,135,142,185,273,296,354,398,420,425,438,451,452,459],dummycharact:357,dummycli:451,dummyfactori:451,dummyrunn:[0,2,201,205,206,416,420,438,450,452,454],dummyrunner_act:451,dummyrunner_actions_modul:451,dummyrunner_echo_respons:451,dummyrunner_set:[7,201,205,206,416,420,450],dummyrunner_settings_modul:[7,201],dummyrunnercmdset:451,dummysess:461,dump:[28,380,429],dungeon:[46,116,121,132,137],dungeonmap:116,dupic:21,duplic:[0,21,215,222,229,415,470,489],durat:[54,154,165,177,232,293,314,490,497,548],dure:[8,14,21,33,44,45,51,62,63,73,74,90,94,98,113,116,119,124,136,140,142,147,151,155,175,177,181,192,195,201,208,215,227,233,274,277,296,309,320,341,342,374,376,398,400,414,429,439,474,476,480,489,509,536],duti:122,dwarf:170,dwarv:142,dying:[142,312],dynam:[0,10,13,24,30,42,47,51,52,53,58,67,94,110,111,116,117,119,130,132,149,165,167,170,178,197,201,208,211,217,229,232,233,238,254,312,339,342,344,354,358,384,390,393,394,401,402,406,410,415,468,470,471,476,478,480,488,490,496,504,509,525,547,548],dyndns_system:197,each:[3,4,6,7,8,10,13,14,15,19,20,21,23,24,28,30,31,33,37,41,44,46,47,48,50,51,53,54,57,60,62,65,67,69,74,77,80,81,82,83,85,89,90,91,94,96,98,103,104,110,112,115,116,117,119,121,122,123,125,126,127,130,131,133,134,135,136,139,140,146,147,151,155,157,158,159,160,161,162,163,164,167,168,170,174,175,176,177,178,192,200,201,208,214,215,216,220,222,227,229,231,236,248,279,284,287,290,293,296,309,312,314,315,316,320,333,339,341,342,343,344,353,354,358,364,368,384,390,392,394,395,398,401,402,405,406,407,412,415,422,425,438,440,443,447,452,459,460,461,468,470,471,473,474,476,478,479,480,481,482,483,487,494,496,519,522,525],eagl:144,eaoiui:[104,353],earler:128,earli:[0,3,143,312,313,314,315,316,422],earlier:[0,4,9,15,19,21,28,31,32,110,122,124,126,134,135,136,140,149,162,163,168,174,175,179,185,201,342,358,392,425],earn:143,earnest:[137,142],earth:[167,199],eas:[21,23,67,133,157,176,192,197],easi:[0,1,9,11,15,18,23,28,31,37,42,48,53,54,58,68,69,70,74,81,89,95,96,110,116,117,119,121,126,134,135,136,140,142,143,144,146,147,155,157,160,163,164,166,167,168,170,172,175,176,178,179,181,183,187,189,192,197,216,220,282,290,296,358,384,390,480,487,548],easier:[0,14,28,31,41,42,49,50,53,54,55,67,80,89,94,104,111,116,118,121,123,125,126,130,133,134,135,136,138,140,142,143,144,146,151,153,157,158,160,161,162,163,164,169,176,193,197,222,297,312,313,314,316,335,344,353,375,390,462,468,471,496],easiest:[11,12,17,20,49,53,55,64,73,75,85,95,96,116,118,133,153,156,162,175,178,187,195,380,470],easili:[0,9,12,15,16,18,19,20,23,28,31,33,35,37,41,44,45,46,51,53,55,58,64,65,68,69,74,80,81,85,93,94,95,96,107,110,111,117,118,119,123,128,130,132,133,134,137,138,140,141,142,146,149,151,153,154,157,159,162,163,168,169,170,175,178,192,195,197,198,199,227,236,238,245,260,274,287,290,312,315,316,326,335,350,353,358,384,390,392,393,394,415,474,480,491],east:[75,98,116,153,158,159,170,222,341,342,376],east_exit:376,east_room:98,east_west:170,eastern:[163,170,341,343],eastward:376,eat:[94,277,279],echo1:155,echo2:155,echo3:155,echo:[0,1,4,20,23,27,28,30,41,54,55,58,74,79,87,100,119,126,128,134,135,141,147,154,155,158,159,172,175,177,186,188,192,197,198,200,201,203,208,209,220,222,227,232,290,335,347,354,366,374,375,376,402,418,425,440,443,478,480,494,496],echocmdset:126,echowoo:126,econom:[67,121,132,133,136,142,181],economi:[42,69,125,139,140,146,173,287],ecosystem:192,edg:[12,20,56,116,297,341,342,482,494,496],edgi:159,edibl:279,edit:[0,1,8,9,11,12,14,15,16,19,23,24,25,26,31,33,39,41,49,51,52,62,64,67,73,75,76,77,78,79,81,82,83,84,85,86,87,88,89,90,91,92,93,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,123,124,125,133,142,151,153,156,160,162,163,164,166,170,178,179,181,183,185,187,191,192,200,201,220,222,229,232,245,246,255,258,259,261,262,306,309,384,398,402,404,406,407,468,478,508,509,517,536,542,546,547,548],edit_callback:[259,261],edit_handl:222,editcmd:80,editi:[110,358],editor:[8,12,17,23,24,30,31,41,49,64,69,80,95,96,119,120,124,135,136,152,161,170,181,187,195,222,229,231,232,245,306,410,474,478],editor_command_group:478,editorcmdset:478,editsheet:162,edu:499,effect:[0,10,11,14,16,19,20,21,25,36,42,45,47,53,54,60,72,74,75,85,94,98,106,110,112,113,116,117,119,135,136,140,141,142,144,146,147,154,155,157,160,161,162,170,171,176,200,201,203,208,215,216,222,231,236,261,279,293,297,313,314,315,342,347,358,374,376,400,402,408,410,433,496,548],effici:[1,7,14,36,42,46,47,48,67,77,108,116,121,122,130,136,144,154,155,157,160,177,181,199,287,329,341,342,344,354,398,402,415,468,469,471,478,481],effort:[12,132,160,179,542],egg:[191,296],egg_info:195,egi:422,egiven:400,eight:279,eightbal:137,eirik:75,either:[0,7,8,11,12,15,18,20,21,23,28,30,33,37,39,41,42,44,46,48,51,53,55,58,59,65,78,80,94,95,96,97,104,107,116,117,118,119,123,124,126,129,130,132,133,135,136,138,142,144,146,147,155,157,159,160,161,162,164,169,170,174,175,176,183,195,197,199,201,203,208,209,215,216,217,222,227,237,245,258,264,296,303,312,316,326,341,342,343,344,353,354,358,368,390,398,402,405,407,410,412,413,415,418,429,441,445,452,469,470,471,480,482,483,489,491,493,496,499],elabor:[80,94,119,123,168,169,175],electr:197,eleg:118,element:[7,14,18,28,30,53,56,59,80,85,116,121,133,134,135,137,169,214,219,229,245,251,341,343,344,353,386,402,407,468,469,471,474,479,480,481,483,494,495,496],elev:[94,95,167],elif:[28,42,96,126,137,146,147,159,162,171,175],elig:[75,483],elimin:[192,473],elimit:496,ellipsi:0,ellow:[60,473],els:[6,12,13,19,20,23,28,31,33,34,39,42,47,51,53,54,55,57,58,75,77,80,84,85,94,95,96,115,119,124,125,126,128,134,135,137,139,140,143,144,146,147,152,153,155,156,157,159,162,164,166,167,168,169,170,171,173,174,175,178,179,183,197,199,201,227,233,287,290,293,312,314,315,316,333,384,386,401,449,470,480,496],elsennsometh:233,elsewher:[13,21,46,53,131,133,155,162,178,216,342,376,420,461,468],elv:142,elvish:[104,353],emac:[16,181],email:[0,12,35,117,122,125,132,137,187,190,194,201,208,210,211,253,255,256,476,490,496,497,504,536,548],email_login:[88,205,206,239,240,548],emailaddress:496,emailfield:[504,536],emb:[41,58,90,104,116,119,162,320,407],embark:174,embed:[0,30,41,48,53,71,116,132,141,201,229,236,341,405,479,483,496],emerg:[39,64,199],emi:[104,353],emit:[51,69,126,153,208,216,220,236,300,402,459],emit_to_obj:[216,402],emo:152,emoji:184,emot:[0,19,23,26,30,31,58,77,117,121,141,142,143,147,208,228,277,287,352,353,354,468,483],emoteerror:354,emoteexcept:354,empathi:297,emphas:119,emphasi:119,empir:201,emploi:497,empti:[0,6,10,11,12,13,16,19,21,23,28,34,37,42,47,48,50,51,53,54,67,68,85,89,93,96,110,116,117,119,122,124,126,130,132,133,134,135,136,137,141,144,146,149,159,162,164,169,171,175,179,185,187,190,192,194,201,210,213,214,220,222,227,233,245,258,281,296,341,342,350,354,358,402,406,407,418,425,429,451,452,468,474,476,480,482,493,496,505,512],emptor:75,empty_color:350,empty_permit:[506,508,510,512,536],empty_symbol:341,empty_threadpool:465,emptyset:21,emul:[7,44,72,110,112,122,141,142,175,191,232,358],enabl:[0,9,51,60,75,76,83,84,91,176,179,182,183,184,188,192,199,201,208,243,293,354,357,384,443,497],enable_recog:354,enableloc:443,enableremot:443,enact:277,encamp:95,encapsul:490,encarnia:181,encas:478,enclos:[25,27,135,234,255,483],encod:[0,20,24,26,61,116,162,170,201,234,342,429,431,444,448,449,473,492,496,544,548],encode_gmcp:444,encode_msdp:444,encoded_text:496,encompass:[0,20],encount:[216,342,400,483,497],encourag:[0,80,149,157,169,184],encrypt:[65,75,182,187,199,227,440,441,445],encumb:141,end:[0,1,7,11,12,15,16,20,21,23,27,28,30,31,33,36,41,44,45,51,54,57,59,60,62,64,65,67,68,69,73,74,75,78,80,94,101,104,111,112,115,116,117,119,121,122,124,125,128,130,132,134,135,136,138,141,142,144,146,147,152,153,154,155,157,162,163,164,166,169,172,174,175,176,178,179,182,183,185,186,187,190,192,197,201,208,209,215,216,222,228,229,237,279,282,287,290,297,306,312,313,314,315,316,341,342,350,354,370,376,390,393,424,431,432,440,443,444,451,454,459,463,465,469,473,474,476,480,481,482,483,489,496,545],end_convers:28,end_direct:342,end_turn:147,end_xi:[116,341],endblock:[53,149,164,178,179],endclr:483,endcolor:30,endcoord:339,endfor:[164,178,179],endhour:153,endif:[164,178,179],endless:53,endlessli:199,endpoint:[49,199,521,522],endsep:496,endswith:473,enemi:[14,28,41,125,138,139,140,147,155,314,315,316,374,375,376],enemynam:28,enforc:[0,10,23,39,54,60,125,139,140,146,176,440,443,481,482,494,542],enforce_s:482,engag:[121,316,374],engin:[0,4,10,23,28,31,37,74,89,117,122,125,134,138,139,146,151,160,181,183,199,200,201,213,216,229,231,232,275,296,376,381,393,420,431,437,440,443,448,458,460,474,476,500],english:[0,8,17,30,58,64,70,181,234,499,500],enhanc:[0,60,135,166,380,473,546],enigmat:128,enjoi:[9,140,143,169],enough:[6,10,19,33,34,36,46,47,69,85,115,116,118,119,121,122,123,125,126,127,130,131,133,134,136,139,140,144,151,152,155,157,161,162,164,168,169,175,176,187,193,197,201,216,222,296,315,333,342,353,368,386,480,481,482,494],enpoint:519,ensdep:496,ensur:[9,83,159,164,171,176,183,192,201,390,463,494,542],ensure_ascii:449,ensurepip:195,enter:[0,1,4,6,7,11,12,15,16,17,19,20,21,23,25,28,30,31,36,37,39,41,52,53,58,60,63,65,72,73,77,80,81,89,91,94,95,96,99,115,116,117,122,124,125,134,135,138,144,147,149,152,153,155,158,162,163,164,168,169,170,171,175,178,183,190,191,192,194,201,205,208,214,216,221,229,230,232,245,264,279,282,287,290,312,320,333,374,376,384,390,397,402,407,410,418,459,480,525,536],enter_guild:28,enter_nam:28,enter_wild:[115,333],enterpris:3,enthusiasm:143,enthusiast:[0,142],entir:[0,10,14,15,16,20,23,27,28,30,31,33,41,47,48,53,54,57,67,69,80,83,94,95,103,104,111,116,117,131,132,135,140,142,151,155,159,164,169,170,175,196,197,245,274,341,342,343,344,353,354,390,398,402,406,407,470,471,474,480,482,487,496,545],entireti:[28,146,278,384,480],entit:[237,476,548],entiti:[0,10,14,19,20,28,30,31,33,34,35,36,37,39,41,42,44,45,46,48,50,53,58,116,120,122,125,129,130,131,132,133,137,139,140,144,147,176,201,207,208,217,222,227,232,236,237,238,279,296,326,343,344,354,366,392,394,395,397,400,402,404,405,406,407,408,409,410,411,413,415,461,468,469,471,476,480,481,483,486,493,496,512,522],entitiess:122,entitii:45,entitl:197,entranc:[116,170],entri:[0,12,17,20,21,23,24,28,33,45,53,98,123,125,126,127,131,133,137,142,153,162,164,169,174,184,185,189,193,201,208,217,229,230,233,279,296,312,314,315,350,386,390,391,392,393,394,395,398,402,415,439,452,463,468,474,476,478,480,482,489,490,493,496,497,508,516,519,522,537,541,544],entriest:219,entrypoint:192,entrytext:[31,164,392,393,394,476],enul:182,enumar:496,enumer:179,env:[420,430],environ:[0,2,3,4,10,11,15,52,75,119,122,123,124,135,140,142,143,153,167,186,192,193,194,195,197,199,201,232,233,246,271,283,288,294,298,310,317,321,332,339,355,364,373,420,430,446,455,474,480,494,520,537],environment:420,envvar:194,eof:440,epic:181,epilog:274,epoch:[20,163,201,484],epollreactor:465,epub:181,equal:[8,21,23,56,57,60,87,94,95,96,116,117,128,130,133,134,142,153,157,169,174,215,227,312,313,314,316,320,354,357,358,402,496],equip:[16,60,81,112,132,141,142,161,290,312,313,316],equipmentcombatrul:313,equival:[0,11,12,14,15,30,36,50,53,54,58,60,62,68,116,131,135,137,195,199,200,203,207,210,222,293,335,341,342,393,400,409,438,444,468,496,517,545],eras:[124,316],erik:75,err:[162,201,429,451,474,489],err_travers:[37,402],errback:[54,417,420,429,430,496],errmessag:215,errmsg:175,erron:[0,70,175,429,482],error:[0,1,6,8,10,11,12,14,16,17,19,20,21,23,24,28,30,32,33,36,37,39,41,44,48,53,54,64,65,67,70,73,80,85,94,98,111,116,119,122,124,125,127,128,133,134,136,137,138,143,144,160,161,162,165,169,170,172,173,175,178,182,183,184,187,188,191,195,197,199,200,201,205,206,208,210,213,215,216,222,227,234,236,261,274,296,298,340,342,343,344,354,358,375,386,390,398,400,402,405,406,409,413,414,417,419,420,422,424,425,429,443,451,470,473,474,476,479,480,483,489,492,496,497,502,517,519,535,539,544,548],error_check_python_modul:420,error_class:[506,508,510,512,536],error_cmd:158,error_consumable_excess_messag:296,error_consumable_missing_messag:296,error_consumable_order_messag:296,error_msg:463,error_tool_excess_messag:296,error_tool_missing_messag:296,error_tool_order_messag:296,errorlist:[506,508,510,512,536],errorlog:182,escal:[13,39,57,142,219,397,471],escap:[0,30,60,89,116,117,164,201,228,232,274,277,280,473,483,495,536],escape_char:483,escaperoom:[89,280],escript:[80,245],esom:229,especi:[0,7,17,33,39,44,46,80,104,132,133,135,140,155,170,182,183,193,195,350,353,474],esqu:133,ess:29,essai:181,essenti:[9,58,70,132,142,154,159,160,181,187,191,237,420,476],est:[29,233],establish:[23,44,112,117,140,141,142,146,187,201,208,312,402,417,429,431,438,440,443,448,451,458,460],estim:[156,201,341,407,487],esult:402,etc:[0,1,10,12,13,14,19,20,23,25,28,30,31,33,34,35,36,37,39,41,42,44,45,48,50,51,52,53,55,58,62,65,67,68,69,71,75,78,80,85,86,89,91,93,94,104,107,110,116,117,118,119,120,121,122,126,128,130,131,132,140,141,142,144,146,147,153,155,156,159,160,161,162,163,173,176,177,181,182,183,187,192,193,199,201,203,208,211,213,214,215,216,219,221,222,227,230,232,234,237,248,251,274,279,280,287,297,309,313,315,326,341,342,343,344,350,353,354,358,368,384,402,406,407,438,440,443,447,448,449,459,460,468,470,473,474,476,477,478,479,480,483,489,496,500,505,512,516,522,525,547],etern:28,ethic:76,euclidian:116,eunpyo:75,ev_channel:209,evadventur:[142,145],eval:[30,41,287,496],evalstr:398,evalu:[23,28,30,77,119,130,141,143,214,287,398,480,483],evbot:[227,461],evcast:181,evcel:[479,482],evcolor:181,evcolumn:482,evdemo:89,eve:496,evedit:0,eveditor:[24,26,31,80,94,120,205,206,245,472,548],eveditorcmdset:478,even:[0,1,6,7,9,14,16,19,20,21,27,28,31,33,39,42,44,47,48,49,50,55,57,60,64,67,69,72,73,79,80,81,86,90,91,94,95,104,110,113,116,117,118,121,122,123,124,130,131,133,134,135,136,138,140,141,142,143,144,145,146,147,152,153,155,157,159,160,161,162,163,164,165,168,169,172,175,176,185,193,195,197,199,201,203,208,215,217,220,227,229,236,251,274,290,296,312,313,314,315,316,320,341,342,344,353,358,376,384,402,406,407,443,480,482,483,487,496,544],evenia:131,evenli:[20,116,251,342,496],evenn:192,evenna:124,evenni:123,evennia:[2,3,4,5,7,13,14,15,16,17,18,19,20,21,23,24,25,26,27,28,29,31,32,33,34,35,36,37,39,40,42,44,45,46,47,48,50,52,53,54,57,58,59,60,61,62,63,65,67,68,69,70,72,73,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,95,96,97,98,99,100,102,103,105,106,107,108,109,110,111,112,114,115,116,117,120,122,125,126,127,128,129,130,132,133,134,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,154,155,156,157,158,159,163,164,165,166,168,170,171,172,173,174,175,177,178,179,180,184,186,189,193,194,195,198,199,200,202],evennia_access:182,evennia_admin:[201,507],evennia_channel:[186,189,198,227],evennia_dir:[201,496],evennia_error:182,evennia_gener:151,evennia_launch:[0,9,205,206,416,418],evennia_logo:[53,151],evennia_runn:[0,9],evennia_server_port:40,evennia_superuser_email:194,evennia_superuser_password:194,evennia_superuser_usernam:194,evennia_vers:420,evennia_websocket_webcli:448,evennia_wsgi_apach:182,evenniaadminapp:[201,527],evenniaadminsit:527,evenniaapiroot:518,evenniacommandmixin:[10,494],evenniacommandtest:[10,494],evenniacommandtestmixin:494,evenniacreateview:[540,546,547],evenniadeleteview:[546,547],evenniadetailview:[546,547],evenniaform:[536,542],evenniagameindexcli:422,evenniagameindexservic:423,evenniaindexview:[53,545],evennialogfil:489,evenniapasswordvalid:[201,464],evenniapermiss:[201,517,522],evenniareverseproxyresourc:465,evenniaserv:40,evenniatest:[10,382,494],evenniatestcas:[10,494],evenniatestmixin:[10,494],evenniatestsuiterunn:201,evenniaupdateview:[546,547],evenniausernameavailabilityvalid:[201,208,464],evenniawebtest:537,event:[0,28,31,45,51,76,86,117,122,143,146,199,201,205,209,251,260,261,262,264,279,287,354,368,380,410,413,462,489],event_level:489,event_nam:[260,264],event_push:94,eventcharact:94,eventexit:94,eventfunc:[96,205,206,239,240,257,261],eventfuncs_loc:94,eventhandl:[94,261],eventi:[217,245,274],eventobject:94,eventroom:94,events_calendar:94,events_dis:94,events_valid:94,events_with_valid:94,events_without_valid:94,eventu:[14,23,39,55,57,64,65,68,87,123,138,140,142,143,147,151,155,162,175,178,197,201,203,208,213,214,222,231,237,279,280,347,353,354,368,376,398,402,407,417,425,451,459,460,471,475,476,480,482,534],evenv:[4,9,122,123,191,193,195,196],evenwidth:482,ever:[11,12,14,15,16,17,23,30,42,44,46,48,55,67,70,80,104,116,122,130,133,141,146,161,169,170,172,183,190,201,203,277,280,342,353,415,431,432,438,468,480],everi:[0,1,4,5,7,10,11,12,15,19,20,21,23,28,30,31,32,35,41,42,46,47,48,58,67,69,70,73,75,76,79,84,86,91,94,95,96,116,118,119,122,123,126,128,130,132,133,135,136,138,141,146,147,151,152,154,157,159,161,163,164,168,169,170,173,174,175,177,178,179,187,191,192,193,197,200,201,208,222,227,261,278,290,293,298,312,314,333,341,342,353,354,363,373,384,390,402,407,413,415,425,442,452,458,467,468,470,480,481,482,483,494,496,505,512],everror:261,everyon:[11,12,19,23,28,31,33,36,42,46,57,58,64,89,122,133,136,137,140,142,143,146,147,152,162,174,175,177,180,184,188,198,203,222,227,228,229,279,280,282,312,313,314,315,316,347,438],everyong:58,everyth:[0,1,4,6,8,10,11,12,14,21,28,36,39,41,47,49,50,51,53,57,65,70,73,89,110,116,117,119,121,122,124,125,126,132,133,134,135,136,137,138,140,141,143,144,146,147,148,151,152,154,159,162,164,166,168,169,170,181,187,189,190,191,192,195,197,199,200,201,203,212,217,227,228,230,232,233,234,255,296,297,358,376,397,401,410,424,451,459,468,470,474,480],everywher:[124,132,160,187,193],evform:[20,120,205,206,472],evgam:227,evgamedir:119,evict:463,evid:189,evil:[7,16,187,368,407],evilus:227,evmenu:[20,23,24,80,91,99,109,111,113,117,120,138,142,162,168,205,206,232,245,278,370,373,384,390,404,472,481,494,548],evmenucmdset:480,evmenuerror:480,evmenugotoabortmessag:480,evmenugotomessag:480,evmor:[0,24,26,31,120,201,205,206,406,472,548],evscaperoom:[0,205,206,239,275,548],evscaperoom_start_st:89,evscaperoom_state_packag:89,evscaperoommenu:278,evscaperoomobject:[279,280],evtabl:[0,20,23,91,120,159,170,205,206,217,227,384,406,472,479,481,496],ewmaplink:[116,342],ewonewaymaplink:[116,342],exact:[0,7,12,23,28,39,72,110,130,133,137,201,208,210,214,222,227,231,237,296,316,354,358,393,400,402,406,407,469,470,492,493,496],exact_consum:296,exact_consumable_ord:[296,297],exact_tool:296,exact_tool_ord:296,exactli:[6,7,11,13,28,30,31,39,42,47,50,54,57,59,60,62,65,67,85,95,110,116,119,122,126,130,131,133,135,137,141,142,146,151,162,163,164,169,170,175,192,201,203,227,296,341,342,354,358,400,402,420,470,493],exam:[26,222],examin:[0,9,12,13,14,23,26,33,47,51,55,65,74,80,89,125,126,128,130,146,162,168,169,175,201,208,222,277,287,368,375,376,452,468,483,494,504,517],exampl:[0,2,3,4,5,7,8,9,10,12,13,14,15,16,17,18,19,20,21,23,24,26,31,32,34,35,36,37,41,44,46,47,48,49,50,54,57,58,59,60,61,62,64,65,67,68,72,73,74,75,76,77,81,86,87,89,91,92,94,96,104,108,110,111,112,113,114,117,118,119,121,122,123,125,126,127,128,129,130,132,133,134,135,136,137,138,140,141,142,143,144,145,151,152,153,154,155,156,158,159,160,161,162,163,166,167,168,169,170,171,172,174,175,176,177,178,182,183,187,188,192,194,198,199,200,201,203,205,206,208,211,214,215,216,217,220,221,222,227,228,229,230,231,232,233,236,238,239,245,251,270,274,277,279,284,287,290,293,296,297,298,300,303,309,312,313,314,315,316,318,320,326,329,331,334,335,339,341,342,343,344,347,350,353,354,357,358,359,360,362,363,368,370,374,376,380,384,386,390,392,394,395,398,401,402,407,410,413,415,420,425,440,443,444,449,452,461,465,468,470,471,472,473,475,479,480,481,482,483,484,488,489,490,493,494,496,497,499,500,505,512,521,522,536,545,548],example1_build_forest:98,example1_build_mountain:98,example1_build_templ:98,example1_legend:98,example1_map:98,example2_build_forest:98,example2_build_horizontal_exit:98,example2_build_verticle_exit:98,example2_legend:98,example2_map:98,example_batch_cmd:78,example_batch_cod:[15,78,205,206,239,359,360],example_recip:[205,206,239,285,295,296],example_recipi:296,excalibur:168,exce:[167,201,243,312,313,314,315,316,463,487],exceed:463,excel:[33,69,160,181,187],excempt:215,except:[0,8,14,16,20,21,23,27,28,30,31,33,37,41,42,49,50,53,54,57,60,65,80,85,94,95,115,116,119,122,123,124,128,130,132,134,135,136,137,142,147,152,154,155,157,162,169,170,172,173,174,175,176,178,179,191,195,197,201,208,209,211,213,216,217,230,231,236,237,238,251,260,261,264,274,279,280,281,287,290,296,300,306,309,312,313,314,315,316,320,326,329,333,340,341,342,343,344,353,354,358,363,366,368,370,374,375,376,386,394,397,398,400,401,402,406,409,410,413,414,420,425,427,429,441,443,445,449,453,465,468,471,473,476,479,480,482,483,484,488,489,491,496,504],excepteur:29,excerpt:27,excess:[33,41,80,144,230,296,401,474,496],exchang:[15,52,77,141,197,287,477],excit:[25,126,128,142,185],exclam:152,exclud:[0,58,94,122,130,137,173,175,201,236,290,309,315,376,400,401,402,478,480,514,516],exclude_cov:290,excluded_par:514,excluded_typeclass_path:222,excludeobj:400,exclus:[28,31,33,35,140,368,402,410,469,480,496],exclusiv:[409,476],exe:[9,11,195],exec:[28,30,168,407,480,496],exec_kwarg:480,exec_str:455,execcgi:182,execut:[0,4,9,11,15,16,21,23,27,28,30,36,37,41,42,51,52,53,54,55,57,59,65,71,78,80,89,94,95,96,98,114,122,124,132,135,138,142,153,154,155,163,164,168,169,170,191,195,201,208,209,211,212,213,217,220,221,230,232,233,238,245,261,273,274,277,297,315,354,366,368,376,390,394,397,398,401,402,407,408,410,414,417,425,427,430,431,437,440,443,448,451,452,455,458,459,468,470,471,474,480,481,483,488,494,496,525],execute_cmd:[13,23,37,171,172,175,208,209,217,402,425,459],execute_command:23,executor:4,exemplifi:[31,62,113,116,117,136,138,141,154],exercis:[6,135,147,152,162,168,170,175,177,243,298,357,446,456,488],exhaust:[19,80,387],exhaustedgener:386,exidbobj:402,exis:196,exist:[0,1,4,7,8,11,12,13,14,15,19,20,21,23,24,25,26,28,33,41,42,44,46,47,53,55,62,64,67,75,80,83,85,89,90,94,95,96,101,103,104,108,110,116,118,122,125,128,129,130,132,134,135,138,139,140,143,144,147,149,151,152,153,157,158,159,160,161,162,164,170,171,175,179,183,186,189,190,192,193,201,202,207,208,209,210,215,216,217,222,227,229,230,232,243,245,258,260,261,264,278,284,293,297,303,306,309,315,320,329,333,341,342,343,344,353,354,358,375,395,397,398,401,402,404,406,407,409,414,420,424,426,440,441,443,445,453,458,459,461,468,469,470,471,474,476,478,479,480,482,483,489,491,496,504,522,548],existen:459,exit:[0,9,10,11,21,24,27,28,33,41,48,49,50,67,77,80,94,98,107,113,115,116,117,120,126,128,129,132,133,135,136,137,138,152,157,159,162,165,168,169,170,174,175,183,190,192,195,201,205,213,215,216,222,232,239,245,246,262,274,280,287,293,316,318,326,328,330,333,335,336,341,342,343,344,368,374,375,376,390,397,400,401,402,407,424,440,452,468,476,478,480,481,494,516,519,522,537,548],exit_alias:[222,326],exit_back:162,exit_cmd:[0,28,481],exit_command:402,exit_dest_x_coordin:116,exit_dest_y_coordin:116,exit_dest_z_coordin:116,exit_nam:[159,222,326],exit_on_lastpag:481,exit_ther:162,exit_to_her:222,exit_to_ther:222,exit_typeclass:[333,494,537],exitbuildingmenu:80,exitcmdset:[21,402],exitcommand:402,exitnam:326,exitobject:158,exitviewset:522,exixt:438,exot:23,exp:479,expand:[0,12,32,37,49,58,60,73,74,88,89,96,107,112,117,122,123,125,126,128,130,132,133,134,135,136,140,141,142,143,148,152,158,159,161,162,166,168,170,171,173,175,177,183,197,200,205,206,222,239,255,312,313,314,315,316,326,335,345,356,402,473,482,548],expand_tab:482,expandtab:[473,482],expans:[140,158],expect:[0,7,8,10,11,23,30,35,36,37,45,47,53,54,58,64,65,68,70,94,96,105,116,119,124,130,132,133,135,137,138,140,142,143,160,162,169,175,176,179,187,191,197,201,222,230,233,245,258,260,293,296,333,339,341,342,386,397,402,406,407,418,420,468,470,480,481,483,487,494,496,501,505,512,522,528,547],expected1:494,expected2:494,expected_1st_or_2nd_person:501,expected_3rd_person:501,expected_direct:339,expected_input:494,expected_path:339,expected_return:10,expectlst:339,expectstr:339,expens:[47,197,400,493],experi:[1,6,28,30,73,85,100,112,113,117,125,126,130,135,136,138,139,140,145,146,161,163,166,170,190,197,227,279,366],experienc:[2,14,28,122,127,135,181],experienced_betray:28,experienced_viol:28,experiment:[32,53,191,201,232,506,509],expert:[110,358],expir:[75,201,293],explain:[12,23,26,28,49,53,67,72,80,94,116,121,122,128,132,142,144,151,157,162,174,176,179,181,188],explan:[21,23,50,60,94,122,153,157,164,192,201,280,464],explanatori:50,explicit:[21,62,68,72,80,96,119,151,164,169,183,188,200,386,420,442,468,480,500],explicitli:[0,8,14,21,31,33,34,36,39,41,42,46,47,48,60,65,67,110,116,123,124,133,134,136,141,142,152,156,162,168,187,216,217,222,229,237,342,358,386,392,402,407,409,415,468,470,473,476,492,494,519],exploit:[0,142,201,471,473,483,496],explor:[2,6,13,48,53,54,65,96,113,116,125,127,128,133,135,138,147,164,170,193,200,232],expos:[84,179,199,293,368,544],express:[23,28,30,33,41,52,73,74,76,86,105,119,130,133,137,149,160,179,201,222,251,316,386,468,496,525],ext:28,extend:[0,19,20,30,42,48,50,53,67,69,76,82,98,117,119,121,125,126,127,131,132,134,135,139,145,146,148,149,150,157,160,164,168,170,171,172,178,179,181,201,211,217,229,233,236,248,261,264,293,296,297,319,320,333,341,401,402,470,490,509,536,545,546,548],extended_room:[0,90,205,206,239,318,548],extendedloopingcal:415,extendedroom:[90,320,321],extendedroomcmdset:[0,90,320],extendng:297,extens:[0,8,10,28,31,60,68,116,119,121,122,124,128,132,133,140,149,160,170,183,196,200,201,211,312,336,381,393,435,443,476,486,495],extent:[80,94,142,146,160],exter:227,extern:[0,3,9,17,35,41,59,62,69,94,116,117,132,136,140,142,143,144,161,170,182,183,185,186,187,189,197,198,201,202,205,216,227,235,237,238,380,406,418,420,422,476,494],external_discord_hello:425,external_receiv:238,extes:201,extra1:30,extra2:30,extra:[0,1,14,16,19,21,23,28,30,31,33,37,45,48,51,53,56,71,75,77,89,110,116,117,118,119,125,126,127,135,136,141,142,151,152,153,155,161,162,175,176,179,182,183,196,197,201,208,211,217,229,233,236,287,296,300,306,320,354,357,358,368,376,402,405,406,415,417,469,473,474,478,480,481,482,483,489,490,491,495,496,504,505,512],extra_environ:474,extra_launcher_command:[0,116,201,336,337],extra_opt:480,extra_spac:496,extract:[0,8,14,30,45,102,117,160,169,217,270,271,279,296,341,354,381,398,434,448,496],extract_goto_exec:480,extrainfoauthserv:440,extral:238,extran:384,extrem:[1,11,136,160,169,203,312,313,316,433,490],eye:[8,31,60,98,140,170,407,481],eyed:[53,144,151],eyes:[23,118,161],eyesight:[33,60,162],f6d4ca9b2b22:192,face:[92,94,116,126,138,142,187,197,199,201,234,300,464,480],facil:489,facilit:142,fact:[9,16,23,37,42,48,54,65,74,121,131,132,133,140,152,155,161,162,171,175,176,179,190,199,461,463,483],factor:[96,163,167,201,313,315,417,431,432],factori:[62,358,417,422,430,431,432,438,439,440,441,443,451],factory_path:209,fade:[69,104,353],fail:[0,14,15,16,19,20,21,28,30,31,37,41,45,54,55,70,85,106,113,116,123,124,125,134,138,139,140,144,147,169,171,174,184,199,201,202,203,208,216,227,231,236,273,296,298,326,347,354,357,358,368,375,387,397,398,402,406,417,418,420,424,431,432,442,463,468,470,481,483,490,492,496,499,505,542],failmsg:463,failtext_templ:146,failur:[16,54,85,141,146,193,208,296,376,422,429,431,432,451,463,473,496],failure_effect:297,failure_messag:296,failure_teleport_msg:376,failure_teleport_to:376,faint:42,fair:[87,141,142,146,347],fairli:[81,91,157,164,191,290,313,384,390],fake:[10,82,116,201,248,342,451,461,468,473],fall:[0,1,8,21,42,70,92,94,113,116,119,122,133,146,158,163,170,205,208,231,296,300,354,368,376,496,536],fall_exit:376,fallback:[90,159,201,213,217,238,320,398,413,420,449,468,480,483,491,496],fallback_account_typeclass:201,fallback_channel_typeclass:201,fallback_character_typeclass:201,fallback_exit_typeclass:201,fallback_object_typeclass:201,fallback_room_typeclass:201,fallback_script_typeclass:201,fals:[0,10,13,14,19,20,21,23,27,28,30,31,32,33,34,37,39,42,47,48,51,67,76,80,82,91,104,115,116,123,126,128,133,137,144,147,152,153,155,158,159,162,163,166,167,172,173,174,175,178,199,201,208,210,211,213,214,215,216,217,222,227,229,236,238,245,246,248,251,258,261,274,277,278,279,282,287,290,293,296,303,312,315,316,326,333,341,342,344,347,353,354,373,384,390,392,393,394,397,398,400,401,402,404,406,407,409,410,411,413,414,415,417,420,422,426,429,430,437,438,439,440,443,449,451,457,458,459,461,463,465,468,469,470,471,473,474,476,478,480,481,482,483,484,487,491,492,493,494,495,496,497,499,501,504,505,506,508,509,510,512,516,517,536,544],falsestr:[91,384],falsi:[126,134,236,296,341],fame:[138,143],famili:[28,124,144,161],familiar:[2,21,23,48,94,102,117,119,130,133,134,135,143,149,155,157,162,168,169,170,178,197,270],famou:[29,478],fan:181,fanci:[4,17,18,19,49,75,81,116,146,290,342],fantasi:[137,142,353],faq:[119,165,442,548],far:[9,12,15,19,21,23,53,60,68,80,94,95,96,98,115,116,121,128,130,132,133,135,136,152,157,159,161,169,170,185,191,192,197,215,316,333,341,344,422,447,468,478,487],fare:133,fart:144,fascilit:343,fashion:[41,170],fast:[1,12,14,17,20,37,47,69,116,117,122,135,142,143,155,160,163,167,183,201,220,395,452],faster:[2,7,14,116,137,142,163,183,201,238,287,468],fastest:[119,342],fatal:420,fault:143,faulti:135,favor:[20,116,342],favorit:[118,152],fear:20,feasibl:183,feat:142,featgmcp:444,featur:[0,1,4,6,10,11,12,17,18,20,21,23,27,41,45,48,53,59,60,72,80,83,89,94,95,96,104,111,113,116,117,118,119,121,122,123,126,128,138,140,141,142,153,159,160,161,163,165,166,168,169,170,175,180,189,199,201,208,216,217,261,274,320,354,390,415,437,458,462,470,478,496,543,548],feb:[2,64],februari:163,fed:[23,33,54,438,468,477,479],fedora:[12,182,187,195],feed:[11,17,28,146,159,198,201,209,227,341,422,439,440,470,481],feedback:[6,12,37,118,140,143,172,201,237,478],feedpars:[198,201,439],feedread:209,feel:[12,18,48,54,64,69,80,94,95,96,104,111,118,119,121,122,127,130,133,138,140,142,143,144,146,150,157,161,164,169,172,175,178,188,197,279,313,353,368,376,390],feelabl:279,feend78:303,feint:147,fel:64,felin:20,fellow:479,felt:[42,177],femal:[58,92,300,483,500],fermuch:0,fetch:[11,12,14,49,52,53,130,178,192,193,197,343,468,481],few:[1,3,4,6,7,12,14,17,18,21,23,27,30,31,32,33,37,50,53,54,60,63,67,68,76,89,96,104,118,119,121,122,123,124,128,130,131,133,135,140,141,142,143,146,147,159,169,174,175,176,181,183,187,199,203,232,251,353,368,401,435,444,463,473,482,496,545],fewer:[69,135,341,461,469],fg_colormap:495,fgstart:495,fgstop:495,fiction:[28,121,163,480],fictional_word:353,fictiv:353,fictou:284,fiddl:376,field:[0,9,11,14,30,31,32,34,35,36,37,41,42,45,46,48,50,53,64,67,73,110,117,125,127,129,133,149,160,162,178,183,185,201,211,238,258,316,335,354,358,374,384,394,395,397,400,401,402,406,407,410,411,415,427,468,469,470,471,479,488,492,493,504,505,506,508,509,510,512,516,519,524,536,547],field_class:536,field_nam:[395,516],field_or_argnam:32,field_ord:536,fieldevmenu:384,fieldfil:[91,205,206,239,378,548],fieldnam:[34,91,162,384,411,470,487,536],fieldset:[504,506,508,509,510,512],fieldtyp:[91,384],fifo:496,fifth:159,fight:[21,42,112,117,125,134,138,139,140,147,155,312,313,314,315,316,375],fighter:[112,312,314,316],figur:[1,6,7,8,12,23,31,55,58,65,89,104,118,125,131,133,140,143,149,159,164,169,174,178,197,201,251,287,296,342,354,406,420,499],file:[0,1,3,4,5,6,7,9,10,11,13,19,20,21,24,26,28,39,40,49,50,51,52,53,57,62,63,64,67,73,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,122,123,124,125,126,128,131,132,134,135,136,142,149,151,152,153,158,160,161,162,163,164,166,168,170,171,173,174,175,178,179,181,182,183,185,186,187,189,190,191,192,195,196,197,198,199,202,203,205,206,208,221,229,236,243,245,248,251,255,274,280,290,296,333,353,358,380,392,407,419,420,440,441,444,445,452,453,454,458,465,466,472,479,480,489,492,493,496,500,505,506,508,510,512,522,525,529,536,544,548],file_end:[474,496],file_help_entry_modul:[31,201,229,392],file_help_top:544,file_to_revert:12,fileentri:229,filehelp:[31,205,206,391],filehelpentri:[229,392,544],filehelpstorag:0,filehelpstoragehandl:392,filenam:[12,20,78,104,131,236,353,474,479,489],filename1:420,filename2:420,filesystem:[192,195,199],filip:75,fill:[0,4,9,27,53,64,73,91,98,110,116,117,135,159,162,170,178,186,201,273,341,344,358,384,468,473,479,480,481,482,483,496,512],fill_char:482,fill_color:350,fillabl:[117,384,548],fillchar:[30,473,483,496],filler:500,filo:496,filter:[0,9,21,35,48,49,60,67,76,94,116,130,157,164,173,178,201,205,206,215,220,245,320,344,354,401,402,496,502,515,522,542],filter_backend:522,filter_famili:[48,130],filter_nam:516,filter_xyz:[116,344],filter_xyz_exit:[116,344],filterset:516,filterset_class:522,filthi:180,final_valu:54,find:[0,1,6,7,8,10,11,12,14,15,16,18,20,21,23,26,27,30,31,32,33,34,35,36,37,41,42,46,48,50,53,54,55,59,60,62,64,67,69,73,74,80,85,90,95,96,98,107,111,113,116,118,119,121,123,125,126,127,128,129,130,131,132,133,134,136,138,140,142,143,144,145,146,149,151,152,153,155,159,160,161,162,163,164,169,175,178,179,180,181,183,184,187,191,192,193,195,196,197,199,201,203,208,214,222,229,251,274,279,282,296,320,326,335,336,341,342,344,354,358,376,390,402,406,407,409,412,420,434,468,469,473,475,483,493,496,527],find_apropo:393,find_topicmatch:393,find_topics_with_categori:393,find_topicsuggest:393,findfoo:137,fine:[17,23,37,42,44,46,47,55,67,77,95,116,117,119,122,125,128,132,133,134,136,138,141,144,158,168,172,175,209,210,342,376,468,476,496],finer:[55,341,342],finish:[11,16,23,45,52,54,85,113,119,138,140,151,155,162,175,178,192,205,208,217,219,230,232,234,277,282,287,296,297,309,320,342,375,376,402,420,432,443,458,465,475,480,496,525],finish_chargen:28,finit:169,fire:[0,9,13,20,23,28,42,45,47,84,86,94,95,128,133,136,140,152,154,155,162,170,172,173,177,208,209,213,261,293,314,315,402,407,420,429,431,448,480,481,487,496],firebal:[85,142,296,297],fireball_recip:85,fireballrecip:297,firebreath:[133,136,162],firefox:[0,53,189],firemag:297,firestorm:154,firestorm_lastcast:154,firewal:[183,187,197,202],first:[0,1,6,7,8,9,11,12,13,14,15,16,17,20,21,23,25,27,28,30,31,33,37,39,41,42,44,45,48,50,51,53,54,55,56,57,58,60,62,64,65,67,69,70,73,82,89,94,98,110,112,115,118,119,121,123,124,125,126,127,128,129,130,131,132,134,136,137,138,140,141,142,143,144,146,147,149,150,151,152,155,157,159,160,162,163,164,166,168,169,172,173,174,175,176,177,178,179,183,184,186,188,191,192,193,194,195,196,197,198,199,200,201,202,203,208,209,211,214,215,222,229,230,233,234,236,238,245,248,251,254,255,274,279,280,281,282,287,290,293,312,313,314,315,316,320,326,333,336,341,342,353,354,357,358,363,368,370,374,375,376,386,394,397,401,402,406,407,409,410,413,420,424,425,427,438,440,443,448,449,451,452,458,461,468,470,471,473,474,476,478,479,480,482,483,484,487,488,494,495,496,517],first_lin:175,first_nam:[211,504],firsthand:33,firstli:[8,37,53,124,129,130,197],fish:[146,216,309],fist:[134,407],fit:[0,5,30,31,39,68,72,84,132,143,144,150,157,162,174,178,183,293,297,313,316,479,481,482,496],five:[23,125,130,143,150,154,170,197,216,390,496,497],fix:[0,1,2,6,8,15,16,20,23,28,41,48,56,65,75,89,104,116,118,122,133,135,136,140,142,144,161,168,174,175,180,191,195,197,203,344,353,420,479,481,482,492],fix_sentence_end:482,fixer:130,fixtur:[233,243,252,283,298,317,339,355,357,364,446,456,488,520],fizzl:142,flag:[0,15,16,21,23,28,32,47,50,62,65,67,69,124,125,128,133,135,140,144,154,155,156,162,175,201,208,213,215,217,222,277,279,280,282,296,298,368,374,397,398,402,420,427,431,440,443,448,459,478,480,496],flagnam:[277,279,280],flair:144,flakei:0,flame:[154,297,315],flash:[16,106,201,368],flat:[0,1,2,20,48,80,120,131,160,205,407,499],flatfil:160,flatpag:[201,527],flatpagefallbackmiddlewar:201,flatten:407,flatten_diff:407,flatten_prototyp:407,flattened_diff:407,flavor:[0,58,128,141,197,315],flavour:[36,176],flaw:174,fled:[147,374],fledg:[17,69,71,113,117,142,148,175,178,197,221],flee:[147,171,316,374],fleevalu:147,flesh:[128,142,162],flexibl:[0,15,28,41,42,68,69,80,91,111,116,133,136,141,142,144,146,147,152,155,157,161,170,179,197,211,222,245,287,296,315,384,390,444,468,480,496,545],fli:136,flick:497,flicker:368,flip:[26,28,166,234],flood:[20,27],floor:[94,96,167,277,279,354,357],flour:[85,117,296],flourish:468,flourrecip:296,flow:[4,18,24,47,51,62,65,67,89,116,121,125,139,140,144,237,476,480],flower:[36,37,55,119,125,128,129,130,137,139,140,141,222,483],flowerpot:[55,161],fluent:181,fluffi:[133,134,136],fluid:[18,56],flurri:354,flush:[11,23,170,183,201,232,468,470,487],flush_cach:487,flush_cached_inst:487,flush_from_cach:487,flush_instance_cach:487,flusher:487,flushmem:232,fluttersprit:0,fly:[0,20,21,23,28,30,31,41,42,55,85,122,130,132,133,137,149,152,168,208,228,230,238,394,402,406,415,427,438,441,445,468,474,484,496],fnmatch:468,foci:142,focu:[89,123,127,140,142,147,277,279],focus:[9,89,160,161,175,181,277,279,316,519],focused_object:277,foe:313,foilag:116,fold:[111,142,390],folder:[0,2,9,10,11,15,16,20,50,51,53,64,67,73,83,89,98,112,116,117,118,119,122,128,131,132,133,135,146,147,149,151,152,156,159,161,162,164,170,171,172,175,178,179,182,190,191,192,193,195,196,199,203,312,313,314,315,316,420,494,527],follow:[4,6,7,9,11,12,13,14,15,16,18,19,21,23,27,28,30,31,32,33,37,39,42,46,48,50,51,53,54,56,57,60,62,64,67,68,73,75,78,80,81,82,84,89,92,94,95,96,97,98,104,110,111,116,117,118,119,123,124,125,126,128,130,132,133,134,135,136,140,143,144,145,146,147,153,157,159,162,163,164,167,168,169,171,173,174,175,178,179,181,182,183,185,186,187,188,191,192,193,195,196,197,199,201,203,208,209,211,213,214,217,222,229,230,233,236,237,238,245,248,254,255,261,290,293,296,300,303,314,315,341,342,354,358,376,390,392,394,395,397,398,401,402,405,406,407,410,411,424,425,429,435,444,448,449,452,462,468,470,473,474,476,479,480,481,482,489,496,521],follwo:398,fond:163,font:[51,119,132,153,170,342],foo1:14,foo2:14,foo:[0,12,14,19,23,28,30,31,34,42,45,46,62,65,68,111,116,126,130,131,132,133,135,137,201,222,341,343,390,395,420,468,480,483,494],foo_bar:68,foobar:28,foobarfoo:55,food:[85,94,296],fooerror:480,fool:142,foolish:368,footer:[0,53,116,164,178,201,217,402,481],footer_fil:201,footer_star_color:201,footer_text_color:201,footnot:[17,119],footprint:232,footwear:161,for_cont:402,forai:132,forbidden:12,forc:[0,10,21,23,42,48,54,96,103,104,116,126,136,143,144,146,147,162,166,167,169,174,175,182,192,193,199,203,209,216,220,222,227,287,297,300,309,320,321,341,353,354,358,398,402,406,412,431,432,438,443,461,463,481,482,487,489,496],force_init:402,force_repeat:[42,147],force_str:[0,492],forceutcdatetim:321,forcibl:412,fore:458,forebod:320,foreground:[0,6,60,82,176,192,201,202,248,420,473,483],foreign:[48,130],foreignkei:[211,401,410,470,488,505,512],forens:381,forest:[15,46,74,98,116,132,170,320],forest_meadow:46,forest_room:46,forestobj:74,forget:[2,15,20,23,54,67,124,126,133,135,136,149,153,163,168,175,185,189,192,201,354,474],forgiv:144,forgo:375,forgot:0,forgotten:[118,133,154,159,168],fork:[2,75,124,181,548],forloop:164,form:[0,8,10,12,14,15,19,20,21,23,24,28,30,31,32,33,37,39,41,46,47,48,50,52,58,65,68,70,71,72,73,83,85,89,92,101,104,110,116,117,118,119,120,121,122,125,126,132,134,136,137,139,140,143,147,162,172,175,201,205,206,208,209,210,214,216,217,220,222,227,230,233,236,237,238,277,284,287,296,300,344,353,354,358,381,384,392,394,397,398,400,402,406,407,411,413,415,418,438,440,444,448,459,461,468,469,470,473,474,476,477,478,479,480,482,483,484,489,492,493,496,497,499,500,502,504,505,506,508,509,510,512,514,519,535,540,542,547,548],form_char:479,form_class:[53,540,542],form_template_to_dict:384,form_url:504,form_valid:[540,542,547],formal:[0,33,125,139,140,402,444,500],format:[0,6,12,16,18,19,20,21,23,24,31,57,60,64,65,68,69,70,72,80,82,94,95,110,114,115,116,118,119,121,125,130,134,144,146,162,164,166,170,175,178,181,183,198,199,215,217,219,222,229,233,236,237,245,248,251,264,274,278,284,290,296,314,333,341,354,358,366,373,380,384,390,392,394,402,404,406,407,411,420,425,435,440,460,462,468,470,473,474,476,478,480,481,482,484,489,491,496,497,519,522],format_:222,format_account_kei:222,format_account_permiss:222,format_account_typeclass:222,format_alias:222,format_attribut:222,format_available_protfunc:406,format_callback:258,format_channel_account_sub:222,format_channel_object_sub:222,format_channel_sub_tot:222,format_char:222,format_current_cmd:222,format_destin:222,format_diff:407,format_email:222,format_exit:222,format_extern:236,format_grid:[0,496],format_help:274,format_help_entri:229,format_help_index:229,format_hom:222,format_kei:222,format_loc:222,format_lock:222,format_log_ev:489,format_merged_cmdset:222,format_messag:236,format_nattribut:222,format_output:222,format_permiss:222,format_script:222,format_script_desc:222,format_script_is_persist:222,format_script_timer_data:222,format_send:236,format_sess:222,format_single_attribut:222,format_single_attribute_detail:222,format_single_cmdset:222,format_single_cmdset_opt:222,format_single_tag:222,format_stored_cmdset:222,format_t:496,format_tag:222,format_text:245,format_th:222,format_typeclass:222,format_usag:274,formatt:[0,298,384,406,480,481],formcallback:[91,384],formchar:[162,479],formdata:[91,384],former:[18,122,176,183,296,480],formfield:492,formhelptext:384,formset:[505,512],formstr:162,formtempl:[91,384],formul:179,fort:0,forth:[12,20,222,315],fortress:170,fortun:[11,23,94,123,133,138,157,164],forum:[0,11,64,117,118,121,142,143,161,197,198,201,548],forward:[6,15,16,27,28,125,128,141,142,163,164,174,176,197,201,208,211,238,303,380,394,401,410,465,468,470,471,479,481,488],forwardfor:187,forwardmanytoonedescriptor:[401,410,488],forwardonetoonedescriptor:[401,410,488],foster:19,foul:41,found:[0,6,8,10,11,13,14,15,16,17,19,20,21,23,28,31,32,33,37,38,39,41,46,48,49,50,51,53,54,58,62,64,65,73,75,77,80,89,98,113,116,117,119,121,123,124,126,130,131,132,133,134,135,137,138,144,146,147,153,157,158,159,161,162,168,169,175,179,180,183,196,197,199,200,201,202,205,208,210,212,213,214,215,217,222,227,230,231,234,236,245,258,260,261,287,341,342,343,344,354,358,376,392,394,398,400,402,405,406,407,409,412,415,419,420,426,435,438,449,459,461,468,469,470,473,474,475,476,480,482,483,487,491,493,496,525],foundat:[121,130,159,181,312],four:[16,20,36,60,62,67,90,119,123,137,146,148,157,167,170,216,238,320,398],fourth:157,fqdn:197,fractal:160,fraction:142,frame:51,framework:[0,49,51,52,53,56,117,122,143,149,151,178,201,233,312,315,492,516,517,519,521,522,548],frankli:72,free:[5,9,28,31,46,64,75,80,96,101,104,111,117,118,121,122,130,140,142,147,155,161,175,176,178,181,197,277,287,313,354,390,406],freed:201,freedn:197,freedom:[1,16,142,158,193],freeform:[81,142,146,147,290],freeli:[116,192,199,474],freenod:[181,189,197,209,227,461],freetext:[35,237,493],freez:[6,23,94,155,260],french:64,frequenc:[7,353],frequent:[94,169,245],fresh:[11,21,89,116,133,162,190,420],freshli:170,fri:55,friend:[118,126,140,143,162,167,199],friendli:[80,110,118,119,135,178,180,211,358],friendlier:[236,402],frighten:314,from:[0,1,3,4,5,6,7,9,10,11,12,13,14,15,16,17,18,19,20,21,23,24,25,27,29,30,32,33,34,35,36,37,39,40,41,42,44,45,46,47,48,49,50,52,53,54,55,56,57,58,60,62,63,64,65,67,69,70,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,122,124,125,126,127,129,130,131,132,133,134,136,137,138,140,141,142,143,144,146,147,149,151,152,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,179,181,182,183,185,187,188,189,190,191,193,195,196,198,199,200,201,202,203,205,206,208,209,210,211,212,213,214,215,216,217,219,220,221,222,227,228,229,230,231,232,233,234,236,237,238,245,248,251,255,260,261,264,270,271,274,277,278,279,280,282,284,287,290,293,296,297,298,300,303,306,309,312,313,314,315,316,320,326,329,333,335,336,341,342,343,344,347,350,353,354,357,358,368,374,375,376,380,381,382,384,386,390,392,393,394,397,398,399,400,401,402,406,407,409,410,411,412,414,415,417,420,424,425,426,427,429,430,431,432,433,437,438,439,440,443,448,449,451,452,454,458,459,460,461,463,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,481,482,483,484,487,488,489,490,492,493,494,495,496,497,499,500,505,506,512,514,516,517,519,522,525,527,536,542,544,547,548],from_channel:209,from_db_valu:492,from_nod:480,from_obj:[58,65,166,172,208,209,217,300,366,402],from_pickl:477,from_prototyp:0,from_tz:497,frombox:429,fromstr:429,fromtimestamp:[321,484],front:[12,15,33,41,51,125,126,130,135,146,150,168,182,199,201,204],frontend:[49,111,390,468],frontpag:[50,53,131,137,205,206,502,503,513],frost:141,frozen:[23,155,261],fruit:[103,117,309],ftabl:496,ftp:[75,495],fuel:[110,141,152,315,358],fugiat:29,fulfil:[85,133,138,143,420],full:[0,1,5,8,10,11,12,15,16,17,18,20,23,26,28,30,33,34,37,39,41,42,44,47,48,56,58,68,69,71,73,77,78,85,89,90,93,94,104,110,111,112,113,114,116,117,118,119,121,122,123,124,126,128,130,131,135,136,141,142,144,146,147,148,151,152,153,161,162,165,170,171,174,175,178,179,183,184,190,191,192,197,201,203,209,214,216,217,221,222,227,229,231,232,233,236,245,254,270,274,278,282,284,287,296,306,315,320,341,343,344,350,353,354,358,373,390,398,400,407,411,432,438,451,461,462,468,470,474,478,480,482,483,494,496,548],full_desc:279,full_justifi:41,full_nam:36,full_result:347,full_system:[89,201,205,206,239,548],fullchain:187,fuller:162,fullest:143,fullfil:400,fulli:[0,7,14,23,28,57,64,67,89,116,121,123,127,144,162,168,197,199,203,208,237,353,398,402,413,448,460,476,496],fun:[1,7,128,140,141,142,151,166,170,181],func1:[222,398,452],func2:[222,398,452],func:[0,6,23,27,28,30,33,54,58,65,80,84,94,114,119,126,132,134,137,144,146,147,152,153,154,155,156,158,160,162,163,166,167,168,169,174,175,188,201,213,217,219,220,221,222,227,228,229,230,231,232,233,234,245,251,255,259,270,273,274,277,287,290,293,296,297,300,303,306,309,312,313,314,315,316,320,326,329,335,347,354,368,370,374,375,376,384,390,397,398,402,431,451,452,456,465,478,480,481,483,484,494,496,545],func_test_cmd_task:233,funcdef:483,funciton:315,funcnam:[28,30,32,71,132,201,398,405,406,415,480,483,496],funcpars:[0,24,41,58,65,71,120,170,200,201,205,206,405,461,472,496],funcparser_cal:[405,483],funcparser_callable_add:483,funcparser_callable_center_justifi:483,funcparser_callable_choic:483,funcparser_callable_clr:483,funcparser_callable_conjug:483,funcparser_callable_crop:483,funcparser_callable_div:483,funcparser_callable_ev:483,funcparser_callable_justifi:483,funcparser_callable_left_justifi:483,funcparser_callable_mult:483,funcparser_callable_pad:483,funcparser_callable_pronoun:483,funcparser_callable_pronoun_capit:483,funcparser_callable_randint:483,funcparser_callable_random:483,funcparser_callable_right_justifi:483,funcparser_callable_round:483,funcparser_callable_search:483,funcparser_callable_search_list:483,funcparser_callable_spac:483,funcparser_callable_sub:483,funcparser_callable_toint:483,funcparser_callable_y:483,funcparser_callable_you_capit:483,funcparser_escape_char:201,funcparser_max_nest:201,funcparser_outgoing_messages_modul:[201,461],funcparser_parse_outgoing_messages_en:[71,201],funcparser_prototype_parsing_modul:201,funcparser_start_char:201,function_nam:232,function_or_method:496,functioncal:429,functionnam:[30,429],functionpars:[30,406],functool:195,fundament:[23,37,46,132,133,135,136,142,161,201,402],fur:297,furnac:[296,297],furnitur:[15,46,48],furst:358,further:[5,6,9,12,19,20,21,31,41,44,48,49,61,65,67,75,85,96,116,117,119,124,125,133,137,144,150,158,159,161,168,169,170,192,197,200,201,203,216,222,312,314,316,342,344,353,407,420,444,496],furthermor:[119,176],fuss:192,futur:[12,14,27,36,54,115,119,124,125,127,128,134,135,139,140,143,144,145,148,150,158,162,163,175,183,195,219,261,297,333,375,425,469,490,497],futurist:163,fuzzi:[31,210,227,296,393,400,493,496],fuzzy_import_from_modul:496,gadea:75,gag:[184,201],gagprompt:201,gain:[7,104,125,130,139,140,144,155,201,217,232,238,314,354,398,402],galosch:353,gambl:[28,347],game:[2,3,4,5,6,7,8,9,13,15,16,17,18,21,23,24,25,26,27,28,29,30,33,35,36,37,39,40,41,44,45,46,47,48,49,50,51,52,54,57,58,60,63,64,65,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,85,86,87,90,91,92,93,95,96,98,103,104,105,108,111,112,113,114,116,117,118,119,120,122,123,124,126,127,128,129,130,131,133,134,135,136,137,138,139,141,144,145,147,148,149,150,151,152,153,154,155,156,158,160,164,165,166,168,169,171,172,174,177,178,179,180,181,182,183,184,186,187,188,189,191,193,195,196,198,199,201,202,203,205,206,207,208,209,210,211,213,215,216,217,219,220,221,222,226,227,228,229,232,233,234,235,236,237,238,239,245,251,252,254,255,259,260,261,262,274,275,277,278,279,282,285,287,290,295,297,303,312,313,314,315,316,318,320,329,336,338,341,342,343,344,347,350,353,354,368,373,376,384,386,390,392,393,394,399,400,401,402,409,410,412,413,416,420,422,423,424,425,431,432,437,439,440,443,444,451,452,453,458,459,461,469,470,471,474,475,476,478,479,484,487,489,494,496,504,505,512,517,522,529,545,548],game_dir:[4,201,489,496],game_epoch:[20,484],game_index_cli:[205,206,416],game_index_en:[0,185,201],game_index_list:[185,201],game_nam:[185,201],game_slogan:[53,124,201],game_statu:[185,201],game_system:[77,81,84,85,92,97,101,103,112,118,201,205,206,239,548],game_templ:[53,131,196,201],game_websit:[185,201],gamedir:[0,28,41,53,116,125,201,420,466,494],gamedirnam:162,gameim:[117,548],gameindexcli:423,gamemap:98,gameplai:[75,117,125,127,142,197,277],gamer:[186,189],gamesrc:[0,20],gametim:[20,30,86,90,117,120,165,201,205,206,250,251,261,320,472,548],gametime_to_realtim:251,gametimescript:251,gameworld:134,gammon:[181,435],gandalf:28,garbag:468,garbl:[104,117,141],garden:181,garment:[81,290],gate:[31,113,116,140,342],gatekeep:31,gatewai:[203,449],gather:[10,23,31,52,65,151,177,184,201,213,214,376,418,422,476,493],gaug:[141,205,239,345,356,357],gaugetrait:358,gave:[0,122,133,152,169,176,499,501],gbg:473,gcc:[135,136,193,195],gcreat:222,gear:[9,151,197,209,216,234,255],gemb:75,gemer:[105,386],gen:18,gender:[58,92,117,300,483,500],gendercharact:[92,300],gendersub:[205,206,239,285,548],gener:[4,7,9,10,14,19,21,23,24,26,28,31,33,36,39,41,42,44,46,50,51,53,54,55,60,64,65,67,68,75,76,77,78,79,81,82,83,84,85,86,87,88,89,90,91,92,93,94,96,97,98,99,100,101,102,103,104,106,107,108,109,110,111,112,113,114,115,116,117,118,119,121,122,124,125,126,128,132,137,138,139,140,141,144,146,147,153,155,159,161,162,163,165,170,176,179,183,187,195,197,200,201,205,206,208,209,210,212,217,218,219,222,229,230,231,233,234,236,243,245,255,261,273,274,277,279,280,287,290,296,297,300,303,306,312,313,314,315,316,320,326,329,335,342,347,353,354,368,370,373,374,376,380,381,384,385,386,387,390,393,394,398,400,402,404,406,407,409,431,438,440,443,444,448,451,459,460,461,465,468,471,472,473,475,476,478,481,482,483,484,489,491,492,496,520,521,522,528,536,540,541,542,544,545,546,548],general_context:[201,205,206,502,526],generalviewsetmixin:522,generate_prototype_kei:342,generate_sessid:438,generic_mud_communication_protocol:444,genericbuildingcmd:[80,245],genericbuildingmenu:245,genesi:197,geniu:[103,309],genr:[118,122,434],genuin:142,geoff:[114,117,274],geograph:74,geographi:157,geoip:380,geometr:170,geometri:170,get:[0,1,5,6,7,8,9,10,11,12,13,14,15,17,18,19,21,23,26,27,30,31,32,33,34,35,36,40,42,44,45,46,48,49,51,53,54,55,56,58,60,62,64,65,67,68,73,77,80,83,85,87,89,95,96,97,104,105,106,108,109,110,111,112,113,115,116,117,119,121,122,124,125,126,127,131,132,133,134,135,136,137,138,139,140,141,142,143,144,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,166,167,168,169,170,172,174,175,176,178,179,182,183,185,186,188,189,191,192,193,195,197,199,200,201,202,203,208,209,210,211,215,216,217,219,220,222,223,227,228,229,234,236,237,238,245,258,260,261,264,277,279,280,282,290,303,309,312,313,316,329,333,335,339,341,342,343,344,347,354,357,358,363,368,370,375,376,386,390,392,393,394,398,400,401,402,404,406,407,409,410,412,415,418,420,425,429,430,434,438,440,443,444,446,448,449,457,459,460,461,463,468,469,470,471,473,474,475,478,480,482,483,484,486,487,489,490,491,493,496,499,501,504,506,509,510,514,516,519,521,536,544,545,548],get_absolute_url:[179,236,394,470],get_account:[398,459],get_account_from_email:210,get_account_from_nam:210,get_account_from_uid:210,get_al:468,get_alia:469,get_alias:519,get_all_attribut:468,get_all_cached_inst:487,get_all_categori:393,get_all_channel:237,get_all_charact:280,get_all_cmd_keys_and_alias:215,get_all_cmdset:496,get_all_lockfunc:0,get_all_mail:303,get_all_puppet:208,get_all_script:409,get_all_scripts_on_obj:409,get_all_sync_data:461,get_all_top:393,get_all_typeclass:[0,496],get_and_load_cmdset:514,get_and_load_typeclass:514,get_and_merge_cmdset:216,get_app_list:527,get_attack:[312,313,314,316],get_attr:222,get_attribut:[469,519],get_browserstr:449,get_buff:478,get_by_alia:469,get_by_attribut:469,get_by_nick:469,get_by_permiss:469,get_by_tag:469,get_cach:468,get_cache_kei:463,get_cached_inst:487,get_callback:261,get_channel:237,get_channel_alias:227,get_channel_histori:227,get_charact:459,get_client_opt:425,get_client_s:459,get_client_sess:[448,449],get_client_sessid:449,get_cmd_signatur:279,get_command_info:[0,217,230],get_components_with_symbol:341,get_connected_account:210,get_cont:[400,519],get_content_nam:402,get_context_data:[53,541,544,545,547],get_damag:[312,313,314],get_db_prep_lookup:492,get_db_prep_valu:492,get_dbref_rang:[210,400,409,469],get_def:414,get_default:492,get_defens:[312,313,314,316],get_direct:[116,342],get_display_nam:[6,30,58,80,94,95,104,116,162,167,208,333,344,354,402,470],get_display_symbol:[116,342],get_err_msg:[33,128],get_ev:261,get_evennia_pid:496,get_evennia_vers:496,get_event_handl:264,get_exit:[116,343,519],get_exit_spawn_nam:[116,342],get_extra_info:[217,402,470],get_famili:[48,130],get_fieldset:509,get_form:[504,506,509,510],get_formatted_obj_data:222,get_formset:[505,512],get_game_dir_path:496,get_height:482,get_help:[23,31,164,217,233,259,274,279,480],get_help_categori:544,get_help_text:464,get_help_top:544,get_hint:282,get_id:[178,414,469],get_info_dict:[437,458],get_initi:547,get_input:[0,480,494],get_inputfunc:[68,425,444,461],get_internal_typ:492,get_kwarg:537,get_linked_neighbor:342,get_location_nam:[115,333],get_log_filenam:236,get_map:[116,343],get_mass:167,get_message_by_id:237,get_messages_by_receiv:237,get_messages_by_send:237,get_min_height:482,get_min_width:482,get_msg_by_receiv:35,get_msg_by_send:35,get_new:439,get_new_coordin:333,get_next_by_date_join:211,get_next_by_db_date_cr:[211,238,394,401,410,468,470],get_next_wait:264,get_nick:[469,519],get_nicklist:[209,432],get_node_from_coord:341,get_numbered_nam:402,get_obj_coordin:333,get_object:[282,522,541,544,547],get_object_with_account:[400,493],get_objs_at_coordin:333,get_objs_with_attr:400,get_objs_with_attr_match:400,get_objs_with_attr_valu:400,get_objs_with_db_properti:400,get_objs_with_db_property_match:400,get_objs_with_db_property_valu:400,get_objs_with_key_and_typeclass:400,get_objs_with_key_or_alia:400,get_oth:287,get_permiss:[469,519],get_pid:420,get_player_count:434,get_posit:279,get_previous_by_date_join:211,get_previous_by_db_date_cr:[211,238,394,401,410,468,470],get_puppet:[13,208,459],get_puppet_or_account:459,get_queryset:[541,542,544],get_rang:316,get_recently_connected_account:210,get_recently_created_account:210,get_redirect_url:542,get_regex_tupl:354,get_respons:530,get_room:[116,343],get_room_at:157,get_rooms_around:157,get_serializer_class:522,get_sess:461,get_session_id:519,get_short_desc:279,get_shortest_path:[116,341],get_spawn_xyz:342,get_stat:133,get_statu:430,get_subscript:237,get_success_url:547,get_sync_data:460,get_system_cmd:215,get_tag:[469,519],get_tag_queri:516,get_time_and_season:320,get_typeclass_tot:469,get_uptim:434,get_url:509,get_username_valid:[0,208],get_valu:[68,425,444],get_value_displai:519,get_vari:[258,261],get_view_detail:520,get_visible_cont:402,get_visual_rang:[116,341],get_weight:342,get_width:482,get_wilderness_script:332,get_worn_cloth:290,get_xyz:[116,344],get_xyz_exit:[116,344],get_xyzgrid:[116,343],getattr:34,getbootstrap:56,getchild:465,getclientaddress:[62,440],getcwd:201,getdefaultencod:544,getel:51,getenv:[201,420,430],getgl:51,getinput:480,getkeypair:440,getloadavg:191,getlogobserv:489,getobject:75,getobjectacl:75,getpeer:440,getpid:496,getportallogobserv:489,getserverlogobserv:489,getsizof:487,getsslcontext:[441,445],getstartedwiths3:75,getston:23,getter:[37,211,238,290,313,316,354,401,402,427,468,501],gettext:64,gfg:473,ghost:31,ghostli:376,giant:152,giantess:133,gid:[7,192,452],gidcount:451,gift:164,gig:142,girl:[125,402],gist:[53,353,496],git:[2,5,11,64,67,69,119,124,153,181,183,190,191,192,196,197,202,548],github:[0,1,2,5,64,84,89,95,118,119,124,131,140,153,161,181,190,191,193,198,245,293,429,448,465,496,548],gitignor:12,give:[0,1,5,7,8,10,11,13,14,15,17,19,20,23,26,28,29,30,33,37,39,41,42,44,45,46,47,48,50,53,54,55,57,58,68,70,74,77,80,94,95,96,98,104,105,111,112,113,115,116,117,119,121,122,123,124,125,126,127,128,130,131,132,133,134,135,136,137,138,139,140,141,143,145,146,147,149,151,152,153,156,157,158,161,162,163,164,165,167,168,169,170,171,172,175,178,179,181,183,191,192,193,195,197,198,199,201,203,208,213,215,216,219,222,227,228,230,236,237,245,277,279,280,282,290,297,312,313,314,315,316,320,333,341,342,353,368,370,376,386,390,400,402,409,410,424,446,452,459,465,468,473,480,482,493,494,496,499,501,519],given:[0,1,6,7,8,10,13,14,15,16,20,21,23,24,27,28,30,31,32,33,34,35,37,39,41,42,44,47,48,53,54,55,58,59,60,64,65,67,68,70,73,74,79,80,84,86,89,91,94,95,96,100,103,110,111,116,117,119,122,123,126,128,129,132,133,135,136,138,141,142,146,147,152,153,157,159,162,163,168,171,175,176,178,179,192,194,197,201,203,208,210,213,214,215,216,217,219,220,222,227,229,231,232,233,236,237,238,245,251,254,255,258,260,264,270,274,277,279,280,282,284,290,293,296,297,300,309,312,313,314,315,316,320,326,335,341,342,343,344,347,350,353,354,358,366,368,375,376,384,386,390,395,397,398,400,402,404,406,407,409,411,412,413,415,418,420,425,426,429,438,443,444,449,452,455,459,460,461,462,463,464,465,468,469,470,471,473,474,476,477,478,479,480,481,482,483,484,487,489,491,492,493,494,496,499,500,501,504,517,525,528,541,542,544],given_class:524,giver:[109,117,141,313,316,402],glad:169,glade:[116,132],glanc:[20,21,23,80,104,157,162,169,245,354],glance_exit:80,glass:[106,309,368],glob:[28,228,480],global:[0,7,12,15,23,25,28,30,32,37,41,42,44,47,48,51,69,74,75,80,85,90,94,116,122,125,137,139,140,160,168,173,177,187,200,201,222,236,261,281,296,320,326,335,343,354,386,400,402,407,408,409,410,414,417,420,425,427,430,451,452,474,475,476,480,483,484,493,494,496,529],global_script:[0,24,201,205,475],global_search:[15,20,80,162,169,208,354,402,469],globalscriptcontain:475,globalth:494,globe:[151,197],glori:138,glorifi:[110,358],gloriou:130,glossari:193,glow:170,glu:40,glyph:429,gmcp:[0,32,65,444],gmsheet:162,gmt:[75,132,489],gmud:184,gno:80,gnome:[64,184],gnu:16,go_back:[390,480],go_up_one_categori:390,goal:[42,113,119,140,143,144,169,181,199,353,548],goals_of_input_valid:536,goblin:[28,41,132,222,407],goblin_arch:407,goblin_archwizard:407,goblin_wizard:407,goblinwieldingclub:41,god:[31,39,128,190,392],godhood:[125,127],godlik:[104,354],goe:[1,6,23,24,42,62,67,80,96,115,116,122,124,136,142,146,155,159,164,172,174,175,191,197,201,215,216,279,282,316,333,341,342,402,440,443,458,459,495,496,547],goff:[94,105,117,386],going:[1,28,30,50,53,62,68,80,94,95,96,104,116,128,130,133,135,137,140,142,147,149,153,159,162,163,164,167,169,170,174,178,186,187,192,197,201,245,312,313,314,315,316,333,354,368,373,376,402,417,422,473,480,519],goings:422,gold:[28,41,136,141,167,168,474],gold_necklac:14,gold_val:168,gold_valu:168,goldenlayout:24,goldenlayout_config:51,goldenlayout_default_config:51,gone:[33,55,94,128,133,135,137,138,142,158,168,192,201,280,341],good:[1,7,8,9,10,12,13,14,16,19,20,21,23,28,30,33,35,36,41,42,48,50,53,55,60,62,77,80,83,84,85,94,95,96,113,117,118,119,121,123,124,125,126,128,130,131,135,140,141,142,143,144,145,146,152,153,157,159,160,161,164,165,168,169,170,174,175,176,178,179,181,185,189,190,193,197,199,201,203,208,215,216,217,233,260,287,293,339,354,443,452,480,483],goodby:[28,440],goodgui:398,googl:[0,75,119,181,191,197,201,227,482],googlegroup:40,googli:[53,151],gorgeou:116,gossip:[181,186,201,227],got:[0,11,12,15,49,54,111,126,133,134,135,136,147,375,390],goto_cal:[28,480],goto_cleanup_cmdset:373,goto_command_demo_comm:373,goto_command_demo_help:373,goto_command_demo_room:373,goto_kwarg:480,goto_next_room:174,gotostr_or_func:480,gotten:[121,143,316,375,402,447],gpath:201,gpl2:499,graaah:171,grab:[14,23,26,126,128,146,178,228,375,519,547],gracefulli:[1,219,232,354,402,420,496],gradual:[0,15,16,104,110,140,141,155,181,353,358],grai:[60,176,201],grain:[47,210,476],gram:167,grammar:[58,104,279,353],grammat:[58,104,143,353,354],grand:[14,31,98],grant:[12,24,33,39,57,183,238,312,316,397,398,406,468,517,540,546],granular:316,grapevin:[0,201,202,205,206,209,227,416,428,548],grapevine2chan:[26,31,126,186,201,227],grapevine_:227,grapevine_channel:[186,201,209,227],grapevine_client_id:[186,201],grapevine_client_secret:[186,201],grapevine_en:[186,201,227],grapevinebot:209,grapevinecli:431,graph:[12,159,341],graphic:[0,6,11,33,34,49,50,52,65,73,125,127,143,162,170,205,255,350,444],grasp:[176,178],grave:113,grayscal:[82,201,248],great:[16,28,30,31,42,45,50,56,69,75,80,85,91,94,96,113,116,117,118,123,135,140,143,146,152,155,157,161,164,169,175,179,181,245,314,384,465],greater:[8,21,33,44,80,130,397,480],greatli:[94,180],greek:17,green:[12,21,33,41,60,116,135,176,201,222,232,279,315,375,473],greenforest:116,greenskin:407,greet:[25,44,94,95,124,171,200],greetjack:36,greg:[0,181],grei:[41,116,176,473],grenad:37,grep:[12,191],greyscal:[60,473],greyskinnedgoblin:41,griatch:[0,67,77,78,79,82,85,86,87,88,89,90,92,99,100,101,102,104,106,107,108,109,110,113,116,117,126,130,152,247,248,250,251,253,255,269,270,276,286,287,295,296,299,300,303,305,306,312,313,315,319,320,325,326,328,329,334,346,347,352,353,354,356,358,360,362,363,365,367,368,369,370,372,373,375,479,487,492,495,499,500],grid:[0,56,90,98,107,108,115,125,170,175,202,205,206,229,239,316,496,548],gridmap:116,gridpoint:[339,341],gridsiz:339,grief:55,griefer:179,grin:[23,141,468,483,501],grip:[119,297],gritti:23,ground:[94,113,121,125,128,130,134,152,170],group:[0,1,19,23,26,31,41,46,48,50,54,55,57,74,76,94,95,104,122,123,124,125,126,127,132,137,142,152,169,181,192,201,210,211,218,222,228,229,237,309,320,353,375,376,402,406,407,429,452,468,471,473,476,504,512],groupd:468,grow:[1,15,19,121,130,134,140,141,153,181,203,341,358,431,432,482,496],grown:[28,72,124,153],grudg:146,grungi:302,grungies1138:[97,109,117,303,369,370],grunt:[222,407],gsg:75,gstart:222,gthi:166,gtranslat:64,guarante:[14,39,42,67,87,118,141,187,197,261,347,406,438,459,470,483],guard:[28,116,142,297,342],guardian:113,guess:[17,27,70,80,95,164,169,199,245,407],guest1:[63,201],guest9:[63,201],guest:[0,39,61,120,201,208,548],guest_en:[39,63,201],guest_hom:[63,178,201],guest_list:[63,201],guest_start_loc:[63,201],guestaccount:46,gui:[0,51,52,65,142,161,201,303],guid:[4,11,88,99,151,166,178,516],guidelin:[119,181],guild:[0,19,46,67,89,117,142,172,181,227],guild_memb:28,gun:[58,152],gun_object:58,guru:121,gush:94,gzip:243,habit:160,habitu:47,hack:[121,146,147,429],hacker:[181,199],hackish:0,had:[1,11,12,16,17,21,42,57,73,85,118,121,124,125,127,128,130,133,134,135,136,140,142,152,155,175,182,192,197,217,221,233,277,290,342,375,407,410,420,470,474,481,499,501,536],hadn:[12,140,163],hair:297,half:[69,394],hall:[31,159],hallwai:159,halt:170,hammer:[85,296,297],hand:[17,28,36,37,44,58,62,69,77,94,98,117,118,121,130,134,136,139,141,146,160,161,162,179,217,222,228,230,232,287,297,519],hander:130,handi:[6,135,178,191,314],handl:[0,7,8,11,13,14,15,17,19,20,23,27,28,30,32,33,36,37,44,47,48,51,52,53,58,61,62,65,67,68,69,72,75,76,77,80,85,94,96,106,109,116,118,120,121,122,123,124,125,126,130,131,132,134,135,136,137,139,140,143,144,147,158,159,160,163,168,169,171,176,177,182,184,187,191,192,200,201,202,208,209,210,212,213,215,216,222,223,227,228,231,255,261,264,273,274,279,284,287,296,297,312,313,314,315,316,320,326,335,342,354,368,370,375,376,381,390,391,392,401,402,405,406,407,410,411,414,417,420,424,425,429,430,432,433,440,443,444,447,449,451,460,461,468,470,473,474,476,477,478,480,481,482,484,487,495,496,505,512,530],handle_answ:28,handle_appli:279,handle_consum:279,handle_egd_respons:422,handle_eof:440,handle_error:[227,261,414],handle_ff:440,handle_foo_messag:480,handle_int:440,handle_messag:480,handle_mix:279,handle_numb:480,handle_posit:279,handle_quit:440,handle_setup:[201,424],handle_single_first_spac:495,handler:[0,13,14,21,23,24,33,34,35,36,37,39,42,44,46,47,48,65,67,83,84,94,110,117,122,125,131,132,133,141,146,200,201,208,213,216,231,235,238,258,261,262,264,282,287,293,333,354,357,358,374,397,398,401,402,407,411,412,414,415,425,437,438,458,461,467,468,470,471,475,476,479,480,490,491,496,505,512,544],handlertyp:471,handshak:[29,65,184,430,436,438,443],handshake_don:443,hang:[119,136,140,143,149],happen:[0,1,6,7,8,11,14,19,20,21,23,28,30,33,39,42,44,45,47,52,53,55,57,65,67,68,69,84,86,87,94,96,116,117,121,122,126,128,133,134,135,142,143,144,146,147,157,158,161,162,163,169,170,175,176,178,185,189,197,201,203,208,215,216,227,236,251,279,281,282,293,312,316,329,333,341,374,376,402,407,414,422,429,432,452,457,459,460,461,470,480,481,487,489,496,517],happend:407,happi:[15,141,142,480],happier:169,happili:[19,126],haproxi:[197,202],hard:[1,7,8,12,15,17,20,21,23,30,31,41,42,46,47,54,57,62,64,68,75,91,111,119,122,124,130,131,133,136,137,140,143,144,162,174,178,181,192,193,195,197,231,384,390,410,420,468,470,480],hardcod:[74,133,161,162,170,192,468],hardcor:116,harden:195,harder:[7,55,116,130,133,140,142,144,160,375],hardwar:[197,433],hare:181,harm:[14,113,144,155,314],harsh:142,harvest:542,has:[0,4,6,7,8,10,11,12,13,14,15,16,17,19,20,21,23,27,28,30,31,32,33,35,36,37,39,41,42,44,45,46,47,48,49,50,51,53,54,55,56,57,58,60,62,64,65,67,68,70,72,73,75,76,77,79,80,84,89,91,94,95,96,97,98,103,104,110,111,112,116,117,118,119,120,121,122,123,124,126,128,129,130,132,133,134,135,136,137,138,141,142,143,144,147,148,151,152,153,154,155,157,158,159,160,161,162,163,164,168,169,171,172,174,175,176,177,178,179,180,181,182,183,185,186,187,188,191,192,195,196,197,199,200,201,203,204,207,208,209,214,215,216,217,219,221,222,227,229,230,232,233,234,236,237,238,243,245,251,255,261,274,277,279,287,293,296,303,309,312,313,314,315,316,320,333,339,341,342,343,344,347,354,358,363,368,374,375,376,384,386,390,392,394,397,398,400,401,402,406,407,409,410,413,414,415,420,422,425,429,432,434,438,442,447,448,452,458,459,460,461,463,468,469,470,471,476,478,479,480,482,483,487,489,490,493,494,496,501,504,505,512,516,517,522,536,537,544,546,547],has_account:[37,374,397,401,402],has_add_permiss:504,has_attribut:468,has_cmdset:216,has_connect:[19,236],has_consum:279,has_delete_permiss:504,has_drawn:159,has_nick:468,has_object_permiss:517,has_par:496,has_perm:[230,398],has_permiss:517,has_sub:236,has_tag:471,has_thorn:[14,137],hasattr:[23,154],hasbutton:279,hash:[16,41,75,116,197,407,415,448,452,461,469],hasher:7,hasn:[80,159,375,386,468,512,543],hassl:163,hast:314,hat:[81,290],hau:[186,201,209,227,431],have:[0,1,3,4,6,7,8,9,10,11,12,13,14,15,16,17,19,20,21,23,25,27,28,30,31,32,33,34,35,36,37,39,40,41,42,44,46,47,48,50,51,52,53,54,55,56,57,58,60,62,63,64,65,67,68,69,70,72,73,74,75,76,77,80,81,83,85,88,89,90,91,92,94,95,96,101,104,106,110,111,113,114,116,117,118,119,121,122,123,124,125,126,128,129,130,132,133,134,135,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,176,177,178,179,180,183,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,203,208,209,213,215,216,217,219,222,224,227,230,231,232,233,234,236,237,238,245,251,255,260,261,264,270,274,279,280,287,290,293,296,297,300,306,312,313,314,315,320,341,342,353,354,358,368,376,380,381,384,386,390,392,393,394,395,397,400,401,402,405,406,407,408,409,410,413,414,415,425,430,433,434,438,440,443,444,458,459,460,461,466,467,468,469,470,471,473,474,475,476,477,479,480,481,482,483,489,492,493,494,496,497,499,501,505,512,517,519,522,527,529,536,544,545,547,548],haven:[6,10,11,41,75,80,98,116,123,126,130,155,163,170,171,172,173,178,179,187,463],havint:50,hay:75,head:[9,21,31,64,94,95,128,130,141,143,152,164,174,175,190,548],header:[0,15,16,20,30,31,35,37,50,64,72,119,124,126,135,167,193,199,201,217,229,237,238,303,354,402,474,476,481,482],header_color:222,header_fil:201,header_line_char:482,header_star_color:201,header_text_color:201,headi:482,heading1:[119,482],heading2:[119,482],heading3:119,headless:402,heal:[83,110,112,117,137,141,142,297,314,315,376],healing_rang:315,healingrecip:297,health:[0,34,41,68,83,110,117,132,141,142,146,147,156,197,297,349,350,351,357,358,407,444,548],health_bar:[93,205,206,239,345,548],healthi:358,hear:[19,95,140,155,494],heard:[138,170],heart:[31,133,176],heartbeat:[47,431],heat:297,heavi:[0,14,20,23,33,75,77,94,122,128,142,146,147,167,175,183,287,313,354,433,496],heavier:[42,313],heavili:[0,20,62,67,75,113,116,118,124,138,161,191,200,245,312,313,314,315,316,470],heed:[44,398],hei:[77,128,141,287,303,353],height:[0,29,32,51,201,205,341,425,440,459,479,482],hel:0,held:[21,89,147,341,397],hello:[19,28,30,32,36,44,65,68,69,72,95,96,104,119,125,127,136,141,142,155,169,175,189,227,228,236,354,425,473,494],hello_valu:69,hello_world:[69,135,136],helmet:[14,141,155],help:[0,6,7,10,12,14,15,16,17,19,20,22,23,24,25,26,27,28,30,33,39,41,42,44,45,46,49,51,53,55,57,58,64,67,69,70,77,80,85,89,91,94,95,96,97,104,106,113,114,116,119,120,122,123,125,126,127,129,131,133,134,135,137,138,140,141,142,143,147,155,157,158,159,161,162,165,169,170,175,176,178,181,183,187,188,189,190,197,201,203,205,206,212,213,215,217,218,219,227,230,232,233,234,251,255,258,259,261,274,277,279,282,287,293,303,312,313,314,315,316,337,340,353,358,368,373,376,380,384,400,404,414,418,420,422,423,431,438,440,441,443,445,448,449,451,452,468,469,473,476,477,478,480,481,483,491,492,493,494,500,502,503,504,506,507,510,516,519,522,527,530,535,536,537,539,548],help_categori:[23,31,80,126,147,162,164,168,175,188,217,219,220,221,222,227,228,229,230,231,232,233,234,245,255,259,270,273,274,277,287,290,296,297,300,303,306,309,312,313,314,315,316,320,326,329,335,347,354,368,370,374,375,376,384,390,392,393,394,402,451,478,480,481,493,544],help_category_color:201,help_cateogori:478,help_clickable_top:201,help_detail:544,help_entri:[31,201,392,478,544],help_entry1:392,help_entry_color:201,help_entry_dict:[31,392],help_file_modul:392,help_kei:222,help_list:544,help_messag:229,help_mor:[201,229],help_more_en:[31,201],help_search_with_index:395,help_sstem:164,help_summary_text:89,help_system:164,help_text:[229,261,536],help_top:544,helpact:274,helparg:233,helpdetailtest:537,helpdetailview:544,helpentri:[31,33,49,164,229,392,393,394,476,508,519,541,544],helpentry_db_tag:508,helpentry_set:471,helpentryadmin:508,helpentryform:508,helpentrymanag:[393,394],helper:[0,10,28,30,39,41,57,94,104,110,116,117,126,129,130,133,134,137,142,162,201,205,208,216,219,222,227,229,237,245,251,279,284,296,298,312,316,340,342,343,344,353,358,402,406,407,417,429,430,449,461,474,480,481,483,489,494,495,496,506,514,520],helpfil:229,helpfilterset:[516,522],helplistseri:[519,522],helplisttest:537,helplistview:544,helplockeddetailtest:537,helpmixin:544,helppopup:201,helpseri:[519,522],helptaginlin:508,helptext:[0,28,404,480],helptext_formatt:[0,28,404,480],helpviewset:522,henc:[8,9,80,95,96,135,136,274,376,474],henceforth:[12,15,33,44,63,74,158,170,175,177,197,461],henddher:[103,117,308,309],hendher:0,her:[58,92,138,141,290,300,483,500,501],herbal:479,herd:183,here:[0,2,3,4,5,6,7,9,10,11,12,13,14,15,16,17,18,20,23,26,28,30,31,32,33,34,35,36,37,40,41,42,44,45,47,48,49,51,53,54,56,57,58,60,62,64,65,67,68,69,70,72,73,75,77,80,81,85,86,94,95,96,98,104,105,108,110,112,113,114,116,117,118,119,120,122,123,124,125,126,128,130,131,132,133,134,135,136,137,138,140,141,142,143,144,146,147,149,151,152,153,155,156,157,158,159,160,161,162,163,164,166,168,169,170,171,172,173,174,175,176,178,179,181,183,184,186,187,188,189,190,191,192,193,195,198,199,200,201,203,208,209,215,216,217,222,230,231,232,234,238,245,251,255,260,261,274,277,278,279,282,284,287,290,296,297,312,329,333,335,342,344,347,353,354,358,363,374,375,376,386,394,398,400,402,406,407,420,422,429,431,437,438,440,443,452,458,459,461,467,468,470,473,476,480,482,487,489,494,500,505,512,514,517,519,525,541,544,545,548],hereaft:141,herein:75,heroism:142,herself:[30,58,141,483,500,501],hesit:[80,157],hfill_char:482,hidden:[12,14,51,87,114,116,117,122,125,137,138,139,140,141,159,229,238,274,290,347,495],hide:[14,21,23,31,33,39,104,116,117,124,125,128,139,140,141,146,170,229,238,347,354,375],hide_from:[35,238],hide_from_accounts_set:211,hide_from_objects_set:401,hieararci:397,hierarach:471,hierarch:[13,39,57,219,397,471],hierarchi:[24,26,57,63,80,123,125,139,140,164,201,228,290,397,496,517],high:[21,39,58,116,121,123,128,130,136,138,182,193,201,215,296,297,315,402,462,471],higher:[7,11,19,21,28,33,39,44,49,57,69,104,116,130,133,141,144,146,153,158,160,162,163,175,193,197,201,208,215,219,222,232,312,316,342,353,376,397,422,471,480,496],highest:[21,39,110,162,358,473,496],highest_protocol:492,highli:[1,18,28,33,45,47,67,93,116,117,118,121,122,124,135,160,171,190,350,474,487],highlight:[16,60,119,161,162,176],hijack:[179,187],hilight:495,hilit:495,hill:[36,94],hilt:[142,297],him:[28,58,92,95,104,133,300,354,483,500],himself:[58,483,500,501],hint:[11,24,41,53,89,117,119,121,125,126,133,143,151,153,165,175,181,193,201,203,251,282,466,548],hire:[168,199],his:[28,30,41,58,92,95,104,141,162,290,300,354,481,483,495,500],histogram:496,histor:[23,42,72,125,163,419,489],histori:[0,12,19,27,51,91,122,123,128,135,142,162,183,192,216,227,236,384,489],hit:[0,29,83,112,124,125,134,138,146,147,152,155,201,209,296,312,313,314,315,316,374,375,418,459,489,492],hit_msg:374,hite:60,hitter:126,hnow:60,hoard:142,hobbi:[85,140,143,197],hobbit:163,hobbyist:197,hoc:121,hold:[0,1,4,8,9,13,15,16,21,28,31,33,37,41,44,46,48,56,63,74,94,109,110,111,116,117,119,122,124,125,126,132,133,140,144,146,147,151,152,159,162,168,170,175,178,192,193,200,201,215,216,239,245,279,282,290,296,297,312,313,314,315,316,347,358,370,374,375,386,390,391,395,397,398,406,407,408,411,416,427,429,438,448,449,451,461,470,471,472,476,479,480,482,483,485,489,496,502],holder:[124,197,468],hole:[94,142],home:[1,12,26,37,41,52,53,56,63,116,117,122,126,132,133,142,178,182,193,197,199,201,216,222,228,374,400,401,402,407,476,496],home_loc:222,homepag:[7,20,181,193,195,197],homes_set:401,homogen:[0,20,143,406,407,410],homogenize_prototyp:406,honcho:143,hong:75,honor:[0,142,354],honour:[75,117],hood:[11,19,23,28,30,36,41,42,48,67,83,99,102,110,114,117,122,128,130,133,140,141,161,274,296,354,357,358],hook:[0,13,19,23,24,32,33,37,42,45,47,85,94,104,116,133,146,147,153,156,159,166,171,172,173,174,175,177,201,203,208,213,215,217,219,222,227,228,230,232,233,234,236,238,243,252,261,277,279,283,290,296,298,309,312,313,314,315,316,317,320,326,329,333,335,339,342,354,355,357,364,366,373,374,375,376,381,386,402,410,413,415,424,431,443,446,448,451,456,458,459,460,462,470,478,481,483,487,488,490,496,506,509,510,520,536,540,541,542,544,547],hooligan:55,hop:121,hope:[6,138,142,162,169],hopefulli:[0,1,51,89,135,138,143,159,170,178,182,196,197],horizon:163,horizont:[0,341,375,482,496],hors:20,host1plu:197,host:[1,12,20,37,55,73,75,83,117,122,140,150,183,187,192,198,199,201,202,353,465,496],host_os_i:496,hostnam:201,hot:0,hotbutton:51,hotel:197,hotspot:199,hould:142,hour:[20,86,94,142,163,177,251,484,496],hous:[41,116,125,127,143,197,222,483],housecat:20,how:[0,1,5,6,7,8,9,10,11,12,14,15,16,17,18,19,20,21,24,25,26,28,30,33,34,35,36,39,41,42,44,46,49,50,51,52,53,54,55,57,58,61,62,63,65,67,68,69,73,74,75,80,84,85,89,92,94,95,96,104,105,108,110,111,112,113,115,116,117,119,121,122,123,125,126,127,128,130,131,132,133,134,135,136,137,138,139,140,141,143,144,146,147,148,149,150,151,152,153,154,155,156,157,159,160,161,163,164,165,166,167,168,169,170,171,172,173,175,176,177,178,179,182,183,187,189,190,191,193,195,197,199,200,201,202,203,209,210,214,216,217,229,231,232,233,236,245,251,277,279,282,290,293,296,297,300,314,315,316,329,333,341,342,343,344,347,353,354,358,368,374,386,390,395,397,401,402,407,410,415,420,425,430,434,439,444,447,451,452,458,459,460,461,465,470,474,478,480,481,482,483,489,490,495,496,505,506,508,511,512,536,548],howev:[0,11,13,14,15,16,17,18,21,23,27,30,33,41,42,47,48,50,54,55,58,60,62,68,69,70,72,73,80,91,93,94,95,96,111,116,117,119,121,123,128,133,135,137,141,142,144,146,155,156,158,162,163,168,169,170,173,175,177,183,197,201,203,216,217,222,229,232,233,245,261,315,350,368,384,386,390,397,473,519],howto:[119,548],hpad_char:482,href:[18,164,178],hrs:[201,251],htm:435,html40:201,html5:132,html:[0,51,52,60,73,75,119,121,122,125,126,132,150,151,164,170,179,181,184,199,201,217,232,236,274,386,392,394,442,444,448,449,465,470,492,495,496,516,525,540,541,542,544,545,547],htmlchar:495,htop:[7,203],http404:[164,179],http:[0,1,4,5,10,11,12,40,45,49,50,51,52,53,54,56,64,69,73,75,80,84,89,95,119,121,122,123,124,125,132,133,147,149,157,164,170,178,179,183,185,186,190,191,193,195,197,198,199,201,202,205,209,227,245,274,293,386,395,422,429,431,432,433,434,435,436,442,444,447,448,449,465,473,482,495,496,499,516,536,548],http_log_fil:201,http_request:[73,199,201],httpchannel:465,httpchannelwithxforwardedfor:465,httpd:182,httprequest:208,httprespons:[504,506,509],httpresponseredirect:178,huawei:197,hub:[31,181,192,237,476],hue:60,huge:[56,67,115,117,136,140,142,149,152,155,157,163,333,481],huh:[23,80],human:[7,55,62,87,110,117,122,123,125,139,140,146,161,168,171,178,296,358,542],humanizeconfig:123,hundr:[70,142,178,189],hung:143,hungri:67,hunt:[110,117,141,146,357,358,374],hunting_pac:374,hunting_skil:146,hurdl:159,hurri:134,hurt:[113,138,141,142,156,358],hwejfpoiwjrpw09:124,hybrid:[142,146],i18n:[0,64,131,201,402],iac:68,iam:75,iattribut:468,iattributebackend:468,ice:116,ice_and_fir:137,icon:9,iconv:64,id_:[506,508,510,512,536],id_str:34,idcount:451,idea:[1,5,9,10,12,23,31,33,45,50,53,55,69,89,94,96,112,113,118,119,121,124,130,132,135,136,140,141,142,143,144,145,146,157,159,160,164,168,174,175,178,179,188,189,201,217,229,230,233,287,353,407,487,495,546],ideal:[23,64,72,95,197,211,398],idenfi:215,ident:[0,8,10,14,21,23,37,60,65,94,104,124,126,141,158,161,203,208,230,326,354,398,400,402,409,473,474,494],identif:[20,47,461],identifi:[0,6,7,8,21,23,27,28,32,34,41,42,47,48,65,68,85,88,96,104,117,130,133,134,140,147,154,156,157,159,162,164,179,182,183,214,217,222,227,230,233,237,245,282,296,320,342,353,354,376,390,398,402,406,409,412,415,417,420,425,427,430,444,448,457,459,461,468,469,473,476,479,480,483,496],identify_object:237,idl:[44,55,201,208,209,374,402,452,459,461],idle_command:[23,201],idle_tim:[208,402],idle_timeout:[201,209],idmap:487,idmapp:[48,67,201,205,206,232,238,394,427,453,468,469,470,472],idmapper_cache_maxs:201,idnum:237,ids:[55,162,174,320,451,461,479],idstr:[34,47,411,415,457,496],idtifi:237,idx:174,ietf:436,ifconfig:187,ifier:[110,358],ifram:51,ignor:[0,6,10,12,16,19,20,21,23,28,30,31,32,33,39,44,48,60,65,67,119,126,128,132,136,144,146,155,162,169,171,174,183,194,197,201,208,214,215,216,217,222,320,335,341,342,344,354,397,401,402,415,420,425,431,432,447,448,449,468,470,473,474,479,480,491,494,496,497],ignore_ansi:496,ignore_error:208,ignorecas:[217,222,228,229,232,234,277,290,296,354,473,478,480,495],ignoredext:465,illog:94,illumin:170,illus:54,illustr:94,imag:[0,9,18,51,52,53,73,75,117,123,132,151,164,178,193,197,201,202,525],imagefield:0,imagesconfig:123,imagin:[16,21,28,85,95,112,126,134,138,140,143,144,147,155,171,177,368,474],imaginari:[152,170,181],imc2:0,ime:194,imeplement:333,img:18,immedi:[17,20,23,28,32,41,42,50,65,94,96,116,122,126,130,133,135,144,147,155,159,173,178,179,190,192,197,201,220,232,293,296,342,374,409,424,431,474,476,480,481],immers:85,immobil:153,immort:[94,374],immut:[14,415],impact:176,impass:[116,138],impati:193,imper:106,implement:[0,1,8,10,11,14,19,21,23,28,30,33,35,37,46,47,48,51,53,58,60,62,67,68,69,73,74,76,77,85,94,108,111,112,113,114,116,117,121,125,129,132,134,136,139,140,141,144,145,147,152,153,154,155,159,160,161,162,165,166,170,171,172,173,175,180,181,187,201,205,206,210,211,215,216,219,220,221,222,223,224,227,228,229,230,231,232,234,236,237,238,239,251,270,275,287,290,296,300,306,312,313,316,318,320,326,329,331,335,341,347,353,354,357,370,374,375,376,381,390,393,394,398,400,401,402,409,410,412,415,426,431,433,434,435,436,437,438,440,442,443,444,447,448,449,451,458,465,468,469,470,471,473,474,477,478,480,481,488,491,492,495,496,504,521,543,545],impli:[46,80],implic:76,implicit:[60,169,176],implicit_keep:407,impmement:398,impopular:142,import_cmdset:216,importantli:[19,28,128,133,141,178,398],importerror:[8,123,124,201,496],impos:[121,181,463],imposs:[0,17,28,57,70,94,116,119,159,170,174,178,197,342,406,482],impract:[23,41,116,407],imprecis:487,impress:[6,142,170],improv:[0,11,64,96,118,125,134,135,139,140,143,169],impur:297,in_game_error:[1,199,201],inabl:[195,199],inaccess:[33,96],inact:[89,279,374],inactiv:232,inadvert:316,inadyn:197,inarticul:69,inbuilt:[46,175],incant:191,incapacit:142,incarn:536,incid:[76,117,381],includ:[0,1,4,7,9,12,13,14,15,20,21,23,26,28,30,32,33,34,37,44,45,46,47,48,50,51,53,55,56,60,68,69,73,76,77,80,85,91,98,104,110,111,112,113,116,117,118,119,120,121,122,123,124,125,126,127,128,129,132,133,134,135,136,137,139,140,141,142,144,145,146,147,148,150,151,152,156,157,158,162,163,164,168,169,170,174,178,179,180,181,191,192,195,200,201,208,213,214,215,217,220,221,222,230,233,236,237,261,274,277,282,287,290,296,297,298,300,312,313,314,315,316,320,333,339,341,342,343,344,353,354,358,376,381,384,390,395,397,402,406,413,420,438,440,443,444,452,457,460,468,469,470,471,473,474,475,476,477,479,480,482,484,489,494,496,519,525,529,545,548],include_account:468,include_children:469,include_par:469,include_prefix:214,include_unloggedin:[438,461],inclus:[31,469,483],incoher:176,incol:[162,479,482],incom:[23,52,62,68,183,197,200,201,209,214,231,277,313,342,381,420,429,433,436,439,443,444,448,449,451,459,460,461,465,480,481,483,504,506,509,510,517],incompat:0,incomplet:[108,217,329,482],inconsist:[8,14,54,386],incorpor:[0,219,482],incorrect:237,increas:[0,33,39,48,60,77,110,116,117,130,133,141,146,163,199,201,287,313,315,316,342,358,376,432,438,452,478,480],increase_ind:478,incred:[111,390,422],increment:[195,468],incur:20,indata:[62,468],inde:[87,121,124,169,197],indefinit:[314,375,409,476],indent:[0,15,16,20,27,30,51,72,96,119,124,126,135,136,161,341,449,474,478,480,483,496],independ:[0,35,42,52,89,94,96,117,122,160,176,190,287,293,380],indetermin:422,index:[31,52,53,67,69,73,111,118,119,125,133,140,151,159,160,168,170,174,181,197,201,202,205,206,214,227,228,229,279,287,341,342,375,390,392,394,395,400,418,422,423,465,471,473,481,482,496,502,535,536,537,539,541,544,548],index_category_clr:229,index_to_select:390,index_topic_clr:229,index_type_separator_clr:229,indexerror:[115,179,333,469],indexread:279,indextest:537,indic:[10,28,35,58,80,92,94,96,111,116,117,119,128,130,135,136,159,163,168,169,170,182,209,222,229,230,279,300,341,342,354,381,390,410,413,431,432,440,447,448,461,463,465,468,473,474,480,481,496,522],individu:[14,15,16,23,30,41,68,80,94,95,96,116,117,133,136,146,152,159,161,162,168,170,177,180,188,197,216,220,236,258,261,280,296,315,347,357,358,404,407,459,471,473,482,483,490,491],ineffici:[47,171,473],inert:10,inf:[499,501],infact:23,infinit:[0,42,94,96,116,125,139,140,201,209,333,342,406,499,501],infinitely_lock:279,inflat:142,inflect:[0,483,499],inflict:314,inflict_condit:314,influenc:[28,54,56,80,95,125,139,140,175,282,287,496],influenti:181,info1:370,info2:370,info3:370,info:[0,1,7,9,10,12,14,15,18,19,20,23,25,26,29,31,37,38,42,44,46,48,49,53,56,58,67,68,76,116,121,122,132,133,135,141,149,153,158,162,180,183,184,192,200,201,202,208,209,211,219,220,222,229,232,234,239,255,273,279,287,303,320,344,350,376,393,394,402,420,425,429,437,438,458,459,461,469,470,471,476,479,489,496,548],inforamt:[333,344,354,402,470],inform:[0,1,4,7,12,13,14,20,23,28,34,35,41,42,44,46,51,53,60,63,65,67,71,73,80,84,87,94,95,96,105,116,117,119,124,126,128,132,135,142,146,147,149,151,153,154,164,168,169,171,173,175,177,178,179,182,183,186,187,192,194,199,200,201,202,208,209,217,220,222,227,228,232,237,238,245,277,293,296,314,315,316,347,354,358,381,382,386,393,394,402,420,425,434,435,436,438,447,460,461,469,470,473,476,478,489,496,536],infrastructur:[65,119,122,125,143,197,199,201,213,430],infrequ:95,ing:[16,89,124,134,142,162,347],ingam:[94,95],ingame_python:[94,95,205,206,239,240,548],ingame_tim:163,ingen:64,ingo:[21,28,32,58,61,116,162,215,400,432,483,499],ingot:[296,297],ingredi:[85,117,142,279,296],ingredient1:279,ingredient2:279,ingredient3:279,ingredient_recip:279,inher:[36,54,69,110,123,358],inherit:[0,4,6,10,13,19,20,21,23,37,48,50,53,60,61,62,67,80,81,83,85,92,94,104,108,110,114,116,122,126,129,130,131,133,134,137,142,156,161,164,166,171,175,201,211,215,217,222,230,232,233,236,238,245,274,277,279,287,290,296,300,309,312,313,314,315,316,320,326,329,335,354,358,373,374,376,399,401,402,407,410,412,451,460,467,469,470,478,481,482,487,494,496,519,522,540,541,542,544,546,547],inheritng:407,inherits_from:[171,179,232,496],inifinit:406,init:[9,12,51,62,80,83,116,119,124,125,159,162,190,191,193,245,246,282,287,336,384,401,420,438,439,449,461],init_delayed_messag:384,init_django_pagin:481,init_evt:481,init_f_str:481,init_fill_field:[91,384],init_game_directori:420,init_iter:481,init_menu:373,init_mod:216,init_new_account:496,init_pag:[406,481],init_pars:[114,273,274],init_queryset:481,init_rang:316,init_sess:[62,460],init_spawn_valu:406,init_st:282,init_str:481,init_tree_select:[111,390],init_tru:216,initi:[1,5,8,12,14,23,27,28,42,44,45,51,52,53,75,77,85,91,111,112,116,117,119,122,124,125,126,131,140,141,144,146,152,155,159,162,168,173,175,178,193,201,202,203,208,209,216,217,233,236,238,255,258,262,264,282,287,293,296,312,316,340,341,342,343,353,354,358,368,373,374,375,384,390,392,400,401,402,406,411,414,415,417,418,420,422,423,424,429,430,431,433,434,435,436,438,439,440,441,442,443,444,445,447,448,449,451,459,460,461,468,473,475,478,479,480,481,483,491,492,495,496,505,506,508,510,512,514,530,536,547],initial_formdata:384,initial_ind:482,initial_setup:[0,201,205,206,416,458],initial_setup_modul:201,initialdelai:[417,431,432,451],initialize_for_combat:312,initialize_nick_templ:468,initil:448,initpath:116,inject:[0,52,89,132,144,199,279,343,406,420,451,452,459,474,480],inlin:[24,51,58,120,161,168,402,418,483,504,505,506,508,509,510,512,548],inlinefunc:[0,41,58,132,200,201,483],inlinefunc_stack_maxs:0,inlinetagform:512,inmemori:468,inmemoryattribut:468,inmemoryattributebackend:468,inmemorybackend:468,inmemorysavehandl:491,inn:98,innard:0,inner:0,innermost:30,innoc:[55,220],innocu:199,inobject:429,inp:[28,222,237,406,418,481,483,496],inpect:28,input:[0,7,10,14,16,17,18,19,20,21,24,27,32,36,41,44,47,51,52,53,54,58,61,62,65,70,73,77,80,85,91,98,104,111,116,117,118,119,120,124,125,126,127,128,132,133,144,156,161,162,169,170,172,178,181,200,201,203,208,212,213,214,217,222,227,229,230,231,232,233,237,245,282,296,297,315,342,347,353,354,357,358,375,381,384,390,393,402,405,406,407,418,420,425,429,440,448,459,461,468,469,471,478,479,480,481,482,483,490,492,494,496,497,536,548],input_arg:494,input_cleanup_bypass_permiss:[0,201,496],input_cmdset:480,input_func_modul:[32,201,425],input_str:[30,480],input_validation_cheat_sheet:536,inputcmdset:480,inputcommand:[32,65,68],inputcompon:51,inputdebug:[32,425],inputfuc:132,inputfunc:[24,62,68,132,200,201,205,206,209,416,448,459,461,548],inputfunc_nam:448,inputfunct:32,inputhandl:205,inputlin:[36,228,236,468,469],insecur:197,insensit:[31,39,130,137,229,320,354,376,392,400,469,528],insert:[0,14,15,16,27,30,36,41,58,85,92,117,119,122,125,135,153,162,188,194,216,279,296,300,306,354,401,406,474,480,482,483,496],insid:[0,5,6,7,9,10,14,15,17,20,21,23,28,30,33,37,40,41,42,44,48,49,53,54,57,60,64,67,68,69,73,75,83,90,92,93,94,95,96,104,115,116,117,119,122,126,128,130,131,132,135,136,137,144,146,151,152,153,154,161,164,167,168,169,170,171,174,175,177,178,179,183,187,188,192,195,201,203,205,209,232,236,245,260,261,320,333,350,354,374,376,397,401,402,405,420,437,458,465,474,475,483,496],inside_rec:[0,397],insiderecurs:397,insight:[6,128,138,151],insist:[169,197],inspect:[28,55,116,168,183,208,222,232,287,418,420,480],inspectdb:67,inspir:[0,23,58,72,89,92,102,117,141,146,147,270,300,482,496],instac:[217,296,402,459],instal:[0,1,5,6,7,9,10,11,16,64,69,93,95,96,112,117,118,119,121,122,125,128,131,135,138,141,149,161,162,165,179,181,185,186,198,199,201,203,205,206,239,248,255,270,285,287,290,293,295,303,306,309,312,313,314,315,316,318,320,326,328,345,346,350,354,356,370,381,527,548],installed_app:[10,67,123,164,178,179,201,527],instanc:[0,5,6,8,13,14,18,20,24,27,28,30,34,41,44,45,50,51,56,61,64,75,80,83,94,95,96,98,105,111,116,117,122,125,126,129,130,132,133,135,137,144,147,149,151,153,154,155,157,160,161,162,163,164,168,169,174,176,182,199,208,211,213,214,215,216,217,226,229,231,232,236,238,243,245,261,264,274,284,296,333,344,386,390,394,401,402,406,407,409,410,414,415,417,420,429,430,431,432,433,434,435,436,438,442,443,447,451,452,460,461,465,468,470,471,473,476,477,480,482,487,488,492,494,496,497,504,505,506,508,509,510,512,516,517,519,521,536,544],instanci:245,instant:151,instanti:[10,23,67,136,208,216,233,358,368,412,415,437,458,461,468,479],instantli:[505,512],instead:[0,1,7,9,11,12,14,16,19,20,21,23,28,30,34,37,39,41,42,44,46,48,53,54,55,56,57,58,60,64,65,67,73,75,76,80,84,85,88,89,91,93,94,95,96,99,104,108,110,111,115,116,117,118,119,122,124,125,128,129,130,132,133,134,135,136,137,140,142,143,144,147,149,151,152,153,155,156,157,159,161,162,163,168,169,170,171,172,174,175,176,177,178,179,181,183,187,192,193,195,197,199,200,201,203,208,209,216,217,219,220,222,224,227,231,232,234,236,237,245,255,264,274,277,279,284,293,296,297,312,313,314,315,316,329,333,335,341,342,344,347,353,354,357,358,373,375,384,390,397,398,400,402,407,415,420,448,449,459,463,468,470,471,476,480,481,483,487,489,491,492,493,496,500,505,512,527,536,540,541,542,544],instig:220,instil:[74,314],instnac:414,instr:[429,496],instruct:[6,9,12,15,16,20,32,65,68,95,96,98,112,116,117,118,119,121,124,125,131,135,136,138,140,142,156,161,162,168,181,182,183,187,190,191,192,193,195,196,197,201,208,217,232,354,381,407,415,417,420,430,432,438,443,444,448,449,451,459,461,480,490],insur:142,intefac:0,integ:[21,23,30,41,44,48,60,91,110,117,157,168,169,175,201,214,251,290,312,314,316,342,344,347,358,376,384,397,402,469,483,492,496,497],integerfield:[178,510,536],integr:[49,51,104,112,117,122,123,136,141,179,181,199,233,354,423,425,480,516,548],intel:135,intellig:[65,142,146,169,179,199,216,451],intend:[6,15,18,20,21,23,30,35,41,46,51,69,75,76,77,80,103,113,116,117,118,121,128,138,140,144,151,170,176,197,199,201,208,245,284,287,296,344,354,393,394,402,407,438,469,471,476,477,479,482,483,493,494,496,497,514,542,545],intens:[60,130,142,181],intent:[104,199,353,496],inter:[15,116,142,341],interact:[0,2,6,9,13,23,24,26,28,61,62,69,78,116,119,121,128,136,138,142,143,144,147,155,160,178,181,183,192,201,202,203,205,221,277,316,368,420,437,474,489,494,496,548],intercept:[76,94,117,461],interchang:[39,125,147,392,480,546],interconnect:341,interest:[1,6,7,16,23,31,41,62,67,77,80,85,95,96,115,116,121,123,125,128,136,138,140,143,145,151,152,159,161,169,173,174,175,181,197,199,216,231,251,287,293,333,342,376],interestingli:141,interf:[193,195,368],interfac:[1,4,6,8,33,50,51,52,62,73,80,122,124,131,135,152,153,164,170,178,181,183,193,197,201,202,219,222,236,400,402,413,431,460,465,468,471,473,496,506,511,545],interfaceclass:440,interfer:[8,183,406],interim:[47,155],interlink:[437,458],intermediari:[354,398,411,480],intern:[0,11,14,17,19,20,28,33,36,41,44,45,46,54,62,68,70,86,88,115,130,131,132,142,147,187,192,197,199,201,203,208,209,238,255,296,300,333,339,341,342,354,358,366,400,401,402,406,412,448,449,468,470,471,473,477,480,482,496],internal:480,internal_port:197,internation:[61,70,201,548],internet:[23,53,54,55,56,62,183,187,189,190,197,199,201,220,417,422,430,431,432,440,443,451,465],interpret:[2,6,7,23,41,42,135,136,160,169,179,199,200,201,217,221,222,344,406,407,448,473,492],interract:116,interrupt:[94,144,213,217,233,258,261,264,335,339,440],interrupt_path:[116,342],interruptcommand:[23,144,169,205,213,217],interruptev:264,interruptmaplink:[116,342],interruptmapnod:[116,342],intersect:[21,215],interv:[32,42,47,79,110,117,122,147,173,174,177,201,209,210,251,261,297,312,358,363,374,376,409,410,415,425,476,484,496],interval1:415,intim:[21,23],intimid:162,intoexit:[222,335],intpropv:175,intricaci:163,intrigu:185,intro:[113,123,125,126,127,136,138,164,179,373,376],intro_menu:[205,206,239,359,372],introduc:[1,8,10,12,21,30,83,85,104,141,142,143,146,155,161,175,354],introduct:[0,2,12,15,16,17,24,56,57,75,124,125,126,127,128,134,139,145,148,149,150,193,245,548],introductori:121,introroom:376,introspect:[103,309],intrus:176,intuit:[12,28,67,80,140,142,144,169,201,215],intxt:20,inv:[21,26,167,228,277,290],invalid:[14,30,41,116,169,201,208,342,354,358,384,406,482,483,492,496,497,500],invalid_formchar:479,invent:[110,358],inventori:[0,8,20,21,26,33,85,89,126,128,130,134,137,142,143,152,153,168,169,228,277,290,296,297,354,397,402,470],invers:[33,60,116,126,133,176,342,354,357,446,495],invert:[60,176],investig:[53,76,117,133],invis:[116,184,339,342,495],invisbl:495,invisiblesmartmaplink:342,invit:[54,96,140,150,368],invitingli:[128,368],invok:[15,16,42,380],involv:[14,33,37,42,44,45,61,62,91,116,134,140,142,147,160,175,191,201,296,297,316,342,384,470,471,473,517],ioerror:474,ipli:358,iplier:358,ipregex:220,ipstart:[192,195,203],iptabl:199,ipv4:183,ipv6:201,ipython:[1,7,125,127,162],irc2chan:[26,31,126,189,201,227],irc:[0,1,121,143,181,198,201,202,205,206,209,227,235,416,425,428,438,461,548],irc_botnam:209,irc_channel:209,irc_en:[189,201,227,397],irc_network:209,irc_port:209,irc_rpl_endofnam:432,irc_rpl_namrepli:432,irc_ssl:209,ircbot:[209,432],ircbotfactori:[209,432],ircclient:[432,461],ircclientfactori:438,irchannel:[189,227],ircnetwork:[189,227],ircstatu:[26,126,227],iron:[77,141,287,296,297],ironrealm:444,irregular:[79,117,363,374,376],irregular_echo:374,irrelev:[199,429],irur:29,is_account_object:160,is_act:[211,410,504],is_aggress:171,is_anonym:[123,164],is_anyon:123,is_authent:178,is_ban:[0,208],is_bot:211,is_build:123,is_categori:390,is_channel:23,is_connect:[211,402],is_craft:155,is_dark:133,is_dead:83,is_exit:[23,217],is_fight:155,is_full_moon:153,is_giving_light:375,is_gm:162,is_in_chargen:175,is_in_combat:312,is_inst:20,is_it:496,is_iter:496,is_lit:[375,376],is_next:[211,238,394,401,410,468,470],is_o:496,is_ooc:397,is_ouch:[14,137],is_poison:14,is_prototype_bas:406,is_rest:144,is_sai:172,is_sleepi:14,is_staff:[211,504],is_subprocess:496,is_superus:[13,50,123,208,210,211,398,402,476,504],is_thief:229,is_turn:312,is_typeclass:[0,208,470],is_valid:[42,174,178,287,410,413],is_valid_coordin:[115,333],isalnum:473,isalpha:473,isauthent:201,isb:494,isbinari:[431,448],isclos:51,isconnect:51,isdigit:[162,473],isfil:201,isfiremag:154,isinst:[157,496],island:98,isleaf:449,islow:473,isn:[6,18,27,80,94,95,96,123,130,144,160,163,164,169,193,201,245,258,262,274,315,316,376,422,473,490,499,505,512,528],isnul:492,iso:[17,70,201,234],isol:[10,12,15,89,118,119,122,125,135,140,169,190,192,193,195],isp:[197,199],isspac:473,issu:[0,1,6,7,10,12,14,15,16,21,23,26,37,48,54,69,74,80,113,118,119,136,141,144,152,155,162,168,170,175,176,181,182,183,185,193,195,197,199,201,202,227,234,249,406,420,429,451,452,482],istart:[0,6,203,205],istep:452,istitl:473,isub:147,isupp:473,ital:548,italian:[0,64],itch:142,item:[0,28,51,67,75,77,81,85,89,91,104,112,117,119,125,128,131,132,139,141,142,147,164,167,168,171,228,280,287,290,296,314,333,354,368,384,439,468,483,496],item_consum:314,item_func:314,item_kwarg:314,item_selfonli:314,item_us:314,itemcombatrul:314,itemcoordin:333,itemfunc:314,itemfunc_add_condit:314,itemfunc_attack:314,itemfunc_cure_condit:314,itemfunc_h:314,itend:496,iter:[8,14,28,30,46,98,126,133,159,208,210,237,333,342,354,366,393,400,402,407,409,413,449,451,452,468,470,471,473,474,477,481,493,496],iter_cal:481,iter_to_str:[0,496],itl:[80,245],its:[0,5,6,7,10,11,12,13,14,16,17,19,20,21,23,27,28,29,30,31,33,34,37,39,41,42,44,47,48,49,50,51,52,55,56,58,60,62,65,67,68,72,73,76,77,80,83,85,89,90,91,92,94,96,100,103,106,108,110,111,113,115,116,117,119,121,122,124,125,126,128,130,131,132,133,134,135,136,137,138,141,143,144,146,149,151,152,153,155,157,158,159,160,161,162,163,164,166,167,168,169,170,171,172,174,175,176,178,179,183,186,189,191,192,193,195,197,198,199,200,201,208,209,211,213,214,215,216,217,220,222,230,232,236,237,245,246,249,261,270,274,279,282,287,296,297,300,309,312,313,314,315,316,329,333,335,342,344,353,354,358,366,368,374,375,384,390,400,401,402,407,414,415,420,424,425,429,433,444,446,447,448,449,452,460,461,465,466,468,469,470,471,474,479,480,482,483,487,489,490,491,492,493,494,496,500,504,505,512,514,516,525,536,540,541,542,544,546],itself:[0,4,7,9,10,12,14,17,18,19,20,23,28,31,33,37,39,42,44,47,48,53,58,62,64,67,73,76,80,91,94,95,96,110,111,112,116,118,119,121,122,123,124,125,126,128,131,132,133,135,136,137,138,147,151,152,153,155,158,159,167,168,170,172,175,178,179,180,183,187,191,193,195,200,201,208,209,229,236,245,264,278,279,280,282,296,315,333,342,347,354,358,363,375,376,384,386,390,391,394,395,397,400,402,404,405,407,414,420,444,449,461,465,468,471,473,476,478,480,483,491,493,496,500,501,505,512,536,546],iusernamepassword:440,ivanov:75,iwar:168,iwebsocketclientchannelfactori:431,iwth:415,jack:36,jail:[15,55],jam:[0,89,117],jamalainm:0,jamochamud:184,jan:[2,55,163,201],janni:75,januari:[94,163],jarin:197,jason:75,java:135,javascript:[49,51,52,53,68,73,75,117,121,151,199,201,448,449],jenkin:[0,81,91,93,111,112,117,175,289,290,311,312,313,314,315,316,349,350,383,384,388,390],jet:315,jetbrain:[9,181],jinja:132,jiwjpowiwwerw:14,jnwidufhjw4545_oifej:124,job:[23,33,164,187,208],jodi:75,john:[109,162,370],johnni:[0,76,117,380,381],johnsson:36,join:[46,80,89,117,130,140,142,147,159,162,175,178,186,189,201,208,227,236,270,278,287,353,473,496],join_fight:[312,316],join_rangefield:316,joiner:236,jointli:[122,216],joker_kei:[80,245],jon:75,jonca:75,josh:75,journal:170,json:[49,51,65,68,76,201,380,431,444,448,449,477,519],jsondata:68,jsonencod:449,jsonifi:449,jtext:473,judgement:146,jump:[1,12,15,16,28,29,37,69,111,121,140,142,152,158,159,193,277,390,418,483],jumpei:75,jumpstat:277,june:[64,94],junk:429,just:[0,1,6,7,8,9,10,11,12,14,15,16,17,18,19,20,21,23,28,29,30,31,32,33,35,36,37,41,42,44,45,46,47,48,50,51,53,54,55,57,58,60,62,64,65,67,68,70,73,74,75,76,77,80,84,85,88,89,93,94,95,96,98,102,110,111,115,116,117,118,119,122,123,124,125,126,128,130,131,132,133,134,135,136,137,138,139,140,141,143,144,146,147,149,151,152,153,154,155,156,157,158,159,160,161,162,163,164,166,168,169,170,171,172,173,174,175,176,177,178,179,181,183,185,187,190,192,193,194,195,196,197,201,203,208,215,216,217,220,222,227,230,231,233,236,245,258,260,261,277,281,282,284,287,290,293,296,297,312,314,315,316,320,333,335,342,344,350,353,354,358,368,370,374,376,390,398,402,407,411,425,438,448,452,458,465,468,469,470,473,477,478,480,482,483,491,492,494,496,497,542,545,548],justif:[481,496],justifi:[0,30,41,473,481,483,496],justifii:481,justify_kwarg:[0,481],kafka:76,kaldara:94,kaledin:75,kcachegrind:7,keep:[0,1,6,7,8,11,15,16,17,23,28,31,40,41,44,53,56,83,90,93,94,96,98,117,122,123,124,126,130,134,135,136,140,141,142,143,144,146,147,153,155,156,160,161,162,163,164,166,167,168,169,172,174,176,177,178,179,180,183,187,190,191,192,193,196,201,209,216,261,293,320,350,368,375,376,380,386,406,407,422,463,480,482,496],keep_log:[236,237,476],keepal:[44,443,449],keeper:[142,168],keepint:122,kei:[0,1,6,8,10,12,14,15,19,20,21,23,27,29,30,31,32,33,34,37,39,42,45,46,47,48,49,51,53,54,64,67,68,72,75,76,83,85,92,94,96,98,104,110,111,114,116,117,119,120,124,125,126,129,130,133,134,135,136,144,145,147,152,153,154,155,156,157,158,159,160,161,162,163,164,166,167,168,169,170,173,174,175,178,182,188,201,208,209,210,211,213,215,216,217,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,236,237,238,245,246,251,255,259,260,270,273,274,277,278,279,282,284,287,290,293,296,297,300,303,306,309,312,313,314,315,316,320,326,329,333,335,341,342,343,344,347,353,354,358,368,370,373,374,375,376,384,390,392,393,394,395,397,400,401,402,405,406,407,409,410,411,412,413,414,415,418,420,425,426,427,429,438,441,444,445,447,448,449,451,452,459,460,461,463,468,469,470,471,475,476,478,479,480,481,483,489,490,491,493,494,496,516,536,547],keith:75,kept:[7,23,31,39,53,132,161,169,201,222,260,261,354,407,468],kept_opt:390,kernel:1,key1:[28,306],key2:[28,306,402],key3:28,key_mergetyp:[21,215,368],keydown:51,keyerror:[0,296,406,415,491,496],keyfil:[441,445],keynam:[236,237,393,405,407,476],keypair:440,keys_go_back:[80,245],keystr:471,keystrok:440,keywod:482,keyword:[0,7,10,14,20,23,27,28,29,30,32,33,41,42,45,47,48,54,58,65,67,80,90,94,96,104,129,130,135,144,153,155,156,162,163,166,169,175,179,201,208,209,210,213,217,222,228,236,237,251,258,260,261,264,274,282,284,290,312,314,316,320,344,350,353,354,376,381,398,400,402,406,407,409,411,414,415,418,420,425,429,431,432,438,439,440,443,448,449,459,460,461,463,468,469,470,476,479,480,481,482,483,487,489,490,492,493,496,545],keyword_ev:[94,264],kick:[19,21,28,55,142,162,197,209,215,220,227,234,255,270,481],kildclient:184,kill:[7,20,28,44,77,125,128,132,139,140,143,147,191,192,202,287,374,375,411,415,420,458,465],killsign:420,kilogram:167,kind:[8,14,33,62,84,94,96,118,119,125,133,134,135,139,140,147,169,172,174,178,200,293,312,398,470,497],kindli:176,kitchen:[134,144,158,222,335],kja:201,klass:64,klein:75,knee:[116,279,342],kneeabl:279,kneed:279,kneel:279,kneelabl:279,knew:[133,135],knife:[85,296,297],knight:14,knob:14,knock:[28,138],knot:[81,290],know:[1,6,7,8,11,12,13,14,15,16,17,19,21,23,28,30,31,32,33,34,37,44,48,53,54,56,58,60,62,64,65,67,70,80,84,85,94,96,104,106,111,116,117,118,119,122,125,126,127,128,130,132,133,134,135,136,137,140,141,142,143,144,146,147,151,152,155,157,158,159,160,161,162,164,166,167,168,169,170,171,172,174,176,177,178,179,181,182,183,185,187,189,190,197,198,201,202,203,217,221,222,230,233,260,287,293,303,315,342,353,368,375,390,401,402,425,459,461,468,474,475,480,496,505,512,543,548],knowledg:[15,17,23,118,121,442,461],known:[0,23,27,31,36,39,40,47,48,51,125,128,139,140,144,146,179,181,184,201,207,231,315,481],knuth:7,korean:[0,64],kornewald:75,koster:181,kovash:28,kwar:470,kwarg:[0,14,19,23,28,30,32,33,34,37,41,45,47,48,51,54,62,65,68,71,83,85,86,94,98,110,116,144,153,155,162,166,172,174,177,179,201,208,209,210,211,213,216,217,219,220,221,222,227,228,229,230,231,232,233,234,236,237,238,245,251,255,258,259,260,261,270,273,274,277,278,279,280,281,282,284,287,290,296,297,300,303,306,309,312,313,314,315,316,320,326,329,333,335,342,343,344,347,353,354,358,363,366,368,370,373,374,375,376,381,384,386,390,393,394,397,398,400,401,402,404,405,406,407,409,410,411,413,414,415,417,418,425,426,427,429,430,431,432,437,438,439,440,441,443,444,445,448,449,451,453,459,460,461,462,463,465,468,469,470,471,473,476,478,479,480,481,482,483,484,486,487,489,490,491,492,493,494,496,497,504,505,506,509,510,512,516,518,519,522,536,540,541,542,544,545,546,547],kwargtyp:496,label:[46,67,74,76,128,137,178,516,536],label_suffix:[506,508,510,512,536],laborum:29,labyrinth:116,lack:[15,53,72,119,126,140,143,160,354,368,402,468,496],laddad:64,ladder:162,ladi:133,lag:[7,159,193],lair:16,lambda:[28,41,54,157,164,261,407,496],lamp:[170,368],lamp_breaks_msg:368,land:[147,169,374,375],landscap:[170,199],lang:[104,353],langaug:104,langcod:[201,354],langnam:354,languag:[5,17,24,30,39,48,51,52,53,58,61,62,69,70,72,111,117,119,121,122,126,130,131,132,133,134,135,141,143,160,161,162,169,172,181,199,201,352,353,354],language_cod:[64,201],languageerror:[353,354],languageexistserror:353,languagehandl:353,larg:[0,8,10,15,16,28,41,42,53,54,56,67,69,75,98,104,115,116,117,118,121,125,128,138,139,140,143,144,160,183,197,201,279,333,336,353,368,406,438,474,479,487],larger:[16,30,33,67,69,90,119,135,140,159,161,167,320,402,446,473,487,496,525,548],largest:[110,358],largesword:67,larlet:75,last:[1,4,6,12,14,15,16,19,21,23,28,32,36,37,44,45,51,58,64,67,77,80,94,111,116,119,123,129,134,135,136,137,138,140,142,143,147,151,155,162,164,169,174,176,179,185,187,201,203,210,213,214,216,222,227,228,251,261,287,293,312,314,320,354,390,402,424,473,474,475,480,481,482,484,489,495,496],last_cmd:[23,133],last_initial_setup_step:[201,458],last_login:[211,504],last_nam:[211,504],last_step:424,lastcast:154,lastli:[166,170,178,213,296],lastsit:153,late:[12,94,406,475],later:[8,12,13,14,15,19,23,31,32,34,41,42,47,48,55,62,65,67,74,75,80,85,89,94,95,96,103,116,121,122,124,125,126,128,130,133,134,135,136,140,141,142,143,144,145,146,158,162,164,166,170,171,173,174,175,178,183,191,193,197,201,215,219,220,222,230,236,251,309,342,354,406,407,415,440,471,483,496],latest:[0,2,3,20,21,53,75,89,119,122,152,162,187,191,195,198,222,227,232,402,407,439,463,480,483,489,516],latin:[0,17,64,70,201,234,402,496],latin_nam:402,latinifi:[0,402,496],latter:[0,20,28,33,47,104,110,116,122,155,169,176,354,358,392,410,412,471],launch:[0,9,16,24,94,116,138,152,168,185,191,193,197,201,203,216,368,419,420,430,432,451,478,496],launchcmd:[116,205,206,239,318,334,336],launcher:[0,7,9,116,201,336,337,419,420,429,430,451],lava:116,law:181,lawrenc:201,layer:[21,80,131,136,401,470],layout:[11,20,31,40,48,51,53,61,98,116,133,137,159,160,162,333,341,402],lazi:496,lazy_properti:[0,84,110,293,357,358,496],lazyencod:449,lazyset:489,lc_messag:64,lcnorth:59,ldesc:160,ldflag:191,lead:[0,10,14,15,18,21,28,30,42,50,52,53,65,67,71,80,94,96,104,116,121,122,128,130,137,140,142,159,160,164,170,174,181,183,199,201,208,214,215,222,232,261,264,296,326,335,340,342,343,344,354,386,402,406,407,429,459,468,470,480,482,483,496],leak:[53,73,201],lean:[35,141,354],leap:[135,144,163,172],learn:[2,6,9,17,18,21,23,49,53,56,69,80,89,94,95,96,104,113,116,117,126,129,130,131,133,134,135,136,138,140,141,142,143,144,151,155,159,160,161,164,166,176,179,181,190,315,353,354,548],learnspel:315,least:[0,6,9,14,23,28,33,35,50,67,77,94,104,110,121,127,133,135,136,140,143,146,149,157,159,161,162,174,182,187,197,201,208,216,237,279,287,353,358,393,402,407,413,473,479,482,483,493,496],leasur:374,leather:[142,168,297],leatherrecip:297,leav:[0,7,13,19,32,51,53,80,94,96,115,125,128,138,146,147,152,153,162,168,175,196,199,201,219,221,222,236,245,277,279,280,281,287,333,335,376,402,414,444,448,449,480,483,487,519],leaver:236,led:133,ledg:113,leer:75,left:[4,20,23,30,32,33,41,51,67,80,94,115,116,119,130,134,138,144,157,161,164,168,169,170,201,208,222,228,230,279,293,312,313,314,315,316,333,341,342,350,368,375,398,407,470,473,482,496,548],left_justifi:41,leftmost:116,leg:457,legaci:[0,30,41,42,68,82,117,142,190,208,270,271,354,483,548],legal:[197,199],legend:[27,98,159,184,205,206,239,318,334,341,343],legend_key_except:341,legenddict:343,leidel:75,leisur:497,leland:75,len:[41,130,137,147,153,159,162,168,173,174,188,201,214,231,251,496],lend:27,length:[63,67,80,86,91,104,116,117,135,142,153,159,163,169,183,188,197,214,251,264,284,296,341,342,350,353,354,384,422,463,468,473,482,483,496,547],lengthi:153,lenient:41,less:[9,28,31,53,64,67,69,80,116,122,133,134,140,142,144,146,147,158,160,169,177,178,197,201,251,313,315,342,468],lesson:[125,126,128,129,130,131,133,134,136,137,140,142,143,144],let:[7,9,10,12,14,16,17,19,21,23,28,30,32,33,37,39,47,51,53,55,60,62,65,74,80,85,89,91,93,94,95,96,111,115,116,117,118,119,122,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,148,149,150,151,152,153,154,157,158,159,160,161,162,163,166,167,168,169,170,171,172,174,175,176,178,179,182,186,189,190,191,193,198,199,208,216,217,222,228,233,237,287,290,333,341,347,350,358,384,390,398,402,430,449,461,476,480,490,495,516,536,543,544],letsencrypt:[187,197],letter:[0,17,28,35,60,64,70,80,104,105,116,119,135,157,170,175,178,197,201,219,228,234,245,279,353,358,386,464,473,496],leve:406,level10:297,level:[1,3,8,13,14,15,19,20,27,28,30,31,33,39,44,46,48,49,50,53,57,62,63,64,69,74,80,83,85,94,98,104,119,121,128,130,135,140,142,143,144,146,156,161,162,164,168,170,178,181,188,195,197,200,201,208,210,219,222,224,225,236,245,246,249,251,277,297,303,341,353,368,390,392,397,402,407,422,459,468,470,476,478,483,484,489,496,517,547],lever:[23,48,277],leverag:[52,119,144,149],levi:67,lexicon:279,lhs:[0,153,162,230],lhslist:230,liabl:279,lib:[183,187,191,195,196,201],libapache2:182,libcloud:75,libcrypt:191,libjpeg:191,librari:[0,1,8,10,11,15,41,48,49,51,64,69,114,116,117,120,122,125,127,133,136,151,160,161,169,178,180,181,190,191,192,193,199,201,239,274,386,406,407,433,468,470,482,496],licenc:473,licens:[0,9,105,117,118,142,386,473,499,500,548],lid:[106,368],lidclosedcmdset:368,lidopencmdset:368,lie:[170,279],lied:279,lies:[12,23,134],life:[36,118,125,142,143,144,163,176,251,374,548],lift:[33,128,146,175,279,316,398],lifter:33,light:[16,20,42,69,119,138,140,143,183,216,313,344,375,376,407,414,473],lightabl:375,lighter:[60,313],lightest:20,lightli:[56,313],lightsail:197,lightsourc:375,lightsource_cmdset:375,lightweight:[84,117,293],like:[0,1,4,6,7,8,9,10,11,12,13,14,16,17,18,19,20,21,23,25,28,29,30,31,32,33,34,35,37,39,41,42,44,45,46,47,48,50,51,52,53,54,55,56,57,58,60,62,64,65,67,68,69,72,73,74,76,80,81,83,84,85,86,89,90,91,92,93,94,95,96,98,104,105,106,107,108,110,111,112,113,115,116,117,118,119,120,121,122,124,125,126,128,129,130,132,133,134,135,136,137,138,139,140,141,143,144,146,147,149,151,152,153,154,155,156,157,158,159,161,162,163,164,165,166,168,169,170,171,173,174,176,177,178,179,181,182,183,185,186,187,188,189,190,191,192,193,195,196,197,199,200,201,208,209,211,212,214,215,216,219,221,222,227,230,234,235,236,237,245,255,264,270,272,274,279,287,290,293,296,297,300,312,314,315,316,320,326,329,333,342,350,353,354,358,366,368,376,384,386,390,393,394,395,397,398,400,401,402,406,407,420,425,433,449,452,454,458,460,461,468,469,470,473,474,476,479,480,481,482,483,484,487,490,492,493,494,496,499,521,536,545,548],likewis:0,limbo:[15,16,20,63,80,96,113,116,124,128,132,133,138,170,174,179,200,201,222,245,335,376,424],limbo_exit:170,limit:[0,1,7,13,14,19,20,21,23,24,28,30,31,33,35,41,42,46,48,49,50,56,57,67,74,81,84,95,96,110,111,112,116,117,120,121,122,125,128,130,132,134,135,137,139,140,141,143,147,153,154,162,169,175,176,183,188,197,200,201,208,210,217,219,220,221,222,236,237,261,279,290,293,312,314,315,341,354,357,358,368,390,392,393,394,395,398,400,402,407,409,410,415,425,438,463,468,469,470,471,474,476,478,489,493,496,499,514,542],limit_valu:[201,208],limitedsizeordereddict:496,limitoffsetpagin:201,limp:138,line2:134,line:[0,1,4,7,8,10,11,14,15,16,17,19,20,21,23,24,28,30,32,35,36,37,40,41,48,51,53,54,57,60,64,65,67,69,75,76,80,85,88,94,95,96,98,101,104,111,115,116,117,118,119,120,123,124,126,127,128,131,133,134,136,137,142,153,155,156,157,160,161,162,163,164,166,169,170,174,175,178,179,183,185,187,192,193,195,197,198,200,201,203,205,208,213,216,222,227,229,231,232,245,274,306,333,337,341,353,354,368,384,390,402,406,420,425,440,443,448,459,470,473,474,478,479,480,481,482,489,496,536,541],linear:159,linebreak:[164,473,495],lineeditor:478,lineend:495,lineno:119,linenum:478,liner:432,linereceiv:[440,443],linesend:449,lingo:[44,67,73,161],linguist:496,link:[0,1,3,10,11,13,16,18,19,21,23,26,28,31,37,44,49,52,53,61,62,71,80,94,95,112,118,121,122,123,124,125,126,128,130,131,132,133,135,142,149,153,155,157,159,161,164,168,170,174,175,178,179,185,189,193,197,198,201,208,211,222,227,258,274,335,339,340,341,342,343,398,402,410,418,420,431,435,440,443,470,495,496,509,548],link_button:509,link_object_to_account:509,linknam:[119,185],linknod:342,linktext:119,linkweight:342,linod:197,linux:[1,3,7,9,12,36,76,119,122,123,124,135,136,153,182,183,187,189,191,192,196,197,202,380,496],liquid:470,list:[0,1,2,7,8,9,11,13,14,15,16,17,19,20,21,23,26,28,30,31,32,33,35,37,41,42,44,46,48,49,50,51,53,55,60,62,63,64,67,68,70,72,73,76,78,80,81,82,83,85,90,91,94,95,96,97,98,101,104,105,111,116,118,121,123,125,126,128,130,131,132,135,137,138,139,140,141,143,144,146,147,149,153,157,159,161,162,164,167,168,169,170,174,175,178,179,181,183,185,189,195,197,198,199,201,203,208,209,210,211,214,215,216,217,219,220,221,222,227,228,229,230,232,233,236,237,238,245,248,258,259,261,262,264,270,277,278,279,287,290,293,296,300,303,306,309,312,313,314,315,316,320,333,335,341,342,343,344,350,353,354,358,368,373,374,375,380,381,384,386,390,392,393,395,398,400,401,402,406,407,409,411,412,413,415,418,420,425,426,429,430,432,434,436,438,439,444,449,452,461,463,465,468,469,470,471,473,474,475,476,477,480,482,483,489,490,493,494,496,499,500,504,505,512,514,517,519,520,521,527,529,540,541,542,544,546,547,548],list_callback:259,list_channel:227,list_displai:[504,506,508,509,510,511,512],list_display_link:[504,506,508,509,510,511],list_filt:[504,508,509,512],list_nod:[0,24,480],list_of_fieldnam:162,list_of_myscript:42,list_prototyp:406,list_select_rel:[506,508,509,510,511],list_serializer_class:522,list_set:420,list_styl:219,list_task:259,list_to_str:[0,496],listabl:222,listaccount:232,listbucket:75,listcmdset:222,listdir:201,listen:[13,19,33,44,51,55,104,165,183,187,199,201,227,236,270,279,353,354,368,541,548],listen_address:183,listing_contact:[185,201],listnod:480,listobject:222,listview:[541,542,544],lit:[375,376,483],liter:[15,30,31,41,50,63,128,161,228,473,483,492,496],literal_ev:[30,480,483,496,505],literari:143,literatur:548,littl:[0,6,12,17,23,41,42,48,53,54,78,94,96,98,111,113,115,116,117,119,122,123,124,125,126,128,130,132,133,134,135,136,137,138,140,141,142,143,144,151,152,153,154,158,161,162,164,168,169,170,171,172,179,188,192,197,203,279,313,315,354,373,376,455,468,480,496,536],live:[9,14,53,119,133,142,181,182,183,187,190,192,197],ljust:[30,473,483],lne:390,load:[0,1,7,8,9,10,12,14,15,17,21,23,27,28,41,51,52,53,55,64,75,85,89,116,133,134,135,136,140,146,151,155,160,161,162,164,167,170,174,175,199,201,211,216,228,229,232,238,261,282,298,320,341,343,353,392,394,398,401,402,406,410,414,424,427,429,460,468,470,471,474,475,478,483,488,490,491,494,496,514,529,534],load_buff:478,load_data:475,load_game_set:529,load_kwarg:491,load_module_prototyp:406,load_stat:282,load_sync_data:460,loader:[28,343,470,496],loadfunc:[27,478,491],loaf:[85,117],loc:[0,222,335],local0:187,local:[0,4,9,12,30,49,50,53,60,64,94,104,116,118,122,126,131,134,151,153,163,178,183,187,189,192,195,199,201,202,258,261,354,407,443,468,548],local_and_global_search:400,local_non_red_ros:130,local_ros:130,locale_path:201,localecho:[0,425],localhost:[49,50,51,52,53,73,123,124,125,149,164,178,179,183,184,187,190,191,193,197,201,202,449],locat:[0,7,8,10,11,12,13,15,20,21,23,25,26,28,32,33,37,41,42,46,48,49,50,51,53,55,58,63,73,74,75,80,89,90,94,95,96,98,100,103,115,116,117,119,122,123,124,125,126,128,130,131,132,133,134,135,138,141,142,144,151,152,153,156,157,159,161,162,168,169,170,171,172,174,175,178,182,187,190,192,193,197,199,200,201,202,208,213,222,228,232,236,237,245,282,284,290,296,309,320,326,333,335,339,341,342,343,344,354,366,374,376,397,400,401,402,407,449,458,468,469,470,471,474,476,480,482,489,493,522,525,527],location_nam:333,location_set:130,locations_set:[130,401],locattr:[375,397],lock:[19,21,23,24,26,30,35,37,41,42,46,48,50,54,55,57,80,89,94,102,104,107,116,120,123,126,128,131,132,133,144,152,153,154,155,157,158,162,163,167,168,175,178,183,188,197,200,201,203,205,206,208,210,217,219,220,221,222,227,228,229,231,232,233,234,236,237,238,245,255,258,259,261,262,270,277,279,287,290,296,297,300,303,306,309,320,326,333,335,342,347,354,368,370,374,375,376,392,393,394,400,401,402,406,407,409,429,465,468,470,471,476,478,480,490,496,497,509,517,544,548],lock_definit:398,lock_func_modul:[33,201,398],lock_storag:[217,219,220,221,222,227,228,229,230,231,232,233,234,238,245,255,259,270,273,274,277,287,290,296,297,300,303,306,309,312,313,314,315,316,320,326,329,335,347,354,368,370,374,375,376,384,390,392,394,402,451,468,470,478,480,481],lock_typ:33,lockabl:[35,107,117,162,279,326],lockablethreadpool:465,lockdown:[33,201,468],lockdown_mod:[197,201],lockexcept:398,lockfunc1:33,lockfunc2:33,lockfunc:[0,19,23,33,39,120,132,134,153,174,200,201,205,206,222,227,396,471],lockhandl:[0,14,31,33,48,126,205,206,217,245,274,396,397],lockset:402,lockstr:[0,8,14,19,23,31,33,41,123,134,144,201,210,222,227,229,236,237,238,270,326,393,398,400,402,407,409,468,471,476,517],locktyp:[19,215,227,296,407,471,483],lockwarn:201,lockwarning_log_fil:201,locmem:201,locmemcach:201,log:[0,4,5,7,9,11,12,13,14,23,24,25,28,32,35,37,42,44,45,50,51,52,53,54,55,63,64,67,73,76,78,89,94,113,116,119,120,121,122,123,125,126,128,134,142,144,146,152,153,157,161,162,170,174,175,178,179,182,183,184,186,187,188,189,191,192,195,197,201,202,203,208,210,216,220,234,236,237,254,255,280,341,342,343,380,381,384,402,410,414,420,425,429,430,434,437,438,440,443,451,452,453,459,461,463,465,470,476,489,496,504,541,542],log_19_03_08_:0,log___19:0,log_dep:[20,489],log_depmsg:489,log_dir:[19,201,236,380,489],log_err:[20,489],log_errmsg:489,log_fil:[19,20,236,489],log_file_exist:489,log_info:[20,489],log_infomsg:489,log_msg:489,log_sec:[0,489],log_secmsg:489,log_serv:489,log_system:489,log_trac:[20,42,172,173,489],log_tracemsg:489,log_typ:489,log_typemsg:489,log_warn:[20,489],log_warnmsg:489,logdir:4,logentry_set:211,logfil:[2,420,489,541],loggad:64,logged_in:[44,201],loggedin:[53,438],logger:[0,20,42,120,172,173,205,206,380,432,472],logic:[0,6,8,28,53,54,85,89,94,96,116,123,132,142,144,157,158,159,164,170,179,201,279,353,401,405,424,468,480,497,519],login:[0,7,8,12,13,23,25,28,33,44,45,52,53,61,76,116,117,123,124,142,153,164,178,197,201,208,219,234,253,254,255,256,398,424,425,440,443,448,449,452,461,496,528,530,537,548],login_func:452,login_redirect_url:201,login_requir:201,login_throttle_limit:201,login_throttle_timeout:201,login_url:201,loginrequiredmixin:[542,547],logintest:537,loglevel:489,logo:[75,125,150],logout:[0,201,451,452,537],logout_func:452,logout_url:201,logouttest:537,logprefix:[430,440,443,465],lon:483,lone:[140,170,222,229,495],long_descript:[185,201],long_running_funct:54,long_text:29,longer:[0,23,27,29,30,47,48,58,67,72,94,96,108,113,126,133,135,136,152,153,155,162,164,169,176,181,185,215,220,236,290,312,316,329,353,354,411,414,478,482,496],longest:[20,354],longrun:23,longsword:49,loo:[217,233],look:[0,1,4,6,7,8,10,14,15,16,17,18,20,21,23,24,25,26,28,30,32,33,36,37,39,41,42,44,46,48,50,52,53,54,55,56,57,58,60,62,64,65,67,68,69,73,80,81,85,88,89,90,91,94,95,96,99,100,101,104,106,111,113,116,117,118,119,121,122,123,124,125,126,127,130,131,132,133,134,135,136,137,138,139,140,141,143,144,146,147,149,150,151,152,153,155,156,157,158,159,161,162,163,164,166,167,168,169,170,171,172,174,176,178,179,183,187,188,191,192,195,197,199,201,203,208,209,214,216,217,219,222,228,230,233,234,254,255,260,277,278,279,290,296,306,309,314,320,333,342,343,344,353,354,366,368,373,375,376,384,390,393,397,398,401,402,404,407,409,425,440,441,448,452,468,470,474,480,482,483,490,493,494,495,496,500,504,509,536],look_str:208,lookaccount:162,lookat:23,looker:[7,30,58,116,159,162,175,208,279,280,290,320,333,344,354,366,402,470],lookm:23,lookstr:402,lookup:[8,14,23,33,46,58,67,125,127,201,213,228,380,392,400,401,406,439,471,473,486,487,492,493,496,497],lookup_expr:516,lookup_typ:492,lookup_usernam:28,lookuperror:473,loom:170,loop:[0,7,14,30,48,94,95,96,112,116,117,121,122,125,130,147,152,159,164,168,172,201,205,209,312,342,407,438],loopingcal:423,loos:[16,28,81,208,227,290,316,393,440,451,474],loot:[125,139,140],lop:130,lore:[31,162,229,392],lose:[14,44,140,142,147,160,175,192,203,314,380,431,432,440,443],loser:138,lost:[48,73,96,108,119,157,160,169,170,181,201,203,227,329,417,430,431,432,440,443,448,468,473],lot:[0,1,3,6,7,10,12,15,17,19,20,30,31,33,41,42,46,48,50,52,53,54,58,64,67,69,73,80,85,88,89,91,94,95,96,98,109,111,112,116,118,120,121,123,125,126,130,132,133,134,135,136,137,138,140,141,142,143,144,145,146,154,157,161,162,163,164,169,170,174,175,178,181,187,197,201,245,251,255,313,333,354,370,375,384,465],loud:[144,152],love:[31,51,143,392],low:[0,21,62,63,95,142,197,201,215],lower:[7,13,14,19,21,23,28,39,51,54,57,60,67,110,116,138,142,153,155,159,162,163,168,197,201,214,215,219,230,232,341,342,354,358,425,471,473,496],lower_bound_inclus:358,lowercas:[119,135,217,354,473],lowest:[39,63,110,197,358,397,473],lpmud:72,lsarmedpuzzl:309,lspuzzlerecip:309,lst:[159,393,476],lstart:27,lstrip:[169,473],ltthe:232,ltto:59,luc:479,luciano:181,luck:[28,85,125,133,169,182],luckili:[12,33,170],lue:[60,473],lug:121,luggag:137,luhttp:232,lunch:[94,95],lunr:[0,31,201,229,395],lunr_stop_word_filter_except:[0,201],lunrj:395,lure:201,lurk:142,luxuri:[46,467],lvl10:297,lvl:489,lycanthrophi:130,lycantrhopi:130,lycantroph:130,lycantrophi:130,lying:[170,279],m2m:471,m2m_chang:45,m_len:496,mac:[7,9,12,119,122,124,125,135,183,184,190,192,196,202,496],machin:[9,12,15,135,142,153,183,192,201,374],machineri:201,macport:[12,193,195],macro:[123,147],macrosconfig:123,mad:12,made:[0,1,4,12,14,25,28,30,33,39,41,49,53,57,75,77,81,87,89,94,111,116,117,119,126,128,133,134,136,137,140,142,144,149,152,153,160,162,170,174,175,179,196,197,198,199,200,201,213,215,232,233,236,287,290,314,315,316,337,358,384,390,398,414,422,452,466,473,474,478,480,483,496],mag:479,magazin:181,mage:[28,75,130],mage_guild_block:28,mage_guild_welcom:28,magenta:176,magic:[2,14,33,46,74,77,93,138,140,141,142,156,174,287,297,315,350,357,422],magic_meadow:46,magicalforest:74,magiccombatrul:315,magnific:28,mai:[2,5,6,7,8,9,10,11,12,14,15,19,20,21,23,28,30,31,33,34,36,37,41,42,44,47,48,49,53,54,57,58,60,62,63,64,65,67,68,69,73,75,77,81,83,85,89,93,94,96,104,110,111,112,113,116,117,118,119,122,123,124,125,127,128,130,132,133,135,137,138,139,140,141,143,144,146,147,151,152,153,154,155,160,161,163,164,166,170,172,173,175,178,179,181,182,183,185,187,188,191,192,193,195,196,197,199,200,201,203,208,209,213,214,215,217,219,220,222,227,229,232,233,236,237,238,239,251,279,282,287,290,296,297,312,313,314,315,316,341,342,350,353,354,358,375,376,384,398,400,402,406,407,408,422,459,461,462,466,468,470,471,473,475,476,477,478,480,482,483,484,490,493,496,499,505,512,525,542],mail:[0,7,11,28,35,118,121,124,126,147,161,181,205,206,237,238,239,285,548],mailbox:[35,303],main:[0,8,12,15,16,17,21,23,28,31,34,37,39,40,41,42,44,46,47,48,49,51,52,53,58,62,65,67,73,80,91,94,95,102,104,116,117,118,122,125,127,128,131,133,134,141,142,144,147,152,156,159,160,164,166,168,169,178,179,181,183,185,192,197,200,201,203,208,211,213,219,222,227,229,233,236,238,245,261,296,298,303,333,337,343,353,354,384,394,395,401,402,407,410,420,424,425,427,432,437,439,444,458,460,465,470,471,480,481,485,493,495,496,504,510,527,545],mainli:[7,14,23,28,35,37,44,54,55,58,65,134,135,161,181,201,219,391,468,474,496],maintain:[0,7,12,31,47,57,69,75,116,117,118,119,123,137,143,160,183,190,192,197,201,202,232,234,255,337,415,548],maintainership:0,mainten:[197,199,548],major:[16,17,30,122,141,161,174,178,183],make:[0,1,2,4,5,6,7,8,9,11,13,14,15,16,17,19,21,23,26,27,28,30,31,32,33,35,36,37,39,41,42,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,62,64,65,67,69,70,74,75,76,77,79,80,85,90,92,93,94,95,96,97,98,104,107,108,110,111,113,115,116,117,119,121,122,123,124,125,127,129,130,131,132,134,136,137,138,139,140,141,143,145,146,147,148,150,151,153,154,155,156,157,158,159,160,163,164,165,166,168,169,170,171,172,176,177,178,179,180,181,182,183,184,185,188,189,190,191,192,193,195,196,197,199,200,201,202,203,208,209,211,214,215,216,217,219,220,222,227,230,233,237,245,251,262,277,279,287,290,296,297,303,312,313,314,315,320,326,329,335,341,342,344,350,353,354,358,363,368,374,375,376,382,384,390,393,397,398,400,402,406,407,409,412,415,420,424,432,437,451,452,458,459,461,462,464,465,468,469,470,471,473,474,475,476,477,478,480,482,483,484,487,493,494,495,496,505,512,514,537,545,547,548],make_it:496,make_shared_login:530,make_uniqu:215,makeconnect:429,makefactori:440,makefil:119,makeit:451,makemessag:64,makemigr:[4,67,178],makeshift_fishing_rod:85,male:[58,92,300,483,500],malevol:[16,201],malform:[343,494,497],malici:[30,199],malign:398,malysh:75,man2x1:69,man:[0,36,58,69,72,104,141,197,228,303,354],mana:[154,156],mana_cost:297,manaag:508,manag:[0,7,10,11,13,19,21,24,33,37,42,44,47,48,62,65,67,101,104,116,117,120,124,130,132,141,144,157,160,161,168,178,192,196,201,203,205,206,207,208,211,222,227,232,233,235,236,238,270,282,306,316,344,354,376,391,394,399,401,402,406,408,410,415,416,420,427,467,468,470,471,472,475,476,485,488,489,493,496,537,540,541,542,547,548],manager_nam:468,manchest:496,mandat:536,mandatori:[41,45,72,80,94,96,98,116],mandatorytraitkei:358,maneuv:[111,390],mangl:446,mango:[103,309],manhol:440,manhole_ssh:440,mani:[0,1,7,10,11,12,13,14,16,17,18,19,20,21,23,28,30,31,37,41,42,44,45,47,48,49,52,53,54,55,60,61,62,63,64,67,68,69,70,72,73,74,75,81,91,96,104,108,109,111,112,114,116,117,119,121,122,123,124,126,128,129,130,132,134,135,136,140,142,143,146,147,156,158,159,160,161,162,163,168,169,170,172,173,174,175,176,178,179,189,193,197,198,199,200,201,203,210,211,215,217,222,227,233,238,249,255,274,279,287,290,296,298,314,315,329,341,342,344,354,370,374,384,390,394,395,398,400,401,407,410,415,420,434,442,444,463,468,470,471,473,480,481,483,487,488,489,545],manifest:132,manipul:[0,14,21,28,39,41,42,50,67,80,90,94,96,110,117,122,126,158,175,210,222,232,237,258,318,320,358,393,400,402,409,426,476,481,542,544],manner:[16,333,354,402,438,470],manpow:118,manual:[0,7,8,11,14,16,23,31,33,37,41,42,48,50,52,60,62,64,67,74,94,110,111,116,117,119,121,123,125,128,132,133,135,139,140,143,144,152,156,162,165,168,170,171,174,179,181,183,187,194,195,196,197,201,202,203,205,209,222,274,281,342,358,368,373,390,402,407,413,420,437,444,480,481,483,548],manual_paus:[42,413],manual_transl:[104,353],manytomanydescriptor:[211,238,394,401,410,468,470,471],manytomanyfield:[211,238,394,401,410,468,470,471],map10:339,map11:339,map12a:339,map12atransit:339,map12b:339,map12btransit:339,map1:[116,339,342],map2:[116,339,342],map3:339,map4:339,map5:339,map6:339,map7:339,map8:339,map9:339,map:[0,8,17,19,28,30,36,58,68,73,75,82,86,94,95,96,104,115,117,122,153,157,161,162,165,187,192,201,205,206,219,227,236,239,248,249,251,279,318,333,334,335,336,338,339,340,341,343,344,353,354,358,395,402,406,407,444,468,470,473,479,480,483,494,496,500,501,548],map_align:[116,344],map_area_cli:344,map_character_symbol:[116,344],map_data:[339,341],map_displai:[116,339,344],map_exampl:336,map_fill_al:[116,344],map_legend:98,map_mod:[116,344],map_modul:170,map_module_or_dict:341,map_separator_char:[116,344],map_str:[115,159,170,333],map_target_path_styl:[116,344],map_visual_rang:[116,344],mapa:116,mapb:116,mapbuild:[98,205,206,239,318,548],mapc:116,mapcorner_symbol:341,mapdata:343,maperror:[340,341],maplegend:98,maplink:[116,341,342],mapnam:[98,335,343],mapnod:[116,341,342],mapp:483,mapparsererror:[340,342],mapper:[341,483,487,501],mapprovid:[115,333],maps_from_modul:343,mapstr:[116,343],mapstructur:341,mapsystem:201,maptransit:340,maptransitionnod:[116,342],march:[2,181,489],margin:18,mariadb:202,mark:[0,12,15,16,23,30,31,33,50,51,53,59,60,71,73,74,111,116,119,126,130,135,141,152,159,162,189,190,193,195,197,201,214,221,261,284,297,320,339,341,342,386,390,461,468,470,474,479,480,483,492],mark_categori:390,markdown:[31,119,123,185,201],marker:[15,19,23,30,36,53,58,60,92,111,116,117,122,135,141,144,201,227,228,279,284,296,300,320,341,342,354,390,402,432,440,443,448,449,468,471,473,479,480,481,489,525],market:[142,197],markup:[31,58,60,117,151,166,201,205,206,222,247,248,249,472,495,496,548],martei:75,marti:75,martiniussen:75,mask:[104,117,141,309,354,381,382],maskout_protodef:309,mass:[7,140,165,315,548],massiv:[121,154,201],master:[87,89,95,110,117,118,119,124,125,139,140,146,147,161,172,179,192,196,198,201,358,466],match:[0,2,10,11,12,14,20,21,23,28,30,31,32,33,36,37,39,41,42,44,46,48,50,51,53,60,65,67,68,73,80,82,85,90,98,110,115,116,124,128,130,132,137,144,151,157,158,159,161,162,163,169,170,172,178,179,183,200,201,208,210,213,214,215,216,217,220,222,227,228,229,231,233,237,245,248,251,264,296,303,306,309,315,320,333,341,342,344,354,358,384,392,393,395,397,398,400,402,406,407,409,412,415,425,426,438,451,461,468,469,470,471,473,478,480,482,483,489,491,493,494,495,496,497,499,525,547],match_index:214,matched_charact:384,matcher:28,matches2:67,matchobject:[473,495],mate:122,materi:[85,135,142,296,297],math:157,mathemat:[141,215],matlab:1,matplotlib:453,matric:[116,341],matrix:[116,482],matt:75,matter:[4,14,21,28,31,34,44,45,64,69,85,96,104,116,123,124,125,135,136,139,140,144,146,147,151,153,161,163,164,169,171,193,199,215,296,316,342,354,374,401,425,468],matur:[0,11,31,53,69,72,135],maverick:122,max:[19,56,75,83,91,110,141,142,147,159,188,201,229,341,354,357,358,384,395,463,489,496],max_char_limit:201,max_char_limit_warn:201,max_command_r:201,max_connection_r:201,max_damag:314,max_dbref:469,max_depth:496,max_dist:159,max_entri:201,max_heal:314,max_hp:83,max_l:159,max_length:[67,159,178,354],max_lin:482,max_nest:483,max_nr_charact:[0,142,201],max_num_lin:541,max_pathfinding_length:341,max_popular:541,max_rmem:487,max_siz:[339,341,489],max_target:315,max_tim:339,max_valu:[350,536],max_w:159,max_width:159,maxalex:0,maxconn:187,maxdelai:[417,431,432,451],maxdepth:407,maxdiff:[233,298,355,520,531],maximum:[56,60,67,91,93,116,117,141,142,157,169,170,188,201,208,293,312,313,314,315,316,341,350,358,384,402,407,465,473,480,482,483,496],maxiumum:339,maxlengthvalid:[201,208],maxnum:496,maxrotatedfil:489,maxsplit:473,maxthread:465,maxval:[0,483,496],maxvalu:483,maxwidth:482,may_use_red_door:41,mayb:[14,15,16,20,21,23,28,41,67,74,77,80,85,116,119,124,130,132,133,134,137,140,142,143,146,147,152,153,158,159,164,167,168,185,195,197,216,264,287,297,353,438],mcclain:75,mccormick:75,mccp:[32,184,205,206,416,425,428],mccp_compress:433,mcintyr:75,mcmillan:0,md5:183,meadow:[46,74,80,141,483],mean:[0,6,7,8,10,11,12,14,15,16,17,19,20,21,23,28,32,33,34,35,36,39,41,42,44,46,48,52,54,55,58,60,62,65,67,68,70,73,80,85,94,95,96,104,110,114,115,116,117,118,121,122,125,128,130,131,132,133,134,135,136,138,139,140,143,144,146,147,151,154,159,161,162,163,166,168,170,171,174,175,176,179,180,183,192,197,199,200,201,203,208,209,210,216,222,229,261,274,279,297,341,344,347,353,358,375,397,400,402,406,407,411,415,420,444,460,468,470,473,480,482,483,487,489,492,493],meaning:[217,233],meaningless:175,meant:[0,21,31,35,42,48,49,51,52,56,65,74,80,92,110,112,115,117,128,132,134,141,158,163,176,185,201,215,245,279,300,312,313,314,315,316,333,354,358,370,376,392,402,425,474,496],meanwhil:31,measaur:7,measur:[7,175,197,201,214,231,341,451,452,496],meat:[125,127,139,145,148,150,178],mech:[165,548],mechan:[0,8,19,20,23,27,28,41,42,48,90,112,117,125,138,139,140,146,147,154,157,162,164,169,175,176,201,208,209,213,280,315,320,354,396,407,415,420,424,430,438,449,460,470,478,481,485,491,542,547],mechcmdset:152,mechcommand:152,mechcommandset:152,meck:152,med:64,medan:64,media:[56,75,117,132,201,448,465,492,504,505,506,508,509,510,511,512,536],media_root:201,media_url:201,median:159,mediat:146,mediev:297,medium:[56,201],mediumbox:429,meet:[4,115,132,138,141,153,260,333,464],mele:[83,112,141,316],melt:[296,297],mem:[201,232],member:[14,19,50,67,124,142,201,227,228,230,402,496],membership:[123,124,130],memori:[0,7,21,23,24,31,48,53,55,67,70,73,83,133,135,154,160,183,191,197,201,208,232,236,402,414,415,453,463,468,472,481,487,491,496],memoryerror:195,memoryusag:453,memplot:[205,206,416,450],meni:245,mental:[125,176],mention:[14,15,16,17,23,31,32,47,54,62,69,70,124,128,130,135,140,152,155,159,160,161,176,195,197,216,255],menu:[0,1,9,11,21,24,41,44,53,91,95,109,113,117,119,120,125,131,138,140,141,142,145,153,164,175,185,186,193,201,203,205,206,222,239,244,245,246,275,276,277,280,370,373,384,388,390,403,407,418,420,472,490,548],menu_cmdset:480,menu_data:28,menu_edit:245,menu_login:[0,99,205,206,239,240,548],menu_modul:480,menu_module_path:480,menu_quit:245,menu_setattr:245,menu_start_nod:370,menu_templ:[28,480],menuchoic:[28,480],menudata:[278,373,384,404,480],menudebug:[0,28,480],menufil:480,menunode_fieldfil:384,menunode_inspect_and_bui:168,menunode_shopfront:168,menunode_treeselect:390,menunodename1:28,menunodename2:28,menunodename3:28,menuopt:390,menutest:126,menutre:[28,480],merchandis:142,merchant:[95,109,117],mercuri:69,mere:[93,117,171,232,350],merg:[0,8,12,23,24,28,30,80,94,115,118,119,122,130,133,134,144,149,158,161,163,213,214,215,216,333,368,376,407,410,444,480],merge_prior:480,merger:[21,170,215,216],mergetyp:[21,28,147,215,368,376,478,480,481],merit:144,mess:[7,14,19,20,57,111,119,142,197,390],messag:[0,7,10,11,12,15,17,19,20,23,27,28,29,30,32,33,35,37,40,42,44,51,54,61,62,64,70,71,74,76,80,85,91,92,94,95,98,106,117,119,120,122,126,128,135,137,140,141,142,144,146,147,152,154,155,158,162,163,166,167,168,169,170,172,175,177,182,186,188,195,197,199,200,201,203,208,209,213,216,217,220,222,227,228,229,235,236,237,238,245,259,261,274,279,280,282,287,290,296,298,300,303,309,312,316,335,342,354,358,363,364,366,368,373,374,375,376,381,384,386,400,402,409,420,422,429,431,432,438,439,440,443,444,446,448,457,459,461,463,465,476,478,480,481,483,489,493,494,496,548],message_rout:51,message_search:237,message_tag:201,message_templ:175,message_transform:236,messagemiddlewar:201,messagepath:[61,548],messagewindow:51,messeng:366,messsag:282,meta:[35,48,132,200,201,470,487,504,505,506,508,509,512,516,519,522,536],metaclass:[48,67,217,470],metadata:[35,381,422],metavar:274,meteor:167,meter:[0,93,117,350,358],method:[0,2,6,10,12,13,14,19,20,21,24,28,30,31,33,37,39,41,44,45,46,47,48,51,53,54,58,62,65,67,68,76,80,85,94,95,101,102,104,105,106,110,114,116,119,121,122,124,125,126,129,130,131,134,136,137,144,146,147,153,154,155,156,157,159,162,163,164,169,170,171,172,173,174,175,177,178,179,200,201,208,210,211,213,215,216,217,219,222,223,227,229,230,232,233,236,237,238,243,245,246,251,252,258,261,270,274,277,279,282,283,284,287,293,296,298,306,309,312,313,314,315,316,317,320,326,329,333,335,339,342,344,353,354,355,357,358,364,368,373,374,375,376,380,381,386,392,393,394,397,398,400,402,409,414,415,417,422,425,426,427,429,430,431,432,433,438,440,443,446,448,449,451,452,456,458,459,460,461,463,468,470,473,474,476,478,480,481,482,483,484,487,488,489,490,491,493,494,495,496,506,512,516,517,519,520,522,542,545,547],methodnam:[233,243,246,249,252,256,262,271,273,283,288,291,294,298,301,304,307,310,317,321,327,330,332,339,348,351,355,357,364,371,377,382,387,389,415,446,456,488,494,501,520,531,537],metric:[167,353],michael:75,microsecond:14,microsoft:[170,193],mid:[69,155,174],middl:[23,155,159,197,313,339,473],middleman:187,middlewar:[0,201,205,206,502,526],midnight:[94,153,163],midst:138,midwai:60,mighht:169,might:[1,6,8,10,12,16,17,18,20,21,23,28,29,31,33,37,39,42,44,47,54,55,60,62,64,77,80,94,95,96,105,108,113,114,117,121,123,125,126,128,140,142,146,147,151,153,154,155,156,157,162,163,164,166,167,168,169,170,173,175,176,177,178,182,183,191,192,195,197,198,199,200,203,216,220,222,274,287,312,329,381,386,402,409,449,470,473,478,490,496,519,536],mighti:[19,133,155,170],migrat:[0,2,3,4,5,7,10,45,67,75,117,119,124,125,132,170,178,183,190,191,193,196,203,407],mike:222,million:[178,183],mime:[75,237,476],mimic:[0,7,10,14,27,42,121,142,146,183,238,358,392,459,478],mimick:[27,122,146,451,478,481],mimim:471,min:[42,86,91,110,141,159,163,201,251,357,358,384,483,484],min_damag:314,min_dbref:469,min_heal:314,min_height:482,min_length:201,min_shortcut:[80,245],min_valu:536,min_width:482,mind:[15,16,28,54,55,83,93,94,117,118,121,135,136,140,141,143,144,160,161,165,176,179,183,185,261,287,350,386,422,496],mindex:214,mine:[58,95,142,199,483,500],mini:[39,58,121,132,133,134,170],miniatur:138,minim:[7,44,53,75,104,116,140,143,147,199,353,407],minimalist:[23,69,162],minimum:[0,44,80,85,91,110,117,122,142,146,162,201,312,314,315,358,384,425,465,470,482,483,491,496],minimum_create_permiss:517,minimum_list_permiss:517,minimumlengthvalid:201,mininum:482,minlengthvalid:[201,208],minor:[196,216],mint:[12,187,193],minthread:465,minu:[67,130,402,484],minut:[20,42,94,143,147,154,163,169,181,192,201,227,232,251,287,463,484,496],minval:[0,483,496],mirc:432,mirror:[44,100,116,135,181,205,206,239,359,548],mirth:98,mis:161,misanthrop:130,miscelan:472,miscellan:[117,131,132],misconfigur:183,mismatch:[32,496],miss:[0,19,53,64,118,126,142,159,161,193,195,197,296,298,312,313,314,315,316,406,425],missil:[152,315],mission:164,mistak:[0,50,119],mistaken:0,mistakenli:0,misus:197,mit:[181,473],mitig:[161,199,546],mix:[0,10,14,23,28,58,60,64,77,110,116,117,120,130,144,156,176,178,208,229,238,279,287,297,341,354,358,402,406,407,464,471,474,482,483,496],mixabl:279,mixer:279,mixer_flag:279,mixin:[0,10,37,83,205,206,406,454,494,502,519,522,535,539,540,541,542,544,547],mixtur:[166,279,483],mkdir:[4,124,193],mktime:163,mlocati:64,mmo:112,mmorpg:143,mob0:160,mob:[16,33,44,113,121,125,138,139,140,160,205,206,216,222,239,359,372,376,377,407,474,548],mob_data:160,mob_db:160,mob_vnum_1:160,mobcmdset:374,mobdb:160,mobil:[16,41,138,142,188,374,397],moboff:374,mobon:374,mock:[297,414,494],mock_random:364,mock_repeat:233,mock_tim:[294,357,456],mock_tutori:233,mockdeferlat:494,mockdelai:494,mocked_idmapp:456,mocked_o:456,mocked_open:456,mocked_randint:348,mockrandom:298,mockval:494,mod:[0,110,182,357,358,406],mod_import:496,mod_import_from_path:496,mod_or_prototyp:406,mod_prototype_list:406,mod_proxi:202,mod_proxy_http:182,mod_proxy_wstunnel:182,mod_secur:199,mod_ssl:202,mod_sslj:182,mod_wsgi:202,mode:[0,6,7,9,13,21,24,26,27,28,32,53,61,73,78,94,97,106,116,128,133,135,136,142,147,164,171,175,178,181,182,187,192,199,201,202,205,221,229,232,234,243,303,339,341,344,368,374,402,420,425,430,437,448,449,458,474,478,480,483,489,496,548],mode_clos:449,mode_init:449,mode_input:449,mode_keepal:449,mode_rec:449,model:[0,2,14,31,33,35,36,42,46,47,48,49,50,58,61,73,84,110,112,117,119,122,124,130,142,146,151,164,177,201,205,206,207,208,210,235,236,237,293,358,391,399,402,408,411,415,416,426,467,468,469,471,472,477,485,486,488,492,493,496,504,505,506,508,509,510,511,512,516,519,536,540,541,542,546,547,548],model_inst:492,modeladmin:[506,508,509,510,511,512],modelattributebackend:468,modelbackend:528,modelbas:487,modelchoicefield:[504,509],modelclass:[14,46],modelform:[504,505,506,508,509,510,512,536],modelmultiplechoicefield:[504,506,508,509],modelnam:[201,217,236,392,394,470],modelseri:519,modelviewset:522,moder:[77,104,123,157,287],modern:[0,14,17,54,69,99,117,156,170,176,181,187,199,201,433],modif:[12,23,30,53,65,94,95,96,118,153,169,175,182,192,201,358,466,536],modifi:[0,1,11,12,13,14,19,21,23,24,28,30,31,37,41,42,44,48,49,51,52,60,62,73,74,80,85,88,89,92,94,95,96,99,104,108,110,112,116,117,119,120,121,123,125,126,127,128,132,134,135,136,137,138,141,142,143,144,146,150,153,157,158,160,161,162,168,170,172,175,180,183,192,200,201,203,208,216,229,236,245,261,274,279,280,282,296,297,300,309,312,313,314,315,316,320,329,347,354,357,358,375,376,394,400,402,407,415,470,474,480,487,492,495,504,525,536,540,541,542,544,546,547],modul:[0,1,7,8,10,14,15,17,20,21,23,25,27,28,30,31,32,33,37,42,44,45,48,53,62,65,69,73,76,77,80,81,82,83,85,86,87,88,89,91,93,94,98,99,102,104,105,107,108,111,112,114,116,117,118,119,121,125,126,127,128,131,132,133,134,136,141,142,144,145,149,152,155,160,161,162,163,166,167,168,170,171,174,175,186,191,198,199,200,201,202,203,213,214,216,217,222,224,225,226,229,231,233,245,248,249,251,254,255,258,259,260,262,270,274,277,279,282,284,287,290,293,296,297,298,312,313,314,315,316,320,326,329,335,341,343,347,350,353,354,357,358,368,374,375,376,382,384,386,390,392,397,398,401,402,405,406,407,411,413,414,415,417,419,420,424,425,429,437,439,440,443,444,447,449,451,452,453,458,460,461,462,468,470,471,472,473,474,475,476,477,478,479,480,481,483,484,494,496],modular:0,module1:118,module2:118,module_path:343,module_with_cal:483,modulepath:429,mogilef:75,moifi:320,mold:136,mollit:29,moment:[0,21,31,47,64,73,95,133,141,152,161,168,169,201,208,341,410],mona_lisa_overdr:137,monei:[67,77,117,124,140,141,142,143,197],monetari:[118,287],mongodb:75,monitor:[0,7,34,68,120,411,425,444,487],monitor_handl:[0,34,120,205,411],monitorhandl:[0,24,32,205,206,408,548],monlit:130,mono:153,monster:[31,37,41,122,133,136,140,141,142,145,155,161,222,407],monster_move_around:136,month:[0,75,86,94,117,118,163,187,197,201,251,484,489,496],monthli:[118,163],montorhandl:34,moo:[69,72,121,125,161,181,395,483],mood:[95,110,138,142,143,358],moon:[130,153,163,167],moonlight:130,moonlit:130,moor:[98,138],moral:8,more:[0,2,4,6,7,8,10,12,13,14,15,16,17,18,19,20,21,23,24,25,27,28,29,30,31,32,35,36,37,39,42,44,46,47,48,51,53,54,55,57,61,62,63,64,65,67,68,69,70,76,77,78,80,81,84,88,89,90,93,94,95,96,98,101,102,104,105,106,108,109,110,111,112,113,115,116,117,118,121,122,123,124,125,126,127,128,130,131,132,133,135,136,137,138,139,140,141,143,144,146,147,148,149,151,152,153,154,157,158,159,160,162,163,164,168,169,170,172,174,175,176,177,178,179,181,183,187,188,189,190,191,192,193,197,199,200,201,203,205,207,208,210,211,214,215,216,221,222,227,228,229,232,233,234,236,237,239,245,251,254,255,261,264,274,277,279,287,290,293,296,312,313,314,315,316,320,329,333,341,342,343,344,350,353,354,358,368,370,374,375,376,386,390,393,395,400,402,406,407,409,430,432,435,444,451,452,461,466,468,469,470,473,474,476,477,478,479,480,481,482,483,487,493,494,496,497,509,518,519,536,545],more_command:481,more_funcparser_cal:30,morennanoth:233,morennthird:233,moreov:[42,197],morn:[90,91,141,320,384],morph_engli:499,morpholog:499,mortal:31,mosso:75,most:[0,2,6,7,8,10,11,14,15,18,19,20,21,23,25,28,31,32,33,35,37,44,45,47,48,49,50,51,53,54,58,60,62,65,67,68,69,70,72,74,80,85,93,94,95,96,104,108,110,116,117,118,119,122,123,124,125,126,128,129,130,131,132,135,136,137,138,141,142,143,144,146,147,153,156,157,159,160,161,162,163,164,167,169,170,171,174,175,176,178,182,183,192,195,197,199,200,201,208,211,215,216,219,222,230,238,245,284,296,297,312,313,314,315,316,329,339,341,342,350,353,354,358,376,394,395,398,401,402,406,407,410,414,443,448,458,468,469,470,471,480,481,487,488,494,496,541],mostli:[0,28,48,51,53,62,94,116,146,161,164,169,175,197,215,234,314,333,342,347,353,440,504],motiv:[15,16,37,121,125,139,140,431,432,438,439,440,443,448,449,460,461],mount:192,mountain:[69,98,170],mous:[51,59,201,480],mouth:335,movabl:279,move:[0,12,16,17,19,23,27,28,29,37,77,80,91,94,95,96,110,113,115,116,117,123,124,125,132,133,135,136,138,140,141,142,147,152,155,158,159,162,164,167,168,169,170,171,176,178,179,181,183,185,196,216,222,228,245,260,279,280,282,287,312,315,316,318,329,333,335,342,358,374,375,376,384,393,397,402,452,470,474,481],move_around:[133,136],move_callback:232,move_delai:232,move_hook:402,move_obj:333,move_posit:279,move_to:[0,37,96,144,168,174,329,402],movecommand:158,moved_obj:[280,333,376,402],moved_object:402,movement:[0,41,108,112,116,117,141,162,174,232,312,316,329,341,342,402],movementfailcmdset:158,mover:316,mptt:123,mratio:[214,231],msdp:[0,65,425,444],msdp_list:[0,425],msdp_report:[0,425],msdp_send:425,msdp_unreport:[0,425],msdp_var:444,msg:[0,6,10,13,14,15,19,20,23,24,27,28,29,33,34,37,39,44,51,54,62,67,68,72,80,83,84,85,92,93,94,95,96,97,98,100,114,117,119,120,126,133,134,135,136,144,146,147,153,154,155,156,158,160,162,163,167,168,169,170,172,174,175,188,201,205,208,209,210,217,219,222,223,227,236,237,238,274,279,282,293,296,300,303,341,342,343,344,350,358,366,368,381,398,402,431,432,459,474,476,478,480,481,489,494,496,505,506,512,548],msg_all:147,msg_all_sess:[23,217],msg_already_sit:144,msg_arriv:[94,96],msg_channel:227,msg_char:279,msg_cinemat:284,msg_content:[0,20,23,30,37,42,58,94,95,96,152,163,172,174,175,177,402],msg_db_tag:506,msg_help:229,msg_leav:[94,96],msg_locat:402,msg_other:287,msg_other_sit:144,msg_receiv:402,msg_room:279,msg_self:402,msg_set:471,msg_sitting_down:144,msg_standing_fail:144,msg_standing_up:144,msg_system:279,msgadmin:506,msgform:506,msglauncher2port:[420,429],msgmanag:[237,238],msgobj:236,msgportal2serv:429,msgserver2port:429,msgstatu:[420,429],msgtaginlin:506,mssp:[132,200,201,205,206,416,428],mssp_meta_modul:201,mtt:447,much:[0,1,2,6,7,14,15,16,17,28,31,33,37,42,47,48,53,54,58,64,70,80,85,94,96,104,110,111,116,122,123,125,126,128,130,133,134,135,136,138,142,143,144,145,146,147,153,155,157,159,160,163,164,167,169,170,173,174,177,178,179,181,183,193,197,201,211,216,221,230,245,251,293,316,341,347,353,354,358,368,375,390,460,468,471,473,474,475,482,496,514,525],muck:[125,161],mud:[0,8,11,17,32,33,36,40,44,47,51,58,60,62,68,69,73,74,80,89,94,112,117,121,122,128,132,135,138,140,143,146,147,152,156,159,160,169,170,171,176,177,182,183,184,189,190,192,193,195,197,198,200,201,203,211,216,219,316,373,417,433,434,435,440,443,444,447,474,484,548],mudbyt:181,mudconnector:[181,234],mudderi:181,muddev:[124,193,195],mudform:479,mudinfo:[0,126,201,234],mudlab:181,mudlet:[0,184,435],mudmast:184,mudprog:[94,117],mudramm:184,mudstat:234,muhammad:495,mukluk:184,mult:[30,41,357,358,483],multi:[0,21,28,44,54,80,111,113,117,118,119,121,125,127,133,137,138,139,140,144,175,192,200,201,214,232,246,279,297,339,341,342,354,390,395,402,461,480,496,544],multiaccount_mod:8,multidesc:[205,206,239,285,548],multilin:495,multilink:[116,342],multimatch:[0,21,137,201,214,354,402,483,496],multimatch_str:[208,354,402,496],multimedia:[0,51,75],multipl:[0,10,16,19,20,21,23,30,31,34,37,41,44,45,47,48,50,55,60,62,68,69,80,82,83,85,89,94,98,101,111,112,116,117,122,125,130,132,133,135,138,139,140,146,156,162,163,175,181,183,197,200,201,208,213,215,220,221,222,227,229,231,232,248,255,262,270,296,300,306,312,314,315,320,341,342,347,350,354,357,366,376,390,398,400,402,406,407,415,418,422,425,429,444,452,468,469,474,480,482,493,494,496,505,512],multiplay:[0,19,89,117,121,125,139,142,143,161,181],multipleobjectsreturn:[208,209,211,236,238,251,261,279,280,281,287,290,300,309,312,313,314,315,316,320,326,329,333,343,344,353,354,363,366,368,370,374,375,376,386,394,401,402,406,410,413,427,453,468,471,484,488],multiplet:201,multipli:[30,135,358],multisess:[24,61,164,201,480,548],multisession_mod:[0,13,23,44,50,122,142,164,175,178,184,201,208,219,223,300,402,461],multisession_modd:28,multitud:[60,161,170],multumatch:402,mundan:[138,152],murri:496,muscular:141,muse:181,mush:[4,69,82,101,117,121,124,125,146,147,165,181,248,306,548],mushclient:[32,184,425,435],musher:181,mushman:69,mushpark:197,music:52,musket:130,musoapbox:[161,181],must:[0,1,7,8,10,11,12,13,14,17,21,23,27,28,30,31,32,33,34,35,36,37,39,41,42,46,47,48,49,50,51,52,53,54,58,59,62,64,65,70,73,74,76,77,82,83,84,94,96,103,104,106,110,116,117,118,119,122,123,125,126,129,132,133,134,135,136,137,139,140,141,143,144,147,151,153,155,159,160,162,163,166,168,171,175,178,182,184,186,187,188,189,192,193,195,197,199,200,201,203,209,214,215,217,222,227,233,236,237,238,248,251,254,255,279,282,287,290,293,296,309,312,313,314,315,316,341,342,344,353,354,358,368,373,375,376,381,390,392,394,395,397,402,405,406,409,411,415,420,425,438,440,443,460,462,463,468,469,470,473,474,475,476,477,478,479,480,481,483,484,490,491,492,493,494,495,496,497,499,505,512,519,527,544,545],must_be_default:216,mustn:116,mutabl:[0,2,477],mute:[18,19,102,208,227,236,270],mute_channel:227,mutelist:[19,236],mutual:[368,469],mux2:[72,234],mux:[23,61,69,82,102,117,121,125,128,152,162,199,212,230,248,269,270,271,548],mux_color_ansi_extra_map:[82,248],mux_color_xterm256_extra_bg:[82,248],mux_color_xterm256_extra_fg:[82,248],mux_color_xterm256_extra_gbg:[82,248],mux_color_xterm256_extra_gfg:[82,248],mux_comms_cmd:[102,205,206,239,240,548],muxaccountcommand:[230,303],muxaccountlookcommand:219,muxcommand:[0,23,120,126,153,154,155,156,158,162,167,175,201,205,206,212,218,219,220,221,222,227,228,229,231,232,234,255,259,277,290,303,306,309,314,315,320,326,335,347,370,376,402,478],mvattr:[26,126,222],mxp:[0,32,59,184,201,205,206,229,416,425,428,440,443,473,480,495,496],mxp_enabl:[0,201],mxp_outgoing_onli:[0,201],mxp_pars:435,mxp_re:473,mxp_sub:473,mxp_url_r:473,mxp_url_sub:473,my_callback:462,my_datastor:67,my_func:136,my_funct:155,my_github_password:12,my_github_usernam:12,my_identsystem:36,my_object:155,my_port:62,my_portal_plugin:62,my_script:42,my_server_plugin:62,my_servic:62,my_word_fil:[104,353],myaccount:46,myaccountnam:137,myapp:67,myarx:124,myattr:[14,208],mybool:14,mybot:227,mycar2:36,mychair:46,mychan:19,mychannel1:227,mychannel2:227,mychannel:[19,55,227],mycharact:166,mychargen:28,mycmd:[0,23,31,420],mycmdget:134,mycmdset:[21,23,126,134],mycommand1:21,mycommand2:21,mycommand3:21,mycommand:[10,21,23,31,65,126,134,137,156,494],mycommandtest:494,mycompon:51,myconf:4,mycontrib:10,mycontribnam:118,mycss:51,mycssdiv:51,mycustom_protocol:62,mycustomchannelcmd:19,mycustomcli:62,mycustomview:73,mydatastor:67,mydbobj:14,mydefault:30,mydhaccount:192,mydhaccountt:192,mydhacct:192,mydict:14,myevennia:189,myevilcmdset:[21,215],myevmenu:28,myfix:12,myformclass:53,myfunc:[10,28,47,54,496],myfuncparser_cal:30,myfunct:10,mygam:[0,1,6,7,9,10,11,12,13,14,15,16,19,20,21,25,28,32,33,37,41,42,48,49,50,51,53,62,64,67,73,75,77,80,81,82,85,87,89,90,92,97,98,99,101,102,104,107,108,110,115,116,119,120,124,125,126,131,132,133,134,135,136,144,146,147,149,151,152,153,156,158,159,160,161,162,163,164,166,167,168,170,172,173,174,175,178,179,183,185,186,187,188,190,191,192,193,195,196,197,200,201,203,205,239,245,248,270,297,303,306,318,320,326,328,336,338,347,354,358,445,494,496],mygamedir:119,mygamegam:166,mygrapevin:227,mygreatgam:53,myhandl:45,myhousetypeclass:222,myinstanc:67,myircchan:227,mykwarg:28,mylayout:51,mylink:119,mylist1:14,mylist2:14,mylist:[8,14,470],mylog:20,mymap:[98,116],mymenu:28,mymethod:160,mymodul:47,mymud:[9,182],mymudgam:[197,201],mynam:[142,192,194],mynestedlist:477,mynod:28,mynoinputcommand:23,mynpc:175,myobj1:46,myobj2:46,myobj:[14,20,33,42,222,415],myobjectcommand:153,myothercmdset:21,myownfactori:62,myownprototyp:41,mypassw:255,mypassword:49,myplugin:51,mypobj:14,myproc:62,myproc_en:62,myprotfunc:41,mypwd:194,myrecip:85,myreserv:30,myroom:[42,46,130,160,222],myros:37,myscript:[42,46,48],myself:[14,58,143,483,500],myserv:255,myservic:62,mysess:44,mysql:[4,11,122,201,202,496],mysqlclient:183,myst:548,mysteri:[31,36,191],myston:137,mystr:14,mytag:51,mytestobject:10,mytestview:53,mythic:138,mytick:415,mytickerhandl:415,mytickerpool:415,mytrait:[110,358],mytupl:14,myusernam:49,myvar:23,myview:73,myxyzroom:116,n_objects_in_cach:201,naccount:461,nail:[85,296],naiv:[217,236,321,333,392,394,470],nake:23,name1:222,name2:222,name:[0,2,4,5,6,7,9,10,11,12,13,14,15,16,17,19,21,23,26,28,29,30,31,32,33,34,36,37,39,41,42,44,45,46,48,49,50,51,53,54,57,58,62,63,65,67,68,70,73,74,75,76,80,83,85,86,89,91,94,95,96,99,104,105,110,111,115,116,117,119,122,123,124,125,126,128,129,130,131,132,134,135,136,137,138,139,140,141,144,147,149,151,153,155,158,159,160,161,162,163,164,166,167,168,169,170,171,174,175,176,177,178,179,181,183,184,185,186,187,188,189,190,191,192,197,199,200,201,203,205,208,209,210,211,213,214,215,216,217,219,220,222,227,228,229,230,231,232,233,234,236,237,238,245,251,255,258,260,261,264,270,274,277,279,280,282,284,290,293,296,297,309,314,315,326,332,333,335,341,342,343,344,353,354,357,358,374,376,384,386,390,392,393,394,395,400,401,402,406,407,409,410,411,413,415,420,423,425,426,427,429,430,432,437,440,443,444,447,448,449,452,461,463,465,468,469,470,471,473,474,475,476,478,479,480,481,483,487,488,489,490,492,493,494,495,496,497,499,500,505,512,516,520,521,522,527,528,536,541,542,547],namecolor:390,namedtupl:258,nameerror:[6,135],namelist:303,namesak:8,namespac:[48,51,164,261,274,407,463,474,489,513],namn:64,napoleon:119,narg:274,narr:316,narrow:[49,116,134,142,144,169],nativ:[6,42,49,58,68,75,76,119,130,142,380,463,465,547],nattempt:28,nattribut:[0,24,28,48,147,222,400,407,459,468,470,476,480],nattributehandl:[0,468],nattributeproperti:[0,14,468],natur:[14,17,19,20,46,68,121,181,209,482],natural_height:482,natural_kei:[201,468],natural_width:482,navbar:[0,53],navig:[9,11,28,116,119,124,159,170,178,179,316,544],naw:[29,184,205,206,416,428],nbsp:495,nchar:173,nclient:451,ncolumn:482,ncurs:205,ndb:[0,14,15,23,28,42,44,48,80,83,147,153,155,208,211,232,401,410,459,470,480],ndb_:[222,407],ndb_del:459,ndb_get:459,ndb_set:459,ndbfield:83,ndk:191,nearbi:[116,215,216,217,316],nearli:[112,132,144,473],neat:[96,149,536],neatli:[69,496],necess:62,necessari:[4,12,48,60,62,69,80,85,94,96,98,116,123,131,132,140,157,161,162,169,172,174,183,201,203,216,217,238,261,274,279,342,376,381,406,407,449,474,480,482,483,490,492,496,505,512],necessarili:[41,68,116,117,119,138,161,197,201,496],necessit:462,neck:[14,41,81,290],neck_armor:14,neck_cloth:14,necklac:[81,141,290],need:[0,1,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19,20,21,23,25,27,28,30,31,32,33,34,36,37,41,42,44,46,47,48,50,51,52,53,54,57,58,60,62,63,64,65,67,68,70,73,74,75,76,77,78,80,83,84,85,86,88,89,90,92,94,95,98,104,110,111,114,115,116,117,118,119,122,123,124,126,127,128,130,131,132,133,135,136,137,138,139,140,141,143,144,146,147,148,149,151,152,153,154,155,156,157,158,159,160,161,162,163,164,166,167,168,169,170,171,172,174,175,176,178,179,181,182,183,185,186,187,188,189,190,191,192,193,195,196,197,198,199,200,201,203,208,209,210,211,215,217,219,222,227,228,230,236,245,255,259,260,261,262,274,279,280,282,284,287,293,296,297,300,309,312,313,315,320,333,335,341,342,343,353,354,358,368,374,375,376,386,390,392,398,401,402,406,407,409,420,422,425,429,437,444,449,451,459,460,461,465,468,470,471,473,474,476,480,481,482,483,484,490,491,493,494,496,499,505,507,512,514,541,545,548],need_gamedir:420,needl:309,needless:133,neg:[163,176,201,215,478,496],negat:[60,130,398,499],negoti:[77,287,434,436,438,447,461],negotiate_s:436,neighbor:[142,157,342],neither:[0,8,14,28,146,185,203,229,347,406,444,468,471,480,497],nelson:75,nenter:28,neophyt:[110,358],nerror:64,nest:[0,8,14,16,23,28,30,31,104,111,196,201,208,222,354,390,397,402,407,444,477,483],nested_r:222,nestl:170,neswmaplink:[116,342],net:[142,161,181,189,197,209,227,234,433,434,444,447,461],netrc:12,network:[0,62,70,120,121,122,143,181,183,186,188,189,197,199,201,209,227,431,432,437,458,461,548],neu:245,neural:142,neutral:[30,58,92,300,483,500],never:[1,2,12,14,16,20,21,23,28,30,35,39,41,47,48,55,60,67,68,89,94,104,110,116,122,132,133,135,136,137,140,141,142,144,160,163,169,172,174,178,185,187,200,201,208,232,260,315,316,336,353,354,358,374,398,402,459,468,477,496],nevertheless:[1,28,67,176,219,245],new_alias:[217,400],new_arriv:376,new_attrobj:468,new_channel:[162,227],new_charact:374,new_coordin:333,new_create_dict:279,new_datastor:67,new_destin:400,new_goto:480,new_hom:400,new_kei:[45,217,400,402,409],new_loc:[222,400],new_lock:[400,409],new_menu:245,new_nam:[45,222],new_name2:222,new_natural_kei:201,new_obj:[33,282,284,402,407,409],new_obj_lockstr:222,new_object:[41,407],new_permiss:400,new_po:279,new_posit:279,new_progress:280,new_raw_str:214,new_room_lockstr:222,new_ros:37,new_scor:280,new_script:42,new_typeclass:[208,470],new_typeclass_path:48,new_valu:[34,468],new_word:496,newbi:[121,153],newcom:[23,142,171],newer:124,newindex:390,newli:[12,49,63,95,114,130,135,162,178,210,222,236,237,245,274,282,284,296,303,341,344,386,393,400,402,407,413,476],newlin:[0,23,51,229,474,482],newnam:[23,222,470],newpassword:220,newstr:51,nexist:80,nexit:[10,173],next:[0,1,4,6,9,15,16,21,23,27,28,29,30,31,33,39,42,49,50,51,52,53,54,55,58,60,64,65,67,80,85,89,94,95,96,98,101,111,116,119,122,123,124,125,126,128,130,131,132,133,135,136,137,138,140,141,142,143,144,146,147,152,153,154,155,156,157,159,160,162,163,166,168,170,174,175,178,179,181,183,186,187,189,191,192,193,197,198,199,201,202,203,245,251,279,282,306,312,313,314,315,316,342,375,390,398,420,474,480,481,484,496,544],next_nod:28,next_node_nam:28,next_stat:[279,282],next_turn:[312,314],nextnod:480,nextnodenam:480,nextrpi:181,nfe:0,nfkc:208,ng2:482,nginx:[182,201],nice:[20,31,53,55,74,77,80,81,85,96,104,113,116,133,134,140,141,159,162,163,166,170,185,190,192,197,202,287,290,354,406,548],nicer:[128,135],niceti:222,nick:[0,13,14,19,24,26,32,37,72,104,126,161,181,201,208,209,222,227,228,236,354,401,402,432,468,469,519,548],nick_typ:36,nickhandl:[14,36,468],nicklist:[209,227,432],nicknam:[12,26,36,37,72,104,228,354,401,402,432,468,469],nickreplac:468,nickshandl:519,nicktemplateinvalid:468,nicktyp:[354,402],nifti:[134,182],night:[30,90,125,139,140,141,162,177,187,320],nine:[63,201],nineti:497,nit:163,nline:489,nmisslyckad:64,nnode:342,no_act:480,no_channel:[21,23,215,480],no_db:[406,407],no_default:[48,208,470],no_exit:[21,23,147,215,368,373,480],no_gmcp:444,no_log:216,no_match:245,no_mccp:433,no_more_weapons_msg:375,no_msdp:444,no_mssp:434,no_mxp:435,no_naw:436,no_obj:[21,215,368,373,480],no_of_subscrib:506,no_prefix:[208,217,219,220,221,222,227,228,229,230,231,232,233,234,236,245,255,259,270,273,274,277,287,290,296,297,300,303,306,309,312,313,314,315,316,320,326,329,335,347,354,368,370,374,375,376,384,390,402,451,478,480,481],no_superuser_bypass:[208,236,398,402,470],no_tel:33,noansi:494,nobj:173,nobodi:201,nocaptcha:178,nocaptcha_recaptcha:178,nocolor:[166,425,440,443,448,449],nod:141,nodaemon:9,node1:[28,480],node2:[28,480],node3:[28,480],node4:28,node5:28,node:[0,15,24,41,111,168,278,336,339,341,342,343,344,373,384,390,404,418,480],node_abort:28,node_apply_diff:404,node_attack:28,node_background:28,node_betrayal_background:28,node_border_char:[278,480],node_create_room:278,node_destin:404,node_end:28,node_examine_ent:404,node_exit:28,node_formatt:[28,278,384,480],node_four:28,node_game_index_field:418,node_game_index_start:418,node_guard:28,node_hom:404,node_index:[336,339,342,404,480],node_join_room:278,node_kei:404,node_loc:404,node_login:28,node_mssp_start:418,node_mylist:28,node_on:28,node_opt:278,node_or_link:[340,342],node_parse_input:28,node_password:28,node_prototype_desc:404,node_prototype_kei:404,node_prototype_sav:404,node_prototype_spawn:404,node_quest:28,node_quit:278,node_readus:28,node_select:28,node_set_desc:278,node_set_nam:28,node_start:418,node_test:28,node_usernam:28,node_validate_prototyp:404,node_view_and_apply_set:418,node_view_sheet:28,node_violent_background:28,node_with_other_nam:480,nodebox:499,nodefunc:480,nodekei:480,nodenam:[28,480],nodetext:[28,278,384,404,480],nodetext_formatt:[28,278,384,404,480],noecho:[135,232],noerror:402,nofound_str:[208,354,402,496],nogoahead:442,nohom:[400,476],nois:[144,152],noisi:[197,417,422,430,440,443,451,465],noloc:222,nomarkup:[32,166],nomatch:[80,231,245,478,496],nomatch_exit:80,nomatch_single_exit:80,nomigr:10,nomin:542,non:[0,12,16,17,19,20,21,23,27,29,30,31,32,39,41,42,44,48,51,53,60,67,68,74,80,85,107,110,116,117,119,121,122,123,128,130,133,134,137,140,142,144,155,158,159,162,163,167,176,186,195,201,202,203,208,209,210,211,213,215,227,232,234,236,238,261,282,297,326,335,344,347,358,370,375,386,390,392,393,397,400,401,402,405,406,407,410,411,413,415,420,429,443,444,458,459,461,468,470,473,476,477,478,480,481,482,483,493,496,519,522,548],nonc:448,noncombat_spel:315,nondatabas:[459,470],none:[0,6,7,13,14,15,16,17,19,21,23,27,28,30,32,33,34,36,41,42,44,46,49,54,58,60,62,65,67,68,80,83,85,94,96,98,110,116,122,126,129,130,133,134,137,144,147,153,156,157,159,160,162,163,164,166,168,169,170,172,174,175,201,208,209,210,213,214,215,216,217,219,222,223,224,225,226,227,228,229,230,233,236,237,238,243,245,246,258,260,261,264,270,274,277,278,279,280,282,284,287,290,296,298,300,309,312,313,314,315,316,320,326,329,333,335,336,339,340,341,342,343,344,347,353,354,355,358,366,368,370,373,374,375,376,384,386,390,392,393,395,397,398,400,401,402,404,406,407,409,411,412,414,415,417,418,420,422,424,426,429,430,431,432,439,440,448,449,451,459,460,461,463,464,465,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,487,489,491,492,493,494,496,497,500,501,504,505,506,508,509,510,512,514,516,520,522,528,531,536,541,544,547],nonpc:175,nonsens:[0,353],noon:[33,64,94,128,146],nop:443,nopkeepal:[184,443],noqa:201,nor:[0,6,9,14,15,21,64,69,88,113,116,117,133,142,147,155,176,185,255,274,347,402,406,444,468,471],norecapcha:178,norecaptcha_secret_kei:178,norecaptcha_site_kei:178,norecaptchafield:178,normal:[0,7,8,10,11,12,13,14,15,16,17,19,20,21,23,28,30,31,32,33,35,36,37,39,41,44,46,48,50,51,53,54,57,60,63,64,65,67,68,70,73,74,75,77,78,86,90,95,106,107,110,113,114,116,117,118,119,121,122,124,126,128,130,133,134,135,136,138,141,147,149,152,153,155,156,158,159,160,161,162,163,164,166,167,168,170,174,175,176,179,183,189,191,192,196,197,200,201,203,208,209,211,213,214,215,216,217,219,222,229,232,236,243,249,251,274,279,287,296,312,313,314,315,333,341,342,344,347,358,368,374,376,392,397,401,402,404,407,415,420,429,432,433,434,436,438,452,459,461,467,468,469,470,473,474,477,480,481,487,493,494,495,496,502,519],normal_turn_end:147,normalize_nam:[0,402],normalize_usernam:[0,208],north:[37,59,78,80,94,95,96,98,108,116,128,144,158,159,170,174,222,245,329,335,341,342,343,452],north_room:98,north_south:170,northeast:[116,128,222,333,342],northern:[80,170],northwest:[116,222,341,342,343],nose:468,nosql:76,not_don:465,not_error:420,not_found:[14,222],notabl:[0,7,12,19,54,62,124,193,195,217,222,233,287,424,470,473,477,496],notat:[8,53,222,473,496],notdatabas:48,note:[1,2,5,6,7,9,11,12,13,14,15,19,20,24,26,30,32,33,37,39,41,42,44,45,47,48,51,53,55,57,58,59,60,61,64,65,67,68,70,73,75,76,82,83,85,89,90,94,96,102,104,106,107,110,111,114,116,117,118,122,123,124,125,126,128,130,133,134,135,136,137,138,140,142,144,146,147,151,152,153,155,159,161,162,163,164,168,171,174,175,176,178,179,183,184,191,192,197,199,201,203,205,206,208,209,210,214,215,216,217,219,222,223,224,227,228,229,230,232,233,234,236,237,239,248,249,251,255,260,261,264,274,279,284,287,290,296,297,300,306,309,312,313,314,315,316,318,320,326,328,333,335,341,342,343,344,347,353,354,358,368,376,386,390,392,393,397,398,400,401,402,406,407,409,415,417,420,425,429,430,432,433,437,438,439,440,443,444,445,447,448,451,453,454,459,461,465,466,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,487,489,491,492,493,494,496,504,505,517,519,522,525,544],notepad:[125,195],noteworthi:119,notfound:496,notgm:162,noth:[6,14,16,20,23,30,37,47,54,65,69,80,94,96,98,116,118,126,128,133,135,137,142,144,147,155,160,161,163,168,170,208,222,231,312,316,333,342,374,390,402,413,432,468,470,480],nother:173,notic:[4,6,12,15,23,54,55,80,94,95,96,116,128,132,133,142,144,155,157,163,164,169,171,174,176,183,201,245,363,433,543],notif:[51,123,191,201,303],notifi:[94,137,198,270,296,312,316,376,406],notification_popup:201,notification_sound:201,notificationsconfig:123,notimplementederror:443,notion:[47,85,145,147,163,358],noun:[0,58,104,353,354],noun_postfix:[104,353],noun_prefix:353,noun_transl:[104,353],nov:[2,64],novemb:0,now:[0,1,4,8,9,11,12,13,14,16,19,20,21,23,28,30,33,35,37,38,41,42,44,47,48,49,51,52,53,54,55,58,60,67,69,73,74,77,80,85,86,89,91,94,95,96,106,110,111,115,116,117,121,122,124,125,126,128,130,131,132,133,134,135,136,137,138,140,141,142,143,144,146,148,149,151,152,153,154,155,157,159,160,161,162,163,164,166,167,168,169,170,171,172,174,175,176,178,179,181,183,186,187,188,189,190,191,192,193,195,196,197,198,199,203,216,227,229,251,261,287,298,333,337,358,368,384,390,398,402,432,440,461,492,494,496],nowher:[135,142,170,342],noxterm256:443,npc:[14,23,28,39,94,95,117,122,124,125,139,140,146,170,287,369,370,371,397,548],npcname:172,npcshop:168,nprot:173,nr_start:412,nroom:[80,173],nroom_desc:10,nrow:482,nsmaplink:[116,341,342],nsonewaymaplink:[116,342],ntf:195,nthe:368,nuanc:60,nudg:[106,180,368,465],nuisanc:199,nulla:29,num:[30,33,159,354,402],num_lines_to_append:489,num_object:130,num_objects__gt:130,num_tag:130,num_total_account:210,number:[0,1,4,7,8,10,14,15,20,21,23,27,28,30,35,36,42,44,45,46,47,48,49,53,54,55,73,74,75,81,86,87,89,91,93,94,96,98,104,105,111,115,116,117,119,122,126,130,133,134,135,136,137,138,142,144,146,147,152,159,161,162,163,166,168,170,173,175,179,183,187,188,192,197,198,200,201,205,208,209,210,214,215,216,220,222,227,228,229,237,238,251,258,260,261,264,279,290,293,296,312,314,315,335,339,341,342,344,347,350,353,354,384,386,390,400,402,406,407,409,412,418,420,425,431,432,434,438,451,452,461,463,465,468,469,471,473,474,476,478,480,481,482,483,484,487,489,493,496,499,506,521,522,536],number_of_dummi:420,number_tweet_output:173,numberfilt:516,numbertweetoutput:173,numer:[8,93,110,125,139,140,146,341,350,357,358,473],numericpasswordvalid:201,numpi:453,oak:297,oakbarkrecip:297,oakwood:297,oauth:201,obelisk:[138,375],obfusc:[353,354],obfuscate_languag:[104,353,354],obfuscate_whisp:[104,353,354],obj1:[8,10,14,30,39,41,137,222,277,296,309,316],obj1_search:277,obj2:[8,10,14,30,39,41,137,222,277,296,309,316,474],obj2_search:277,obj3:[14,137,222,296],obj4:[14,137],obj5:14,obj:[0,6,10,13,14,20,21,23,30,33,34,36,37,41,42,46,47,48,54,58,67,80,94,110,126,129,130,134,137,144,153,160,162,167,169,171,174,201,208,215,216,217,220,222,228,230,232,233,237,238,243,245,246,258,260,261,264,277,279,282,290,293,296,300,303,309,312,313,314,315,316,320,333,354,358,366,368,375,376,384,390,397,398,400,401,402,407,409,410,411,412,449,451,452,459,468,469,470,471,474,476,477,481,483,491,492,493,494,496,504,505,506,509,510,512,517,519],obj_desc:315,obj_detail:376,obj_kei:315,obj_nam:80,obj_prototyp:407,obj_to_chang:48,obj_typeclass:315,objattr:[375,397],objclass:[487,496],object1:23,object2:[23,287,402],object:[0,1,2,4,6,7,10,13,15,16,17,19,21,23,24,26,27,28,29,30,31,32,34,35,36,39,41,45,47,48,49,51,52,54,55,57,61,62,65,67,68,69,72,73,74,76,77,78,80,83,84,85,89,90,91,92,94,95,96,98,100,103,104,105,106,109,110,112,113,115,116,117,119,120,121,124,125,126,127,131,132,138,139,141,145,146,147,152,155,156,157,158,159,160,161,162,163,164,165,166,168,169,171,172,173,175,177,178,179,181,183,199,200,201,203,205,206,207,208,209,210,211,213,214,215,216,217,219,220,221,222,223,224,227,228,229,230,232,233,234,236,237,238,239,245,246,255,258,259,260,261,262,264,270,274,275,276,277,278,280,282,284,287,290,293,296,297,300,303,309,312,313,314,315,316,320,326,329,333,335,339,341,342,343,344,354,357,358,359,363,365,366,367,368,370,372,373,374,376,380,381,382,384,386,390,392,393,394,397,398,404,405,406,407,408,409,410,411,412,413,414,415,418,420,422,424,425,426,427,429,430,433,434,435,436,437,438,439,440,442,444,447,449,451,452,458,459,460,461,463,464,465,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,487,488,489,490,491,492,493,494,495,496,497,500,502,503,504,505,506,508,510,512,516,517,519,521,522,527,528,530,535,536,537,539,540,541,542,544,545,546,548],object_confirm_delet:547,object_detail:[542,547],object_from_modul:496,object_id:[179,509],object_or_list_of_object:58,object_pronoun:500,object_search:[179,400],object_subscription_set:401,object_tot:[210,400,409,469],object_typ:222,object_typeclass:[494,537],objectadmin:[50,509],objectattributeinlin:509,objectcr:536,objectcreateform:[504,509],objectcreateview:[542,547],objectdb:[0,14,46,48,50,120,173,178,205,400,401,402,407,467,468,476,481,493,504,505,509,512,516,521],objectdb_db_attribut:509,objectdb_db_tag:[505,509,512],objectdb_set:[211,468,471],objectdbfilterset:[516,522],objectdbmanag:[400,401],objectdbseri:[519,522],objectdbviewset:[521,522],objectdeleteview:[542,547],objectdetailview:[541,542,547],objectdoesnotexist:[211,238,394,401,410,427,468,471,488],objecteditform:509,objectform:536,objectlistseri:[519,522],objectmanag:[344,400,402,469],objectnam:162,objectpar:[0,37],objectpuppetinlin:504,objects_objectdb:67,objectsessionhandl:[13,402],objecttaginlin:509,objectupd:536,objectupdateview:[542,547],objid:33,objlist:[30,41,483],objlocattr:[375,397],objmanip:222,objmanipcommand:222,objnam:[20,48,222],objparam:407,objs2:46,objsparam:407,objtag:397,objtyp:237,obnoxi:422,obs:470,obscur:[104,117,167,189,353,354],observ:[15,16,58,68,79,117,128,166,222,228,320,354,363,376,444,474,496],obtain:[7,23,80,83,96,157,169,192,193,197,245,375],obviou:[11,19,93,96,116,117,174,199,350,547],obvious:[16,44,69,76,94,96,121,123,159,174,471],occaecat:29,occas:11,occasion:[137,197],occat:135,occation:[142,482],occur:[6,23,42,51,54,124,153,161,231,274,314,386,398,402,414,452,480],occurr:[95,169,175,473],ocean:[138,197],oct:[2,135,136],odd:[80,140,159,176,199,341],odor:162,off:[0,4,12,14,16,19,21,23,27,28,31,32,33,42,45,47,53,60,62,63,67,68,69,73,85,89,91,96,98,106,113,116,117,121,122,125,128,129,135,137,139,140,143,144,155,159,166,175,176,183,184,192,197,199,201,203,208,217,232,233,234,236,237,270,290,297,344,354,368,374,376,384,398,402,425,433,440,443,459,470,473,474,476,478,480,481,482,489,497,548],off_bal:155,offend:55,offer:[1,9,10,11,12,16,21,23,27,28,32,36,39,41,42,47,51,60,62,65,67,69,72,75,77,80,94,104,111,116,117,118,121,122,123,126,131,132,133,135,140,141,146,147,154,157,158,160,161,163,169,170,175,177,189,197,201,208,215,216,221,222,229,232,245,279,287,320,353,376,404,411,461,480],offernam:287,offici:[12,50,75,119,189,192,199,489,548],officia:29,offlin:[17,19,41,124,181,197,201,221,227,474],offscreen:124,offset:[49,354,478,489],often:[1,6,7,8,11,12,13,14,17,19,21,23,24,28,30,39,44,46,47,53,54,60,61,62,64,67,68,80,84,94,95,116,117,118,119,122,125,132,133,135,136,137,138,142,144,147,154,159,161,163,165,169,197,199,200,201,209,215,220,222,230,232,236,237,245,293,312,390,398,401,410,412,420,425,439,459,468,470,474,476,482,483,489,496,519,542],ogotai:0,okai:[6,11,28,116,142,144,159,162,170,175,191,264,342],olc:[0,24,26,131,222,404,407],olcmenu:404,old:[0,7,9,11,20,21,27,28,31,33,44,48,58,60,68,96,102,117,119,121,124,138,142,152,153,157,160,162,166,168,170,175,176,187,193,195,196,197,201,208,215,216,219,222,237,270,284,287,321,354,398,402,407,429,469,470,473,476],old_default_set:10,old_desc:321,old_kei:[45,402],old_nam:45,old_natural_kei:201,old_obj:279,old_po:279,older:[2,13,44,53,122,124,181,184,193,195,222,548],oldnam:470,oliv:60,omit:[41,169,192],on_:245,on_bad_request:422,on_death:83,on_ent:[80,245],on_leav:[80,245],on_nomatch:[80,245],onam:400,onbeforeunload:51,onbuild:192,onc:[6,7,8,11,12,13,14,15,19,23,28,31,33,35,37,42,44,48,51,53,54,56,60,62,64,65,69,77,78,80,84,89,91,95,97,98,99,103,104,107,110,111,113,114,115,116,117,118,119,121,122,124,125,127,128,130,131,132,133,134,135,136,140,142,143,144,147,152,153,157,158,159,161,162,163,168,174,176,178,181,183,187,189,190,192,195,197,201,208,209,214,217,222,227,230,233,236,245,261,274,277,279,280,281,287,293,300,303,309,312,313,314,315,326,333,337,342,353,358,363,368,374,375,376,384,390,402,406,410,413,425,430,443,447,458,468,473,480,481,489,494,496],onclos:[62,431,448],onconnectionclos:51,ond:471,one:[0,1,4,6,7,8,9,10,11,12,13,14,15,16,17,19,20,21,23,25,27,28,29,30,31,32,33,35,36,37,39,40,41,42,44,46,47,48,50,51,53,54,55,56,57,58,60,64,65,67,68,69,70,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,121,122,123,124,125,126,128,129,130,132,133,134,135,136,137,138,139,140,141,143,144,146,147,149,151,152,153,154,155,159,160,161,162,163,164,166,167,168,169,170,172,174,175,176,177,178,179,181,183,185,186,187,189,192,193,195,196,197,198,199,200,201,207,208,211,214,215,216,217,219,220,222,227,228,231,232,233,236,237,238,245,254,261,264,274,279,280,282,284,287,290,293,296,297,298,300,303,312,313,314,315,316,320,333,339,341,342,343,344,347,353,354,358,368,370,373,375,376,382,386,390,392,393,394,397,398,400,401,402,404,405,406,407,409,410,415,420,422,424,425,430,431,432,440,443,444,452,459,460,461,465,467,468,469,470,471,473,474,476,477,479,480,481,482,483,484,487,488,489,491,492,493,494,496,497,500,509,522,536,537,542,548],one_consume_onli:279,ones:[16,19,20,21,23,26,30,31,32,33,35,41,60,65,73,80,123,124,126,128,130,134,143,147,161,162,166,176,186,189,192,197,199,201,215,216,217,238,245,261,312,313,314,315,316,392,406,407,424,429,461,473,482,490],onew:196,onewai:222,ongo:[0,42,89,108,117,142,147,154,169,287,329],ongotopt:51,onkeydown:51,onli:[0,1,3,6,7,9,10,12,13,14,15,16,17,19,20,21,23,27,28,29,30,31,32,33,35,36,37,39,41,42,44,45,46,48,49,50,51,52,53,54,55,57,58,59,60,62,65,67,68,73,74,75,77,78,80,83,85,89,90,91,94,95,96,97,98,104,110,111,112,113,114,116,117,118,120,121,122,123,124,125,126,127,128,129,132,133,134,135,136,137,138,139,140,141,143,144,146,147,151,152,153,154,155,157,158,159,160,161,162,163,164,166,167,168,169,170,171,172,174,175,176,177,178,179,181,183,184,185,186,187,188,189,190,192,193,194,195,196,197,199,200,201,202,205,208,209,210,213,214,215,216,217,219,220,221,222,227,228,229,230,231,232,233,234,236,237,238,245,261,274,277,279,280,281,284,287,290,296,297,298,303,312,313,314,315,316,320,333,335,336,341,342,343,347,350,353,354,358,363,370,375,376,384,390,394,397,398,400,402,406,407,409,410,411,413,414,415,420,424,425,432,435,437,438,440,443,452,458,459,461,463,464,465,468,469,470,471,473,474,475,476,478,480,481,482,483,487,489,491,492,493,494,496,499,504,505,512,536,541,542,544,545,547,548],onlin:[0,5,11,17,19,37,53,55,69,72,89,91,121,122,125,127,132,136,139,140,142,143,145,146,147,148,150,152,161,162,164,175,181,183,186,188,190,198,200,201,202,205,219,227,236,238,245,277,384,434,474,548],onloggedin:51,onlook:[58,402],only_:358,only_nod:341,only_tim:[409,493],only_valid:407,onmessag:[62,431,448],onopen:[62,431,448],onoptionsui:51,onprompt:51,onsend:51,onset:14,ontext:51,onto:[19,21,23,51,116,121,134,140,153,174,189,197,216,227,297,376,401,432,477,480],onunknowncmd:51,onward:45,oob:[0,23,38,51,61,65,156,184,200,201,208,209,229,300,366,402,425,443,444,448,449,461,480,548],oobfunc:200,oobhandl:487,oobobject:42,ooc:[0,13,19,26,44,97,120,126,129,133,162,175,201,208,211,219,222,223,230,238,303,402],ooclook:44,oop:134,opaqu:[17,199],open:[0,1,5,6,9,12,21,23,26,27,31,33,39,44,52,53,59,77,80,89,91,94,95,96,106,107,108,116,117,118,119,121,122,123,124,126,128,131,133,134,135,136,142,144,146,147,149,161,162,164,170,175,178,179,181,183,186,187,188,189,190,191,193,195,197,199,201,202,222,229,232,237,243,245,277,279,284,287,316,326,329,335,341,368,375,384,463,468,476,489,496,548],open_chest:39,open_flag:279,open_parent_menu:245,open_submenu:[80,245],open_wal:375,openadventur:142,openhatch:181,opensourc:473,oper:[0,6,8,14,16,19,20,23,28,30,32,37,39,42,46,47,49,51,52,55,61,64,68,75,80,87,89,94,95,116,122,129,130,133,135,141,161,167,176,187,189,197,201,203,208,210,213,215,217,219,222,227,232,236,245,270,277,282,296,342,347,354,357,375,398,402,407,415,417,420,429,430,434,436,440,442,443,449,451,452,459,460,468,469,470,473,476,480,481,482,483,487,494,496,521,522],opic:233,opinion:[85,141],opnli:468,oppon:[146,313,315,374],opportun:[80,96,123,169,178,316],oppos:[20,37,60,199,203,459,471],opposit:[116,126,162,170,174,222,342,368],opt:[51,114,162,274],optim:[0,7,14,19,20,23,35,42,47,67,116,122,144,157,160,183,201,217,236,406,407,455,458,468],option100:28,option10:28,option11:28,option12:28,option13:28,option14:28,option1:28,option2:28,option3:28,option4:28,option5:28,option6:28,option7:28,option8:28,option9:28,option:[0,4,6,7,9,10,13,14,18,19,20,21,23,26,27,30,31,32,33,35,37,41,42,46,51,53,54,58,60,65,67,69,70,72,73,76,77,81,83,85,89,94,97,104,110,111,112,114,117,118,119,121,122,123,125,126,128,131,132,134,141,144,147,153,155,161,163,166,168,170,171,175,178,179,181,182,183,184,185,187,192,193,194,195,196,200,201,202,205,208,209,210,213,214,215,216,217,219,220,222,227,229,230,233,234,236,237,238,245,251,258,260,261,273,274,277,278,279,280,281,282,284,287,290,296,300,303,309,314,315,316,320,333,335,337,339,341,342,343,344,347,353,354,357,358,366,368,370,373,376,384,386,390,392,393,395,397,398,400,401,402,404,406,407,409,410,411,412,413,414,415,417,418,420,422,425,426,429,430,432,433,434,435,436,437,438,439,440,442,443,444,447,448,449,451,452,459,461,463,468,469,470,471,473,474,475,476,478,479,480,481,482,483,484,487,489,490,491,492,493,494,495,496,497,499,500,501,504,505,506,508,509,510,511,512,514,516,528,529],option_class:[201,205,475],option_class_modul:[0,201],option_contain:0,option_dict:480,option_gener:480,option_kei:497,option_str:274,option_typ:491,option_valu:491,optiona:[208,417,470],optionclass:[201,205,206,472,475],optioncontain:475,optionhandl:[205,206,472,490],optionlist:[28,278,373,404,480],options2:51,options_account_default:201,options_accounts_default:0,options_dict:491,options_formatt:[28,278,373,384,404,480],optionsl:406,optionslist:373,optionsmenu:278,optionstext:[28,278,384,480],optlist:390,optlist_to_menuopt:390,optuon:353,oracl:[183,201,496],orang:[60,103,114,135,274,309,473],orc:[41,161,171],orc_shaman:41,orchestr:192,order:[0,1,4,5,7,11,12,13,14,15,16,20,21,23,27,28,30,31,33,34,36,37,39,41,42,49,50,51,54,59,64,70,80,82,85,87,91,94,96,112,116,117,122,124,130,132,133,134,135,138,141,142,143,147,151,157,159,162,163,164,170,174,175,176,178,179,183,188,190,200,201,208,213,216,217,223,228,229,232,233,245,248,274,279,287,290,296,297,298,309,312,313,314,315,316,341,342,344,347,354,358,374,375,376,384,386,397,398,400,401,402,407,429,431,443,448,452,459,468,470,473,474,480,481,482,489,493,494,496,504,506,508,509,510,511,547],order_bi:130,order_clothes_list:290,ordered_clothes_list:290,ordered_permutation_regex:354,ordereddict:[14,496],ordin:473,ordinari:[98,315],ore:[142,296,297],org:[64,69,119,122,147,197,201,274,386,436,442,448,473,496,536],organ:[14,19,31,37,39,42,46,50,69,72,80,83,116,118,119,124,130,136,144,146,164,170,177,217,229,233,343,499],organiz:144,orient:[112,121,122,136,161],oriented_program:122,origin:[0,9,12,28,37,44,49,50,53,64,86,89,94,96,102,104,117,121,123,124,130,133,134,143,151,152,153,155,159,161,166,169,181,187,191,199,208,209,215,222,245,270,274,303,342,353,354,400,402,406,407,409,429,463,470,473,480,492,495,496,499,500,548],original_object:400,original_script:409,origo:[116,341],orm:30,ormal:473,orphan:201,orthogon:116,oscar:[217,236,392,394,470],osnam:496,oss:9,ostr:[208,210,237,393,400,409,493],osx:[12,193,195],other:[0,3,4,8,10,11,13,14,15,16,17,18,19,20,21,24,27,28,30,31,32,33,35,36,37,41,44,45,46,47,48,49,51,52,54,55,56,57,59,60,61,62,64,65,67,68,69,70,73,74,75,76,77,80,81,83,85,86,91,94,95,96,97,98,104,107,110,111,112,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132,133,134,136,139,140,141,143,144,146,147,151,152,153,154,155,157,158,159,161,162,163,164,166,167,168,169,170,171,172,173,174,175,176,178,179,182,186,187,188,192,193,199,201,202,203,208,210,213,214,215,216,217,222,227,228,229,230,233,234,236,237,249,251,255,260,274,277,278,279,284,287,290,293,296,303,312,313,314,315,316,326,333,341,342,344,353,354,358,368,376,381,384,390,392,394,398,401,402,406,407,411,413,415,418,420,425,429,431,432,438,440,443,452,459,460,462,468,470,472,473,474,476,478,479,480,481,482,483,490,491,493,494,496,497,500,512,541,542,544,548],other_modul:131,other_obj:279,otherchar:315,othercondit:126,othermodul:53,otherroom:[107,326],others_act:279,otherwis:[0,6,7,8,12,17,20,21,23,28,30,37,41,42,44,60,64,65,67,73,82,94,96,100,110,115,116,119,123,130,135,137,140,153,155,157,163,164,169,174,175,180,183,192,197,199,205,210,214,215,219,222,227,236,248,258,261,279,282,284,287,296,312,320,333,335,354,358,366,384,392,398,402,405,406,407,414,420,431,432,440,459,463,464,473,480,481,483,489,493,494,496,505,540,541,542,544,546],otypeclass_path:400,ought:499,our:[1,4,6,11,12,13,14,16,21,23,26,33,39,47,51,56,58,61,62,64,65,68,72,73,74,85,94,95,98,111,115,117,118,119,121,122,123,124,125,127,128,130,132,134,136,137,139,141,143,144,145,146,147,148,149,150,151,152,153,156,157,158,159,161,162,163,166,167,168,169,170,171,175,177,179,180,181,182,183,187,191,192,197,198,199,211,216,230,238,297,320,333,374,375,390,398,411,465,483,489,500,501,505,512,519],ourself:[134,175],ourselv:[33,36,50,58,96,125,126,127,128,130,134,140,142,144,162,172,177,208,433,434,436,447,483,500],out:[0,1,6,7,8,10,12,15,16,17,18,19,23,24,28,30,31,35,37,39,41,42,44,49,51,52,53,54,55,56,57,58,63,67,68,69,72,73,76,77,80,85,88,89,91,94,95,96,97,98,102,104,107,108,110,113,116,117,118,119,120,121,122,124,125,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,147,148,149,150,152,153,154,155,157,158,159,160,161,163,164,169,170,171,174,175,176,178,181,182,183,185,187,188,190,192,197,200,201,207,208,214,215,219,221,222,227,251,255,270,273,277,279,287,296,297,303,312,313,314,315,316,326,329,335,341,342,343,344,353,354,358,373,375,380,381,384,397,406,407,413,420,422,444,448,449,451,460,461,468,477,479,480,482,483,495,496,499,504,512,536,548],outcom:[67,119,146,215,296,347,398,402,406],outdat:[182,187],outdata:[62,461],outdoor:[46,116,138,142,177,376],outer:[130,131,482],outermost:[30,32,131,135,144,155,254],outerwear:[81,290],outfunc_nam:62,outgo:[30,44,61,68,71,116,187,197,201,209,342,402,432,444,460,483,496,500],outgoing_port:197,outlet:197,outlin:[4,26,116,170,178,431],outlist:341,outmessag:402,output:[0,1,7,9,11,16,20,24,28,29,30,31,32,44,49,51,60,62,64,68,69,70,72,73,80,116,117,119,123,125,126,128,132,133,135,137,142,147,162,169,170,173,174,175,176,181,183,192,201,203,205,206,217,227,229,232,234,239,245,251,296,297,300,312,313,314,316,341,342,378,379,381,402,420,425,440,444,452,459,473,480,481,483,489,492,494,496,548],output_nam:296,output_prototyp:[85,296,297],outputcmd:444,outputcommand:[32,61,65],outputfunc:[0,24,62,65,68,402,425,431,548],outputfunc_nam:[62,425],outputfunct:65,outrank:469,outright:[55,197],outro:[113,138,376],outroroom:376,outsid:[0,15,17,30,31,41,46,49,52,53,64,68,69,75,94,96,98,112,116,119,122,128,132,135,136,137,141,142,146,152,157,161,174,179,187,192,202,203,229,315,336,341,342,374,386,392,397,444,459,460,468,471,482,527],outtempl:468,outtxt:20,outward:[159,197],oven:[85,117],over:[0,3,7,8,10,11,14,15,16,17,18,19,20,21,23,28,41,42,44,46,47,48,49,51,53,56,60,61,62,65,68,69,70,72,87,91,94,98,107,116,117,119,126,130,133,134,135,136,140,142,144,146,147,151,154,157,159,161,162,166,168,170,172,176,178,182,185,192,197,199,201,208,216,237,297,312,326,342,376,384,390,402,415,424,438,440,443,445,449,451,453,466,470,474,487,492,545],overal:[49,54,67,125,160,161,188,197,215,230,313],overcom:170,overdo:133,overhaul:0,overhead:[20,42,70,115,177,183,333,354,468],overhear:[104,353],overheard:[104,117],overlap:[21,163,353,473,482],overload:[0,8,21,23,24,28,32,37,47,62,80,107,134,151,156,158,161,171,175,200,201,208,215,217,231,236,245,249,274,277,296,300,309,312,313,314,315,316,320,326,329,335,354,373,374,375,376,402,407,415,424,443,451,460,478,480,481,482,490],overpow:142,overrid:[0,2,4,7,14,19,21,28,30,31,33,37,41,42,44,45,49,50,51,53,65,73,75,80,83,85,94,114,116,120,123,124,126,128,132,134,136,149,152,153,158,164,169,171,172,174,185,201,208,217,222,227,229,233,236,237,245,261,273,274,281,282,296,314,316,320,335,342,343,344,353,366,376,382,392,398,402,406,407,413,429,443,461,465,468,470,473,480,481,483,487,489,490,493,504,505,506,510,512,522,541,542,544,547],overridden:[35,53,62,116,123,151,201,208,222,245,246,274,342,357,406,470,481,483,504,547],override_set:45,overriden:[208,229,354],overrod:56,overrul:[13,39,208,216,354,402,482],overseen:146,overshadow:140,overshoot:496,oversight:161,overview:[1,2,3,7,17,50,56,61,95,113,118,125,127,141,145,150,161,175,183,199,548],overwhelm:[95,111,130,140],overwrit:[64,75,134,151,222,229,438,469,545],overwritten:[23,30,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,179,376,471],owasp:536,owen:296,owllex:[0,84,117,292,293],own:[0,1,5,7,8,10,11,12,14,15,18,19,20,21,24,26,28,30,31,33,36,41,42,44,45,46,48,49,52,53,54,57,58,61,65,67,68,69,72,73,76,80,81,83,85,88,90,94,97,99,104,106,111,112,113,114,115,116,117,118,119,121,122,123,124,125,126,127,128,131,132,133,134,136,138,139,140,141,143,145,148,149,150,151,152,153,155,156,158,161,163,165,166,168,169,170,174,175,177,178,179,180,182,187,188,189,191,195,198,199,200,201,202,205,206,211,213,214,215,216,222,230,239,251,270,274,278,279,290,303,312,313,314,316,320,333,341,342,345,353,354,356,375,381,384,397,398,402,407,425,452,460,470,473,474,475,481,482,487,489,490,494,496,522,542,548],owner:[33,39,57,123,142,168,183,208,398,490],owner_object:33,ownership:[75,192,197],oxford:[0,496],p_id:178,p_str:153,pace:[142,374],pack:[52,65,113,158,429],packag:[0,7,8,10,11,31,50,68,69,73,75,83,116,118,119,122,124,131,132,180,182,183,189,191,192,193,195,197,201,205,207,212,218,235,239,282,391,396,399,408,416,420,429,444,448,467,472,502,516],package_nam:122,packagenam:122,packed_data:429,packeddict:[8,470],packedlist:[8,470],packet:[65,440],pad:[18,30,473,482,483,496],pad_bottom:482,pad_char:482,pad_left:482,pad_right:482,pad_top:482,pad_width:482,page1:279,page2:279,page:[0,1,4,5,9,10,12,15,16,18,21,23,24,26,28,29,30,31,35,37,48,49,50,51,52,55,56,58,61,62,64,68,69,72,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,121,122,124,125,126,128,131,140,141,143,146,150,152,153,154,161,162,166,176,178,179,181,182,183,187,189,191,192,197,199,201,203,204,217,222,227,228,236,279,392,394,406,449,470,480,481,496,502,507,509,510,512,525,534,538,544,545,547],page_back:481,page_ban:[55,227],page_end:481,page_formatt:[406,481],page_next:481,page_quit:481,page_s:201,page_titl:[541,542,544,546],page_top:481,pageno:[406,481],pager:[0,29,31,481],pages:[28,480],pagin:[0,31,49,120,201,406,481],paginag:481,paginate_bi:[541,542,544],paginated_db_queri:406,paginator_django:481,paginator_index:481,paginator_slic:481,pai:[142,160,168,197,199,375],paid:[143,197],pain:197,painstakingli:15,pair:[21,51,65,76,81,116,147,208,215,290,342,397,402,461,536,547],pal:36,palac:116,palett:176,pallet:170,palm:[91,384],pane:[0,68,201,234,255,344,373],panel:[9,187],panic:[41,126],pant:140,pantheon:[31,392],paper:[147,181],paperback:146,paperwork:116,par:183,paradigm:[0,124,140,172,313],paragraph:[16,20,31,118,306,474,482,496],parallel:[0,111,125,161,163,164,469],paralyz:314,param:[94,187,222,402,415,422,432,465,495,516,517,519],paramat:[208,217,402,459],paramet:[4,6,9,21,49,80,84,95,96,130,137,142,157,159,163,169,184,192,205,208,209,210,213,214,215,216,217,227,229,236,237,238,245,246,251,258,259,260,261,264,274,277,278,279,280,281,282,284,287,290,293,296,300,303,312,313,314,315,316,320,326,333,341,342,343,344,347,350,353,354,358,366,368,373,376,380,381,384,386,390,392,393,394,395,398,400,401,402,404,406,407,409,411,412,413,414,415,417,418,419,420,422,424,425,426,427,429,430,431,432,433,434,435,436,437,438,439,440,442,443,444,445,447,448,449,451,457,458,459,460,461,463,464,465,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,487,489,490,491,493,494,495,496,497,499,500,504,506,509,510,514,517,528,544],paramt:497,pardir:201,paremt:407,parent1:41,parent2:41,parent:[0,12,13,20,21,23,26,37,41,42,48,61,62,74,80,85,116,119,122,126,129,133,134,136,153,158,166,172,174,175,195,201,211,219,222,230,232,245,246,274,277,279,296,298,342,354,357,358,390,401,402,406,407,410,468,469,470,478,488,494,496,514,516,522,545],parent_categori:390,parent_kei:[80,245],parent_model:[504,505,506,508,509,510,512],parenthes:[50,135],parenthesi:[135,136],paretn:514,pari:[181,197],pariatur:29,paricular:23,park:[80,245],parlanc:[53,149],parri:[147,297,375],parrot:172,pars:[0,8,17,21,23,27,28,30,58,60,61,62,65,68,69,72,85,114,116,117,118,119,120,125,127,133,144,149,165,166,175,179,195,200,201,212,213,214,217,222,228,229,230,232,233,245,254,255,273,274,277,279,284,287,296,297,303,320,335,341,342,343,347,354,355,368,375,376,380,381,382,390,395,398,402,405,406,407,425,432,435,444,448,449,451,461,468,473,474,478,479,480,483,489,494,495,496,548],parse_ansi:473,parse_ansi_to_irc:432,parse_entry_for_subcategori:395,parse_fil:474,parse_for_perspect:284,parse_for_th:284,parse_html:495,parse_inlinefunc:0,parse_input:480,parse_irc_to_ansi:432,parse_languag:354,parse_menu_templ:[28,480],parse_nick_templ:468,parse_opt:390,parse_sdescs_and_recog:[354,355],parse_to_ani:[30,483],parseabl:[406,483],parsed_str:[30,432],parsedfunc:483,parseerror:274,parser:[0,23,24,28,31,69,71,114,116,117,119,131,179,181,200,201,213,214,219,222,229,230,232,234,249,255,274,277,279,297,309,320,340,341,342,353,354,375,376,406,439,473,483,495,548],parsingerror:[30,483,496],part1:309,part2:309,part:[0,1,6,8,9,10,12,15,16,17,19,23,28,31,33,39,40,42,44,48,49,51,52,53,56,62,67,68,71,73,74,75,78,80,94,95,103,104,116,118,119,123,124,128,130,132,133,134,135,136,138,140,141,143,146,147,151,155,157,158,159,161,162,164,168,169,170,171,175,183,194,197,201,214,215,217,227,230,231,233,236,245,277,287,296,297,309,315,339,341,342,347,354,368,376,390,393,397,398,405,406,413,420,424,449,451,460,463,465,468,469,473,474,478,480,483,494,496],part_a:287,part_b:287,parth:445,parti:[0,6,11,15,20,30,59,77,87,118,122,124,135,136,141,143,179,182,183,189,191,197,201,238,287,347,483,548],partial:[31,116,153,227,229,353,392,400,406,422,435,461,491,493,496,497],particip:[112,117,199,312,313,314,315,316],participl:[499,501],particular:[7,8,12,14,15,16,21,31,32,33,37,42,44,45,46,48,55,60,62,65,68,70,73,80,90,110,116,117,119,122,128,130,131,132,134,135,136,137,140,141,142,144,154,158,162,165,168,172,174,177,181,182,187,189,191,200,208,210,214,215,222,237,280,296,314,315,320,341,342,344,381,393,397,398,409,410,461,463,470,483,487,493,543,545,548],particularli:[28,55,58,75,94,96,104,110,119,123,157,217,230,233,354,358,407,424],partit:473,partli:[14,21,67,72,104,117,131,215],party_oth:287,pass:[0,3,4,10,19,20,23,28,29,30,32,33,35,37,39,41,42,44,45,47,48,54,62,65,68,76,83,84,85,91,94,98,104,107,110,111,116,117,123,125,126,127,129,133,134,136,137,142,144,152,153,154,155,156,159,163,164,167,168,169,170,171,174,179,183,192,194,197,201,203,208,209,215,227,234,236,251,260,277,282,284,290,293,296,300,312,313,314,315,316,326,341,342,344,347,354,358,366,368,375,380,381,384,390,397,398,402,405,406,411,414,415,418,420,430,438,440,443,448,449,459,465,468,470,471,479,480,481,482,483,484,490,491,492,494,495,496,516,522,542,545,547],passabl:342,passag:[65,147,290,375,376,484],passant:176,passavataridterminalrealm:440,passiv:[147,155,178],passthrough:[21,341,413],password123:49,password1:[504,536],password2:[504,536],password:[0,4,7,12,25,26,28,32,33,53,55,76,88,99,105,117,122,123,124,125,126,132,133,183,187,190,194,199,201,208,210,211,219,220,234,255,279,381,386,425,440,443,464,476,504,528,536],password_chang:537,password_valid:201,passwordresettest:537,past:[1,12,15,27,50,51,69,75,95,96,116,118,128,132,142,147,162,163,164,170,175,178,187,200,201,210,314,342,466,474,484,499,501,545],pastebin:118,pastpl:499,pat:400,patch:[48,49,75,494,548],patfind:339,path:[0,8,9,10,13,16,20,28,30,31,32,33,35,37,41,42,44,48,52,53,61,62,63,64,67,68,73,75,76,80,94,96,98,104,116,119,123,125,128,129,130,133,135,136,144,151,152,155,157,164,168,171,172,174,175,179,182,187,192,193,195,197,201,208,209,211,214,215,216,217,221,222,223,224,225,226,227,236,238,243,245,251,261,264,270,277,279,280,281,282,284,287,290,296,300,309,312,313,314,315,316,320,326,329,333,335,339,341,342,343,344,347,353,354,363,366,368,370,373,374,375,376,386,392,394,400,401,402,406,407,409,410,412,413,415,420,427,429,438,445,451,453,457,461,465,468,469,470,474,476,478,479,480,481,483,484,487,488,493,496,514,522,542],path_or_typeclass:264,pathdata:335,pathfind:[0,117,335,339,341,342],pathnam:494,patient:28,patreon:118,patrol:[113,374],patrolling_pac:374,patron:98,pattern:[19,36,56,73,74,123,149,164,178,179,201,220,354,464,468,496,513],pattern_is_regex:468,paul:48,paus:[0,24,28,42,54,94,95,147,157,192,201,203,222,232,260,413,414,480,494,496],pausabl:496,pauseproduc:422,pax:124,paxboard:181,payload:[431,448],payment:[77,117,142],paypal:118,pdb:[0,2,205],pdbref:[33,397],pdf:181,peac:171,peek:[1,28,116,128,133,169],peer:[431,448],peform:425,peg:199,pem:187,pemit:[69,220],penalti:[67,125,139,140,314],pend:465,pennmush:[69,72,161,234],pentagon:199,peopl:[0,1,3,8,13,19,30,31,33,53,58,60,69,88,89,94,104,117,118,121,122,128,130,132,140,141,142,143,144,146,147,152,162,166,168,181,185,188,189,197,199,201,227,228,237,255,354,375,376,476,505,512],pep8:[0,1,75],per:[0,7,12,13,14,19,23,30,41,44,57,65,67,75,84,85,86,90,96,104,110,112,116,117,119,122,123,135,141,142,144,147,162,163,164,175,192,201,208,227,279,280,293,312,314,316,320,341,342,353,358,374,400,402,406,433,434,436,444,447,463,480,481,482,487,489,490],perceiv:[142,163],percent:[23,239,345,356,496],percentag:[110,147,357,358,469,496],percentil:496,perception_method_test:456,perfect:[12,27,75,121,140,141,144,191,192,341],perfectli:[42,46,72,123,164,473],perform:[0,6,7,8,14,15,16,19,28,29,32,33,37,42,58,78,80,84,85,91,94,102,111,112,117,121,135,147,153,157,169,171,175,178,179,183,188,191,199,201,208,213,215,219,222,227,229,245,260,261,270,277,290,293,296,312,313,314,315,316,339,354,380,384,390,400,402,406,410,411,424,429,443,451,452,468,469,470,477,480,481,483,490,493,496,497,536],perhap:[6,8,19,56,69,80,94,95,163,164,169],period:[5,10,11,135,192,197,199,201,496],perist:48,perm1:471,perm2:471,perm:[0,14,19,23,31,33,39,41,46,55,57,80,94,123,126,133,153,162,168,175,178,188,201,211,220,221,222,227,228,229,232,259,270,277,309,320,326,335,376,394,397,398,401,402,410,468,470,471,496],perm_abov:[33,39,397],perm_us:220,perma:142,permadeath:142,perman:[19,28,53,55,75,116,123,125,138,139,140,184,197,201,219,222,227,228,232,353,414,470],permiss:[0,7,10,13,14,19,21,24,41,49,50,55,61,63,69,75,78,123,124,128,133,144,152,153,175,178,182,183,188,191,201,205,206,208,210,211,215,217,219,220,221,222,227,228,230,236,259,280,316,354,392,394,397,398,400,401,402,406,407,410,468,469,470,471,474,476,483,489,493,496,502,504,515,516,519,522,547,548],permission_account_default:[39,201,451],permission_class:522,permission_func_modul:397,permission_guest_default:[63,201],permission_hierarchi:[39,57,201,397,398,471],permissiondeni:517,permissionerror:406,permissionfilt:516,permissionhandl:[0,39,178,471],permissionshandl:[512,519],permit:[180,183,222,464],permstr:[33,208,400,470,476],permut:354,perpetu:[7,125,139],perri:75,persion:58,persis:155,persist:[0,19,20,21,23,24,28,34,37,42,44,47,48,67,80,83,84,96,104,106,108,110,112,117,121,122,125,127,129,132,134,135,141,147,152,153,160,161,168,174,175,181,200,203,208,211,215,216,232,237,238,245,246,251,261,278,293,312,313,314,315,316,329,343,353,354,358,368,373,375,384,390,394,400,401,402,404,406,409,410,411,413,414,415,425,426,427,458,459,463,467,470,476,478,480,482,484,496],persit:35,person:[12,19,30,44,55,58,72,75,77,104,125,126,127,139,140,141,143,146,152,172,193,197,208,222,227,228,236,279,280,284,287,347,354,483,499,500,501],persona:31,perspect:[44,58,146,284,500],pertain:[151,176,199],pertin:178,perus:51,peski:168,pester:[140,161],petal:119,peter:277,pg_ctlcluster:183,pg_hba:183,pg_lscluster:183,phantom:31,phase:[140,159],philosophi:[33,135,279],phone:[56,105,117,122,191,386],phone_gener:[105,386],phonem:[104,353],php:[69,122,536],phrase:[94,95,264],phrase_ev:[94,264],physic:[13,35,125,139,140,159,315,374],pick:[9,15,17,21,23,25,28,30,31,33,42,53,58,89,94,116,118,121,124,125,128,134,135,141,142,144,146,152,157,163,168,170,177,189,190,192,197,200,214,219,222,228,230,254,290,316,350,354,375,376,402,406,452,483],pickabl:37,pickl:[14,47,50,65,116,155,201,243,358,411,415,417,427,429,430,468,469,477,478,480,492,496],pickle_protocol:492,pickledfield:[400,492],pickledformfield:[492,505],pickledobject:492,pickledobjectfield:492,pickledwidget:492,picklefield:[0,205,206,472,505],pickpocket:229,pickup:[316,402],pictur:[9,62,152,161],pid:[4,12,33,50,178,192,203,397,402,420,430,496],piddir:4,pidfil:420,pie:277,piec:[7,15,35,53,54,85,89,103,122,134,135,141,187,296,297,309,447,474,481],piecem:[0,117],pierc:375,pig:[296,297],piggyback:208,pigironrecip:[296,297],piglei:75,pii:76,pile:[216,474],pillow:[0,191],pinch:142,ping:[209,227,420,432],pink:473,pip:[1,5,6,7,10,11,75,116,119,124,131,135,178,183,186,188,190,191,192,193,195,196,198,201,205],pipe:[44,76,432,477],pitfal:[1,16,60,176],pixel:[53,184],pizza:[211,238,394,401,410,468,470,471],pkg:191,pki:182,place:[0,1,11,13,14,16,17,19,28,33,35,37,41,42,44,49,52,53,64,65,66,72,73,77,80,83,85,91,94,95,96,110,113,116,117,121,122,123,124,128,131,132,134,135,137,142,144,146,149,151,152,153,156,158,159,163,164,169,170,174,175,176,177,178,182,188,191,192,193,197,199,200,201,208,220,222,228,236,245,251,279,287,290,297,309,312,316,333,341,342,344,354,358,368,375,376,380,384,402,409,413,429,438,443,459,460,461,468,474,475,477,480,496,548],placehold:[52,53,64,179,398,402,482],plai:[13,16,31,44,53,57,60,65,80,95,96,106,112,113,117,121,122,125,135,138,139,140,141,143,144,146,147,155,157,162,166,169,170,174,175,177,178,190,191,197,201,202,208,210,312,316,444,461,476,548],plain:[0,15,16,67,68,77,119,128,162,175,227,236,245,287,306,407,425,451,477,545],plaintext:381,plan:[2,6,16,17,19,48,62,94,121,124,125,127,130,134,137,139,145,148,150,160,192,197,474],plane:[116,137,174],planet:[0,132,163,181],plank:85,plant:[114,274],plate:[28,48,53,105,117,167,386],platform:[9,12,56,94,124,160,193,197],playabl:[142,178,537],player1:402,player2:402,player:[0,7,8,10,14,19,21,28,30,33,37,39,42,44,46,50,52,53,54,55,57,58,62,64,65,69,70,75,76,77,89,90,91,93,94,97,103,104,111,113,114,115,116,117,120,121,122,124,125,127,128,129,132,133,134,135,136,138,139,140,141,145,146,147,148,150,152,153,155,162,166,168,169,170,171,172,173,174,175,178,185,186,188,190,197,198,201,203,216,219,222,232,237,245,264,270,274,277,278,279,280,282,287,303,309,315,316,333,341,350,353,354,368,370,376,381,384,390,393,410,434,443,460,474,479,480,496,522,536,542],playercmdset:94,playerdb:201,playernam:188,playerornpc:124,pleas:[1,7,10,12,18,21,28,31,41,48,56,60,76,113,118,123,128,134,142,144,170,171,172,173,178,180,182,188,189,190,191,195,197,201,232,422,451,487,492,536],pleasur:56,plenti:[16,72,121,145],plop:53,plot:453,plu:[1,9,20,80,122,232],pluck:23,plug:[35,45,151,199,333],pluggabl:201,plugin:[0,24,62,65,69,75,117,120,123,131,132,181,189,200,201,354,418,548],plugin_handl:51,plugin_manag:51,plugin_servic:201,plural:[0,39,57,58,162,201,315,402,483,499,500],plusmaplink:[116,342],png:[40,53,151],pocoo:496,poeditor:64,poet:130,point:[0,2,4,5,6,7,8,9,12,13,15,16,17,20,21,23,28,30,31,35,37,41,42,44,46,47,48,50,53,58,65,67,68,70,73,77,80,88,89,92,94,96,98,99,112,116,117,119,121,123,126,128,132,133,134,135,136,140,142,143,146,147,148,151,152,153,155,157,159,160,163,164,165,166,168,169,174,175,178,179,182,187,190,191,192,193,196,197,201,208,213,217,222,227,230,274,277,287,293,296,300,312,326,333,335,339,341,342,354,376,402,404,406,415,420,424,438,440,448,459,461,468,470,474,480,483,496,505,512,525,547],pointer:[1,159,160,169],pointless:[37,47,54,229],poison:[14,110,117,141,201,314,358,407],pole:309,polici:[26,61,75,136,197,199,381,394,464,468],polish:[0,64],polit:[136,142,199],poll:[62,151,219,374,420,449],pommel:[142,297],pong:432,pool:[21,47,183,415,465,477],poor:[58,162],poorli:199,pop:[9,54,119,153,162,168,183],popen:430,popul:[4,73,80,94,98,140,161,163,166,183,201,215,223,224,225,226,245,277,290,296,309,312,313,314,315,316,320,326,329,335,354,368,370,373,374,375,376,402,414,415,451,474,478,479,481,505,512],popular:[69,112,122,124,125,130,161,181,199,541],popup:[0,51,201],port:[0,4,7,96,121,124,125,182,183,185,187,189,192,195,201,202,203,209,227,429,432,440,452,461,465],portal:[7,9,11,24,37,43,51,52,62,68,82,120,131,132,174,181,197,199,200,201,203,205,206,209,232,248,416,417,420,458,459,460,461,484,489,496,548],portal_connect:461,portal_disconnect:461,portal_disconnect_al:461,portal_l:430,portal_log_day_rot:201,portal_log_fil:201,portal_log_max_s:201,portal_pid:[430,496],portal_receive_adminserver2port:430,portal_receive_launcher2port:430,portal_receive_server2port:430,portal_receive_statu:430,portal_reset_serv:461,portal_restart_serv:461,portal_run:420,portal_service_plugin_modul:62,portal_services_plugin:[62,132,200,201],portal_services_plugin_modul:[62,201],portal_sess:62,portal_session_handler_class:201,portal_session_sync:461,portal_sessions_sync:461,portal_shutdown:461,portal_st:420,portal_uptim:484,portalsess:[44,62,438],portalsessiondata:461,portalsessionhandl:[62,201,205,206,416,428,439,461],portalsessionsdata:461,portion:[75,117,245,350],portuges:64,pos:[279,342],pose:[26,58,104,117,126,141,142,147,155,162,208,228,261,277,354,368],pose_transform:236,posgresql:183,posit:[0,15,28,42,51,80,94,98,112,114,116,117,128,136,141,147,157,159,169,170,176,201,216,234,245,255,274,277,279,306,316,333,341,342,344,375,376,402,414,473,474,477,478,482,496,497],position:279,position_prep_map:279,positive_integ:497,positiveinteg:490,posix:[489,496],possess:[58,92,300,483,500],possibl:[0,1,7,11,14,19,21,23,27,28,30,31,32,33,35,41,42,44,46,50,52,53,54,60,63,76,77,80,94,95,96,98,104,109,110,113,115,116,117,118,119,121,122,124,130,131,132,135,136,138,141,142,143,144,146,147,151,153,157,161,162,169,170,175,176,179,183,191,192,195,200,201,205,208,210,211,213,215,222,229,230,237,249,260,279,287,296,309,320,333,341,342,344,353,354,358,370,374,376,395,398,400,402,405,406,407,411,415,425,445,449,459,461,468,469,471,473,476,478,479,480,482,484,492,493,496,499,514],post:[19,21,33,45,49,53,64,76,85,117,118,121,125,139,140,151,161,162,164,170,173,178,188,198,201,381,413,449,521,542],post_:0,post_craft:[85,296],post_delet:45,post_init:45,post_join_channel:[19,236],post_leave_channel:[19,236],post_migr:45,post_mov:402,post_sav:45,post_send_messag:236,post_text:350,post_url_continu:[504,506,509],postfix:[104,353],postgr:[122,183],postgresql:[201,202,496],postgresql_psycopg2:183,postinit:51,posttext:384,postupd:[173,188],pot:[55,129],potato:[114,184,274],potenti:[0,1,5,14,15,30,54,60,65,85,94,104,117,136,141,142,147,167,170,175,197,198,201,217,229,237,381,382,397,398,402,406,490,493,496],potion:[137,141,142,279,470],pow:30,power:[0,6,17,21,23,27,28,30,35,37,39,41,50,51,53,57,58,84,94,95,104,111,114,117,121,122,128,130,134,135,136,137,138,141,142,144,147,155,156,160,162,170,175,215,216,221,222,274,293,314,315,390,395,474,480,496],powerattack:[84,293],powerfulli:96,ppart:499,pperm:[19,33,39,55,133,178,188,201,219,227,270,309,397,402],pperm_abov:[39,397],pprofil:420,pprogram:420,practial:17,practic:[1,3,15,16,23,37,42,44,50,80,83,96,122,133,134,135,136,137,141,142,144,155,161,162,165,176,187,193,196,197,342,474,548],pre:[0,23,37,49,140,142,159,170,185,188,190,195,197,201,208,222,229,296,353,398,402,406,407,448,449,452,478,483,492],pre_craft:[85,296],pre_delet:45,pre_init:45,pre_join_channel:[19,236],pre_leave_channel:[19,236],pre_migr:45,pre_sav:[45,492],pre_send_messag:236,pre_text:350,preced:[21,39,41,57,60,111,116,144,215,217,390,402,407,469,482,483,500],preceed:[30,128],precend:213,precis:[14,42,94,176,293,296,473],predefin:[0,174,464],predict:[48,135,143,178],prefer:[9,12,19,21,23,33,41,51,80,118,121,125,132,134,152,161,169,170,175,183,188,197,201,215,217,220,245,313,342,354,374,393,395,400,402],prefix:[0,6,8,19,48,67,80,83,104,183,199,201,208,214,229,231,236,350,353,400,425,432,463,473,483,493,496,505,506,508,510,512,516,536],prelogout_loc:133,prematur:[7,20,42,287],premis:[89,277],prep:277,prepai:197,prepar:[0,4,36,41,52,116,149,159,161,201,208,227,312,354,374,410,477,492],prepars:119,prepend:[303,354,402,473,474,480,483,496],prepopul:[505,512,545,547],preposit:279,preprocess:222,prerequisit:[124,202],prescrib:[121,141,161],presen:30,presenc:[18,30,116,121,124,132,133,151,160,176,183,197,208,402,465,502],present:[6,8,28,31,44,49,53,80,83,91,93,95,111,112,117,123,140,141,147,159,163,164,168,169,175,182,200,201,245,274,350,353,370,384,386,390,407,478,496,499,501,505,519],present_participl:501,preserv:[176,201,230,470,473,474,489,496],preset:483,press:[1,6,9,16,17,21,23,28,33,65,68,80,106,117,124,125,128,132,135,192,203,245,279,368,375,418,480,509],pressur:167,presto:128,presum:[35,146,163,216,489,490],pretend:191,pretext:384,pretti:[1,12,14,23,37,42,50,58,68,80,81,94,96,119,122,133,135,136,138,140,145,147,153,157,168,174,175,176,178,189,197,201,217,236,284,290,358,386,391,398,406,479,481,490,496],prettier:[0,7,96,536],prettifi:[0,161,496],prettili:163,pretty_corn:482,prettyt:[20,167,482],prev:[28,144,481],prev_entri:28,prevent:[0,23,94,95,119,128,135,163,260,274,316,463,505,542],preview:119,previou:[0,6,12,14,16,21,23,28,29,30,31,33,36,45,49,53,54,56,60,67,80,94,110,111,125,126,130,131,133,134,135,138,142,144,145,155,162,163,164,168,169,175,176,190,192,193,200,201,227,358,376,390,404,480,481,489,544],previous:[14,21,27,32,42,53,60,98,116,128,134,151,159,169,178,187,189,200,217,220,222,227,236,287,343,425,441,445,452,461,471,496],previu:42,prgmr:197,price:[75,142,197,375],primadonna:31,primari:[12,18,48,133,178,192,354,400,402,468,493],primarili:[4,12,13,55,69,77,118,119,121,140,141,208,287,354,393,395,438,477,496],primary_kei:178,prime:[77,213,287],primer:[53,54],primit:[142,222],princess:[138,170],princip:143,principl:[1,10,13,19,23,28,30,33,35,37,50,57,58,62,77,85,89,117,118,119,124,130,132,133,136,141,142,156,161,168,175,177,197,198,216,219,287,376],print:[1,6,7,8,14,20,27,42,48,54,62,67,70,104,110,119,123,124,130,133,135,136,152,153,162,169,201,203,219,274,341,343,347,353,358,406,419,420,479,480,481,482,489,496],print_debug_info:480,print_error:343,print_help:274,print_stat:7,print_usag:274,printabl:446,printable_order_list:341,printout:[136,443],prio:[21,23,133,153,213,376,471],prior:[171,196,260,402],priorit:[116,342,353,471],prioriti:[8,21,23,24,28,41,116,123,144,147,153,158,215,219,223,224,225,226,230,245,277,373,375,376,402,478,480,481],prison:[125,130,139,140],privaci:76,privat:[0,12,19,76,119,123,140,142,161,164,182,183,197,227,228,432,445],private_set:124,privatestaticroot:465,priveleg:[0,134],privileg:[23,116,125,139,140,152,175,183,186,189,193,198,228,333,344,354,402,470],privkei:187,privkeyfil:440,privmsg:432,prize:138,pro:[117,548],proactiv:47,probabl:[7,11,23,28,31,37,42,49,50,53,56,67,69,75,80,94,95,110,116,121,122,123,124,133,142,144,147,151,152,153,155,161,164,168,174,178,179,183,197,229,245,246,264,358,376,386,422,432,440,487,496,497],problem:[0,1,3,8,10,14,15,17,20,23,26,33,61,70,74,80,118,122,126,135,137,140,142,143,144,152,153,160,164,165,170,183,184,187,190,191,192,197,199,201,203,208,216,261,296,341,402,429,474,483],problemat:[153,496],proce:[16,17,64,174,176,192,227,447,540,542],procedur:[111,390,440,443],proceed:[12,496],process:[0,1,3,6,7,9,12,14,15,16,17,23,28,30,35,37,40,49,52,53,64,65,68,80,85,94,96,98,116,118,119,122,123,124,132,135,139,140,142,144,146,153,155,157,158,159,169,178,182,183,187,191,192,197,201,202,208,213,215,222,232,236,274,287,296,297,337,354,360,390,396,398,402,406,411,414,420,425,429,430,437,440,443,448,449,452,458,459,461,468,473,474,477,480,490,495,496,497,514,548],process_languag:354,process_recog:354,process_sdesc:354,processed_result:496,processor:[24,26,117,142,148,170,201,203,205,206,221,232,233,472,548],procpool:496,produc:[12,19,23,28,31,60,78,94,104,141,143,175,219,222,254,279,284,296,297,309,333,353,375,402,406,407,419,451,468,470,479,480,496],produce_weapon:375,producion:20,product:[0,1,3,4,7,9,11,12,52,53,73,183,197,199,201,451,454,480],production_set:124,prof:7,profess:130,profession:[0,69,122,135,142,143,149,161],profil:[2,91,186,201,205,206,211,384,416,548],profile_templ:[91,384],profunc:41,prog:[274,499],program:[0,1,7,9,10,11,13,17,19,30,40,49,52,54,67,69,120,122,131,132,135,136,138,139,143,144,157,160,161,181,183,187,191,192,193,195,197,199,201,203,232,234,274,416,420,443,449,451,548],programiz:157,programm:[127,143,169],progress:[89,112,117,146,168,181,280,282,293,312,313,314,315,316,342,478],proident:29,project:[0,2,3,17,69,73,118,122,123,143,151,153,159,169,170,181,189,490,548],projectil:315,promin:31,promis:1,promisqu:176,prompt:[0,1,6,48,51,65,68,93,111,119,122,124,125,135,165,170,183,184,185,190,191,192,193,201,217,350,390,418,432,443,448,449,474,480,494,548],promptli:16,pron:[0,30,402,483],prone:[11,216,470],pronoun:[0,30,58,92,205,206,300,402,472,483,498,501],pronoun_to_viewpoint:500,pronoun_typ:[58,483,500],pronounc:284,pronount:500,proof:0,prop:[125,139,140,483],propag:[14,182,215,424,492],proper:[0,4,14,17,20,30,31,51,58,73,77,104,122,140,142,144,147,152,157,158,160,161,168,169,175,178,183,192,199,222,245,262,287,353,402,479,483,494,500],properi:229,properli:[5,9,11,12,30,34,48,69,74,76,124,155,162,163,164,171,176,178,195,201,217,287,339,376,382,397,414,415,440,496,507],properti:[0,8,10,15,24,31,33,34,36,39,41,42,47,53,58,67,80,83,84,85,94,110,117,120,121,125,126,127,131,133,137,142,146,147,153,157,160,161,166,170,174,175,176,200,201,203,208,209,211,217,219,222,230,232,233,236,238,245,260,274,277,279,280,293,296,297,309,312,314,316,333,342,343,344,354,357,358,368,374,375,376,384,390,392,394,395,397,398,400,401,402,406,407,410,412,413,414,424,425,427,432,438,451,452,459,460,461,468,470,471,475,477,480,483,490,491,492,493,494,496,504,505,506,508,509,510,511,512,519,536,544,546],property_nam:400,property_valu:400,propnam:175,propos:27,proprietari:183,propval:175,propvalu:175,prose:143,prosimii:[0,178,179],prospect:[140,296],prot:407,prot_func_modul:[41,201,405],protect:[0,7,21,76,197,201,222,297,368],protfunc:[201,205,206,403,406,407,483],protfunc_callable_protkei:405,protfunc_modul:406,protfunc_pars:406,protfunct:406,protkei:[41,405,406],proto:[429,440],proto_def:309,protocol:[20,23,32,40,44,51,61,65,120,122,131,132,143,181,184,189,197,199,200,201,203,208,209,217,220,300,366,381,402,416,417,420,422,425,429,430,431,432,433,434,435,436,438,439,440,442,443,444,445,447,448,449,451,458,459,460,461,478,492,496,548],protocol_flag:[0,201,442,443,447,459],protocol_kei:[201,460],protocol_path:[438,461],protodef:309,prototocol:232,protototyp:[404,406,407],protototype_tag:41,prototoyp:405,prototyp:[24,30,85,95,103,120,131,132,140,173,201,205,206,222,239,296,309,313,314,318,334,341,342,343,375,548],prototype1:407,prototype2:407,prototype_:41,prototype_desc:[41,407],prototype_dict:222,prototype_diff:407,prototype_diff_from_object:407,prototype_from_object:407,prototype_kei:[0,41,85,116,222,296,406,407],prototype_keykei:222,prototype_list:0,prototype_lock:[41,407],prototype_modul:[0,41,116,201,222,338,406,407],prototype_pagin:406,prototype_par:[0,41,116,222,338,407],prototype_tag:407,prototype_to_str:406,prototypeevmor:406,prototypefunc:[201,407],protpar:[406,407],protpart:406,provid:[3,4,8,10,14,18,19,23,30,31,39,41,42,48,49,50,51,52,53,55,56,58,69,71,75,80,81,84,85,93,94,96,98,103,111,115,117,119,121,123,134,135,136,137,141,142,144,149,151,153,155,164,169,176,178,179,187,191,192,197,199,208,217,222,227,234,236,245,246,259,273,274,279,290,293,296,309,312,314,315,316,333,341,350,376,384,386,390,392,397,402,405,413,420,440,463,469,471,480,483,490,491,492,494,496,497,521,522,536,542,545,547],provok:[6,181],prowl:31,proxi:[0,48,131,187,199,201,202,465,505,512],proxypass:182,proxypassrevers:182,proxyport:201,prudent:4,prune:21,pseudo:[62,69,104,117,159,169,353,385,386,548],psionic:315,psql:183,pstat:7,psycopg2:183,pty:124,pub:[201,227,236],pubkeyfil:440,publicli:[12,53,142,181,185,201],publish:[3,4,152,181,192],pudb:[0,2,205],puff:160,puid:201,pull:[2,3,11,21,23,30,52,53,118,119,122,132,143,151,153,192,196,264,375,422,544],pummel:138,punch:[21,113,126],punish:[142,316],puppet:[0,8,13,21,23,26,32,33,39,44,45,50,57,62,80,85,94,97,124,133,152,157,161,162,163,172,175,178,201,207,208,213,219,222,230,238,296,303,335,397,402,459,461,470,471,504,509,537,542,544],puppet_object:[13,208],puppeted_object:504,purchas:[168,187],pure:[48,60,68,95,142,160,176,187,410,420,468,473],pure_ascii:496,purg:[14,48,203,232],purpos:[0,14,40,46,58,65,89,123,130,136,175,176,178,187,197,209,213,217,260,284,342,347,440,468,477,480,483,496,500],pursu:[138,374],push:[0,80,94,106,119,125,127,134,176,192,199,264,279,368,375],pushd:193,put:[0,2,6,9,10,13,15,16,23,27,28,33,36,37,39,41,44,48,49,53,54,55,57,60,65,67,72,73,75,81,84,85,89,94,95,96,111,116,118,119,122,126,128,130,132,134,135,137,140,141,143,144,146,147,149,151,152,153,158,159,161,162,168,170,174,175,178,181,183,197,199,200,201,202,216,219,220,222,224,228,243,284,290,293,296,297,312,316,350,354,363,376,384,390,398,429,443,481,482,496],putobject:75,putobjectacl:75,putti:197,puzzl:[0,85,89,113,138,181,205,206,239,285,296,375,376,548],puzzle_desc:375,puzzle_kei:376,puzzle_nam:309,puzzle_valu:376,puzzleedit:309,puzzlerecip:[103,309],puzzlesystemcmdset:[103,309],pvp:[125,139,140],pwd:[7,192],py2:0,py3:429,py3k:75,pyc:132,pycharm:[2,119,125,548],pyflak:1,pylint:1,pyopenssl:[186,201],pypa:195,pypath:496,pypath_prefix:496,pypath_to_realpath:496,pypi:[0,7,122,181,197,473],pypiwin32:[124,193,195],pyprof2calltre:7,pyramid:[115,333],pyramidmapprovid:[115,333],pyself:141,python2:[124,195],python3:[122,191,193,195,196,358],python3_properti:122,python:[0,2,5,6,7,8,9,10,11,13,14,16,17,20,21,23,27,28,30,31,33,35,37,41,48,49,50,52,53,54,55,57,60,63,64,67,69,70,71,73,75,76,78,80,83,87,95,96,114,115,116,117,119,120,122,123,124,125,126,127,128,129,130,131,133,134,137,139,141,142,143,144,145,146,147,148,149,150,152,155,157,159,160,162,163,164,167,168,169,170,172,175,178,179,183,186,189,190,191,192,193,195,196,197,198,199,200,201,202,203,214,216,221,222,226,232,233,245,258,259,260,261,262,264,274,296,333,343,347,386,392,398,400,401,405,407,409,412,415,420,422,429,433,438,448,459,461,465,467,469,470,473,474,476,477,478,479,480,482,483,484,487,489,492,494,496,514,519,525,548],python_path:[136,216,496],pythonista:181,pythonpath:[216,420,430,474],pytz:497,q_lycantrop:130,q_moonlit:130,q_recently_bitten:130,qualiti:[76,117,140,142,214],queen:116,quell:[13,24,26,61,107,113,126,128,133,135,138,144,174,219,326,397],quell_color:222,queri:[0,12,24,30,41,46,49,56,65,67,84,116,117,122,125,127,137,144,157,160,211,227,229,238,293,344,354,393,394,395,400,401,402,406,407,410,427,440,455,468,469,470,471,481,483,488,493,496,497],query_al:468,query_categori:468,query_info:420,query_kei:468,query_statu:420,query_util:516,queryset:[0,42,46,122,125,127,210,237,280,303,343,344,393,400,406,409,426,469,481,493,505,512,516,522,541,542,544,547],queryset_maxs:481,querystr:516,quest:[94,109,117,121,125,138,139,140,141,143,145,161,171,376],question:[0,1,10,12,23,27,28,54,73,80,99,117,139,140,142,143,146,161,182,187,197,222,401,417,418,468,478,480,494,496],queu:[201,420],queue:[4,147,465],qui:29,quick:[0,8,21,23,35,42,46,69,74,78,80,85,94,103,117,119,121,125,135,136,139,140,147,157,169,181,193,197,209,222,245,353,392,407,425,468,471,482,521],quicker:[36,67,96,142],quickli:[0,11,14,17,23,28,35,37,46,54,60,67,80,101,104,116,117,142,143,151,153,157,173,222,245,282,284,353,471,474],quickstart:[64,67,135,162,191,197,203],quiescentcallback:422,quiet:[83,116,137,153,168,208,220,222,227,245,270,290,335,354,402,481,496],quiethttp11clientfactori:422,quietli:[30,65,68,155,201,468],quirk:[2,14,184,216,548],quit:[0,6,7,11,13,18,23,26,27,28,44,54,62,80,91,94,95,96,113,116,119,121,123,126,128,130,133,135,136,137,138,142,144,152,156,157,161,168,178,183,185,187,191,219,234,245,246,255,260,277,282,315,384,440,478,480,481],quitfunc:[27,478],quitfunc_arg:478,quitsave_yesno:478,quitter:138,quo:47,quot:[14,20,25,27,33,41,135,141,172,183,222,234,255,354,478,480,492,496],qux:[111,390],ra4d24e8a3cab:25,rabbit:142,race:[121,125,139,140,146,160,171,178,181,182,496],rack:[297,375],radio:[19,142],radiu:[157,159,170],rafal:75,rage:[110,138,358],ragetrait:[110,358],rail:[122,174],railroad:174,railwai:342,rain:[42,138,142,177],raini:376,rais:[0,14,17,20,23,30,41,54,65,85,94,130,146,164,169,179,208,209,210,237,245,251,258,260,261,296,320,341,342,343,344,347,353,354,358,386,398,400,405,406,415,419,420,438,443,449,464,468,469,471,473,474,476,479,480,482,483,490,491,492,494,496,497,517],raise_error:[30,483,491,496],raise_except:[0,14,296,468],ram:[14,197],ramalho:181,ran:[4,6,15,28,135,413],rand:42,randint:[30,41,85,94,98,133,146,147,169,173,175,312,407,483],random:[0,25,28,30,41,42,79,85,94,95,98,104,117,124,128,133,138,141,142,146,147,169,173,175,177,197,200,254,284,297,312,316,333,353,363,364,368,375,376,385,386,387,407,429,451,452,483,496,548],random_string_from_modul:496,random_string_gener:[105,205,206,239,378,548],randomli:[7,42,67,98,173,177,201,312,313,314,315,316,368,374,375,420,452,483],randomstringgener:[105,386],randomstringgeneratorscript:386,rang:[6,7,21,27,41,68,91,98,110,112,116,117,128,138,141,147,157,159,160,169,170,172,173,184,199,201,222,251,313,315,316,339,341,344,357,358,384,469,478,483,536,547],ranged_attack:297,rangedcombatrul:316,rank:[0,57,397],rant:0,raph:181,rapidli:216,rapier:130,raptur:444,rare:[9,11,23,47,54,58,67,80,98,119,195,227,343,398,400,476],rascal:46,rase:298,rate:[7,23,84,117,118,122,141,197,201,227,239,293,345,356,415,420,439,496],ratetarget:[110,141,357,358],rather:[0,1,8,10,11,12,13,14,15,23,31,37,42,46,47,53,67,72,73,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,121,122,125,128,132,135,137,141,142,144,147,149,153,155,157,161,169,170,179,187,188,200,201,203,208,211,215,219,222,223,229,230,232,236,260,270,287,306,312,313,314,315,316,342,343,350,354,358,391,402,404,406,407,468,470,473,482,491,492,495,505,512,545],ration:[77,141,287],raw:[0,14,23,32,41,55,60,65,67,119,122,125,128,135,136,142,149,160,208,214,217,222,230,231,233,274,354,358,381,402,425,440,443,448,449,459,468,473,478,480,490,496],raw_cmdnam:[126,214,231],raw_desc:320,raw_id_field:[506,509,510],raw_input:[28,168,480],raw_nick:36,raw_str:[23,28,126,168,208,209,213,214,217,278,373,384,390,402,404,459,468,480,494],raw_templ:36,rawhid:297,rawhiderecip:297,rawstr:[217,233],rcannot:80,rdelet:222,re_bg:495,re_bgfg:495,re_blink:495,re_bold:495,re_color:495,re_dblspac:495,re_double_spac:495,re_fg:495,re_format:473,re_hilit:495,re_invers:495,re_invisible_spac:495,re_invisiblespac:495,re_mxplink:495,re_mxpurl:495,re_norm:495,re_str:495,re_ulin:495,re_underlin:495,re_unhilit:495,re_url:495,reach:[28,36,64,68,80,116,126,128,138,144,146,157,174,197,201,205,217,258,316,342,358,384,440,444,463,480,481,493,548],reachabl:[47,122,341],react:[28,47,52,94,171,172,374,402],reactiv:232,reactor:[431,458,465,494],read:[0,2,7,10,11,12,14,15,17,18,20,21,23,28,30,31,33,35,41,44,49,53,56,61,64,67,68,75,80,85,89,93,94,95,96,105,110,113,116,117,118,119,121,122,123,124,125,126,128,130,131,132,133,134,135,136,138,141,142,143,144,150,153,155,157,160,162,164,168,169,175,176,178,179,181,182,183,188,189,197,199,200,201,208,211,221,228,229,238,245,264,279,303,320,341,342,350,354,358,375,376,386,392,394,401,402,406,407,410,427,429,452,468,470,471,474,475,479,481,488,489,496,504,541,544],read_batchfil:474,read_default_fil:4,read_flag:279,read_only_field:519,readabl:[7,20,47,48,60,69,94,119,159,229,243,279,296,341,375,473,480,544],readable_text:375,reader:[32,93,119,144,162,166,178,181,198,201,227,316,350,425,439],readi:[0,4,6,7,9,12,13,17,33,37,54,55,62,84,89,118,128,132,133,143,151,153,155,174,185,191,208,217,293,312,313,314,315,316,354,402,449,481,490,496],readili:[170,183],readin:479,readlin:489,readm:[12,16,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,118,132,201,239,381],readonly_field:[504,506,509,510],readonlypasswordhashfield:504,readthedoc:[181,516],real:[0,6,7,8,12,13,20,21,30,37,41,48,54,63,69,80,89,94,95,104,112,119,121,130,135,136,142,146,147,148,152,157,162,163,170,175,176,187,189,192,195,197,201,203,211,216,238,251,287,297,314,342,343,353,354,397,451,474,483,484],real_address:13,real_nam:13,real_seconds_until:[251,484],real_word:353,realist:[7,142,143,177,279],realiti:[7,121,140,152,160,170,176,181],realiz:[12,133,176],realli:[1,6,8,11,14,15,16,19,21,23,28,30,33,37,42,46,47,49,54,55,57,69,80,89,94,111,113,114,116,117,122,123,126,128,133,134,136,137,141,143,144,153,157,162,163,168,169,170,172,174,187,189,198,200,201,203,217,233,245,274,287,342,390,398,429,473,474,480,492,494],really_all_weapon:130,realm:440,realnam:37,realpython:54,realtim:[132,162,251],realtime_to_gametim:[86,251],reason:[7,9,12,14,15,19,28,31,33,35,36,37,39,41,42,47,50,55,60,62,65,67,72,80,85,88,104,110,116,118,119,122,124,126,133,134,140,142,143,144,146,147,153,155,157,158,159,160,161,162,164,167,176,182,187,195,199,200,201,208,220,222,227,232,255,270,280,296,341,342,353,358,386,400,402,406,411,417,422,429,430,431,432,438,439,440,443,448,449,451,459,460,461,470,478,483,489,496,547],reasourc:41,reassign:159,reattach:[9,431,432],rebal:0,reboot:[0,11,14,20,26,27,34,42,44,47,67,75,82,110,121,132,147,154,187,190,192,197,201,202,208,216,227,232,248,293,358,374,375,384,402,410,411,413,415,420,460,461,478,480],reboot_evennia:420,rebuild:[11,116,162,187,192,195,343,432],rebuilt:[23,116,187,201,341],rec:[201,354],recach:376,recal:[375,541],recaptcha:178,receiev:201,receipt:[76,199,422],receiv:[0,6,19,21,23,28,29,30,35,36,44,51,52,61,65,70,85,118,132,162,169,178,201,208,215,216,234,236,237,238,255,280,303,341,354,358,381,402,422,425,429,431,432,438,448,449,451,458,459,476,481,483,493,494,496,506,548],receive_functioncal:429,receive_status_from_port:420,receiver1:494,receiver2:494,receiver_account_set:211,receiver_extern:238,receiver_object_set:401,receiver_script_set:410,recent:[18,53,123,130,153,175,187,210,463],recently_bitten:130,recev:449,recip:[47,96,103,117,142,154,205,206,239,285,295,298,309],recipe_modul:296,recipe_nam:296,recipebread:85,recipenam:85,recipes_pot:296,recipes_weapon:296,recipi:[19,30,35,85,162,208,236,237,303,402,429,483],reckon:124,recoc:141,recog:[0,36,61,104,141,354,548],recog_regex:354,recogerror:354,recoghandl:354,recogn:[10,32,37,56,126,128,136,142,158,179,193,197,203,354,358,465],recognit:[58,104,117,143,354,468],recommend:[0,1,7,12,14,28,37,41,48,55,67,68,69,73,83,112,116,118,119,121,124,129,135,140,142,146,153,162,164,165,181,183,184,190,195,196,197,201,232,260,274,341,350,380,398,400,402,422,474,480,493],reconfigur:197,reconnect:[88,99,208,209,227,236,417,420,429,431,432,458,461],reconnectingclientfactori:[417,431,432,451],record:[17,76,175,183,197,316,381,463,536],record_ip:463,recours:55,recov:[0,20,110,154,155,160,312,313,314,315,316,358,398,496],recoveri:147,recreat:[11,42,132,170,183,195,201,209,216,343,474,475],rectangl:479,rectangular:[162,479],recur:122,recurs:[0,14,94,342,397,406],red:[15,16,21,36,39,41,53,60,78,116,117,119,128,132,134,135,136,176,201,222,232,279,367,368,375,473,483,497,548],red_button:[0,15,16,36,106,128,132,205,206,222,233,239,359,548],red_kei:39,red_ros:130,redbutton:[15,16,36,106,128,132,222,368],redd:199,reddit:199,redefin:[23,37,80,121,402,536],redhat:[187,195],redirect:[0,44,53,62,73,80,132,164,178,182,201,245,279,282,480,538,542,547],redirectlink:342,redirectview:542,redit:[80,245],redmapnod:116,redo:[27,135,136,140,478],redoc:0,redraw:440,reduc:[147,312,313,433],reduct:75,redund:473,reel:216,reen:[60,473],ref:[48,119,183,201,354,402,496,536],refactor:[0,161,312,313,315,402,499],refer:[5,9,12,14,15,21,23,28,30,36,37,41,42,44,48,53,57,58,62,67,68,72,75,77,80,85,94,95,96,98,104,105,110,117,118,122,124,125,126,130,132,133,134,135,136,141,142,143,146,147,159,160,161,163,164,165,170,176,178,179,181,182,192,197,200,201,203,208,216,222,227,231,236,270,282,287,297,312,314,335,341,344,354,358,384,386,397,402,411,412,414,415,422,432,452,460,469,480,483,487,492,493,496,505,512,547,548],referenc:[37,41,50,61,104,117,119,160,200,217,222,227,236,341,354,392,394,470,496,548],referenti:496,referr:197,refin:[159,297],reflect:[135,138,141,547],reflex:[58,483,500],reflow:56,reformat:[407,482],reformat_cel:482,reformat_column:[170,482],refresh:[1,53,116,179,440,463],refus:[19,55,142],regain:155,regard:[176,386,516],regardless:[0,10,21,23,39,44,48,55,57,58,65,140,146,162,166,174,201,208,215,236,279,287,300,354,402,415,437,440,443,458,460,468,471,474,487,489,496],regener:314,regex:[0,19,23,27,28,36,51,53,76,82,201,217,220,232,233,248,354,386,464,468,480,496,525],regex_nick:36,regex_tupl:354,regex_tuple_from_key_alia:354,regexfield:504,region:[74,116,162,197,201,220],regist:[0,12,51,52,53,65,73,83,94,116,147,173,178,186,188,199,200,201,202,208,210,227,232,264,293,374,375,411,420,431,432,438,461,463,465,473,483,521,527,537,540],register_error:473,register_ev:[94,264],registercompon:51,registertest:537,registr:[0,49,186,540],registrar:187,registri:[117,386,463,465,548],regress:406,regroup:83,regul:398,regular:[0,10,12,18,19,23,31,35,42,44,47,50,52,58,73,76,77,81,94,103,105,116,117,119,125,128,129,130,132,135,136,139,140,144,149,164,177,179,181,193,197,201,209,215,290,309,342,376,386,392,398,415,468,471,483,487,496,500,525],regulararticl:488,regulararticle_set:488,regularcategori:488,regularli:[11,94,168,173,177,187,198,201,251,281,374,376,413,415,423,453,484],reilli:181,reimplement:[86,117],reinforc:181,reiniti:203,reinstal:195,reinvent:161,reject:[91,94,384,386],rejectedregex:386,rejoin:19,rel:[12,15,16,21,28,31,50,54,57,80,98,115,116,117,119,125,127,142,159,167,175,178,200,251,279,316,474,480],relai:[0,20,23,44,189,208,227,287,300,341,402,438,461,480,481,496],relat:[0,14,19,21,23,28,31,48,51,53,110,116,117,130,132,133,136,142,144,154,160,161,177,181,199,200,201,203,211,212,215,230,235,237,238,251,264,278,279,280,312,313,314,315,316,318,341,342,358,373,376,381,394,401,402,409,410,415,425,461,468,470,471,473,480,488,489,502,504,505,512,519,529,536,548],related_field:[504,505,506,508,509,510,512],related_nam:[211,238,394,401,410,468,470,471,488],relationship:[35,48,159],relay:209,releas:[0,75,118,121,124,125,132,139,143,154,180,181,192,196,197,232,500,548],relev:[14,16,23,33,37,45,46,48,50,53,60,73,74,77,80,110,116,118,119,124,144,147,149,156,162,163,175,178,181,202,208,213,215,245,287,296,342,358,398,412,434,452,459,460,461,473,478,480,490,496,505,512],relevant_choic:245,reli:[0,10,28,47,60,67,68,73,92,94,104,117,124,137,142,163,166,168,169,176,300,354,358,376,420,470,480],reliabl:[15,48,153,155,183,470,487],reliant:98,religion:[31,392],reload:[0,1,2,3,4,6,9,11,13,14,15,16,20,21,23,25,26,27,28,31,32,40,42,44,47,48,50,52,53,55,57,62,63,73,80,85,88,89,90,92,94,96,99,101,102,104,108,110,116,126,132,133,134,135,144,146,147,149,151,152,154,155,157,158,161,162,163,164,166,171,172,174,175,178,179,186,187,188,198,200,201,202,208,209,216,221,222,232,236,245,255,261,270,306,320,329,333,341,343,354,358,375,376,392,398,400,402,409,411,413,415,420,429,430,432,434,458,461,465,468,474,476,478,479,480,484,496,548],reload_evennia:420,reluct:142,remain:[0,8,14,15,21,23,27,28,41,42,45,57,70,89,104,110,132,133,134,144,156,162,169,197,203,214,216,222,224,228,251,282,296,312,313,314,315,316,320,353,358,374,402,420,448,449,480,481,496],remaind:[23,152,251],remaining_repeat:42,remap:[135,201,468],rememb:[2,7,10,11,12,14,15,21,23,28,31,39,41,46,47,51,53,55,60,67,68,80,94,96,116,123,130,133,135,137,138,140,141,142,143,144,152,154,155,157,159,160,162,163,164,169,170,175,176,185,193,195,197,220,222,260,342,402,411,474,493],remind:[27,96,119,123],remit:220,remnisc:161,remot:[153,187,192,199,202,227,429,431,443],remov:[0,4,11,12,14,19,20,21,24,27,28,30,31,34,36,37,39,42,47,55,75,76,80,89,96,104,105,106,110,116,121,123,124,125,126,132,133,138,142,147,151,152,157,162,164,166,168,169,178,198,201,205,215,216,220,222,227,228,229,232,233,236,238,245,258,262,270,279,284,290,297,309,312,313,314,320,342,343,353,354,357,358,368,384,386,390,398,401,402,407,411,414,415,420,438,449,461,463,468,471,473,477,480,487,492,494,495,496,522],remove_alia:227,remove_backspac:495,remove_bel:495,remove_charact:147,remove_default:[21,216],remove_map:343,remove_non_persist:409,remove_object:343,remove_receiv:238,remove_send:238,remove_user_channel_alia:[19,236],removeth:468,renam:[0,7,26,124,126,128,135,136,144,151,162,166,196,201,222,228,402,409,470],render:[45,52,53,80,93,119,149,151,164,166,178,179,229,350,465,490,492,504,505,506,508,509,510,512,519,525,534,536,547],render_post:449,renew:[155,162,187,463],reorgan:0,repair:[125,139,140,152],repeat:[0,6,7,68,86,94,96,105,117,135,140,142,147,151,163,170,172,174,191,201,203,208,209,251,281,287,386,390,409,410,413,420,425,444,468,476,480,484,496],repeatedli:[6,16,32,132,163,281,374,410,413,415,420,425,451,529],repeatlist:32,repetit:[147,163,386],replac:[0,4,14,19,21,23,27,28,30,31,32,33,36,37,41,44,49,51,58,60,73,75,77,80,82,88,91,94,101,102,104,116,117,119,124,125,126,127,132,135,137,141,144,147,151,153,155,156,158,161,164,170,179,183,187,192,196,200,201,208,214,215,216,217,220,228,229,232,233,236,248,255,258,261,270,274,278,284,287,293,296,306,309,320,341,342,353,354,368,373,376,384,398,402,404,406,407,432,435,448,449,459,468,473,478,479,480,481,482,483,495,496,525,527],replace_data:482,replace_timeslot:320,replace_whitespac:482,replacement_str:228,replacement_templ:228,replai:201,replenish:[312,316],repli:[23,28,77,142,186,209,287,303,418,442,443,449,461,480],replic:[143,151,471],replica:[12,133],repo:[0,9,12,64,118,119,124,131,140,161,181,196,496],repoint:53,report:[0,1,7,8,10,12,23,26,34,42,47,80,85,94,104,113,116,118,124,137,140,142,144,146,147,151,169,183,184,191,195,199,200,201,210,222,227,258,261,274,296,342,354,402,420,425,429,432,435,436,443,444,448,451,459,461,473,476,480,496],report_to:[210,400,409,476],repos:548,repositori:[2,3,5,64,75,118,119,124,131,153,180,182,183,192,407],repositri:64,repr:[169,496,544],reprehenderit:29,repres:[0,13,21,23,30,31,35,37,44,45,48,53,58,62,67,70,80,83,91,93,94,95,96,98,104,105,107,110,116,117,120,122,124,125,126,128,130,131,132,133,134,136,143,147,151,152,153,159,160,163,164,176,178,208,213,237,258,264,274,282,290,314,326,341,342,343,350,353,354,358,375,376,381,384,386,390,392,402,407,414,415,417,431,432,448,449,459,460,461,465,468,469,473,475,476,480,481,482,483,492,496,499,522],represen:133,represent:[0,13,14,30,35,36,44,62,67,68,70,122,133,146,154,162,176,237,258,261,341,354,400,406,410,429,448,449,471,477,484,519],reprocess:199,reproduc:[54,116,342,402],repurpos:75,reput:[125,139,140,380],reqhash:[469,496],reqiur:[91,384],request:[0,1,2,28,33,45,49,52,53,62,73,77,118,132,136,149,164,175,178,179,182,197,199,201,208,209,220,261,287,293,402,406,420,422,429,432,434,439,440,442,449,465,471,480,504,505,506,507,509,510,512,516,517,522,527,528,529,530,534,541,543,544,547],request_finish:45,request_start:45,requestavatarid:440,requestfactori:465,requestor:[208,463],requir:[1,3,7,10,16,17,23,27,28,30,31,33,34,37,39,41,47,48,49,50,51,52,53,54,59,67,72,75,76,80,83,85,89,94,95,98,99,101,105,111,116,117,118,119,123,124,126,140,142,143,144,147,151,159,162,164,168,170,172,176,177,178,179,180,181,182,183,185,187,188,190,191,193,197,201,202,203,210,221,222,227,237,238,255,270,274,293,296,297,306,314,315,320,341,342,344,347,354,358,376,384,386,390,393,397,400,402,406,414,420,431,432,445,453,464,469,474,479,480,481,482,483,487,491,492,493,496,504,505,506,508,509,510,512,536,542],require_al:[39,471],require_singl:[0,406],requirements_extra:[0,1,75,116,196],requr:41,requri:[406,483],rerout:[0,52,219,223,432,513],rerun:[0,15,16,28,116,296],res:201,research:[142,181,260],resembl:[72,121,153],resend:23,reserv:[23,30,54,126,133,135,170,406,464,469,483,496],reserved_keyword:30,reserved_kwarg:[30,483],reset:[0,2,17,18,20,21,23,26,27,42,44,48,55,60,63,94,96,104,110,126,132,141,146,147,155,158,166,170,174,175,176,183,200,201,202,208,209,216,222,232,251,261,277,279,293,354,357,358,375,398,420,424,430,440,458,468,471,474,482,483,484,494,496],reset_cach:[468,471],reset_callcount:42,reset_gametim:[20,484],reset_serv:424,reset_tim:320,reshuffl:[125,127],resid:[69,131,398],residu:[232,314],resist:[407,496],resiz:[52,162,479,482],resolut:[110,142,147,341,358],resolv:[1,6,12,89,119,135,136,142,143,147,155,197,200,309,312,313,314,316,519],resolve_attack:[312,313,314,315,316],resolve_combat:147,resort:[23,119,162,185,227,354,496],resourc:[1,10,47,49,52,53,69,73,75,110,117,118,119,120,124,126,130,131,132,133,134,135,136,137,142,151,154,160,183,197,199,201,208,315,340,358,395,411,418,449,465,475,494,548],respawn:[116,125,139,140],respect:[0,23,33,37,42,44,48,49,85,94,96,97,103,108,116,117,134,144,162,175,183,200,201,220,222,229,287,296,303,309,329,354,398,402,459,460,470,471,474,476,482,493,496,500,536],respond:[0,28,34,45,65,95,96,100,117,132,140,171,172,176,203,447,451],respons:[0,7,18,28,30,31,49,52,53,54,56,68,118,122,159,168,169,172,173,174,197,201,208,209,216,217,227,236,296,333,376,392,394,402,418,420,422,429,451,452,461,470,490,492,496,519],response_add:[504,506,509],resport:496,respositori:118,rest:[0,9,18,19,23,24,28,30,36,42,52,53,67,75,110,119,125,132,133,135,136,138,140,142,146,155,160,167,168,170,175,190,193,200,201,214,230,231,312,313,314,315,316,358,468,473,482,516,517,519,520,521,522,548],rest_api_en:[49,52,201],rest_framework:[49,201,516,517,518,519,520,522],restart:[0,1,6,9,11,26,40,42,51,55,64,73,82,87,94,133,136,147,162,183,187,197,199,200,201,202,203,205,208,232,236,245,248,261,347,402,409,411,413,414,415,424,437,458,459,460,496],restartingwebsocketserverfactori:[209,431],restock:168,restor:[21,96,176,245,297,315,411,415],restrain:[110,222,358,397,479,496],restrict:[14,33,41,47,48,51,57,81,94,105,123,128,131,132,137,141,146,170,179,182,197,222,270,290,315,316,341,386,392,393,398,400,407,409,476,478,480,482,493],restructur:[0,119,160],result1:309,result2:[28,309],result:[0,8,10,12,14,20,21,23,28,30,31,33,41,44,47,49,52,54,58,60,64,68,73,76,78,81,85,87,91,98,103,104,105,110,116,119,126,130,131,133,134,135,137,141,142,144,146,147,151,156,162,169,172,175,176,179,183,197,200,201,208,210,214,215,217,222,229,236,238,279,287,296,297,298,309,312,313,314,316,341,342,347,353,354,358,376,380,384,386,393,395,398,400,402,406,407,409,420,429,451,468,470,473,478,479,480,482,483,487,489,490,493,494,496,497,499,514,544],result_nam:309,resum:[23,116,144,155,414],resurrect:374,resync:[209,429,459],ret1:483,ret:[23,494],ret_index:496,retain:[0,8,20,21,31,41,53,54,64,92,136,170,201,237,300,358,392,394,401,407,466,470,474,476,483,489,496,500],retain_inst:[0,217],retext:119,retract:287,retreat:316,retri:420,retriev:[0,8,19,23,32,46,49,67,69,74,83,94,96,110,116,164,175,201,208,211,213,216,222,227,232,233,237,260,320,335,342,358,393,397,401,406,418,425,426,432,438,447,468,471,477,487,491,493,496,501,516,517,521,522,541,544,547],retriv:[209,475],retro:19,retroact:[48,162],retur:29,return_alias:342,return_appear:[0,116,159,175,279,280,290,320,344,354,366,375,402],return_apper:[344,402],return_cmdset:229,return_detail:[320,376],return_dict:392,return_except:0,return_iter:406,return_key_and_categori:471,return_list:[0,30,468,471,483],return_map:170,return_minimap:170,return_obj:[14,36,468,471,491],return_par:407,return_prototyp:173,return_puppet:208,return_str:[30,341,483],return_tagobj:471,return_tupl:[36,347,468],returnvalu:[23,54],reus:[0,83,135,137,270,487],rev342453534:496,reveal:[94,116,138,290],reveng:143,reverend:[75,117],revers:[21,23,53,58,60,94,115,155,157,170,174,176,179,201,211,227,238,333,341,357,394,401,410,465,468,470,471,473,488,522],reverse_lazi:201,reverseerror:[420,429],reversemanytoonedescriptor:[211,401,488],reverseproxyresourc:465,revert:[12,53,176,197,219,393],review:[11,21,73,96,118,122,126,141],revis:[0,140],revisit:[4,480],reviu:28,revok:162,revolutionari:12,reward:[113,145],rework:[0,99,117,133,140,155],rewrit:53,rfc1073:436,rfc858:442,rfc:[436,442],rfind:473,rgb:[60,135,473],rgbmatch:473,rgh:135,rhel:182,rhello:30,rhost:234,rhostmush:[69,72,161],rhs:[153,162,230,233],rhs_split:[222,228,230],rhslist:[0,230],ricardo:496,riccardomurri:496,rich:[0,75,80,161,180,181,477],richard:181,rick:41,rid:[134,160],riddanc:55,riddick:[91,384],ride:174,right:[0,1,6,7,8,11,16,23,28,30,32,33,36,41,42,49,51,52,53,54,64,75,83,85,90,91,94,95,96,115,116,117,119,121,125,126,130,131,132,133,135,136,138,140,143,144,152,153,154,155,157,160,161,162,168,169,170,171,174,175,176,178,179,182,183,187,191,193,197,201,216,219,222,230,232,234,236,261,262,273,277,279,296,309,316,320,333,341,342,350,368,374,375,376,384,398,407,410,460,473,474,478,482,496,497],right_justifi:41,rightmost:[116,342],rigid:161,rindex:473,ring:[104,137,353],ringmail_armor:14,rink:75,rise:[21,163],risen:163,risk:[30,52,119,140,142,161,175,193,197,201,221,232,496],rival:170,rjust:[30,473,483],rm_attr:222,rmem:201,rnormal:60,rnote:232,road:[21,95,170,174,215],roam:[138,216,374],roar:170,robot:178,robust:[168,169,199],rock:[67,94,98,147,216],rocki:138,rod:216,rodrigo:75,role:[0,18,75,112,117,121,125,134,139,140,146,161,169,183,312],roleplai:[31,61,101,117,121,124,125,139,140,141,146,147,161,165,175,181,347,352,354,548],roll1:146,roll2:146,roll:[28,85,94,112,117,136,141,142,146,147,162,169,175,312,313,314,315,316,346,347,463],roll_challeng:146,roll_dic:347,roll_dmg:146,roll_hit:146,roll_init:312,roll_result:347,roll_skil:146,roller:[117,141,142,146,147,296,347,548],rom:181,roof:222,room1:10,room2:10,room56:15,room:[0,6,10,14,15,16,17,19,20,21,23,33,35,41,42,46,48,49,50,55,58,69,72,74,80,87,89,94,95,98,104,107,108,109,112,114,115,116,117,120,121,122,124,125,128,129,130,132,133,134,135,136,137,138,139,144,146,147,152,158,160,161,163,165,168,169,170,171,172,173,174,175,177,178,200,201,205,206,213,214,215,216,220,222,228,233,239,245,260,274,275,276,277,278,279,281,282,284,290,312,313,314,315,316,319,320,326,329,333,335,336,338,341,342,343,344,347,354,359,368,370,372,373,374,375,397,402,410,424,452,474,494,516,522,537,548],room_desc:[10,98],room_dict:98,room_flag:160,room_lava:160,room_replac:277,room_typeclass:[321,333,494,537],room_x_coordin:116,room_y_coordin:116,room_z_coordin:116,roombuildingmenu:[80,245],roomnam:[162,222],roomref:174,rooms_with_five_object:130,roomstat:279,roomviewset:522,root:[1,4,5,7,8,9,11,15,33,37,53,58,67,73,75,80,119,122,124,131,151,164,166,179,180,183,187,191,192,193,197,205,206,375,402,407,420,465,477,502,515,527],root_urlconf:201,rose:[14,36,37,48,129,130,137],rostdev:197,roster:[124,141,312,313,314,315,316],rosterentri:124,rot:10,rotat:[0,19,132,201,279,489],rotate_flag:279,rotate_log_fil:489,rotatelength:489,rough:[119,140],roughli:[140,162,496],round:[7,18,30,104,110,293,316,353,358,451,482,483],rounder:[104,353],rout:[51,116,117,128,159,160,174,208,335,341,342],router:[197,518,521],routerlink:116,routermaplink:[116,342],routin:[104,201,354,400,455,493,496],row:[0,51,56,60,67,96,119,122,130,147,149,159,162,164,170,176,341,344,482,496],rowdi:98,rpcharact:354,rpcommand:354,rpg:[87,93,104,110,112,118,125,132,133,139,140,146,162,205,206,239,316,548],rpi:181,rplanguag:[0,104,141,205,206,239,345,352,354],rpm:195,rpobject:354,rpolv:0,rpsystem:[0,58,101,104,119,141,205,206,239,306,345,548],rpsystemcmdset:[104,354],rred:473,rsa:[440,441],rspli8t:169,rsplit:[175,473],rss2chan:[26,126,198,201,227],rss:[11,181,201,202,205,206,209,227,235,416,425,428,438,548],rss_enabl:[198,201,227],rss_rate:209,rss_update_interv:[201,227],rss_url:[198,209,227],rssbot:209,rssbotfactori:439,rsschan:227,rssfactori:439,rssreader:439,rstop:222,rstrip:[169,473],rsyslog:380,rtest2:60,rtext:[168,483],rthe:80,rthi:[60,135],rtype:465,rubbish:219,rubbl:116,rubi:122,rudimentari:[113,374],ruin:[138,320,376],rule:[8,12,15,16,23,33,55,60,94,104,110,117,121,125,132,136,139,140,141,145,152,162,176,181,245,297,312,313,314,315,316,353,358,386,394,474],rulebook:[142,147],rumor:31,rumour:138,run:[0,1,2,3,4,5,7,8,11,12,13,14,15,16,17,19,20,21,25,28,30,31,33,40,41,42,47,48,49,50,51,52,53,54,62,64,67,71,75,78,79,89,94,95,96,113,116,119,120,122,124,125,126,128,130,132,133,134,135,136,138,140,141,142,143,144,146,149,151,152,153,154,155,160,161,163,164,166,168,169,170,174,175,176,177,178,179,181,182,183,184,185,187,189,190,193,194,195,196,197,199,200,201,203,205,208,209,213,214,216,217,221,222,228,229,232,233,236,249,261,262,270,278,296,312,314,315,321,329,333,341,342,354,373,380,390,397,398,402,406,407,409,410,413,414,415,420,424,426,429,430,437,438,445,449,451,454,458,459,463,465,470,473,474,478,480,481,483,484,489,493,494,496,522,547,548],run_async:[54,496],run_connect_wizard:420,run_custom_command:420,run_dummyrunn:420,run_evscaperoom_menu:278,run_exec:480,run_exec_then_goto:480,run_in_main_thread:[0,496],run_init_hook:458,run_initial_setup:458,run_menu:420,run_option_menu:278,run_start_hook:[48,470],rundown:127,runexec:480,runexec_kwarg:480,runnabl:41,runner:[2,4,7,9,201,375,451],runsnak:7,runsnakerun:7,runtest:[233,243,246,249,252,256,262,271,273,283,288,291,294,298,301,304,307,310,317,321,327,330,332,339,348,351,355,357,364,371,377,382,387,389,446,456,488,494,501,520,531,537],runtim:[20,23,55,83,163,201,217,245,274,484,496],runtimeerror:[146,208,209,258,261,264,296,340,343,353,358,386,406,438,468,480,483,496],runtimewarn:[340,406],rusernam:28,rush:155,russel:75,russian:64,rusti:[49,58,168],ruv:4,ryou:80,s3boto3storag:75,s3boto3storagetest:243,s3boto3testcas:243,sad:[178,443,480],sadli:234,safe:[0,1,3,8,12,21,37,52,53,77,95,116,117,122,141,142,156,160,167,178,187,200,208,219,287,398,415,429,461,465,470,474,477,483,487,496],safe_convert_input:496,safe_convert_to_typ:[30,496],safe_ev:496,safer:[15,55],safest:[44,96,197,470],safeti:[0,12,13,37,48,77,117,141,160,175,197,222,287,401,474],sai:[1,7,10,11,14,16,18,19,20,21,23,26,28,33,39,41,48,50,51,53,54,55,60,62,72,74,75,77,80,91,94,95,96,104,110,111,116,122,126,128,133,135,136,141,142,143,144,146,147,153,155,157,158,160,161,162,163,164,169,171,172,175,176,180,195,197,201,216,228,236,264,277,279,287,347,353,354,358,368,376,384,390,402,480,483],said:[1,28,46,54,65,80,94,95,96,123,133,135,141,142,158,159,161,169,170,172,179,201,214,227,231,333,341,354,402,432,468,470,480],sake:[15,73,135,140,142,143,161,176,201,234,255,546],sale:168,salt:[85,296],same:[0,1,6,7,8,9,10,11,12,13,14,15,16,17,19,20,21,23,27,30,31,32,33,34,35,37,39,41,42,44,46,47,48,50,52,53,54,55,56,57,58,60,62,63,64,65,67,68,69,70,75,78,80,86,89,94,96,98,104,105,109,110,111,115,116,117,118,119,121,122,124,126,128,130,131,132,133,134,135,136,137,142,143,144,146,147,151,152,154,155,158,160,161,162,163,164,166,168,169,170,174,175,176,178,179,180,183,187,192,195,197,198,200,201,203,208,213,214,215,216,217,220,222,227,230,231,232,233,234,237,243,245,251,260,261,274,279,280,284,290,293,296,303,312,313,314,315,316,320,326,333,335,342,344,350,353,354,358,370,374,376,386,390,392,397,402,406,407,410,411,415,424,429,441,444,445,459,460,461,463,465,468,469,470,471,473,474,476,480,481,482,483,484,489,490,494,496,499,505,512,522,536,547],sampl:[4,111,160,182,192,390],san:350,sand:[163,297],sandi:170,sandwitch:85,sane:[0,2,116,119,140,181,342,547],sanit:[536,547],saniti:[10,116,124,135,159,170,490],sarah:[72,228],sat:[74,152,279],satisfi:[69,230,468],satur:199,sauc:135,save:[0,4,6,8,12,17,20,23,24,27,28,34,35,36,41,42,44,45,46,47,48,50,53,67,75,76,80,94,95,96,104,122,124,126,129,132,133,135,147,152,155,160,175,178,184,185,187,192,199,201,203,208,219,222,232,236,238,243,245,261,293,353,398,401,402,404,406,407,411,413,414,415,418,425,438,453,458,465,468,470,477,478,487,490,491,492,496,504,505,506,509,510,512],save_a:[506,508,509,510,511],save_as_new:[505,512],save_buff:478,save_data:490,save_for_next:[23,217],save_handl:490,save_kwarg:491,save_model:[504,506,509,510],save_nam:415,save_on_top:[506,508,509,510,511],save_prototyp:[0,406],save_recip:309,savefunc:[27,478,491],savehandl:491,saver:477,saverdict:477,saverlist:477,saverset:477,saveyesnocmdset:478,savvi:143,saw:[0,54,85,94,95,133,135,164],say_text:172,saytext:354,scale:[9,50,60,104,119,132,140,146,161,183,201,353,548],scalewai:197,scam:142,scan:[116,182,213,341,342,344,374,376],scarf:[81,290],scari:[133,135],scatter:[314,474],scedul:86,scenario:[162,339],scene:[8,14,32,41,46,60,94,105,121,136,138,142,146,147,152,176,358,376,386,410,415,487],schedul:[20,84,86,94,117,163,251,261,293,414,484],schema:[2,48,67,122,123,496],schemaless:76,scheme:[23,60,67,89,135,154,222,232,473],schneier:75,school:142,sci:116,scienc:159,scientif:181,scipi:[116,342],scissor:147,scm:124,scope:[32,50,94,121,122,140,141,142,144,155,179,254,386,409,476],score:[162,280,496],scott:75,scraper:542,scratch:[5,11,53,62,95,110,141,142,151,161,162,175,195,278,343,358,424],scream:138,screen:[0,8,23,24,28,29,31,32,41,42,44,56,60,63,88,93,99,116,132,134,166,168,178,192,200,201,234,254,255,316,350,425,440,481,483,496,504,548],screenheight:[32,425],screenread:[26,32,234,425,448,449],screenreader_regex_strip:201,screenshot:178,screenwidth:[32,217,425],script:[0,4,5,7,9,10,14,15,16,20,24,26,30,33,34,35,37,41,44,45,46,47,48,49,51,67,69,77,78,90,103,105,108,115,116,117,120,121,126,128,131,132,133,137,138,142,143,147,160,161,163,168,171,173,177,178,188,193,194,196,197,199,200,201,203,205,206,208,209,221,222,232,237,238,239,240,251,257,258,264,275,276,287,309,312,313,314,315,316,320,329,333,343,353,362,363,368,376,386,401,402,406,407,420,453,458,474,475,476,483,484,491,493,494,496,502,503,516,519,522,527,537,548],script_copi:409,script_search:409,script_typeclass:[364,494,537],scriptadmin:510,scriptattributeinlin:510,scriptbas:413,scriptclass:412,scriptdb:[48,120,205,410,467,510,516,519],scriptdb_db_attribut:510,scriptdb_db_tag:510,scriptdb_set:[211,401,468,471],scriptdbfilterset:[516,522],scriptdbmanag:[409,410],scriptdbseri:[519,522],scriptdbviewset:522,scriptform:510,scripthandl:[205,206,408],scriptlistseri:[519,522],scriptmanag:409,scriptnam:[222,475],scriptpar:0,scripttaginlin:510,scroll:[8,29,31,94,131,135,175,193,195,201,481],scrollback:19,scrub:[76,461],sdesc:[104,141,160,306,354],sdesc_regex:354,sdescerror:354,sdeschandl:[104,354],sdfkjjkl:201,sdk:193,sea:[138,170],seal:141,seamless:[104,354],seamlessli:40,search:[0,6,10,12,13,15,19,23,24,26,27,30,31,35,36,37,41,42,48,61,64,74,80,83,94,96,104,116,121,122,124,125,126,127,131,132,133,134,135,142,143,144,146,147,151,152,156,162,175,179,200,201,205,206,208,210,213,215,217,222,227,229,236,237,260,279,282,287,303,309,312,313,314,315,316,333,335,341,342,344,354,376,392,393,394,395,397,400,402,406,407,409,412,426,468,469,470,471,472,473,476,478,483,496,516,525],search_:[20,130,137],search_account:[20,45,120,137,162,205,210,402,493],search_account_tag:493,search_at_multimatch_input:402,search_at_result:[201,354,402],search_channel:[20,120,205,227,237,493],search_channel_tag:493,search_field:[229,504,506,508,509,510,511,512],search_for_obj:222,search_help:[20,31,120,205,393],search_help_entri:493,search_helpentri:393,search_index_entri:[217,219,220,221,222,227,228,229,230,231,232,233,234,245,255,259,270,273,274,277,287,290,296,297,300,303,306,309,312,313,314,315,316,320,326,329,335,347,354,368,370,374,375,376,384,390,392,394,395,402,451,478,480,481],search_messag:[20,35,120,205,237,493],search_mod:354,search_multimatch_regex:[201,402],search_multimatch_templ:201,search_object:[14,15,19,20,48,78,120,133,135,137,170,174,205,208,400,493],search_object_attribut:137,search_objects_with_prototyp:406,search_prototyp:[0,406],search_script:[20,42,116,120,205,409,493],search_script_tag:493,search_tag:[46,74,120,130,137,205,493],search_tag_account:46,search_tag_script:46,search_target:303,searchabl:[131,260],searchdata:[208,354,400,402,493],season:[90,117,125,139,140,141,143,320],seat:140,sebastian:75,sec:[0,32,54,86,155,163,251,432,484,489],second:[7,14,16,20,21,23,28,30,33,39,41,42,47,54,56,58,60,67,68,75,80,84,94,96,98,108,110,112,116,117,119,126,133,135,137,141,147,152,153,155,157,163,164,167,168,169,173,174,175,176,177,179,193,197,199,200,201,203,208,209,214,222,227,229,233,251,260,261,264,284,293,296,312,314,316,329,341,354,358,363,374,397,402,407,409,414,415,420,425,434,439,452,463,473,476,480,483,484,489,496,497],secondari:[166,460],secondli:[37,129],secret:[75,76,87,117,124,132,140,186,188,201,347,420],secret_kei:[124,201],secret_set:[75,123,124,132,183,186,201,420],sect_insid:159,section:[1,4,7,12,14,17,21,23,25,28,30,31,33,42,48,50,51,53,58,62,67,70,80,90,94,104,116,119,123,124,125,127,131,133,134,135,137,142,152,153,155,157,162,163,164,165,170,178,183,191,192,195,197,201,229,315,320,353,402,407,473,474,480,497,516],sector:159,sector_typ:159,secur:[0,1,14,15,30,33,41,60,69,75,80,105,117,161,168,175,178,179,193,197,201,202,217,221,232,236,381,392,394,402,440,470,483,489,496,536,548],secure_attr:33,secureshel:201,securesocketlibrari:201,sed:4,sedat:[110,358],see:[0,1,2,5,6,7,9,10,11,12,13,14,15,16,19,20,21,22,23,25,27,28,29,30,31,32,33,35,36,37,39,41,42,44,47,48,50,51,52,53,54,55,57,58,60,62,64,67,68,69,70,73,76,77,79,80,82,84,85,86,88,93,95,96,97,98,99,102,103,104,105,106,108,109,110,111,114,115,116,117,118,119,120,121,122,123,124,125,126,128,130,131,132,133,134,135,136,138,141,142,143,144,147,149,151,152,153,154,155,156,157,158,159,160,161,162,163,166,167,169,170,171,172,173,174,175,176,177,178,179,182,183,186,187,188,189,191,192,193,195,196,197,198,199,201,202,203,208,217,219,221,222,227,228,229,230,232,233,234,236,239,245,255,258,273,274,277,279,282,284,287,293,296,297,303,309,312,313,333,335,340,341,342,344,350,353,354,358,363,368,370,374,376,381,386,390,392,394,395,401,402,409,414,418,420,422,423,431,432,433,434,436,440,441,443,445,447,448,449,451,452,460,461,465,468,473,476,477,478,479,482,483,491,492,494,496,499,500,530,536,541,544,547],seed:[85,201,296,298,342],seek:[138,279,398,489],seem:[21,41,51,80,98,104,113,123,125,140,143,144,157,160,174,175,184,191,195,203,234,468,474],seen:[21,28,44,58,62,80,94,95,96,98,119,126,127,130,133,134,136,144,155,159,161,162,164,166,169,170,173,174,176,245,432,482],sefsefiwwj3:124,segment:[174,465],sekizai:201,seldomli:[217,233],select:[0,9,12,13,20,21,28,39,44,50,51,52,53,67,74,80,98,117,128,141,164,168,170,173,175,178,185,193,200,201,214,215,220,278,313,388,389,390,470,478,480,514,519,548],selet:480,self:[0,6,10,13,14,15,20,21,23,27,28,33,36,37,39,41,42,47,48,50,54,62,64,67,72,77,80,81,83,84,85,87,89,90,92,94,96,97,98,101,102,103,104,107,108,110,114,115,116,119,124,126,128,133,134,135,136,137,141,142,144,146,147,152,153,154,155,156,157,158,159,160,161,162,163,166,167,168,171,172,173,174,175,177,179,188,189,193,208,209,211,213,215,216,217,219,222,223,227,230,232,233,234,236,238,245,258,270,274,277,278,279,282,287,290,293,296,297,303,306,309,312,313,314,315,316,320,326,329,333,335,340,343,347,354,358,363,368,373,374,375,376,384,390,392,397,402,414,418,420,422,423,427,429,431,432,438,440,441,443,445,447,448,449,451,459,460,461,468,470,471,473,478,480,481,483,487,490,491,492,494,496,530],self_fire_damag:297,self_pid:496,self_refer:14,selfaccount:162,sell:[141,142,168,180,287],semi:[7,104,128,135,177,201,284,353],semicolon:[33,398,400,409,476],send:[0,7,13,19,20,23,28,29,30,32,33,37,39,42,44,45,47,49,51,52,53,55,61,65,70,74,75,76,77,80,85,91,94,97,98,116,117,122,125,126,127,132,134,137,142,146,147,153,155,162,166,169,172,173,175,176,178,187,188,199,201,203,208,209,216,217,220,222,227,236,237,238,279,287,296,300,303,316,341,342,354,363,366,373,374,381,384,402,414,415,417,420,422,423,425,429,430,431,432,433,435,438,439,440,442,443,444,446,448,449,451,452,459,460,461,462,473,476,477,480,482,494,496,500,548],send_:[62,65,438],send_adminportal2serv:430,send_adminserver2port:417,send_authent:431,send_broken_link_email:201,send_channel:[431,432],send_default:[62,65,431,432,438,440,443,448,449],send_defeated_to:374,send_emot:[104,354],send_functioncal:429,send_game_detail:422,send_heartbeat:431,send_instruct:420,send_mail:303,send_msgportal2serv:430,send_msgserver2port:417,send_p:432,send_privmsg:432,send_prompt:[65,440,443,448,449],send_random_messag:363,send_reconnect:432,send_request_nicklist:432,send_status2launch:430,send_subscrib:431,send_testing_tag:373,send_text:[62,65,440,443,448,449],send_to_online_onli:[19,236],send_unsubscrib:431,sender:[19,35,45,100,208,209,236,237,238,279,287,354,366,402,431,462,476,487,493,506],sender_account_set:211,sender_extern:238,sender_object:462,sender_object_set:401,sender_script_set:410,sender_str:236,senderobj:[237,476],sendlin:[440,443,448],sendmessag:[62,384],sens:[0,21,33,37,52,53,54,64,67,80,110,116,118,136,144,160,162,174,183,215,358,368,400,476,477,480],sensibl:[19,31,197],sensit:[14,28,31,33,39,76,130,162,210,237,245,251,261,320,344,355,381,382,393,469,471,484,493],sensivit:386,sent:[7,19,28,30,32,35,44,45,51,53,65,68,70,76,88,91,94,97,100,117,132,135,153,162,164,169,187,201,208,209,213,227,236,237,238,245,255,261,274,279,303,364,366,381,384,402,417,420,422,425,429,430,431,432,440,444,448,459,461,468,480,493,494,519],sentenc:[0,58,64,94,95,104,169,201,264,279,353,354,496],senwmaplink:[116,342],sep:[64,473,496],sep_kei:[80,245],separ:[0,7,9,10,12,14,15,16,19,21,23,28,31,33,34,36,37,40,42,44,46,47,51,53,58,62,67,72,74,78,85,94,95,97,102,104,110,111,115,116,117,118,119,122,125,126,128,130,134,135,136,139,140,141,151,155,161,162,163,168,169,174,175,176,178,182,183,188,189,191,198,199,201,214,216,217,222,228,229,230,232,245,261,264,270,293,296,303,312,313,316,333,337,341,342,344,353,354,358,376,390,393,398,400,401,402,406,409,411,415,439,444,449,461,470,473,474,476,479,483,493,494,495,496,500,505],separatli:155,separator_fil:201,separator_star_color:201,separator_text_color:201,sepat:296,sept:2,seq:36,sequenc:[15,16,17,23,33,36,37,52,54,70,77,78,119,122,132,138,142,144,166,176,201,217,221,236,251,282,296,341,354,398,418,424,473,474,480,482,494,495,496],sequenti:142,seri:[0,8,12,19,28,60,89,99,117,135,141,142,143,144,151,181,482],serial:[14,50,65,201,205,206,405,414,415,429,438,477,490,492,496,502,504,506,509,510,515,522],serializ:449,serialized_str:[504,506,509,510],serializer_class:522,seriou:[157,203],serious:195,serrano:75,serv:[52,53,65,73,75,117,122,126,132,136,137,142,159,170,187,199,200,201,215,237,314,449,465,474,476,534],serve_media:201,server:[1,3,4,7,8,9,10,11,12,13,14,15,17,19,20,21,23,25,26,28,30,31,32,33,34,37,41,42,45,47,48,50,51,52,53,54,55,57,62,63,65,67,68,70,73,75,76,82,85,87,88,89,92,94,96,99,101,102,104,108,110,116,117,119,120,121,122,123,124,125,126,127,131,133,134,135,136,142,143,144,146,147,151,152,153,154,155,158,160,161,162,163,164,166,169,170,172,174,178,179,180,181,185,186,187,188,189,191,192,193,194,195,199,201,203,205,206,208,209,210,216,220,222,227,232,234,236,239,245,248,255,261,270,277,281,296,306,320,329,333,336,337,343,347,354,358,374,375,376,378,379,380,392,402,409,410,411,413,415,466,470,474,476,477,480,484,487,489,496,502,503,519,527,548],server_:0,server_connect:438,server_data:201,server_disconnect:438,server_disconnect_al:438,server_epoch:[20,484],server_hostnam:[0,201],server_l:430,server_log_day_rot:[0,201],server_log_fil:201,server_log_max_s:[0,201],server_logged_in:438,server_nam:200,server_pid:[430,496],server_receive_adminportal2serv:417,server_receive_msgportal2serv:417,server_receive_statu:417,server_reload:[411,415],server_run:420,server_runn:458,server_servic:496,server_services_plugin:[62,132,200,201],server_services_plugin_modul:[62,201],server_session_class:[44,76,201],server_session_handler_class:201,server_session_sync:438,server_st:420,server_twistd_cmd:430,server_twisted_cmd:430,serverconf:[0,220,415],serverconfig:[201,414,415,426,427],serverconfigadmin:511,serverconfigmanag:[426,427],serverfactori:[430,440,443],serverload:[26,232],servernam:[32,53,123,124,182,185,197,200,201],serverport:201,serversess:[44,62,76,126,201,205,206,381,398,416,438,461,468],serversessionhandl:[44,62,201,461],serverset:[33,227,397],servic:[3,5,12,26,55,62,75,126,132,178,183,187,188,192,197,199,200,201,203,205,206,232,416,417,420,421,429,430,437,458,465,496],sessdata:[460,461],sessid:[10,13,23,44,175,201,401,402,417,429,430,438,461],session:[0,10,13,17,21,23,24,26,28,30,32,34,37,39,42,45,55,62,68,120,126,131,133,134,142,161,165,166,167,169,175,184,192,201,205,206,208,209,210,211,213,214,215,217,219,220,223,225,230,234,255,278,300,373,380,381,382,384,401,402,404,405,406,411,416,417,425,429,430,431,432,438,439,440,443,448,449,458,459,461,463,478,480,481,483,496,497,519,548],session_cookie_ag:201,session_cookie_domain:201,session_cookie_nam:201,session_data:461,session_expire_at_browser_clos:201,session_from_account:461,session_from_sessid:461,session_handl:[44,120,205],session_id:519,session_portal_partial_sync:461,session_portal_sync:461,session_sync_attr:201,sessionauthent:201,sessioncmdset:[21,26,134,201,225],sessionhandl:[0,24,62,65,201,205,206,208,402,416,425,431,432,438,439,459,460],sessionid:[201,438],sessionmiddlewar:201,sessions_from_account:461,sessions_from_charact:461,sessions_from_csessid:[438,461],sessions_from_puppet:461,sessionsmain:120,sesslen:402,set:[1,3,4,5,6,7,8,10,11,13,14,15,16,17,18,19,20,22,23,24,25,26,27,29,30,31,32,35,36,37,39,41,42,44,45,46,48,49,50,51,53,54,55,56,57,58,60,62,63,64,65,67,69,70,71,72,73,76,80,81,82,84,85,86,88,90,91,92,94,95,96,98,99,103,104,110,111,113,115,116,118,119,120,121,122,126,127,128,129,130,131,132,134,135,136,139,140,143,144,145,147,148,149,150,151,152,153,155,156,157,158,160,161,162,164,167,168,169,170,171,173,174,176,178,179,182,183,184,187,188,190,191,192,193,195,202,203,205,207,208,209,210,211,213,214,215,216,217,219,220,222,223,224,225,226,227,229,230,233,234,235,236,243,245,246,248,249,251,255,259,261,264,271,274,277,278,279,280,281,282,283,288,290,293,294,296,297,298,300,306,309,310,312,313,314,315,316,317,320,321,326,329,332,333,335,336,337,338,339,341,342,344,347,353,354,355,357,358,364,368,373,374,375,376,380,384,390,392,393,397,398,400,401,402,405,406,407,409,412,413,414,415,417,419,420,424,425,426,427,430,431,433,434,436,437,440,442,443,445,446,451,452,454,456,458,459,460,461,463,465,466,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,487,488,489,490,491,492,493,494,495,496,497,505,508,509,511,512,517,518,520,521,522,525,529,536,537,544,548],set_active_coordin:333,set_al:374,set_alias:217,set_atribut:522,set_attr:222,set_attribut:522,set_cach:468,set_character_flag:279,set_class_from_typeclass:470,set_dead:374,set_desc:227,set_descript:28,set_detail:[320,376],set_flag:[279,280],set_gamedir:420,set_kei:217,set_lock:227,set_log_filenam:236,set_nam:28,set_password:[0,208],set_posit:279,set_task:261,set_trac:[0,6,205],setattr:246,setcolor:166,setdesc:[26,126,161,228,326],sete:10,setflag:[277,279],setgend:[92,300],sethelp:[0,26,31,126,128,229,392],sethom:[26,126,222],setlock:326,setnam:62,setobjalia:[26,222],setperm:220,setspe:[108,117,329],sett:198,settabl:[32,67,133,443],setter:157,settestattr:27,settingnam:33,settings_chang:45,settings_default:[0,10,120,123,131,133,195,200,201,205,206,489,496],settings_ful:200,settings_mixin:[7,205,206,416,450],settl:[147,170],setup:[0,1,7,10,12,17,31,49,53,62,64,67,72,116,119,140,147,162,168,173,187,188,191,192,193,201,203,208,219,227,233,243,246,251,262,271,283,288,294,298,310,317,321,332,339,355,357,364,368,373,376,395,402,413,424,437,446,451,455,456,458,465,468,470,487,488,494,520,537,548],setup_sess:[382,494],setup_str:455,setuptool:[191,193,195],sever:[0,6,14,16,21,23,27,29,33,37,39,41,42,48,49,51,53,57,70,80,94,96,116,117,119,125,130,135,141,142,145,147,155,160,161,163,164,181,200,221,222,230,232,237,260,261,320,374,376,402,446,447,471,476,496],sewag:116,sex:300,sftpstorag:75,shadow:[0,31],shall:[176,179],shaman:[41,161],shape:[80,115,128,140,157,162,170,297,333,482],sharabl:41,share:[2,3,4,6,19,21,33,44,46,48,52,67,73,95,118,122,124,125,132,142,147,153,161,178,186,197,199,201,260,261,407,415,451,468,469,471,482,496,504,519,522,530],shared_field:519,sharedloginmiddlewar:[201,530],sharedmemorymanag:[469,486],sharedmemorymodel:[61,238,394,468,470,487,488],sharedmemorymodelbas:[211,238,394,401,410,468,470,487,488],sharedmemorystest:488,sharp:297,shaung:75,shaw:181,she:[23,31,58,80,92,96,104,141,160,169,176,245,300,353,483,499,500],sheer:[98,222],sheet:[2,28,51,119,141,142,178,179,183,479],sheet_lock:162,shell:[1,4,7,11,36,48,67,69,119,135,153,161,162,183,187,191,192,193,197,199,203,440,468],shell_plu:1,shelv:98,shield:[67,155],shift:[16,17,20,69,116,201,261,375,393,496],shiftroot:375,shine:[116,152,376],shini:[49,496],shinier:49,ship:[76,121,122,128,138,170,191],shire:163,shirt:[81,290],shoe:[81,290],shoot:[152,315,316,479],shop:[28,69,142,161,165,548],shop_exit:168,shopcmdset:168,shopkeep:141,shopnam:168,shopper:168,short_datetime_format:201,short_descript:[185,201],shortcom:168,shortcut:[0,8,14,19,20,21,23,30,45,48,72,80,85,94,96,119,131,135,147,149,155,164,169,178,179,183,192,205,209,216,217,222,227,245,258,296,333,398,402,490,496],shorten:[0,6,48,95,201,407,519],shorter:[0,48,62,69,83,116,119,133,144,171,172,177,200,201,236,237,353,393,468,469,476,489],shortest:[116,117,157,335,339,341,342,354],shorthand:[37,176,222],shortli:[80,96,144],shortsword:130,shot:315,should:[0,1,5,6,7,8,9,10,11,12,13,14,15,16,17,19,20,21,23,28,30,31,32,33,35,37,39,41,42,44,45,46,47,48,50,51,53,54,55,56,57,58,60,62,63,64,65,67,68,69,70,72,73,74,75,76,80,85,89,94,95,96,97,98,101,104,110,114,116,118,119,121,122,123,124,125,126,128,130,132,133,134,135,136,137,138,139,140,141,143,144,146,147,149,151,153,155,157,161,162,163,164,166,167,168,169,170,174,175,176,178,179,182,183,184,186,187,189,190,191,192,193,195,197,198,199,200,201,203,208,209,210,211,213,215,216,217,219,221,222,223,226,227,229,230,232,233,234,236,237,238,243,245,251,254,258,261,264,273,274,277,279,280,282,284,290,296,297,298,303,306,309,312,313,314,316,320,326,329,335,337,339,341,342,343,344,353,354,357,358,373,374,376,380,386,392,397,398,401,402,404,406,407,410,413,414,415,418,419,420,424,427,431,437,440,443,444,446,448,449,451,452,458,459,460,461,463,464,466,468,470,471,473,474,476,477,478,480,481,482,483,484,489,490,491,492,494,495,496,497,504,505,512,536,537,542],should_join:236,should_leav:236,should_list_top:229,should_show_help:229,shoulddrop:[316,402],shoulder:[81,162,290],shouldget:[316,402],shouldgiv:[316,402],shouldmov:[312,402],shouldn:[15,75,80,96,152,155,162,176,201,245,261,264,315,402,451],shouldrot:489,shout:[155,277,279],shove:152,show:[0,1,6,9,11,12,14,15,16,19,20,23,25,28,29,30,31,42,44,50,51,53,55,58,59,60,62,67,72,80,85,90,91,95,96,102,110,111,113,115,116,117,118,119,121,122,125,126,127,128,132,133,134,135,136,138,139,140,141,142,144,145,146,147,148,151,156,157,159,161,162,163,164,166,167,168,169,170,171,172,173,176,178,179,184,185,187,188,193,197,198,199,200,201,203,208,219,220,222,227,228,229,230,232,234,254,255,270,274,277,287,290,306,315,316,320,333,335,339,341,342,344,347,350,358,368,376,384,390,392,402,404,406,407,418,420,429,468,478,480,489,490,491,496,500,536],show_change_link:504,show_foot:481,show_map:159,show_non_edit:406,show_non_us:406,show_valu:350,show_version_info:420,show_warn:420,showcas:[21,98,132,138,170],shown:[23,25,28,31,41,42,50,59,80,89,96,104,105,110,123,124,133,144,153,155,159,161,163,174,178,185,201,217,220,227,231,233,245,254,270,284,290,296,341,342,354,358,368,375,386,402,420,480,481,525],showtim:163,shrink:[134,482],shrug:95,shuffl:20,shun:[1,69,197],shut:[7,51,96,123,135,155,192,200,202,208,232,402,413,415,420,422,429,430,437,438,458,461],shutdown:[7,21,26,42,44,55,57,126,162,203,208,209,232,409,415,420,429,430,437,458,459,470,476,480],shy:[1,72,140,143],sibl:[14,42,54,136,161],sid:[75,220],side:[0,4,10,14,30,32,42,44,46,51,53,65,77,87,96,107,116,117,119,130,141,142,146,159,162,169,176,178,184,201,208,209,211,222,228,230,238,287,326,342,347,394,401,410,417,425,429,430,438,441,444,445,448,459,460,461,468,470,471,473,482,488],sidebar:[53,148],sidestep:57,sidewai:482,sigint:420,sign:[9,16,47,65,94,95,96,116,128,130,132,137,169,175,177,197,201,227,279,320,341,402,415,468,473,497],signal:[0,7,24,94,203,205,206,312,313,314,315,316,340,416,420,443,449,451,487,548],signal_acccount_post_first_login:45,signal_account_:45,signal_account_post_connect:45,signal_account_post_cr:45,signal_account_post_last_logout:45,signal_account_post_login:45,signal_account_post_login_fail:45,signal_account_post_logout:45,signal_account_post_renam:45,signal_channel_post_cr:45,signal_helpentry_post_cr:45,signal_object_:45,signal_object_post_cr:45,signal_object_post_puppet:45,signal_object_post_unpuppet:45,signal_script_post_cr:45,signal_typed_object_post_renam:45,signatur:[23,30,146,217,258,282,293,340,358,392,414,418,420,422,423,431,440,441,443,445,448,449,468,473,480,491,492,530],signed_integ:497,signedinteg:490,signedon:432,signifi:[16,23,397,468],signific:[8,30,116,483,494],significantli:27,signup:123,silenc:[227,422],silenced_system_check:10,silent:[14,54,163,172,220,227,368,424,432],silli:[37,41,130],silmarillion:137,silvren:197,similar:[0,1,9,14,15,23,28,31,37,48,49,51,52,53,67,72,74,80,83,94,96,112,115,116,117,121,122,125,128,133,138,139,140,146,151,152,153,162,174,187,197,208,217,219,233,236,245,296,312,315,316,333,353,384,394,402,409,461,471,476,480,496,519,545],similarli:[46,110,116,130,162,163,197,274,313,358,505,512,519],simpl:[0,1,2,10,13,14,15,16,17,18,21,23,24,25,27,30,31,32,37,39,41,44,46,53,54,58,62,64,67,68,69,73,77,78,79,84,85,89,90,91,92,94,95,96,97,100,103,104,105,107,109,111,112,115,117,119,121,122,123,124,125,126,133,134,136,137,138,139,140,141,144,146,147,148,150,153,154,156,157,159,160,161,162,164,166,168,169,170,171,172,173,175,176,177,178,187,192,197,198,199,201,222,236,245,246,255,260,277,279,281,287,293,296,297,300,303,309,312,313,314,315,316,320,325,326,329,333,339,353,354,358,363,366,368,370,374,375,376,384,386,390,391,401,402,407,413,430,439,441,468,474,475,480,483,496,533,534,536],simple_ev:30,simpledoor:[205,206,239,318,548],simpledoorcmdset:[107,326],simpleev:30,simplemu:184,simpleobjectdbseri:519,simpler:[0,17,28,54,160,221,222,477,545],simpleresponsereceiv:422,simplest:[14,39,53,112,126,146,147,155,162,197,216,474,497],simpli:[0,10,11,12,15,18,21,28,33,39,46,48,53,55,60,62,65,74,75,80,84,89,90,98,108,111,118,119,128,131,134,140,141,144,146,152,153,155,157,159,162,166,168,172,174,175,177,182,183,188,189,195,199,200,201,208,215,216,217,233,234,236,245,255,262,293,312,313,316,320,329,341,366,368,375,390,392,394,402,438,468,470,474,475,479,481,496],simplic:[58,157,176,201,234,255,375],simplif:[142,147],simplifi:[0,7,54,64,133,147,164,170,172,192,258],simplist:[51,109,147,175,177,353,370],simul:[7,23,108,117,136,142,146,329],simultan:[68,142,147,162,201,400,496],sinc:[0,1,6,7,8,10,12,14,15,16,19,20,21,23,25,27,28,30,31,32,33,34,35,37,39,42,47,48,52,53,54,57,58,60,62,64,65,67,68,73,76,77,80,96,104,111,116,117,119,121,122,123,124,125,126,129,130,131,132,133,134,135,136,137,138,140,142,143,144,147,149,152,153,154,155,157,158,159,160,161,162,163,164,168,169,170,172,174,175,176,178,179,183,185,187,192,197,200,201,203,208,209,211,215,216,217,222,230,231,232,237,245,249,251,279,287,296,303,312,314,315,320,337,341,342,354,368,375,376,390,397,400,402,406,407,411,414,415,420,422,425,437,442,444,458,459,461,463,468,469,470,474,475,476,478,480,483,484,487,489,492,493,494,496,505,512,536],singl:[0,7,11,12,16,21,23,28,30,35,36,42,44,46,48,54,56,65,68,69,72,76,80,83,94,96,102,105,110,113,114,116,117,119,121,122,130,134,135,136,138,141,142,146,161,162,170,183,187,197,201,208,220,227,228,232,238,245,270,274,297,312,313,314,315,316,333,339,341,342,344,358,376,380,386,390,402,406,407,414,415,452,459,461,468,469,471,473,474,479,480,482,496,499,536],single_type_count:290,singleton:[34,44,47,116,411,414,475],singular:[119,162,201,402,499,501],sink:1,sint:29,sir:95,sit:[16,19,23,37,39,48,65,97,121,126,132,134,135,136,142,144,155,174,175,193,195,197,201,230,236,238,264,279,282,303,342,354,375,376,398,409,412,415,433,471,476,491,494],sitabl:48,sitat:376,site:[18,33,40,50,53,56,61,118,164,170,178,179,181,182,183,187,188,192,197,198,199,201,342,465,507,527],site_head:[50,527],site_id:[53,201],sitsondthi:144,sitsonthi:144,sittabl:[125,145,279],sittablein:144,sitter:144,situ:[14,470,477],situat:[0,6,14,23,30,31,42,44,48,52,64,65,67,80,94,95,96,118,134,137,144,163,216,217,222,260,280,487],six:[94,146,169,347,390],sixti:163,sizabl:75,size:[0,6,8,51,56,69,115,116,117,143,159,162,170,184,201,205,243,333,341,342,422,436,473,479,481,482,487,489,496],size_limit:496,skeleton:175,sketch:147,skill:[28,58,104,110,117,121,125,130,132,135,139,140,141,146,147,154,155,156,174,178,179,181,203,297,344,353,354,357,358,479],skill_combat:146,skill_craft:85,skill_requir:297,skill_rol:297,skillnam:146,skillrecip:85,skim:[113,117,130,143],skin:[41,297],skip:[1,9,19,21,23,28,41,47,53,58,68,75,78,98,116,119,126,128,130,132,134,136,140,143,159,163,191,208,221,222,297,402,406,468,477,489,496,514],skip_cal:279,skipkei:449,skippabl:[23,72],skull:41,sky:[42,177],slack:181,slam:[91,384],slash:[53,121,125,128,138,146,147,201,243,375],slate:[134,170],sleep:[23,30,54,142,146,155],sleepi:14,slew:[0,146,191,474],slice:[0,219,473,481],slice_bright_bg:219,slice_bright_fg:219,slice_dark_bg:219,slice_dark_fg:219,slicker:0,slide:[297,368],slider:53,slight:[169,182,251,261],slightli:[0,6,31,141,147,163,175,181,195,238,274,313,320,504,547],slip:495,slogan:124,sloppi:119,slot:[53,91,110,162,179,313,315,320,358,384,407,496],slow:[7,20,113,117,141,147,232,237,328,329,330,333,337,342,374,406,433,439,473,493,496,548],slow_exit:[108,205,206,232,239,318,548],slowdoorcmdset:[108,329],slower:[7,42,142,163,197,201],slowexit:[108,329],slowexitcmdset:329,slowli:[0,110,181,358],slug:[217,236,392,394,470,544,547],slugifi:[541,544],slugify_cat:544,small:[7,8,11,16,17,23,35,52,56,69,79,85,89,113,115,116,117,118,121,123,138,140,141,142,143,144,148,153,156,161,162,164,165,166,168,169,170,175,181,190,197,198,293,296,315,333,335,336,339,341,347,358,368,443,478,479,482,496],smaller:[0,15,16,56,119,339,358,482],smallest:[39,86,94,104,110,162,163,197,251,353,358,479,496],smallshield:67,smart:[115,169,333,342],smarter:41,smartmaplink:342,smartreroutermaplink:342,smartteleportermaplink:342,smash:[106,368],smaug:[126,133,134,136],smedt:499,smell:[116,140,279],smellabl:279,smelli:41,smile:[23,30,133,141,228,277,501],smith:[58,479],smithi:155,smoother:0,smoothi:[103,117,309],smoothli:[179,201],smtp:0,snake:[53,151],snap:167,snapshot:[12,14],snazzi:180,sneak:398,snippet:[0,15,21,33,52,54,60,84,117,121,122,126,141,152,232,293,429,495,496],snonewaymaplink:[116,342],snoop:[187,199],snow:[85,296],snowbal:[85,296],snowball_recip:85,snuff:1,soak:134,social:[121,142,188],socializechat:452,societi:130,sofa:144,soft:[61,104,122,123,353,548],softcod:[30,61,72,94,117,142],softli:180,softwar:[12,195,197],solar:163,soldier:[136,168],sole:[161,164,209],solid:[60,121,143,159],solo:[132,142],solut:[0,10,16,20,28,31,47,48,61,96,110,116,124,138,142,144,146,153,155,157,160,164,168,169,170,172,174,197,199,231,341,342,358,398],solv:[8,20,89,103,116,117,125,138,139,140,152,159,165,170,195,282,309,341,375],some:[0,1,2,4,5,6,9,10,11,12,14,15,16,17,19,20,21,23,26,27,28,30,31,32,33,35,36,37,41,42,44,45,46,47,48,49,50,51,53,55,56,58,60,62,64,65,67,69,70,76,77,80,85,88,89,94,95,96,105,110,111,112,113,116,118,119,121,122,123,124,125,126,127,128,129,130,132,133,134,136,138,139,140,143,144,145,146,147,149,151,152,153,154,155,159,161,162,163,164,167,168,169,170,171,172,174,175,176,178,179,180,181,182,183,184,187,189,190,191,193,195,196,197,199,200,201,203,208,216,217,222,224,227,228,231,232,234,236,237,245,255,261,264,274,279,282,287,293,296,313,314,315,316,326,333,342,353,358,368,373,375,376,386,390,398,402,406,407,410,422,424,429,432,458,468,470,473,474,479,480,483,484,487,489,490,496,499,500,504,509,522,536,547],some_long_text_output:481,some_modul:131,somebodi:[94,96],someclass:131,somehow:[23,36,53,62,70,74,98,144,146,197,290,478],someon:[23,33,45,47,50,58,94,95,96,126,130,135,143,144,155,159,162,168,171,172,197,199,208,228,290,368,374,375,402],somepassword:183,someplac:374,someth:[7,10,11,12,14,16,19,20,23,28,29,30,31,33,37,39,41,42,45,47,48,50,51,52,54,55,58,60,62,65,67,69,72,73,75,77,80,84,85,94,95,96,98,105,108,110,114,116,117,118,119,121,122,123,124,125,126,128,130,133,135,136,137,138,139,140,143,144,146,149,153,155,156,157,158,159,160,161,162,163,164,167,168,169,170,175,178,179,182,183,186,187,188,189,191,195,197,200,208,215,217,222,228,230,233,245,264,274,287,290,293,297,300,312,316,329,333,342,354,375,376,386,398,402,407,459,470,474,480,481,483,490,496,542],something_els:42,somethingthat:358,sometim:[6,7,20,23,27,28,33,39,41,42,53,62,67,80,94,122,130,134,135,137,151,163,169,195,203,229,400],sometypeclass:[94,129],somewhat:[80,123,161,245],somewher:[0,10,12,41,42,48,55,89,96,116,118,134,144,146,174,197,201,217,222,236,335,392,394,470,496,548],somon:279,soon:[6,14,44,140,142,164,189,192,449,496],sophist:[20,54,69,121,147],sorl:123,sorri:[33,204,398],sort:[0,14,21,34,39,44,46,53,58,65,73,74,77,85,93,110,112,113,117,122,125,130,133,134,135,139,140,146,147,149,157,159,164,171,197,201,203,279,287,312,313,314,315,316,342,350,358,376,402,407,410,468,469,470,480,496,527,536,541,542,544,545,546],sort_kei:449,sort_stat:7,sortkei:7,sought:[208,214,236,392,394,402,468,470],soul:[143,170],sound:[0,33,47,64,65,80,89,98,104,117,118,140,141,144,155,162,167,170,200,201,353,444],sourc:[2,3,4,5,8,10,11,12,17,18,20,21,24,26,30,37,54,55,56,64,68,69,75,80,94,95,96,111,113,118,120,121,122,123,124,125,131,135,138,141,152,161,179,181,183,187,189,191,193,195,196,205,208,209,210,211,213,214,215,216,217,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,236,237,238,243,245,246,249,251,252,255,256,258,259,260,261,262,264,270,271,273,274,277,278,279,280,281,282,283,284,287,288,290,291,293,294,296,297,298,300,301,303,304,306,307,309,310,312,313,314,315,316,317,320,321,326,327,329,330,332,333,335,336,337,339,340,341,342,343,344,347,348,350,351,353,354,355,357,358,363,364,366,368,370,371,373,374,375,376,377,380,381,382,384,386,387,389,390,392,393,394,395,397,398,400,401,402,404,405,406,407,409,410,411,412,413,414,415,417,418,419,420,422,423,424,425,426,427,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,451,452,453,455,456,457,458,459,460,461,463,464,465,468,469,470,471,473,474,475,477,478,479,480,481,482,483,484,486,487,488,489,490,491,492,493,494,495,496,497,499,500,501,504,505,506,507,508,509,510,511,512,514,516,517,518,519,520,522,524,527,528,529,530,531,534,536,537,540,541,542,543,544,545,546,547,548],source_loc:[153,171,280,333,375,376,402],source_object:[234,255],sourceforg:[433,434,444,447],sourceurl:432,south:[0,80,96,98,116,144,158,159,170,174,222,335,341,342,452],south_north:170,south_room:98,southeast:[222,342],southern:170,southwest:[116,128,222,342],space:[0,14,19,23,25,30,31,33,36,41,42,51,58,60,72,75,76,80,94,95,98,116,119,124,125,126,128,134,135,136,147,152,153,159,161,169,170,172,176,201,214,217,222,227,228,229,230,233,234,297,306,316,341,342,353,354,375,402,464,470,473,474,479,480,482,483,495,496,500,525],spaceship:174,spacestart:495,spaghetti:[15,480],spam:[19,42,55,78,147,154,199,201,227,463],spammi:[55,147,201,489],span:[18,56,69],spanish:[0,64],spare:[312,313,314,315,316,341],sparkly_mag:130,spars:76,spatial:170,spawen:[103,309],spawn:[0,7,19,24,26,35,51,85,89,103,116,117,120,126,131,138,142,173,205,220,222,296,309,313,314,336,339,341,342,343,404,405,406,407],spawn_alias:[116,342],spawn_link:[341,342],spawn_nod:341,spawner:[0,24,37,116,173,201,205,206,222,314,315,403,405,548],spawng:85,spd:179,speak:[17,19,57,70,95,96,104,117,142,171,172,176,178,228,279,354,402],speaker:[94,95,104,279,353,354],spear:41,special:[0,1,6,10,13,14,15,16,17,19,20,21,23,25,28,30,33,37,39,45,46,48,50,51,52,53,54,57,60,64,65,67,68,70,90,92,94,116,117,119,122,125,128,130,131,132,133,134,135,136,137,139,141,147,153,156,162,164,166,168,170,175,179,199,201,209,211,213,216,228,231,277,279,280,284,300,314,315,320,333,344,354,375,376,390,395,398,402,424,425,448,452,468,470,474,480,495,509],specic:341,specif:[0,1,4,6,10,12,13,14,20,21,23,27,28,33,36,37,39,44,45,46,47,48,49,51,55,58,62,68,73,77,80,84,85,94,95,96,105,116,117,118,119,120,121,122,123,124,130,131,132,133,135,136,137,140,142,147,153,157,160,163,164,167,169,170,174,175,176,177,178,179,180,181,183,184,187,192,197,200,201,203,208,210,213,220,222,229,232,234,238,239,245,258,259,260,261,277,279,287,293,296,297,303,335,341,342,343,354,386,393,397,400,402,409,411,420,424,425,432,448,449,459,468,470,473,474,478,480,481,482,496,500,505,507,516,547,548],specifi:[0,10,14,19,20,21,28,31,34,41,44,46,47,53,55,56,57,58,60,65,67,68,80,81,82,85,87,91,94,95,103,110,111,115,116,119,128,129,133,134,136,137,144,149,151,152,155,157,159,162,163,169,170,175,179,185,192,195,197,198,199,201,213,214,222,229,236,237,245,246,248,258,260,261,279,290,296,303,309,313,314,315,320,333,335,341,342,347,354,358,384,386,390,397,398,402,405,406,407,411,431,457,468,471,473,474,476,479,480,483,484,490,491,492,494,496,499,500,516,519,536,544,547],specifici:280,specii:58,spectacular:6,spectrum:142,speech:[277,402],speed:[0,7,14,36,67,77,108,117,142,147,163,167,179,201,329,400,407,438,471,493],speedup:[201,406],spefifi:483,spell:[17,41,46,57,111,112,154,161,205,206,239,285,295,315,390,407],spell_attack:315,spell_book:85,spell_conjur:315,spell_heal:315,spell_nam:315,spellbook:[296,297],spellcast:[0,112,141],spellfunc:315,spellnam:[297,315],spend:[37,112,137,142,143,157,169,312,313,314,315],spend_act:312,spend_item_us:314,spent:315,sphinx:119,spike:296,spiked_club:296,spin:[52,163,197,494],spine:315,spit:[135,147,149,296],splashscreen:255,splinter:138,split:[0,21,23,44,115,116,124,134,135,142,151,153,162,169,170,172,174,175,200,214,230,251,333,375,395,404,446,461,473,474,484],split_nested_attr:222,splittin:0,spoiler:113,spoken:[95,96,104,141,189,353,354,402],spoof:[187,505,512],sport:36,spot:[53,98,122,161,208,339,342],spread:[7,30,41,130,144,146,548],spring:[90,167,320,321],spring_desc:321,sprint:329,sprofil:420,spruce:58,spy:35,spyrit:184,sql:[3,48,67,122,137,160,161,202,455,548],sqlite3:[4,7,10,11,12,67,122,132,175,190,201,202,496],sqlite3_prep:458,sqlite:[11,67,183,458],sqrt:157,squar:[30,72,98,119,157],squeez:[67,119],src:[18,33,37,51,54,128,178,191,192,381],srcobj:[217,230],srun:424,srv:4,ssessionhandl:65,ssh:[0,44,62,65,122,124,153,197,201,202,203,205,206,416,428,459,460],ssh_enabl:201,ssh_interfac:[197,201],ssh_port:[197,201],ssh_protocol_class:201,sshd_config:199,sshfactori:440,sshprotocol:[201,440],sshserverfactori:440,sshuserauthserv:440,ssl:[0,65,68,122,182,187,201,202,205,206,209,227,416,428,432,445,460],ssl_context:[441,445],ssl_enabl:201,ssl_interfac:[197,201],ssl_port:[197,201],ssl_protocol_class:201,sslcertificatefil:182,sslcertificatekeyfil:182,sslciphersuit:182,sslengin:182,ssllab:182,sslprotocol:[182,201,441,445],ssltest:182,sslv3:187,sta:479,stab:[138,155,375],stabil:[0,140,233,353],stabl:[0,53,62,160,192],stabli:[8,415],stack:[0,15,21,51,125,139,140,144,174,215,216,402,406,461,480],stackedinlin:504,stackexchang:10,stackoverflow:10,stacktrac:406,staf:69,staff:[19,23,39,41,50,57,69,94,117,124,125,139,140,146,153,161,170,175,178,201,215,344,407,474],staff_contact_email:201,staffer:[50,124,142,201],staffernam:124,stage:[0,4,12,13,140,160,170,175,178,504,506,509],stagger:432,stai:[21,28,48,89,135,159,169,174,176,197,333,342],stale:[48,192,414],stale_timeout:414,stalker:542,stamina:[93,110,141,156,315,350,358],stamp:[20,44,48,51,201,208,211,220,232,401,410,452,457,470],stanc:[0,30,61,104,142,147,354,402,483,499],stand:[0,10,12,15,18,33,50,67,80,94,104,113,116,117,119,128,131,135,137,138,141,144,146,147,152,153,155,159,160,170,174,175,178,189,193,197,201,228,277,279,287,344,354,374,402,410,415,451,471,474,476,482,512],standalon:[187,199],standard:[14,17,19,20,27,49,53,60,61,65,68,70,87,88,94,96,114,116,117,122,124,130,133,135,147,151,152,156,161,162,169,173,176,181,182,187,193,195,199,201,205,208,219,255,274,344,347,354,402,440,442,447,464,468,473,482,484,494,497,521,548],stander:144,stanislav:75,stanza:[0,58,430],stapl:142,star:222,start:[0,2,5,6,7,9,10,11,12,13,15,16,17,19,20,21,23,27,28,30,32,33,34,36,39,41,42,44,45,48,51,52,53,55,56,59,60,62,63,64,65,67,69,75,77,85,89,90,91,92,96,104,109,110,112,113,116,117,118,119,121,122,123,125,128,130,131,132,133,135,136,139,140,141,142,143,144,146,147,149,151,152,153,155,157,158,159,161,163,164,165,169,170,173,174,175,177,178,181,183,185,186,187,189,191,193,194,195,196,197,198,199,200,201,202,208,209,214,215,221,222,227,228,229,230,231,232,233,236,245,251,261,277,278,279,281,287,296,300,312,313,314,315,316,320,333,341,342,347,350,353,354,358,368,370,373,374,376,384,390,402,404,406,409,410,411,412,413,414,415,417,420,422,424,425,430,431,432,433,437,438,439,444,445,451,452,457,458,461,465,469,473,474,475,476,478,480,481,482,483,484,489,496,525,548],start_:201,start_all_dummy_cli:451,start_attack:374,start_bot_sess:461,start_char:483,start_delai:[42,147,173,174,409,410,415,476],start_direct:342,start_driv:174,start_evennia:420,start_hunt:374,start_idl:374,start_index:227,start_lines1:420,start_lines2:420,start_loc:201,start_loc_on_grid:159,start_of_messag:506,start_olc:404,start_only_serv:420,start_open:279,start_ov:28,start_patrol:374,start_plugin_servic:[62,201],start_portal_interact:420,start_posit:279,start_read:279,start_rotat:279,start_serv:430,start_server_interact:420,start_sunrise_ev:163,start_text:390,start_turn:[312,316],start_xi:[116,341],startapp:[67,164,178,179],startclr:483,startcolor:30,startcoord:339,startedconnect:[417,431,432],starter:[124,125,138,151],starthour:153,startnod:[28,168,278,373,384,404,480],startnode_input:[28,278,373,384,404,480],startproduc:422,startservic:[423,465],startset:376,startswith:[31,34,222,473,494],starttupl:440,startup:[14,25,62,132,151,163,197,200,201,402,410,413,449,458,489,496],stat:[7,14,18,28,53,77,110,132,133,135,136,140,141,147,151,165,168,175,178,179,188,287,312,315,316,358,545,548],state:[0,6,12,14,15,16,21,23,26,27,28,33,42,44,51,60,84,89,106,117,121,122,132,133,136,138,142,147,160,174,176,192,196,203,205,206,208,213,215,216,219,226,234,236,239,275,276,277,279,280,283,284,293,312,326,368,374,376,407,410,412,413,415,420,440,468,478,480],state_001_start:89,state_chang:282,state_nam:282,state_unlog:226,statefultelnetprotocol:[443,451],statehandl:[280,282],statement:[6,15,16,20,21,28,53,54,67,75,121,130,135,159,162,172,368,474,495],statenam:[277,279,282],static_overrid:[0,51,73,132,151],static_root:[151,201],static_url:201,staticfil:[75,117,201],staticfiles_dir:201,staticfiles_ignore_pattern:201,staticfiles_storag:75,statict:222,statictrait:[110,358],station:[94,142,174],stationari:374,statist:[44,52,53,55,73,93,149,173,200,222,232,350,453,469,487],statu:[0,12,28,44,47,50,68,77,112,125,128,132,139,140,141,155,162,183,187,195,197,200,201,202,232,287,314,315,316,374,415,418,420,429,430,431,434,448,504],status:[125,139,140],status_cod:422,stderr:274,stdin_open:192,stdout:[0,192,274,420,489],steadi:122,steal:[35,168,229],stealth:142,steel:297,steer:174,step1:155,step2:155,step3:155,step:[1,4,8,9,11,15,16,19,21,23,27,28,41,67,69,80,94,95,96,116,117,119,123,125,127,139,142,143,146,152,155,157,162,164,165,167,168,169,174,175,176,179,182,183,192,193,195,201,202,221,227,245,297,316,339,341,342,357,376,415,424,436,447,451,452,461,470,474,477,478,480,481],step_sequ:335,stepnam:201,stepper:[116,342],stick:[17,23,28,70,85,119,220],still:[0,1,2,9,11,12,14,15,16,17,19,21,23,37,44,45,48,50,57,58,60,62,64,65,69,80,85,89,94,96,102,110,111,115,116,117,119,121,122,123,124,126,128,132,133,134,135,142,144,153,155,157,159,161,162,163,169,174,175,176,179,180,181,187,195,199,201,203,208,215,222,227,229,234,236,255,270,282,296,312,313,314,315,316,333,342,357,358,373,376,390,400,402,406,412,452,480,482,483,484,492,496,544],sting:170,stock:[121,143,168,381,536],stolen:[199,473],stone:[23,28,58,128,137,143],stop:[0,6,7,9,11,16,19,20,30,32,37,39,42,44,47,51,54,55,64,69,94,106,107,108,110,116,117,124,125,128,131,132,135,141,142,144,147,153,155,159,161,162,163,167,173,174,175,187,192,196,197,200,201,202,219,222,227,232,236,251,260,262,287,297,313,316,326,329,342,354,358,368,402,409,412,413,414,415,419,420,422,425,437,438,458,459,465,473,474,476,496,548],stop_driv:174,stop_evennia:420,stop_serv:430,stop_server_onli:420,stop_task:0,stopproduc:422,stopservic:[423,465],storag:[0,14,15,23,24,48,67,75,84,122,131,143,146,154,155,160,168,178,183,211,232,238,241,243,264,293,333,353,358,392,398,401,402,406,407,410,413,415,427,463,467,468,470,475,490,491],storage_modul:475,storagecontain:42,storagescript:42,store:[0,8,11,12,13,15,17,19,20,21,23,24,27,31,33,35,36,37,39,42,44,46,47,48,50,51,62,67,70,73,75,77,78,83,85,90,95,96,104,105,110,115,116,117,122,124,125,126,130,132,133,134,135,136,139,140,144,146,147,151,152,154,155,157,158,159,160,161,162,164,167,168,169,174,175,178,179,183,191,192,201,208,209,211,216,219,220,222,223,225,229,230,238,261,280,282,287,296,297,306,312,314,320,329,333,342,343,353,354,358,363,370,375,376,381,384,386,392,393,397,398,401,405,406,407,408,411,412,413,414,415,420,424,425,426,427,430,432,433,434,436,444,447,452,458,459,460,461,463,465,468,469,470,471,473,475,476,477,478,479,480,481,484,487,490,491,492,496,522,536,547],store_kei:[0,415,496],store_tru:[114,274],stored_obj:153,storekei:[168,415],storenam:168,storeroom:168,storeroom_exit:168,storeroom_kei:168,storeroom_key_nam:168,stori:[8,31,112,124,149,178],storm:154,storm_drain:85,storypag:149,storytel:175,stove:402,str:[0,14,20,27,28,30,32,34,35,42,48,54,62,70,80,91,94,96,98,110,116,117,126,133,134,135,141,146,153,157,162,167,169,178,179,201,205,208,209,210,213,214,215,216,217,222,227,229,236,237,238,245,251,258,259,260,261,264,274,278,279,280,282,284,287,290,293,296,300,303,312,314,315,316,320,326,333,341,342,343,344,350,353,354,357,358,366,368,373,376,381,384,386,390,392,393,394,395,398,400,401,402,405,406,407,409,411,412,413,415,417,418,420,424,425,426,427,429,430,431,432,433,435,438,439,440,443,444,445,448,449,451,457,458,459,460,461,463,464,465,468,469,470,471,473,474,475,476,478,479,480,481,482,483,489,490,491,492,493,494,495,496,497,499,500,505,514,516,519,528,542,544],straght:342,straight:[0,116,143,159,176,342,471],straightforward:[153,168,169,174,175],strang:[16,42,133,155,160,182,216,234,429],strange_bug:12,strangl:197,strap:142,strategi:[6,316],strattr:[14,468],strawberri:[114,274],stream:[9,429,433,459],streamlin:287,streeter:75,stren:135,strengh:14,strength:[14,33,110,132,133,141,142,146,147,161,162,179,357,358],stress:[7,339,451],stretch:[116,119,170],stribg:496,stricako:0,strict:[54,298,406,473,544],stricter:[143,406],strictli:[28,57,88,130,178,255,315,482],strike:[28,147,167,228,315,316,370],string1:496,string2:496,string:[0,6,7,8,10,14,15,17,19,20,21,23,24,25,27,28,30,31,34,36,37,39,41,46,47,48,50,51,55,57,58,64,65,67,68,70,72,80,85,91,98,104,105,111,115,117,119,121,124,125,126,128,130,132,133,134,136,137,141,142,144,147,153,155,159,161,162,167,170,178,179,183,185,188,194,197,200,201,205,206,208,209,210,211,213,214,217,220,222,227,228,229,230,231,232,233,236,237,238,245,254,255,264,279,284,287,290,293,296,303,309,312,314,333,341,343,344,353,354,358,368,373,374,381,382,384,386,387,390,393,394,396,397,398,400,401,402,405,406,407,409,410,413,415,420,422,425,429,432,440,443,444,446,449,452,457,459,461,464,468,469,470,471,472,473,474,476,477,478,479,481,482,483,489,490,492,493,494,495,496,497,499,500,505,512,519,544,547],string_from_modul:496,string_partial_match:[400,496],string_similar:496,string_suggest:496,stringproduc:422,stringreceiv:429,stringvalu:[110,358],strip:[0,23,28,30,31,32,60,69,80,94,119,126,134,144,152,162,166,168,172,175,201,214,222,229,230,231,279,297,354,400,407,425,440,443,444,473,474,478,480,483,494,496],strip_ansi:[166,473,495],strip_cmd_prefix:229,strip_control_sequ:496,strip_dir:7,strip_mxp:473,strip_raw_ansi:473,strip_raw_cod:473,strip_unsafe_input:[0,201,496],strip_unsafe_token:473,strippabl:480,stroll:329,strong:[33,60,143,175,495],strongest:33,strongli:[12,19,49,118,122,135,142,146,353],strr:386,struct:[160,201],structur:[0,14,23,28,30,31,39,41,53,65,68,75,117,118,121,122,124,126,130,131,132,135,142,151,159,160,164,178,179,195,196,201,222,227,236,341,343,354,395,402,406,407,444,449,471,477,480,517,533,545,548],strvalu:[0,14,468,469],stuck:[28,126,138,144],stuff:[10,14,21,28,30,33,39,41,42,44,45,53,92,110,114,117,118,119,124,125,126,127,134,135,136,137,138,140,141,142,144,146,149,152,155,159,161,168,187,201,216,233,274,300,357,358,415,458,529,548],stumbl:[8,143],stupid:[12,137,143],sturdi:479,stutter:69,style:[0,9,14,19,20,23,24,26,28,36,56,60,62,72,81,82,85,97,103,110,111,112,117,118,119,121,125,126,135,138,140,142,143,145,147,149,152,161,162,165,170,181,201,211,217,219,230,248,269,272,274,284,290,296,303,312,358,384,406,478,482,483,496,548],style_foot:0,style_head:0,style_separ:0,styled_foot:217,styled_head:[23,217],styled_separ:217,styled_t:[0,23,217],sub:[4,14,19,30,31,41,42,51,53,68,69,102,104,119,124,130,132,147,161,164,186,196,197,201,207,212,227,229,235,239,245,246,270,274,339,354,391,393,395,396,399,407,408,416,467,472,473,483,495,502,506,538],sub_ansi:473,sub_app:178,sub_brightbg:473,sub_dblspac:495,sub_invisiblespac:495,sub_mxp_link:495,sub_mxp_url:495,sub_text:495,sub_to_channel:227,sub_xterm256:473,subbed_chan:227,subcategori:[229,395],subclass:[20,24,41,44,48,110,115,116,122,130,132,172,222,245,246,333,358,401,406,410,430,443,449,470,488,492,496,504,505,512],subcommand:[0,116],subcrib:19,subdir:10,subdirectori:10,subdomain:[182,197,199],subfold:[0,67,73,118,132,135,179],subhead:119,subject:[35,58,67,92,130,157,166,197,300,303,483,500],sublim:125,submarin:174,submenu:[9,245,246,404],submenu_class:245,submenu_obj:245,submiss:[91,384,536],submit:[18,53,91,117,118,178,199,234,384,536,540,542,547],submitcmd:384,submitt:0,submodul:444,subnegoti:444,subnet:[55,183,220],subpackag:[10,68],subprocess:[153,496],subreddit:181,subscrib:[11,19,23,33,47,55,120,122,162,177,201,209,227,236,237,238,270,314,415,431,462],subscribernam:227,subscript:[19,23,42,47,162,177,181,227,237,238,415,506],subscriptionhandl:[19,238],subsect:341,subsequ:[23,54,104,135,147,270,277,353,474,496],subsequent_ind:482,subset:[10,46,132,142,160,341],subsid:48,substanti:[75,296],substitut:[0,9,36,188,402,473,495],substr:[134,473,483],subsub:[31,229,233],subsubhead:119,subsubsubhead:119,subsubtop:[31,229,233],subsubtopicn:233,subsystem:[0,67,112,124,141,193,398],subtext:280,subtitl:18,subtop:[227,229,233,392,395],subtopic_separator_char:229,subtract:[30,110,117,168,357],subturn:147,subwai:94,subword:496,suc:85,succe:[85,125,139,140,147,273,296,347],succeed:[28,114,227,274,347],success:[0,85,130,141,142,146,147,175,179,208,227,236,287,296,312,313,314,315,316,347,368,375,376,398,406,414,420,424,470,478,490,496],success_messag:[296,297],success_teleport_msg:376,success_teleport_to:376,success_url:[540,542],successfuli:[103,296,309],successfulli:[4,5,23,54,103,136,144,154,170,203,208,296,297,298,309,333,375,402,414,420,432,464,470,547],suddenli:[1,8,470],sudo:[187,192,193,195,199],sue:141,suffic:[18,135,161],suffici:[67,75,197],suffix:[8,20,30,473,483,489,496,522],suggest:[0,1,28,29,31,48,74,75,110,113,118,119,121,140,141,142,143,153,183,197,214,229,287,297,354,358,376,395,402,496],suggestion_cutoff:229,suggestion_maxnum:[229,395],suggests:31,suid:201,suit:[0,2,5,112,122,143,155,171,233,496,545],suitabl:[12,23,30,33,36,42,46,50,65,68,109,116,117,118,121,122,125,126,130,135,152,153,195,197,210,215,227,279,296,341,398,454,461,476,480,483],sum:[116,118,125,131,167,169,216,280],summar:[96,117,118,126,181],summari:[50,61,94,95,96,118,125,127,175,181,202,203,245],summer:[90,141,142,320],sun:[116,163],sunris:163,sunt:29,super_long_text:481,superclass:504,superfici:[104,353],superflu:[12,495],supersus:398,superus:[7,10,13,15,16,24,33,50,57,78,81,94,107,113,123,124,125,128,132,133,134,135,142,144,152,153,162,166,170,179,183,190,193,194,201,208,210,211,221,232,236,290,326,374,397,398,402,407,420,470,474,476,504],supplement:28,suppli:[7,14,20,28,31,32,34,41,42,44,46,47,49,54,58,68,88,90,94,110,118,134,142,147,162,175,189,201,211,216,217,220,222,227,232,233,237,245,251,255,320,341,350,358,400,401,402,406,410,415,431,461,470,478,483,484,493,496],supporst:447,support:[0,6,13,14,19,23,27,28,30,31,32,35,36,41,42,59,60,61,62,63,64,65,67,70,75,82,83,84,87,90,94,102,114,116,117,118,119,121,122,123,124,125,131,134,135,137,140,141,142,143,159,160,161,162,166,169,175,176,182,183,186,191,192,195,197,198,199,201,202,203,208,219,228,229,232,248,251,264,270,274,279,293,320,342,347,359,397,402,406,407,415,425,433,434,435,436,440,442,443,444,445,447,449,460,468,473,477,480,481,482,483,493,494,496,499,528,544,548],supports_set:[32,425],suppos:[1,23,28,41,49,65,96,130,208,245],supposedli:[104,187,353,444],suppress:[184,442],suppress_ga:[205,206,416,428],suppressga:442,supress:442,sur:181,sure:[0,4,6,8,9,10,11,12,13,14,15,16,17,19,21,23,28,31,33,36,37,39,41,42,44,46,47,48,49,50,51,53,55,57,64,67,70,74,76,89,96,98,104,110,111,116,119,123,124,125,128,130,133,134,135,138,140,141,142,143,144,146,147,151,152,153,154,155,156,159,161,162,163,166,169,170,172,175,176,178,179,180,182,183,187,188,189,190,191,192,193,195,196,197,201,203,208,209,215,216,217,219,222,230,237,245,262,279,290,296,315,342,353,354,358,363,374,375,376,382,386,390,393,397,398,402,406,407,412,420,424,430,432,437,458,464,465,466,469,470,473,475,477,480,487,492,493,495,496,505,512,514,537,545,547],surfac:[113,117,162,167,199,279],surpris:[14,33,80,135,157,164,169],surround:[21,23,30,72,98,113,116,147,170,220,284,342,374,492,496],surviv:[0,14,20,21,27,28,30,34,42,44,47,110,133,147,154,176,201,209,216,232,245,293,358,400,409,410,411,415,476,478,480,496],survivor:142,suscept:[20,160,398],suspect:178,suspend:[9,192,199],suspici:28,suspicion:178,svn:[0,69],swallow:[172,425,429,495],swam:[499,501],swap:[0,10,24,26,51,60,90,222,306,320,470,478],swap_autoind:478,swap_object:470,swap_typeclass:[48,208,470],swapcas:473,swapper:470,swedish:64,sweep:42,swiftli:54,swim:[499,501],swing:[23,134,154,155,167],switch1:72,switch2:72,switch_map:222,switch_opt:[219,220,221,222,227,228,229,230,232,270,320],sword:[14,23,49,67,77,85,94,110,117,125,128,130,137,138,141,142,144,146,154,168,205,206,239,279,285,287,295,296,298,354,358,400,407,493,496],swordbladerecip:297,swordguardrecip:297,swordhandlerecip:297,swordmanship:141,swordpommelrecip:297,swordrecip:[296,297],swordsmithingbaserecip:297,swum:[499,501],sylliaa:75,symbol:[9,16,17,23,69,115,116,130,159,191,201,234,333,336,339,341,342,344,354,390,481],symlink:[119,195],symlinkorcopi:75,symmetr:482,symmetri:10,sync:[12,44,52,65,122,201,341,342,343,409,438,443,458,459,460,461,468,477],sync_node_to_grid:342,sync_port:461,syncdata:[460,461],syncdb:10,synchron:[61,201,489],syntact:[398,496],syntax:[0,2,8,12,15,16,17,23,28,33,60,72,78,80,91,94,95,102,114,117,121,128,133,152,155,162,163,169,175,179,183,201,205,206,217,221,222,229,230,233,245,274,277,296,320,347,384,398,402,420,432,459,468,470,472,473,548],syntaxerror:135,sys:[201,544],sys_cmd:215,syscmdkei:[23,120,201,205],syscommand:[205,206,212,218,402],syslog:[76,380],sysroot:191,system:[0,1,3,4,7,8,10,11,12,13,14,19,20,21,24,26,32,34,35,36,39,41,42,44,45,46,47,48,53,54,57,61,62,64,65,67,69,72,74,76,80,81,86,89,95,96,101,111,113,116,117,118,119,120,121,122,123,124,125,127,131,132,133,135,138,139,144,145,151,152,154,155,157,158,159,160,163,166,168,170,174,176,177,179,181,183,187,190,191,193,195,197,199,200,201,203,205,206,209,211,212,213,215,217,218,219,221,222,229,231,233,235,236,237,238,241,245,255,259,260,261,262,264,279,287,288,290,296,297,298,302,303,306,309,311,312,313,314,315,316,333,339,340,341,342,344,353,354,355,373,376,380,381,382,390,391,392,394,397,398,401,402,404,406,407,408,420,443,449,457,467,470,474,476,479,480,483,489,500,504,522,548],system_command:23,systemat:157,systemctl:182,systemd:187,systemmultimatch:231,systemnoinput:231,systemnomatch:231,tab:[0,1,4,9,16,51,52,60,124,125,135,136,143,156,164,201,473,482,495],tabl:[0,8,11,15,17,48,58,60,61,68,70,78,94,95,96,98,120,122,123,125,130,137,162,164,167,170,179,201,217,219,227,229,232,384,444,463,473,479,481,482,483,493,496,548],table_char:479,table_format:219,table_lin:482,table_str:162,tablea:479,tableb:479,tablechar:[162,479],tableclos:[68,444],tablecol:482,tableopen:[68,444],tablet:56,tabletop:[112,117,146,162,181,312,316],tabsiz:[473,482],tabstop:495,tabularinlin:[505,512],tack:[128,216],tackl:118,tactic:[142,146,147],taction:147,tag:[0,15,19,23,24,26,28,31,32,35,36,39,41,42,48,50,51,52,53,55,60,61,64,67,68,74,82,85,92,103,104,116,117,124,125,126,128,130,135,151,161,162,165,179,184,192,201,205,206,210,217,219,220,221,222,227,228,229,230,231,232,233,234,236,237,238,245,248,255,259,270,273,274,277,279,280,287,290,296,297,300,303,306,309,312,313,314,315,316,320,326,329,335,342,344,347,354,358,368,370,373,374,375,376,380,384,386,390,393,394,395,397,400,402,406,407,409,435,449,451,457,467,469,470,473,476,478,479,480,481,482,493,494,496,502,503,504,506,508,509,510,516,519,548],tag_all_charact:280,tag_categori:512,tag_charact:280,tag_data:512,tag_kei:512,tag_typ:[512,516],tagadmin:512,tagcategori:[279,280],tagcount:130,taget_map_xyz:342,tagform:512,tagformset:[505,512],taghandl:[0,46,48,471,512],taginlin:[504,506,508,509,510,512],tagkei:[397,400,471,476],taglin:18,tagnam:407,tagseri:519,tagshandl:519,tagstr:[407,471],tagtyp:[46,469,471,493,516],tagtypefilt:516,tail:[132,190,192,197,420,489],tail_log_fil:[420,489],tail_log_funct:489,tailor:[123,164,536],take:[0,1,6,9,10,15,16,17,18,19,20,21,23,28,29,30,32,33,39,41,44,48,54,56,57,60,62,64,65,69,76,80,85,86,89,91,94,95,96,98,105,111,113,116,117,118,119,121,122,123,124,125,127,128,132,133,134,135,138,139,141,142,143,144,145,147,148,149,150,151,152,153,154,155,159,160,161,162,163,164,165,168,169,170,174,175,176,178,179,181,191,197,199,200,208,209,214,215,219,231,236,238,251,254,277,282,284,287,290,296,309,312,313,314,315,316,320,326,329,335,339,354,368,373,374,376,380,384,386,390,398,407,440,448,451,460,461,469,470,473,478,479,480,481,483,490,494,496,497,500],taken:[1,21,122,136,147,160,173,174,175,190,199,228,255,312,380,393,402,440,464,473,476],takeov:462,tale:149,talk:[12,20,23,28,52,62,95,104,117,118,125,135,139,142,143,162,169,183,197,201,227,228,270,287,353,354,369,370,371,376,417,500,548],talker:121,talki:[19,122,142],talking_npc:[109,205,206,239,359,548],talkingcmdset:370,talkingnpc:[109,370],tall:[0,58,72,104,141,142,228,354],tallman:228,tan:297,tang:[126,297],tannin:297,tantal:16,tap:[76,117],target1:315,target2:315,target:[0,10,12,23,35,58,62,68,83,87,90,104,111,116,117,126,128,134,135,142,144,146,147,151,152,153,154,155,156,162,175,199,201,208,217,222,227,228,232,236,238,277,279,282,290,297,303,312,313,314,315,316,320,333,335,336,339,341,342,347,374,390,400,402,411,469,473,476,480,496],target_fire_damag:297,target_flag:279,target_loc:[280,329,333,376,402],target_map_xyz:[116,336,339,342],target_obj:398,target_path_styl:341,targetlist:303,task:[0,3,7,19,20,26,42,46,62,94,96,132,169,187,203,232,233,259,261,335,390,414,415,496],task_handl:[205,414,496],task_id:[232,261,414],taskhandl:[0,205,206,408,496],taskhandlertask:[414,496],tast:[80,138,143,178],tasti:296,tavern:[104,354],tax:[7,191],taylor:[0,181],tb_basic:[0,112,205,206,239,285,311,313,314,315,316],tb_equip:[0,112,205,206,239,285,311],tb_filenam:474,tb_item:[0,112,205,206,239,285,311],tb_iter:474,tb_magic:[0,112,205,206,239,285,311],tb_rang:[0,112,205,206,239,285,311],tbbasiccharact:[312,313,314,315,316],tbbasicturnhandl:[312,313,314,315,316],tbearmor:313,tbequipcharact:313,tbequipturnhandl:313,tbeweapon:313,tbitemscharact:314,tbitemscharactertest:314,tbitemsturnhandl:314,tbmagiccharact:315,tbmagicturnhandl:315,tbodi:179,tbrangecharact:316,tbrangeobject:316,tbrangeturnhandl:316,tchar:147,tcp:199,tcpserver:[62,465],teach:[117,143,165],team:[3,12,23,31,69,122,140,142,143],teamciti:3,teardown:[10,233,252,262,283,298,317,339,355,357,364,446,494,520],teardown_account:494,teardown_sess:494,teaser:197,tech:[125,127,139,143,145,148,150,181],technic:[24,28,46,48,54,57,58,60,62,64,65,69,116,122,123,124,128,140,143,157,183,197,205,206,239,287,359,367,468,548],techniqu:[142,144,155,473],technolog:142,tediou:[9,170],teenag:[152,199],tehom:[0,124,130],tehomcd:124,tel:[26,55,96,126,162,169,174,222,335],telepath:142,telephathi:19,teleport:[0,16,26,55,74,117,128,138,162,168,222,228,335,339,342,376,474],teleport_her:[0,222],teleportermaplink:[116,342],teleportmaplink:116,teleportroom:376,televis:21,tell:[0,1,5,6,8,11,12,14,15,21,23,26,28,32,33,35,36,39,41,42,54,55,57,64,65,67,73,76,80,85,87,89,94,95,96,104,126,128,132,133,134,135,136,142,146,147,149,152,155,159,162,164,169,171,174,177,179,182,183,191,192,197,199,201,203,209,219,227,228,238,342,347,354,376,402,420,438,449,461,478,545],telnet:[0,7,17,44,51,52,59,62,65,71,121,122,124,125,135,153,156,181,190,191,192,193,199,201,203,205,206,229,232,416,428,433,434,435,436,440,441,442,444,445,447,451,459,460,495],telnet_:197,telnet_en:201,telnet_hostnam:[185,201],telnet_interfac:[197,201],telnet_oob:[68,205,206,416,428],telnet_oob_en:201,telnet_port:[4,7,124,132,185,197,201,452],telnet_protocol_class:201,telnet_ssl:[205,206,416,428],telnetoob:444,telnetprotocol:[201,441,443,445],telnetserverfactori:443,temp:238,tempat:384,templ:[98,113],templat:[0,12,13,20,21,24,36,41,45,48,49,50,51,52,53,73,111,122,123,132,136,142,149,151,166,175,179,190,200,201,205,206,227,228,230,236,373,384,402,420,449,459,460,468,472,479,525,529,534,544,545,547],template2menu:[28,480],template_nam:[53,540,541,542,544,545,547],template_overrid:[0,51,73,123,132,151],template_regex:468,template_rend:45,template_str:[28,36],templates_overrid:73,templatestr:479,templatetag:[205,206,502],templateview:[53,545],tempmsg:[24,238],temporari:[10,12,14,24,138,201,203,216,238,264,312,415,480],temporarili:[1,8,10,19,21,28,42,52,110,128,133,141,197,227,232,261,296,309,358,368],tempt:[30,133,135,140,200,220],ten:[155,170,197],tend:[7,8,67,72,104,122,142,146,161,174,197,199,222,353,380],tens:[499,501],tent:170,term:[0,21,31,54,64,96,122,125,132,133,134,143,163,164,169,176,197,217,279,386,463],term_siz:[0,6,205],termin:[0,1,6,7,8,9,12,20,53,60,111,116,119,122,123,125,126,135,136,175,176,183,190,191,192,193,195,197,199,203,205,232,260,312,390,419,420,440,447,463,545],terminalrealm:440,terminals:440,terminalsessiontransport:440,terminalsessiontransport_getp:440,termux:202,terrain:[159,342],terribl:[314,433],territori:201,ters:42,test1:[14,32,482],test2010:126,test2028:126,test2:[14,23,32,60],test3:[14,482],test4:[14,482],test5:14,test6:14,test7:14,test8:14,test:[0,2,3,4,5,6,9,12,14,15,16,17,18,21,23,27,28,30,31,32,33,37,39,41,42,45,47,51,53,54,57,76,78,79,80,81,85,91,95,96,103,112,117,118,119,125,127,128,130,134,136,140,142,143,144,147,148,152,153,155,160,162,163,164,166,168,169,170,173,177,178,181,183,184,186,187,189,191,193,195,196,197,198,201,205,206,210,212,214,218,219,221,229,232,239,240,241,244,247,250,253,257,265,269,272,275,276,285,286,289,290,292,295,296,297,299,302,305,308,311,312,313,314,315,316,318,319,320,322,325,328,331,334,341,345,346,347,349,352,356,359,362,363,369,372,373,378,379,384,385,388,390,406,416,422,425,428,429,449,450,451,455,470,472,473,474,476,480,485,494,496,498,502,515,526,535,544,548],test_:10,test_about:233,test_accept:262,test_access:233,test_active_task:233,test_add:[262,294],test_add_choice_without_kei:246,test_add_float:294,test_add_multi:294,test_add_neg:294,test_add_non:294,test_add_overwrit:294,test_add_trait:357,test_add_valid:262,test_al:357,test_all_com:271,test_all_st:283,test_alternative_cal:10,test_amp_in:446,test_amp_out:446,test_at_repeat:364,test_attribute_command:233,test_audit:382,test_auto_creating_bucket:243,test_auto_creating_bucket_with_acl:243,test_available_languag:355,test_ban:233,test_base_pars:283,test_base_search:283,test_base_st:283,test_batch_command:233,test_bold:446,test_boundaries__bigmod:357,test_boundaries__change_boundari:357,test_boundaries__dis:357,test_boundaries__invers:357,test_boundaries__minmax:357,test_bridgeroom:377,test_build:339,test_c_creates_button:456,test_c_creates_obj:456,test_c_dig:456,test_c_examin:456,test_c_help:456,test_c_login:456,test_c_login_no_dig:456,test_c_logout:456,test_c_look:456,test_c_mov:456,test_c_move_:456,test_c_move_n:456,test_c_soci:456,test_cach:357,test_cal:[233,262],test_callback:246,test_cancel:233,test_cas:10,test_cboot:271,test_cdesc:271,test_cdestroi:271,test_channel__al:233,test_channel__alias__unalia:233,test_channel__ban__unban:233,test_channel__boot:233,test_channel__cr:233,test_channel__desc:233,test_channel__destroi:233,test_channel__histori:233,test_channel__list:233,test_channel__lock:233,test_channel__msg:233,test_channel__mut:233,test_channel__noarg:233,test_channel__sub:233,test_channel__unlock:233,test_channel__unmut:233,test_channel__unsub:233,test_channel__who:233,test_char_cr:233,test_char_delet:233,test_clean_nam:243,test_clean_name_norm:243,test_clean_name_trailing_slash:243,test_clean_name_window:243,test_cleanup:294,test_cleanup_doesnt_delete_anyth:294,test_clear:[294,357],test_climb:377,test_clock:271,test_clothingcommand:291,test_clothingfunct:291,test_cmd_armpuzzl:310,test_cmd_puzzl:310,test_cmd_us:310,test_cmddic:348,test_cmdextendedlook:321,test_cmdgametim:321,test_cmdmultidesc:307,test_cmdopen:327,test_cmdset_puzzl:310,test_cmdsetdetail:321,test_cmdtrad:288,test_cmdtradehelp:288,test_cmdtutori:377,test_color:446,test_color_test:233,test_command:355,test_comparisons_numer:357,test_comparisons_trait:357,test_compress_content_len:243,test_connect:256,test_connection_thread:243,test_content_typ:243,test_copi:233,test_craft__nocons__failur:298,test_craft__notools__failur:298,test_craft__success:298,test_craft_cons_excess__fail:298,test_craft_cons_excess__sucess:298,test_craft_cons_order__fail:298,test_craft_hook__fail:298,test_craft_hook__succe:298,test_craft_missing_cons__always_consume__fail:298,test_craft_missing_cons__fail:298,test_craft_missing_tool__fail:298,test_craft_sword:298,test_craft_tool_excess__fail:298,test_craft_tool_excess__sucess:298,test_craft_tool_order__fail:298,test_craft_wrong_tool__fail:298,test_creat:[233,520],test_create_wilderness_custom_nam:332,test_create_wilderness_default_nam:332,test_crumblingwal:377,test_curly_markup:249,test_curr:357,test_custom_gametim:252,test_cwho:271,test_darkroom:377,test_data_in:446,test_data_out:446,test_db_path:201,test_del:262,test_delet:[357,520],test_desc:[233,357],test_desc_default_to_room:233,test_destroi:233,test_destroy_sequ:233,test_dig:233,test_do_nested_lookup:233,test_do_task:233,test_e2:310,test_e2e_accumul:310,test_e2e_interchangeable_parts_and_result:310,test_echo:494,test_edit:262,test_edit_valid:262,test_emit:233,test_emot:283,test_empti:294,test_empty_desc:233,test_enter_wild:332,test_enter_wilderness_custom_coordin:332,test_enter_wilderness_custom_nam:332,test_error_format:298,test_examin:233,test_exit:[262,330],test_exit_command:233,test_extend:294,test_extend_float:294,test_extend_neg:294,test_extend_non:294,test_extended_path_tracking__horizont:339,test_extended_path_tracking__vert:339,test_failur:273,test_faulty_languag:355,test_field_funct:389,test_find:233,test_floordiv:357,test_focu:283,test_focus_interact:283,test_forc:233,test_func_name_manipul:233,test_gametime_to_realtim:252,test_gendercharact:301,test_gener:387,test_general_context:531,test_generated_url_is_encod:243,test_get:[357,537],test_get_and_drop:233,test_get_authent:537,test_get_dis:537,test_get_new_coordin:332,test_get_shortest_path:339,test_get_visual_range__nodes__charact:339,test_get_visual_range__nodes__character_0:339,test_get_visual_range__nodes__character_1:339,test_get_visual_range__nodes__character_2:339,test_get_visual_range__nodes__character_3:339,test_get_visual_range__nodes__character_4:339,test_get_visual_range__nodes__character_5:339,test_get_visual_range__nodes__character_6:339,test_get_visual_range__nodes__character_7:339,test_get_visual_range__nodes__character_8:339,test_get_visual_range__nodes__character_9:339,test_get_visual_range__scan:339,test_get_visual_range__scan_0:339,test_get_visual_range__scan_1:339,test_get_visual_range__scan_2:339,test_get_visual_range__scan_3:339,test_get_visual_range__scan__charact:339,test_get_visual_range__scan__character_0:339,test_get_visual_range__scan__character_1:339,test_get_visual_range__scan__character_2:339,test_get_visual_range__scan__character_3:339,test_get_visual_range_with_path:339,test_get_visual_range_with_path_0:339,test_get_visual_range_with_path_1:339,test_get_visual_range_with_path_2:339,test_get_visual_range_with_path_3:339,test_get_visual_range_with_path_4:339,test_giv:233,test_grid_cr:339,test_grid_creation_0:339,test_grid_creation_1:339,test_grid_pathfind:339,test_grid_pathfind_0:339,test_grid_pathfind_1:339,test_grid_vis:339,test_grid_visibility_0:339,test_grid_visibility_1:339,test_handl:262,test_healthbar:351,test_hello_world:136,test_help:233,test_hom:233,test_ic:233,test_ic__nonaccess:233,test_ic__other_object:233,test_ident:446,test_idl:456,test_info_command:233,test_init:357,test_interrupt_command:233,test_introroom:377,test_invalid_access:537,test_inventori:233,test_ital:446,test_large_msg:446,test_lightsourc:377,test_list:[262,520],test_list_cmdset:233,test_load_recip:298,test_location_leading_slash:243,test_location_search:10,test_lock:[233,262],test_lock_with_perm:537,test_locked_entri:537,test_look:[233,283],test_lspuzzlerecipes_lsarmedpuzzl:310,test_mail:304,test_mapping_with_opt:501,test_mapping_with_options_00_y:501,test_mapping_with_options_01_y:501,test_mapping_with_options_02_i:501,test_mapping_with_options_03_i:501,test_mapping_with_options_04_i:501,test_mapping_with_options_05_m:501,test_mapping_with_options_06_your:501,test_mapping_with_options_07_our:501,test_mapping_with_options_08_yourself:501,test_mapping_with_options_09_yourself:501,test_mapping_with_options_10_yourself:501,test_mapping_with_options_11_yourself:501,test_mapping_with_options_12_yourselv:501,test_mapping_with_options_13_h:501,test_mapping_with_options_14_h:501,test_mapping_with_options_15_h:501,test_mapping_with_options_16_h:501,test_mapping_with_options_17_h:501,test_mapping_with_options_18_their:501,test_mapping_with_options_19_their:501,test_mapping_with_options_20_itself:501,test_mapping_with_options_21_themselv:501,test_mapping_with_options_22_herself:501,test_mask:382,test_memplot:456,test_menu:[111,390],test_messag:457,test_misformed_command:233,test_mob:377,test_msg:298,test_mudlet_ttyp:446,test_mul_trait:357,test_multi_level:246,test_multimatch:233,test_mux_command:233,test_mux_markup:249,test_mycmd_char:10,test_mycmd_room:10,test_nam:233,test_nested_attribute_command:233,test_new_task_waiting_input:233,test_nick:233,test_no_input:233,test_no_task:233,test_node_from_coord:339,test_obelisk:377,test_obfuscate_languag:355,test_obfuscate_whisp:355,test_object:233,test_object_cach:537,test_object_search_charact:10,test_ooc:233,test_ooc_look:233,test_opt:233,test_ordered_permutation_regex:355,test_outroroom:377,test_override_class_vari:243,test_override_init_argu:243,test_overwrit:283,test_pag:233,test_parse_for_perspect:283,test_parse_for_th:283,test_parse_languag:355,test_password:233,test_path:339,test_paths_0:339,test_paths_1:339,test_pause_unpaus:233,test_percentag:357,test_perm:233,test_persistent_task:233,test_pi:233,test_pickle_with_bucket:243,test_pickle_without_bucket:243,test_plain_ansi:446,test_pos:233,test_pos_shortcut:357,test_pre_craft:298,test_pre_craft_fail:298,test_puzzleedit:310,test_puzzleedit_add_remove_parts_result:310,test_quel:233,test_queri:[205,206,416,450],test_quit:[233,246,256],test_read:377,test_real_seconds_until:252,test_realtime_to_gametim:252,test_recog_handl:355,test_regex_tuple_from_key_alia:355,test_remov:[233,357],test_repr:357,test_reset:294,test_reset_non_exist:294,test_resourc:[10,201,205,206,233,246,249,252,256,262,271,273,283,288,291,294,298,301,304,307,310,317,321,327,330,332,339,348,351,355,357,364,371,377,382,387,389,446,472,520,537],test_responce_of_y:233,test_retriev:520,test_return_appear:321,test_return_detail:321,test_return_valu:10,test_roll_dic:348,test_room_cr:332,test_room_method:283,test_rpsearch:355,test_runn:201,test_sai:233,test_schedul:252,test_script:233,test_script_multi_delet:233,test_sdesc_handl:355,test_seed__success:298,test_send_case_sensitive_emot:355,test_send_emot:355,test_send_random_messag:364,test_server_load:233,test_sess:233,test_set:357,test_set_attribut:520,test_set_focu:283,test_set_help:233,test_set_hom:233,test_set_obj_alia:233,test_setattr:246,test_setgend:301,test_shortest_path:339,test_shortest_path_00:339,test_shortest_path_01:339,test_shortest_path_02:339,test_shortest_path_03:339,test_shortest_path_04:339,test_shortest_path_05:339,test_shortest_path_06:339,test_shortest_path_07:339,test_shortest_path_08:339,test_shortest_path_09:339,test_shortest_path_0:339,test_shortest_path_10:339,test_shortest_path_1:339,test_shortest_path_2:339,test_shortest_path_3:339,test_shortest_path_4:339,test_shortest_path_5:339,test_shortest_path_6:339,test_shortest_path_7:339,test_shortest_path_8:339,test_shortest_path_9:339,test_simple_default:233,test_spawn:[233,339],test_special_charact:243,test_speech:283,test_split_nested_attr:233,test_start:262,test_storage_delet:243,test_storage_exist:243,test_storage_exists_doesnt_create_bucket:243,test_storage_exists_fals:243,test_storage_listdir_bas:243,test_storage_listdir_subdir:243,test_storage_mtim:243,test_storage_open_no_overwrite_exist:243,test_storage_open_no_writ:243,test_storage_open_writ:243,test_storage_s:243,test_storage_sav:243,test_storage_save_gzip:243,test_storage_save_gzip_twic:243,test_storage_save_with_acl:243,test_storage_url:243,test_storage_url_slash:243,test_storage_write_beyond_buffer_s:243,test_str_output:339,test_strip_signing_paramet:243,test_sub_trait:357,test_submenu:246,test_subtopic_fetch:233,test_subtopic_fetch_00_test:233,test_subtopic_fetch_01_test_creating_extra_stuff:233,test_subtopic_fetch_02_test_cr:233,test_subtopic_fetch_03_test_extra:233,test_subtopic_fetch_04_test_extra_subsubtop:233,test_subtopic_fetch_05_test_creating_extra_subsub:233,test_subtopic_fetch_06_test_something_els:233,test_subtopic_fetch_07_test_mor:233,test_subtopic_fetch_08_test_more_second_mor:233,test_subtopic_fetch_09_test_more_mor:233,test_subtopic_fetch_10_test_more_second_more_again:233,test_subtopic_fetch_11_test_more_second_third:233,test_success:273,test_tag:233,test_talkingnpc:371,test_task_complete_waiting_input:233,test_tbbasicfunc:317,test_tbequipfunc:317,test_tbitemsfunc:317,test_tbrangefunc:317,test_teleport:233,test_teleportroom:377,test_time_to_tupl:252,test_timer_r:357,test_timer_ratetarget:357,test_toggle_com:271,test_tradehandler_bas:288,test_tradehandler_join:288,test_tradehandler_off:288,test_trait_db_connect:357,test_trait_getset:357,test_traitfield:357,test_tree_funct:389,test_tunnel:233,test_tunnel_exit_typeclass:233,test_turnbattlecmd:317,test_turnbattleequipcmd:317,test_turnbattleitemcmd:317,test_turnbattlemagiccmd:317,test_turnbattlerangecmd:317,test_tutorialobj:377,test_typeclass:233,test_unconnectedhelp:256,test_unconnectedlook:256,test_upd:520,test_valid_access:537,test_valid_access_multisession_0:537,test_valid_access_multisession_2:537,test_valid_char:537,test_validate_input__fail:357,test_validate_input__valid:357,test_valu:357,test_verb_actor_stance_compon:501,test_verb_actor_stance_components_00_hav:501,test_verb_actor_stance_components_01_swim:501,test_verb_actor_stance_components_02_g:501,test_verb_actor_stance_components_03_given:501,test_verb_actor_stance_components_04_am:501,test_verb_actor_stance_components_05_do:501,test_verb_actor_stance_components_06_ar:501,test_verb_actor_stance_components_07_had:501,test_verb_actor_stance_components_08_grin:501,test_verb_actor_stance_components_09_smil:501,test_verb_actor_stance_components_10_vex:501,test_verb_actor_stance_components_11_thrust:501,test_verb_conjug:501,test_verb_conjugate_0_inf:501,test_verb_conjugate_1_inf:501,test_verb_conjugate_2_inf:501,test_verb_conjugate_3_inf:501,test_verb_conjugate_4_inf:501,test_verb_conjugate_5_inf:501,test_verb_conjugate_6_inf:501,test_verb_conjugate_7_2sgpr:501,test_verb_conjugate_8_3sgpr:501,test_verb_get_all_tens:501,test_verb_infinit:501,test_verb_infinitive_0_hav:501,test_verb_infinitive_1_swim:501,test_verb_infinitive_2_g:501,test_verb_infinitive_3_given:501,test_verb_infinitive_4_am:501,test_verb_infinitive_5_do:501,test_verb_infinitive_6_ar:501,test_verb_is_past:501,test_verb_is_past_0_1st:501,test_verb_is_past_1_1st:501,test_verb_is_past_2_1st:501,test_verb_is_past_3_1st:501,test_verb_is_past_4_1st:501,test_verb_is_past_5_1st:501,test_verb_is_past_6_1st:501,test_verb_is_past_7_2nd:501,test_verb_is_past_participl:501,test_verb_is_past_participle_0_hav:501,test_verb_is_past_participle_1_swim:501,test_verb_is_past_participle_2_g:501,test_verb_is_past_participle_3_given:501,test_verb_is_past_participle_4_am:501,test_verb_is_past_participle_5_do:501,test_verb_is_past_participle_6_ar:501,test_verb_is_past_participle_7_had:501,test_verb_is_pres:501,test_verb_is_present_0_1st:501,test_verb_is_present_1_1st:501,test_verb_is_present_2_1st:501,test_verb_is_present_3_1st:501,test_verb_is_present_4_1st:501,test_verb_is_present_5_1st:501,test_verb_is_present_6_1st:501,test_verb_is_present_7_1st:501,test_verb_is_present_participl:501,test_verb_is_present_participle_0_hav:501,test_verb_is_present_participle_1_swim:501,test_verb_is_present_participle_2_g:501,test_verb_is_present_participle_3_given:501,test_verb_is_present_participle_4_am:501,test_verb_is_present_participle_5_do:501,test_verb_is_present_participle_6_ar:501,test_verb_is_tens:501,test_verb_is_tense_0_inf:501,test_verb_is_tense_1_inf:501,test_verb_is_tense_2_inf:501,test_verb_is_tense_3_inf:501,test_verb_is_tense_4_inf:501,test_verb_is_tense_5_inf:501,test_verb_is_tense_6_inf:501,test_verb_past:501,test_verb_past_0_1st:501,test_verb_past_1_1st:501,test_verb_past_2_1st:501,test_verb_past_3_1st:501,test_verb_past_4_1st:501,test_verb_past_5_1st:501,test_verb_past_6_1st:501,test_verb_past_7_2nd:501,test_verb_past_participl:501,test_verb_past_participle_0_hav:501,test_verb_past_participle_1_swim:501,test_verb_past_participle_2_g:501,test_verb_past_participle_3_given:501,test_verb_past_participle_4_am:501,test_verb_past_participle_5_do:501,test_verb_past_participle_6_ar:501,test_verb_pres:501,test_verb_present_0_1st:501,test_verb_present_1_1st:501,test_verb_present_2_1st:501,test_verb_present_3_1st:501,test_verb_present_4_1st:501,test_verb_present_5_1st:501,test_verb_present_6_1st:501,test_verb_present_7_2nd:501,test_verb_present_8_3rd:501,test_verb_present_participl:501,test_verb_present_participle_0_hav:501,test_verb_present_participle_1_swim:501,test_verb_present_participle_2_g:501,test_verb_present_participle_3_given:501,test_verb_present_participle_4_am:501,test_verb_present_participle_5_do:501,test_verb_present_participle_6_ar:501,test_verb_tens:501,test_verb_tense_0_hav:501,test_verb_tense_1_swim:501,test_verb_tense_2_g:501,test_verb_tense_3_given:501,test_verb_tense_4_am:501,test_verb_tense_5_do:501,test_verb_tense_6_ar:501,test_view:537,test_wal:233,test_weapon:377,test_weaponrack:377,test_weatherroom:377,test_whisp:233,test_who:233,test_wilderness_correct_exit:332,test_without_migr:10,test_wrong_func_nam:233,testaccount2:10,testaccount:[10,233],testadmin:233,testampserv:446,testapp:178,testbart:288,testbatchprocess:233,testbodyfunct:364,testbuild:233,testbuildexamplegrid:339,testbuildingmenu:246,testcas:[10,243,339,377,446,456,488,494,501,531],testclothingcmd:291,testclothingfunc:291,testcmdcallback:262,testcmdtask:233,testcolormarkup:249,testcomm:233,testcommand:28,testcommschannel:233,testcooldown:294,testcraftcommand:298,testcraftingrecip:298,testcraftingrecipebas:298,testcraftsword:298,testcraftutil:298,testcustomgametim:252,testdefaultcallback:262,testdic:348,testdummyrunnerset:456,testemaillogin:256,tester:[10,130,197,438],testevenniarestapi:520,testeventhandl:262,testevscaperoom:283,testevscaperoomcommand:283,testextendedroom:321,testfieldfillfunc:389,testform:479,testgendersub:301,testgener:233,testgeneralcontext:531,testhealthbar:351,testhelp:233,testid:23,testinterruptcommand:233,testirc:446,testlanguag:355,testlegacymuxcomm:271,testmail:304,testmap10:339,testmap11:339,testmap1:339,testmap2:339,testmap3:339,testmap4:339,testmap5:339,testmap6:339,testmap7:339,testmap8:339,testmap9:339,testmapstresstest:339,testmemplot:456,testmenu:[384,480],testmixedrefer:488,testmod:461,testmultidesc:307,testmymodel:10,testnnmain:233,testnumerictraitoper:357,testobj:[10,282,284],testobject:10,testobjectdelet:488,testok:169,testpronounmap:501,testpuzzl:310,testrandomstringgener:387,testregularrefer:488,testrenam:126,testrpsystem:355,testrpsystemcommand:355,testrunn:201,testserv:0,testset:10,testsharedmemoryrefer:488,testsimpledoor:327,testslowexit:330,teststat:283,testsystem:233,testsystemcommand:233,testtabl:126,testtalkingnpc:371,testtelnet:446,testtrait:357,testtraitcount:357,testtraitcountertim:357,testtraitfield:357,testtraitgaug:357,testtraitgaugetim:357,testtraitstat:357,testtreeselectfunc:389,testturnbattlebasiccmd:317,testturnbattlebasicfunc:317,testturnbattleequipcmd:317,testturnbattleequipfunc:317,testturnbattleitemscmd:317,testturnbattleitemsfunc:317,testturnbattlemagiccmd:317,testturnbattlemagicfunc:317,testturnbattlerangecmd:317,testturnbattlerangefunc:317,testtutorialworldmob:377,testtutorialworldobject:377,testtutorialworldroom:377,testunconnectedcommand:233,testunixcommand:273,testutil:283,testverbconjug:501,testview:53,testwebsocket:446,testwild:332,testxyzgrid:339,testxyzgridtransit:339,text2html:[205,206,472],text:[0,1,8,12,13,14,15,16,17,18,19,23,24,25,26,27,29,30,31,33,35,36,39,41,42,46,51,53,54,58,59,60,62,64,65,67,68,69,80,89,90,91,92,93,95,96,104,110,116,117,118,120,121,124,125,127,128,132,134,136,138,139,141,142,143,144,146,150,152,156,160,161,162,166,168,169,170,172,174,175,176,178,180,181,184,187,189,192,193,195,197,198,201,203,208,209,214,217,219,220,221,222,227,228,229,230,231,232,233,234,237,238,245,254,255,259,261,270,273,274,277,278,279,284,287,290,296,297,300,303,306,309,312,313,314,315,316,320,326,329,335,347,350,353,354,358,366,368,370,374,375,376,381,384,390,392,394,395,398,402,404,407,410,417,418,425,431,432,435,438,439,440,443,444,448,449,451,459,460,461,464,465,468,469,471,473,474,476,478,479,480,481,482,483,490,493,494,495,496,497,504,506,510,536,548],text_:119,text_color:350,text_descript:[110,358],text_exit:[80,245],text_single_exit:80,textarea:[492,536],textbook:62,textbox:536,textfield:[67,178],textn:233,textstr:32,texttag:[166,176],texttohtmlpars:495,textual:157,textwrap:[0,482],textwrapp:482,than:[0,1,6,7,8,9,10,11,12,13,14,15,16,19,21,23,24,25,28,29,30,31,33,37,39,41,42,44,46,47,48,51,53,56,57,58,60,64,67,70,72,73,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,121,122,123,125,126,130,132,133,134,135,137,138,139,140,141,143,144,146,147,153,155,157,159,161,162,163,164,167,169,175,176,179,182,183,185,187,188,197,199,200,201,203,208,211,214,215,216,219,220,221,222,223,229,230,232,233,245,251,254,261,270,274,279,282,287,296,312,313,314,315,316,329,337,341,342,343,344,350,353,354,358,375,386,390,397,400,402,404,406,420,446,461,466,468,469,470,471,473,474,480,481,482,483,487,489,491,492,493,495,496,505,512,525,545],thank:[28,123,179,303,465],thankfulli:178,the_answ:137,the_one_r:137,thead:179,theathr:31,theatr:31,thei:[0,6,7,8,9,10,12,13,14,15,16,17,18,19,20,21,23,28,30,31,33,37,39,40,41,42,44,45,46,48,50,51,52,53,54,55,56,57,58,60,62,63,64,65,67,68,69,70,74,75,77,78,80,83,84,85,90,92,94,95,96,98,104,107,110,114,115,116,117,119,121,122,123,124,125,126,128,129,130,132,133,134,135,136,137,139,140,141,143,144,146,147,151,152,153,155,156,157,158,160,161,162,164,165,166,168,169,170,172,174,175,176,177,179,180,182,183,191,197,199,201,203,208,215,216,219,221,222,227,228,230,231,232,236,245,254,260,270,274,279,287,290,293,296,297,300,312,313,314,315,316,320,333,341,342,344,347,353,354,358,375,376,392,397,398,401,402,406,407,408,410,412,413,415,420,440,441,443,444,445,449,452,458,459,460,461,463,468,473,474,475,477,480,482,483,495,496,497,500,505,512,517,519,522,536,542,546,547],theirs:[58,92,147,300,483,500,501],them:[0,1,7,8,9,10,11,12,13,14,15,16,17,19,20,21,23,25,27,28,30,31,32,33,35,36,37,39,41,42,44,46,47,48,50,51,53,54,55,56,58,60,62,63,64,65,67,68,70,73,74,75,76,80,82,83,85,89,90,92,93,94,95,96,103,104,110,111,116,117,118,119,121,122,123,124,125,126,130,132,133,134,135,136,137,138,139,140,141,143,144,146,147,150,151,152,154,155,156,157,158,161,162,163,164,167,168,169,170,172,174,175,176,178,179,183,185,188,190,191,197,198,199,200,201,203,208,213,214,215,217,219,221,222,227,229,230,233,236,237,248,254,258,260,274,280,290,296,297,300,309,312,313,314,315,316,320,341,350,354,358,368,374,376,384,386,390,393,398,402,407,412,415,420,438,440,443,451,455,458,459,461,468,470,471,473,474,476,480,483,492,494,495,500,505,512,514,519,527,542,545,547],themat:140,theme:[0,53,132,140,142,179],themself:314,themselv:[8,14,19,21,23,28,33,37,45,48,57,58,70,74,89,94,96,104,110,117,119,121,132,141,142,144,146,152,154,159,162,164,166,168,174,175,177,189,201,222,279,342,354,402,410,413,420,469,471,483,492,500,501],theoret:[21,69,116,139,344],theori:[6,21,161,165,175,181,208,215,548],thereaft:36,therefor:[42,96,116,138,159,163,169,221,245,258,279],therein:[17,23,219,230,232,234,277,309,320,376],thereof:[354,402],thess:400,thet:132,thi:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19,20,21,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,144,145,146,147,148,149,151,152,153,154,155,156,157,158,159,160,161,162,163,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,245,246,248,249,251,254,255,258,259,260,261,264,270,274,277,278,279,280,281,282,284,287,290,293,296,297,298,300,303,306,309,312,313,314,315,316,320,326,329,333,335,336,337,338,339,341,342,343,344,347,350,353,354,357,358,363,366,368,370,373,374,375,376,380,381,384,386,390,391,392,393,394,395,396,397,398,399,400,401,402,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,422,424,425,426,427,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,447,448,449,451,452,453,454,455,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,487,488,489,490,491,492,493,494,495,496,497,499,500,502,504,505,506,508,509,510,511,512,514,516,517,519,522,525,527,528,529,533,534,536,538,540,541,542,543,544,545,546,547,548],thie:28,thieveri:229,thin:[54,80,81,155,170,290,489],thing:[0,1,2,5,7,10,11,12,14,15,17,19,20,21,23,27,28,30,31,32,37,39,41,44,45,47,48,51,53,54,55,57,58,60,62,64,65,67,69,72,73,76,77,80,85,94,95,96,104,110,111,113,114,116,117,118,121,122,123,124,126,127,128,130,131,132,134,135,138,139,140,141,143,144,145,146,147,149,151,152,153,154,155,156,157,159,162,164,167,168,169,170,172,174,175,176,177,178,179,181,182,188,191,192,193,195,197,199,200,201,203,208,215,216,222,245,261,274,279,284,287,296,297,316,320,353,354,358,368,373,376,390,398,401,402,429,433,465,468,470,473,474,482,483,492,505,512,514,545,547],things_styl:284,think:[1,8,12,14,21,35,39,41,46,47,52,53,60,73,94,95,113,116,117,118,121,125,126,127,128,135,137,139,140,144,145,146,148,150,155,163,166,169,170,181,187,461,545],third:[0,6,11,14,20,28,30,59,94,96,118,119,122,124,135,143,144,157,164,174,179,182,183,189,191,197,201,222,233,279,473,480,483,548],third_person:284,thirdnod:28,this_is_provided_by_amazon:75,this_sign:462,thoma:[36,55,220],thorn:[37,137],thorough:1,those:[0,3,4,5,10,11,12,13,14,15,16,17,19,21,23,25,28,30,33,37,39,41,44,46,48,53,57,58,60,67,68,73,75,76,83,98,104,110,111,112,116,117,121,122,123,124,125,126,128,130,133,134,135,137,138,139,140,141,143,144,146,149,151,152,154,156,160,161,162,163,165,166,168,170,172,174,175,180,181,183,188,197,199,201,203,216,217,219,222,227,228,229,233,237,245,277,284,296,297,312,354,358,368,375,376,381,390,398,406,407,409,414,443,448,451,469,470,480,481,482,490,491,494,496,519,536,541,542,544],though:[1,11,13,14,15,16,17,20,21,28,37,50,54,55,64,72,79,80,94,102,110,116,117,118,122,126,129,131,133,135,138,141,142,143,144,147,156,157,161,163,164,166,169,174,175,176,181,183,187,189,191,193,197,199,200,203,208,217,245,274,312,313,316,342,350,358,376,402,406,407,468,473,480,496],thought:[33,34,135,140,142,157,181,183],thousand:[157,170,178,197],thread:[0,20,181,183,201,203,439,465,489,496],threadpool:[201,465,496],threadsaf:[505,512],threat:199,three:[0,14,15,19,21,23,28,31,33,36,37,55,56,58,60,65,73,75,80,94,95,96,111,119,123,129,135,137,141,145,153,164,168,178,179,197,201,214,227,229,315,343,390,398,473,480],threshold:[116,364,463,474],thrill:168,throttl:[0,201,205,206,208,416,425,438],through:[0,7,8,9,13,15,16,18,20,21,23,28,29,30,31,33,36,37,41,42,44,45,50,52,53,62,65,68,69,74,77,89,90,94,95,96,107,112,113,116,117,119,121,122,124,125,131,132,136,137,138,139,142,143,144,145,147,150,151,153,156,157,160,161,162,163,164,168,169,171,174,183,188,197,198,199,200,201,203,205,208,216,222,227,229,249,258,282,283,287,312,313,314,315,316,320,326,333,341,342,381,396,398,401,402,411,412,415,420,422,427,436,440,443,449,452,457,459,460,469,470,474,476,479,480,481,494,495,496,505,512,536,545],throughout:[28,89,121,128,159,200,314,339],throughput:[236,237,476],thrown:[147,201,297],thrust:[375,501],thu:[0,16,19,21,23,28,30,33,35,37,39,48,57,60,65,67,69,73,75,130,135,142,146,151,157,161,162,170,174,175,179,185,201,210,219,223,341,342,344,353,354,398,402,415,452,466,468,469,476],thud:[92,300],thumb:[8,12,60],thumbnail:123,thunder:[98,183],thunderstorm:138,thusli:191,tick:[7,23,28,42,47,79,113,119,122,177,183,283,314,374,376,415,452],ticker1:[47,415],ticker2:[47,415],ticker:[0,24,26,32,42,120,126,177,209,232,374,376,411,415,425,496],ticker_class:415,ticker_handl:[47,120,177,205,415,496],ticker_pool_class:415,ticker_storag:415,tickerhandl:[0,20,24,42,84,108,147,177,205,206,232,293,314,329,376,408,496,548],tickerpool:415,tickerpool_layout:415,tidbit:121,tidi:192,tie:[147,164,344],tied:[19,81,94,117,122,137,216,229,279,282,290,343,368,394,409],tier:[75,197],ties:[53,73,159,201,224],tight:[81,290],tightli:[39,75,199,236],tild:130,tim:[0,81,91,93,111,112,117,289,290,311,312,313,314,315,316,349,350,383,384,388,390],time:[0,1,4,6,7,9,10,11,12,13,14,15,16,18,19,21,24,26,28,29,30,31,33,35,37,41,44,47,48,54,55,60,61,62,63,65,67,68,70,72,73,75,77,78,80,84,85,86,89,96,98,103,104,106,108,110,111,112,113,116,117,118,120,121,122,123,124,125,126,128,130,132,133,134,135,136,137,138,139,140,141,143,144,146,147,152,153,154,155,156,157,159,160,162,164,169,171,174,175,177,178,182,183,185,186,187,189,191,192,193,197,200,201,203,208,209,211,213,214,216,217,220,227,232,236,237,238,251,252,260,261,264,279,287,293,296,297,309,312,313,314,315,316,320,326,329,347,353,357,358,363,368,374,375,376,386,390,394,401,402,405,407,408,409,410,413,414,415,420,422,424,426,427,432,438,443,445,451,452,453,457,458,459,461,463,468,470,471,473,474,475,476,481,484,487,488,489,492,496,505,512],time_ev:264,time_factor:[20,163,201,251,484],time_format:496,time_game_epoch:[20,163,201,484],time_ignore_downtim:201,time_left:293,time_str:163,time_to_tupl:251,time_unit:[86,163,251],time_until_next_repeat:42,time_zon:201,timed_script:42,timedelai:[155,414,494,496],timedelta:[490,497],timeeventscript:261,timefactor:[163,201],timeformat:[489,496],timeit:7,timelin:143,timeout:[147,173,187,195,201,443,463,487],timer:[0,2,20,23,47,65,79,84,90,106,117,122,128,131,132,142,147,160,201,222,293,314,320,357,363,368,375,408,409,413,414,415,451,459,493,522],timerobject:42,timerscript:42,timescript:484,timeslot:[90,320],timestamp:[20,64,153,321,451,452,463,484],timestep:[7,452],timestr:489,timetrac:[205,206,416,450],timetupl:163,timezon:[183,201,489,490,497],tin:136,tini:[157,166,183],tinker:8,tintin:[184,433,434,444,447],tinyfugu:184,tinymud:[69,161],tinymush:[69,72,161,234],tinymux:[69,161],tip:[2,46,181,199],tire:[128,216],titeuf87:[115,117,331,333],titl:[1,18,51,80,119,164,198,201,227,229,237,245,246,280,354,393,473,476,547],title_lone_categori:229,titlebar:51,titleblock:164,tlen:188,tls:182,tlsv10:187,tlsv1:182,tmp7w77gzz:233,tmp:[4,195,233],tmpmsg:19,tmwx:0,to_be_impl:543,to_byt:[0,496],to_closed_st:368,to_cur:314,to_displai:245,to_dupl:215,to_execut:496,to_exit:[94,96],to_fil:[76,380],to_init:316,to_non:402,to_obj:[208,217,402],to_object:237,to_open_st:368,to_pickl:477,to_str:[0,496],to_syslog:380,to_unicod:0,tobox:429,todai:[93,142,350],todo:[38,43,66,129,145,148,150,162],toe:[69,135],togeth:[0,14,16,21,23,30,31,37,40,48,61,65,80,89,96,97,101,103,116,117,119,122,124,130,132,135,136,137,138,140,141,142,143,144,146,147,148,149,155,159,161,162,175,176,182,188,197,201,202,213,222,224,229,280,296,297,306,309,320,341,342,353,354,375,376,400,401,407,429,448,461,473,474,493,505,512,548],toggl:[166,443],toggle_nop_keepal:443,togglecolor:166,togrid:116,toi:85,toint:[30,41,483],token:[19,144,188,201,440,443,474,483],told:[11,58,60,70,132,135,158,169,175,197,492],tolimbo:116,tolkien:163,tom:[30,36,58,72,92,104,141,162,175,222,228,300,354,479,483,499],tomb:113,tomdesmedt:499,tommi:[36,39,57,483],ton:[161,167,201],tone:60,tonon:[222,335],too:[0,6,7,9,11,14,15,16,18,19,20,23,28,31,34,48,50,55,58,60,65,80,94,95,96,111,113,119,123,124,125,126,128,131,133,134,137,140,141,142,143,144,146,147,152,153,155,157,159,161,162,168,169,174,175,178,193,195,201,220,222,239,297,298,315,342,343,368,390,397,400,425,429,463,465,471,474,479,480,481,482,493,496],took:[10,131,496],tool2:298,tool:[2,30,39,41,46,50,53,60,61,67,69,85,116,117,120,122,123,125,127,133,135,137,139,140,142,143,145,148,150,151,155,161,163,170,182,183,187,192,193,197,201,296,297,298,548],tool_kwarg:296,tool_nam:296,tool_tag:[85,296,297],tool_tag_categori:[85,296],toolbox:181,toolkit:53,tooltip:51,top:[1,7,12,15,21,23,27,29,30,31,42,46,48,50,53,58,80,81,85,89,101,115,116,119,124,126,131,134,135,136,155,157,161,162,164,168,170,171,175,178,179,181,191,193,200,203,211,216,238,245,251,274,277,290,306,333,341,342,354,390,392,394,401,410,420,462,468,470,471,474,481,482,489],topcistr:393,topic:[6,7,21,23,31,44,50,54,62,64,67,76,121,123,128,130,133,135,142,164,176,201,229,277,279,312,313,314,315,316,393,395,493,536,544],topicstr:393,topolog:[116,117,341,342],toppl:94,tostr:429,total:[7,20,33,44,49,60,75,94,116,141,163,167,169,172,200,210,232,342,347,457,481,482,484],total_num:487,touch:[0,60,119,132,133,182,185,199,200,201,463],tour:[125,127,132,139,145,148,150,169],toward:[6,23,62,80,98,116,140,142,143,169,170,316,350,374],tower:[170,320,376],town:[116,335],trace:[65,116,261,342,457,480,489],traceback:[2,8,10,15,20,42,53,64,73,94,126,135,161,175,178,201,203,261,306,405,429,470,474,489,496],tracemessag:457,track:[0,11,14,20,42,44,67,84,89,106,110,112,117,122,125,132,135,139,140,141,146,147,156,159,161,167,174,177,178,195,198,208,216,236,293,316,339,342,358,411,431,432,437,440,443,458,463,477,478,490],tracker:[26,113],trade:[77,95,117,141,142,287],tradehandl:[77,287],trader:95,tradetimeout:287,tradit:[3,17,32,54,60,65,128,132,135,142,146,147,197,199,296,333,443,459,481],tradition:[65,140,142,143,161,201,297],traffic:[75,182,199,433],trail:[53,201,243],train:[110,126,142,181,358],traindriv:174,traindrivingscript:174,trainobject:174,trainscript:174,trainstop:174,trainstoppedscript:174,trait1:[110,358],trait2:[110,358],trait:[0,20,119,125,139,142,146,205,206,239,345,407,548],trait_class_path:[110,358],trait_data:358,trait_kei:[110,358],trait_properti:358,trait_typ:[110,357,358],traitexcept:358,traitfield:[357,358],traithandl:[205,239,345,356,357],traithandler_nam:358,traithandlertest:357,traitproperti:[205,239,345,356,357],traitshandl:[357,358],transact:[77,117,141,287],transfer:[168,178,216,431,441,445,482],transform:[4,130],transit:[0,37,89,117,336,339,341,342],transitionmapnod:[116,336,339,342],transitiontocav:336,transitiontolargetre:336,transitiontomapa:116,transitiontomapc:116,translat:[16,36,41,58,60,61,62,68,70,104,132,176,181,353,354,407,422,473],transmiss:380,transmit:[70,519],transpar:[19,44,51,176,187,201,400,401,415],transport:[429,440,449],transportfactori:440,transpos:176,trap:[16,113,138,167],traumat:28,travel:[65,68,108,159,167,329,333],travers:[14,33,37,75,94,108,116,117,158,159,168,174,326,329,333,341,342,374,375,397,402,522],traverse_:23,traversing_object:[326,329,333,402],travi:[0,3],travis_build_dir:5,treasur:[124,137,141,333],treasurechest:39,treat:[0,14,16,23,44,46,48,54,116,122,130,136,137,158,170,208,213,216,300,342,366,392,400,402,407,452,461,480,482,493],tree:[0,12,23,28,39,74,85,89,114,116,117,119,120,122,125,139,140,141,149,193,205,206,239,245,274,285,295,336,354,388,389,390,402,407,420,449,465,480,496,518,548],tree_select:[111,205,206,239,378,548],treestr:[111,390],trembl:[133,136],treshold:487,trhr:[0,75,117,241],tri:[16,23,33,35,36,44,45,55,64,65,70,75,91,126,134,137,140,142,144,147,155,162,169,178,184,197,201,214,232,287,375,376,384,424,463,496,497],trial:[9,377,446],tribal:170,trick:[2,80,134,144,181,182,470,536],tricki:[41,176],trickier:[124,164],tried_kei:39,trigger:[0,4,6,19,21,23,28,32,34,37,44,45,47,59,65,73,80,94,95,98,106,117,143,147,152,159,160,161,164,171,172,174,179,184,192,208,209,213,214,217,219,233,245,264,279,293,368,374,376,401,402,407,409,415,422,425,429,451,458,462,476,480],trim:473,tripl:[20,119,135,496],triumph:[138,142],triumphant:138,trivial:[6,7,20,23,62,138,144,169],troll:55,troubl:[35,44,95,118,125,128,135,162,169,182,183,191,193,468],troubleshoot:[190,193,202,548],troublesom:[15,16,55],trove:[124,141],truestr:[91,384],truli:[44,55,96,157,320],trunk:0,trust:[28,30,57,94,117,141,142,161,232,474],truth:6,truthfulli:23,truthi:[126,414],try_num_differenti:214,ttarget:147,tto:443,tty:[124,192],ttype:[205,206,416,428,440,443],ttype_step:447,tuck:170,tulip:137,tun:[26,222],tune:[132,142,176,187],tunnel:[26,80,96,116,126,128,134,144,158,159,162,174,222,445],tup:[157,354],tupl:[0,6,7,14,28,30,36,39,41,50,67,68,94,98,115,126,130,144,147,157,179,197,201,205,208,214,220,222,227,229,230,237,245,251,258,278,284,287,296,300,314,315,333,335,341,342,343,344,347,354,366,373,393,395,397,398,400,402,406,407,409,415,417,420,429,430,440,441,445,452,459,461,468,471,473,475,476,478,480,484,489,491,496,499,500,520],tuple_of_arg_convert:30,tupled:489,turbo:191,turkish:208,turn:[0,2,10,12,14,20,21,23,27,28,33,44,45,53,54,55,60,63,65,68,73,89,96,98,111,116,117,119,122,125,126,133,134,135,136,137,138,141,142,144,145,161,162,166,170,171,172,174,176,178,181,197,201,203,208,217,232,233,236,237,264,270,312,313,314,315,316,344,354,374,376,390,402,407,420,425,433,440,443,451,461,467,470,474,476,480,481,482,483,494,496,505,525,527,548],turn_act:147,turn_end_check:312,turnbattl:[0,112,125,139,205,206,239,285,548],turnchar:314,tut:[138,376],tutor:[113,373],tutori:[0,2,6,18,21,22,23,25,28,46,47,53,54,56,60,73,78,79,80,100,106,108,109,118,119,121,122,123,126,128,130,132,133,134,135,136,141,143,148,149,153,154,155,157,159,161,162,166,167,169,170,176,178,181,188,190,193,197,201,205,206,233,239,245,313,342,480,548],tutorial_bridge_posist:376,tutorial_cmdset:376,tutorial_exampl:[15,16,128,132,135,363],tutorial_info:376,tutorial_world:[80,113,138,190,205,206,239,359,548],tutorialclimb:375,tutorialevmenu:373,tutorialmirror:[117,135,366,548],tutorialobject:[374,375],tutorialread:375,tutorialroom:[374,376],tutorialroomcmdset:376,tutorialroomlook:376,tutorialstartexit:376,tutorialweapon:[0,374,375],tutorialweaponrack:[0,375],tutorialworld:[375,376],tutoru:135,tweak:[8,14,19,31,37,41,48,53,116,117,124,126,133,141,145,153,161,162,171,182,187,208,368,465,473,494,504,509],tweet:[165,202,548],tweet_output:173,tweet_stat:173,tweetstat:173,twenti:162,twice:[28,98,138,147,153,163,243,261,316,480],twist:[0,20,23,52,54,62,155,181,189,191,193,195,199,201,377,402,414,417,420,422,423,429,430,431,432,437,440,443,446,448,449,451,458,461,465,489],twistd:[9,195,203,437,458],twistedcli:62,twistedweb:199,twitch:147,twitter:[173,202,548],twitter_api:188,two:[0,7,8,10,12,14,15,16,17,20,21,23,27,28,30,31,32,33,34,37,40,41,42,44,46,48,51,56,57,58,62,64,65,67,68,69,70,72,73,74,77,78,80,89,94,95,96,97,104,105,107,108,110,111,114,116,117,119,122,123,125,128,129,130,131,132,133,134,135,136,137,138,139,141,142,143,144,145,146,147,153,154,155,157,158,159,161,162,164,168,169,170,174,175,176,178,179,183,186,187,192,195,197,199,200,201,203,215,222,227,236,238,245,274,279,287,296,297,303,314,316,326,329,339,341,342,347,358,368,376,386,390,402,404,420,449,460,461,469,471,474,480,482,483,489,495,496,497],twowai:222,txt:[0,1,27,62,75,104,116,119,124,135,180,191,196,197,209,353,436,444,478,480,496,499],txw:0,tyepclass:400,tying:[197,525],type:[0,1,6,8,11,16,18,19,20,21,23,24,25,26,27,28,30,31,33,35,36,41,42,44,45,46,47,48,49,50,51,55,56,57,58,60,65,67,68,69,70,75,78,80,81,84,85,89,91,94,95,96,97,104,108,114,116,117,119,121,122,128,129,130,131,132,133,135,136,138,140,141,142,144,145,146,147,152,153,154,155,158,159,160,161,162,163,166,167,169,170,171,172,173,174,175,176,178,181,182,184,191,197,199,201,203,205,206,208,209,217,222,227,229,232,233,234,236,237,238,239,243,245,255,258,261,264,274,277,279,280,282,290,293,296,297,303,312,313,314,315,316,329,340,341,342,344,345,354,356,357,368,375,376,384,392,394,397,398,401,402,406,407,409,414,415,418,420,422,423,429,431,432,438,440,441,443,444,445,447,448,449,451,459,461,465,468,469,470,471,473,474,476,477,480,481,482,483,491,492,493,495,496,500,504,505,512,516,517,519,522,530,536,544],type_count:290,typecalass:468,typecalss:261,typeclas:133,typeclass:[1,2,10,13,14,15,19,20,23,24,26,31,33,34,35,37,39,41,42,44,45,46,50,53,55,61,63,64,65,80,81,83,84,85,90,92,96,98,103,104,108,109,110,115,116,117,119,124,125,127,128,129,130,131,136,141,145,146,147,152,153,157,158,159,160,162,163,164,167,168,169,170,171,172,173,174,175,177,178,179,201,205,206,208,209,210,211,216,222,227,236,237,238,239,240,257,260,261,264,277,279,282,284,290,293,296,309,312,313,314,315,316,318,320,326,328,333,335,344,354,358,368,370,376,393,398,400,401,402,406,407,409,410,411,413,415,458,475,476,493,494,496,514,516,519,522,527,537,546,548],typeclass_aggressive_cach:201,typeclass_path:[42,48,201,211,222,410,469,470],typeclass_search:[210,400,409,469],typeclasses:133,typeclasslistserializermixin:519,typeclassmanag:[210,237,400,409],typeclassmixin:[540,541,542,546],typeclassserializermixin:519,typeclassviewsetmixin:522,typedobject:[48,211,217,238,333,344,354,401,402,410,468,469,470,471,491,496],typedobjectmanag:[210,237,393,400,409,469],typeerror:[6,347,449],typelass:19,typenam:[80,208,209,211,236,238,251,261,279,280,281,287,290,300,309,312,313,314,315,316,320,326,329,333,343,344,353,354,363,366,368,370,374,375,376,386,394,401,402,406,410,413,427,453,468,470,484,487,488],typeobject:471,types_count:290,typic:[10,20,94,110,121,169,315,316,358,519,546],typo:[0,118,119,199],ubuntu:[12,182,183,187,193,195,197,199],uemail:210,ufw:199,ugli:[41,51,135,160,490],uid:[192,201,210,211,432,439,460,461],uit:[80,245],ulrik:162,ultima:181,umlaut:17,unabl:[188,350],unaccept:23,unaffect:[28,147,314,414],unalia:[19,102,227,270],unam:[201,210],unari:357,unarm:313,unarmor:313,unauthenticated_respons:537,unavoid:47,unban:[0,19,55,102,126,220,227,233,236,270],unban_us:227,unbias:[87,347],unbroken:479,uncal:414,uncas:473,uncategor:493,unchang:[8,36,104,110,353,358,407,496],uncleanli:281,unclear:[58,116,143,156,342],uncolor:[60,166],uncom:[187,197],uncommit:12,uncompress:433,unconnect:[116,234,255],uncov:290,undefin:[4,46,67],under:[0,2,4,6,7,9,11,19,23,28,30,31,41,42,48,51,53,64,67,69,73,75,83,87,89,91,94,95,99,102,110,111,113,114,117,118,119,122,124,126,128,130,133,134,136,140,141,142,146,151,161,175,178,179,180,181,184,191,192,201,203,217,219,222,274,296,357,358,384,390,398,413,420,447,468,473,480,481,482,496,499,500,513],undergar:[81,290],undergon:261,underground:116,underli:[12,33,50,122,140,161],underlin:[482,495],underneath:[124,470],underpin:148,underscor:[8,28,30,32,68,85,96,119,135,215,483,496],underscror:215,understand:[1,6,12,17,21,23,39,41,44,52,54,60,65,70,71,85,105,112,118,119,121,123,126,130,132,133,134,135,136,140,141,142,143,144,151,153,155,156,157,158,159,165,166,169,170,175,178,179,181,183,184,195,199,200,201,214,215,227,297,353,354,386,465,473,496,548],understood:[31,58,65,85,142,169,170,342,448,449],undertak:143,undestand:153,undo:[27,199,478],undon:219,undoubtedli:161,uneven:342,unexpect:[10,169,176,201,480,496],unexpectedli:487,unfair:142,unfamiliar:[32,33,53,68,135,172,193,197],unfocu:277,unfocus:279,unformat:[28,480,484],unfortun:[123,140],unhappi:124,unheard:58,unhilit:495,unicod:[0,17,65,70,116,208,342,473,496],unicodeencodeerror:473,unifi:[178,460],uniform:44,uninflect:499,uninform:182,uninstal:[125,127,195],uninstati:496,unintent:274,union:[21,28,133,215,368,480],uniqu:[0,3,4,13,15,21,23,25,33,34,35,41,42,44,46,48,50,51,55,58,62,65,95,98,103,116,117,119,122,128,130,133,137,161,175,188,197,208,210,213,215,217,222,227,234,236,237,251,255,260,279,293,296,313,314,326,335,341,342,344,353,354,374,376,386,390,393,402,406,407,409,415,417,429,430,438,451,452,460,461,468,469,470,471,476,478,483,490,493,496,500],unit:[0,2,3,4,5,12,20,21,45,53,76,86,94,118,122,163,167,181,201,237,251,264,283,298,314,357,422,476,484,496,501,548],unittest:[0,5,10,153,201,233,400,461,476,494],univers:[16,17,163,270],unix:[0,1,29,36,117,119,184,187,195,228,272,274,481,489,496,548],unixcommand:[0,114,205,206,239,240,548],unixcommandpars:274,unixtim:489,unjoin:287,unknown:[51,133,160,164,342,406,496],unknown_top:544,unleash:154,unless:[14,19,20,23,28,30,33,34,35,37,47,55,68,74,75,80,113,116,117,119,123,133,136,140,142,152,155,175,180,183,187,189,197,201,203,208,215,216,220,222,227,229,230,236,260,316,353,354,375,386,392,397,398,402,407,418,433,449,461,468,470,483,493,494,496,497,544,548],unlik:[45,80,103,110,116,117,118,122,142,146,197,208,245,314,342,358,470],unlimit:[115,201,333,341],unlink:[26,126,222],unload:[116,494],unload_modul:494,unlock:[19,39,133,162,227,279,468],unlock_flag:279,unlocks_red_chest:39,unlog:[7,220,225,226,234,254,255,461],unloggedin:[0,44,201,205,206,212,218,461],unloggedincmdset:[25,26,44,88,99,134,201,226,254,255],unlucki:[55,113],unmask:354,unmodifi:[0,113,117,214,231,320,480],unmonitor:[24,425],unmut:[19,102,227,236,270],unmute_channel:227,unnam:[46,215],unneccesari:70,unnecessari:[4,140],unnecessarili:130,unneed:[115,333],unpaced_data:429,unpack:[169,397],unpars:[32,36,214,448,449,483],unpaus:[42,192,222,232,414],unpickl:[50,65,429,468,477,492],unplay:[44,153],unpredict:496,unprivileg:407,unprogram:146,unpuppet:[0,26,45,94,175,219,504],unpuppet_al:208,unpuppet_object:[13,208],unquel:[26,39,128,135,138,219],unreal:181,unrecogn:483,unrecord_ip:463,unregist:73,unrel:[12,28,249],unrepat:496,unrepeat:[0,425,496],unreport:[0,425],unrestrict:141,unsaf:[0,203,215,376,496],unsafe_token:473,unsatisfactori:170,unsav:478,unsel:168,unseri:201,unset:[0,14,23,37,76,110,147,159,162,220,279,280,282,341,343,354,358,374,398,402,406,407,409,415,468,476,480,481,482,483,489,494],unset_character_flag:279,unset_flag:[279,280],unset_lock:227,unsign:497,unsigned_integ:[490,497],unsignedinteg:490,unskil:[110,358],unspawn:342,unstabl:[0,192],unstrip:214,unsuar:118,unsub:[19,102,201,227,270],unsub_from_channel:227,unsubscrib:[19,47,162,270,415,431],unsuccessful:64,unsuit:[57,406,471],unsupport:14,unsur:[17,30,108,118,126,147,188,193,197],unsurprisingli:135,untag:51,untest:[10,184,195,201],until:[1,4,7,8,14,15,21,23,28,36,42,47,51,52,54,55,60,67,77,84,98,104,106,112,116,117,122,128,130,135,136,138,140,141,142,144,151,155,156,175,176,182,251,264,287,290,293,312,313,314,315,316,341,357,368,374,375,376,402,414,420,429,449,451,468,473,474,484,496],untouch:[116,136,473],untrust:[15,30,94,142,496],unus:[0,23,85,116,142,166,201,208,213,217,227,236,281,315,316,320,344,366,376,390,402,413,443,459,464,469],unusu:[86,117,143,199],unwant:94,unwield:313,unwieldli:216,unwil:76,upcom:185,updat:[0,2,4,7,8,10,13,14,15,16,23,24,26,28,31,34,37,42,47,49,64,65,67,68,73,75,82,89,90,94,109,116,117,119,122,123,124,125,132,135,140,144,146,147,151,154,155,156,157,159,161,162,163,166,169,175,178,179,181,182,183,184,187,188,191,192,193,195,196,197,198,201,209,216,217,222,227,230,232,233,236,248,261,315,320,337,343,354,357,376,394,398,401,402,404,405,407,409,411,436,438,439,444,458,459,461,463,468,470,477,478,479,480,481,482,487,496,504,505,512,517,521,536,537,546,547,548],update_attribut:468,update_buff:478,update_cached_inst:487,update_charsheet:162,update_current_descript:320,update_default:458,update_flag:459,update_lock:517,update_method:51,update_po:159,update_scripts_after_server_start:409,update_session_count:459,update_undo:478,update_weath:376,updated_bi:258,updated_on:258,updatemethod:51,updateview:[546,547],upenn:499,upfir:9,upgrad:[0,2,122,191,193,195,202,548],upload:[75,122,123,192,195,197,201,202],upmaplink:[116,342],upon:[16,33,49,53,67,70,76,91,140,155,171,175,192,197,199,312,313,314,316,381,384,412,422,431,463,481,546],upp:376,upped:0,upper:[49,60,67,110,116,155,157,219,341,342,358,473],upper_bound:[110,358],upper_bound_inclus:358,uppercas:[60,354,473],upping:60,ups:0,upsel:197,upset:126,upsid:[115,333],upstart:62,upstream:[1,11,12,122,200],upstream_ip:201,upt:216,uptick:0,uptim:[0,20,26,30,55,163,232,434,484],urfgar:41,uri:[217,236,392,394,470],url:[0,12,49,50,52,53,59,73,122,125,132,150,151,179,182,197,198,201,205,206,209,217,227,236,243,392,394,439,449,465,470,495,502,503,515,522,532,535,541,542,544,547,548],url_nam:[522,537],url_or_ref:119,url_path:522,url_to_online_repo:12,urlconf:201,urlencod:164,urlpattern:[53,73,123,149,164,178,179],usabl:[63,85,112,123,135,141,175,222,245,279,314,350,397,463,480],usag:[6,7,23,24,28,31,35,41,47,55,72,94,96,118,119,122,126,134,135,144,146,147,152,154,155,156,162,166,167,168,169,174,175,188,190,197,201,205,206,217,219,220,221,222,227,228,229,232,233,234,239,245,251,255,270,274,277,287,290,296,297,300,303,306,309,312,313,314,315,316,318,320,326,329,331,335,337,345,346,353,354,368,370,373,374,375,376,381,384,397,405,414,420,451,480,482,483,487],use:[0,1,2,4,5,6,7,9,10,11,12,13,14,15,16,17,18,20,21,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,41,42,44,45,46,48,49,50,51,52,53,54,55,56,57,58,60,62,63,64,65,67,68,69,70,72,73,74,75,76,77,79,80,81,83,84,85,86,87,89,90,92,93,94,95,96,97,98,101,102,103,104,105,107,109,110,111,112,113,114,115,116,117,118,119,122,123,124,125,126,127,128,129,130,132,133,134,135,136,137,138,139,140,143,144,145,146,147,148,149,150,151,152,153,154,155,157,158,159,160,161,162,163,164,165,166,167,168,169,170,172,173,174,175,176,177,178,179,181,182,183,184,185,186,187,188,189,190,192,193,195,196,197,198,199,201,205,208,209,210,211,213,214,215,216,217,219,222,223,227,228,229,230,232,233,234,236,237,238,245,260,264,274,277,279,280,284,287,290,293,296,297,300,303,306,309,312,313,314,315,316,320,326,329,333,335,336,337,341,342,344,347,350,353,354,358,363,368,370,373,374,375,376,386,390,392,397,398,400,401,402,406,407,414,415,418,425,429,442,444,445,448,451,452,459,460,461,468,469,470,471,473,474,475,476,478,479,480,481,482,483,487,489,490,492,494,496,497,500,505,507,512,517,519,522,542,545,548],use_dbref:[354,400,402,493],use_destin:402,use_i18n:[64,201],use_int:293,use_item:314,use_nick:[208,354,402],use_required_attribut:[506,508,510,512,536],use_success_location_messag:309,use_success_messag:309,use_tz:201,use_xterm256:473,useabl:[115,333],used:[0,3,7,10,11,12,13,14,15,17,18,19,20,21,24,25,27,28,29,30,31,32,33,34,35,36,37,39,41,42,44,45,46,47,48,50,51,52,53,54,56,57,58,60,62,64,65,67,68,69,70,71,72,73,76,77,78,80,81,83,84,85,86,88,90,91,92,93,94,95,96,97,98,102,103,104,105,110,111,112,114,115,116,117,118,119,122,124,125,127,128,129,130,131,132,133,134,135,136,137,138,142,144,146,147,149,151,155,156,160,161,162,163,164,167,168,169,170,172,173,174,175,176,178,179,181,183,184,185,187,189,192,194,195,197,199,200,201,203,205,206,208,209,213,215,216,217,219,222,227,229,230,231,232,233,234,236,237,239,245,249,251,254,255,258,260,261,264,270,274,279,280,282,285,287,290,293,295,296,300,303,312,313,314,315,316,320,329,333,335,338,341,342,343,344,350,353,354,358,368,374,375,376,384,386,390,392,393,394,395,396,397,398,400,402,406,407,411,413,414,415,416,417,418,422,425,426,429,430,431,432,433,434,435,436,437,438,440,442,443,444,447,448,449,452,459,461,462,468,469,470,471,472,473,474,476,477,478,480,481,482,483,489,490,491,492,493,494,496,497,500,504,505,509,512,514,519,522,536,540,542,544,545,546],useful:[0,1,2,4,6,7,10,12,14,15,16,17,18,20,21,27,28,30,31,33,36,37,39,41,42,45,46,47,48,50,53,54,55,56,57,60,63,77,80,85,94,95,96,104,110,114,116,117,118,119,120,122,123,125,126,128,130,131,133,134,135,136,137,138,139,142,144,147,153,154,155,156,157,161,162,164,166,169,170,173,175,177,178,183,193,195,197,200,201,203,213,215,216,217,219,221,222,229,230,233,236,239,245,260,261,274,279,284,287,296,303,314,333,342,343,353,354,358,368,376,381,397,402,406,407,420,440,468,470,474,480,484,492,496,518,548],usefulli:134,useless:[133,144,374],user:[0,1,4,5,6,7,8,10,13,15,16,19,21,24,25,27,28,29,30,31,32,33,36,39,44,45,48,49,50,51,52,54,55,59,60,61,62,63,68,70,71,73,75,76,80,81,85,89,92,94,98,102,104,107,113,116,117,118,119,121,122,123,125,126,128,132,133,135,137,142,144,151,153,154,155,156,159,165,166,168,169,174,175,176,178,179,181,182,183,186,187,188,189,190,191,192,193,195,197,198,200,201,202,208,209,211,214,217,220,222,227,229,232,236,237,238,243,245,254,259,261,270,278,279,281,290,293,296,300,314,316,320,333,342,344,354,366,376,380,381,390,392,394,398,402,407,413,416,418,424,432,439,440,443,448,449,459,461,464,468,470,473,478,480,481,482,483,490,494,496,497,504,517,525,528,536,541,542,543,544,545,547,548],user_change_password:504,user_input:28,user_permiss:[211,504],useradmin:504,userattributesimilarityvalid:201,userauth:440,userchangeform:504,usercreationform:[504,536],userguid:75,usermanag:210,usernam:[0,12,13,25,28,32,45,49,88,117,123,141,179,192,194,201,208,211,255,440,464,504,516,519,528,536],usernamefield:536,userpassword:[55,126,220],uses:[0,7,10,12,14,15,17,18,19,21,23,28,30,31,33,35,37,41,42,45,46,47,48,50,51,53,56,58,60,62,67,68,70,77,80,86,88,90,94,96,97,99,104,107,110,114,117,122,124,130,132,133,135,136,141,151,155,156,157,161,164,166,183,197,198,201,215,229,274,279,287,296,303,314,320,333,341,342,347,353,354,357,358,376,398,400,410,415,429,449,463,468,471,489,490,494,496,516,519,525,544],uses_databas:496,using:[0,1,2,4,7,8,10,11,12,13,14,15,16,17,19,20,21,23,26,27,28,30,31,32,33,36,37,39,41,42,44,45,46,47,48,49,50,51,52,53,54,55,57,58,60,65,67,68,69,72,74,75,80,83,85,86,93,94,95,98,103,104,108,111,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,136,138,140,141,142,143,144,145,146,147,152,153,154,155,156,157,159,160,161,162,163,166,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,187,188,190,192,193,195,196,197,199,201,203,208,211,213,216,217,219,221,222,227,229,230,231,232,236,245,251,260,274,279,287,296,297,298,309,312,313,314,315,316,320,326,329,333,335,336,341,342,344,347,350,353,354,358,370,373,374,376,384,390,392,395,398,400,401,402,405,406,407,410,414,415,431,432,433,438,439,443,449,452,461,462,463,465,468,470,471,473,474,478,480,481,484,489,490,491,492,493,494,496,502,517,521,522,536,544,545,548],usr:[122,191,192,195],usu:42,usual:[1,7,8,9,12,13,14,19,20,21,23,27,28,29,32,33,35,36,37,39,41,42,44,46,47,48,50,52,53,57,58,60,62,64,80,94,95,96,110,116,117,118,119,122,123,124,125,126,129,130,132,133,135,136,137,142,143,144,151,152,153,155,156,161,163,166,169,176,178,182,183,187,189,192,193,195,197,201,203,208,209,210,214,215,216,217,219,222,227,228,232,233,238,251,260,261,264,274,282,293,341,342,344,353,354,358,376,386,398,400,401,402,406,407,420,422,427,452,459,468,470,473,475,476,480,481,483,489,491,493,494,496,505,512],usuallyj:116,utc:[183,201,321,497],utf8:[4,183],utf:[17,32,70,98,162,170,184,201,234,425,431,448,482,496],util:[2,8,10,15,16,27,28,29,37,42,50,51,54,56,60,67,76,84,86,89,90,91,94,98,105,106,110,111,118,127,129,131,143,159,161,162,163,166,168,170,171,178,179,182,193,199,201,205,206,221,232,233,236,238,239,240,246,249,251,252,256,257,261,262,271,273,275,276,278,283,288,291,293,294,298,301,304,307,310,315,317,318,320,321,327,329,330,332,334,339,348,351,355,357,358,364,368,371,373,377,391,394,400,402,404,406,413,414,427,446,451,468,469,470,502,503,505,506,508,510,512,520,536,537,548],utilis:480,uyi:[104,353],v22:195,vagu:152,val1:[14,483],val2:[14,483],val:[14,68,208,219,444,496],vala:14,valb:14,valid:[0,1,5,6,8,14,15,21,23,28,30,37,41,53,59,60,68,85,91,94,98,105,111,115,116,117,132,135,156,158,162,164,169,175,178,179,187,197,199,201,203,205,206,208,210,214,216,222,230,236,237,245,258,261,262,274,287,296,298,315,333,341,354,357,358,375,376,384,386,390,398,402,404,406,407,409,411,413,414,415,416,418,420,444,448,459,468,469,471,474,476,480,483,490,491,492,493,494,495,496,497,500,519,536,540,542,547],valid_handl:490,valid_target:83,validate_cal:483,validate_email_address:496,validate_input:358,validate_lockstr:0,validate_nam:[0,402],validate_onli:398,validate_password:[0,28,208],validate_prototyp:406,validate_sess:461,validate_usernam:[0,208],validated_consum:[85,296],validated_input:296,validated_tool:[85,296],validationerror:[208,406,464,490,492],validator_config:208,validator_contain:0,validator_func:201,validator_func_modul:[0,201],validator_kei:490,validatorfunc:[201,205,206,472],valign:482,valu:[0,6,8,10,11,13,14,18,20,21,23,27,30,32,33,34,36,42,47,48,49,50,51,54,55,60,67,68,75,76,80,83,84,91,93,94,96,104,110,112,116,117,119,122,123,125,126,128,130,132,133,134,135,137,139,140,141,146,147,153,154,157,159,162,163,164,166,167,168,170,175,176,178,179,187,197,201,208,210,211,213,215,217,219,220,222,236,238,245,258,261,262,279,290,293,300,309,312,313,314,315,316,333,341,342,344,347,350,353,354,357,358,364,366,376,382,384,386,394,397,398,400,401,402,405,406,407,409,410,414,415,418,425,426,427,429,438,443,444,459,460,461,466,468,469,470,471,473,475,476,477,478,479,480,483,487,488,490,491,492,493,494,496,497,500,516,519,536,545,547],valuabl:138,value1:[41,119],value2:[41,119],value3:119,value_a:14,value_b:14,value_displai:519,value_from_datadict:492,value_to_obj:406,value_to_obj_or_ani:406,value_to_str:492,valueerror:[41,169,175,210,245,251,306,386,468,471,473,476,496,497],valuei:170,values_list:130,valuex:170,vampir:[83,130],vampirism_from_elsewher:83,vanilla:[1,48,67,75,124,125,133,139,140,159,160,162],vaniti:28,vari:[31,48,62,64,69,94,104,110,116,117,118,122,132,135,156,167,259,316,344,353,358,459,468,470],variabl:[0,7,8,9,14,15,21,23,28,30,31,33,41,42,51,63,64,68,70,73,75,82,85,91,95,96,116,119,121,122,126,130,133,134,135,136,149,154,159,160,162,164,169,174,178,179,192,194,199,200,201,208,211,213,217,219,222,227,230,232,233,234,236,248,254,258,260,261,264,277,309,320,341,343,358,376,384,397,401,402,406,407,417,420,430,433,434,436,440,442,452,459,466,473,474,480,483,496,529],variable_from_modul:496,variable_nam:[258,261],variablenam:496,varianc:353,variant:[14,46,88,108,117,121,125,135,216,245,246,255,329,431,473],variat:[39,90,130,142,144,146,147,163,201,215,320,353,496],varieti:[112,121,147,167,173,314,315],variou:[0,7,8,14,17,23,35,37,41,42,44,46,47,48,51,53,62,66,68,71,94,95,104,111,113,116,117,118,120,130,131,132,135,137,141,144,146,147,148,161,163,164,166,175,187,197,199,201,203,215,231,251,279,314,315,342,353,354,368,374,375,390,398,401,402,407,408,415,452,476,482,493,494,525],varnam:444,vast:[67,69,170,183],vastli:122,vavera:75,vcc:[104,353],vccv:[104,353],vccvccvc:353,vcpython27:124,vcv:353,vcvccv:[104,353],vcvcvcc:[104,353],vcvcvvccvcvv:[104,353],vcvvccvvc:[104,353],vector:496,vehicl:[152,548],velit:29,venu:[12,237],venv:[122,191,193,195,196],ver:183,verb:[0,30,58,153,402,456,483,499,501],verb_actor_stance_compon:499,verb_all_tens:499,verb_conjug:[0,30,205,206,472],verb_infinit:499,verb_is_past:499,verb_is_past_participl:499,verb_is_pres:499,verb_is_present_participl:499,verb_is_tens:499,verb_past:499,verb_past_participl:499,verb_pres:499,verb_present_participl:499,verb_tens:499,verb_tenses_kei:499,verbal:[79,117,402],verbatim:[30,128,135,500,548],verbatim_el:496,verbos:[0,1,10,147],verbose_nam:[178,470,504,505,512],verbose_name_plur:[505,512],veri:[0,1,6,7,8,10,11,12,13,14,15,16,18,19,20,21,23,25,27,28,29,30,31,32,33,41,42,45,46,47,48,50,51,53,54,58,60,62,67,68,69,72,74,80,81,89,94,95,96,104,105,109,111,112,113,115,116,117,118,119,121,122,123,124,125,128,130,132,133,135,136,137,140,141,142,143,144,146,147,152,154,155,157,159,160,161,162,165,168,169,170,174,175,177,179,180,181,182,183,187,189,194,196,197,200,201,203,208,209,215,217,233,236,237,238,245,260,261,274,290,296,315,326,329,333,353,354,370,374,386,390,393,401,406,424,469,471,476,478,480,496,545],verif:197,verifi:[0,3,7,12,28,88,91,117,133,197,222,296,315,384,445,494],verify_online_play:384,verify_or_create_ssl_key_and_cert:445,verify_ssl_key_and_cert:441,verifyfunc:[91,384],versa:[44,53,58,62,68,116,130,147,201,227,335,429,483,500],version:[0,2,4,11,13,14,15,16,19,21,23,25,26,28,31,32,35,36,37,42,48,51,53,60,64,67,69,78,89,116,117,118,122,123,126,128,132,134,135,140,142,144,151,152,155,156,161,166,169,170,175,176,181,183,184,185,190,191,192,193,195,196,197,201,222,230,232,234,255,284,290,313,314,315,316,320,354,368,375,402,407,420,425,439,463,468,473,481,496,504,505,506,509,510,513,519,536,548],version_info:420,versionad:119,versionchang:119,versu:[61,121],vertic:[0,339,341,342,375,482,496],very_strong:398,very_weak:33,vest:199,vet:41,veteran:181,vex:501,vfill_char:482,via:[0,7,12,14,19,20,28,29,30,32,39,40,41,42,48,49,51,54,60,62,65,67,69,75,83,118,121,125,130,132,133,135,139,140,146,160,161,168,175,176,187,193,197,199,201,235,237,238,335,368,380,401,410,468,471,473,483,488],viabl:[85,142,374],vice:[44,53,58,62,68,116,130,147,201,227,335,429,483,500],vicin:[23,228,320,376],video:[0,51,60,132,181],vidual:116,vienv:124,view:[0,1,6,12,14,18,20,27,28,29,31,33,42,47,49,50,52,53,58,67,104,113,116,117,119,121,122,123,125,126,132,133,135,142,147,150,151,162,165,167,170,175,189,190,195,197,201,203,205,206,208,217,219,220,222,227,228,229,232,236,270,290,312,313,314,315,316,333,354,392,394,402,404,455,470,481,483,496,502,507,514,515,517,519,521,525,529,532,535,536,548],view_attr:222,view_lock:517,view_on_sit:[504,506,508,509,510,512],viewabl:[120,121,229],viewer:[119,153,164,333,354,402,470],viewpoint:[61,483,500,501,548],viewport:6,viewset:[49,521,522],vim:[16,27,125,181,478],vincent:[0,80,90,94,99,105,114,117,244,245,274,319,320,386],violent:28,virginia:75,virtual:[90,116,121,123,161,181,193,197,232,320,342,484],virtual_env:191,virtualenv:[1,4,7,9,11,64,75,119,124,183,190,191,192,193,196,197,202,203],virtualhost:182,viru:195,visibl:[0,4,12,14,15,21,31,35,44,48,53,60,83,104,116,119,140,141,142,144,153,164,166,175,185,187,190,197,201,228,229,339,341,342,354,402,432,465,480,496,544],vision:[14,140,162],visit:[75,80,114,159,170,178,179,197,274,480],visitor:[73,179,199],visual:[0,7,31,51,60,93,116,117,153,161,193,195,208,229,339,341,342,344,350,473],visual_rang:344,vital:169,vlgeoff:[86,105,114,117,250,251,272,385],vniftg:195,vnum:160,vocabulari:[95,496],voic:[23,94,95],volatil:406,volcano:137,volum:[125,139,140,152,170,192],volund:[0,130],volunt:64,voluntari:118,volupt:29,vowel:[104,353],vpad_char:482,vscode:125,vulner:[0,155,199],vvc:[104,353],vvcc:[104,353],vvccv:[104,353],vvccvvcc:[104,353],w001:10,wai:[0,6,7,8,9,10,11,12,13,14,15,16,17,20,21,23,30,31,32,33,34,35,36,37,39,40,41,42,44,45,46,47,48,52,53,54,55,57,58,60,62,65,67,68,70,72,74,75,77,78,80,85,86,87,88,89,91,93,94,95,96,99,101,104,107,110,111,113,117,118,119,121,122,124,125,126,127,128,129,130,131,132,133,136,137,138,140,142,143,144,146,147,151,152,154,156,157,158,159,160,161,162,163,164,165,167,168,169,170,171,172,174,175,176,177,178,181,183,185,189,191,195,197,198,199,200,201,203,208,214,215,222,229,236,251,260,264,274,279,282,287,296,297,312,314,320,326,329,335,339,342,347,350,353,358,368,373,374,375,384,390,392,398,402,406,415,420,425,429,440,461,463,465,466,467,468,469,471,474,479,480,482,487,489,492,496,500,514,521,522,545,547],wail:159,waist:290,wait:[6,20,23,28,42,54,94,96,106,110,113,128,138,141,142,153,154,155,174,201,209,233,260,264,312,313,314,315,316,358,368,409,420,430,449,451,463,476,480,496],wait_for_disconnect:430,wait_for_server_connect:430,wait_for_statu:420,wait_for_status_repli:420,waiter:420,waitinf:233,wake:[91,384],waldemar:75,walias:222,walk:[16,21,58,94,95,96,111,115,116,121,140,142,144,152,157,159,163,168,329,333,335,342,368,390,474],walki:[19,122,142],wall:[98,113,126,135,138,144,170,220,228,320,375,376],wand:[85,296,297],wanna:[77,141,287,368],want:[0,1,5,6,7,8,9,10,11,12,13,14,15,16,17,19,20,21,23,25,27,28,30,31,32,33,34,35,36,37,39,41,42,44,45,47,48,49,50,51,53,54,55,57,58,60,62,63,64,65,67,68,69,70,73,74,75,76,77,78,80,84,85,88,89,94,95,96,99,104,106,110,116,117,118,119,122,123,124,125,126,127,128,130,131,132,133,134,135,136,137,140,141,143,144,145,146,148,149,150,151,152,153,154,155,156,157,159,161,162,163,164,165,166,167,168,169,170,172,174,175,176,177,178,179,180,182,183,184,185,187,188,189,190,191,193,194,195,196,197,198,199,200,201,203,208,215,216,217,219,222,228,229,233,234,245,255,279,287,293,296,312,313,314,315,316,320,333,341,342,344,350,354,358,368,376,380,384,386,390,397,398,402,407,411,413,415,436,438,444,451,461,466,468,470,478,480,481,487,492,494,496,505,512,514,521,536,541,544,545,547,548],wanted_id:33,wapproach:316,war:[31,392],warchannel:227,ware:168,warehous:[380,474],wari:[60,333,402,470],warm:[42,203,424],warn:[0,11,14,20,21,31,44,74,116,117,122,132,135,169,170,179,182,195,197,200,201,215,236,381,419,420,445,489,548],warrior:[39,138,142,154,161,162,175,227],wasclean:[431,448],wasn:[6,96,179],wast:[16,47],watch:[9,16,34],water:[85,98,117,216,296,297,309],waterballon:309,watt:75,wattack:[312,314,316],wave:170,wavi:116,wcach:232,wcactu:315,wcommandnam:274,wcure:315,wdestin:222,wdisengag:[312,314,316],weak:[314,407],weakref:487,weaksharedmemorymodel:[427,487],weaksharedmemorymodelbas:[427,487],weakvalu:487,wealth:168,weap:14,weapon:[0,14,28,41,67,112,113,122,125,126,129,130,134,138,139,140,141,145,146,147,155,167,168,297,313,374,375,407],weapon_ineffective_msg:374,weapon_prototyp:375,weaponrack:0,weaponrack_cmdset:375,weaponstr:134,weapoon:138,wear:[81,106,141,145,167,290,313,354,368],wearabl:[81,117,290],wearer:290,wearstyl:290,weather:[42,46,47,74,125,132,138,139,140,146,156,165,170,376,548],weather_script:42,weatherroom:[177,376],web:[2,18,31,33,41,49,52,56,59,64,75,117,119,120,121,122,123,124,125,128,131,135,140,150,153,156,164,181,182,183,189,190,191,193,195,196,201,202,203,205,206,422,424,434,438,444,448,449,459,463,465,471,477,496,548],web_0:196,web_client_url:[185,201],web_get_absolute_url:0,web_get_admin_url:[0,217,236,392,394,470],web_get_create_url:[0,236,394,470],web_get_delete_url:[0,236,394,470],web_get_detail_url:[217,236,392,394,470],web_get_puppet_url:470,web_get_update_url:[0,236,394,470],web_help_entri:544,web_plugin:[132,201],web_plugins_modul:201,webclient:[44,51,53,59,60,62,65,68,71,73,75,120,122,132,135,156,164,184,185,187,199,201,203,205,206,229,232,279,373,416,425,428,444,449,460,480,502,530,537],webclient_ajax:[51,205,206,416,428],webclient_client_proxy_port:201,webclient_en:[199,201],webclient_gui:[24,548],webclient_opt:[201,425],webclient_templ:201,webclientdata:449,webclienttest:537,webpag:[0,18,182,197,533],webport:4,webserv:[0,24,49,53,62,73,124,131,132,149,182,183,187,192,197,201,202,205,206,416,548],webserver_en:[199,201],webserver_interfac:[187,197,201],webserver_port:[4,197,201],webserver_threadpool_limit:201,webservic:199,websit:[0,18,24,49,50,51,52,75,119,120,121,122,124,132,149,151,161,164,165,178,181,187,197,198,199,201,205,206,449,465,502,504,530,548],website_templ:201,websocket:[0,51,52,62,122,192,197,201,202,431,437,448,460,548],websocket_client_en:201,websocket_client_interfac:[187,197,201],websocket_client_port:[197,201],websocket_client_url:[182,187,197,201],websocket_clos:448,websocket_protocol_class:201,websocketcli:[201,448],websocketclientfactori:431,websocketclientprotocol:431,websocketserverfactori:437,websocketserverprotocol:448,weed:[1,215],week:[0,86,94,117,132,163,201,251,489,497],weeklylogfil:489,weigh:[167,451],weight:[69,104,116,119,125,139,140,165,183,341,342,350,353,469,548],weird:[31,126,142,144,496],welcom:[0,25,53,64,80,118,123,125,149,168,189],well:[0,1,9,10,11,12,13,14,18,19,23,26,27,28,29,30,31,32,37,39,41,44,48,50,53,55,56,57,62,63,68,69,70,73,75,80,87,90,94,95,101,104,111,112,116,117,118,119,121,122,123,124,130,133,134,135,136,137,138,141,142,143,144,147,151,152,153,157,158,159,161,162,163,164,166,168,169,172,173,175,178,179,183,188,190,191,196,198,199,200,201,211,215,216,217,222,235,236,260,270,277,278,279,287,290,306,314,315,316,320,341,344,353,354,358,368,374,390,402,410,414,416,420,429,431,432,438,455,463,468,469,473,477,480,483,484,492,496,505,512],went:[10,12,136,144,161,190,203,411,415],weonewaymaplink:[116,342],were:[0,6,10,14,15,19,21,23,28,30,41,42,48,51,54,67,69,85,94,102,111,116,117,118,122,130,132,133,134,135,136,142,158,162,164,167,168,169,175,176,184,192,196,200,208,214,215,216,227,236,270,341,342,386,390,402,406,467,470,474,483,493,496,499,501],weren:163,werewolf:[125,127,153],werewolv:130,werkzeug:496,wesson:58,west:[98,116,128,153,158,159,170,222,341,342,376],west_east:170,west_exit:376,west_room:98,western:170,westward:376,wet:142,wether:[210,287,476],wevennia:80,wflame:315,wflushmem:232,wfull:315,wguild:227,what:[0,1,2,5,6,7,8,10,11,12,13,15,16,19,20,21,23,24,28,30,31,32,33,35,37,41,42,44,47,48,49,52,53,54,55,57,58,60,61,62,65,67,68,69,70,72,74,78,80,85,87,94,95,96,98,103,104,105,110,113,116,117,118,119,122,123,125,126,128,130,131,133,134,135,138,140,141,144,145,146,147,150,151,152,153,155,157,158,159,160,161,162,163,164,166,168,170,171,172,174,175,176,177,178,179,180,181,182,183,187,189,193,195,197,198,199,200,201,203,208,213,215,216,217,219,222,233,236,261,277,279,280,284,296,297,309,314,315,341,342,343,344,354,358,370,374,376,380,386,392,394,398,402,405,406,407,420,422,425,432,444,449,464,466,468,470,471,473,474,480,490,491,494,496,497,519,525,527,528,536,545,546,548],whatev:[10,12,13,14,16,20,23,28,30,37,62,80,91,94,95,100,116,122,135,136,140,141,143,152,160,162,167,169,170,175,178,179,180,183,187,190,192,201,208,209,216,222,277,296,315,366,374,375,384,402,407,410,411,431,440,443,448,461,468,481,490,545],wheat:296,wheel:[47,85,161,191,193,195],whelp:[229,274],when:[0,1,4,6,9,10,11,12,13,14,15,16,17,18,19,20,21,23,25,27,28,29,30,31,32,33,34,36,37,39,41,42,44,45,46,48,50,51,52,53,54,55,57,58,60,62,63,64,65,67,68,69,70,72,75,78,80,81,83,86,88,89,90,91,92,94,95,96,97,98,101,104,106,110,111,114,115,116,117,118,119,122,123,124,125,126,127,128,130,131,132,133,134,135,136,137,138,139,141,142,143,145,146,147,148,149,150,151,152,155,156,157,158,159,160,161,162,163,164,167,168,169,170,171,172,173,174,175,176,177,178,180,181,182,183,184,186,187,190,191,192,193,195,197,198,199,200,201,203,205,208,209,211,213,215,216,217,219,221,222,227,228,229,230,231,232,234,236,237,238,243,245,251,254,255,261,262,264,274,279,280,281,282,287,290,293,296,297,300,303,306,309,312,313,314,315,316,320,326,333,340,341,342,343,347,350,353,354,358,363,364,368,370,373,374,375,376,384,386,387,390,393,394,397,398,400,401,402,404,406,407,409,410,411,413,414,415,417,420,422,426,427,429,430,431,432,433,434,435,436,438,440,441,442,443,444,445,448,449,451,452,458,459,460,461,462,463,468,470,471,473,474,476,477,478,479,480,481,482,487,488,489,491,496,500,509,525,527,536,540,542,547],when_stop:420,whenev:[9,11,14,19,23,32,33,34,36,41,42,45,54,58,63,70,80,95,122,133,144,153,170,171,190,192,197,198,208,216,236,282,374,375,376,400,402,411,413,422,439,459,460,461],where:[0,1,4,6,7,8,12,14,15,16,19,21,23,27,28,29,30,31,33,35,39,41,42,44,48,50,51,53,54,55,58,59,60,62,64,65,67,68,69,70,73,75,76,80,84,85,94,95,96,98,104,110,116,117,119,122,124,125,126,127,128,132,133,134,135,136,138,139,140,142,144,145,146,149,151,152,153,155,157,159,160,161,162,163,164,168,169,170,171,172,174,175,178,179,183,190,191,192,193,195,197,199,200,201,214,215,220,222,228,229,231,236,237,279,293,297,303,314,333,341,342,343,344,347,353,354,357,358,375,376,381,395,397,398,400,402,406,407,411,420,422,425,429,452,457,461,468,470,473,474,478,480,481,482,483,484,490,491,494,496,500,512,519,547,548],wherea:[0,1,6,7,8,11,14,15,21,23,28,33,44,48,55,57,58,60,62,67,70,85,116,135,147,152,160,166,168,199,201,210,296,342,353,400,409,415,449,468,487],whereabout:138,wherebi:315,wherev:[10,58,80,110,122,137,170,187,192,193,245,314,342,358,380],whether:[28,55,76,95,96,121,134,157,163,164,174,201,208,209,216,222,227,229,236,293,312,313,314,316,384,390,402,415,431,448,463,468,469,473,490,492,496,499],whewiu:124,which:[0,1,6,7,8,9,10,12,14,15,16,17,19,20,21,23,24,26,28,29,30,31,32,33,35,36,37,39,41,42,44,45,46,47,48,49,51,52,54,55,57,58,60,62,63,65,67,68,69,70,73,74,75,80,81,82,85,89,90,91,93,94,95,96,98,107,109,110,111,112,114,116,117,118,119,122,123,124,126,128,129,130,131,132,133,134,135,136,137,138,140,141,142,143,144,146,147,149,151,153,154,155,156,157,158,159,160,161,162,163,164,166,167,168,169,170,171,172,173,174,175,176,177,178,179,183,184,186,187,188,189,192,193,195,197,199,200,201,203,208,209,213,215,216,217,219,220,222,228,229,230,233,234,236,237,238,245,248,251,264,274,277,279,284,287,290,293,296,297,303,306,312,313,314,315,316,320,326,333,341,342,343,344,350,354,358,368,370,374,375,376,380,381,384,390,394,398,400,401,402,406,407,409,410,411,413,415,417,419,420,424,425,429,432,438,440,448,449,451,452,459,460,461,463,466,468,469,470,471,473,474,476,477,480,481,482,483,484,487,489,490,492,493,494,496,499,505,512,519,522,525,527,528,529,536,542,545,547],whichev:[20,140,143,197,199,376],whilst:[98,170],whimper:138,whisk:282,whisp:[104,353],whisper:[26,94,95,117,126,228,264,277,279,353,354,402],whistl:58,white:[32,60,75,176,201,473,496],whitelist:32,whitenois:[110,117,356,358],whitespac:[0,16,20,23,125,126,130,144,162,166,175,230,306,354,473,474,482,496],who:[14,19,26,28,30,31,33,36,39,41,42,48,49,54,55,58,60,64,89,94,95,102,121,123,125,130,134,135,136,138,140,141,143,144,146,147,152,159,160,162,174,175,177,178,199,201,209,217,219,222,227,236,238,261,270,277,279,287,312,313,314,315,316,353,354,375,384,392,394,398,402,407,470,478,480,483,500,517],whoever:178,whole:[36,46,56,72,116,117,121,123,126,140,142,144,159,161,170,175,187,215,222,277,316,482,527],wholist:[19,236],whome:222,whomev:[146,174,368],whoopi:144,whose:[30,48,68,85,130,132,133,208,217,233,261,312,314,354,390,409,425,475,480,483,496],whould:480,why:[1,14,28,48,55,80,89,94,95,96,121,122,128,141,143,144,153,157,167,169,170,175,176,190,193,195,199,220,312,316,342,386,417,418,480],wick:468,wide:[20,30,35,56,67,115,116,135,146,153,157,162,169,187,220,314,315,333,479,482,496],widen:[55,144],wider:[0,55,153,157,220,482],widest:496,widget:[492,504,505,506,508,509,510,512,519,536],width:[0,18,20,23,30,31,32,41,56,116,153,159,170,205,217,341,344,425,440,459,473,478,479,481,482,483,496],wield:[0,41,112,141,145,167,313],wifi:[197,199],wiki:[23,48,64,69,84,121,122,124,147,162,165,170,181,201,245,293,448,548],wiki_account_handl:123,wiki_account_signup_allow:123,wiki_can:123,wiki_can_admin:123,wiki_can_assign:123,wiki_can_assign_own:123,wiki_can_change_permiss:123,wiki_can_delet:123,wiki_can_moder:123,wiki_can_read:123,wiki_can_writ:123,wikiconfig:123,wikipedia:[10,12,17,70,121,122,147,201,448],wil:[14,19],wild:[53,69,116,130,140,176,343,344],wildcard:[36,55,116,161,220,222,341,343,344,496],wildcard_to_regexp:496,wilder:[205,206,239,318,548],wildernessexit:333,wildernessmap:333,wildernessmapprovid:[115,333],wildernessroom:333,wildernessscript:333,wildli:353,wildr:94,wilfr:94,will_suppress_ga:442,will_transform:130,will_ttyp:447,willing:[140,143,162,181,548],wim:75,win10:[193,195],win11:195,win7:[193,195],win8:195,win:[28,124,147,169,184,277],wind:[94,138,177],winder:142,windmil:296,window:[0,1,7,8,9,11,12,21,29,37,44,51,52,65,68,116,119,122,123,125,128,135,141,153,158,159,183,189,190,196,201,202,203,217,229,279,281,420,436,459,463,496],windowid:459,windows10:193,wine:[137,138],wingd:170,winpti:124,winter:[90,320],wintertim:141,wintext_templ:146,wip:[0,119,548],wipe:[11,12,14,15,19,26,89,124,126,135,170,183,215,222,232,281,314],wire:[20,62,65,68,70,122,187,197,231,417,429,430,461,473],wis:162,wisdom:7,wise:[1,12,15,16,17,33,73,133,141,162,172],wiser:[42,128,144],wish:[4,12,23,80,151,157,173,191,201,245,316,473,495,536],with_tag:309,withdraw:[147,316],withdrawl:316,within:[0,1,8,12,21,23,28,30,31,47,51,54,75,80,89,90,93,116,118,119,122,124,130,132,135,137,144,147,151,157,159,160,162,171,172,173,176,179,182,183,184,192,195,197,208,211,213,222,258,287,320,343,350,381,393,402,407,414,463,468,469,473,483,489,496,536,542,547],withot:342,without:[0,6,7,8,10,11,12,14,15,16,19,20,21,23,25,27,28,30,35,40,41,42,45,47,48,50,52,53,55,56,60,62,63,64,67,68,69,72,80,83,85,87,89,90,94,95,96,98,104,107,111,115,116,117,119,122,126,128,129,130,132,134,135,136,140,141,142,143,144,151,152,153,155,156,158,159,161,162,169,172,174,175,176,178,182,183,187,190,192,193,195,197,200,201,208,209,214,217,219,220,222,227,228,229,230,231,232,233,236,237,238,243,246,258,261,270,282,287,290,296,312,314,316,320,326,342,353,354,358,368,374,376,390,398,400,402,405,406,407,413,414,429,440,443,444,451,461,462,468,470,473,474,476,477,478,480,481,483,489,492,493,494,496,529],withstand:33,wiz:162,wizard:[0,41,94,142,202,376,407,418,420],wkei:222,wlocat:222,wlock:222,wmagic:315,wmass:315,wndb_:222,wnn:19,woah:[133,134],woman:[141,142],won:[6,13,14,15,17,21,48,49,51,54,55,60,65,67,80,89,91,95,96,105,117,119,123,126,130,134,135,139,140,142,146,152,155,161,164,166,168,169,170,175,179,180,183,192,195,216,339,363,368,384,386,465,473,492],wonder:[56,124,160,167],wont_suppress_ga:442,wont_ttyp:447,woo:126,wood:[85,142,296,297],wooden:[41,85,296,297],woodenpuppetrecip:85,woosh:152,word:[0,7,8,12,16,19,20,23,27,30,31,37,58,64,68,83,94,95,104,117,125,126,133,135,141,143,151,159,163,164,169,170,176,189,201,214,229,230,234,255,264,284,353,354,400,432,478,483,493,496,500,548],word_fil:353,word_length_vari:[104,353],wordi:353,work:[0,1,2,4,6,7,8,9,10,11,13,14,15,16,17,19,20,21,24,26,28,30,31,33,34,37,41,42,44,46,47,50,52,53,54,56,58,60,63,65,67,69,72,77,80,83,85,89,90,96,101,107,111,117,118,119,122,123,124,125,126,128,130,131,132,133,134,135,136,137,139,140,141,143,144,147,148,150,151,152,153,154,155,158,159,160,161,162,163,166,168,170,171,175,176,177,178,179,182,183,184,187,188,189,190,191,193,195,196,197,199,201,202,213,216,217,219,222,227,228,230,232,234,236,245,270,274,277,287,296,298,306,309,314,315,316,320,326,333,342,354,376,390,392,394,397,398,402,406,407,420,424,425,437,452,465,467,468,470,471,474,479,480,481,482,490,496,529,540,541,542,544,546,548],workaround:[12,192,195,202],workflow:[0,504,548],world:[0,10,14,15,16,17,19,20,21,23,28,31,37,39,41,53,54,67,69,70,77,85,86,89,94,98,101,110,115,116,117,119,121,122,124,125,127,129,133,134,136,139,143,145,146,147,148,152,157,159,161,162,163,167,170,171,174,175,180,181,189,190,197,200,201,208,221,222,227,229,251,287,296,306,312,313,314,315,316,318,333,341,354,358,372,375,376,392,394,410,459,461,473,474,484,494,548],world_map:170,worm:[142,159],worm_has_map:159,worn:[81,117,290,313],worri:[4,14,17,28,50,60,70,94,96,118,130,138,144,157,175,200,279,280,287],wors:[141,143,195],worst:140,worth:[7,28,42,48,58,96,118,141,142,143,152,155,169,178,181,182,287],worthi:140,worthless:197,would:[4,6,7,9,10,11,14,15,16,17,20,21,23,28,30,31,33,35,37,41,42,44,46,47,48,52,53,54,56,57,60,67,68,73,74,75,77,80,81,83,85,86,94,95,96,110,111,116,117,121,122,123,124,125,126,128,130,131,132,133,134,135,136,140,141,142,143,144,146,147,151,152,153,155,157,158,159,160,161,162,163,164,166,167,168,169,170,171,172,174,175,176,178,179,182,192,195,197,208,214,215,216,217,222,231,236,249,251,261,274,279,287,296,297,333,341,342,353,358,368,390,392,394,398,406,407,432,444,470,473,474,477,480,491,492,494,496,505,512],wouldn:[31,134,157,176],wound:315,wow:[143,164],wpass:[312,314,316],wpermiss:222,wprototype_desc:222,wprototype_kei:222,wprototype_lock:222,wprototype_par:222,wprototype_tag:222,wrap:[0,28,41,42,54,91,130,135,137,144,151,156,159,201,279,290,297,354,384,427,467,482,496],wrap_conflictual_object:492,wrapper:[0,7,20,28,32,44,48,54,67,85,155,208,211,237,238,282,284,326,358,394,395,401,402,410,414,425,427,459,468,470,471,473,482,483,487,488,489,496,507,512],wresid:232,write:[2,5,7,14,16,17,20,21,23,24,28,31,36,48,54,56,58,61,68,69,72,76,80,89,94,95,96,118,119,123,126,128,130,133,134,135,136,138,141,142,143,144,153,158,160,162,163,169,175,183,186,188,189,193,195,222,227,229,236,243,245,274,380,381,402,429,433,489,494,545,547,548],writeabl:191,written:[17,19,20,41,52,116,119,126,130,132,133,134,135,136,137,160,161,162,164,178,179,181,185,199,204,229,342,380,474,545],wrong:[0,1,6,10,135,141,166,168,183,195,201,203,215,222,232,296,298,354],wrote:[130,133,494],wserver:232,wservic:227,wsgi:[182,465],wsgi_resourc:465,wsgiwebserv:465,wshoot:316,wsl:[119,193,195],wss:[182,197,201,202,548],wstatu:316,wtypeclass:222,wuse:314,wwhere:402,wwithdraw:316,www:[11,49,69,80,119,121,122,124,157,178,182,197,201,205,232,435,436,442,444,495,499,536],wyou:167,x0c:222,x1b:[473,495],x2x:162,x4x:479,x5x:479,x6x:479,x7x:479,x8x:479,x9x:479,x_r:157,xcode:195,xforward:465,xgettext:64,xgiven:344,xit:[80,245],xmlcharrefreplac:473,xp_gain:146,xpo:482,xtag:499,xterm256:[32,51,65,71,82,135,165,166,201,219,248,350,425,440,443,473,548],xterm256_bg:473,xterm256_bg_sub:473,xterm256_fg:473,xterm256_fg_sub:473,xterm256_gbg:473,xterm256_gbg_sub:473,xterm256_gfg:473,xterm256_gfg_sub:473,xterm:[60,135,176],xterms256:60,xval:23,xviewmiddlewar:201,xxx:[6,105,153,386],xxxx:[105,386],xxxxx1xxxxx:479,xxxxx3xxxxx:479,xxxxx:94,xxxxxxx2xxxxxxx:479,xxxxxxxxxx3xxxxxxxxxxx:162,xxxxxxxxxx4xxxxxxxxxxx:162,xxxxxxxxxxx:479,xxxxxxxxxxxxxx1xxxxxxxxxxxxxxx:162,xxxxxxxxxxxxxxxxxxxxxx:162,xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx:162,xygrid:[341,342],xymap:[205,206,239,318,334,335,336,339,342,343,344],xymap_data:[116,341,343],xymap_data_list:[116,341,343],xymap_legend:[116,205,206,239,318,334,336,339],xyroom:344,xyz:[36,116,335,338,342,343,344],xyz_destin:[116,344],xyz_destination_coord:344,xyz_exit:[116,338,342],xyz_room:[116,338,342],xyzcommand:[116,336,337],xyzexit:[343,344],xyzexit_prototype_overrid:116,xyzexitmanag:344,xyzgrid:[0,205,206,239,318,548],xyzgrid_cmdset:335,xyzgrid_use_db_prototyp:116,xyzgridcmdset:[116,335],xyzmanag:344,xyzmap:116,xyzroom:[205,206,239,318,334,343],xyzroom_prototype_overrid:116,y_r:157,yai:201,yan:[60,473],yank:27,yard:113,year:[0,68,69,75,86,94,117,118,121,125,142,163,197,251,484,489,496,536],yearli:[163,197],yeast:[85,117,296],yellow:[12,60,116,176,375],yer:141,yes:[0,23,28,54,58,95,119,157,176,222,232,264,418,478,480,496],yes_act:480,yes_no_question_cmdset:480,yesno:[28,119,478],yesnoquestioncmdset:480,yet:[0,4,6,11,12,13,16,25,28,41,44,55,64,67,80,84,95,96,98,116,117,122,123,126,130,133,143,144,153,154,159,170,174,178,179,181,185,187,190,193,195,197,204,208,227,234,255,261,287,293,342,368,398,401,414,438,461,465,473,543],yield:[0,23,33,54,69,76,183,222,381,482,494,496],yml:[5,192],yogurt:[103,309],yoshimura:75,you:[0,2,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,23,25,27,28,30,31,32,33,34,35,36,37,39,40,41,42,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,62,63,64,65,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,88,89,90,91,93,94,95,96,97,98,99,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,122,123,124,126,127,128,129,130,131,132,133,135,136,137,139,140,141,143,144,145,146,147,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,203,208,216,217,219,222,227,228,229,230,231,232,233,234,236,245,248,251,259,260,261,264,270,274,277,279,280,284,287,290,293,296,297,303,306,309,312,313,314,315,316,320,326,329,333,335,337,341,342,350,353,354,357,358,363,368,370,375,376,380,381,384,386,390,392,397,398,402,407,411,412,413,414,415,422,431,432,433,449,451,461,463,465,466,468,470,473,474,476,479,480,482,483,484,492,493,494,496,499,500,501,516,519,521,522,536,545,547,548],you_obj:30,you_replac:277,your:[0,2,4,5,6,7,9,14,15,16,17,18,19,20,21,24,25,27,28,30,31,33,35,36,39,41,42,44,45,46,47,48,49,50,52,53,54,55,56,58,60,61,63,64,65,68,70,72,73,74,75,76,77,79,80,81,82,83,84,85,86,87,88,90,91,92,93,94,95,96,98,99,101,104,106,107,108,111,112,113,114,115,116,117,118,119,121,122,124,125,127,130,131,133,134,135,136,137,138,139,140,141,144,145,146,147,148,149,150,151,152,153,155,156,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,179,180,181,182,183,185,186,187,188,189,190,191,193,194,196,198,200,201,202,203,205,206,208,211,214,216,217,219,220,222,227,228,229,232,233,234,239,245,246,248,251,255,260,274,277,279,287,290,293,296,297,312,313,314,315,316,320,326,329,333,335,336,341,345,347,350,353,354,356,363,368,375,376,380,381,384,386,390,397,398,401,451,470,473,478,480,482,483,492,493,494,496,497,500,501,505,512,522,536,542,545,548],your_act:279,your_bucket_nam:75,your_email:[12,201],yourchar:135,yourgam:380,yourgamenam:75,yourhostnam:187,yournam:[118,126,133,134,182],yourpassword:183,yourrepo:9,yourself:[1,5,6,10,12,13,16,21,28,33,37,48,53,56,57,58,67,69,73,75,80,94,96,98,107,110,113,116,117,118,119,121,125,127,134,135,137,139,141,142,143,144,146,162,164,169,170,175,180,183,195,197,222,228,277,279,287,300,315,326,335,354,358,363,480,483,500,501],yourselv:[58,483,500,501],yoursit:178,yourtest:10,yourusernam:12,yourwebsit:178,yousuck:55,yousuckmor:55,youth:[91,384],youtub:12,ypo:482,yrs:251,ythi:60,yum:[12,182,187],yvonn:162,z_destin:344,z_r:157,z_sourc:344,zcoord:[335,339,341,343],zed:181,zero:[20,35,41,128,133,135,137,195,227,293,296,343,354,395,402,468,473,483],zip:199,zlib:[191,429,433],zmud:[184,435],zone:[46,61,95,132,143,160,181,201,471,489,548],zoord:343,zopeinterfac:195,zuggsoft:435},titles:["Changelog","Coding Introduction","Coding and development help","Continuous Integration","Continuous Integration - TeamCity (linux)","Continuous integration with Travis","Debugging","Profiling","Quirks","Setting up PyCharm with Evennia","Unit Testing","Updating Your Game","Version Control","Accounts","Attributes","Batch Code Processor","Batch Command Processor","Batch Processors","Bootstrap Components and Utilities","Channels","Coding Utils","Command Sets","Command System","Commands","Core Components","Connection Screen","Default Commands","EvEditor","EvMenu","EvMore","The Inline Function Parser","Help System","Inputfuncs","Locks","MonitorHandler","Msg","Nicks","Objects","Outputfuncs","Permissions","Portal And Server","Spawner and Prototypes","Scripts","Server component","Sessions","Signals","Tags","TickerHandler","Typeclasses","Evennia REST API","The Web Admin","Web Client","Webserver","Game website","Async Process","Banning","Bootstrap & Evennia","Building Permissions","Sending different messages depending on viewpoint and receiver","Clickable links","Colors","Core Concepts","Custom Protocols","Guest Logins","Internationalization","Messagepath","Multisession modes","New Models","OOB","Soft Code","Text Encodings","In-text tags parsed by Evennia","Using MUX as a Standard","Web Features","Zones","AWSstorage system","Input/Output Auditing","Barter system","Batch processor examples","Script example","Building menu","Clothing","Additional Color markups","Components","Cooldowns","Crafting system","Custom gameime","Dice roller","Email-based login system","EvscapeRoom","Extended Room","Easy fillable form","Gendersub","Health Bar","Evennia in-game Python system","Dialogues in events","A voice operated elevator using events","In-Game Mail system","Map Builder","Menu-based login system","TutorialMirror","Evennia Multidescer","Legacy Comms-commands","Puzzles System","Roleplaying base system for Evennia","Pseudo-random generator and registry","Red Button example","SimpleDoor","Slow Exit","Talkative NPC example","Traits","Easy menu selection tree","Turn based battle system framework","Evennia Tutorial World","Unix-like Command style","Wilderness system","XYZgrid","Contribs","How To Contribute And Get Help","Contributing to Evennia Docs","API Summary","Evennia Introduction","Glossary","Add a wiki on your website","Arxcode installing help","Beginner Tutorial","8. Adding custom commands","Part 1: What we have","1. Using commands and building stuff","10. Creating things","12. Advanced searching - Django Database queries","6. Overview of the Evennia library","4. Overview of your new Game Dir","7. Making objects persistent","9. Parsing Command input","3. Intro to using Python with Evennia","5. Introduction to Python classes and objects","11. Searching for things","2. The Tutorial World","Part 2: What we want","On Planning a Game","Planning the use of some useful contribs","Planning our tutorial game","Where do I begin?","Making a sittable object","Part 3: How we get there","Implementing a game rule system","Turn based Combat System","Part 4: Using what we created","Add a simple new web page","Part 5: Showing the world","Web Tutorial","Building a mech tutorial","Coding FAQ","Command Cooldown","Command Duration","Command Prompt","Coordinates","Default Exit Errors","Dynamic In Game Map","Evennia for Diku Users","Evennia for MUSH Users","Evennia for roleplaying sessions","Gametime Tutorial","Help System Tutorial","Tutorials and Howto\u2019s","Manually Configuring Color","Mass and weight for objects","NPC shop Tutorial","Parsing command arguments, theory and best practices","Static In Game Map","Tutorial Aggressive NPCs","Tutorial NPCs listening","Tutorial Tweeting Game Stats","Tutorial Vehicles","Tutorial for basic MUSH like game","Understanding Color Tags","Weather Tutorial","Web Character Generation","Web Character View Tutorial","Licensing Q&A","Links","Apache Config","Choosing An SQL Server","Client Support Grid","Evennia Game Index","Grapevine","Making Evennia, HTTPS and WSS (Secure Websockets) play nicely together","How to connect Evennia to Twitter","IRC","Installation","Installing on Android","Installing with Docker","Installing with GIT","Non-interactive setup","Installation Troubleshooting","Upgrading an existing installation","Online Setup","RSS","Security","Game Settings and Configuration direcotry","Evennia Default settings file","Server Setup and Life","Start Stop Reload","Unimplemented","evennia","evennia","evennia.accounts","evennia.accounts.accounts","evennia.accounts.bots","evennia.accounts.manager","evennia.accounts.models","evennia.commands","evennia.commands.cmdhandler","evennia.commands.cmdparser","evennia.commands.cmdset","evennia.commands.cmdsethandler","evennia.commands.command","evennia.commands.default","evennia.commands.default.account","evennia.commands.default.admin","evennia.commands.default.batchprocess","evennia.commands.default.building","evennia.commands.default.cmdset_account","evennia.commands.default.cmdset_character","evennia.commands.default.cmdset_session","evennia.commands.default.cmdset_unloggedin","evennia.commands.default.comms","evennia.commands.default.general","evennia.commands.default.help","evennia.commands.default.muxcommand","evennia.commands.default.syscommands","evennia.commands.default.system","evennia.commands.default.tests","evennia.commands.default.unloggedin","evennia.comms","evennia.comms.comms","evennia.comms.managers","evennia.comms.models","evennia.contrib","evennia.contrib.base_systems","evennia.contrib.base_systems.awsstorage","evennia.contrib.base_systems.awsstorage.aws_s3_cdn","evennia.contrib.base_systems.awsstorage.tests","evennia.contrib.base_systems.building_menu","evennia.contrib.base_systems.building_menu.building_menu","evennia.contrib.base_systems.building_menu.tests","evennia.contrib.base_systems.color_markups","evennia.contrib.base_systems.color_markups.color_markups","evennia.contrib.base_systems.color_markups.tests","evennia.contrib.base_systems.custom_gametime","evennia.contrib.base_systems.custom_gametime.custom_gametime","evennia.contrib.base_systems.custom_gametime.tests","evennia.contrib.base_systems.email_login","evennia.contrib.base_systems.email_login.connection_screens","evennia.contrib.base_systems.email_login.email_login","evennia.contrib.base_systems.email_login.tests","evennia.contrib.base_systems.ingame_python","evennia.contrib.base_systems.ingame_python.callbackhandler","evennia.contrib.base_systems.ingame_python.commands","evennia.contrib.base_systems.ingame_python.eventfuncs","evennia.contrib.base_systems.ingame_python.scripts","evennia.contrib.base_systems.ingame_python.tests","evennia.contrib.base_systems.ingame_python.typeclasses","evennia.contrib.base_systems.ingame_python.utils","evennia.contrib.base_systems.menu_login","evennia.contrib.base_systems.menu_login.connection_screens","evennia.contrib.base_systems.menu_login.menu_login","evennia.contrib.base_systems.menu_login.tests","evennia.contrib.base_systems.mux_comms_cmds","evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds","evennia.contrib.base_systems.mux_comms_cmds.tests","evennia.contrib.base_systems.unixcommand","evennia.contrib.base_systems.unixcommand.tests","evennia.contrib.base_systems.unixcommand.unixcommand","evennia.contrib.full_systems","evennia.contrib.full_systems.evscaperoom","evennia.contrib.full_systems.evscaperoom.commands","evennia.contrib.full_systems.evscaperoom.menu","evennia.contrib.full_systems.evscaperoom.objects","evennia.contrib.full_systems.evscaperoom.room","evennia.contrib.full_systems.evscaperoom.scripts","evennia.contrib.full_systems.evscaperoom.state","evennia.contrib.full_systems.evscaperoom.tests","evennia.contrib.full_systems.evscaperoom.utils","evennia.contrib.game_systems","evennia.contrib.game_systems.barter","evennia.contrib.game_systems.barter.barter","evennia.contrib.game_systems.barter.tests","evennia.contrib.game_systems.clothing","evennia.contrib.game_systems.clothing.clothing","evennia.contrib.game_systems.clothing.tests","evennia.contrib.game_systems.cooldowns","evennia.contrib.game_systems.cooldowns.cooldowns","evennia.contrib.game_systems.cooldowns.tests","evennia.contrib.game_systems.crafting","evennia.contrib.game_systems.crafting.crafting","evennia.contrib.game_systems.crafting.example_recipes","evennia.contrib.game_systems.crafting.tests","evennia.contrib.game_systems.gendersub","evennia.contrib.game_systems.gendersub.gendersub","evennia.contrib.game_systems.gendersub.tests","evennia.contrib.game_systems.mail","evennia.contrib.game_systems.mail.mail","evennia.contrib.game_systems.mail.tests","evennia.contrib.game_systems.multidescer","evennia.contrib.game_systems.multidescer.multidescer","evennia.contrib.game_systems.multidescer.tests","evennia.contrib.game_systems.puzzles","evennia.contrib.game_systems.puzzles.puzzles","evennia.contrib.game_systems.puzzles.tests","evennia.contrib.game_systems.turnbattle","evennia.contrib.game_systems.turnbattle.tb_basic","evennia.contrib.game_systems.turnbattle.tb_equip","evennia.contrib.game_systems.turnbattle.tb_items","evennia.contrib.game_systems.turnbattle.tb_magic","evennia.contrib.game_systems.turnbattle.tb_range","evennia.contrib.game_systems.turnbattle.tests","evennia.contrib.grid","evennia.contrib.grid.extended_room","evennia.contrib.grid.extended_room.extended_room","evennia.contrib.grid.extended_room.tests","evennia.contrib.grid.mapbuilder","evennia.contrib.grid.mapbuilder.mapbuilder","evennia.contrib.grid.mapbuilder.tests","evennia.contrib.grid.simpledoor","evennia.contrib.grid.simpledoor.simpledoor","evennia.contrib.grid.simpledoor.tests","evennia.contrib.grid.slow_exit","evennia.contrib.grid.slow_exit.slow_exit","evennia.contrib.grid.slow_exit.tests","evennia.contrib.grid.wilderness","evennia.contrib.grid.wilderness.tests","evennia.contrib.grid.wilderness.wilderness","evennia.contrib.grid.xyzgrid","evennia.contrib.grid.xyzgrid.commands","evennia.contrib.grid.xyzgrid.example","evennia.contrib.grid.xyzgrid.launchcmd","evennia.contrib.grid.xyzgrid.prototypes","evennia.contrib.grid.xyzgrid.tests","evennia.contrib.grid.xyzgrid.utils","evennia.contrib.grid.xyzgrid.xymap","evennia.contrib.grid.xyzgrid.xymap_legend","evennia.contrib.grid.xyzgrid.xyzgrid","evennia.contrib.grid.xyzgrid.xyzroom","evennia.contrib.rpg","evennia.contrib.rpg.dice","evennia.contrib.rpg.dice.dice","evennia.contrib.rpg.dice.tests","evennia.contrib.rpg.health_bar","evennia.contrib.rpg.health_bar.health_bar","evennia.contrib.rpg.health_bar.tests","evennia.contrib.rpg.rpsystem","evennia.contrib.rpg.rpsystem.rplanguage","evennia.contrib.rpg.rpsystem.rpsystem","evennia.contrib.rpg.rpsystem.tests","evennia.contrib.rpg.traits","evennia.contrib.rpg.traits.tests","evennia.contrib.rpg.traits.traits","evennia.contrib.tutorials","evennia.contrib.tutorials.batchprocessor","evennia.contrib.tutorials.batchprocessor.example_batch_code","evennia.contrib.tutorials.bodyfunctions","evennia.contrib.tutorials.bodyfunctions.bodyfunctions","evennia.contrib.tutorials.bodyfunctions.tests","evennia.contrib.tutorials.mirror","evennia.contrib.tutorials.mirror.mirror","evennia.contrib.tutorials.red_button","evennia.contrib.tutorials.red_button.red_button","evennia.contrib.tutorials.talking_npc","evennia.contrib.tutorials.talking_npc.talking_npc","evennia.contrib.tutorials.talking_npc.tests","evennia.contrib.tutorials.tutorial_world","evennia.contrib.tutorials.tutorial_world.intro_menu","evennia.contrib.tutorials.tutorial_world.mob","evennia.contrib.tutorials.tutorial_world.objects","evennia.contrib.tutorials.tutorial_world.rooms","evennia.contrib.tutorials.tutorial_world.tests","evennia.contrib.utils","evennia.contrib.utils.auditing","evennia.contrib.utils.auditing.outputs","evennia.contrib.utils.auditing.server","evennia.contrib.utils.auditing.tests","evennia.contrib.utils.fieldfill","evennia.contrib.utils.fieldfill.fieldfill","evennia.contrib.utils.random_string_generator","evennia.contrib.utils.random_string_generator.random_string_generator","evennia.contrib.utils.random_string_generator.tests","evennia.contrib.utils.tree_select","evennia.contrib.utils.tree_select.tests","evennia.contrib.utils.tree_select.tree_select","evennia.help","evennia.help.filehelp","evennia.help.manager","evennia.help.models","evennia.help.utils","evennia.locks","evennia.locks.lockfuncs","evennia.locks.lockhandler","evennia.objects","evennia.objects.manager","evennia.objects.models","evennia.objects.objects","evennia.prototypes","evennia.prototypes.menus","evennia.prototypes.protfuncs","evennia.prototypes.prototypes","evennia.prototypes.spawner","evennia.scripts","evennia.scripts.manager","evennia.scripts.models","evennia.scripts.monitorhandler","evennia.scripts.scripthandler","evennia.scripts.scripts","evennia.scripts.taskhandler","evennia.scripts.tickerhandler","evennia.server","evennia.server.amp_client","evennia.server.connection_wizard","evennia.server.deprecations","evennia.server.evennia_launcher","evennia.server.game_index_client","evennia.server.game_index_client.client","evennia.server.game_index_client.service","evennia.server.initial_setup","evennia.server.inputfuncs","evennia.server.manager","evennia.server.models","evennia.server.portal","evennia.server.portal.amp","evennia.server.portal.amp_server","evennia.server.portal.grapevine","evennia.server.portal.irc","evennia.server.portal.mccp","evennia.server.portal.mssp","evennia.server.portal.mxp","evennia.server.portal.naws","evennia.server.portal.portal","evennia.server.portal.portalsessionhandler","evennia.server.portal.rss","evennia.server.portal.ssh","evennia.server.portal.ssl","evennia.server.portal.suppress_ga","evennia.server.portal.telnet","evennia.server.portal.telnet_oob","evennia.server.portal.telnet_ssl","evennia.server.portal.tests","evennia.server.portal.ttype","evennia.server.portal.webclient","evennia.server.portal.webclient_ajax","evennia.server.profiling","evennia.server.profiling.dummyrunner","evennia.server.profiling.dummyrunner_settings","evennia.server.profiling.memplot","evennia.server.profiling.settings_mixin","evennia.server.profiling.test_queries","evennia.server.profiling.tests","evennia.server.profiling.timetrace","evennia.server.server","evennia.server.serversession","evennia.server.session","evennia.server.sessionhandler","evennia.server.signals","evennia.server.throttle","evennia.server.validators","evennia.server.webserver","evennia.settings_default","evennia.typeclasses","evennia.typeclasses.attributes","evennia.typeclasses.managers","evennia.typeclasses.models","evennia.typeclasses.tags","evennia.utils","evennia.utils.ansi","evennia.utils.batchprocessors","evennia.utils.containers","evennia.utils.create","evennia.utils.dbserialize","evennia.utils.eveditor","evennia.utils.evform","evennia.utils.evmenu","evennia.utils.evmore","evennia.utils.evtable","evennia.utils.funcparser","evennia.utils.gametime","evennia.utils.idmapper","evennia.utils.idmapper.manager","evennia.utils.idmapper.models","evennia.utils.idmapper.tests","evennia.utils.logger","evennia.utils.optionclasses","evennia.utils.optionhandler","evennia.utils.picklefield","evennia.utils.search","evennia.utils.test_resources","evennia.utils.text2html","evennia.utils.utils","evennia.utils.validatorfuncs","evennia.utils.verb_conjugation","evennia.utils.verb_conjugation.conjugate","evennia.utils.verb_conjugation.pronouns","evennia.utils.verb_conjugation.tests","evennia.web","evennia.web.admin","evennia.web.admin.accounts","evennia.web.admin.attributes","evennia.web.admin.comms","evennia.web.admin.frontpage","evennia.web.admin.help","evennia.web.admin.objects","evennia.web.admin.scripts","evennia.web.admin.server","evennia.web.admin.tags","evennia.web.admin.urls","evennia.web.admin.utils","evennia.web.api","evennia.web.api.filters","evennia.web.api.permissions","evennia.web.api.root","evennia.web.api.serializers","evennia.web.api.tests","evennia.web.api.urls","evennia.web.api.views","evennia.web.templatetags","evennia.web.templatetags.addclass","evennia.web.urls","evennia.web.utils","evennia.web.utils.adminsite","evennia.web.utils.backends","evennia.web.utils.general_context","evennia.web.utils.middleware","evennia.web.utils.tests","evennia.web.webclient","evennia.web.webclient.urls","evennia.web.webclient.views","evennia.web.website","evennia.web.website.forms","evennia.web.website.tests","evennia.web.website.urls","evennia.web.website.views","evennia.web.website.views.accounts","evennia.web.website.views.channels","evennia.web.website.views.characters","evennia.web.website.views.errors","evennia.web.website.views.help","evennia.web.website.views.index","evennia.web.website.views.mixins","evennia.web.website.views.objects","Evennia Documentation"],titleterms:{"2010":0,"2011":0,"2012":0,"2013":0,"2014":0,"2015":0,"2016":0,"2017":0,"break":130,"case":[96,142],"class":[10,20,23,48,80,94,132,133,136,142],"default":[26,30,32,33,51,53,116,133,134,153,156,158,201,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234],"final":[159,191],"function":[6,30,33,37,53,80,120,135,137],"goto":28,"import":[1,8,105,116,119,131,135,136],"new":[0,8,10,42,48,53,67,85,94,123,132,133,142,149,162,164,178,190],"public":[185,202],"return":[28,44,130,135],"static":[110,170,358],"super":[57,134],AWS:75,Adding:[21,32,37,46,50,53,62,67,85,94,96,123,124,126,128,134,153,157,158,174,178],And:[40,118],Are:142,Going:202,One:[98,116],PMs:162,TLS:182,The:[1,7,15,16,27,28,30,31,39,41,42,50,54,56,57,65,73,83,94,95,116,117,138,140,143,147,149,155,159,162,164,168,175,190],Use:[1,199],Uses:30,Using:[7,10,14,19,29,30,31,34,41,46,53,67,72,74,94,110,118,128,148,159,197,358],Will:142,Yes:28,_famili:130,_should:142,abl:142,abort:155,about:[8,11,47,48,116,136,142,155],absolut:131,abus:55,access:[50,61],access_typ:33,account:[8,13,50,75,122,129,142,162,207,208,209,210,211,219,504,540],across:144,action:142,activ:[142,161,178],actor:58,actor_stance_cal:30,actual:[23,48],add:[53,123,149,153,183],add_choic:80,addclass:524,addit:[82,124,157,192],address:153,admin:[8,50,73,122,220,503,504,505,506,507,508,509,510,511,512,513,514],administr:[19,140,142],adminsit:527,advanc:[36,120,130,134,155,183,203],aggress:171,alia:8,alias:[46,137],all:[94,133,142,153,164,187,548],allow:[19,142],alpha:140,also:142,altern:[9,124],amount:142,amp:429,amp_client:417,amp_serv:430,analyz:7,android:191,ani:[15,121],annot:130,anoth:[42,119,134],ansi:[20,60,176,473],apach:182,api:[8,49,51,119,120,131,515,516,517,518,519,520,521,522],app:[164,178],appear:142,april:0,arbitrari:28,area:[170,175],arg:169,arg_regex:23,argument:[28,133,135,169],arm:152,around:128,arx:124,arxcod:124,ascii:20,ask:[23,28],asset:143,assign:[23,57],assort:[16,21,23,28,46,54,62,172],async:54,asynchron:54,at_object_cr:133,attach:[9,42,45],attack:[142,175],attribut:[8,14,50,122,133,137,468,505],attributeproperti:14,audit:[76,117,379,380,381,382],aug:0,auto:31,automat:153,avail:[25,45],awai:2,aws_s3_cdn:242,awsstorag:[75,117,241,242,243],backend:528,ban:55,bank:142,bar:93,barter:[77,117,141,142,286,287,288],base:[0,41,88,99,104,112,116,142,147,153],base_system:[117,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274],basic:[15,16,52,80,94,121,123,151,175,188],batch:[15,16,17,78,474],batchcod:15,batchprocess:221,batchprocessor:[117,360,361,474],battl:112,befor:1,begin:143,beginn:[125,127,139,145,150,165],behavior:19,best:169,beta:140,between:[15,28,48],block:[15,116,119,155],blockquot:119,blurb:53,board:142,bodyfunct:[117,362,363,364],bold:119,boot:55,bootstrap:[18,56],border:18,bot:209,branch:28,brief:164,briefli:68,broken:142,build:[50,57,80,119,128,140,142,152,159,162,168,170,222],builder:[98,142],building_menu:[117,244,245,246],built:142,bulletin:142,busi:168,button:[18,106,128],calendar:163,call:[23,94,133],call_ev:94,callabl:30,callback:[51,94,95,96],callbackhandl:258,caller:28,can:[14,80,121,136,137,142],cannot:142,capabl:142,capcha:178,card:18,care:199,carri:142,cast:297,caveat:[15,16,48,60,191],certain:130,certif:187,chain:94,chair:[142,144],chang:[0,8,11,12,50,53,64,69,90,94,96,119,133,142,151,153,162,199],changelog:0,channel:[19,122,142,153,162,541],charact:[19,37,50,95,122,133,140,142,144,146,153,162,167,175,178,179,184,542],chargen:175,chat:19,cheat:6,check:[14,33,39,75,195],checker:1,checkpoint:178,children:136,choic:80,choos:183,clean:124,clickabl:59,client:[51,65,68,73,125,184,197,422],client_opt:32,clone:12,cloth:[81,117,141,289,290,291],cloud9:197,cmdhandler:213,cmdparser:214,cmdset:[126,134,215],cmdset_account:223,cmdset_charact:224,cmdset_sess:225,cmdset_unloggedin:226,cmdsethandl:216,code:[1,2,6,11,12,14,15,19,20,27,35,36,42,69,80,87,94,118,119,126,135,140,142,146,153,168,182,296,474],coin:142,collabor:161,color:[18,20,53,60,82,135,153,166,176],color_markup:[117,247,248,249],colour:60,combat:[147,175],comfort:192,comm:[102,227,235,236,237,238,506],command:[0,6,8,16,21,22,23,24,25,26,31,42,80,90,94,102,114,120,125,126,128,132,133,134,135,144,147,153,154,155,156,158,162,163,166,168,169,174,175,188,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,259,277,335,474],comment:[113,136,159],commit:12,commom:53,common:37,commun:[15,118],complet:33,complex:[80,130],compon:[18,24,43,83,117,342],comput:197,con:83,concept:[61,142,147,159],conclud:[157,175],conclus:[80,130,133,135,141,142,143,144,169,170],condit:153,conf:[132,200],config:[120,166,182],configur:[9,12,75,76,166,178,182,183,186,187,188,189,190,198,200,202],confus:195,congratul:140,conjug:499,connect:[8,25,185,188,197],connection_screen:[254,266],connection_wizard:418,contain:[42,192,475],content:[127,139,145,148,150,153],continu:[3,4,5,144],contrib:[0,10,83,117,118,122,141,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390],contribut:[118,119,120],control:12,convert:[30,169],cooldown:[84,117,154,292,293,294],coordin:157,copi:182,core:[10,24,61,120,122,160],cost:75,counter:[110,358],cprofil:7,craft:[85,117,142,295,296,297,298],crafter:85,creat:[4,8,13,20,23,37,48,55,67,94,96,120,126,128,129,133,135,142,148,149,152,164,170,174,175,178,192,476],create_object:133,createnpc:175,creation:143,creatur:192,credit:[133,138],crop:20,current:[6,163],custom:[10,19,28,30,31,33,44,49,50,51,53,54,62,70,73,80,85,86,123,126,161,163,166],custom_gametim:[117,250,251,252],customis:[115,333],dai:142,data:[9,14,28,44,52,62],databas:[8,11,24,31,41,67,120,124,130,133],dbref:137,dbserial:477,deal:42,death:142,debug:[6,15,199],debugg:9,dec:0,decid:142,decor:[28,54],dedent:20,dedic:178,deep:165,deeper:85,defaultobject:8,defeat:142,defin:[12,21,23,28,30,33,42,67,116],definit:33,delai:[20,42,54,155],delimit:153,demo:140,deni:94,depend:[11,58,75,124],deploi:192,deprec:[119,419],desc:[28,110,358],descer:161,descript:[90,142],design:[89,168],detail:[75,90,103,115,116,164,178,333],detect:142,develop:[2,161,181,192,199,203],dialogu:95,dice:[87,117,141,162,346,347,348],dictionari:28,differ:[48,58,142,160],diku:160,dir:[10,125,132],direcotri:200,direct:119,director:58,directori:[197,200],disabl:[94,199],discuss:181,displai:[20,159,163,184],distribut:0,dive:165,django:[0,33,73,122,130,178,203],doc:[1,119],docker:192,docstr:[119,136],document:[72,118,119,548],doe:142,doing:143,don:[15,121,144,192],donat:118,done:138,down:[116,128,174,203],dummyrunn:[7,451],dummyrunner_set:452,durat:155,dure:203,dynam:[23,28,159],each:[137,142],easi:[91,111],echo:32,economi:142,edit:[27,80,94,119,175],editnpc:175,editor:[27,94,125],elev:96,els:142,email:88,email_login:[117,253,254,255,256],emot:104,emul:160,encod:[17,70],encrypt:197,enemi:142,enforc:142,engin:143,enjoi:182,enough:[138,142],enter:174,entir:96,entit:24,entiti:142,entri:[31,128],error:[42,126,135,158,203,543],eval:119,eveditor:[27,478],even:85,evennia:[0,1,6,8,9,10,11,12,30,41,49,51,56,64,71,74,75,94,101,104,113,118,119,121,123,124,131,135,142,153,160,161,162,169,176,181,182,183,185,187,188,190,191,192,196,197,201,203,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548],evennia_launch:420,event:[94,95,96,163],eventfunc:[94,260],everi:156,everyth:80,evform:[162,479],evmenu:[0,28,153,480],evmor:[29,481],evscaperoom:[89,117,276,277,278,279,280,281,282,283,284],evtabl:[153,162,482],examin:[6,94,133],exampl:[6,27,28,30,33,39,42,51,53,69,78,79,80,82,83,84,85,95,98,105,106,109,115,116,131,146,147,157,197,333,336,474],example_batch_cod:361,example_recip:297,except:144,execut:6,exist:[48,142,196],exit:[23,37,96,108,153,158,329],expand:[110,147,174,358],experi:142,explan:80,explor:[1,131],extend:[61,90,116,141],extended_room:[117,319,320,321],extern:[119,199],extra:[90,94,133,138],fail:[142,195],familiar:[160,161],faq:153,faster:10,featur:[61,73,90,164],feb:0,feel:160,field:[91,122,130],fieldfil:[117,383,384],fight:142,figur:126,file:[12,15,16,17,31,119,200,201,474],filehelp:392,fill:20,fillabl:91,filter:516,find:[135,137,157],firewal:199,first:[80,95,96,116,133,135,161],fix:12,flat:[8,53],flexibl:119,flow:[52,142],flower:142,folder:[1,12,124],foreground:203,forget:8,fork:[12,118],form:[18,53,91,142,178,536],formal:142,format:[28,135],forum:181,found:195,framework:[112,181],friarzen:0,from:[8,28,31,51,87,121,123,128,135,153,178,192,197,480],front:[53,151],frontpag:507,full:[80,83,164],full_system:[117,275,276,277,278,279,280,281,282,283,284],func:39,funcpars:[30,483],funcparser_cal:30,further:[54,151,182],futur:152,gain:142,game:[0,1,10,11,12,14,19,20,31,42,53,89,94,97,121,125,132,140,142,143,146,157,159,161,162,163,170,173,175,185,190,192,197,200,296],game_index_cli:[421,422,423],game_system:[117,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317],gamedir:119,gameim:86,gameplai:138,gametim:[163,484],gaug:[110,358],gendersub:[92,117,299,300,301],gener:[0,18,61,80,105,142,175,178,181,228,480],general_context:529,get:[28,94,118,128,130,145,187],get_client_opt:32,get_input:28,get_inputfunc:32,get_valu:32,git:[12,122,193,195],github:[12,122],give:142,given:46,global:[120,142,169],global_script:42,glossari:122,gmcp:68,godhood:128,golden:0,goldenlayout:51,good:136,googl:178,grant:[50,162],grapevin:[186,431],graphic:135,grid:[116,117,159,184,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344],group:130,guest:63,guid:124,guidelin:118,had:138,handl:[55,142,164,199,203],handler:[45,120,147],haproxi:187,have:[127,136,142,175],head:119,health:93,health_bar:[117,349,350,351],hello:135,help:[1,2,31,118,124,128,164,229,391,392,393,394,395,508,544],here:[1,121],hidden:142,hide:142,hierarchi:[39,142,162],hint:[7,42,64,113,138,182],hit:126,hold:134,hook:48,host:197,hous:128,how:[13,23,37,48,70,83,118,142,145,162,174,188,192],howto:165,html:[53,149,178],http:[182,187],human:142,idea:77,idmapp:[485,486,487,488],imag:[192,199],implement:[115,142,146,333],improv:[142,164],index:[0,164,178,185,190,545],infinit:142,influenc:142,info:[77,181,203],inform:197,infrastructur:146,ingame_python:[117,257,258,259,260,261,262,263,264],ingo:65,inherit:[41,74,136],inherits_from:20,init:[131,133],initi:[0,147,153,183,190],initial_setup:424,inlin:30,input:[23,28,30,68,76,134,135],inputfunc:[32,65,425],instal:[12,75,76,77,80,81,82,83,84,86,87,88,89,90,92,94,97,98,99,100,101,102,103,104,107,108,109,110,113,114,115,116,123,124,178,182,183,187,188,190,191,192,193,195,196,197,202,296,329,347,358],instanc:[23,48,67,136],intal:85,integr:[2,3,4,5],interact:[1,15,16,54,135,194],interfac:199,intern:119,internation:[0,64],interpret:9,interrupt:116,intro:135,intro_menu:373,introduct:[1,7,28,89,121,136,159,170,178],inventori:167,ipython:135,irc:[189,432],issu:184,ital:119,item:140,itself:144,jan:0,join:19,jumbotron:18,jupyt:1,just:[121,142],kei:[28,41,80,91,137],keyword:[95,133],kill:[142,203],kind:142,know:[121,199],known:142,languag:[28,64,104],larg:142,last:153,latest:[11,12,192],latin:153,launch:[27,28],launchcmd:337,layout:[0,56],learn:[1,121],leav:174,legaci:102,legend:[116,342],lesson:[127,139,145,148,150],let:[6,15,164,197],librari:131,licens:[75,180],life:202,lift:55,like:[15,114,142,160,175],limit:[15,16,142],line:[6,27,125,130,135,144,152],link:[50,59,116,119,181],linux:[4,193,195,203],list:[3,6,119,133,134,142],list_nod:28,listen:172,literatur:181,live:203,local:[119,169,197],localhost:195,locat:[137,195],lock:[0,14,31,33,39,134,174,396,397,398],lockdown:197,lockfunc:[144,397],lockhandl:398,log:[19,20,124,132,135,164,190,199],logfil:9,logger:489,login:[32,63,88,99],logo:[53,151],longer:95,look:[31,128,142,160,175],lookup:[120,130],loop:133,loot:142,mac:[193,195,203],machin:197,magic:8,mai:[0,142],mail:[12,97,117,302,303,304],main:[119,120,137,548],make:[10,12,20,89,118,126,128,133,135,142,144,152,161,162,174,175,187],manag:[14,39,51,123,210,237,393,400,409,426,469,486],manual:[142,166,185],map:[98,113,116,159,170,342],mapbuild:[117,322,323,324],mapper:159,march:0,mariadb:183,markup:[82,473],mass:167,master:[12,142,162],match:[8,134],matter:142,mccp:433,mean:142,mech:152,mechan:142,memori:14,memplot:453,menu:[20,28,80,99,111,168,278,404,480],menu_login:[117,265,266,267,268],merg:21,messag:[58,65,68,96,153],messagepath:65,method:[8,23,42,133,135,166],middlewar:530,migrat:[11,122,123],mind:12,minimap:170,mirror:[117,365,366],mixin:546,mob:[142,165,374],mod_proxi:182,mod_ssl:182,mod_wsgi:182,mode:[15,16,44,66,122,197,203],model:[10,67,120,178,211,238,394,401,410,427,470,487],modif:162,modifi:[53,133,156,182],modul:[41,135,146,147,188],monitor:32,monitorhandl:[34,411],more:[1,11,33,41,56,58,60,73,85,119,120,134,142,155,161,166],most:1,motiv:143,move:[144,153,174],msdp:68,msg:[35,65,166],mssp:434,mud:[125,181],multi:[134,135,136,142,161],multidesc:[101,117,161,305,306,307],multipl:[14,142,144],multisess:[44,66,122],mush:[161,175],must:142,mutabl:[8,14],mux:72,mux_comms_cmd:[117,269,270,271],muxcommand:230,mxp:435,mygam:329,mysql:183,myst:119,name:[8,55,133,142],nattribut:14,naw:436,need:[96,121,125,134,142],nest:80,network:24,next:[161,188,190],nice:187,nick:36,night:142,node:[28,116],non:[14,153,154,185,194],nop:184,note:[10,16,17,21,23,28,31,36,46,52,54,62,79,88,99,108,113,119,172,182,329],notebook:1,nov:0,npc:[77,109,141,142,165,168,171,172,175],number:169,numer:142,obfusc:104,obj:39,object:[8,14,20,33,37,42,44,46,50,58,122,128,129,130,133,134,135,136,137,140,142,144,153,167,170,174,279,375,399,400,401,402,509,547],obtain:178,oct:0,off:[142,153],offici:181,olc:41,older:0,onc:[94,138],one:[119,142,157],onli:[119,130,142,203],onlin:[12,197],oob:68,oop:136,open:168,oper:[54,96],option:[28,80,91,116,162,169,190,197,199,203],optionclass:490,optionhandl:491,other:[23,42,50,53,58,89,135,137,142,181,183,197,200],our:[69,80,96,126,133,135,140,142,164,174,178],ourselv:133,out:[62,126,142,162],outgo:65,output:[19,76,380],outputcommand:68,outputfunc:38,outsid:197,overal:146,overload:[48,73,166],overrid:8,overview:[0,4,67,116,131,132,147,151],own:[13,23,32,37,51,62,89,110,135,142,192,197,358],page:[53,73,123,149,151,164],paramet:94,parent:[67,94,161],pars:[71,134,135,153,169],parser:30,part:[125,127,139,145,148,150],parti:[2,181],pass:135,patch:118,path:[15,65,132],pathfind:116,paus:[23,96,155],pdb:6,penalti:142,percent:[110,358],perman:142,permiss:[33,39,46,57,94,162,517],perpetu:140,persist:[14,27,126,133,154,155],person:[128,142],philosophi:89,physic:142,picklefield:492,pictur:178,pip:[122,123],place:119,plai:[89,142,187],plan:[1,140,141,142,170],player:[142,161],plugin:51,point:1,polici:72,port:[197,199],portal:[0,40,44,65,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449],portalsess:65,portalsessionhandl:[65,438],post:142,postgresql:183,practic:169,prefix:23,prerequisit:[4,191],prevent:153,prioriti:31,prison:142,privileg:[123,142],pro:83,problem:69,process:[54,61,203],processor:[15,16,17,78,474],product:[152,192],profil:[7,450,451,452,453,454,455,456,457],program:[6,121],project:[4,9],prompt:[28,156],pron:58,pronoun:500,prop:142,properti:[13,14,19,21,23,28,35,37,44,46,48,116,122,130],protfunc:[41,405],protocol:[0,62,68],prototyp:[0,41,116,338,403,404,405,406,407],proxi:[182,197],pseudo:105,pudb:6,pull:12,puppet:122,push:[12,128],put:[12,164,187],puzzl:[103,117,308,309,310],pvp:142,pycharm:9,python:[1,15,94,121,132,135,136,161,181,188],quell:[39,57,134],queri:[48,130,133],queryset:[130,137],quest:142,quick:[4,142],quiet:169,quirk:8,race:142,rais:144,random:105,random_string_gener:[117,385,386,387],rate:[110,358],read:[1,54,60,73,151],real:15,reboot:203,recapcha:178,receiv:[58,62,68],recip:[85,296,297],recog:58,red:106,red_button:[117,367,368],refer:[119,153],referenc:58,regard:94,regist:[190,197],registri:105,regular:142,rel:[131,137],relat:[94,163,165],releas:[119,140],relev:197,reli:15,reload:[8,136,153,182,203],remark:175,rememb:[8,119,136],remind:164,remot:[12,183,197],remov:[46,94,134,153],repair:142,repeat:[28,32,42],replac:134,repos:118,repositori:[1,12,122],reput:142,request:12,requir:[0,91,195],reset:[11,203],reshuffl:128,resourc:181,respawn:142,rest:[49,144],restart:[182,190],restrict:19,retriev:14,role:[142,162],roleplai:[58,104,142,162],roll:87,roller:[87,162],rom:160,room:[37,90,96,113,140,141,142,153,157,159,162,167,280,376],root:518,router:116,rpg:[117,142,345,346,347,348,349,350,351,352,353,354,355,356,357,358],rplanguag:353,rpsystem:[117,352,353,354,355],rss:[198,439],rst:119,rule:[21,142,146,147],run:[6,9,10,23,121,123,191,192,202],runner:10,safe:30,safeti:15,same:[28,95],save:14,schema:11,score:175,screen:25,script:[42,79,94,122,174,261,281,408,409,410,411,412,413,414,415,510],scripthandl:412,search:[20,21,46,67,120,130,137,157,169,493],searching_cal:30,season:142,secret:178,section:548,secur:[94,182,187,199],see:[8,94,164,190],select:[111,153],self:169,send:[58,62,68,135,156],sent:156,separ:[80,142,144],sept:0,serial:519,server:[0,24,40,43,44,61,64,132,175,182,183,190,197,200,202,381,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,511],serversess:[65,459],serversessionhandl:65,servic:423,session:[44,65,122,153,162,460],sessionhandl:[44,461],set:[0,2,9,12,21,28,33,75,89,123,124,125,133,142,159,163,166,175,185,186,189,197,198,199,200,201],setpow:175,settings_default:466,settings_mixin:454,setup:[4,124,182,183,194,195,197,202],sever:[95,157,169],share:12,sharedmemorymodel:67,sheet:[6,162],shop:168,shortcut:120,should:142,show:[150,175],shut:203,sidebar:119,signal:[45,462],similar:142,simpl:[6,7,28,33,42,80,142,149,155],simpledoor:[107,117,325,326,327],singl:[14,158],singleton:120,site:[73,122],sitekei:178,sittabl:144,skill:[85,142,143],slot:90,slow:108,slow_exit:[117,328,329,330],soft:69,softcod:[69,161],solut:69,solv:142,some:[39,135,141,142,157,160],someth:142,somewher:121,sort:142,sourc:[9,31,119],space:[18,133],spawn:[41,161],spawner:[41,407],special:142,spell:297,spread:118,spuriou:184,sql:[130,183],sqlite3:183,ssh:[68,199,440],ssl:[197,441],stack:142,staff:142,stanc:58,standard:[0,72,163],start:[1,94,124,162,168,190,192,203],stat:173,state:282,statement:126,statu:[142,203],status:142,step:[6,12,124,128,140,161,178,186,188,189,190,191,198],stop:[190,203],storag:[28,42],store:[14,28,41,142,153],strikaco:0,string:[33,116,135,169,480],strip:169,structur:[94,119],studi:96,stuff:[121,128,175],style:[18,53,114],sub:80,subclass:37,subtop:31,succe:142,suit:10,summari:[55,120,126,134,136,137,193],superus:39,support:[1,68,184],suppress_ga:442,surround:6,swap:48,sword:[134,297],synchron:54,syntax:[1,119,161,203,474],syscommand:231,system:[22,23,31,33,56,58,75,77,85,88,94,97,99,103,104,112,115,140,141,142,146,147,164,165,175,232],tabl:[20,67,119,127,139,145,148,150,153],tag:[46,71,90,122,137,157,176,471,512],talk:[109,141],talking_npc:[117,369,370,371],taskhandl:414,tb_basic:312,tb_equip:313,tb_item:314,tb_magic:315,tb_rang:316,teamciti:4,tech:140,technic:[31,75,77,89,106,119,368],teleport:116,telnet:[68,184,197,443],telnet_oob:444,telnet_ssl:445,templat:[4,28,91,164,178,480],templatetag:[523,524],tempmsg:35,temporari:28,term:136,termux:191,test:[7,10,90,121,135,175,233,243,246,249,252,256,262,268,271,273,283,288,291,294,298,301,304,307,310,317,321,324,327,330,332,339,348,351,355,357,364,371,377,382,387,389,446,456,488,501,520,531,537],test_queri:455,test_resourc:494,text2html:495,text:[20,28,32,61,70,71,119,135,151],than:142,thei:142,them:142,theori:169,thi:[143,164],thing:[8,119,125,129,133,136,137,142,160,161],third:[2,181],those:142,throttl:463,through:[6,192],ticker:[47,122],tickerhandl:[47,415],tie:162,time:[20,23,42,69,90,94,142,163],time_format:20,timer:[7,42],timetrac:457,tip:12,titl:[50,53],to_byt:20,to_str:20,togeth:[164,187],tool:[3,20,24,55,181],traceback:1,track:[12,142],train:174,trait:[110,117,141,356,357,358],traithandl:[110,358],traitproperti:[110,358],transit:116,translat:[0,64],travi:5,treat:15,tree:[111,142,297],tree_select:[117,388,389,390],trick:12,troubleshoot:[12,191,195],ttype:447,tupl:[133,134],turn:[8,112,147,153],turnbattl:[117,141,311,312,313,314,315,316,317],tutori:[1,94,95,96,113,117,125,127,138,139,140,142,145,147,150,151,152,163,164,165,168,171,172,173,174,175,177,179,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377],tutorial_world:[117,372,373,374,375,376,377],tutorialmirror:100,tweet:[173,188],twist:122,twitter:188,two:98,type:[13,14,37,110,358],typeclass:[0,8,48,74,94,120,122,126,132,133,137,144,161,166,263,329,467,468,469,470,471],under:12,understand:176,ungm:162,unimpl:204,uninstal:[75,138],unit:10,unix:114,unixcommand:[117,272,273,274],unloggedin:234,unmonitor:32,unquel:134,unrepeat:32,updat:[11,12,48,133,153],upgrad:[11,196],upload:199,url:[119,123,149,164,178,513,521,525,533,538],usag:[15,16,27,49,50,77,78,80,85,86,87,91,92,93,98,103,104,105,107,115,116,183,333,347],use:[8,19,47,121,141,142],used:[23,153,297],useful:[23,89,141,181],user:[12,23,53,57,64,160,161,164,199],using:[6,96,133,135,137],util:[0,9,18,20,23,24,30,117,120,155,181,264,284,340,378,379,380,381,382,383,384,385,386,387,388,389,390,395,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,514,526,527,528,529,530,531],valid:[33,464],validatorfunc:497,valu:[28,41,142],vanilla:142,variabl:[6,94],variant:144,vehicl:[165,174],verb_conjug:[498,499,500,501],verbatim:119,version:[12,75,119],versu:54,vhost:182,via:142,view:[19,73,149,164,178,179,522,534,539,540,541,542,543,544,545,546,547],viewpoint:58,virtualenv:[122,195],vocabulari:94,voic:96,volum:142,wai:[28,116,134,135,155],want:[121,139,142,192],warn:[94,119],weapon:142,weather:[142,177],web:[0,8,24,50,51,53,61,68,73,132,149,151,165,178,179,197,199,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547],webclient:[0,52,448,532,533,534],webclient_ajax:449,webclient_gui:51,webpag:53,webserv:[52,199,465],websit:[53,73,123,535,536,537,538,539,540,541,542,543,544,545,546,547],websocket:[182,187],weight:[142,167],werewolf:130,what:[3,14,56,121,127,136,137,139,142,143,148,169,192],when:[8,47,144,153],where:[121,131,143],whisper:104,who:[23,126],why:158,wiki:123,wilder:[115,117,331,332,333],willing:121,window:[64,124,193,195],wizard:185,word:118,work:[12,23,48,75,94,116,121,142,164,169,174,192],workaround:184,workflow:2,world:[113,128,132,135,138,140,142,150],write:[10,51,62],wss:187,xterm256:[60,176],xymap:[116,341],xymap_legend:342,xyzexit:116,xyzgrid:[116,117,334,335,336,337,338,339,340,341,342,343,344],xyzroom:[116,344],yield:[28,155],you:[1,121,125,134,138,142],your:[1,8,10,11,12,13,23,32,37,51,57,62,67,69,89,110,123,126,128,132,142,143,157,178,192,195,197,199,358],yourself:[128,140],zcoord:116,zone:74}})
\ No newline at end of file
+Search.setIndex({docnames:["Coding/Changelog","Coding/Coding-Introduction","Coding/Coding-Overview","Coding/Continuous-Integration","Coding/Continuous-Integration-TeamCity","Coding/Continuous-Integration-Travis","Coding/Debugging","Coding/Profiling","Coding/Quirks","Coding/Setting-up-PyCharm","Coding/Unit-Testing","Coding/Updating-Your-Game","Coding/Version-Control","Components/Accounts","Components/Attributes","Components/Batch-Code-Processor","Components/Batch-Command-Processor","Components/Batch-Processors","Components/Bootstrap-Components-and-Utilities","Components/Channels","Components/Coding-Utils","Components/Command-Sets","Components/Command-System","Components/Commands","Components/Components-Overview","Components/Connection-Screen","Components/Default-Commands","Components/EvEditor","Components/EvMenu","Components/EvMore","Components/FuncParser","Components/Help-System","Components/Inputfuncs","Components/Locks","Components/MonitorHandler","Components/Msg","Components/Nicks","Components/Objects","Components/Outputfuncs","Components/Permissions","Components/Portal-And-Server","Components/Prototypes","Components/Scripts","Components/Server","Components/Sessions","Components/Signals","Components/Tags","Components/TickerHandler","Components/Typeclasses","Components/Web-API","Components/Web-Admin","Components/Webclient","Components/Webserver","Components/Website","Concepts/Async-Process","Concepts/Banning","Concepts/Bootstrap-&-Evennia","Concepts/Building-Permissions","Concepts/Change-Messages-Per-Receiver","Concepts/Clickable-Links","Concepts/Colors","Concepts/Concepts-Overview","Concepts/Custom-Protocols","Concepts/Guest-Logins","Concepts/Internationalization","Concepts/Messagepath","Concepts/Multisession-modes","Concepts/New-Models","Concepts/OOB","Concepts/Soft-Code","Concepts/Text-Encodings","Concepts/TextTags","Concepts/Using-MUX-as-a-Standard","Concepts/Web-Features","Concepts/Zones","Contribs/Contrib-AWSStorage","Contribs/Contrib-Auditing","Contribs/Contrib-Barter","Contribs/Contrib-Batchprocessor","Contribs/Contrib-Bodyfunctions","Contribs/Contrib-Building-Menu","Contribs/Contrib-Clothing","Contribs/Contrib-Color-Markups","Contribs/Contrib-Components","Contribs/Contrib-Cooldowns","Contribs/Contrib-Crafting","Contribs/Contrib-Custom-Gametime","Contribs/Contrib-Dice","Contribs/Contrib-Email-Login","Contribs/Contrib-Evscaperoom","Contribs/Contrib-Extended-Room","Contribs/Contrib-Fieldfill","Contribs/Contrib-Gendersub","Contribs/Contrib-Health-Bar","Contribs/Contrib-Ingame-Python","Contribs/Contrib-Ingame-Python-Tutorial-Dialogue","Contribs/Contrib-Ingame-Python-Tutorial-Elevator","Contribs/Contrib-Mail","Contribs/Contrib-Mapbuilder","Contribs/Contrib-Menu-Login","Contribs/Contrib-Mirror","Contribs/Contrib-Multidescer","Contribs/Contrib-Mux-Comms-Cmds","Contribs/Contrib-Puzzles","Contribs/Contrib-RPSystem","Contribs/Contrib-Random-String-Generator","Contribs/Contrib-Red-Button","Contribs/Contrib-Simpledoor","Contribs/Contrib-Slow-Exit","Contribs/Contrib-Talking-Npc","Contribs/Contrib-Traits","Contribs/Contrib-Tree-Select","Contribs/Contrib-Turnbattle","Contribs/Contrib-Tutorial-World","Contribs/Contrib-Unixcommand","Contribs/Contrib-Wilderness","Contribs/Contrib-XYZGrid","Contribs/Contribs-Overview","Contributing","Contributing-Docs","Evennia-API","Evennia-Introduction","Glossary","Howtos/Add-a-wiki-on-your-website","Howtos/Arxcode-Installation","Howtos/Beginner-Tutorial/Beginner-Tutorial-Intro","Howtos/Beginner-Tutorial/Part1/Adding-Commands","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Part1-Intro","Howtos/Beginner-Tutorial/Part1/Building-Quickstart","Howtos/Beginner-Tutorial/Part1/Creating-Things","Howtos/Beginner-Tutorial/Part1/Django-queries","Howtos/Beginner-Tutorial/Part1/Evennia-Library-Overview","Howtos/Beginner-Tutorial/Part1/Gamedir-Overview","Howtos/Beginner-Tutorial/Part1/Learning-Typeclasses","Howtos/Beginner-Tutorial/Part1/More-on-Commands","Howtos/Beginner-Tutorial/Part1/Python-basic-introduction","Howtos/Beginner-Tutorial/Part1/Python-classes-and-objects","Howtos/Beginner-Tutorial/Part1/Searching-Things","Howtos/Beginner-Tutorial/Part1/Tutorial-World","Howtos/Beginner-Tutorial/Part2/Beginner-Tutorial-Part2-Intro","Howtos/Beginner-Tutorial/Part2/Game-Planning","Howtos/Beginner-Tutorial/Part2/Planning-Some-Useful-Contribs","Howtos/Beginner-Tutorial/Part2/Planning-The-Tutorial-Game","Howtos/Beginner-Tutorial/Part2/Planning-Where-Do-I-Begin","Howtos/Beginner-Tutorial/Part3/A-Sittable-Object","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Part3-Intro","Howtos/Beginner-Tutorial/Part3/Implementing-a-game-rule-system","Howtos/Beginner-Tutorial/Part3/Turn-based-Combat-System","Howtos/Beginner-Tutorial/Part4/Beginner-Tutorial-Part4-Intro","Howtos/Beginner-Tutorial/Part5/Add-a-simple-new-web-page","Howtos/Beginner-Tutorial/Part5/Beginner-Tutorial-Part5-Intro","Howtos/Beginner-Tutorial/Part5/Web-Tutorial","Howtos/Building-a-mech-tutorial","Howtos/Coding-FAQ","Howtos/Command-Cooldown","Howtos/Command-Duration","Howtos/Command-Prompt","Howtos/Coordinates","Howtos/Default-Exit-Errors","Howtos/Dynamic-In-Game-Map","Howtos/Evennia-for-Diku-Users","Howtos/Evennia-for-MUSH-Users","Howtos/Evennia-for-roleplaying-sessions","Howtos/Gametime-Tutorial","Howtos/Help-System-Tutorial","Howtos/Howtos-Overview","Howtos/Manually-Configuring-Color","Howtos/Mass-and-weight-for-objects","Howtos/NPC-shop-Tutorial","Howtos/Parsing-commands-tutorial","Howtos/Static-In-Game-Map","Howtos/Tutorial-Aggressive-NPCs","Howtos/Tutorial-NPCs-listening","Howtos/Tutorial-Tweeting-Game-Stats","Howtos/Tutorial-Vehicles","Howtos/Tutorial-for-basic-MUSH-like-game","Howtos/Understanding-Color-Tags","Howtos/Weather-Tutorial","Howtos/Web-Character-Generation","Howtos/Web-Character-View-Tutorial","Licensing","Links","Setup/Apache-Config","Setup/Choosing-An-SQL-Server","Setup/Client-Support-Grid","Setup/Evennia-Game-Index","Setup/Grapevine","Setup/HAProxy-Config","Setup/How-to-connect-Evennia-to-Twitter","Setup/IRC","Setup/Installation","Setup/Installation-Android","Setup/Installation-Docker","Setup/Installation-Git","Setup/Installation-Non-Interactive","Setup/Installation-Troubleshooting","Setup/Installation-Upgrade","Setup/Online-Setup","Setup/RSS","Setup/Security","Setup/Settings","Setup/Settings-Default","Setup/Setup-Overview","Setup/Start-Stop-Reload","Unimplemented","api/evennia","api/evennia-api","api/evennia.accounts","api/evennia.accounts.accounts","api/evennia.accounts.bots","api/evennia.accounts.manager","api/evennia.accounts.models","api/evennia.commands","api/evennia.commands.cmdhandler","api/evennia.commands.cmdparser","api/evennia.commands.cmdset","api/evennia.commands.cmdsethandler","api/evennia.commands.command","api/evennia.commands.default","api/evennia.commands.default.account","api/evennia.commands.default.admin","api/evennia.commands.default.batchprocess","api/evennia.commands.default.building","api/evennia.commands.default.cmdset_account","api/evennia.commands.default.cmdset_character","api/evennia.commands.default.cmdset_session","api/evennia.commands.default.cmdset_unloggedin","api/evennia.commands.default.comms","api/evennia.commands.default.general","api/evennia.commands.default.help","api/evennia.commands.default.muxcommand","api/evennia.commands.default.syscommands","api/evennia.commands.default.system","api/evennia.commands.default.tests","api/evennia.commands.default.unloggedin","api/evennia.comms","api/evennia.comms.comms","api/evennia.comms.managers","api/evennia.comms.models","api/evennia.contrib","api/evennia.contrib.base_systems","api/evennia.contrib.base_systems.awsstorage","api/evennia.contrib.base_systems.awsstorage.aws_s3_cdn","api/evennia.contrib.base_systems.awsstorage.tests","api/evennia.contrib.base_systems.building_menu","api/evennia.contrib.base_systems.building_menu.building_menu","api/evennia.contrib.base_systems.building_menu.tests","api/evennia.contrib.base_systems.color_markups","api/evennia.contrib.base_systems.color_markups.color_markups","api/evennia.contrib.base_systems.color_markups.tests","api/evennia.contrib.base_systems.custom_gametime","api/evennia.contrib.base_systems.custom_gametime.custom_gametime","api/evennia.contrib.base_systems.custom_gametime.tests","api/evennia.contrib.base_systems.email_login","api/evennia.contrib.base_systems.email_login.connection_screens","api/evennia.contrib.base_systems.email_login.email_login","api/evennia.contrib.base_systems.email_login.tests","api/evennia.contrib.base_systems.ingame_python","api/evennia.contrib.base_systems.ingame_python.callbackhandler","api/evennia.contrib.base_systems.ingame_python.commands","api/evennia.contrib.base_systems.ingame_python.eventfuncs","api/evennia.contrib.base_systems.ingame_python.scripts","api/evennia.contrib.base_systems.ingame_python.tests","api/evennia.contrib.base_systems.ingame_python.typeclasses","api/evennia.contrib.base_systems.ingame_python.utils","api/evennia.contrib.base_systems.menu_login","api/evennia.contrib.base_systems.menu_login.connection_screens","api/evennia.contrib.base_systems.menu_login.menu_login","api/evennia.contrib.base_systems.menu_login.tests","api/evennia.contrib.base_systems.mux_comms_cmds","api/evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds","api/evennia.contrib.base_systems.mux_comms_cmds.tests","api/evennia.contrib.base_systems.unixcommand","api/evennia.contrib.base_systems.unixcommand.tests","api/evennia.contrib.base_systems.unixcommand.unixcommand","api/evennia.contrib.full_systems","api/evennia.contrib.full_systems.evscaperoom","api/evennia.contrib.full_systems.evscaperoom.commands","api/evennia.contrib.full_systems.evscaperoom.menu","api/evennia.contrib.full_systems.evscaperoom.objects","api/evennia.contrib.full_systems.evscaperoom.room","api/evennia.contrib.full_systems.evscaperoom.scripts","api/evennia.contrib.full_systems.evscaperoom.state","api/evennia.contrib.full_systems.evscaperoom.tests","api/evennia.contrib.full_systems.evscaperoom.utils","api/evennia.contrib.game_systems","api/evennia.contrib.game_systems.barter","api/evennia.contrib.game_systems.barter.barter","api/evennia.contrib.game_systems.barter.tests","api/evennia.contrib.game_systems.clothing","api/evennia.contrib.game_systems.clothing.clothing","api/evennia.contrib.game_systems.clothing.tests","api/evennia.contrib.game_systems.cooldowns","api/evennia.contrib.game_systems.cooldowns.cooldowns","api/evennia.contrib.game_systems.cooldowns.tests","api/evennia.contrib.game_systems.crafting","api/evennia.contrib.game_systems.crafting.crafting","api/evennia.contrib.game_systems.crafting.example_recipes","api/evennia.contrib.game_systems.crafting.tests","api/evennia.contrib.game_systems.gendersub","api/evennia.contrib.game_systems.gendersub.gendersub","api/evennia.contrib.game_systems.gendersub.tests","api/evennia.contrib.game_systems.mail","api/evennia.contrib.game_systems.mail.mail","api/evennia.contrib.game_systems.mail.tests","api/evennia.contrib.game_systems.multidescer","api/evennia.contrib.game_systems.multidescer.multidescer","api/evennia.contrib.game_systems.multidescer.tests","api/evennia.contrib.game_systems.puzzles","api/evennia.contrib.game_systems.puzzles.puzzles","api/evennia.contrib.game_systems.puzzles.tests","api/evennia.contrib.game_systems.turnbattle","api/evennia.contrib.game_systems.turnbattle.tb_basic","api/evennia.contrib.game_systems.turnbattle.tb_equip","api/evennia.contrib.game_systems.turnbattle.tb_items","api/evennia.contrib.game_systems.turnbattle.tb_magic","api/evennia.contrib.game_systems.turnbattle.tb_range","api/evennia.contrib.game_systems.turnbattle.tests","api/evennia.contrib.grid","api/evennia.contrib.grid.extended_room","api/evennia.contrib.grid.extended_room.extended_room","api/evennia.contrib.grid.extended_room.tests","api/evennia.contrib.grid.mapbuilder","api/evennia.contrib.grid.mapbuilder.mapbuilder","api/evennia.contrib.grid.mapbuilder.tests","api/evennia.contrib.grid.simpledoor","api/evennia.contrib.grid.simpledoor.simpledoor","api/evennia.contrib.grid.simpledoor.tests","api/evennia.contrib.grid.slow_exit","api/evennia.contrib.grid.slow_exit.slow_exit","api/evennia.contrib.grid.slow_exit.tests","api/evennia.contrib.grid.wilderness","api/evennia.contrib.grid.wilderness.tests","api/evennia.contrib.grid.wilderness.wilderness","api/evennia.contrib.grid.xyzgrid","api/evennia.contrib.grid.xyzgrid.commands","api/evennia.contrib.grid.xyzgrid.example","api/evennia.contrib.grid.xyzgrid.launchcmd","api/evennia.contrib.grid.xyzgrid.prototypes","api/evennia.contrib.grid.xyzgrid.tests","api/evennia.contrib.grid.xyzgrid.utils","api/evennia.contrib.grid.xyzgrid.xymap","api/evennia.contrib.grid.xyzgrid.xymap_legend","api/evennia.contrib.grid.xyzgrid.xyzgrid","api/evennia.contrib.grid.xyzgrid.xyzroom","api/evennia.contrib.rpg","api/evennia.contrib.rpg.dice","api/evennia.contrib.rpg.dice.dice","api/evennia.contrib.rpg.dice.tests","api/evennia.contrib.rpg.health_bar","api/evennia.contrib.rpg.health_bar.health_bar","api/evennia.contrib.rpg.health_bar.tests","api/evennia.contrib.rpg.rpsystem","api/evennia.contrib.rpg.rpsystem.rplanguage","api/evennia.contrib.rpg.rpsystem.rpsystem","api/evennia.contrib.rpg.rpsystem.tests","api/evennia.contrib.rpg.traits","api/evennia.contrib.rpg.traits.tests","api/evennia.contrib.rpg.traits.traits","api/evennia.contrib.tutorials","api/evennia.contrib.tutorials.batchprocessor","api/evennia.contrib.tutorials.batchprocessor.example_batch_code","api/evennia.contrib.tutorials.bodyfunctions","api/evennia.contrib.tutorials.bodyfunctions.bodyfunctions","api/evennia.contrib.tutorials.bodyfunctions.tests","api/evennia.contrib.tutorials.mirror","api/evennia.contrib.tutorials.mirror.mirror","api/evennia.contrib.tutorials.red_button","api/evennia.contrib.tutorials.red_button.red_button","api/evennia.contrib.tutorials.talking_npc","api/evennia.contrib.tutorials.talking_npc.talking_npc","api/evennia.contrib.tutorials.talking_npc.tests","api/evennia.contrib.tutorials.tutorial_world","api/evennia.contrib.tutorials.tutorial_world.intro_menu","api/evennia.contrib.tutorials.tutorial_world.mob","api/evennia.contrib.tutorials.tutorial_world.objects","api/evennia.contrib.tutorials.tutorial_world.rooms","api/evennia.contrib.tutorials.tutorial_world.tests","api/evennia.contrib.utils","api/evennia.contrib.utils.auditing","api/evennia.contrib.utils.auditing.outputs","api/evennia.contrib.utils.auditing.server","api/evennia.contrib.utils.auditing.tests","api/evennia.contrib.utils.fieldfill","api/evennia.contrib.utils.fieldfill.fieldfill","api/evennia.contrib.utils.random_string_generator","api/evennia.contrib.utils.random_string_generator.random_string_generator","api/evennia.contrib.utils.random_string_generator.tests","api/evennia.contrib.utils.tree_select","api/evennia.contrib.utils.tree_select.tests","api/evennia.contrib.utils.tree_select.tree_select","api/evennia.help","api/evennia.help.filehelp","api/evennia.help.manager","api/evennia.help.models","api/evennia.help.utils","api/evennia.locks","api/evennia.locks.lockfuncs","api/evennia.locks.lockhandler","api/evennia.objects","api/evennia.objects.manager","api/evennia.objects.models","api/evennia.objects.objects","api/evennia.prototypes","api/evennia.prototypes.menus","api/evennia.prototypes.protfuncs","api/evennia.prototypes.prototypes","api/evennia.prototypes.spawner","api/evennia.scripts","api/evennia.scripts.manager","api/evennia.scripts.models","api/evennia.scripts.monitorhandler","api/evennia.scripts.scripthandler","api/evennia.scripts.scripts","api/evennia.scripts.taskhandler","api/evennia.scripts.tickerhandler","api/evennia.server","api/evennia.server.amp_client","api/evennia.server.connection_wizard","api/evennia.server.deprecations","api/evennia.server.evennia_launcher","api/evennia.server.game_index_client","api/evennia.server.game_index_client.client","api/evennia.server.game_index_client.service","api/evennia.server.initial_setup","api/evennia.server.inputfuncs","api/evennia.server.manager","api/evennia.server.models","api/evennia.server.portal","api/evennia.server.portal.amp","api/evennia.server.portal.amp_server","api/evennia.server.portal.grapevine","api/evennia.server.portal.irc","api/evennia.server.portal.mccp","api/evennia.server.portal.mssp","api/evennia.server.portal.mxp","api/evennia.server.portal.naws","api/evennia.server.portal.portal","api/evennia.server.portal.portalsessionhandler","api/evennia.server.portal.rss","api/evennia.server.portal.ssh","api/evennia.server.portal.ssl","api/evennia.server.portal.suppress_ga","api/evennia.server.portal.telnet","api/evennia.server.portal.telnet_oob","api/evennia.server.portal.telnet_ssl","api/evennia.server.portal.tests","api/evennia.server.portal.ttype","api/evennia.server.portal.webclient","api/evennia.server.portal.webclient_ajax","api/evennia.server.profiling","api/evennia.server.profiling.dummyrunner","api/evennia.server.profiling.dummyrunner_settings","api/evennia.server.profiling.memplot","api/evennia.server.profiling.settings_mixin","api/evennia.server.profiling.test_queries","api/evennia.server.profiling.tests","api/evennia.server.profiling.timetrace","api/evennia.server.server","api/evennia.server.serversession","api/evennia.server.session","api/evennia.server.sessionhandler","api/evennia.server.signals","api/evennia.server.throttle","api/evennia.server.validators","api/evennia.server.webserver","api/evennia.settings_default","api/evennia.typeclasses","api/evennia.typeclasses.attributes","api/evennia.typeclasses.managers","api/evennia.typeclasses.models","api/evennia.typeclasses.tags","api/evennia.utils","api/evennia.utils.ansi","api/evennia.utils.batchprocessors","api/evennia.utils.containers","api/evennia.utils.create","api/evennia.utils.dbserialize","api/evennia.utils.eveditor","api/evennia.utils.evform","api/evennia.utils.evmenu","api/evennia.utils.evmore","api/evennia.utils.evtable","api/evennia.utils.funcparser","api/evennia.utils.gametime","api/evennia.utils.idmapper","api/evennia.utils.idmapper.manager","api/evennia.utils.idmapper.models","api/evennia.utils.idmapper.tests","api/evennia.utils.logger","api/evennia.utils.optionclasses","api/evennia.utils.optionhandler","api/evennia.utils.picklefield","api/evennia.utils.search","api/evennia.utils.test_resources","api/evennia.utils.text2html","api/evennia.utils.utils","api/evennia.utils.validatorfuncs","api/evennia.utils.verb_conjugation","api/evennia.utils.verb_conjugation.conjugate","api/evennia.utils.verb_conjugation.pronouns","api/evennia.utils.verb_conjugation.tests","api/evennia.web","api/evennia.web.admin","api/evennia.web.admin.accounts","api/evennia.web.admin.attributes","api/evennia.web.admin.comms","api/evennia.web.admin.frontpage","api/evennia.web.admin.help","api/evennia.web.admin.objects","api/evennia.web.admin.scripts","api/evennia.web.admin.server","api/evennia.web.admin.tags","api/evennia.web.admin.urls","api/evennia.web.admin.utils","api/evennia.web.api","api/evennia.web.api.filters","api/evennia.web.api.permissions","api/evennia.web.api.root","api/evennia.web.api.serializers","api/evennia.web.api.tests","api/evennia.web.api.urls","api/evennia.web.api.views","api/evennia.web.templatetags","api/evennia.web.templatetags.addclass","api/evennia.web.urls","api/evennia.web.utils","api/evennia.web.utils.adminsite","api/evennia.web.utils.backends","api/evennia.web.utils.general_context","api/evennia.web.utils.middleware","api/evennia.web.utils.tests","api/evennia.web.webclient","api/evennia.web.webclient.urls","api/evennia.web.webclient.views","api/evennia.web.website","api/evennia.web.website.forms","api/evennia.web.website.tests","api/evennia.web.website.urls","api/evennia.web.website.views","api/evennia.web.website.views.accounts","api/evennia.web.website.views.channels","api/evennia.web.website.views.characters","api/evennia.web.website.views.errors","api/evennia.web.website.views.help","api/evennia.web.website.views.index","api/evennia.web.website.views.mixins","api/evennia.web.website.views.objects","index"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":1,"sphinx.ext.todo":2,"sphinx.ext.viewcode":1,sphinx:56},filenames:["Coding/Changelog.md","Coding/Coding-Introduction.md","Coding/Coding-Overview.md","Coding/Continuous-Integration.md","Coding/Continuous-Integration-TeamCity.md","Coding/Continuous-Integration-Travis.md","Coding/Debugging.md","Coding/Profiling.md","Coding/Quirks.md","Coding/Setting-up-PyCharm.md","Coding/Unit-Testing.md","Coding/Updating-Your-Game.md","Coding/Version-Control.md","Components/Accounts.md","Components/Attributes.md","Components/Batch-Code-Processor.md","Components/Batch-Command-Processor.md","Components/Batch-Processors.md","Components/Bootstrap-Components-and-Utilities.md","Components/Channels.md","Components/Coding-Utils.md","Components/Command-Sets.md","Components/Command-System.md","Components/Commands.md","Components/Components-Overview.md","Components/Connection-Screen.md","Components/Default-Commands.md","Components/EvEditor.md","Components/EvMenu.md","Components/EvMore.md","Components/FuncParser.md","Components/Help-System.md","Components/Inputfuncs.md","Components/Locks.md","Components/MonitorHandler.md","Components/Msg.md","Components/Nicks.md","Components/Objects.md","Components/Outputfuncs.md","Components/Permissions.md","Components/Portal-And-Server.md","Components/Prototypes.md","Components/Scripts.md","Components/Server.md","Components/Sessions.md","Components/Signals.md","Components/Tags.md","Components/TickerHandler.md","Components/Typeclasses.md","Components/Web-API.md","Components/Web-Admin.md","Components/Webclient.md","Components/Webserver.md","Components/Website.md","Concepts/Async-Process.md","Concepts/Banning.md","Concepts/Bootstrap-&-Evennia.md","Concepts/Building-Permissions.md","Concepts/Change-Messages-Per-Receiver.md","Concepts/Clickable-Links.md","Concepts/Colors.md","Concepts/Concepts-Overview.md","Concepts/Custom-Protocols.md","Concepts/Guest-Logins.md","Concepts/Internationalization.md","Concepts/Messagepath.md","Concepts/Multisession-modes.md","Concepts/New-Models.md","Concepts/OOB.md","Concepts/Soft-Code.md","Concepts/Text-Encodings.md","Concepts/TextTags.md","Concepts/Using-MUX-as-a-Standard.md","Concepts/Web-Features.md","Concepts/Zones.md","Contribs/Contrib-AWSStorage.md","Contribs/Contrib-Auditing.md","Contribs/Contrib-Barter.md","Contribs/Contrib-Batchprocessor.md","Contribs/Contrib-Bodyfunctions.md","Contribs/Contrib-Building-Menu.md","Contribs/Contrib-Clothing.md","Contribs/Contrib-Color-Markups.md","Contribs/Contrib-Components.md","Contribs/Contrib-Cooldowns.md","Contribs/Contrib-Crafting.md","Contribs/Contrib-Custom-Gametime.md","Contribs/Contrib-Dice.md","Contribs/Contrib-Email-Login.md","Contribs/Contrib-Evscaperoom.md","Contribs/Contrib-Extended-Room.md","Contribs/Contrib-Fieldfill.md","Contribs/Contrib-Gendersub.md","Contribs/Contrib-Health-Bar.md","Contribs/Contrib-Ingame-Python.md","Contribs/Contrib-Ingame-Python-Tutorial-Dialogue.md","Contribs/Contrib-Ingame-Python-Tutorial-Elevator.md","Contribs/Contrib-Mail.md","Contribs/Contrib-Mapbuilder.md","Contribs/Contrib-Menu-Login.md","Contribs/Contrib-Mirror.md","Contribs/Contrib-Multidescer.md","Contribs/Contrib-Mux-Comms-Cmds.md","Contribs/Contrib-Puzzles.md","Contribs/Contrib-RPSystem.md","Contribs/Contrib-Random-String-Generator.md","Contribs/Contrib-Red-Button.md","Contribs/Contrib-Simpledoor.md","Contribs/Contrib-Slow-Exit.md","Contribs/Contrib-Talking-Npc.md","Contribs/Contrib-Traits.md","Contribs/Contrib-Tree-Select.md","Contribs/Contrib-Turnbattle.md","Contribs/Contrib-Tutorial-World.md","Contribs/Contrib-Unixcommand.md","Contribs/Contrib-Wilderness.md","Contribs/Contrib-XYZGrid.md","Contribs/Contribs-Overview.md","Contributing.md","Contributing-Docs.md","Evennia-API.md","Evennia-Introduction.md","Glossary.md","Howtos/Add-a-wiki-on-your-website.md","Howtos/Arxcode-Installation.md","Howtos/Beginner-Tutorial/Beginner-Tutorial-Intro.md","Howtos/Beginner-Tutorial/Part1/Adding-Commands.md","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Part1-Intro.md","Howtos/Beginner-Tutorial/Part1/Building-Quickstart.md","Howtos/Beginner-Tutorial/Part1/Creating-Things.md","Howtos/Beginner-Tutorial/Part1/Django-queries.md","Howtos/Beginner-Tutorial/Part1/Evennia-Library-Overview.md","Howtos/Beginner-Tutorial/Part1/Gamedir-Overview.md","Howtos/Beginner-Tutorial/Part1/Learning-Typeclasses.md","Howtos/Beginner-Tutorial/Part1/More-on-Commands.md","Howtos/Beginner-Tutorial/Part1/Python-basic-introduction.md","Howtos/Beginner-Tutorial/Part1/Python-classes-and-objects.md","Howtos/Beginner-Tutorial/Part1/Searching-Things.md","Howtos/Beginner-Tutorial/Part1/Tutorial-World.md","Howtos/Beginner-Tutorial/Part2/Beginner-Tutorial-Part2-Intro.md","Howtos/Beginner-Tutorial/Part2/Game-Planning.md","Howtos/Beginner-Tutorial/Part2/Planning-Some-Useful-Contribs.md","Howtos/Beginner-Tutorial/Part2/Planning-The-Tutorial-Game.md","Howtos/Beginner-Tutorial/Part2/Planning-Where-Do-I-Begin.md","Howtos/Beginner-Tutorial/Part3/A-Sittable-Object.md","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Part3-Intro.md","Howtos/Beginner-Tutorial/Part3/Implementing-a-game-rule-system.md","Howtos/Beginner-Tutorial/Part3/Turn-based-Combat-System.md","Howtos/Beginner-Tutorial/Part4/Beginner-Tutorial-Part4-Intro.md","Howtos/Beginner-Tutorial/Part5/Add-a-simple-new-web-page.md","Howtos/Beginner-Tutorial/Part5/Beginner-Tutorial-Part5-Intro.md","Howtos/Beginner-Tutorial/Part5/Web-Tutorial.md","Howtos/Building-a-mech-tutorial.md","Howtos/Coding-FAQ.md","Howtos/Command-Cooldown.md","Howtos/Command-Duration.md","Howtos/Command-Prompt.md","Howtos/Coordinates.md","Howtos/Default-Exit-Errors.md","Howtos/Dynamic-In-Game-Map.md","Howtos/Evennia-for-Diku-Users.md","Howtos/Evennia-for-MUSH-Users.md","Howtos/Evennia-for-roleplaying-sessions.md","Howtos/Gametime-Tutorial.md","Howtos/Help-System-Tutorial.md","Howtos/Howtos-Overview.md","Howtos/Manually-Configuring-Color.md","Howtos/Mass-and-weight-for-objects.md","Howtos/NPC-shop-Tutorial.md","Howtos/Parsing-commands-tutorial.md","Howtos/Static-In-Game-Map.md","Howtos/Tutorial-Aggressive-NPCs.md","Howtos/Tutorial-NPCs-listening.md","Howtos/Tutorial-Tweeting-Game-Stats.md","Howtos/Tutorial-Vehicles.md","Howtos/Tutorial-for-basic-MUSH-like-game.md","Howtos/Understanding-Color-Tags.md","Howtos/Weather-Tutorial.md","Howtos/Web-Character-Generation.md","Howtos/Web-Character-View-Tutorial.md","Licensing.md","Links.md","Setup/Apache-Config.md","Setup/Choosing-An-SQL-Server.md","Setup/Client-Support-Grid.md","Setup/Evennia-Game-Index.md","Setup/Grapevine.md","Setup/HAProxy-Config.md","Setup/How-to-connect-Evennia-to-Twitter.md","Setup/IRC.md","Setup/Installation.md","Setup/Installation-Android.md","Setup/Installation-Docker.md","Setup/Installation-Git.md","Setup/Installation-Non-Interactive.md","Setup/Installation-Troubleshooting.md","Setup/Installation-Upgrade.md","Setup/Online-Setup.md","Setup/RSS.md","Setup/Security.md","Setup/Settings.md","Setup/Settings-Default.md","Setup/Setup-Overview.md","Setup/Start-Stop-Reload.md","Unimplemented.md","api/evennia.md","api/evennia-api.md","api/evennia.accounts.md","api/evennia.accounts.accounts.md","api/evennia.accounts.bots.md","api/evennia.accounts.manager.md","api/evennia.accounts.models.md","api/evennia.commands.md","api/evennia.commands.cmdhandler.md","api/evennia.commands.cmdparser.md","api/evennia.commands.cmdset.md","api/evennia.commands.cmdsethandler.md","api/evennia.commands.command.md","api/evennia.commands.default.md","api/evennia.commands.default.account.md","api/evennia.commands.default.admin.md","api/evennia.commands.default.batchprocess.md","api/evennia.commands.default.building.md","api/evennia.commands.default.cmdset_account.md","api/evennia.commands.default.cmdset_character.md","api/evennia.commands.default.cmdset_session.md","api/evennia.commands.default.cmdset_unloggedin.md","api/evennia.commands.default.comms.md","api/evennia.commands.default.general.md","api/evennia.commands.default.help.md","api/evennia.commands.default.muxcommand.md","api/evennia.commands.default.syscommands.md","api/evennia.commands.default.system.md","api/evennia.commands.default.tests.md","api/evennia.commands.default.unloggedin.md","api/evennia.comms.md","api/evennia.comms.comms.md","api/evennia.comms.managers.md","api/evennia.comms.models.md","api/evennia.contrib.md","api/evennia.contrib.base_systems.md","api/evennia.contrib.base_systems.awsstorage.md","api/evennia.contrib.base_systems.awsstorage.aws_s3_cdn.md","api/evennia.contrib.base_systems.awsstorage.tests.md","api/evennia.contrib.base_systems.building_menu.md","api/evennia.contrib.base_systems.building_menu.building_menu.md","api/evennia.contrib.base_systems.building_menu.tests.md","api/evennia.contrib.base_systems.color_markups.md","api/evennia.contrib.base_systems.color_markups.color_markups.md","api/evennia.contrib.base_systems.color_markups.tests.md","api/evennia.contrib.base_systems.custom_gametime.md","api/evennia.contrib.base_systems.custom_gametime.custom_gametime.md","api/evennia.contrib.base_systems.custom_gametime.tests.md","api/evennia.contrib.base_systems.email_login.md","api/evennia.contrib.base_systems.email_login.connection_screens.md","api/evennia.contrib.base_systems.email_login.email_login.md","api/evennia.contrib.base_systems.email_login.tests.md","api/evennia.contrib.base_systems.ingame_python.md","api/evennia.contrib.base_systems.ingame_python.callbackhandler.md","api/evennia.contrib.base_systems.ingame_python.commands.md","api/evennia.contrib.base_systems.ingame_python.eventfuncs.md","api/evennia.contrib.base_systems.ingame_python.scripts.md","api/evennia.contrib.base_systems.ingame_python.tests.md","api/evennia.contrib.base_systems.ingame_python.typeclasses.md","api/evennia.contrib.base_systems.ingame_python.utils.md","api/evennia.contrib.base_systems.menu_login.md","api/evennia.contrib.base_systems.menu_login.connection_screens.md","api/evennia.contrib.base_systems.menu_login.menu_login.md","api/evennia.contrib.base_systems.menu_login.tests.md","api/evennia.contrib.base_systems.mux_comms_cmds.md","api/evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.md","api/evennia.contrib.base_systems.mux_comms_cmds.tests.md","api/evennia.contrib.base_systems.unixcommand.md","api/evennia.contrib.base_systems.unixcommand.tests.md","api/evennia.contrib.base_systems.unixcommand.unixcommand.md","api/evennia.contrib.full_systems.md","api/evennia.contrib.full_systems.evscaperoom.md","api/evennia.contrib.full_systems.evscaperoom.commands.md","api/evennia.contrib.full_systems.evscaperoom.menu.md","api/evennia.contrib.full_systems.evscaperoom.objects.md","api/evennia.contrib.full_systems.evscaperoom.room.md","api/evennia.contrib.full_systems.evscaperoom.scripts.md","api/evennia.contrib.full_systems.evscaperoom.state.md","api/evennia.contrib.full_systems.evscaperoom.tests.md","api/evennia.contrib.full_systems.evscaperoom.utils.md","api/evennia.contrib.game_systems.md","api/evennia.contrib.game_systems.barter.md","api/evennia.contrib.game_systems.barter.barter.md","api/evennia.contrib.game_systems.barter.tests.md","api/evennia.contrib.game_systems.clothing.md","api/evennia.contrib.game_systems.clothing.clothing.md","api/evennia.contrib.game_systems.clothing.tests.md","api/evennia.contrib.game_systems.cooldowns.md","api/evennia.contrib.game_systems.cooldowns.cooldowns.md","api/evennia.contrib.game_systems.cooldowns.tests.md","api/evennia.contrib.game_systems.crafting.md","api/evennia.contrib.game_systems.crafting.crafting.md","api/evennia.contrib.game_systems.crafting.example_recipes.md","api/evennia.contrib.game_systems.crafting.tests.md","api/evennia.contrib.game_systems.gendersub.md","api/evennia.contrib.game_systems.gendersub.gendersub.md","api/evennia.contrib.game_systems.gendersub.tests.md","api/evennia.contrib.game_systems.mail.md","api/evennia.contrib.game_systems.mail.mail.md","api/evennia.contrib.game_systems.mail.tests.md","api/evennia.contrib.game_systems.multidescer.md","api/evennia.contrib.game_systems.multidescer.multidescer.md","api/evennia.contrib.game_systems.multidescer.tests.md","api/evennia.contrib.game_systems.puzzles.md","api/evennia.contrib.game_systems.puzzles.puzzles.md","api/evennia.contrib.game_systems.puzzles.tests.md","api/evennia.contrib.game_systems.turnbattle.md","api/evennia.contrib.game_systems.turnbattle.tb_basic.md","api/evennia.contrib.game_systems.turnbattle.tb_equip.md","api/evennia.contrib.game_systems.turnbattle.tb_items.md","api/evennia.contrib.game_systems.turnbattle.tb_magic.md","api/evennia.contrib.game_systems.turnbattle.tb_range.md","api/evennia.contrib.game_systems.turnbattle.tests.md","api/evennia.contrib.grid.md","api/evennia.contrib.grid.extended_room.md","api/evennia.contrib.grid.extended_room.extended_room.md","api/evennia.contrib.grid.extended_room.tests.md","api/evennia.contrib.grid.mapbuilder.md","api/evennia.contrib.grid.mapbuilder.mapbuilder.md","api/evennia.contrib.grid.mapbuilder.tests.md","api/evennia.contrib.grid.simpledoor.md","api/evennia.contrib.grid.simpledoor.simpledoor.md","api/evennia.contrib.grid.simpledoor.tests.md","api/evennia.contrib.grid.slow_exit.md","api/evennia.contrib.grid.slow_exit.slow_exit.md","api/evennia.contrib.grid.slow_exit.tests.md","api/evennia.contrib.grid.wilderness.md","api/evennia.contrib.grid.wilderness.tests.md","api/evennia.contrib.grid.wilderness.wilderness.md","api/evennia.contrib.grid.xyzgrid.md","api/evennia.contrib.grid.xyzgrid.commands.md","api/evennia.contrib.grid.xyzgrid.example.md","api/evennia.contrib.grid.xyzgrid.launchcmd.md","api/evennia.contrib.grid.xyzgrid.prototypes.md","api/evennia.contrib.grid.xyzgrid.tests.md","api/evennia.contrib.grid.xyzgrid.utils.md","api/evennia.contrib.grid.xyzgrid.xymap.md","api/evennia.contrib.grid.xyzgrid.xymap_legend.md","api/evennia.contrib.grid.xyzgrid.xyzgrid.md","api/evennia.contrib.grid.xyzgrid.xyzroom.md","api/evennia.contrib.rpg.md","api/evennia.contrib.rpg.dice.md","api/evennia.contrib.rpg.dice.dice.md","api/evennia.contrib.rpg.dice.tests.md","api/evennia.contrib.rpg.health_bar.md","api/evennia.contrib.rpg.health_bar.health_bar.md","api/evennia.contrib.rpg.health_bar.tests.md","api/evennia.contrib.rpg.rpsystem.md","api/evennia.contrib.rpg.rpsystem.rplanguage.md","api/evennia.contrib.rpg.rpsystem.rpsystem.md","api/evennia.contrib.rpg.rpsystem.tests.md","api/evennia.contrib.rpg.traits.md","api/evennia.contrib.rpg.traits.tests.md","api/evennia.contrib.rpg.traits.traits.md","api/evennia.contrib.tutorials.md","api/evennia.contrib.tutorials.batchprocessor.md","api/evennia.contrib.tutorials.batchprocessor.example_batch_code.md","api/evennia.contrib.tutorials.bodyfunctions.md","api/evennia.contrib.tutorials.bodyfunctions.bodyfunctions.md","api/evennia.contrib.tutorials.bodyfunctions.tests.md","api/evennia.contrib.tutorials.mirror.md","api/evennia.contrib.tutorials.mirror.mirror.md","api/evennia.contrib.tutorials.red_button.md","api/evennia.contrib.tutorials.red_button.red_button.md","api/evennia.contrib.tutorials.talking_npc.md","api/evennia.contrib.tutorials.talking_npc.talking_npc.md","api/evennia.contrib.tutorials.talking_npc.tests.md","api/evennia.contrib.tutorials.tutorial_world.md","api/evennia.contrib.tutorials.tutorial_world.intro_menu.md","api/evennia.contrib.tutorials.tutorial_world.mob.md","api/evennia.contrib.tutorials.tutorial_world.objects.md","api/evennia.contrib.tutorials.tutorial_world.rooms.md","api/evennia.contrib.tutorials.tutorial_world.tests.md","api/evennia.contrib.utils.md","api/evennia.contrib.utils.auditing.md","api/evennia.contrib.utils.auditing.outputs.md","api/evennia.contrib.utils.auditing.server.md","api/evennia.contrib.utils.auditing.tests.md","api/evennia.contrib.utils.fieldfill.md","api/evennia.contrib.utils.fieldfill.fieldfill.md","api/evennia.contrib.utils.random_string_generator.md","api/evennia.contrib.utils.random_string_generator.random_string_generator.md","api/evennia.contrib.utils.random_string_generator.tests.md","api/evennia.contrib.utils.tree_select.md","api/evennia.contrib.utils.tree_select.tests.md","api/evennia.contrib.utils.tree_select.tree_select.md","api/evennia.help.md","api/evennia.help.filehelp.md","api/evennia.help.manager.md","api/evennia.help.models.md","api/evennia.help.utils.md","api/evennia.locks.md","api/evennia.locks.lockfuncs.md","api/evennia.locks.lockhandler.md","api/evennia.objects.md","api/evennia.objects.manager.md","api/evennia.objects.models.md","api/evennia.objects.objects.md","api/evennia.prototypes.md","api/evennia.prototypes.menus.md","api/evennia.prototypes.protfuncs.md","api/evennia.prototypes.prototypes.md","api/evennia.prototypes.spawner.md","api/evennia.scripts.md","api/evennia.scripts.manager.md","api/evennia.scripts.models.md","api/evennia.scripts.monitorhandler.md","api/evennia.scripts.scripthandler.md","api/evennia.scripts.scripts.md","api/evennia.scripts.taskhandler.md","api/evennia.scripts.tickerhandler.md","api/evennia.server.md","api/evennia.server.amp_client.md","api/evennia.server.connection_wizard.md","api/evennia.server.deprecations.md","api/evennia.server.evennia_launcher.md","api/evennia.server.game_index_client.md","api/evennia.server.game_index_client.client.md","api/evennia.server.game_index_client.service.md","api/evennia.server.initial_setup.md","api/evennia.server.inputfuncs.md","api/evennia.server.manager.md","api/evennia.server.models.md","api/evennia.server.portal.md","api/evennia.server.portal.amp.md","api/evennia.server.portal.amp_server.md","api/evennia.server.portal.grapevine.md","api/evennia.server.portal.irc.md","api/evennia.server.portal.mccp.md","api/evennia.server.portal.mssp.md","api/evennia.server.portal.mxp.md","api/evennia.server.portal.naws.md","api/evennia.server.portal.portal.md","api/evennia.server.portal.portalsessionhandler.md","api/evennia.server.portal.rss.md","api/evennia.server.portal.ssh.md","api/evennia.server.portal.ssl.md","api/evennia.server.portal.suppress_ga.md","api/evennia.server.portal.telnet.md","api/evennia.server.portal.telnet_oob.md","api/evennia.server.portal.telnet_ssl.md","api/evennia.server.portal.tests.md","api/evennia.server.portal.ttype.md","api/evennia.server.portal.webclient.md","api/evennia.server.portal.webclient_ajax.md","api/evennia.server.profiling.md","api/evennia.server.profiling.dummyrunner.md","api/evennia.server.profiling.dummyrunner_settings.md","api/evennia.server.profiling.memplot.md","api/evennia.server.profiling.settings_mixin.md","api/evennia.server.profiling.test_queries.md","api/evennia.server.profiling.tests.md","api/evennia.server.profiling.timetrace.md","api/evennia.server.server.md","api/evennia.server.serversession.md","api/evennia.server.session.md","api/evennia.server.sessionhandler.md","api/evennia.server.signals.md","api/evennia.server.throttle.md","api/evennia.server.validators.md","api/evennia.server.webserver.md","api/evennia.settings_default.md","api/evennia.typeclasses.md","api/evennia.typeclasses.attributes.md","api/evennia.typeclasses.managers.md","api/evennia.typeclasses.models.md","api/evennia.typeclasses.tags.md","api/evennia.utils.md","api/evennia.utils.ansi.md","api/evennia.utils.batchprocessors.md","api/evennia.utils.containers.md","api/evennia.utils.create.md","api/evennia.utils.dbserialize.md","api/evennia.utils.eveditor.md","api/evennia.utils.evform.md","api/evennia.utils.evmenu.md","api/evennia.utils.evmore.md","api/evennia.utils.evtable.md","api/evennia.utils.funcparser.md","api/evennia.utils.gametime.md","api/evennia.utils.idmapper.md","api/evennia.utils.idmapper.manager.md","api/evennia.utils.idmapper.models.md","api/evennia.utils.idmapper.tests.md","api/evennia.utils.logger.md","api/evennia.utils.optionclasses.md","api/evennia.utils.optionhandler.md","api/evennia.utils.picklefield.md","api/evennia.utils.search.md","api/evennia.utils.test_resources.md","api/evennia.utils.text2html.md","api/evennia.utils.utils.md","api/evennia.utils.validatorfuncs.md","api/evennia.utils.verb_conjugation.md","api/evennia.utils.verb_conjugation.conjugate.md","api/evennia.utils.verb_conjugation.pronouns.md","api/evennia.utils.verb_conjugation.tests.md","api/evennia.web.md","api/evennia.web.admin.md","api/evennia.web.admin.accounts.md","api/evennia.web.admin.attributes.md","api/evennia.web.admin.comms.md","api/evennia.web.admin.frontpage.md","api/evennia.web.admin.help.md","api/evennia.web.admin.objects.md","api/evennia.web.admin.scripts.md","api/evennia.web.admin.server.md","api/evennia.web.admin.tags.md","api/evennia.web.admin.urls.md","api/evennia.web.admin.utils.md","api/evennia.web.api.md","api/evennia.web.api.filters.md","api/evennia.web.api.permissions.md","api/evennia.web.api.root.md","api/evennia.web.api.serializers.md","api/evennia.web.api.tests.md","api/evennia.web.api.urls.md","api/evennia.web.api.views.md","api/evennia.web.templatetags.md","api/evennia.web.templatetags.addclass.md","api/evennia.web.urls.md","api/evennia.web.utils.md","api/evennia.web.utils.adminsite.md","api/evennia.web.utils.backends.md","api/evennia.web.utils.general_context.md","api/evennia.web.utils.middleware.md","api/evennia.web.utils.tests.md","api/evennia.web.webclient.md","api/evennia.web.webclient.urls.md","api/evennia.web.webclient.views.md","api/evennia.web.website.md","api/evennia.web.website.forms.md","api/evennia.web.website.tests.md","api/evennia.web.website.urls.md","api/evennia.web.website.views.md","api/evennia.web.website.views.accounts.md","api/evennia.web.website.views.channels.md","api/evennia.web.website.views.characters.md","api/evennia.web.website.views.errors.md","api/evennia.web.website.views.help.md","api/evennia.web.website.views.index.md","api/evennia.web.website.views.mixins.md","api/evennia.web.website.views.objects.md","index.md"],objects:{"":{evennia:[205,0,0,"-"]},"evennia.accounts":{accounts:[208,0,0,"-"],bots:[209,0,0,"-"],manager:[210,0,0,"-"],models:[211,0,0,"-"]},"evennia.accounts.accounts":{DefaultAccount:[208,1,1,""],DefaultGuest:[208,1,1,""]},"evennia.accounts.accounts.DefaultAccount":{"delete":[208,3,1,""],DoesNotExist:[208,2,1,""],MultipleObjectsReturned:[208,2,1,""],access:[208,3,1,""],at_access:[208,3,1,""],at_account_creation:[208,3,1,""],at_cmdset_get:[208,3,1,""],at_disconnect:[208,3,1,""],at_failed_login:[208,3,1,""],at_first_login:[208,3,1,""],at_first_save:[208,3,1,""],at_init:[208,3,1,""],at_look:[208,3,1,""],at_msg_receive:[208,3,1,""],at_msg_send:[208,3,1,""],at_password_change:[208,3,1,""],at_post_channel_msg:[208,3,1,""],at_post_disconnect:[208,3,1,""],at_post_login:[208,3,1,""],at_pre_channel_msg:[208,3,1,""],at_pre_login:[208,3,1,""],at_server_reload:[208,3,1,""],at_server_shutdown:[208,3,1,""],authenticate:[208,3,1,""],basetype_setup:[208,3,1,""],channel_msg:[208,3,1,""],character:[208,3,1,""],characters:[208,3,1,""],cmdset:[208,4,1,""],connection_time:[208,3,1,""],create:[208,3,1,""],create_character:[208,3,1,""],disconnect_session_from_account:[208,3,1,""],execute_cmd:[208,3,1,""],get_all_puppets:[208,3,1,""],get_display_name:[208,3,1,""],get_puppet:[208,3,1,""],get_username_validators:[208,3,1,""],idle_time:[208,3,1,""],is_banned:[208,3,1,""],msg:[208,3,1,""],nicks:[208,4,1,""],normalize_username:[208,3,1,""],objects:[208,4,1,""],options:[208,4,1,""],path:[208,4,1,""],puppet:[208,3,1,""],puppet_object:[208,3,1,""],scripts:[208,4,1,""],search:[208,3,1,""],sessions:[208,4,1,""],set_password:[208,3,1,""],typename:[208,4,1,""],unpuppet_all:[208,3,1,""],unpuppet_object:[208,3,1,""],validate_password:[208,3,1,""],validate_username:[208,3,1,""]},"evennia.accounts.accounts.DefaultGuest":{DoesNotExist:[208,2,1,""],MultipleObjectsReturned:[208,2,1,""],at_post_disconnect:[208,3,1,""],at_post_login:[208,3,1,""],at_server_shutdown:[208,3,1,""],authenticate:[208,3,1,""],create:[208,3,1,""],path:[208,4,1,""],typename:[208,4,1,""]},"evennia.accounts.bots":{Bot:[209,1,1,""],BotStarter:[209,1,1,""],GrapevineBot:[209,1,1,""],IRCBot:[209,1,1,""],RSSBot:[209,1,1,""]},"evennia.accounts.bots.Bot":{DoesNotExist:[209,2,1,""],MultipleObjectsReturned:[209,2,1,""],at_server_shutdown:[209,3,1,""],basetype_setup:[209,3,1,""],execute_cmd:[209,3,1,""],msg:[209,3,1,""],path:[209,4,1,""],start:[209,3,1,""],typename:[209,4,1,""]},"evennia.accounts.bots.BotStarter":{DoesNotExist:[209,2,1,""],MultipleObjectsReturned:[209,2,1,""],at_repeat:[209,3,1,""],at_script_creation:[209,3,1,""],at_server_reload:[209,3,1,""],at_server_shutdown:[209,3,1,""],at_start:[209,3,1,""],path:[209,4,1,""],typename:[209,4,1,""]},"evennia.accounts.bots.GrapevineBot":{DoesNotExist:[209,2,1,""],MultipleObjectsReturned:[209,2,1,""],at_msg_send:[209,3,1,""],execute_cmd:[209,3,1,""],factory_path:[209,4,1,""],msg:[209,3,1,""],path:[209,4,1,""],start:[209,3,1,""],typename:[209,4,1,""]},"evennia.accounts.bots.IRCBot":{DoesNotExist:[209,2,1,""],MultipleObjectsReturned:[209,2,1,""],at_msg_send:[209,3,1,""],execute_cmd:[209,3,1,""],factory_path:[209,4,1,""],get_nicklist:[209,3,1,""],msg:[209,3,1,""],path:[209,4,1,""],ping:[209,3,1,""],reconnect:[209,3,1,""],start:[209,3,1,""],typename:[209,4,1,""]},"evennia.accounts.bots.RSSBot":{DoesNotExist:[209,2,1,""],MultipleObjectsReturned:[209,2,1,""],execute_cmd:[209,3,1,""],path:[209,4,1,""],start:[209,3,1,""],typename:[209,4,1,""]},"evennia.accounts.manager":{AccountDBManager:[210,1,1,""],AccountManager:[210,1,1,""]},"evennia.accounts.manager.AccountDBManager":{account_search:[210,3,1,""],create_account:[210,3,1,""],get_account_from_email:[210,3,1,""],get_account_from_name:[210,3,1,""],get_account_from_uid:[210,3,1,""],get_connected_accounts:[210,3,1,""],get_recently_connected_accounts:[210,3,1,""],get_recently_created_accounts:[210,3,1,""],num_total_accounts:[210,3,1,""],search_account:[210,3,1,""]},"evennia.accounts.models":{AccountDB:[211,1,1,""]},"evennia.accounts.models.AccountDB":{DoesNotExist:[211,2,1,""],MultipleObjectsReturned:[211,2,1,""],account_subscription_set:[211,4,1,""],cmdset_storage:[211,3,1,""],date_joined:[211,4,1,""],db_attributes:[211,4,1,""],db_cmdset_storage:[211,4,1,""],db_date_created:[211,4,1,""],db_is_bot:[211,4,1,""],db_is_connected:[211,4,1,""],db_key:[211,4,1,""],db_lock_storage:[211,4,1,""],db_tags:[211,4,1,""],db_typeclass_path:[211,4,1,""],email:[211,4,1,""],first_name:[211,4,1,""],get_next_by_date_joined:[211,3,1,""],get_next_by_db_date_created:[211,3,1,""],get_previous_by_date_joined:[211,3,1,""],get_previous_by_db_date_created:[211,3,1,""],groups:[211,4,1,""],hide_from_accounts_set:[211,4,1,""],id:[211,4,1,""],is_active:[211,4,1,""],is_bot:[211,3,1,""],is_connected:[211,3,1,""],is_staff:[211,4,1,""],is_superuser:[211,4,1,""],key:[211,3,1,""],last_login:[211,4,1,""],last_name:[211,4,1,""],logentry_set:[211,4,1,""],name:[211,3,1,""],objectdb_set:[211,4,1,""],objects:[211,4,1,""],password:[211,4,1,""],path:[211,4,1,""],receiver_account_set:[211,4,1,""],scriptdb_set:[211,4,1,""],sender_account_set:[211,4,1,""],typename:[211,4,1,""],uid:[211,3,1,""],user_permissions:[211,4,1,""],username:[211,4,1,""]},"evennia.commands":{"default":[218,0,0,"-"],cmdhandler:[213,0,0,"-"],cmdparser:[214,0,0,"-"],cmdset:[215,0,0,"-"],cmdsethandler:[216,0,0,"-"],command:[217,0,0,"-"]},"evennia.commands.cmdhandler":{InterruptCommand:[213,2,1,""],cmdhandler:[213,5,1,""]},"evennia.commands.cmdparser":{build_matches:[214,5,1,""],cmdparser:[214,5,1,""],create_match:[214,5,1,""],try_num_differentiators:[214,5,1,""]},"evennia.commands.cmdset":{CmdSet:[215,1,1,""]},"evennia.commands.cmdset.CmdSet":{__init__:[215,3,1,""],add:[215,3,1,""],at_cmdset_creation:[215,3,1,""],count:[215,3,1,""],duplicates:[215,4,1,""],errmessage:[215,4,1,""],get:[215,3,1,""],get_all_cmd_keys_and_aliases:[215,3,1,""],get_system_cmds:[215,3,1,""],key:[215,4,1,""],key_mergetypes:[215,4,1,""],make_unique:[215,3,1,""],mergetype:[215,4,1,""],no_channels:[215,4,1,""],no_exits:[215,4,1,""],no_objs:[215,4,1,""],path:[215,4,1,""],persistent:[215,4,1,""],priority:[215,4,1,""],remove:[215,3,1,""],to_duplicate:[215,4,1,""]},"evennia.commands.cmdsethandler":{CmdSetHandler:[216,1,1,""],import_cmdset:[216,5,1,""]},"evennia.commands.cmdsethandler.CmdSetHandler":{"delete":[216,3,1,""],__init__:[216,3,1,""],add:[216,3,1,""],add_default:[216,3,1,""],all:[216,3,1,""],clear:[216,3,1,""],delete_default:[216,3,1,""],get:[216,3,1,""],has:[216,3,1,""],has_cmdset:[216,3,1,""],remove:[216,3,1,""],remove_default:[216,3,1,""],reset:[216,3,1,""],update:[216,3,1,""]},"evennia.commands.command":{Command:[217,1,1,""],CommandMeta:[217,1,1,""],InterruptCommand:[217,2,1,""]},"evennia.commands.command.Command":{__init__:[217,3,1,""],access:[217,3,1,""],aliases:[217,4,1,""],arg_regex:[217,4,1,""],at_post_cmd:[217,3,1,""],at_pre_cmd:[217,3,1,""],auto_help:[217,4,1,""],client_width:[217,3,1,""],execute_cmd:[217,3,1,""],func:[217,3,1,""],get_command_info:[217,3,1,""],get_extra_info:[217,3,1,""],get_help:[217,3,1,""],help_category:[217,4,1,""],is_exit:[217,4,1,""],key:[217,4,1,""],lock_storage:[217,4,1,""],lockhandler:[217,4,1,""],locks:[217,4,1,""],match:[217,3,1,""],msg:[217,3,1,""],msg_all_sessions:[217,4,1,""],parse:[217,3,1,""],retain_instance:[217,4,1,""],save_for_next:[217,4,1,""],search_index_entry:[217,4,1,""],set_aliases:[217,3,1,""],set_key:[217,3,1,""],styled_footer:[217,3,1,""],styled_header:[217,3,1,""],styled_separator:[217,3,1,""],styled_table:[217,3,1,""],web_get_admin_url:[217,3,1,""],web_get_detail_url:[217,3,1,""]},"evennia.commands.command.CommandMeta":{__init__:[217,3,1,""]},"evennia.commands.default":{account:[219,0,0,"-"],admin:[220,0,0,"-"],batchprocess:[221,0,0,"-"],building:[222,0,0,"-"],cmdset_account:[223,0,0,"-"],cmdset_character:[224,0,0,"-"],cmdset_session:[225,0,0,"-"],cmdset_unloggedin:[226,0,0,"-"],comms:[227,0,0,"-"],general:[228,0,0,"-"],help:[229,0,0,"-"],muxcommand:[230,0,0,"-"],syscommands:[231,0,0,"-"],system:[232,0,0,"-"],unloggedin:[234,0,0,"-"]},"evennia.commands.default.account":{CmdCharCreate:[219,1,1,""],CmdCharDelete:[219,1,1,""],CmdColorTest:[219,1,1,""],CmdIC:[219,1,1,""],CmdOOC:[219,1,1,""],CmdOOCLook:[219,1,1,""],CmdOption:[219,1,1,""],CmdPassword:[219,1,1,""],CmdQuell:[219,1,1,""],CmdQuit:[219,1,1,""],CmdSessions:[219,1,1,""],CmdStyle:[219,1,1,""],CmdWho:[219,1,1,""]},"evennia.commands.default.account.CmdCharCreate":{account_caller:[219,4,1,""],aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],locks:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.commands.default.account.CmdCharDelete":{aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],locks:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.commands.default.account.CmdColorTest":{account_caller:[219,4,1,""],aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],locks:[219,4,1,""],search_index_entry:[219,4,1,""],slice_bright_bg:[219,4,1,""],slice_bright_fg:[219,4,1,""],slice_dark_bg:[219,4,1,""],slice_dark_fg:[219,4,1,""],table_format:[219,3,1,""]},"evennia.commands.default.account.CmdIC":{account_caller:[219,4,1,""],aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],locks:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.commands.default.account.CmdOOC":{account_caller:[219,4,1,""],aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],locks:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.commands.default.account.CmdOOCLook":{account_caller:[219,4,1,""],aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],locks:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.commands.default.account.CmdOption":{account_caller:[219,4,1,""],aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],locks:[219,4,1,""],search_index_entry:[219,4,1,""],switch_options:[219,4,1,""]},"evennia.commands.default.account.CmdPassword":{account_caller:[219,4,1,""],aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],locks:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.commands.default.account.CmdQuell":{account_caller:[219,4,1,""],aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],locks:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.commands.default.account.CmdQuit":{account_caller:[219,4,1,""],aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],locks:[219,4,1,""],search_index_entry:[219,4,1,""],switch_options:[219,4,1,""]},"evennia.commands.default.account.CmdSessions":{account_caller:[219,4,1,""],aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],locks:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.commands.default.account.CmdStyle":{aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],list_styles:[219,3,1,""],lock_storage:[219,4,1,""],search_index_entry:[219,4,1,""],set:[219,3,1,""],switch_options:[219,4,1,""]},"evennia.commands.default.account.CmdWho":{account_caller:[219,4,1,""],aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],locks:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.commands.default.admin":{CmdBan:[220,1,1,""],CmdBoot:[220,1,1,""],CmdEmit:[220,1,1,""],CmdForce:[220,1,1,""],CmdNewPassword:[220,1,1,""],CmdPerm:[220,1,1,""],CmdUnban:[220,1,1,""],CmdWall:[220,1,1,""]},"evennia.commands.default.admin.CmdBan":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],locks:[220,4,1,""],search_index_entry:[220,4,1,""]},"evennia.commands.default.admin.CmdBoot":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],locks:[220,4,1,""],search_index_entry:[220,4,1,""],switch_options:[220,4,1,""]},"evennia.commands.default.admin.CmdEmit":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],locks:[220,4,1,""],search_index_entry:[220,4,1,""],switch_options:[220,4,1,""]},"evennia.commands.default.admin.CmdForce":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],locks:[220,4,1,""],perm_used:[220,4,1,""],search_index_entry:[220,4,1,""]},"evennia.commands.default.admin.CmdNewPassword":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],locks:[220,4,1,""],search_index_entry:[220,4,1,""]},"evennia.commands.default.admin.CmdPerm":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],locks:[220,4,1,""],search_index_entry:[220,4,1,""],switch_options:[220,4,1,""]},"evennia.commands.default.admin.CmdUnban":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],locks:[220,4,1,""],search_index_entry:[220,4,1,""]},"evennia.commands.default.admin.CmdWall":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],locks:[220,4,1,""],search_index_entry:[220,4,1,""]},"evennia.commands.default.batchprocess":{CmdBatchCode:[221,1,1,""],CmdBatchCommands:[221,1,1,""]},"evennia.commands.default.batchprocess.CmdBatchCode":{aliases:[221,4,1,""],func:[221,3,1,""],help_category:[221,4,1,""],key:[221,4,1,""],lock_storage:[221,4,1,""],locks:[221,4,1,""],search_index_entry:[221,4,1,""],switch_options:[221,4,1,""]},"evennia.commands.default.batchprocess.CmdBatchCommands":{aliases:[221,4,1,""],func:[221,3,1,""],help_category:[221,4,1,""],key:[221,4,1,""],lock_storage:[221,4,1,""],locks:[221,4,1,""],search_index_entry:[221,4,1,""],switch_options:[221,4,1,""]},"evennia.commands.default.building":{CmdCopy:[222,1,1,""],CmdCpAttr:[222,1,1,""],CmdCreate:[222,1,1,""],CmdDesc:[222,1,1,""],CmdDestroy:[222,1,1,""],CmdDig:[222,1,1,""],CmdExamine:[222,1,1,""],CmdFind:[222,1,1,""],CmdLink:[222,1,1,""],CmdListCmdSets:[222,1,1,""],CmdLock:[222,1,1,""],CmdMvAttr:[222,1,1,""],CmdName:[222,1,1,""],CmdObjects:[222,1,1,""],CmdOpen:[222,1,1,""],CmdScripts:[222,1,1,""],CmdSetAttribute:[222,1,1,""],CmdSetHome:[222,1,1,""],CmdSetObjAlias:[222,1,1,""],CmdSpawn:[222,1,1,""],CmdTag:[222,1,1,""],CmdTeleport:[222,1,1,""],CmdTunnel:[222,1,1,""],CmdTypeclass:[222,1,1,""],CmdUnLink:[222,1,1,""],CmdWipe:[222,1,1,""],ObjManipCommand:[222,1,1,""]},"evennia.commands.default.building.CmdCopy":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""]},"evennia.commands.default.building.CmdCpAttr":{aliases:[222,4,1,""],check_from_attr:[222,3,1,""],check_has_attr:[222,3,1,""],check_to_attr:[222,3,1,""],func:[222,3,1,""],get_attr:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""],switch_options:[222,4,1,""]},"evennia.commands.default.building.CmdCreate":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],new_obj_lockstring:[222,4,1,""],search_index_entry:[222,4,1,""],switch_options:[222,4,1,""]},"evennia.commands.default.building.CmdDesc":{aliases:[222,4,1,""],edit_handler:[222,3,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""],switch_options:[222,4,1,""]},"evennia.commands.default.building.CmdDestroy":{aliases:[222,4,1,""],confirm:[222,4,1,""],default_confirm:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""],switch_options:[222,4,1,""]},"evennia.commands.default.building.CmdDig":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],new_room_lockstring:[222,4,1,""],search_index_entry:[222,4,1,""],switch_options:[222,4,1,""]},"evennia.commands.default.building.CmdExamine":{aliases:[222,4,1,""],arg_regex:[222,4,1,""],detail_color:[222,4,1,""],format_account_key:[222,3,1,""],format_account_permissions:[222,3,1,""],format_account_typeclass:[222,3,1,""],format_aliases:[222,3,1,""],format_attributes:[222,3,1,""],format_channel_account_subs:[222,3,1,""],format_channel_object_subs:[222,3,1,""],format_channel_sub_totals:[222,3,1,""],format_chars:[222,3,1,""],format_current_cmds:[222,3,1,""],format_destination:[222,3,1,""],format_email:[222,3,1,""],format_exits:[222,3,1,""],format_home:[222,3,1,""],format_key:[222,3,1,""],format_location:[222,3,1,""],format_locks:[222,3,1,""],format_merged_cmdsets:[222,3,1,""],format_nattributes:[222,3,1,""],format_output:[222,3,1,""],format_permissions:[222,3,1,""],format_script_desc:[222,3,1,""],format_script_is_persistent:[222,3,1,""],format_script_timer_data:[222,3,1,""],format_scripts:[222,3,1,""],format_sessions:[222,3,1,""],format_single_attribute:[222,3,1,""],format_single_attribute_detail:[222,3,1,""],format_single_cmdset:[222,3,1,""],format_single_cmdset_options:[222,3,1,""],format_single_tag:[222,3,1,""],format_stored_cmdsets:[222,3,1,""],format_tags:[222,3,1,""],format_things:[222,3,1,""],format_typeclass:[222,3,1,""],func:[222,3,1,""],get_formatted_obj_data:[222,3,1,""],header_color:[222,4,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],msg:[222,3,1,""],object_type:[222,4,1,""],parse:[222,3,1,""],quell_color:[222,4,1,""],search_index_entry:[222,4,1,""],separator:[222,4,1,""],switch_options:[222,4,1,""],text:[222,4,1,""]},"evennia.commands.default.building.CmdFind":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""],switch_options:[222,4,1,""]},"evennia.commands.default.building.CmdLink":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""]},"evennia.commands.default.building.CmdListCmdSets":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""]},"evennia.commands.default.building.CmdLock":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""]},"evennia.commands.default.building.CmdMvAttr":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""],switch_options:[222,4,1,""]},"evennia.commands.default.building.CmdName":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""]},"evennia.commands.default.building.CmdObjects":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""]},"evennia.commands.default.building.CmdOpen":{aliases:[222,4,1,""],create_exit:[222,3,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],new_obj_lockstring:[222,4,1,""],parse:[222,3,1,""],search_index_entry:[222,4,1,""]},"evennia.commands.default.building.CmdScripts":{aliases:[222,4,1,""],excluded_typeclass_paths:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""],switch_mapping:[222,4,1,""],switch_options:[222,4,1,""]},"evennia.commands.default.building.CmdSetAttribute":{aliases:[222,4,1,""],check_attr:[222,3,1,""],check_obj:[222,3,1,""],do_nested_lookup:[222,3,1,""],edit_handler:[222,3,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],nested_re:[222,4,1,""],not_found:[222,4,1,""],rm_attr:[222,3,1,""],search_for_obj:[222,3,1,""],search_index_entry:[222,4,1,""],set_attr:[222,3,1,""],split_nested_attr:[222,3,1,""],view_attr:[222,3,1,""]},"evennia.commands.default.building.CmdSetHome":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""]},"evennia.commands.default.building.CmdSetObjAlias":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""],switch_options:[222,4,1,""]},"evennia.commands.default.building.CmdSpawn":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""],switch_options:[222,4,1,""]},"evennia.commands.default.building.CmdTag":{aliases:[222,4,1,""],arg_regex:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],options:[222,4,1,""],search_index_entry:[222,4,1,""]},"evennia.commands.default.building.CmdTeleport":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],parse:[222,3,1,""],rhs_split:[222,4,1,""],search_index_entry:[222,4,1,""],switch_options:[222,4,1,""]},"evennia.commands.default.building.CmdTunnel":{aliases:[222,4,1,""],directions:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""],switch_options:[222,4,1,""]},"evennia.commands.default.building.CmdTypeclass":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""],switch_options:[222,4,1,""]},"evennia.commands.default.building.CmdUnLink":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],help_key:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""]},"evennia.commands.default.building.CmdWipe":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""]},"evennia.commands.default.building.ObjManipCommand":{aliases:[222,4,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],parse:[222,3,1,""],search_index_entry:[222,4,1,""]},"evennia.commands.default.cmdset_account":{AccountCmdSet:[223,1,1,""]},"evennia.commands.default.cmdset_account.AccountCmdSet":{at_cmdset_creation:[223,3,1,""],key:[223,4,1,""],path:[223,4,1,""],priority:[223,4,1,""]},"evennia.commands.default.cmdset_character":{CharacterCmdSet:[224,1,1,""]},"evennia.commands.default.cmdset_character.CharacterCmdSet":{at_cmdset_creation:[224,3,1,""],key:[224,4,1,""],path:[224,4,1,""],priority:[224,4,1,""]},"evennia.commands.default.cmdset_session":{SessionCmdSet:[225,1,1,""]},"evennia.commands.default.cmdset_session.SessionCmdSet":{at_cmdset_creation:[225,3,1,""],key:[225,4,1,""],path:[225,4,1,""],priority:[225,4,1,""]},"evennia.commands.default.cmdset_unloggedin":{UnloggedinCmdSet:[226,1,1,""]},"evennia.commands.default.cmdset_unloggedin.UnloggedinCmdSet":{at_cmdset_creation:[226,3,1,""],key:[226,4,1,""],path:[226,4,1,""],priority:[226,4,1,""]},"evennia.commands.default.comms":{CmdChannel:[227,1,1,""],CmdGrapevine2Chan:[227,1,1,""],CmdIRC2Chan:[227,1,1,""],CmdIRCStatus:[227,1,1,""],CmdObjectChannel:[227,1,1,""],CmdPage:[227,1,1,""],CmdRSS2Chan:[227,1,1,""]},"evennia.commands.default.comms.CmdChannel":{account_caller:[227,4,1,""],add_alias:[227,3,1,""],aliases:[227,4,1,""],ban_user:[227,3,1,""],boot_user:[227,3,1,""],channel_list_bans:[227,3,1,""],channel_list_who:[227,3,1,""],create_channel:[227,3,1,""],destroy_channel:[227,3,1,""],display_all_channels:[227,3,1,""],display_subbed_channels:[227,3,1,""],func:[227,3,1,""],get_channel_aliases:[227,3,1,""],get_channel_history:[227,3,1,""],help_category:[227,4,1,""],key:[227,4,1,""],list_channels:[227,3,1,""],lock_storage:[227,4,1,""],locks:[227,4,1,""],msg_channel:[227,3,1,""],mute_channel:[227,3,1,""],remove_alias:[227,3,1,""],search_channel:[227,3,1,""],search_index_entry:[227,4,1,""],set_desc:[227,3,1,""],set_lock:[227,3,1,""],sub_to_channel:[227,3,1,""],switch_options:[227,4,1,""],unban_user:[227,3,1,""],unmute_channel:[227,3,1,""],unset_lock:[227,3,1,""],unsub_from_channel:[227,3,1,""]},"evennia.commands.default.comms.CmdGrapevine2Chan":{aliases:[227,4,1,""],func:[227,3,1,""],help_category:[227,4,1,""],key:[227,4,1,""],lock_storage:[227,4,1,""],locks:[227,4,1,""],search_index_entry:[227,4,1,""],switch_options:[227,4,1,""]},"evennia.commands.default.comms.CmdIRC2Chan":{aliases:[227,4,1,""],func:[227,3,1,""],help_category:[227,4,1,""],key:[227,4,1,""],lock_storage:[227,4,1,""],locks:[227,4,1,""],search_index_entry:[227,4,1,""],switch_options:[227,4,1,""]},"evennia.commands.default.comms.CmdIRCStatus":{aliases:[227,4,1,""],func:[227,3,1,""],help_category:[227,4,1,""],key:[227,4,1,""],lock_storage:[227,4,1,""],locks:[227,4,1,""],search_index_entry:[227,4,1,""]},"evennia.commands.default.comms.CmdObjectChannel":{account_caller:[227,4,1,""],aliases:[227,4,1,""],help_category:[227,4,1,""],key:[227,4,1,""],lock_storage:[227,4,1,""],search_index_entry:[227,4,1,""]},"evennia.commands.default.comms.CmdPage":{account_caller:[227,4,1,""],aliases:[227,4,1,""],func:[227,3,1,""],help_category:[227,4,1,""],key:[227,4,1,""],lock_storage:[227,4,1,""],locks:[227,4,1,""],search_index_entry:[227,4,1,""],switch_options:[227,4,1,""]},"evennia.commands.default.comms.CmdRSS2Chan":{aliases:[227,4,1,""],func:[227,3,1,""],help_category:[227,4,1,""],key:[227,4,1,""],lock_storage:[227,4,1,""],locks:[227,4,1,""],search_index_entry:[227,4,1,""],switch_options:[227,4,1,""]},"evennia.commands.default.general":{CmdAccess:[228,1,1,""],CmdDrop:[228,1,1,""],CmdGet:[228,1,1,""],CmdGive:[228,1,1,""],CmdHome:[228,1,1,""],CmdInventory:[228,1,1,""],CmdLook:[228,1,1,""],CmdNick:[228,1,1,""],CmdPose:[228,1,1,""],CmdSay:[228,1,1,""],CmdSetDesc:[228,1,1,""],CmdWhisper:[228,1,1,""]},"evennia.commands.default.general.CmdAccess":{aliases:[228,4,1,""],arg_regex:[228,4,1,""],func:[228,3,1,""],help_category:[228,4,1,""],key:[228,4,1,""],lock_storage:[228,4,1,""],locks:[228,4,1,""],search_index_entry:[228,4,1,""]},"evennia.commands.default.general.CmdDrop":{aliases:[228,4,1,""],arg_regex:[228,4,1,""],func:[228,3,1,""],help_category:[228,4,1,""],key:[228,4,1,""],lock_storage:[228,4,1,""],locks:[228,4,1,""],search_index_entry:[228,4,1,""]},"evennia.commands.default.general.CmdGet":{aliases:[228,4,1,""],arg_regex:[228,4,1,""],func:[228,3,1,""],help_category:[228,4,1,""],key:[228,4,1,""],lock_storage:[228,4,1,""],locks:[228,4,1,""],search_index_entry:[228,4,1,""]},"evennia.commands.default.general.CmdGive":{aliases:[228,4,1,""],arg_regex:[228,4,1,""],func:[228,3,1,""],help_category:[228,4,1,""],key:[228,4,1,""],lock_storage:[228,4,1,""],locks:[228,4,1,""],rhs_split:[228,4,1,""],search_index_entry:[228,4,1,""]},"evennia.commands.default.general.CmdHome":{aliases:[228,4,1,""],arg_regex:[228,4,1,""],func:[228,3,1,""],help_category:[228,4,1,""],key:[228,4,1,""],lock_storage:[228,4,1,""],locks:[228,4,1,""],search_index_entry:[228,4,1,""]},"evennia.commands.default.general.CmdInventory":{aliases:[228,4,1,""],arg_regex:[228,4,1,""],func:[228,3,1,""],help_category:[228,4,1,""],key:[228,4,1,""],lock_storage:[228,4,1,""],locks:[228,4,1,""],search_index_entry:[228,4,1,""]},"evennia.commands.default.general.CmdLook":{aliases:[228,4,1,""],arg_regex:[228,4,1,""],func:[228,3,1,""],help_category:[228,4,1,""],key:[228,4,1,""],lock_storage:[228,4,1,""],locks:[228,4,1,""],search_index_entry:[228,4,1,""]},"evennia.commands.default.general.CmdNick":{aliases:[228,4,1,""],func:[228,3,1,""],help_category:[228,4,1,""],key:[228,4,1,""],lock_storage:[228,4,1,""],locks:[228,4,1,""],parse:[228,3,1,""],search_index_entry:[228,4,1,""],switch_options:[228,4,1,""]},"evennia.commands.default.general.CmdPose":{aliases:[228,4,1,""],arg_regex:[228,4,1,""],func:[228,3,1,""],help_category:[228,4,1,""],key:[228,4,1,""],lock_storage:[228,4,1,""],locks:[228,4,1,""],parse:[228,3,1,""],search_index_entry:[228,4,1,""]},"evennia.commands.default.general.CmdSay":{aliases:[228,4,1,""],arg_regex:[228,4,1,""],func:[228,3,1,""],help_category:[228,4,1,""],key:[228,4,1,""],lock_storage:[228,4,1,""],locks:[228,4,1,""],search_index_entry:[228,4,1,""]},"evennia.commands.default.general.CmdSetDesc":{aliases:[228,4,1,""],arg_regex:[228,4,1,""],func:[228,3,1,""],help_category:[228,4,1,""],key:[228,4,1,""],lock_storage:[228,4,1,""],locks:[228,4,1,""],search_index_entry:[228,4,1,""]},"evennia.commands.default.general.CmdWhisper":{aliases:[228,4,1,""],func:[228,3,1,""],help_category:[228,4,1,""],key:[228,4,1,""],lock_storage:[228,4,1,""],locks:[228,4,1,""],search_index_entry:[228,4,1,""]},"evennia.commands.default.help":{CmdHelp:[229,1,1,""],CmdSetHelp:[229,1,1,""]},"evennia.commands.default.help.CmdHelp":{aliases:[229,4,1,""],arg_regex:[229,4,1,""],can_list_topic:[229,3,1,""],can_read_topic:[229,3,1,""],clickable_topics:[229,4,1,""],collect_topics:[229,3,1,""],do_search:[229,3,1,""],format_help_entry:[229,3,1,""],format_help_index:[229,3,1,""],func:[229,3,1,""],help_category:[229,4,1,""],help_more:[229,4,1,""],index_category_clr:[229,4,1,""],index_topic_clr:[229,4,1,""],index_type_separator_clr:[229,4,1,""],key:[229,4,1,""],lock_storage:[229,4,1,""],locks:[229,4,1,""],msg_help:[229,3,1,""],parse:[229,3,1,""],return_cmdset:[229,4,1,""],search_index_entry:[229,4,1,""],strip_cmd_prefix:[229,3,1,""],subtopic_separator_char:[229,4,1,""],suggestion_cutoff:[229,4,1,""],suggestion_maxnum:[229,4,1,""]},"evennia.commands.default.help.CmdSetHelp":{aliases:[229,4,1,""],arg_regex:[229,4,1,""],func:[229,3,1,""],help_category:[229,4,1,""],key:[229,4,1,""],lock_storage:[229,4,1,""],locks:[229,4,1,""],parse:[229,3,1,""],search_index_entry:[229,4,1,""],switch_options:[229,4,1,""]},"evennia.commands.default.muxcommand":{MuxAccountCommand:[230,1,1,""],MuxCommand:[230,1,1,""]},"evennia.commands.default.muxcommand.MuxAccountCommand":{account_caller:[230,4,1,""],aliases:[230,4,1,""],help_category:[230,4,1,""],key:[230,4,1,""],lock_storage:[230,4,1,""],search_index_entry:[230,4,1,""]},"evennia.commands.default.muxcommand.MuxCommand":{aliases:[230,4,1,""],at_post_cmd:[230,3,1,""],at_pre_cmd:[230,3,1,""],func:[230,3,1,""],get_command_info:[230,3,1,""],has_perm:[230,3,1,""],help_category:[230,4,1,""],key:[230,4,1,""],lock_storage:[230,4,1,""],parse:[230,3,1,""],search_index_entry:[230,4,1,""]},"evennia.commands.default.syscommands":{SystemMultimatch:[231,1,1,""],SystemNoInput:[231,1,1,""],SystemNoMatch:[231,1,1,""]},"evennia.commands.default.syscommands.SystemMultimatch":{aliases:[231,4,1,""],func:[231,3,1,""],help_category:[231,4,1,""],key:[231,4,1,""],lock_storage:[231,4,1,""],locks:[231,4,1,""],search_index_entry:[231,4,1,""]},"evennia.commands.default.syscommands.SystemNoInput":{aliases:[231,4,1,""],func:[231,3,1,""],help_category:[231,4,1,""],key:[231,4,1,""],lock_storage:[231,4,1,""],locks:[231,4,1,""],search_index_entry:[231,4,1,""]},"evennia.commands.default.syscommands.SystemNoMatch":{aliases:[231,4,1,""],func:[231,3,1,""],help_category:[231,4,1,""],key:[231,4,1,""],lock_storage:[231,4,1,""],locks:[231,4,1,""],search_index_entry:[231,4,1,""]},"evennia.commands.default.system":{CmdAbout:[232,1,1,""],CmdAccounts:[232,1,1,""],CmdPy:[232,1,1,""],CmdReload:[232,1,1,""],CmdReset:[232,1,1,""],CmdServerLoad:[232,1,1,""],CmdService:[232,1,1,""],CmdShutdown:[232,1,1,""],CmdTasks:[232,1,1,""],CmdTickers:[232,1,1,""],CmdTime:[232,1,1,""]},"evennia.commands.default.system.CmdAbout":{aliases:[232,4,1,""],func:[232,3,1,""],help_category:[232,4,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],locks:[232,4,1,""],search_index_entry:[232,4,1,""]},"evennia.commands.default.system.CmdAccounts":{aliases:[232,4,1,""],func:[232,3,1,""],help_category:[232,4,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],locks:[232,4,1,""],search_index_entry:[232,4,1,""],switch_options:[232,4,1,""]},"evennia.commands.default.system.CmdPy":{aliases:[232,4,1,""],arg_regex:[232,4,1,""],func:[232,3,1,""],help_category:[232,4,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],locks:[232,4,1,""],search_index_entry:[232,4,1,""],switch_options:[232,4,1,""]},"evennia.commands.default.system.CmdReload":{aliases:[232,4,1,""],func:[232,3,1,""],help_category:[232,4,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],locks:[232,4,1,""],search_index_entry:[232,4,1,""]},"evennia.commands.default.system.CmdReset":{aliases:[232,4,1,""],func:[232,3,1,""],help_category:[232,4,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],locks:[232,4,1,""],search_index_entry:[232,4,1,""]},"evennia.commands.default.system.CmdServerLoad":{aliases:[232,4,1,""],func:[232,3,1,""],help_category:[232,4,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],locks:[232,4,1,""],search_index_entry:[232,4,1,""],switch_options:[232,4,1,""]},"evennia.commands.default.system.CmdService":{aliases:[232,4,1,""],func:[232,3,1,""],help_category:[232,4,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],locks:[232,4,1,""],search_index_entry:[232,4,1,""],switch_options:[232,4,1,""]},"evennia.commands.default.system.CmdShutdown":{aliases:[232,4,1,""],func:[232,3,1,""],help_category:[232,4,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],locks:[232,4,1,""],search_index_entry:[232,4,1,""]},"evennia.commands.default.system.CmdTasks":{aliases:[232,4,1,""],coll_date_func:[232,3,1,""],do_task_action:[232,3,1,""],func:[232,3,1,""],help_category:[232,4,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],locks:[232,4,1,""],search_index_entry:[232,4,1,""],switch_options:[232,4,1,""]},"evennia.commands.default.system.CmdTickers":{aliases:[232,4,1,""],func:[232,3,1,""],help_category:[232,4,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],locks:[232,4,1,""],search_index_entry:[232,4,1,""]},"evennia.commands.default.system.CmdTime":{aliases:[232,4,1,""],func:[232,3,1,""],help_category:[232,4,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],locks:[232,4,1,""],search_index_entry:[232,4,1,""]},"evennia.commands.default.tests":{CmdInterrupt:[233,1,1,""],TestAccount:[233,1,1,""],TestAdmin:[233,1,1,""],TestBatchProcess:[233,1,1,""],TestBuilding:[233,1,1,""],TestCmdTasks:[233,1,1,""],TestComms:[233,1,1,""],TestCommsChannel:[233,1,1,""],TestGeneral:[233,1,1,""],TestHelp:[233,1,1,""],TestInterruptCommand:[233,1,1,""],TestSystem:[233,1,1,""],TestSystemCommands:[233,1,1,""],TestUnconnectedCommand:[233,1,1,""],func_test_cmd_tasks:[233,5,1,""]},"evennia.commands.default.tests.CmdInterrupt":{aliases:[233,4,1,""],func:[233,3,1,""],help_category:[233,4,1,""],key:[233,4,1,""],lock_storage:[233,4,1,""],parse:[233,3,1,""],search_index_entry:[233,4,1,""]},"evennia.commands.default.tests.TestAccount":{test_char_create:[233,3,1,""],test_char_delete:[233,3,1,""],test_color_test:[233,3,1,""],test_ic:[233,3,1,""],test_ic__nonaccess:[233,3,1,""],test_ic__other_object:[233,3,1,""],test_ooc:[233,3,1,""],test_ooc_look:[233,3,1,""],test_option:[233,3,1,""],test_password:[233,3,1,""],test_quell:[233,3,1,""],test_quit:[233,3,1,""],test_sessions:[233,3,1,""],test_who:[233,3,1,""]},"evennia.commands.default.tests.TestAdmin":{test_ban:[233,3,1,""],test_emit:[233,3,1,""],test_force:[233,3,1,""],test_perm:[233,3,1,""],test_wall:[233,3,1,""]},"evennia.commands.default.tests.TestBatchProcess":{red_button:[233,4,1,""],test_batch_commands:[233,3,1,""]},"evennia.commands.default.tests.TestBuilding":{test_attribute_commands:[233,3,1,""],test_copy:[233,3,1,""],test_create:[233,3,1,""],test_desc:[233,3,1,""],test_desc_default_to_room:[233,3,1,""],test_destroy:[233,3,1,""],test_destroy_sequence:[233,3,1,""],test_dig:[233,3,1,""],test_do_nested_lookup:[233,3,1,""],test_empty_desc:[233,3,1,""],test_examine:[233,3,1,""],test_exit_commands:[233,3,1,""],test_find:[233,3,1,""],test_list_cmdsets:[233,3,1,""],test_lock:[233,3,1,""],test_name:[233,3,1,""],test_nested_attribute_commands:[233,3,1,""],test_script:[233,3,1,""],test_script_multi_delete:[233,3,1,""],test_set_home:[233,3,1,""],test_set_obj_alias:[233,3,1,""],test_spawn:[233,3,1,""],test_split_nested_attr:[233,3,1,""],test_tag:[233,3,1,""],test_teleport:[233,3,1,""],test_tunnel:[233,3,1,""],test_tunnel_exit_typeclass:[233,3,1,""],test_typeclass:[233,3,1,""]},"evennia.commands.default.tests.TestCmdTasks":{setUp:[233,3,1,""],tearDown:[233,3,1,""],test_active_task:[233,3,1,""],test_call:[233,3,1,""],test_cancel:[233,3,1,""],test_do_task:[233,3,1,""],test_func_name_manipulation:[233,3,1,""],test_misformed_command:[233,3,1,""],test_new_task_waiting_input:[233,3,1,""],test_no_input:[233,3,1,""],test_no_tasks:[233,3,1,""],test_pause_unpause:[233,3,1,""],test_persistent_task:[233,3,1,""],test_remove:[233,3,1,""],test_responce_of_yes:[233,3,1,""],test_task_complete_waiting_input:[233,3,1,""],test_wrong_func_name:[233,3,1,""]},"evennia.commands.default.tests.TestComms":{test_page:[233,3,1,""]},"evennia.commands.default.tests.TestCommsChannel":{setUp:[233,3,1,""],tearDown:[233,3,1,""],test_channel__alias__unalias:[233,3,1,""],test_channel__all:[233,3,1,""],test_channel__ban__unban:[233,3,1,""],test_channel__boot:[233,3,1,""],test_channel__create:[233,3,1,""],test_channel__desc:[233,3,1,""],test_channel__destroy:[233,3,1,""],test_channel__history:[233,3,1,""],test_channel__list:[233,3,1,""],test_channel__lock:[233,3,1,""],test_channel__msg:[233,3,1,""],test_channel__mute:[233,3,1,""],test_channel__noarg:[233,3,1,""],test_channel__sub:[233,3,1,""],test_channel__unlock:[233,3,1,""],test_channel__unmute:[233,3,1,""],test_channel__unsub:[233,3,1,""],test_channel__who:[233,3,1,""]},"evennia.commands.default.tests.TestGeneral":{test_access:[233,3,1,""],test_get_and_drop:[233,3,1,""],test_give:[233,3,1,""],test_go_home:[233,3,1,""],test_home:[233,3,1,""],test_inventory:[233,3,1,""],test_look:[233,3,1,""],test_look_no_location:[233,3,1,""],test_look_nonexisting:[233,3,1,""],test_mux_command:[233,3,1,""],test_nick:[233,3,1,""],test_nick_list:[233,3,1,""],test_no_home:[233,3,1,""],test_pose:[233,3,1,""],test_say:[233,3,1,""],test_whisper:[233,3,1,""]},"evennia.commands.default.tests.TestHelp":{maxDiff:[233,4,1,""],setUp:[233,3,1,""],tearDown:[233,3,1,""],test_help:[233,3,1,""],test_set_help:[233,3,1,""],test_subtopic_fetch:[233,4,1,""],test_subtopic_fetch_00_test:[233,3,1,""],test_subtopic_fetch_01_test_creating_extra_stuff:[233,3,1,""],test_subtopic_fetch_02_test_creating:[233,3,1,""],test_subtopic_fetch_03_test_extra:[233,3,1,""],test_subtopic_fetch_04_test_extra_subsubtopic:[233,3,1,""],test_subtopic_fetch_05_test_creating_extra_subsub:[233,3,1,""],test_subtopic_fetch_06_test_Something_else:[233,3,1,""],test_subtopic_fetch_07_test_More:[233,3,1,""],test_subtopic_fetch_08_test_More_Second_more:[233,3,1,""],test_subtopic_fetch_09_test_More_more:[233,3,1,""],test_subtopic_fetch_10_test_more_second_more_again:[233,3,1,""],test_subtopic_fetch_11_test_more_second_third:[233,3,1,""]},"evennia.commands.default.tests.TestInterruptCommand":{test_interrupt_command:[233,3,1,""]},"evennia.commands.default.tests.TestSystem":{test_about:[233,3,1,""],test_objects:[233,3,1,""],test_py:[233,3,1,""],test_scripts:[233,3,1,""],test_server_load:[233,3,1,""]},"evennia.commands.default.tests.TestSystemCommands":{test_multimatch:[233,3,1,""],test_simple_defaults:[233,3,1,""]},"evennia.commands.default.tests.TestUnconnectedCommand":{test_info_command:[233,3,1,""]},"evennia.commands.default.unloggedin":{CmdUnconnectedConnect:[234,1,1,""],CmdUnconnectedCreate:[234,1,1,""],CmdUnconnectedEncoding:[234,1,1,""],CmdUnconnectedHelp:[234,1,1,""],CmdUnconnectedInfo:[234,1,1,""],CmdUnconnectedLook:[234,1,1,""],CmdUnconnectedQuit:[234,1,1,""],CmdUnconnectedScreenreader:[234,1,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedConnect":{aliases:[234,4,1,""],arg_regex:[234,4,1,""],func:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],locks:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedCreate":{aliases:[234,4,1,""],arg_regex:[234,4,1,""],func:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],locks:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedEncoding":{aliases:[234,4,1,""],func:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],locks:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedHelp":{aliases:[234,4,1,""],func:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],locks:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedInfo":{aliases:[234,4,1,""],func:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],locks:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedLook":{aliases:[234,4,1,""],func:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],locks:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedQuit":{aliases:[234,4,1,""],func:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],locks:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedScreenreader":{aliases:[234,4,1,""],func:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.comms":{comms:[236,0,0,"-"],managers:[237,0,0,"-"],models:[238,0,0,"-"]},"evennia.comms.comms":{DefaultChannel:[236,1,1,""]},"evennia.comms.comms.DefaultChannel":{"delete":[236,3,1,""],DoesNotExist:[236,2,1,""],MultipleObjectsReturned:[236,2,1,""],access:[236,3,1,""],add_user_channel_alias:[236,3,1,""],at_channel_creation:[236,3,1,""],at_first_save:[236,3,1,""],at_init:[236,3,1,""],at_post_msg:[236,3,1,""],at_pre_msg:[236,3,1,""],ban:[236,3,1,""],banlist:[236,3,1,""],basetype_setup:[236,3,1,""],channel_msg_nick_pattern:[236,4,1,""],channel_msg_nick_replacement:[236,4,1,""],channel_prefix:[236,3,1,""],channel_prefix_string:[236,4,1,""],connect:[236,3,1,""],create:[236,3,1,""],disconnect:[236,3,1,""],distribute_message:[236,3,1,""],format_external:[236,3,1,""],format_message:[236,3,1,""],format_senders:[236,3,1,""],get_absolute_url:[236,3,1,""],get_log_filename:[236,3,1,""],has_connection:[236,3,1,""],log_file:[236,4,1,""],message_transform:[236,3,1,""],msg:[236,3,1,""],mute:[236,3,1,""],mutelist:[236,3,1,""],objects:[236,4,1,""],path:[236,4,1,""],pose_transform:[236,3,1,""],post_join_channel:[236,3,1,""],post_leave_channel:[236,3,1,""],post_send_message:[236,3,1,""],pre_join_channel:[236,3,1,""],pre_leave_channel:[236,3,1,""],pre_send_message:[236,3,1,""],remove_user_channel_alias:[236,3,1,""],send_to_online_only:[236,4,1,""],set_log_filename:[236,3,1,""],typename:[236,4,1,""],unban:[236,3,1,""],unmute:[236,3,1,""],web_get_admin_url:[236,3,1,""],web_get_create_url:[236,3,1,""],web_get_delete_url:[236,3,1,""],web_get_detail_url:[236,3,1,""],web_get_update_url:[236,3,1,""],wholist:[236,3,1,""]},"evennia.comms.managers":{ChannelDBManager:[237,1,1,""],ChannelManager:[237,1,1,""],CommError:[237,2,1,""],MsgManager:[237,1,1,""],identify_object:[237,5,1,""],to_object:[237,5,1,""]},"evennia.comms.managers.ChannelDBManager":{channel_search:[237,3,1,""],create_channel:[237,3,1,""],get_all_channels:[237,3,1,""],get_channel:[237,3,1,""],get_subscriptions:[237,3,1,""],search_channel:[237,3,1,""]},"evennia.comms.managers.MsgManager":{create_message:[237,3,1,""],get_message_by_id:[237,3,1,""],get_messages_by_receiver:[237,3,1,""],get_messages_by_sender:[237,3,1,""],identify_object:[237,3,1,""],message_search:[237,3,1,""],search_message:[237,3,1,""]},"evennia.comms.models":{ChannelDB:[238,1,1,""],Msg:[238,1,1,""],SubscriptionHandler:[238,1,1,""],TempMsg:[238,1,1,""]},"evennia.comms.models.ChannelDB":{DoesNotExist:[238,2,1,""],MultipleObjectsReturned:[238,2,1,""],db_account_subscriptions:[238,4,1,""],db_attributes:[238,4,1,""],db_date_created:[238,4,1,""],db_key:[238,4,1,""],db_lock_storage:[238,4,1,""],db_object_subscriptions:[238,4,1,""],db_tags:[238,4,1,""],db_typeclass_path:[238,4,1,""],get_next_by_db_date_created:[238,3,1,""],get_previous_by_db_date_created:[238,3,1,""],id:[238,4,1,""],objects:[238,4,1,""],path:[238,4,1,""],subscriptions:[238,4,1,""],typename:[238,4,1,""]},"evennia.comms.models.Msg":{DoesNotExist:[238,2,1,""],MultipleObjectsReturned:[238,2,1,""],access:[238,3,1,""],date_created:[238,3,1,""],db_date_created:[238,4,1,""],db_header:[238,4,1,""],db_hide_from_accounts:[238,4,1,""],db_hide_from_objects:[238,4,1,""],db_lock_storage:[238,4,1,""],db_message:[238,4,1,""],db_receiver_external:[238,4,1,""],db_receivers_accounts:[238,4,1,""],db_receivers_objects:[238,4,1,""],db_receivers_scripts:[238,4,1,""],db_sender_accounts:[238,4,1,""],db_sender_external:[238,4,1,""],db_sender_objects:[238,4,1,""],db_sender_scripts:[238,4,1,""],db_tags:[238,4,1,""],get_next_by_db_date_created:[238,3,1,""],get_previous_by_db_date_created:[238,3,1,""],header:[238,3,1,""],hide_from:[238,3,1,""],id:[238,4,1,""],lock_storage:[238,3,1,""],locks:[238,4,1,""],message:[238,3,1,""],objects:[238,4,1,""],path:[238,4,1,""],receiver_external:[238,3,1,""],receivers:[238,3,1,""],remove_receiver:[238,3,1,""],remove_sender:[238,3,1,""],sender_external:[238,3,1,""],senders:[238,3,1,""],tags:[238,4,1,""],typename:[238,4,1,""]},"evennia.comms.models.SubscriptionHandler":{__init__:[238,3,1,""],add:[238,3,1,""],all:[238,3,1,""],clear:[238,3,1,""],get:[238,3,1,""],has:[238,3,1,""],online:[238,3,1,""],remove:[238,3,1,""]},"evennia.comms.models.TempMsg":{__init__:[238,3,1,""],access:[238,3,1,""],locks:[238,4,1,""],remove_receiver:[238,3,1,""],remove_sender:[238,3,1,""]},"evennia.contrib":{base_systems:[240,0,0,"-"],full_systems:[275,0,0,"-"],game_systems:[285,0,0,"-"],grid:[318,0,0,"-"],rpg:[345,0,0,"-"],tutorials:[359,0,0,"-"],utils:[378,0,0,"-"]},"evennia.contrib.base_systems":{awsstorage:[241,0,0,"-"],building_menu:[244,0,0,"-"],color_markups:[247,0,0,"-"],custom_gametime:[250,0,0,"-"],email_login:[253,0,0,"-"],mux_comms_cmds:[269,0,0,"-"],unixcommand:[272,0,0,"-"]},"evennia.contrib.base_systems.awsstorage":{tests:[243,0,0,"-"]},"evennia.contrib.base_systems.awsstorage.tests":{S3Boto3StorageTests:[243,1,1,""],S3Boto3TestCase:[243,1,1,""]},"evennia.contrib.base_systems.awsstorage.tests.S3Boto3StorageTests":{test_auto_creating_bucket:[243,3,1,""],test_auto_creating_bucket_with_acl:[243,3,1,""],test_clean_name:[243,3,1,""],test_clean_name_normalize:[243,3,1,""],test_clean_name_trailing_slash:[243,3,1,""],test_clean_name_windows:[243,3,1,""],test_compress_content_len:[243,3,1,""],test_connection_threading:[243,3,1,""],test_content_type:[243,3,1,""],test_generated_url_is_encoded:[243,3,1,""],test_location_leading_slash:[243,3,1,""],test_override_class_variable:[243,3,1,""],test_override_init_argument:[243,3,1,""],test_pickle_with_bucket:[243,3,1,""],test_pickle_without_bucket:[243,3,1,""],test_special_characters:[243,3,1,""],test_storage_delete:[243,3,1,""],test_storage_exists:[243,3,1,""],test_storage_exists_doesnt_create_bucket:[243,3,1,""],test_storage_exists_false:[243,3,1,""],test_storage_listdir_base:[243,3,1,""],test_storage_listdir_subdir:[243,3,1,""],test_storage_mtime:[243,3,1,""],test_storage_open_no_overwrite_existing:[243,3,1,""],test_storage_open_no_write:[243,3,1,""],test_storage_open_write:[243,3,1,""],test_storage_save:[243,3,1,""],test_storage_save_gzip:[243,3,1,""],test_storage_save_gzip_twice:[243,3,1,""],test_storage_save_gzipped:[243,3,1,""],test_storage_save_with_acl:[243,3,1,""],test_storage_size:[243,3,1,""],test_storage_url:[243,3,1,""],test_storage_url_slashes:[243,3,1,""],test_storage_write_beyond_buffer_size:[243,3,1,""],test_strip_signing_parameters:[243,3,1,""]},"evennia.contrib.base_systems.awsstorage.tests.S3Boto3TestCase":{setUp:[243,3,1,""]},"evennia.contrib.base_systems.building_menu":{building_menu:[245,0,0,"-"],tests:[246,0,0,"-"]},"evennia.contrib.base_systems.building_menu.building_menu":{BuildingMenu:[245,1,1,""],BuildingMenuCmdSet:[245,1,1,""],Choice:[245,1,1,""],CmdNoInput:[245,1,1,""],CmdNoMatch:[245,1,1,""],GenericBuildingCmd:[245,1,1,""],GenericBuildingMenu:[245,1,1,""],menu_edit:[245,5,1,""],menu_quit:[245,5,1,""],menu_setattr:[245,5,1,""]},"evennia.contrib.base_systems.building_menu.building_menu.BuildingMenu":{__init__:[245,3,1,""],add_choice:[245,3,1,""],add_choice_edit:[245,3,1,""],add_choice_quit:[245,3,1,""],close:[245,3,1,""],current_choice:[245,3,1,""],display:[245,3,1,""],display_choice:[245,3,1,""],display_title:[245,3,1,""],init:[245,3,1,""],joker_key:[245,4,1,""],keys_go_back:[245,4,1,""],min_shortcut:[245,4,1,""],move:[245,3,1,""],open:[245,3,1,""],open_parent_menu:[245,3,1,""],open_submenu:[245,3,1,""],relevant_choices:[245,3,1,""],restore:[245,3,1,""],sep_keys:[245,4,1,""]},"evennia.contrib.base_systems.building_menu.building_menu.BuildingMenuCmdSet":{at_cmdset_creation:[245,3,1,""],key:[245,4,1,""],path:[245,4,1,""],priority:[245,4,1,""]},"evennia.contrib.base_systems.building_menu.building_menu.Choice":{__init__:[245,3,1,""],enter:[245,3,1,""],format_text:[245,3,1,""],keys:[245,3,1,""],leave:[245,3,1,""],nomatch:[245,3,1,""]},"evennia.contrib.base_systems.building_menu.building_menu.CmdNoInput":{__init__:[245,3,1,""],aliases:[245,4,1,""],func:[245,3,1,""],help_category:[245,4,1,""],key:[245,4,1,""],lock_storage:[245,4,1,""],locks:[245,4,1,""],search_index_entry:[245,4,1,""]},"evennia.contrib.base_systems.building_menu.building_menu.CmdNoMatch":{__init__:[245,3,1,""],aliases:[245,4,1,""],func:[245,3,1,""],help_category:[245,4,1,""],key:[245,4,1,""],lock_storage:[245,4,1,""],locks:[245,4,1,""],search_index_entry:[245,4,1,""]},"evennia.contrib.base_systems.building_menu.building_menu.GenericBuildingCmd":{aliases:[245,4,1,""],func:[245,3,1,""],help_category:[245,4,1,""],key:[245,4,1,""],lock_storage:[245,4,1,""],search_index_entry:[245,4,1,""]},"evennia.contrib.base_systems.building_menu.building_menu.GenericBuildingMenu":{init:[245,3,1,""]},"evennia.contrib.base_systems.building_menu.tests":{Submenu:[246,1,1,""],TestBuildingMenu:[246,1,1,""]},"evennia.contrib.base_systems.building_menu.tests.Submenu":{init:[246,3,1,""]},"evennia.contrib.base_systems.building_menu.tests.TestBuildingMenu":{setUp:[246,3,1,""],test_add_choice_without_key:[246,3,1,""],test_callbacks:[246,3,1,""],test_multi_level:[246,3,1,""],test_quit:[246,3,1,""],test_setattr:[246,3,1,""],test_submenu:[246,3,1,""]},"evennia.contrib.base_systems.color_markups":{color_markups:[248,0,0,"-"],tests:[249,0,0,"-"]},"evennia.contrib.base_systems.color_markups.tests":{TestColorMarkup:[249,1,1,""]},"evennia.contrib.base_systems.color_markups.tests.TestColorMarkup":{test_curly_markup:[249,3,1,""],test_mux_markup:[249,3,1,""]},"evennia.contrib.base_systems.custom_gametime":{custom_gametime:[251,0,0,"-"],tests:[252,0,0,"-"]},"evennia.contrib.base_systems.custom_gametime.custom_gametime":{GametimeScript:[251,1,1,""],custom_gametime:[251,5,1,""],gametime_to_realtime:[251,5,1,""],real_seconds_until:[251,5,1,""],realtime_to_gametime:[251,5,1,""],schedule:[251,5,1,""],time_to_tuple:[251,5,1,""]},"evennia.contrib.base_systems.custom_gametime.custom_gametime.GametimeScript":{DoesNotExist:[251,2,1,""],MultipleObjectsReturned:[251,2,1,""],at_repeat:[251,3,1,""],at_script_creation:[251,3,1,""],path:[251,4,1,""],typename:[251,4,1,""]},"evennia.contrib.base_systems.custom_gametime.tests":{TestCustomGameTime:[252,1,1,""]},"evennia.contrib.base_systems.custom_gametime.tests.TestCustomGameTime":{tearDown:[252,3,1,""],test_custom_gametime:[252,3,1,""],test_gametime_to_realtime:[252,3,1,""],test_real_seconds_until:[252,3,1,""],test_realtime_to_gametime:[252,3,1,""],test_schedule:[252,3,1,""],test_time_to_tuple:[252,3,1,""]},"evennia.contrib.base_systems.email_login":{connection_screens:[254,0,0,"-"],email_login:[255,0,0,"-"],tests:[256,0,0,"-"]},"evennia.contrib.base_systems.email_login.email_login":{CmdUnconnectedConnect:[255,1,1,""],CmdUnconnectedCreate:[255,1,1,""],CmdUnconnectedHelp:[255,1,1,""],CmdUnconnectedLook:[255,1,1,""],CmdUnconnectedQuit:[255,1,1,""]},"evennia.contrib.base_systems.email_login.email_login.CmdUnconnectedConnect":{aliases:[255,4,1,""],func:[255,3,1,""],help_category:[255,4,1,""],key:[255,4,1,""],lock_storage:[255,4,1,""],locks:[255,4,1,""],search_index_entry:[255,4,1,""]},"evennia.contrib.base_systems.email_login.email_login.CmdUnconnectedCreate":{aliases:[255,4,1,""],func:[255,3,1,""],help_category:[255,4,1,""],key:[255,4,1,""],lock_storage:[255,4,1,""],locks:[255,4,1,""],parse:[255,3,1,""],search_index_entry:[255,4,1,""]},"evennia.contrib.base_systems.email_login.email_login.CmdUnconnectedHelp":{aliases:[255,4,1,""],func:[255,3,1,""],help_category:[255,4,1,""],key:[255,4,1,""],lock_storage:[255,4,1,""],locks:[255,4,1,""],search_index_entry:[255,4,1,""]},"evennia.contrib.base_systems.email_login.email_login.CmdUnconnectedLook":{aliases:[255,4,1,""],func:[255,3,1,""],help_category:[255,4,1,""],key:[255,4,1,""],lock_storage:[255,4,1,""],locks:[255,4,1,""],search_index_entry:[255,4,1,""]},"evennia.contrib.base_systems.email_login.email_login.CmdUnconnectedQuit":{aliases:[255,4,1,""],func:[255,3,1,""],help_category:[255,4,1,""],key:[255,4,1,""],lock_storage:[255,4,1,""],locks:[255,4,1,""],search_index_entry:[255,4,1,""]},"evennia.contrib.base_systems.email_login.tests":{TestEmailLogin:[256,1,1,""]},"evennia.contrib.base_systems.email_login.tests.TestEmailLogin":{test_connect:[256,3,1,""],test_quit:[256,3,1,""],test_unconnectedhelp:[256,3,1,""],test_unconnectedlook:[256,3,1,""]},"evennia.contrib.base_systems.ingame_python":{callbackhandler:[258,0,0,"-"],commands:[259,0,0,"-"],eventfuncs:[260,0,0,"-"],scripts:[261,0,0,"-"],tests:[262,0,0,"-"],utils:[264,0,0,"-"]},"evennia.contrib.base_systems.ingame_python.callbackhandler":{Callback:[258,1,1,""],CallbackHandler:[258,1,1,""]},"evennia.contrib.base_systems.ingame_python.callbackhandler.Callback":{author:[258,4,1,""],code:[258,4,1,""],created_on:[258,4,1,""],name:[258,4,1,""],number:[258,4,1,""],obj:[258,4,1,""],parameters:[258,4,1,""],updated_by:[258,4,1,""],updated_on:[258,4,1,""],valid:[258,4,1,""]},"evennia.contrib.base_systems.ingame_python.callbackhandler.CallbackHandler":{__init__:[258,3,1,""],add:[258,3,1,""],all:[258,3,1,""],call:[258,3,1,""],edit:[258,3,1,""],format_callback:[258,3,1,""],get:[258,3,1,""],get_variable:[258,3,1,""],remove:[258,3,1,""],script:[258,4,1,""]},"evennia.contrib.base_systems.ingame_python.commands":{CmdCallback:[259,1,1,""]},"evennia.contrib.base_systems.ingame_python.commands.CmdCallback":{accept_callback:[259,3,1,""],add_callback:[259,3,1,""],aliases:[259,4,1,""],del_callback:[259,3,1,""],edit_callback:[259,3,1,""],func:[259,3,1,""],get_help:[259,3,1,""],help_category:[259,4,1,""],key:[259,4,1,""],list_callbacks:[259,3,1,""],list_tasks:[259,3,1,""],lock_storage:[259,4,1,""],locks:[259,4,1,""],search_index_entry:[259,4,1,""]},"evennia.contrib.base_systems.ingame_python.eventfuncs":{call_event:[260,5,1,""],deny:[260,5,1,""],get:[260,5,1,""]},"evennia.contrib.base_systems.ingame_python.scripts":{EventHandler:[261,1,1,""],TimeEventScript:[261,1,1,""],complete_task:[261,5,1,""]},"evennia.contrib.base_systems.ingame_python.scripts.EventHandler":{DoesNotExist:[261,2,1,""],MultipleObjectsReturned:[261,2,1,""],accept_callback:[261,3,1,""],add_callback:[261,3,1,""],add_event:[261,3,1,""],at_script_creation:[261,3,1,""],at_server_start:[261,3,1,""],call:[261,3,1,""],del_callback:[261,3,1,""],edit_callback:[261,3,1,""],get_callbacks:[261,3,1,""],get_events:[261,3,1,""],get_variable:[261,3,1,""],handle_error:[261,3,1,""],path:[261,4,1,""],set_task:[261,3,1,""],typename:[261,4,1,""]},"evennia.contrib.base_systems.ingame_python.scripts.TimeEventScript":{DoesNotExist:[261,2,1,""],MultipleObjectsReturned:[261,2,1,""],at_repeat:[261,3,1,""],at_script_creation:[261,3,1,""],path:[261,4,1,""],typename:[261,4,1,""]},"evennia.contrib.base_systems.ingame_python.tests":{TestCmdCallback:[262,1,1,""],TestDefaultCallbacks:[262,1,1,""],TestEventHandler:[262,1,1,""]},"evennia.contrib.base_systems.ingame_python.tests.TestCmdCallback":{setUp:[262,3,1,""],tearDown:[262,3,1,""],test_accept:[262,3,1,""],test_add:[262,3,1,""],test_del:[262,3,1,""],test_list:[262,3,1,""],test_lock:[262,3,1,""]},"evennia.contrib.base_systems.ingame_python.tests.TestDefaultCallbacks":{setUp:[262,3,1,""],tearDown:[262,3,1,""],test_exit:[262,3,1,""]},"evennia.contrib.base_systems.ingame_python.tests.TestEventHandler":{setUp:[262,3,1,""],tearDown:[262,3,1,""],test_accept:[262,3,1,""],test_add_validation:[262,3,1,""],test_call:[262,3,1,""],test_del:[262,3,1,""],test_edit:[262,3,1,""],test_edit_validation:[262,3,1,""],test_handler:[262,3,1,""],test_start:[262,3,1,""]},"evennia.contrib.base_systems.ingame_python.utils":{InterruptEvent:[264,2,1,""],get_event_handler:[264,5,1,""],get_next_wait:[264,5,1,""],keyword_event:[264,5,1,""],phrase_event:[264,5,1,""],register_events:[264,5,1,""],time_event:[264,5,1,""]},"evennia.contrib.base_systems.mux_comms_cmds":{mux_comms_cmds:[270,0,0,"-"],tests:[271,0,0,"-"]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds":{CmdAddCom:[270,1,1,""],CmdAllCom:[270,1,1,""],CmdCBoot:[270,1,1,""],CmdCWho:[270,1,1,""],CmdCdesc:[270,1,1,""],CmdCdestroy:[270,1,1,""],CmdChannelCreate:[270,1,1,""],CmdClock:[270,1,1,""],CmdDelCom:[270,1,1,""],CmdSetLegacyComms:[270,1,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdAddCom":{account_caller:[270,4,1,""],aliases:[270,4,1,""],func:[270,3,1,""],help_category:[270,4,1,""],key:[270,4,1,""],lock_storage:[270,4,1,""],locks:[270,4,1,""],search_index_entry:[270,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdAllCom":{account_caller:[270,4,1,""],aliases:[270,4,1,""],func:[270,3,1,""],help_category:[270,4,1,""],key:[270,4,1,""],lock_storage:[270,4,1,""],locks:[270,4,1,""],search_index_entry:[270,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdCBoot":{account_caller:[270,4,1,""],aliases:[270,4,1,""],func:[270,3,1,""],help_category:[270,4,1,""],key:[270,4,1,""],lock_storage:[270,4,1,""],locks:[270,4,1,""],search_index_entry:[270,4,1,""],switch_options:[270,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdCWho":{account_caller:[270,4,1,""],aliases:[270,4,1,""],func:[270,3,1,""],help_category:[270,4,1,""],key:[270,4,1,""],lock_storage:[270,4,1,""],locks:[270,4,1,""],search_index_entry:[270,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdCdesc":{account_caller:[270,4,1,""],aliases:[270,4,1,""],func:[270,3,1,""],help_category:[270,4,1,""],key:[270,4,1,""],lock_storage:[270,4,1,""],locks:[270,4,1,""],search_index_entry:[270,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdCdestroy":{account_caller:[270,4,1,""],aliases:[270,4,1,""],func:[270,3,1,""],help_category:[270,4,1,""],key:[270,4,1,""],lock_storage:[270,4,1,""],locks:[270,4,1,""],search_index_entry:[270,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdChannelCreate":{account_caller:[270,4,1,""],aliases:[270,4,1,""],func:[270,3,1,""],help_category:[270,4,1,""],key:[270,4,1,""],lock_storage:[270,4,1,""],locks:[270,4,1,""],search_index_entry:[270,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdClock":{account_caller:[270,4,1,""],aliases:[270,4,1,""],func:[270,3,1,""],help_category:[270,4,1,""],key:[270,4,1,""],lock_storage:[270,4,1,""],locks:[270,4,1,""],search_index_entry:[270,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdDelCom":{account_caller:[270,4,1,""],aliases:[270,4,1,""],func:[270,3,1,""],help_category:[270,4,1,""],key:[270,4,1,""],lock_storage:[270,4,1,""],locks:[270,4,1,""],search_index_entry:[270,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdSetLegacyComms":{at_cmdset_createion:[270,3,1,""],path:[270,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.tests":{TestLegacyMuxComms:[271,1,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.tests.TestLegacyMuxComms":{setUp:[271,3,1,""],test_all_com:[271,3,1,""],test_cboot:[271,3,1,""],test_cdesc:[271,3,1,""],test_cdestroy:[271,3,1,""],test_clock:[271,3,1,""],test_cwho:[271,3,1,""],test_toggle_com:[271,3,1,""]},"evennia.contrib.base_systems.unixcommand":{tests:[273,0,0,"-"],unixcommand:[274,0,0,"-"]},"evennia.contrib.base_systems.unixcommand.tests":{CmdDummy:[273,1,1,""],TestUnixCommand:[273,1,1,""]},"evennia.contrib.base_systems.unixcommand.tests.CmdDummy":{aliases:[273,4,1,""],func:[273,3,1,""],help_category:[273,4,1,""],init_parser:[273,3,1,""],key:[273,4,1,""],lock_storage:[273,4,1,""],search_index_entry:[273,4,1,""]},"evennia.contrib.base_systems.unixcommand.tests.TestUnixCommand":{test_failure:[273,3,1,""],test_success:[273,3,1,""]},"evennia.contrib.base_systems.unixcommand.unixcommand":{HelpAction:[274,1,1,""],ParseError:[274,2,1,""],UnixCommand:[274,1,1,""],UnixCommandParser:[274,1,1,""]},"evennia.contrib.base_systems.unixcommand.unixcommand.UnixCommand":{__init__:[274,3,1,""],aliases:[274,4,1,""],func:[274,3,1,""],get_help:[274,3,1,""],help_category:[274,4,1,""],init_parser:[274,3,1,""],key:[274,4,1,""],lock_storage:[274,4,1,""],parse:[274,3,1,""],search_index_entry:[274,4,1,""]},"evennia.contrib.base_systems.unixcommand.unixcommand.UnixCommandParser":{__init__:[274,3,1,""],format_help:[274,3,1,""],format_usage:[274,3,1,""],print_help:[274,3,1,""],print_usage:[274,3,1,""]},"evennia.contrib.full_systems":{evscaperoom:[276,0,0,"-"]},"evennia.contrib.full_systems.evscaperoom":{commands:[277,0,0,"-"],menu:[278,0,0,"-"],objects:[279,0,0,"-"],room:[280,0,0,"-"],scripts:[281,0,0,"-"],state:[282,0,0,"-"],tests:[283,0,0,"-"],utils:[284,0,0,"-"]},"evennia.contrib.full_systems.evscaperoom.commands":{CmdCreateObj:[277,1,1,""],CmdEmote:[277,1,1,""],CmdEvscapeRoom:[277,1,1,""],CmdEvscapeRoomStart:[277,1,1,""],CmdFocus:[277,1,1,""],CmdFocusInteraction:[277,1,1,""],CmdGet:[277,1,1,""],CmdGiveUp:[277,1,1,""],CmdHelp:[277,1,1,""],CmdJumpState:[277,1,1,""],CmdLook:[277,1,1,""],CmdOptions:[277,1,1,""],CmdRerouter:[277,1,1,""],CmdSetEvScapeRoom:[277,1,1,""],CmdSetFlag:[277,1,1,""],CmdSpeak:[277,1,1,""],CmdStand:[277,1,1,""],CmdWho:[277,1,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdCreateObj":{aliases:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],locks:[277,4,1,""],obj1_search:[277,4,1,""],obj2_search:[277,4,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdEmote":{aliases:[277,4,1,""],arg_regex:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],room_replace:[277,3,1,""],search_index_entry:[277,4,1,""],you_replace:[277,3,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdEvscapeRoom":{aliases:[277,4,1,""],arg_regex:[277,4,1,""],focus:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],obj1_search:[277,4,1,""],obj2_search:[277,4,1,""],parse:[277,3,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdEvscapeRoomStart":{aliases:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdFocus":{aliases:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],obj1_search:[277,4,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdFocusInteraction":{aliases:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],obj1_search:[277,4,1,""],obj2_search:[277,4,1,""],parse:[277,3,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdGet":{aliases:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdGiveUp":{aliases:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdHelp":{aliases:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdJumpState":{aliases:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],locks:[277,4,1,""],obj1_search:[277,4,1,""],obj2_search:[277,4,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdLook":{aliases:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],obj1_search:[277,4,1,""],obj2_search:[277,4,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdOptions":{aliases:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdRerouter":{aliases:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdSetEvScapeRoom":{at_cmdset_creation:[277,3,1,""],path:[277,4,1,""],priority:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdSetFlag":{aliases:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],locks:[277,4,1,""],obj1_search:[277,4,1,""],obj2_search:[277,4,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdSpeak":{aliases:[277,4,1,""],arg_regex:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdStand":{aliases:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdWho":{aliases:[277,4,1,""],func:[277,3,1,""],help_category:[277,4,1,""],key:[277,4,1,""],lock_storage:[277,4,1,""],obj1_search:[277,4,1,""],obj2_search:[277,4,1,""],search_index_entry:[277,4,1,""]},"evennia.contrib.full_systems.evscaperoom.menu":{EvscaperoomMenu:[278,1,1,""],OptionsMenu:[278,1,1,""],node_create_room:[278,5,1,""],node_join_room:[278,5,1,""],node_options:[278,5,1,""],node_quit:[278,5,1,""],node_set_desc:[278,5,1,""],run_evscaperoom_menu:[278,5,1,""],run_option_menu:[278,5,1,""]},"evennia.contrib.full_systems.evscaperoom.menu.EvscaperoomMenu":{node_border_char:[278,4,1,""],nodetext_formatter:[278,3,1,""],options_formatter:[278,3,1,""]},"evennia.contrib.full_systems.evscaperoom.menu.OptionsMenu":{node_formatter:[278,3,1,""]},"evennia.contrib.full_systems.evscaperoom.objects":{BaseApplicable:[279,1,1,""],BaseConsumable:[279,1,1,""],BasePositionable:[279,1,1,""],Climbable:[279,1,1,""],CodeInput:[279,1,1,""],Combinable:[279,1,1,""],Drinkable:[279,1,1,""],Edible:[279,1,1,""],EvscaperoomObject:[279,1,1,""],Feelable:[279,1,1,""],HasButtons:[279,1,1,""],IndexReadable:[279,1,1,""],Insertable:[279,1,1,""],Kneelable:[279,1,1,""],Liable:[279,1,1,""],Listenable:[279,1,1,""],Mixable:[279,1,1,""],Movable:[279,1,1,""],Openable:[279,1,1,""],Positionable:[279,1,1,""],Readable:[279,1,1,""],Rotatable:[279,1,1,""],Sittable:[279,1,1,""],Smellable:[279,1,1,""],Usable:[279,1,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.BaseApplicable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_apply:[279,3,1,""],at_cannot_apply:[279,3,1,""],handle_apply:[279,3,1,""],path:[279,4,1,""],target_flag:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.BaseConsumable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_already_consumed:[279,3,1,""],at_consume:[279,3,1,""],consume_flag:[279,4,1,""],handle_consume:[279,3,1,""],has_consumed:[279,3,1,""],one_consume_only:[279,4,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.BasePositionable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_again_position:[279,3,1,""],at_cannot_position:[279,3,1,""],at_object_creation:[279,3,1,""],at_position:[279,3,1,""],handle_position:[279,3,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Climbable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_focus_climb:[279,3,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.CodeInput":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_code_correct:[279,3,1,""],at_code_incorrect:[279,3,1,""],at_focus_code:[279,3,1,""],at_no_code:[279,3,1,""],case_insensitive:[279,4,1,""],code:[279,4,1,""],code_hint:[279,4,1,""],get_cmd_signatures:[279,3,1,""],infinitely_locked:[279,4,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Combinable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_apply:[279,3,1,""],at_cannot_apply:[279,3,1,""],at_focus_combine:[279,3,1,""],destroy_components:[279,4,1,""],get_cmd_signatures:[279,3,1,""],new_create_dict:[279,4,1,""],path:[279,4,1,""],target_flag:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Drinkable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_already_consumed:[279,3,1,""],at_consume:[279,3,1,""],at_focus_drink:[279,3,1,""],at_focus_sip:[279,3,1,""],consume_flag:[279,4,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Edible":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_focus_eat:[279,3,1,""],consume_flag:[279,4,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.EvscaperoomObject":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],action_prepositions:[279,4,1,""],at_focus:[279,3,1,""],at_object_creation:[279,3,1,""],at_speech:[279,3,1,""],at_unfocus:[279,3,1,""],check_character_flag:[279,3,1,""],check_flag:[279,3,1,""],get_cmd_signatures:[279,3,1,""],get_help:[279,3,1,""],get_position:[279,3,1,""],get_short_desc:[279,3,1,""],msg_char:[279,3,1,""],msg_room:[279,3,1,""],msg_system:[279,3,1,""],next_state:[279,3,1,""],parse:[279,3,1,""],path:[279,4,1,""],position_prep_map:[279,4,1,""],return_appearance:[279,3,1,""],room:[279,3,1,""],roomstate:[279,3,1,""],set_character_flag:[279,3,1,""],set_flag:[279,3,1,""],set_position:[279,3,1,""],tagcategory:[279,3,1,""],typename:[279,4,1,""],unset_character_flag:[279,3,1,""],unset_flag:[279,3,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Feelable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_focus_feel:[279,3,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.HasButtons":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_focus_press:[279,3,1,""],at_focus_push:[279,3,1,""],at_green_button:[279,3,1,""],at_nomatch:[279,3,1,""],at_red_button:[279,3,1,""],buttons:[279,4,1,""],get_cmd_signatures:[279,3,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.IndexReadable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_cannot_read:[279,3,1,""],at_focus_read:[279,3,1,""],at_read:[279,3,1,""],get_cmd_signatures:[279,3,1,""],index:[279,4,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Insertable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_apply:[279,3,1,""],at_cannot_apply:[279,3,1,""],at_focus_insert:[279,3,1,""],get_cmd_signatures:[279,3,1,""],path:[279,4,1,""],target_flag:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Kneelable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_focus_kneel:[279,3,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Liable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_focus_lie:[279,3,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Listenable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_focus_listen:[279,3,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Mixable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_mix:[279,3,1,""],at_mix_failure:[279,3,1,""],at_mix_success:[279,3,1,""],at_object_creation:[279,3,1,""],check_mixture:[279,3,1,""],handle_mix:[279,3,1,""],ingredient_recipe:[279,4,1,""],mixer_flag:[279,4,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Movable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_already_moved:[279,3,1,""],at_cannot_move:[279,3,1,""],at_focus_move:[279,3,1,""],at_focus_push:[279,3,1,""],at_focus_shove:[279,3,1,""],at_left:[279,3,1,""],at_object_creation:[279,3,1,""],at_right:[279,3,1,""],get_cmd_signatures:[279,3,1,""],move_positions:[279,4,1,""],path:[279,4,1,""],start_position:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Openable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_already_closed:[279,3,1,""],at_already_open:[279,3,1,""],at_close:[279,3,1,""],at_focus_close:[279,3,1,""],at_focus_open:[279,3,1,""],at_locked:[279,3,1,""],at_object_creation:[279,3,1,""],at_open:[279,3,1,""],open_flag:[279,4,1,""],path:[279,4,1,""],start_open:[279,4,1,""],typename:[279,4,1,""],unlock_flag:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Positionable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],get_cmd_signatures:[279,3,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Readable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_cannot_read:[279,3,1,""],at_focus_read:[279,3,1,""],at_object_creation:[279,3,1,""],at_read:[279,3,1,""],path:[279,4,1,""],read_flag:[279,4,1,""],start_readable:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Rotatable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_cannot_rotate:[279,3,1,""],at_focus_rotate:[279,3,1,""],at_focus_turn:[279,3,1,""],at_object_creation:[279,3,1,""],at_rotate:[279,3,1,""],path:[279,4,1,""],rotate_flag:[279,4,1,""],start_rotatable:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Sittable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_focus_sit:[279,3,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Smellable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_focus_smell:[279,3,1,""],path:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Usable":{DoesNotExist:[279,2,1,""],MultipleObjectsReturned:[279,2,1,""],at_apply:[279,3,1,""],at_cannot_apply:[279,3,1,""],at_focus_use:[279,3,1,""],path:[279,4,1,""],target_flag:[279,4,1,""],typename:[279,4,1,""]},"evennia.contrib.full_systems.evscaperoom.room":{EvscapeRoom:[280,1,1,""]},"evennia.contrib.full_systems.evscaperoom.room.EvscapeRoom":{"delete":[280,3,1,""],DoesNotExist:[280,2,1,""],MultipleObjectsReturned:[280,2,1,""],achievement:[280,3,1,""],at_object_creation:[280,3,1,""],at_object_leave:[280,3,1,""],at_object_receive:[280,3,1,""],character_cleanup:[280,3,1,""],character_exit:[280,3,1,""],check_flag:[280,3,1,""],check_perm:[280,3,1,""],get_all_characters:[280,3,1,""],log:[280,3,1,""],path:[280,4,1,""],progress:[280,3,1,""],return_appearance:[280,3,1,""],score:[280,3,1,""],set_flag:[280,3,1,""],state:[280,3,1,""],statehandler:[280,4,1,""],tag_all_characters:[280,3,1,""],tag_character:[280,3,1,""],typename:[280,4,1,""],unset_flag:[280,3,1,""]},"evennia.contrib.full_systems.evscaperoom.scripts":{CleanupScript:[281,1,1,""]},"evennia.contrib.full_systems.evscaperoom.scripts.CleanupScript":{DoesNotExist:[281,2,1,""],MultipleObjectsReturned:[281,2,1,""],at_repeat:[281,3,1,""],at_script_creation:[281,3,1,""],path:[281,4,1,""],typename:[281,4,1,""]},"evennia.contrib.full_systems.evscaperoom.state":{BaseState:[282,1,1,""],StateHandler:[282,1,1,""]},"evennia.contrib.full_systems.evscaperoom.state.BaseState":{__init__:[282,3,1,""],character_enters:[282,3,1,""],character_leaves:[282,3,1,""],cinematic:[282,3,1,""],clean:[282,3,1,""],create_object:[282,3,1,""],get_hint:[282,3,1,""],get_object:[282,3,1,""],hints:[282,4,1,""],init:[282,3,1,""],msg:[282,3,1,""],next:[282,3,1,""],next_state:[282,4,1,""]},"evennia.contrib.full_systems.evscaperoom.state.StateHandler":{__init__:[282,3,1,""],init_state:[282,3,1,""],load_state:[282,3,1,""],next_state:[282,3,1,""]},"evennia.contrib.full_systems.evscaperoom.tests":{TestEvScapeRoom:[283,1,1,""],TestEvscaperoomCommands:[283,1,1,""],TestStates:[283,1,1,""],TestUtils:[283,1,1,""]},"evennia.contrib.full_systems.evscaperoom.tests.TestEvScapeRoom":{setUp:[283,3,1,""],tearDown:[283,3,1,""],test_room_methods:[283,3,1,""]},"evennia.contrib.full_systems.evscaperoom.tests.TestEvscaperoomCommands":{setUp:[283,3,1,""],test_base_parse:[283,3,1,""],test_base_search:[283,3,1,""],test_emote:[283,3,1,""],test_focus:[283,3,1,""],test_focus_interaction:[283,3,1,""],test_look:[283,3,1,""],test_set_focus:[283,3,1,""],test_speech:[283,3,1,""]},"evennia.contrib.full_systems.evscaperoom.tests.TestStates":{setUp:[283,3,1,""],tearDown:[283,3,1,""],test_all_states:[283,3,1,""],test_base_state:[283,3,1,""]},"evennia.contrib.full_systems.evscaperoom.tests.TestUtils":{test_overwrite:[283,3,1,""],test_parse_for_perspectives:[283,3,1,""],test_parse_for_things:[283,3,1,""]},"evennia.contrib.full_systems.evscaperoom.utils":{add_msg_borders:[284,5,1,""],create_evscaperoom_object:[284,5,1,""],create_fantasy_word:[284,5,1,""],msg_cinematic:[284,5,1,""],parse_for_perspectives:[284,5,1,""],parse_for_things:[284,5,1,""]},"evennia.contrib.game_systems":{barter:[286,0,0,"-"],clothing:[289,0,0,"-"],cooldowns:[292,0,0,"-"],crafting:[295,0,0,"-"],gendersub:[299,0,0,"-"],mail:[302,0,0,"-"],multidescer:[305,0,0,"-"],puzzles:[308,0,0,"-"],turnbattle:[311,0,0,"-"]},"evennia.contrib.game_systems.barter":{barter:[287,0,0,"-"],tests:[288,0,0,"-"]},"evennia.contrib.game_systems.barter.barter":{CmdAccept:[287,1,1,""],CmdDecline:[287,1,1,""],CmdEvaluate:[287,1,1,""],CmdFinish:[287,1,1,""],CmdOffer:[287,1,1,""],CmdStatus:[287,1,1,""],CmdTrade:[287,1,1,""],CmdTradeBase:[287,1,1,""],CmdTradeHelp:[287,1,1,""],CmdsetTrade:[287,1,1,""],TradeHandler:[287,1,1,""],TradeTimeout:[287,1,1,""]},"evennia.contrib.game_systems.barter.barter.CmdAccept":{aliases:[287,4,1,""],func:[287,3,1,""],help_category:[287,4,1,""],key:[287,4,1,""],lock_storage:[287,4,1,""],locks:[287,4,1,""],search_index_entry:[287,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdDecline":{aliases:[287,4,1,""],func:[287,3,1,""],help_category:[287,4,1,""],key:[287,4,1,""],lock_storage:[287,4,1,""],locks:[287,4,1,""],search_index_entry:[287,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdEvaluate":{aliases:[287,4,1,""],func:[287,3,1,""],help_category:[287,4,1,""],key:[287,4,1,""],lock_storage:[287,4,1,""],locks:[287,4,1,""],search_index_entry:[287,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdFinish":{aliases:[287,4,1,""],func:[287,3,1,""],help_category:[287,4,1,""],key:[287,4,1,""],lock_storage:[287,4,1,""],locks:[287,4,1,""],search_index_entry:[287,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdOffer":{aliases:[287,4,1,""],func:[287,3,1,""],help_category:[287,4,1,""],key:[287,4,1,""],lock_storage:[287,4,1,""],locks:[287,4,1,""],search_index_entry:[287,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdStatus":{aliases:[287,4,1,""],func:[287,3,1,""],help_category:[287,4,1,""],key:[287,4,1,""],lock_storage:[287,4,1,""],locks:[287,4,1,""],search_index_entry:[287,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdTrade":{aliases:[287,4,1,""],func:[287,3,1,""],help_category:[287,4,1,""],key:[287,4,1,""],lock_storage:[287,4,1,""],locks:[287,4,1,""],search_index_entry:[287,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdTradeBase":{aliases:[287,4,1,""],help_category:[287,4,1,""],key:[287,4,1,""],lock_storage:[287,4,1,""],parse:[287,3,1,""],search_index_entry:[287,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdTradeHelp":{aliases:[287,4,1,""],func:[287,3,1,""],help_category:[287,4,1,""],key:[287,4,1,""],lock_storage:[287,4,1,""],locks:[287,4,1,""],search_index_entry:[287,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdsetTrade":{at_cmdset_creation:[287,3,1,""],key:[287,4,1,""],path:[287,4,1,""]},"evennia.contrib.game_systems.barter.barter.TradeHandler":{__init__:[287,3,1,""],accept:[287,3,1,""],decline:[287,3,1,""],finish:[287,3,1,""],get_other:[287,3,1,""],join:[287,3,1,""],list:[287,3,1,""],msg_other:[287,3,1,""],offer:[287,3,1,""],search:[287,3,1,""],unjoin:[287,3,1,""]},"evennia.contrib.game_systems.barter.barter.TradeTimeout":{DoesNotExist:[287,2,1,""],MultipleObjectsReturned:[287,2,1,""],at_repeat:[287,3,1,""],at_script_creation:[287,3,1,""],is_valid:[287,3,1,""],path:[287,4,1,""],typename:[287,4,1,""]},"evennia.contrib.game_systems.barter.tests":{TestBarter:[288,1,1,""]},"evennia.contrib.game_systems.barter.tests.TestBarter":{setUp:[288,3,1,""],test_cmdtrade:[288,3,1,""],test_cmdtradehelp:[288,3,1,""],test_tradehandler_base:[288,3,1,""],test_tradehandler_joins:[288,3,1,""],test_tradehandler_offers:[288,3,1,""]},"evennia.contrib.game_systems.clothing":{clothing:[290,0,0,"-"],tests:[291,0,0,"-"]},"evennia.contrib.game_systems.clothing.clothing":{ClothedCharacter:[290,1,1,""],ClothedCharacterCmdSet:[290,1,1,""],CmdCover:[290,1,1,""],CmdDrop:[290,1,1,""],CmdGive:[290,1,1,""],CmdInventory:[290,1,1,""],CmdRemove:[290,1,1,""],CmdUncover:[290,1,1,""],CmdWear:[290,1,1,""],ContribClothing:[290,1,1,""],clothing_type_count:[290,5,1,""],get_worn_clothes:[290,5,1,""],order_clothes_list:[290,5,1,""],single_type_count:[290,5,1,""]},"evennia.contrib.game_systems.clothing.clothing.ClothedCharacter":{DoesNotExist:[290,2,1,""],MultipleObjectsReturned:[290,2,1,""],path:[290,4,1,""],return_appearance:[290,3,1,""],typename:[290,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.ClothedCharacterCmdSet":{at_cmdset_creation:[290,3,1,""],key:[290,4,1,""],path:[290,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.CmdCover":{aliases:[290,4,1,""],func:[290,3,1,""],help_category:[290,4,1,""],key:[290,4,1,""],lock_storage:[290,4,1,""],search_index_entry:[290,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.CmdDrop":{aliases:[290,4,1,""],arg_regex:[290,4,1,""],func:[290,3,1,""],help_category:[290,4,1,""],key:[290,4,1,""],lock_storage:[290,4,1,""],locks:[290,4,1,""],search_index_entry:[290,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.CmdGive":{aliases:[290,4,1,""],arg_regex:[290,4,1,""],func:[290,3,1,""],help_category:[290,4,1,""],key:[290,4,1,""],lock_storage:[290,4,1,""],locks:[290,4,1,""],search_index_entry:[290,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.CmdInventory":{aliases:[290,4,1,""],arg_regex:[290,4,1,""],func:[290,3,1,""],help_category:[290,4,1,""],key:[290,4,1,""],lock_storage:[290,4,1,""],locks:[290,4,1,""],search_index_entry:[290,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.CmdRemove":{aliases:[290,4,1,""],func:[290,3,1,""],help_category:[290,4,1,""],key:[290,4,1,""],lock_storage:[290,4,1,""],search_index_entry:[290,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.CmdUncover":{aliases:[290,4,1,""],func:[290,3,1,""],help_category:[290,4,1,""],key:[290,4,1,""],lock_storage:[290,4,1,""],search_index_entry:[290,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.CmdWear":{aliases:[290,4,1,""],func:[290,3,1,""],help_category:[290,4,1,""],key:[290,4,1,""],lock_storage:[290,4,1,""],search_index_entry:[290,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.ContribClothing":{DoesNotExist:[290,2,1,""],MultipleObjectsReturned:[290,2,1,""],at_get:[290,3,1,""],path:[290,4,1,""],remove:[290,3,1,""],typename:[290,4,1,""],wear:[290,3,1,""]},"evennia.contrib.game_systems.clothing.tests":{TestClothingCmd:[291,1,1,""],TestClothingFunc:[291,1,1,""]},"evennia.contrib.game_systems.clothing.tests.TestClothingCmd":{test_clothingcommands:[291,3,1,""]},"evennia.contrib.game_systems.clothing.tests.TestClothingFunc":{test_clothingfunctions:[291,3,1,""]},"evennia.contrib.game_systems.cooldowns":{cooldowns:[293,0,0,"-"],tests:[294,0,0,"-"]},"evennia.contrib.game_systems.cooldowns.cooldowns":{CooldownHandler:[293,1,1,""]},"evennia.contrib.game_systems.cooldowns.cooldowns.CooldownHandler":{__init__:[293,3,1,""],add:[293,3,1,""],all:[293,3,1,""],cleanup:[293,3,1,""],clear:[293,3,1,""],data:[293,4,1,""],db_attribute:[293,4,1,""],extend:[293,3,1,""],obj:[293,4,1,""],ready:[293,3,1,""],reset:[293,3,1,""],set:[293,3,1,""],time_left:[293,3,1,""]},"evennia.contrib.game_systems.cooldowns.tests":{TestCooldowns:[294,1,1,""]},"evennia.contrib.game_systems.cooldowns.tests.TestCooldowns":{setUp:[294,3,1,""],test_add:[294,3,1,""],test_add_float:[294,3,1,""],test_add_multi:[294,3,1,""],test_add_negative:[294,3,1,""],test_add_none:[294,3,1,""],test_add_overwrite:[294,3,1,""],test_cleanup:[294,3,1,""],test_cleanup_doesnt_delete_anything:[294,3,1,""],test_clear:[294,3,1,""],test_empty:[294,3,1,""],test_extend:[294,3,1,""],test_extend_float:[294,3,1,""],test_extend_negative:[294,3,1,""],test_extend_none:[294,3,1,""],test_reset:[294,3,1,""],test_reset_non_existent:[294,3,1,""]},"evennia.contrib.game_systems.crafting":{crafting:[296,0,0,"-"],example_recipes:[297,0,0,"-"],tests:[298,0,0,"-"]},"evennia.contrib.game_systems.crafting.crafting":{CmdCraft:[296,1,1,""],CraftingCmdSet:[296,1,1,""],CraftingError:[296,2,1,""],CraftingRecipe:[296,1,1,""],CraftingRecipeBase:[296,1,1,""],CraftingValidationError:[296,2,1,""],craft:[296,5,1,""]},"evennia.contrib.game_systems.crafting.crafting.CmdCraft":{aliases:[296,4,1,""],arg_regex:[296,4,1,""],func:[296,3,1,""],help_category:[296,4,1,""],key:[296,4,1,""],lock_storage:[296,4,1,""],locks:[296,4,1,""],parse:[296,3,1,""],search_index_entry:[296,4,1,""]},"evennia.contrib.game_systems.crafting.crafting.CraftingCmdSet":{at_cmdset_creation:[296,3,1,""],key:[296,4,1,""],path:[296,4,1,""]},"evennia.contrib.game_systems.crafting.crafting.CraftingRecipe":{__init__:[296,3,1,""],consumable_names:[296,4,1,""],consumable_tag_category:[296,4,1,""],consumable_tags:[296,4,1,""],consume_on_fail:[296,4,1,""],do_craft:[296,3,1,""],error_consumable_excess_message:[296,4,1,""],error_consumable_missing_message:[296,4,1,""],error_consumable_order_message:[296,4,1,""],error_tool_excess_message:[296,4,1,""],error_tool_missing_message:[296,4,1,""],error_tool_order_message:[296,4,1,""],exact_consumable_order:[296,4,1,""],exact_consumables:[296,4,1,""],exact_tool_order:[296,4,1,""],exact_tools:[296,4,1,""],failure_message:[296,4,1,""],name:[296,4,1,""],output_names:[296,4,1,""],output_prototypes:[296,4,1,""],post_craft:[296,3,1,""],pre_craft:[296,3,1,""],seed:[296,3,1,""],success_message:[296,4,1,""],tool_names:[296,4,1,""],tool_tag_category:[296,4,1,""],tool_tags:[296,4,1,""]},"evennia.contrib.game_systems.crafting.crafting.CraftingRecipeBase":{__init__:[296,3,1,""],allow_reuse:[296,4,1,""],craft:[296,3,1,""],do_craft:[296,3,1,""],msg:[296,3,1,""],name:[296,4,1,""],post_craft:[296,3,1,""],pre_craft:[296,3,1,""]},"evennia.contrib.game_systems.crafting.example_recipes":{CmdCast:[297,1,1,""],CrucibleSteelRecipe:[297,1,1,""],FireballRecipe:[297,1,1,""],HealingRecipe:[297,1,1,""],LeatherRecipe:[297,1,1,""],OakBarkRecipe:[297,1,1,""],PigIronRecipe:[297,1,1,""],RawhideRecipe:[297,1,1,""],SwordBladeRecipe:[297,1,1,""],SwordGuardRecipe:[297,1,1,""],SwordHandleRecipe:[297,1,1,""],SwordPommelRecipe:[297,1,1,""],SwordRecipe:[297,1,1,""],random:[297,5,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.CmdCast":{aliases:[297,4,1,""],func:[297,3,1,""],help_category:[297,4,1,""],key:[297,4,1,""],lock_storage:[297,4,1,""],parse:[297,3,1,""],search_index_entry:[297,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.CrucibleSteelRecipe":{consumable_tags:[297,4,1,""],name:[297,4,1,""],output_prototypes:[297,4,1,""],tool_tags:[297,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.FireballRecipe":{desired_effects:[297,4,1,""],failure_effects:[297,4,1,""],name:[297,4,1,""],skill_requirements:[297,4,1,""],skill_roll:[297,4,1,""],success_message:[297,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.HealingRecipe":{desired_effects:[297,4,1,""],failure_effects:[297,4,1,""],name:[297,4,1,""],skill_requirements:[297,4,1,""],skill_roll:[297,4,1,""],success_message:[297,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.LeatherRecipe":{consumable_tags:[297,4,1,""],name:[297,4,1,""],output_prototypes:[297,4,1,""],tool_tags:[297,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.OakBarkRecipe":{consumable_tags:[297,4,1,""],name:[297,4,1,""],output_prototypes:[297,4,1,""],tool_tags:[297,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.PigIronRecipe":{consumable_tags:[297,4,1,""],name:[297,4,1,""],output_prototypes:[297,4,1,""],tool_tags:[297,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.RawhideRecipe":{consumable_tags:[297,4,1,""],name:[297,4,1,""],output_prototypes:[297,4,1,""],tool_tags:[297,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.SwordBladeRecipe":{consumable_tags:[297,4,1,""],name:[297,4,1,""],output_prototypes:[297,4,1,""],tool_tags:[297,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.SwordGuardRecipe":{consumable_tags:[297,4,1,""],name:[297,4,1,""],output_prototypes:[297,4,1,""],tool_tags:[297,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.SwordHandleRecipe":{consumable_tags:[297,4,1,""],name:[297,4,1,""],output_prototypes:[297,4,1,""],tool_tags:[297,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.SwordPommelRecipe":{consumable_tags:[297,4,1,""],name:[297,4,1,""],output_prototypes:[297,4,1,""],tool_tags:[297,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.SwordRecipe":{consumable_tags:[297,4,1,""],exact_consumable_order:[297,4,1,""],name:[297,4,1,""],output_prototypes:[297,4,1,""],tool_tags:[297,4,1,""]},"evennia.contrib.game_systems.crafting.tests":{TestCraftCommand:[298,1,1,""],TestCraftSword:[298,1,1,""],TestCraftUtils:[298,1,1,""],TestCraftingRecipe:[298,1,1,""],TestCraftingRecipeBase:[298,1,1,""]},"evennia.contrib.game_systems.crafting.tests.TestCraftCommand":{setUp:[298,3,1,""],test_craft__nocons__failure:[298,3,1,""],test_craft__notools__failure:[298,3,1,""],test_craft__success:[298,3,1,""]},"evennia.contrib.game_systems.crafting.tests.TestCraftSword":{setUp:[298,3,1,""],test_craft_sword:[298,3,1,""]},"evennia.contrib.game_systems.crafting.tests.TestCraftUtils":{maxDiff:[298,4,1,""],test_load_recipes:[298,3,1,""]},"evennia.contrib.game_systems.crafting.tests.TestCraftingRecipe":{maxDiff:[298,4,1,""],setUp:[298,3,1,""],tearDown:[298,3,1,""],test_craft__success:[298,3,1,""],test_craft_cons_excess__fail:[298,3,1,""],test_craft_cons_excess__sucess:[298,3,1,""],test_craft_cons_order__fail:[298,3,1,""],test_craft_missing_cons__always_consume__fail:[298,3,1,""],test_craft_missing_cons__fail:[298,3,1,""],test_craft_missing_tool__fail:[298,3,1,""],test_craft_tool_excess__fail:[298,3,1,""],test_craft_tool_excess__sucess:[298,3,1,""],test_craft_tool_order__fail:[298,3,1,""],test_craft_wrong_tool__fail:[298,3,1,""],test_error_format:[298,3,1,""],test_seed__success:[298,3,1,""]},"evennia.contrib.game_systems.crafting.tests.TestCraftingRecipeBase":{setUp:[298,3,1,""],test_craft_hook__fail:[298,3,1,""],test_craft_hook__succeed:[298,3,1,""],test_msg:[298,3,1,""],test_pre_craft:[298,3,1,""],test_pre_craft_fail:[298,3,1,""]},"evennia.contrib.game_systems.gendersub":{gendersub:[300,0,0,"-"],tests:[301,0,0,"-"]},"evennia.contrib.game_systems.gendersub.gendersub":{GenderCharacter:[300,1,1,""],SetGender:[300,1,1,""]},"evennia.contrib.game_systems.gendersub.gendersub.GenderCharacter":{DoesNotExist:[300,2,1,""],MultipleObjectsReturned:[300,2,1,""],at_object_creation:[300,3,1,""],msg:[300,3,1,""],path:[300,4,1,""],typename:[300,4,1,""]},"evennia.contrib.game_systems.gendersub.gendersub.SetGender":{aliases:[300,4,1,""],func:[300,3,1,""],help_category:[300,4,1,""],key:[300,4,1,""],lock_storage:[300,4,1,""],locks:[300,4,1,""],search_index_entry:[300,4,1,""]},"evennia.contrib.game_systems.gendersub.tests":{TestGenderSub:[301,1,1,""]},"evennia.contrib.game_systems.gendersub.tests.TestGenderSub":{test_gendercharacter:[301,3,1,""],test_setgender:[301,3,1,""]},"evennia.contrib.game_systems.mail":{mail:[303,0,0,"-"],tests:[304,0,0,"-"]},"evennia.contrib.game_systems.mail.mail":{CmdMail:[303,1,1,""],CmdMailCharacter:[303,1,1,""]},"evennia.contrib.game_systems.mail.mail.CmdMail":{aliases:[303,4,1,""],func:[303,3,1,""],get_all_mail:[303,3,1,""],help_category:[303,4,1,""],key:[303,4,1,""],lock:[303,4,1,""],lock_storage:[303,4,1,""],parse:[303,3,1,""],search_index_entry:[303,4,1,""],search_targets:[303,3,1,""],send_mail:[303,3,1,""]},"evennia.contrib.game_systems.mail.mail.CmdMailCharacter":{account_caller:[303,4,1,""],aliases:[303,4,1,""],help_category:[303,4,1,""],key:[303,4,1,""],lock_storage:[303,4,1,""],search_index_entry:[303,4,1,""]},"evennia.contrib.game_systems.mail.tests":{TestMail:[304,1,1,""]},"evennia.contrib.game_systems.mail.tests.TestMail":{test_mail:[304,3,1,""]},"evennia.contrib.game_systems.multidescer":{multidescer:[306,0,0,"-"],tests:[307,0,0,"-"]},"evennia.contrib.game_systems.multidescer.multidescer":{CmdMultiDesc:[306,1,1,""],DescValidateError:[306,2,1,""]},"evennia.contrib.game_systems.multidescer.multidescer.CmdMultiDesc":{aliases:[306,4,1,""],func:[306,3,1,""],help_category:[306,4,1,""],key:[306,4,1,""],lock_storage:[306,4,1,""],locks:[306,4,1,""],search_index_entry:[306,4,1,""]},"evennia.contrib.game_systems.multidescer.tests":{TestMultidescer:[307,1,1,""]},"evennia.contrib.game_systems.multidescer.tests.TestMultidescer":{test_cmdmultidesc:[307,3,1,""]},"evennia.contrib.game_systems.puzzles":{puzzles:[309,0,0,"-"],tests:[310,0,0,"-"]},"evennia.contrib.game_systems.puzzles.puzzles":{CmdArmPuzzle:[309,1,1,""],CmdCreatePuzzleRecipe:[309,1,1,""],CmdEditPuzzle:[309,1,1,""],CmdListArmedPuzzles:[309,1,1,""],CmdListPuzzleRecipes:[309,1,1,""],CmdUsePuzzleParts:[309,1,1,""],PuzzleRecipe:[309,1,1,""],PuzzleSystemCmdSet:[309,1,1,""],maskout_protodef:[309,5,1,""],proto_def:[309,5,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.CmdArmPuzzle":{aliases:[309,4,1,""],func:[309,3,1,""],help_category:[309,4,1,""],key:[309,4,1,""],lock_storage:[309,4,1,""],locks:[309,4,1,""],search_index_entry:[309,4,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.CmdCreatePuzzleRecipe":{aliases:[309,4,1,""],confirm:[309,4,1,""],default_confirm:[309,4,1,""],func:[309,3,1,""],help_category:[309,4,1,""],key:[309,4,1,""],lock_storage:[309,4,1,""],locks:[309,4,1,""],search_index_entry:[309,4,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.CmdEditPuzzle":{aliases:[309,4,1,""],func:[309,3,1,""],help_category:[309,4,1,""],key:[309,4,1,""],lock_storage:[309,4,1,""],locks:[309,4,1,""],search_index_entry:[309,4,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.CmdListArmedPuzzles":{aliases:[309,4,1,""],func:[309,3,1,""],help_category:[309,4,1,""],key:[309,4,1,""],lock_storage:[309,4,1,""],locks:[309,4,1,""],search_index_entry:[309,4,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.CmdListPuzzleRecipes":{aliases:[309,4,1,""],func:[309,3,1,""],help_category:[309,4,1,""],key:[309,4,1,""],lock_storage:[309,4,1,""],locks:[309,4,1,""],search_index_entry:[309,4,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.CmdUsePuzzleParts":{aliases:[309,4,1,""],func:[309,3,1,""],help_category:[309,4,1,""],key:[309,4,1,""],lock_storage:[309,4,1,""],locks:[309,4,1,""],search_index_entry:[309,4,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.PuzzleRecipe":{DoesNotExist:[309,2,1,""],MultipleObjectsReturned:[309,2,1,""],path:[309,4,1,""],save_recipe:[309,3,1,""],typename:[309,4,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.PuzzleSystemCmdSet":{at_cmdset_creation:[309,3,1,""],path:[309,4,1,""]},"evennia.contrib.game_systems.puzzles.tests":{TestPuzzles:[310,1,1,""]},"evennia.contrib.game_systems.puzzles.tests.TestPuzzles":{setUp:[310,3,1,""],test_cmd_armpuzzle:[310,3,1,""],test_cmd_puzzle:[310,3,1,""],test_cmd_use:[310,3,1,""],test_cmdset_puzzle:[310,3,1,""],test_e2e:[310,3,1,""],test_e2e_accumulative:[310,3,1,""],test_e2e_interchangeable_parts_and_results:[310,3,1,""],test_lspuzzlerecipes_lsarmedpuzzles:[310,3,1,""],test_puzzleedit:[310,3,1,""],test_puzzleedit_add_remove_parts_results:[310,3,1,""]},"evennia.contrib.game_systems.turnbattle":{tb_basic:[312,0,0,"-"],tb_equip:[313,0,0,"-"],tb_items:[314,0,0,"-"],tb_magic:[315,0,0,"-"],tb_range:[316,0,0,"-"],tests:[317,0,0,"-"]},"evennia.contrib.game_systems.turnbattle.tb_basic":{ACTIONS_PER_TURN:[312,6,1,""],BasicCombatRules:[312,1,1,""],BattleCmdSet:[312,1,1,""],COMBAT_RULES:[312,6,1,""],CmdAttack:[312,1,1,""],CmdCombatHelp:[312,1,1,""],CmdDisengage:[312,1,1,""],CmdFight:[312,1,1,""],CmdPass:[312,1,1,""],CmdRest:[312,1,1,""],TBBasicCharacter:[312,1,1,""],TBBasicTurnHandler:[312,1,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.BasicCombatRules":{apply_damage:[312,3,1,""],at_defeat:[312,3,1,""],combat_cleanup:[312,3,1,""],get_attack:[312,3,1,""],get_damage:[312,3,1,""],get_defense:[312,3,1,""],is_in_combat:[312,3,1,""],is_turn:[312,3,1,""],resolve_attack:[312,3,1,""],roll_init:[312,3,1,""],spend_action:[312,3,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.BattleCmdSet":{at_cmdset_creation:[312,3,1,""],key:[312,4,1,""],path:[312,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.CmdAttack":{aliases:[312,4,1,""],func:[312,3,1,""],help_category:[312,4,1,""],key:[312,4,1,""],lock_storage:[312,4,1,""],rules:[312,4,1,""],search_index_entry:[312,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.CmdCombatHelp":{aliases:[312,4,1,""],combat_help_text:[312,4,1,""],func:[312,3,1,""],help_category:[312,4,1,""],key:[312,4,1,""],lock_storage:[312,4,1,""],rules:[312,4,1,""],search_index_entry:[312,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.CmdDisengage":{aliases:[312,4,1,""],func:[312,3,1,""],help_category:[312,4,1,""],key:[312,4,1,""],lock_storage:[312,4,1,""],rules:[312,4,1,""],search_index_entry:[312,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.CmdFight":{aliases:[312,4,1,""],combat_handler_class:[312,4,1,""],func:[312,3,1,""],help_category:[312,4,1,""],key:[312,4,1,""],lock_storage:[312,4,1,""],rules:[312,4,1,""],search_index_entry:[312,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.CmdPass":{aliases:[312,4,1,""],func:[312,3,1,""],help_category:[312,4,1,""],key:[312,4,1,""],lock_storage:[312,4,1,""],rules:[312,4,1,""],search_index_entry:[312,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.CmdRest":{aliases:[312,4,1,""],func:[312,3,1,""],help_category:[312,4,1,""],key:[312,4,1,""],lock_storage:[312,4,1,""],rules:[312,4,1,""],search_index_entry:[312,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.TBBasicCharacter":{DoesNotExist:[312,2,1,""],MultipleObjectsReturned:[312,2,1,""],at_object_creation:[312,3,1,""],at_pre_move:[312,3,1,""],path:[312,4,1,""],rules:[312,4,1,""],typename:[312,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.TBBasicTurnHandler":{DoesNotExist:[312,2,1,""],MultipleObjectsReturned:[312,2,1,""],at_repeat:[312,3,1,""],at_script_creation:[312,3,1,""],at_stop:[312,3,1,""],initialize_for_combat:[312,3,1,""],join_fight:[312,3,1,""],next_turn:[312,3,1,""],path:[312,4,1,""],rules:[312,4,1,""],start_turn:[312,3,1,""],turn_end_check:[312,3,1,""],typename:[312,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip":{ACTIONS_PER_TURN:[313,6,1,""],BattleCmdSet:[313,1,1,""],COMBAT_RULES:[313,6,1,""],CmdAttack:[313,1,1,""],CmdCombatHelp:[313,1,1,""],CmdDisengage:[313,1,1,""],CmdDoff:[313,1,1,""],CmdDon:[313,1,1,""],CmdFight:[313,1,1,""],CmdPass:[313,1,1,""],CmdRest:[313,1,1,""],CmdUnwield:[313,1,1,""],CmdWield:[313,1,1,""],EquipmentCombatRules:[313,1,1,""],TBEArmor:[313,1,1,""],TBEWeapon:[313,1,1,""],TBEquipCharacter:[313,1,1,""],TBEquipTurnHandler:[313,1,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.BattleCmdSet":{at_cmdset_creation:[313,3,1,""],key:[313,4,1,""],path:[313,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdAttack":{aliases:[313,4,1,""],help_category:[313,4,1,""],key:[313,4,1,""],lock_storage:[313,4,1,""],rules:[313,4,1,""],search_index_entry:[313,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdCombatHelp":{aliases:[313,4,1,""],help_category:[313,4,1,""],key:[313,4,1,""],lock_storage:[313,4,1,""],rules:[313,4,1,""],search_index_entry:[313,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdDisengage":{aliases:[313,4,1,""],help_category:[313,4,1,""],key:[313,4,1,""],lock_storage:[313,4,1,""],rules:[313,4,1,""],search_index_entry:[313,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdDoff":{aliases:[313,4,1,""],func:[313,3,1,""],help_category:[313,4,1,""],key:[313,4,1,""],lock_storage:[313,4,1,""],rules:[313,4,1,""],search_index_entry:[313,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdDon":{aliases:[313,4,1,""],func:[313,3,1,""],help_category:[313,4,1,""],key:[313,4,1,""],lock_storage:[313,4,1,""],rules:[313,4,1,""],search_index_entry:[313,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdFight":{aliases:[313,4,1,""],command_handler_class:[313,4,1,""],help_category:[313,4,1,""],key:[313,4,1,""],lock_storage:[313,4,1,""],rules:[313,4,1,""],search_index_entry:[313,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdPass":{aliases:[313,4,1,""],help_category:[313,4,1,""],key:[313,4,1,""],lock_storage:[313,4,1,""],rules:[313,4,1,""],search_index_entry:[313,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdRest":{aliases:[313,4,1,""],help_category:[313,4,1,""],key:[313,4,1,""],lock_storage:[313,4,1,""],rules:[313,4,1,""],search_index_entry:[313,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdUnwield":{aliases:[313,4,1,""],func:[313,3,1,""],help_category:[313,4,1,""],key:[313,4,1,""],lock_storage:[313,4,1,""],rules:[313,4,1,""],search_index_entry:[313,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdWield":{aliases:[313,4,1,""],func:[313,3,1,""],help_category:[313,4,1,""],key:[313,4,1,""],lock_storage:[313,4,1,""],rules:[313,4,1,""],search_index_entry:[313,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.EquipmentCombatRules":{get_attack:[313,3,1,""],get_damage:[313,3,1,""],get_defense:[313,3,1,""],resolve_attack:[313,3,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.TBEArmor":{DoesNotExist:[313,2,1,""],MultipleObjectsReturned:[313,2,1,""],at_drop:[313,3,1,""],at_give:[313,3,1,""],at_object_creation:[313,3,1,""],at_pre_drop:[313,3,1,""],at_pre_give:[313,3,1,""],path:[313,4,1,""],typename:[313,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.TBEWeapon":{DoesNotExist:[313,2,1,""],MultipleObjectsReturned:[313,2,1,""],at_drop:[313,3,1,""],at_give:[313,3,1,""],at_object_creation:[313,3,1,""],path:[313,4,1,""],rules:[313,4,1,""],typename:[313,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.TBEquipCharacter":{DoesNotExist:[313,2,1,""],MultipleObjectsReturned:[313,2,1,""],at_object_creation:[313,3,1,""],path:[313,4,1,""],typename:[313,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.TBEquipTurnHandler":{DoesNotExist:[313,2,1,""],MultipleObjectsReturned:[313,2,1,""],path:[313,4,1,""],rules:[313,4,1,""],typename:[313,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items":{AMULET_OF_WEAKNESS:[314,6,1,""],BattleCmdSet:[314,1,1,""],CmdAttack:[314,1,1,""],CmdCombatHelp:[314,1,1,""],CmdDisengage:[314,1,1,""],CmdFight:[314,1,1,""],CmdPass:[314,1,1,""],CmdRest:[314,1,1,""],CmdUse:[314,1,1,""],DEF_DOWN_MOD:[314,6,1,""],ITEMFUNCS:[314,6,1,""],ItemCombatRules:[314,1,1,""],TBItemsCharacter:[314,1,1,""],TBItemsCharacterTest:[314,1,1,""],TBItemsTurnHandler:[314,1,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.BattleCmdSet":{at_cmdset_creation:[314,3,1,""],key:[314,4,1,""],path:[314,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.CmdAttack":{aliases:[314,4,1,""],help_category:[314,4,1,""],key:[314,4,1,""],lock_storage:[314,4,1,""],rules:[314,4,1,""],search_index_entry:[314,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.CmdCombatHelp":{aliases:[314,4,1,""],combat_help_text:[314,4,1,""],help_category:[314,4,1,""],key:[314,4,1,""],lock_storage:[314,4,1,""],rules:[314,4,1,""],search_index_entry:[314,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.CmdDisengage":{aliases:[314,4,1,""],help_category:[314,4,1,""],key:[314,4,1,""],lock_storage:[314,4,1,""],rules:[314,4,1,""],search_index_entry:[314,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.CmdFight":{aliases:[314,4,1,""],combat_handler_class:[314,4,1,""],help_category:[314,4,1,""],key:[314,4,1,""],lock_storage:[314,4,1,""],rules:[314,4,1,""],search_index_entry:[314,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.CmdPass":{aliases:[314,4,1,""],help_category:[314,4,1,""],key:[314,4,1,""],lock_storage:[314,4,1,""],rules:[314,4,1,""],search_index_entry:[314,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.CmdRest":{aliases:[314,4,1,""],help_category:[314,4,1,""],key:[314,4,1,""],lock_storage:[314,4,1,""],rules:[314,4,1,""],search_index_entry:[314,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.CmdUse":{aliases:[314,4,1,""],func:[314,3,1,""],help_category:[314,4,1,""],key:[314,4,1,""],lock_storage:[314,4,1,""],rules:[314,4,1,""],search_index_entry:[314,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.ItemCombatRules":{add_condition:[314,3,1,""],condition_tickdown:[314,3,1,""],get_attack:[314,3,1,""],get_damage:[314,3,1,""],get_defense:[314,3,1,""],itemfunc_add_condition:[314,3,1,""],itemfunc_attack:[314,3,1,""],itemfunc_cure_condition:[314,3,1,""],itemfunc_heal:[314,3,1,""],resolve_attack:[314,3,1,""],spend_item_use:[314,3,1,""],use_item:[314,3,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.TBItemsCharacter":{DoesNotExist:[314,2,1,""],MultipleObjectsReturned:[314,2,1,""],apply_turn_conditions:[314,3,1,""],at_object_creation:[314,3,1,""],at_turn_start:[314,3,1,""],at_update:[314,3,1,""],path:[314,4,1,""],rules:[314,4,1,""],typename:[314,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.TBItemsCharacterTest":{DoesNotExist:[314,2,1,""],MultipleObjectsReturned:[314,2,1,""],at_object_creation:[314,3,1,""],path:[314,4,1,""],typename:[314,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.TBItemsTurnHandler":{DoesNotExist:[314,2,1,""],MultipleObjectsReturned:[314,2,1,""],next_turn:[314,3,1,""],path:[314,4,1,""],rules:[314,4,1,""],typename:[314,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic":{ACTIONS_PER_TURN:[315,6,1,""],BattleCmdSet:[315,1,1,""],COMBAT_RULES:[315,6,1,""],CmdAttack:[315,1,1,""],CmdCast:[315,1,1,""],CmdCombatHelp:[315,1,1,""],CmdDisengage:[315,1,1,""],CmdFight:[315,1,1,""],CmdLearnSpell:[315,1,1,""],CmdPass:[315,1,1,""],CmdRest:[315,1,1,""],CmdStatus:[315,1,1,""],MagicCombatRules:[315,1,1,""],SPELLS:[315,6,1,""],TBMagicCharacter:[315,1,1,""],TBMagicTurnHandler:[315,1,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.BattleCmdSet":{at_cmdset_creation:[315,3,1,""],key:[315,4,1,""],path:[315,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdAttack":{aliases:[315,4,1,""],help_category:[315,4,1,""],key:[315,4,1,""],lock_storage:[315,4,1,""],rules:[315,4,1,""],search_index_entry:[315,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdCast":{aliases:[315,4,1,""],func:[315,3,1,""],help_category:[315,4,1,""],key:[315,4,1,""],lock_storage:[315,4,1,""],rules:[315,4,1,""],search_index_entry:[315,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdCombatHelp":{aliases:[315,4,1,""],help_category:[315,4,1,""],key:[315,4,1,""],lock_storage:[315,4,1,""],search_index_entry:[315,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdDisengage":{aliases:[315,4,1,""],help_category:[315,4,1,""],key:[315,4,1,""],lock_storage:[315,4,1,""],rules:[315,4,1,""],search_index_entry:[315,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdFight":{aliases:[315,4,1,""],combat_handler_class:[315,4,1,""],help_category:[315,4,1,""],key:[315,4,1,""],lock_storage:[315,4,1,""],rules:[315,4,1,""],search_index_entry:[315,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdLearnSpell":{aliases:[315,4,1,""],func:[315,3,1,""],help_category:[315,4,1,""],key:[315,4,1,""],lock_storage:[315,4,1,""],search_index_entry:[315,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdPass":{aliases:[315,4,1,""],help_category:[315,4,1,""],key:[315,4,1,""],lock_storage:[315,4,1,""],rules:[315,4,1,""],search_index_entry:[315,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdRest":{aliases:[315,4,1,""],func:[315,3,1,""],help_category:[315,4,1,""],key:[315,4,1,""],lock_storage:[315,4,1,""],rules:[315,4,1,""],search_index_entry:[315,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdStatus":{aliases:[315,4,1,""],func:[315,3,1,""],help_category:[315,4,1,""],key:[315,4,1,""],lock_storage:[315,4,1,""],search_index_entry:[315,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.MagicCombatRules":{spell_attack:[315,3,1,""],spell_conjure:[315,3,1,""],spell_healing:[315,3,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.TBMagicCharacter":{DoesNotExist:[315,2,1,""],MultipleObjectsReturned:[315,2,1,""],at_object_creation:[315,3,1,""],path:[315,4,1,""],rules:[315,4,1,""],typename:[315,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.TBMagicTurnHandler":{DoesNotExist:[315,2,1,""],MultipleObjectsReturned:[315,2,1,""],path:[315,4,1,""],rules:[315,4,1,""],typename:[315,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range":{ACTIONS_PER_TURN:[316,6,1,""],BattleCmdSet:[316,1,1,""],COMBAT_RULES:[316,6,1,""],CmdApproach:[316,1,1,""],CmdAttack:[316,1,1,""],CmdCombatHelp:[316,1,1,""],CmdDisengage:[316,1,1,""],CmdFight:[316,1,1,""],CmdPass:[316,1,1,""],CmdRest:[316,1,1,""],CmdShoot:[316,1,1,""],CmdStatus:[316,1,1,""],CmdWithdraw:[316,1,1,""],RangedCombatRules:[316,1,1,""],TBRangeCharacter:[316,1,1,""],TBRangeObject:[316,1,1,""],TBRangeTurnHandler:[316,1,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.BattleCmdSet":{at_cmdset_creation:[316,3,1,""],key:[316,4,1,""],path:[316,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdApproach":{aliases:[316,4,1,""],func:[316,3,1,""],help_category:[316,4,1,""],key:[316,4,1,""],lock_storage:[316,4,1,""],rules:[316,4,1,""],search_index_entry:[316,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdAttack":{aliases:[316,4,1,""],func:[316,3,1,""],help_category:[316,4,1,""],key:[316,4,1,""],lock_storage:[316,4,1,""],rules:[316,4,1,""],search_index_entry:[316,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdCombatHelp":{aliases:[316,4,1,""],combat_help_text:[316,4,1,""],help_category:[316,4,1,""],key:[316,4,1,""],lock_storage:[316,4,1,""],rules:[316,4,1,""],search_index_entry:[316,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdDisengage":{aliases:[316,4,1,""],help_category:[316,4,1,""],key:[316,4,1,""],lock_storage:[316,4,1,""],rules:[316,4,1,""],search_index_entry:[316,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdFight":{aliases:[316,4,1,""],combat_handler_class:[316,4,1,""],help_category:[316,4,1,""],key:[316,4,1,""],lock_storage:[316,4,1,""],rules:[316,4,1,""],search_index_entry:[316,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdPass":{aliases:[316,4,1,""],help_category:[316,4,1,""],key:[316,4,1,""],lock_storage:[316,4,1,""],rules:[316,4,1,""],search_index_entry:[316,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdRest":{aliases:[316,4,1,""],help_category:[316,4,1,""],key:[316,4,1,""],lock_storage:[316,4,1,""],rules:[316,4,1,""],search_index_entry:[316,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdShoot":{aliases:[316,4,1,""],func:[316,3,1,""],help_category:[316,4,1,""],key:[316,4,1,""],lock_storage:[316,4,1,""],rules:[316,4,1,""],search_index_entry:[316,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdStatus":{aliases:[316,4,1,""],func:[316,3,1,""],help_category:[316,4,1,""],key:[316,4,1,""],lock_storage:[316,4,1,""],rules:[316,4,1,""],search_index_entry:[316,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdWithdraw":{aliases:[316,4,1,""],func:[316,3,1,""],help_category:[316,4,1,""],key:[316,4,1,""],lock_storage:[316,4,1,""],rules:[316,4,1,""],search_index_entry:[316,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.RangedCombatRules":{approach:[316,3,1,""],combat_status_message:[316,3,1,""],distance_dec:[316,3,1,""],distance_inc:[316,3,1,""],get_attack:[316,3,1,""],get_defense:[316,3,1,""],get_range:[316,3,1,""],resolve_attack:[316,3,1,""],withdraw:[316,3,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.TBRangeCharacter":{DoesNotExist:[316,2,1,""],MultipleObjectsReturned:[316,2,1,""],path:[316,4,1,""],rules:[316,4,1,""],typename:[316,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.TBRangeObject":{DoesNotExist:[316,2,1,""],MultipleObjectsReturned:[316,2,1,""],at_drop:[316,3,1,""],at_get:[316,3,1,""],at_give:[316,3,1,""],at_pre_drop:[316,3,1,""],at_pre_get:[316,3,1,""],at_pre_give:[316,3,1,""],path:[316,4,1,""],typename:[316,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.TBRangeTurnHandler":{DoesNotExist:[316,2,1,""],MultipleObjectsReturned:[316,2,1,""],init_range:[316,3,1,""],join_fight:[316,3,1,""],join_rangefield:[316,3,1,""],path:[316,4,1,""],rules:[316,4,1,""],start_turn:[316,3,1,""],typename:[316,4,1,""]},"evennia.contrib.game_systems.turnbattle.tests":{TestTurnBattleBasicCmd:[317,1,1,""],TestTurnBattleBasicFunc:[317,1,1,""],TestTurnBattleEquipCmd:[317,1,1,""],TestTurnBattleEquipFunc:[317,1,1,""],TestTurnBattleItemsCmd:[317,1,1,""],TestTurnBattleItemsFunc:[317,1,1,""],TestTurnBattleMagicCmd:[317,1,1,""],TestTurnBattleMagicFunc:[317,1,1,""],TestTurnBattleRangeCmd:[317,1,1,""],TestTurnBattleRangeFunc:[317,1,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleBasicCmd":{test_turnbattlecmd:[317,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleBasicFunc":{setUp:[317,3,1,""],tearDown:[317,3,1,""],test_tbbasicfunc:[317,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleEquipCmd":{setUp:[317,3,1,""],test_turnbattleequipcmd:[317,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleEquipFunc":{setUp:[317,3,1,""],tearDown:[317,3,1,""],test_tbequipfunc:[317,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleItemsCmd":{setUp:[317,3,1,""],test_turnbattleitemcmd:[317,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleItemsFunc":{setUp:[317,3,1,""],tearDown:[317,3,1,""],test_tbitemsfunc:[317,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleMagicCmd":{test_turnbattlemagiccmd:[317,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleMagicFunc":{setUp:[317,3,1,""],tearDown:[317,3,1,""],test_tbbasicfunc:[317,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleRangeCmd":{test_turnbattlerangecmd:[317,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleRangeFunc":{setUp:[317,3,1,""],tearDown:[317,3,1,""],test_tbrangefunc:[317,3,1,""]},"evennia.contrib.grid":{extended_room:[319,0,0,"-"],simpledoor:[325,0,0,"-"],slow_exit:[328,0,0,"-"],wilderness:[331,0,0,"-"],xyzgrid:[334,0,0,"-"]},"evennia.contrib.grid.extended_room":{extended_room:[320,0,0,"-"],tests:[321,0,0,"-"]},"evennia.contrib.grid.extended_room.extended_room":{CmdExtendedRoomDesc:[320,1,1,""],CmdExtendedRoomDetail:[320,1,1,""],CmdExtendedRoomGameTime:[320,1,1,""],CmdExtendedRoomLook:[320,1,1,""],ExtendedRoom:[320,1,1,""],ExtendedRoomCmdSet:[320,1,1,""]},"evennia.contrib.grid.extended_room.extended_room.CmdExtendedRoomDesc":{aliases:[320,4,1,""],func:[320,3,1,""],help_category:[320,4,1,""],key:[320,4,1,""],lock_storage:[320,4,1,""],reset_times:[320,3,1,""],search_index_entry:[320,4,1,""],switch_options:[320,4,1,""]},"evennia.contrib.grid.extended_room.extended_room.CmdExtendedRoomDetail":{aliases:[320,4,1,""],func:[320,3,1,""],help_category:[320,4,1,""],key:[320,4,1,""],lock_storage:[320,4,1,""],locks:[320,4,1,""],search_index_entry:[320,4,1,""]},"evennia.contrib.grid.extended_room.extended_room.CmdExtendedRoomGameTime":{aliases:[320,4,1,""],func:[320,3,1,""],help_category:[320,4,1,""],key:[320,4,1,""],lock_storage:[320,4,1,""],locks:[320,4,1,""],search_index_entry:[320,4,1,""]},"evennia.contrib.grid.extended_room.extended_room.CmdExtendedRoomLook":{aliases:[320,4,1,""],func:[320,3,1,""],help_category:[320,4,1,""],key:[320,4,1,""],lock_storage:[320,4,1,""],search_index_entry:[320,4,1,""]},"evennia.contrib.grid.extended_room.extended_room.ExtendedRoom":{DoesNotExist:[320,2,1,""],MultipleObjectsReturned:[320,2,1,""],at_object_creation:[320,3,1,""],del_detail:[320,3,1,""],get_time_and_season:[320,3,1,""],path:[320,4,1,""],replace_timeslots:[320,3,1,""],return_appearance:[320,3,1,""],return_detail:[320,3,1,""],set_detail:[320,3,1,""],typename:[320,4,1,""],update_current_description:[320,3,1,""]},"evennia.contrib.grid.extended_room.extended_room.ExtendedRoomCmdSet":{at_cmdset_creation:[320,3,1,""],path:[320,4,1,""]},"evennia.contrib.grid.extended_room.tests":{ForceUTCDatetime:[321,1,1,""],TestExtendedRoom:[321,1,1,""]},"evennia.contrib.grid.extended_room.tests.ForceUTCDatetime":{fromtimestamp:[321,3,1,""]},"evennia.contrib.grid.extended_room.tests.TestExtendedRoom":{DETAIL_DESC:[321,4,1,""],OLD_DESC:[321,4,1,""],SPRING_DESC:[321,4,1,""],room_typeclass:[321,4,1,""],setUp:[321,3,1,""],test_cmdextendedlook:[321,3,1,""],test_cmdgametime:[321,3,1,""],test_cmdsetdetail:[321,3,1,""],test_return_appearance:[321,3,1,""],test_return_detail:[321,3,1,""]},"evennia.contrib.grid.simpledoor":{simpledoor:[326,0,0,"-"],tests:[327,0,0,"-"]},"evennia.contrib.grid.simpledoor.simpledoor":{CmdOpen:[326,1,1,""],CmdOpenCloseDoor:[326,1,1,""],SimpleDoor:[326,1,1,""],SimpleDoorCmdSet:[326,1,1,""]},"evennia.contrib.grid.simpledoor.simpledoor.CmdOpen":{aliases:[326,4,1,""],create_exit:[326,3,1,""],help_category:[326,4,1,""],key:[326,4,1,""],lock_storage:[326,4,1,""],search_index_entry:[326,4,1,""]},"evennia.contrib.grid.simpledoor.simpledoor.CmdOpenCloseDoor":{aliases:[326,4,1,""],func:[326,3,1,""],help_category:[326,4,1,""],key:[326,4,1,""],lock_storage:[326,4,1,""],locks:[326,4,1,""],search_index_entry:[326,4,1,""]},"evennia.contrib.grid.simpledoor.simpledoor.SimpleDoor":{"delete":[326,3,1,""],DoesNotExist:[326,2,1,""],MultipleObjectsReturned:[326,2,1,""],at_failed_traverse:[326,3,1,""],at_object_creation:[326,3,1,""],path:[326,4,1,""],setdesc:[326,3,1,""],setlock:[326,3,1,""],typename:[326,4,1,""]},"evennia.contrib.grid.simpledoor.simpledoor.SimpleDoorCmdSet":{at_cmdset_creation:[326,3,1,""],path:[326,4,1,""]},"evennia.contrib.grid.simpledoor.tests":{TestSimpleDoor:[327,1,1,""]},"evennia.contrib.grid.simpledoor.tests.TestSimpleDoor":{test_cmdopen:[327,3,1,""]},"evennia.contrib.grid.slow_exit":{slow_exit:[329,0,0,"-"],tests:[330,0,0,"-"]},"evennia.contrib.grid.slow_exit.slow_exit":{CmdSetSpeed:[329,1,1,""],CmdStop:[329,1,1,""],SlowExit:[329,1,1,""],SlowExitCmdSet:[329,1,1,""]},"evennia.contrib.grid.slow_exit.slow_exit.CmdSetSpeed":{aliases:[329,4,1,""],func:[329,3,1,""],help_category:[329,4,1,""],key:[329,4,1,""],lock_storage:[329,4,1,""],search_index_entry:[329,4,1,""]},"evennia.contrib.grid.slow_exit.slow_exit.CmdStop":{aliases:[329,4,1,""],func:[329,3,1,""],help_category:[329,4,1,""],key:[329,4,1,""],lock_storage:[329,4,1,""],search_index_entry:[329,4,1,""]},"evennia.contrib.grid.slow_exit.slow_exit.SlowExit":{DoesNotExist:[329,2,1,""],MultipleObjectsReturned:[329,2,1,""],at_traverse:[329,3,1,""],path:[329,4,1,""],typename:[329,4,1,""]},"evennia.contrib.grid.slow_exit.slow_exit.SlowExitCmdSet":{at_cmdset_creation:[329,3,1,""],path:[329,4,1,""]},"evennia.contrib.grid.slow_exit.tests":{TestSlowExit:[330,1,1,""]},"evennia.contrib.grid.slow_exit.tests.TestSlowExit":{test_exit:[330,3,1,""]},"evennia.contrib.grid.wilderness":{tests:[332,0,0,"-"],wilderness:[333,0,0,"-"]},"evennia.contrib.grid.wilderness.tests":{TestWilderness:[332,1,1,""]},"evennia.contrib.grid.wilderness.tests.TestWilderness":{get_wilderness_script:[332,3,1,""],setUp:[332,3,1,""],test_create_wilderness_custom_name:[332,3,1,""],test_create_wilderness_default_name:[332,3,1,""],test_enter_wilderness:[332,3,1,""],test_enter_wilderness_custom_coordinates:[332,3,1,""],test_enter_wilderness_custom_name:[332,3,1,""],test_get_new_coordinates:[332,3,1,""],test_room_creation:[332,3,1,""],test_wilderness_correct_exits:[332,3,1,""]},"evennia.contrib.grid.wilderness.wilderness":{WildernessExit:[333,1,1,""],WildernessMapProvider:[333,1,1,""],WildernessRoom:[333,1,1,""],WildernessScript:[333,1,1,""],create_wilderness:[333,5,1,""],enter_wilderness:[333,5,1,""],get_new_coordinates:[333,5,1,""]},"evennia.contrib.grid.wilderness.wilderness.WildernessExit":{DoesNotExist:[333,2,1,""],MultipleObjectsReturned:[333,2,1,""],at_traverse:[333,3,1,""],at_traverse_coordinates:[333,3,1,""],mapprovider:[333,3,1,""],path:[333,4,1,""],typename:[333,4,1,""],wilderness:[333,3,1,""]},"evennia.contrib.grid.wilderness.wilderness.WildernessMapProvider":{at_prepare_room:[333,3,1,""],exit_typeclass:[333,4,1,""],get_location_name:[333,3,1,""],is_valid_coordinates:[333,3,1,""],room_typeclass:[333,4,1,""]},"evennia.contrib.grid.wilderness.wilderness.WildernessRoom":{DoesNotExist:[333,2,1,""],MultipleObjectsReturned:[333,2,1,""],at_object_leave:[333,3,1,""],at_object_receive:[333,3,1,""],coordinates:[333,3,1,""],get_display_name:[333,3,1,""],location_name:[333,3,1,""],path:[333,4,1,""],set_active_coordinates:[333,3,1,""],typename:[333,4,1,""],wilderness:[333,3,1,""]},"evennia.contrib.grid.wilderness.wilderness.WildernessScript":{DoesNotExist:[333,2,1,""],MultipleObjectsReturned:[333,2,1,""],at_post_object_leave:[333,3,1,""],at_script_creation:[333,3,1,""],at_start:[333,3,1,""],get_obj_coordinates:[333,3,1,""],get_objs_at_coordinates:[333,3,1,""],is_valid_coordinates:[333,3,1,""],itemcoordinates:[333,3,1,""],mapprovider:[333,3,1,""],move_obj:[333,3,1,""],path:[333,4,1,""],typename:[333,4,1,""]},"evennia.contrib.grid.xyzgrid":{commands:[335,0,0,"-"],example:[336,0,0,"-"],launchcmd:[337,0,0,"-"],prototypes:[338,0,0,"-"],tests:[339,0,0,"-"],utils:[340,0,0,"-"],xymap:[341,0,0,"-"],xymap_legend:[342,0,0,"-"],xyzgrid:[343,0,0,"-"],xyzroom:[344,0,0,"-"]},"evennia.contrib.grid.xyzgrid.commands":{CmdGoto:[335,1,1,""],CmdMap:[335,1,1,""],CmdXYZOpen:[335,1,1,""],CmdXYZTeleport:[335,1,1,""],PathData:[335,1,1,""],XYZGridCmdSet:[335,1,1,""]},"evennia.contrib.grid.xyzgrid.commands.CmdGoto":{aliases:[335,4,1,""],auto_step_delay:[335,4,1,""],default_xyz_path_interrupt_msg:[335,4,1,""],func:[335,3,1,""],help_category:[335,4,1,""],key:[335,4,1,""],lock_storage:[335,4,1,""],locks:[335,4,1,""],search_index_entry:[335,4,1,""]},"evennia.contrib.grid.xyzgrid.commands.CmdMap":{aliases:[335,4,1,""],func:[335,3,1,""],help_category:[335,4,1,""],key:[335,4,1,""],lock_storage:[335,4,1,""],locks:[335,4,1,""],search_index_entry:[335,4,1,""]},"evennia.contrib.grid.xyzgrid.commands.CmdXYZOpen":{aliases:[335,4,1,""],help_category:[335,4,1,""],key:[335,4,1,""],lock_storage:[335,4,1,""],parse:[335,3,1,""],search_index_entry:[335,4,1,""]},"evennia.contrib.grid.xyzgrid.commands.CmdXYZTeleport":{aliases:[335,4,1,""],help_category:[335,4,1,""],key:[335,4,1,""],lock_storage:[335,4,1,""],parse:[335,3,1,""],search_index_entry:[335,4,1,""]},"evennia.contrib.grid.xyzgrid.commands.PathData":{directions:[335,4,1,""],step_sequence:[335,4,1,""],target:[335,4,1,""],task:[335,4,1,""],xymap:[335,4,1,""]},"evennia.contrib.grid.xyzgrid.commands.XYZGridCmdSet":{at_cmdset_creation:[335,3,1,""],key:[335,4,1,""],path:[335,4,1,""]},"evennia.contrib.grid.xyzgrid.example":{TransitionToCave:[336,1,1,""],TransitionToLargeTree:[336,1,1,""]},"evennia.contrib.grid.xyzgrid.example.TransitionToCave":{symbol:[336,4,1,""],target_map_xyz:[336,4,1,""]},"evennia.contrib.grid.xyzgrid.example.TransitionToLargeTree":{symbol:[336,4,1,""],target_map_xyz:[336,4,1,""]},"evennia.contrib.grid.xyzgrid.launchcmd":{xyzcommand:[337,5,1,""]},"evennia.contrib.grid.xyzgrid.tests":{Map12aTransition:[339,1,1,""],Map12bTransition:[339,1,1,""],TestBuildExampleGrid:[339,1,1,""],TestMap10:[339,1,1,""],TestMap11:[339,1,1,""],TestMap1:[339,1,1,""],TestMap2:[339,1,1,""],TestMap3:[339,1,1,""],TestMap4:[339,1,1,""],TestMap5:[339,1,1,""],TestMap6:[339,1,1,""],TestMap7:[339,1,1,""],TestMap8:[339,1,1,""],TestMap9:[339,1,1,""],TestMapStressTest:[339,1,1,""],TestXYZGrid:[339,1,1,""],TestXYZGridTransition:[339,1,1,""]},"evennia.contrib.grid.xyzgrid.tests.Map12aTransition":{symbol:[339,4,1,""],target_map_xyz:[339,4,1,""]},"evennia.contrib.grid.xyzgrid.tests.Map12bTransition":{symbol:[339,4,1,""],target_map_xyz:[339,4,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestBuildExampleGrid":{setUp:[339,3,1,""],tearDown:[339,3,1,""],test_build:[339,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap1":{test_get_shortest_path:[339,3,1,""],test_get_visual_range__nodes__character:[339,4,1,""],test_get_visual_range__nodes__character_0:[339,3,1,""],test_get_visual_range__nodes__character_1:[339,3,1,""],test_get_visual_range__nodes__character_2:[339,3,1,""],test_get_visual_range__nodes__character_3:[339,3,1,""],test_get_visual_range__nodes__character_4:[339,3,1,""],test_get_visual_range__scan:[339,4,1,""],test_get_visual_range__scan_0:[339,3,1,""],test_get_visual_range__scan_1:[339,3,1,""],test_get_visual_range__scan_2:[339,3,1,""],test_get_visual_range__scan_3:[339,3,1,""],test_get_visual_range__scan__character:[339,4,1,""],test_get_visual_range__scan__character_0:[339,3,1,""],test_get_visual_range__scan__character_1:[339,3,1,""],test_get_visual_range__scan__character_2:[339,3,1,""],test_get_visual_range__scan__character_3:[339,3,1,""],test_node_from_coord:[339,3,1,""],test_spawn:[339,3,1,""],test_str_output:[339,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap10":{map_data:[339,4,1,""],map_display:[339,4,1,""],test_paths:[339,4,1,""],test_paths_0:[339,3,1,""],test_paths_1:[339,3,1,""],test_shortest_path:[339,4,1,""],test_shortest_path_0:[339,3,1,""],test_shortest_path_1:[339,3,1,""],test_shortest_path_2:[339,3,1,""],test_shortest_path_3:[339,3,1,""],test_shortest_path_4:[339,3,1,""],test_shortest_path_5:[339,3,1,""],test_shortest_path_6:[339,3,1,""],test_shortest_path_7:[339,3,1,""],test_shortest_path_8:[339,3,1,""],test_shortest_path_9:[339,3,1,""],test_spawn:[339,3,1,""],test_str_output:[339,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap11":{map_data:[339,4,1,""],map_display:[339,4,1,""],test_get_visual_range_with_path:[339,4,1,""],test_get_visual_range_with_path_0:[339,3,1,""],test_get_visual_range_with_path_1:[339,3,1,""],test_paths:[339,4,1,""],test_paths_0:[339,3,1,""],test_paths_1:[339,3,1,""],test_shortest_path:[339,4,1,""],test_shortest_path_0:[339,3,1,""],test_shortest_path_1:[339,3,1,""],test_spawn:[339,3,1,""],test_str_output:[339,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap2":{map_data:[339,4,1,""],map_display:[339,4,1,""],test_extended_path_tracking__horizontal:[339,3,1,""],test_extended_path_tracking__vertical:[339,3,1,""],test_get_visual_range__nodes__character:[339,4,1,""],test_get_visual_range__nodes__character_0:[339,3,1,""],test_get_visual_range__nodes__character_1:[339,3,1,""],test_get_visual_range__nodes__character_2:[339,3,1,""],test_get_visual_range__nodes__character_3:[339,3,1,""],test_get_visual_range__nodes__character_4:[339,3,1,""],test_get_visual_range__nodes__character_5:[339,3,1,""],test_get_visual_range__nodes__character_6:[339,3,1,""],test_get_visual_range__nodes__character_7:[339,3,1,""],test_get_visual_range__nodes__character_8:[339,3,1,""],test_get_visual_range__nodes__character_9:[339,3,1,""],test_get_visual_range__scan__character:[339,4,1,""],test_get_visual_range__scan__character_0:[339,3,1,""],test_get_visual_range__scan__character_1:[339,3,1,""],test_get_visual_range__scan__character_2:[339,3,1,""],test_get_visual_range__scan__character_3:[339,3,1,""],test_node_from_coord:[339,3,1,""],test_shortest_path:[339,4,1,""],test_shortest_path_0:[339,3,1,""],test_shortest_path_1:[339,3,1,""],test_shortest_path_2:[339,3,1,""],test_shortest_path_3:[339,3,1,""],test_shortest_path_4:[339,3,1,""],test_shortest_path_5:[339,3,1,""],test_shortest_path_6:[339,3,1,""],test_spawn:[339,3,1,""],test_str_output:[339,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap3":{map_data:[339,4,1,""],map_display:[339,4,1,""],test_get_visual_range__nodes__character:[339,4,1,""],test_get_visual_range__nodes__character_0:[339,3,1,""],test_get_visual_range__nodes__character_1:[339,3,1,""],test_shortest_path:[339,4,1,""],test_shortest_path_00:[339,3,1,""],test_shortest_path_01:[339,3,1,""],test_shortest_path_02:[339,3,1,""],test_shortest_path_03:[339,3,1,""],test_shortest_path_04:[339,3,1,""],test_shortest_path_05:[339,3,1,""],test_shortest_path_06:[339,3,1,""],test_shortest_path_07:[339,3,1,""],test_shortest_path_08:[339,3,1,""],test_shortest_path_09:[339,3,1,""],test_shortest_path_10:[339,3,1,""],test_spawn:[339,3,1,""],test_str_output:[339,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap4":{map_data:[339,4,1,""],map_display:[339,4,1,""],test_shortest_path:[339,4,1,""],test_shortest_path_0:[339,3,1,""],test_shortest_path_1:[339,3,1,""],test_shortest_path_2:[339,3,1,""],test_shortest_path_3:[339,3,1,""],test_shortest_path_4:[339,3,1,""],test_shortest_path_5:[339,3,1,""],test_spawn:[339,3,1,""],test_str_output:[339,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap5":{map_data:[339,4,1,""],map_display:[339,4,1,""],test_shortest_path:[339,4,1,""],test_shortest_path_0:[339,3,1,""],test_shortest_path_1:[339,3,1,""],test_shortest_path_2:[339,3,1,""],test_shortest_path_3:[339,3,1,""],test_spawn:[339,3,1,""],test_str_output:[339,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap6":{map_data:[339,4,1,""],map_display:[339,4,1,""],test_shortest_path:[339,4,1,""],test_shortest_path_0:[339,3,1,""],test_shortest_path_1:[339,3,1,""],test_shortest_path_2:[339,3,1,""],test_shortest_path_3:[339,3,1,""],test_shortest_path_4:[339,3,1,""],test_shortest_path_5:[339,3,1,""],test_shortest_path_6:[339,3,1,""],test_shortest_path_7:[339,3,1,""],test_spawn:[339,3,1,""],test_str_output:[339,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap7":{map_data:[339,4,1,""],map_display:[339,4,1,""],test_shortest_path:[339,4,1,""],test_shortest_path_0:[339,3,1,""],test_shortest_path_1:[339,3,1,""],test_shortest_path_2:[339,3,1,""],test_shortest_path_3:[339,3,1,""],test_spawn:[339,3,1,""],test_str_output:[339,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap8":{map_data:[339,4,1,""],map_display:[339,4,1,""],test_get_visual_range__nodes__character:[339,4,1,""],test_get_visual_range__nodes__character_0:[339,3,1,""],test_get_visual_range_with_path:[339,4,1,""],test_get_visual_range_with_path_0:[339,3,1,""],test_get_visual_range_with_path_1:[339,3,1,""],test_get_visual_range_with_path_2:[339,3,1,""],test_get_visual_range_with_path_3:[339,3,1,""],test_get_visual_range_with_path_4:[339,3,1,""],test_shortest_path:[339,4,1,""],test_shortest_path_0:[339,3,1,""],test_shortest_path_1:[339,3,1,""],test_shortest_path_2:[339,3,1,""],test_shortest_path_3:[339,3,1,""],test_shortest_path_4:[339,3,1,""],test_shortest_path_5:[339,3,1,""],test_shortest_path_6:[339,3,1,""],test_spawn:[339,3,1,""],test_str_output:[339,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap9":{map_data:[339,4,1,""],map_display:[339,4,1,""],test_shortest_path:[339,4,1,""],test_shortest_path_0:[339,3,1,""],test_shortest_path_1:[339,3,1,""],test_shortest_path_2:[339,3,1,""],test_shortest_path_3:[339,3,1,""],test_spawn:[339,3,1,""],test_str_output:[339,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMapStressTest":{test_grid_creation:[339,4,1,""],test_grid_creation_0:[339,3,1,""],test_grid_creation_1:[339,3,1,""],test_grid_pathfind:[339,4,1,""],test_grid_pathfind_0:[339,3,1,""],test_grid_pathfind_1:[339,3,1,""],test_grid_visibility:[339,4,1,""],test_grid_visibility_0:[339,3,1,""],test_grid_visibility_1:[339,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestXYZGrid":{setUp:[339,3,1,""],tearDown:[339,3,1,""],test_spawn:[339,3,1,""],test_str_output:[339,3,1,""],zcoord:[339,4,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestXYZGridTransition":{setUp:[339,3,1,""],tearDown:[339,3,1,""],test_shortest_path:[339,4,1,""],test_shortest_path_0:[339,3,1,""],test_shortest_path_1:[339,3,1,""],test_spawn:[339,3,1,""]},"evennia.contrib.grid.xyzgrid.utils":{MapError:[340,2,1,""],MapParserError:[340,2,1,""],MapTransition:[340,2,1,""]},"evennia.contrib.grid.xyzgrid.utils.MapError":{__init__:[340,3,1,""]},"evennia.contrib.grid.xyzgrid.xymap":{XYMap:[341,1,1,""]},"evennia.contrib.grid.xyzgrid.xymap.XYMap":{__init__:[341,3,1,""],calculate_path_matrix:[341,3,1,""],empty_symbol:[341,4,1,""],get_components_with_symbol:[341,3,1,""],get_node_from_coord:[341,3,1,""],get_shortest_path:[341,3,1,""],get_visual_range:[341,3,1,""],legend_key_exceptions:[341,4,1,""],log:[341,3,1,""],mapcorner_symbol:[341,4,1,""],max_pathfinding_length:[341,4,1,""],parse:[341,3,1,""],reload:[341,3,1,""],spawn_links:[341,3,1,""],spawn_nodes:[341,3,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend":{BasicMapNode:[342,1,1,""],BlockedMapLink:[342,1,1,""],CrossMapLink:[342,1,1,""],DownMapLink:[342,1,1,""],EWMapLink:[342,1,1,""],EWOneWayMapLink:[342,1,1,""],InterruptMapLink:[342,1,1,""],InterruptMapNode:[342,1,1,""],InvisibleSmartMapLink:[342,1,1,""],MapLink:[342,1,1,""],MapNode:[342,1,1,""],MapTransitionNode:[342,1,1,""],NESWMapLink:[342,1,1,""],NSMapLink:[342,1,1,""],NSOneWayMapLink:[342,1,1,""],PlusMapLink:[342,1,1,""],RouterMapLink:[342,1,1,""],SENWMapLink:[342,1,1,""],SNOneWayMapLink:[342,1,1,""],SmartMapLink:[342,1,1,""],SmartRerouterMapLink:[342,1,1,""],SmartTeleporterMapLink:[342,1,1,""],TeleporterMapLink:[342,1,1,""],TransitionMapNode:[342,1,1,""],UpMapLink:[342,1,1,""],WEOneWayMapLink:[342,1,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.BasicMapNode":{prototype:[342,4,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.BlockedMapLink":{prototype:[342,4,1,""],symbol:[342,4,1,""],weights:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.CrossMapLink":{directions:[342,4,1,""],prototype:[342,4,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.DownMapLink":{direction_aliases:[342,4,1,""],prototype:[342,4,1,""],spawn_aliases:[342,4,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.EWMapLink":{directions:[342,4,1,""],prototype:[342,4,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.EWOneWayMapLink":{directions:[342,4,1,""],prototype:[342,4,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.InterruptMapLink":{interrupt_path:[342,4,1,""],prototype:[342,4,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.InterruptMapNode":{display_symbol:[342,4,1,""],interrupt_path:[342,4,1,""],prototype:[342,4,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.InvisibleSmartMapLink":{direction_aliases:[342,4,1,""],display_symbol_aliases:[342,4,1,""],get_display_symbol:[342,3,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.MapLink":{__init__:[342,3,1,""],at_empty_target:[342,3,1,""],average_long_link_weights:[342,4,1,""],default_weight:[342,4,1,""],direction_aliases:[342,4,1,""],directions:[342,4,1,""],display_symbol:[342,4,1,""],generate_prototype_key:[342,3,1,""],get_direction:[342,3,1,""],get_display_symbol:[342,3,1,""],get_linked_neighbors:[342,3,1,""],get_weight:[342,3,1,""],interrupt_path:[342,4,1,""],multilink:[342,4,1,""],prototype:[342,4,1,""],spawn_aliases:[342,4,1,""],symbol:[342,4,1,""],traverse:[342,3,1,""],weights:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.MapNode":{__init__:[342,3,1,""],build_links:[342,3,1,""],direction_spawn_defaults:[342,4,1,""],display_symbol:[342,4,1,""],generate_prototype_key:[342,3,1,""],get_display_symbol:[342,3,1,""],get_exit_spawn_name:[342,3,1,""],get_spawn_xyz:[342,3,1,""],interrupt_path:[342,4,1,""],linkweights:[342,3,1,""],log:[342,3,1,""],multilink:[342,4,1,""],node_index:[342,4,1,""],prototype:[342,4,1,""],spawn:[342,3,1,""],spawn_links:[342,3,1,""],symbol:[342,4,1,""],unspawn:[342,3,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.MapTransitionNode":{display_symbol:[342,4,1,""],prototype:[342,4,1,""],symbol:[342,4,1,""],target_map_xyz:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.NESWMapLink":{directions:[342,4,1,""],prototype:[342,4,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.NSMapLink":{directions:[342,4,1,""],display_symbol:[342,4,1,""],prototype:[342,4,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.NSOneWayMapLink":{directions:[342,4,1,""],prototype:[342,4,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.PlusMapLink":{directions:[342,4,1,""],prototype:[342,4,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.RouterMapLink":{symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.SENWMapLink":{directions:[342,4,1,""],prototype:[342,4,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.SNOneWayMapLink":{directions:[342,4,1,""],prototype:[342,4,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.SmartMapLink":{get_direction:[342,3,1,""],multilink:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.SmartRerouterMapLink":{get_direction:[342,3,1,""],multilink:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.SmartTeleporterMapLink":{__init__:[342,3,1,""],at_empty_target:[342,3,1,""],direction_name:[342,4,1,""],display_symbol:[342,4,1,""],get_direction:[342,3,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.TeleporterMapLink":{symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.TransitionMapNode":{build_links:[342,3,1,""],display_symbol:[342,4,1,""],get_spawn_xyz:[342,3,1,""],symbol:[342,4,1,""],taget_map_xyz:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.UpMapLink":{direction_aliases:[342,4,1,""],prototype:[342,4,1,""],spawn_aliases:[342,4,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.WEOneWayMapLink":{directions:[342,4,1,""],prototype:[342,4,1,""],symbol:[342,4,1,""]},"evennia.contrib.grid.xyzgrid.xyzgrid":{XYZGrid:[343,1,1,""],get_xyzgrid:[343,5,1,""]},"evennia.contrib.grid.xyzgrid.xyzgrid.XYZGrid":{"delete":[343,3,1,""],DoesNotExist:[343,2,1,""],MultipleObjectsReturned:[343,2,1,""],add_maps:[343,3,1,""],all_maps:[343,3,1,""],at_script_creation:[343,3,1,""],get_exit:[343,3,1,""],get_map:[343,3,1,""],get_room:[343,3,1,""],grid:[343,3,1,""],log:[343,3,1,""],maps_from_module:[343,3,1,""],path:[343,4,1,""],reload:[343,3,1,""],remove_map:[343,3,1,""],spawn:[343,3,1,""],typename:[343,4,1,""]},"evennia.contrib.grid.xyzgrid.xyzroom":{XYZExit:[344,1,1,""],XYZExitManager:[344,1,1,""],XYZManager:[344,1,1,""],XYZRoom:[344,1,1,""]},"evennia.contrib.grid.xyzgrid.xyzroom.XYZExit":{DoesNotExist:[344,2,1,""],MultipleObjectsReturned:[344,2,1,""],create:[344,3,1,""],objects:[344,4,1,""],path:[344,4,1,""],typename:[344,4,1,""],xyz:[344,3,1,""],xyz_destination:[344,3,1,""],xyzgrid:[344,3,1,""]},"evennia.contrib.grid.xyzgrid.xyzroom.XYZExitManager":{filter_xyz_exit:[344,3,1,""],get_xyz_exit:[344,3,1,""]},"evennia.contrib.grid.xyzgrid.xyzroom.XYZManager":{filter_xyz:[344,3,1,""],get_xyz:[344,3,1,""]},"evennia.contrib.grid.xyzgrid.xyzroom.XYZRoom":{DoesNotExist:[344,2,1,""],MultipleObjectsReturned:[344,2,1,""],create:[344,3,1,""],get_display_name:[344,3,1,""],map_align:[344,4,1,""],map_character_symbol:[344,4,1,""],map_display:[344,4,1,""],map_fill_all:[344,4,1,""],map_mode:[344,4,1,""],map_separator_char:[344,4,1,""],map_target_path_style:[344,4,1,""],map_visual_range:[344,4,1,""],objects:[344,4,1,""],path:[344,4,1,""],return_appearance:[344,3,1,""],typename:[344,4,1,""],xymap:[344,3,1,""],xyz:[344,3,1,""],xyzgrid:[344,3,1,""]},"evennia.contrib.rpg":{dice:[346,0,0,"-"],health_bar:[349,0,0,"-"],rpsystem:[352,0,0,"-"],traits:[356,0,0,"-"]},"evennia.contrib.rpg.dice":{dice:[347,0,0,"-"],tests:[348,0,0,"-"]},"evennia.contrib.rpg.dice.dice":{CmdDice:[347,1,1,""],DiceCmdSet:[347,1,1,""],roll:[347,5,1,""],roll_dice:[347,5,1,""]},"evennia.contrib.rpg.dice.dice.CmdDice":{aliases:[347,4,1,""],func:[347,3,1,""],help_category:[347,4,1,""],key:[347,4,1,""],lock_storage:[347,4,1,""],locks:[347,4,1,""],search_index_entry:[347,4,1,""]},"evennia.contrib.rpg.dice.dice.DiceCmdSet":{at_cmdset_creation:[347,3,1,""],path:[347,4,1,""]},"evennia.contrib.rpg.dice.tests":{TestDice:[348,1,1,""]},"evennia.contrib.rpg.dice.tests.TestDice":{test_cmddice:[348,3,1,""],test_roll_dice:[348,3,1,""]},"evennia.contrib.rpg.health_bar":{health_bar:[350,0,0,"-"],tests:[351,0,0,"-"]},"evennia.contrib.rpg.health_bar.health_bar":{display_meter:[350,5,1,""]},"evennia.contrib.rpg.health_bar.tests":{TestHealthBar:[351,1,1,""]},"evennia.contrib.rpg.health_bar.tests.TestHealthBar":{test_healthbar:[351,3,1,""]},"evennia.contrib.rpg.rpsystem":{rplanguage:[353,0,0,"-"],rpsystem:[354,0,0,"-"],tests:[355,0,0,"-"]},"evennia.contrib.rpg.rpsystem.rplanguage":{LanguageError:[353,2,1,""],LanguageExistsError:[353,2,1,""],LanguageHandler:[353,1,1,""],add_language:[353,5,1,""],available_languages:[353,5,1,""],obfuscate_language:[353,5,1,""],obfuscate_whisper:[353,5,1,""]},"evennia.contrib.rpg.rpsystem.rplanguage.LanguageHandler":{DoesNotExist:[353,2,1,""],MultipleObjectsReturned:[353,2,1,""],add:[353,3,1,""],at_script_creation:[353,3,1,""],path:[353,4,1,""],translate:[353,3,1,""],typename:[353,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem":{CmdEmote:[354,1,1,""],CmdMask:[354,1,1,""],CmdPose:[354,1,1,""],CmdRecog:[354,1,1,""],CmdSay:[354,1,1,""],CmdSdesc:[354,1,1,""],ContribRPCharacter:[354,1,1,""],ContribRPObject:[354,1,1,""],ContribRPRoom:[354,1,1,""],EmoteError:[354,2,1,""],LanguageError:[354,2,1,""],RPCommand:[354,1,1,""],RPSystemCmdSet:[354,1,1,""],RecogError:[354,2,1,""],RecogHandler:[354,1,1,""],SdescError:[354,2,1,""],SdescHandler:[354,1,1,""],parse_language:[354,5,1,""],parse_sdescs_and_recogs:[354,5,1,""],send_emote:[354,5,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.CmdEmote":{aliases:[354,4,1,""],arg_regex:[354,4,1,""],func:[354,3,1,""],help_category:[354,4,1,""],key:[354,4,1,""],lock_storage:[354,4,1,""],locks:[354,4,1,""],search_index_entry:[354,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.CmdMask":{aliases:[354,4,1,""],func:[354,3,1,""],help_category:[354,4,1,""],key:[354,4,1,""],lock_storage:[354,4,1,""],search_index_entry:[354,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.CmdPose":{aliases:[354,4,1,""],func:[354,3,1,""],help_category:[354,4,1,""],key:[354,4,1,""],lock_storage:[354,4,1,""],parse:[354,3,1,""],search_index_entry:[354,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.CmdRecog":{aliases:[354,4,1,""],func:[354,3,1,""],help_category:[354,4,1,""],key:[354,4,1,""],lock_storage:[354,4,1,""],parse:[354,3,1,""],search_index_entry:[354,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.CmdSay":{aliases:[354,4,1,""],arg_regex:[354,4,1,""],func:[354,3,1,""],help_category:[354,4,1,""],key:[354,4,1,""],lock_storage:[354,4,1,""],locks:[354,4,1,""],search_index_entry:[354,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.CmdSdesc":{aliases:[354,4,1,""],func:[354,3,1,""],help_category:[354,4,1,""],key:[354,4,1,""],lock_storage:[354,4,1,""],locks:[354,4,1,""],search_index_entry:[354,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.ContribRPCharacter":{DoesNotExist:[354,2,1,""],MultipleObjectsReturned:[354,2,1,""],at_object_creation:[354,3,1,""],at_pre_say:[354,3,1,""],get_display_name:[354,3,1,""],get_sdesc:[354,3,1,""],path:[354,4,1,""],process_language:[354,3,1,""],process_recog:[354,3,1,""],process_sdesc:[354,3,1,""],recog:[354,4,1,""],typename:[354,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.ContribRPObject":{DoesNotExist:[354,2,1,""],MultipleObjectsReturned:[354,2,1,""],at_object_creation:[354,3,1,""],get_display_name:[354,3,1,""],get_posed_sdesc:[354,3,1,""],path:[354,4,1,""],return_appearance:[354,3,1,""],sdesc:[354,4,1,""],search:[354,3,1,""],typename:[354,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.ContribRPRoom":{DoesNotExist:[354,2,1,""],MultipleObjectsReturned:[354,2,1,""],path:[354,4,1,""],typename:[354,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.RPCommand":{aliases:[354,4,1,""],help_category:[354,4,1,""],key:[354,4,1,""],lock_storage:[354,4,1,""],parse:[354,3,1,""],search_index_entry:[354,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.RPSystemCmdSet":{at_cmdset_creation:[354,3,1,""],path:[354,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.RecogHandler":{__init__:[354,3,1,""],add:[354,3,1,""],all:[354,3,1,""],get:[354,3,1,""],remove:[354,3,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.SdescHandler":{__init__:[354,3,1,""],add:[354,3,1,""],get:[354,3,1,""]},"evennia.contrib.rpg.rpsystem.tests":{TestLanguage:[355,1,1,""],TestRPSystem:[355,1,1,""],TestRPSystemCommands:[355,1,1,""]},"evennia.contrib.rpg.rpsystem.tests.TestLanguage":{setUp:[355,3,1,""],tearDown:[355,3,1,""],test_available_languages:[355,3,1,""],test_faulty_language:[355,3,1,""],test_obfuscate_language:[355,3,1,""],test_obfuscate_whisper:[355,3,1,""]},"evennia.contrib.rpg.rpsystem.tests.TestRPSystem":{maxDiff:[355,4,1,""],parse_sdescs_and_recogs:[355,3,1,""],setUp:[355,3,1,""],test_get_sdesc:[355,3,1,""],test_parse_language:[355,3,1,""],test_recog_handler:[355,3,1,""],test_rpsearch:[355,3,1,""],test_sdesc_handler:[355,3,1,""],test_send_case_sensitive_emote:[355,3,1,""],test_send_emote:[355,3,1,""]},"evennia.contrib.rpg.rpsystem.tests.TestRPSystemCommands":{setUp:[355,3,1,""],test_commands:[355,3,1,""]},"evennia.contrib.rpg.traits":{tests:[357,0,0,"-"],traits:[358,0,0,"-"]},"evennia.contrib.rpg.traits.tests":{DummyCharacter:[357,1,1,""],TestNumericTraitOperators:[357,1,1,""],TestTrait:[357,1,1,""],TestTraitCounter:[357,1,1,""],TestTraitCounterTimed:[357,1,1,""],TestTraitFields:[357,1,1,""],TestTraitGauge:[357,1,1,""],TestTraitGaugeTimed:[357,1,1,""],TestTraitStatic:[357,1,1,""],TraitHandlerTest:[357,1,1,""]},"evennia.contrib.rpg.traits.tests.DummyCharacter":{health:[357,4,1,""],hunting:[357,4,1,""],strength:[357,4,1,""]},"evennia.contrib.rpg.traits.tests.TestNumericTraitOperators":{setUp:[357,3,1,""],tearDown:[357,3,1,""],test_add_traits:[357,3,1,""],test_comparisons_numeric:[357,3,1,""],test_comparisons_traits:[357,3,1,""],test_floordiv:[357,3,1,""],test_mul_traits:[357,3,1,""],test_pos_shortcut:[357,3,1,""],test_sub_traits:[357,3,1,""]},"evennia.contrib.rpg.traits.tests.TestTrait":{setUp:[357,3,1,""],test_init:[357,3,1,""],test_repr:[357,3,1,""],test_trait_getset:[357,3,1,""],test_validate_input__fail:[357,3,1,""],test_validate_input__valid:[357,3,1,""]},"evennia.contrib.rpg.traits.tests.TestTraitCounter":{setUp:[357,3,1,""],test_boundaries__bigmod:[357,3,1,""],test_boundaries__change_boundaries:[357,3,1,""],test_boundaries__disable:[357,3,1,""],test_boundaries__inverse:[357,3,1,""],test_boundaries__minmax:[357,3,1,""],test_current:[357,3,1,""],test_delete:[357,3,1,""],test_descs:[357,3,1,""],test_init:[357,3,1,""],test_percentage:[357,3,1,""],test_value:[357,3,1,""]},"evennia.contrib.rpg.traits.tests.TestTraitCounterTimed":{setUp:[357,3,1,""],test_timer_rate:[357,3,1,""],test_timer_ratetarget:[357,3,1,""]},"evennia.contrib.rpg.traits.tests.TestTraitFields":{test_traitfields:[357,3,1,""]},"evennia.contrib.rpg.traits.tests.TestTraitGauge":{setUp:[357,3,1,""],test_boundaries__bigmod:[357,3,1,""],test_boundaries__change_boundaries:[357,3,1,""],test_boundaries__disable:[357,3,1,""],test_boundaries__inverse:[357,3,1,""],test_boundaries__minmax:[357,3,1,""],test_current:[357,3,1,""],test_delete:[357,3,1,""],test_descs:[357,3,1,""],test_init:[357,3,1,""],test_percentage:[357,3,1,""],test_value:[357,3,1,""]},"evennia.contrib.rpg.traits.tests.TestTraitGaugeTimed":{setUp:[357,3,1,""],test_timer_rate:[357,3,1,""],test_timer_ratetarget:[357,3,1,""]},"evennia.contrib.rpg.traits.tests.TestTraitStatic":{setUp:[357,3,1,""],test_delete:[357,3,1,""],test_init:[357,3,1,""],test_value:[357,3,1,""]},"evennia.contrib.rpg.traits.tests.TraitHandlerTest":{setUp:[357,3,1,""],test_add_trait:[357,3,1,""],test_all:[357,3,1,""],test_cache:[357,3,1,""],test_clear:[357,3,1,""],test_getting:[357,3,1,""],test_remove:[357,3,1,""],test_setting:[357,3,1,""],test_trait_db_connection:[357,3,1,""]},"evennia.contrib.rpg.traits.traits":{CounterTrait:[358,1,1,""],GaugeTrait:[358,1,1,""],MandatoryTraitKey:[358,1,1,""],StaticTrait:[358,1,1,""],Trait:[358,1,1,""],TraitException:[358,2,1,""],TraitHandler:[358,1,1,""],TraitProperty:[358,1,1,""]},"evennia.contrib.rpg.traits.traits.CounterTrait":{base:[358,3,1,""],current:[358,3,1,""],default_keys:[358,4,1,""],desc:[358,3,1,""],max:[358,3,1,""],min:[358,3,1,""],mod:[358,3,1,""],mult:[358,3,1,""],percent:[358,3,1,""],ratetarget:[358,3,1,""],reset:[358,3,1,""],trait_type:[358,4,1,""],validate_input:[358,3,1,""],value:[358,3,1,""]},"evennia.contrib.rpg.traits.traits.GaugeTrait":{base:[358,3,1,""],current:[358,3,1,""],default_keys:[358,4,1,""],max:[358,3,1,""],min:[358,3,1,""],mod:[358,3,1,""],mult:[358,3,1,""],percent:[358,3,1,""],reset:[358,3,1,""],trait_type:[358,4,1,""],value:[358,3,1,""]},"evennia.contrib.rpg.traits.traits.StaticTrait":{base:[358,3,1,""],default_keys:[358,4,1,""],mod:[358,3,1,""],mult:[358,3,1,""],trait_type:[358,4,1,""],value:[358,3,1,""]},"evennia.contrib.rpg.traits.traits.Trait":{__init__:[358,3,1,""],allow_extra_properties:[358,4,1,""],default_keys:[358,4,1,""],key:[358,3,1,""],name:[358,3,1,""],trait_type:[358,4,1,""],validate_input:[358,3,1,""],value:[358,3,1,""]},"evennia.contrib.rpg.traits.traits.TraitException":{__init__:[358,3,1,""]},"evennia.contrib.rpg.traits.traits.TraitHandler":{__init__:[358,3,1,""],add:[358,3,1,""],all:[358,3,1,""],clear:[358,3,1,""],get:[358,3,1,""],remove:[358,3,1,""]},"evennia.contrib.rpg.traits.traits.TraitProperty":{__init__:[358,3,1,""]},"evennia.contrib.tutorials":{batchprocessor:[360,0,0,"-"],bodyfunctions:[362,0,0,"-"],mirror:[365,0,0,"-"],red_button:[367,0,0,"-"],talking_npc:[369,0,0,"-"],tutorial_world:[372,0,0,"-"]},"evennia.contrib.tutorials.bodyfunctions":{bodyfunctions:[363,0,0,"-"],tests:[364,0,0,"-"]},"evennia.contrib.tutorials.bodyfunctions.bodyfunctions":{BodyFunctions:[363,1,1,""]},"evennia.contrib.tutorials.bodyfunctions.bodyfunctions.BodyFunctions":{DoesNotExist:[363,2,1,""],MultipleObjectsReturned:[363,2,1,""],at_repeat:[363,3,1,""],at_script_creation:[363,3,1,""],path:[363,4,1,""],send_random_message:[363,3,1,""],typename:[363,4,1,""]},"evennia.contrib.tutorials.bodyfunctions.tests":{TestBodyFunctions:[364,1,1,""]},"evennia.contrib.tutorials.bodyfunctions.tests.TestBodyFunctions":{script_typeclass:[364,4,1,""],setUp:[364,3,1,""],tearDown:[364,3,1,""],test_at_repeat:[364,3,1,""],test_send_random_message:[364,3,1,""]},"evennia.contrib.tutorials.mirror":{mirror:[366,0,0,"-"]},"evennia.contrib.tutorials.mirror.mirror":{TutorialMirror:[366,1,1,""]},"evennia.contrib.tutorials.mirror.mirror.TutorialMirror":{DoesNotExist:[366,2,1,""],MultipleObjectsReturned:[366,2,1,""],msg:[366,3,1,""],path:[366,4,1,""],return_appearance:[366,3,1,""],typename:[366,4,1,""]},"evennia.contrib.tutorials.red_button":{red_button:[368,0,0,"-"]},"evennia.contrib.tutorials.red_button.red_button":{BlindCmdSet:[368,1,1,""],CmdBlindHelp:[368,1,1,""],CmdBlindLook:[368,1,1,""],CmdCloseLid:[368,1,1,""],CmdNudge:[368,1,1,""],CmdOpenLid:[368,1,1,""],CmdPushLidClosed:[368,1,1,""],CmdPushLidOpen:[368,1,1,""],CmdSmashGlass:[368,1,1,""],LidClosedCmdSet:[368,1,1,""],LidOpenCmdSet:[368,1,1,""],RedButton:[368,1,1,""]},"evennia.contrib.tutorials.red_button.red_button.BlindCmdSet":{at_cmdset_creation:[368,3,1,""],key:[368,4,1,""],mergetype:[368,4,1,""],no_exits:[368,4,1,""],no_objs:[368,4,1,""],path:[368,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdBlindHelp":{aliases:[368,4,1,""],func:[368,3,1,""],help_category:[368,4,1,""],key:[368,4,1,""],lock_storage:[368,4,1,""],locks:[368,4,1,""],search_index_entry:[368,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdBlindLook":{aliases:[368,4,1,""],func:[368,3,1,""],help_category:[368,4,1,""],key:[368,4,1,""],lock_storage:[368,4,1,""],locks:[368,4,1,""],search_index_entry:[368,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdCloseLid":{aliases:[368,4,1,""],func:[368,3,1,""],help_category:[368,4,1,""],key:[368,4,1,""],lock_storage:[368,4,1,""],locks:[368,4,1,""],search_index_entry:[368,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdNudge":{aliases:[368,4,1,""],func:[368,3,1,""],help_category:[368,4,1,""],key:[368,4,1,""],lock_storage:[368,4,1,""],locks:[368,4,1,""],search_index_entry:[368,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdOpenLid":{aliases:[368,4,1,""],func:[368,3,1,""],help_category:[368,4,1,""],key:[368,4,1,""],lock_storage:[368,4,1,""],locks:[368,4,1,""],search_index_entry:[368,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdPushLidClosed":{aliases:[368,4,1,""],func:[368,3,1,""],help_category:[368,4,1,""],key:[368,4,1,""],lock_storage:[368,4,1,""],locks:[368,4,1,""],search_index_entry:[368,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdPushLidOpen":{aliases:[368,4,1,""],func:[368,3,1,""],help_category:[368,4,1,""],key:[368,4,1,""],lock_storage:[368,4,1,""],locks:[368,4,1,""],search_index_entry:[368,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdSmashGlass":{aliases:[368,4,1,""],func:[368,3,1,""],help_category:[368,4,1,""],key:[368,4,1,""],lock_storage:[368,4,1,""],locks:[368,4,1,""],search_index_entry:[368,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.LidClosedCmdSet":{at_cmdset_creation:[368,3,1,""],key:[368,4,1,""],path:[368,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.LidOpenCmdSet":{at_cmdset_creation:[368,3,1,""],key:[368,4,1,""],path:[368,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.RedButton":{DoesNotExist:[368,2,1,""],MultipleObjectsReturned:[368,2,1,""],at_object_creation:[368,3,1,""],auto_close_msg:[368,4,1,""],blind_target:[368,3,1,""],blink_msgs:[368,4,1,""],break_lamp:[368,3,1,""],desc_add_lamp_broken:[368,4,1,""],desc_closed_lid:[368,4,1,""],desc_open_lid:[368,4,1,""],lamp_breaks_msg:[368,4,1,""],path:[368,4,1,""],to_closed_state:[368,3,1,""],to_open_state:[368,3,1,""],typename:[368,4,1,""]},"evennia.contrib.tutorials.talking_npc":{talking_npc:[370,0,0,"-"],tests:[371,0,0,"-"]},"evennia.contrib.tutorials.talking_npc.talking_npc":{CmdTalk:[370,1,1,""],END:[370,5,1,""],TalkingCmdSet:[370,1,1,""],TalkingNPC:[370,1,1,""],info1:[370,5,1,""],info2:[370,5,1,""],info3:[370,5,1,""],menu_start_node:[370,5,1,""]},"evennia.contrib.tutorials.talking_npc.talking_npc.CmdTalk":{aliases:[370,4,1,""],func:[370,3,1,""],help_category:[370,4,1,""],key:[370,4,1,""],lock_storage:[370,4,1,""],locks:[370,4,1,""],search_index_entry:[370,4,1,""]},"evennia.contrib.tutorials.talking_npc.talking_npc.TalkingCmdSet":{at_cmdset_creation:[370,3,1,""],key:[370,4,1,""],path:[370,4,1,""]},"evennia.contrib.tutorials.talking_npc.talking_npc.TalkingNPC":{DoesNotExist:[370,2,1,""],MultipleObjectsReturned:[370,2,1,""],at_object_creation:[370,3,1,""],path:[370,4,1,""],typename:[370,4,1,""]},"evennia.contrib.tutorials.talking_npc.tests":{TestTalkingNPC:[371,1,1,""]},"evennia.contrib.tutorials.talking_npc.tests.TestTalkingNPC":{test_talkingnpc:[371,3,1,""]},"evennia.contrib.tutorials.tutorial_world":{intro_menu:[373,0,0,"-"],mob:[374,0,0,"-"],objects:[375,0,0,"-"],rooms:[376,0,0,"-"],tests:[377,0,0,"-"]},"evennia.contrib.tutorials.tutorial_world.intro_menu":{DemoCommandSetComms:[373,1,1,""],DemoCommandSetHelp:[373,1,1,""],DemoCommandSetRoom:[373,1,1,""],TutorialEvMenu:[373,1,1,""],do_nothing:[373,5,1,""],goto_cleanup_cmdsets:[373,5,1,""],goto_command_demo_comms:[373,5,1,""],goto_command_demo_help:[373,5,1,""],goto_command_demo_room:[373,5,1,""],init_menu:[373,5,1,""],send_testing_tagged:[373,5,1,""]},"evennia.contrib.tutorials.tutorial_world.intro_menu.DemoCommandSetComms":{at_cmdset_creation:[373,3,1,""],key:[373,4,1,""],no_exits:[373,4,1,""],no_objs:[373,4,1,""],path:[373,4,1,""],priority:[373,4,1,""]},"evennia.contrib.tutorials.tutorial_world.intro_menu.DemoCommandSetHelp":{at_cmdset_creation:[373,3,1,""],key:[373,4,1,""],path:[373,4,1,""],priority:[373,4,1,""]},"evennia.contrib.tutorials.tutorial_world.intro_menu.DemoCommandSetRoom":{at_cmdset_creation:[373,3,1,""],key:[373,4,1,""],no_exits:[373,4,1,""],no_objs:[373,4,1,""],path:[373,4,1,""],priority:[373,4,1,""]},"evennia.contrib.tutorials.tutorial_world.intro_menu.TutorialEvMenu":{close_menu:[373,3,1,""],options_formatter:[373,3,1,""]},"evennia.contrib.tutorials.tutorial_world.mob":{CmdMobOnOff:[374,1,1,""],Mob:[374,1,1,""],MobCmdSet:[374,1,1,""]},"evennia.contrib.tutorials.tutorial_world.mob.CmdMobOnOff":{aliases:[374,4,1,""],func:[374,3,1,""],help_category:[374,4,1,""],key:[374,4,1,""],lock_storage:[374,4,1,""],locks:[374,4,1,""],search_index_entry:[374,4,1,""]},"evennia.contrib.tutorials.tutorial_world.mob.Mob":{DoesNotExist:[374,2,1,""],MultipleObjectsReturned:[374,2,1,""],at_hit:[374,3,1,""],at_init:[374,3,1,""],at_new_arrival:[374,3,1,""],at_object_creation:[374,3,1,""],do_attack:[374,3,1,""],do_hunting:[374,3,1,""],do_patrol:[374,3,1,""],path:[374,4,1,""],set_alive:[374,3,1,""],set_dead:[374,3,1,""],start_attacking:[374,3,1,""],start_hunting:[374,3,1,""],start_idle:[374,3,1,""],start_patrolling:[374,3,1,""],typename:[374,4,1,""]},"evennia.contrib.tutorials.tutorial_world.mob.MobCmdSet":{at_cmdset_creation:[374,3,1,""],path:[374,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects":{CmdAttack:[375,1,1,""],CmdClimb:[375,1,1,""],CmdGetWeapon:[375,1,1,""],CmdLight:[375,1,1,""],CmdPressButton:[375,1,1,""],CmdRead:[375,1,1,""],CmdSetClimbable:[375,1,1,""],CmdSetCrumblingWall:[375,1,1,""],CmdSetLight:[375,1,1,""],CmdSetReadable:[375,1,1,""],CmdSetWeapon:[375,1,1,""],CmdSetWeaponRack:[375,1,1,""],CmdShiftRoot:[375,1,1,""],CrumblingWall:[375,1,1,""],LightSource:[375,1,1,""],Obelisk:[375,1,1,""],TutorialClimbable:[375,1,1,""],TutorialObject:[375,1,1,""],TutorialReadable:[375,1,1,""],TutorialWeapon:[375,1,1,""],TutorialWeaponRack:[375,1,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdAttack":{aliases:[375,4,1,""],func:[375,3,1,""],help_category:[375,4,1,""],key:[375,4,1,""],lock_storage:[375,4,1,""],locks:[375,4,1,""],search_index_entry:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdClimb":{aliases:[375,4,1,""],func:[375,3,1,""],help_category:[375,4,1,""],key:[375,4,1,""],lock_storage:[375,4,1,""],locks:[375,4,1,""],search_index_entry:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdGetWeapon":{aliases:[375,4,1,""],func:[375,3,1,""],help_category:[375,4,1,""],key:[375,4,1,""],lock_storage:[375,4,1,""],locks:[375,4,1,""],search_index_entry:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdLight":{aliases:[375,4,1,""],func:[375,3,1,""],help_category:[375,4,1,""],key:[375,4,1,""],lock_storage:[375,4,1,""],locks:[375,4,1,""],search_index_entry:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdPressButton":{aliases:[375,4,1,""],func:[375,3,1,""],help_category:[375,4,1,""],key:[375,4,1,""],lock_storage:[375,4,1,""],locks:[375,4,1,""],search_index_entry:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdRead":{aliases:[375,4,1,""],func:[375,3,1,""],help_category:[375,4,1,""],key:[375,4,1,""],lock_storage:[375,4,1,""],locks:[375,4,1,""],search_index_entry:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdSetClimbable":{at_cmdset_creation:[375,3,1,""],path:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdSetCrumblingWall":{at_cmdset_creation:[375,3,1,""],key:[375,4,1,""],path:[375,4,1,""],priority:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdSetLight":{at_cmdset_creation:[375,3,1,""],key:[375,4,1,""],path:[375,4,1,""],priority:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdSetReadable":{at_cmdset_creation:[375,3,1,""],path:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdSetWeapon":{at_cmdset_creation:[375,3,1,""],path:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdSetWeaponRack":{at_cmdset_creation:[375,3,1,""],key:[375,4,1,""],path:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdShiftRoot":{aliases:[375,4,1,""],func:[375,3,1,""],help_category:[375,4,1,""],key:[375,4,1,""],lock_storage:[375,4,1,""],locks:[375,4,1,""],parse:[375,3,1,""],search_index_entry:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CrumblingWall":{DoesNotExist:[375,2,1,""],MultipleObjectsReturned:[375,2,1,""],at_failed_traverse:[375,3,1,""],at_init:[375,3,1,""],at_object_creation:[375,3,1,""],at_post_traverse:[375,3,1,""],open_wall:[375,3,1,""],path:[375,4,1,""],reset:[375,3,1,""],return_appearance:[375,3,1,""],typename:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.LightSource":{DoesNotExist:[375,2,1,""],MultipleObjectsReturned:[375,2,1,""],at_init:[375,3,1,""],at_object_creation:[375,3,1,""],light:[375,3,1,""],path:[375,4,1,""],typename:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.Obelisk":{DoesNotExist:[375,2,1,""],MultipleObjectsReturned:[375,2,1,""],at_object_creation:[375,3,1,""],path:[375,4,1,""],return_appearance:[375,3,1,""],typename:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.TutorialClimbable":{DoesNotExist:[375,2,1,""],MultipleObjectsReturned:[375,2,1,""],at_object_creation:[375,3,1,""],path:[375,4,1,""],typename:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.TutorialObject":{DoesNotExist:[375,2,1,""],MultipleObjectsReturned:[375,2,1,""],at_object_creation:[375,3,1,""],path:[375,4,1,""],reset:[375,3,1,""],typename:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.TutorialReadable":{DoesNotExist:[375,2,1,""],MultipleObjectsReturned:[375,2,1,""],at_object_creation:[375,3,1,""],path:[375,4,1,""],typename:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.TutorialWeapon":{DoesNotExist:[375,2,1,""],MultipleObjectsReturned:[375,2,1,""],at_object_creation:[375,3,1,""],path:[375,4,1,""],reset:[375,3,1,""],typename:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.TutorialWeaponRack":{DoesNotExist:[375,2,1,""],MultipleObjectsReturned:[375,2,1,""],at_object_creation:[375,3,1,""],path:[375,4,1,""],produce_weapon:[375,3,1,""],typename:[375,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms":{BridgeCmdSet:[376,1,1,""],BridgeRoom:[376,1,1,""],CmdBridgeHelp:[376,1,1,""],CmdDarkHelp:[376,1,1,""],CmdDarkNoMatch:[376,1,1,""],CmdEast:[376,1,1,""],CmdEvenniaIntro:[376,1,1,""],CmdLookBridge:[376,1,1,""],CmdLookDark:[376,1,1,""],CmdSetEvenniaIntro:[376,1,1,""],CmdTutorial:[376,1,1,""],CmdTutorialGiveUp:[376,1,1,""],CmdTutorialLook:[376,1,1,""],CmdTutorialSetDetail:[376,1,1,""],CmdWest:[376,1,1,""],DarkCmdSet:[376,1,1,""],DarkRoom:[376,1,1,""],IntroRoom:[376,1,1,""],OutroRoom:[376,1,1,""],TeleportRoom:[376,1,1,""],TutorialRoom:[376,1,1,""],TutorialRoomCmdSet:[376,1,1,""],TutorialStartExit:[376,1,1,""],WeatherRoom:[376,1,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.BridgeCmdSet":{at_cmdset_creation:[376,3,1,""],key:[376,4,1,""],path:[376,4,1,""],priority:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.BridgeRoom":{DoesNotExist:[376,2,1,""],MultipleObjectsReturned:[376,2,1,""],at_object_creation:[376,3,1,""],at_object_leave:[376,3,1,""],at_object_receive:[376,3,1,""],path:[376,4,1,""],typename:[376,4,1,""],update_weather:[376,3,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdBridgeHelp":{aliases:[376,4,1,""],func:[376,3,1,""],help_category:[376,4,1,""],key:[376,4,1,""],lock_storage:[376,4,1,""],locks:[376,4,1,""],search_index_entry:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdDarkHelp":{aliases:[376,4,1,""],func:[376,3,1,""],help_category:[376,4,1,""],key:[376,4,1,""],lock_storage:[376,4,1,""],locks:[376,4,1,""],search_index_entry:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdDarkNoMatch":{aliases:[376,4,1,""],func:[376,3,1,""],help_category:[376,4,1,""],key:[376,4,1,""],lock_storage:[376,4,1,""],locks:[376,4,1,""],search_index_entry:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdEast":{aliases:[376,4,1,""],func:[376,3,1,""],help_category:[376,4,1,""],key:[376,4,1,""],lock_storage:[376,4,1,""],locks:[376,4,1,""],search_index_entry:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdEvenniaIntro":{aliases:[376,4,1,""],func:[376,3,1,""],help_category:[376,4,1,""],key:[376,4,1,""],lock_storage:[376,4,1,""],search_index_entry:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdLookBridge":{aliases:[376,4,1,""],func:[376,3,1,""],help_category:[376,4,1,""],key:[376,4,1,""],lock_storage:[376,4,1,""],locks:[376,4,1,""],search_index_entry:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdLookDark":{aliases:[376,4,1,""],func:[376,3,1,""],help_category:[376,4,1,""],key:[376,4,1,""],lock_storage:[376,4,1,""],locks:[376,4,1,""],search_index_entry:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdSetEvenniaIntro":{at_cmdset_creation:[376,3,1,""],key:[376,4,1,""],path:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdTutorial":{aliases:[376,4,1,""],func:[376,3,1,""],help_category:[376,4,1,""],key:[376,4,1,""],lock_storage:[376,4,1,""],locks:[376,4,1,""],search_index_entry:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdTutorialGiveUp":{aliases:[376,4,1,""],func:[376,3,1,""],help_category:[376,4,1,""],key:[376,4,1,""],lock_storage:[376,4,1,""],search_index_entry:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdTutorialLook":{aliases:[376,4,1,""],func:[376,3,1,""],help_category:[376,4,1,""],key:[376,4,1,""],lock_storage:[376,4,1,""],search_index_entry:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdTutorialSetDetail":{aliases:[376,4,1,""],func:[376,3,1,""],help_category:[376,4,1,""],key:[376,4,1,""],lock_storage:[376,4,1,""],locks:[376,4,1,""],search_index_entry:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdWest":{aliases:[376,4,1,""],func:[376,3,1,""],help_category:[376,4,1,""],key:[376,4,1,""],lock_storage:[376,4,1,""],locks:[376,4,1,""],search_index_entry:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.DarkCmdSet":{at_cmdset_creation:[376,3,1,""],key:[376,4,1,""],mergetype:[376,4,1,""],path:[376,4,1,""],priority:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.DarkRoom":{DoesNotExist:[376,2,1,""],MultipleObjectsReturned:[376,2,1,""],at_init:[376,3,1,""],at_object_creation:[376,3,1,""],at_object_leave:[376,3,1,""],at_object_receive:[376,3,1,""],check_light_state:[376,3,1,""],path:[376,4,1,""],typename:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.IntroRoom":{DoesNotExist:[376,2,1,""],MultipleObjectsReturned:[376,2,1,""],at_object_creation:[376,3,1,""],at_object_receive:[376,3,1,""],path:[376,4,1,""],typename:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.OutroRoom":{DoesNotExist:[376,2,1,""],MultipleObjectsReturned:[376,2,1,""],at_object_creation:[376,3,1,""],at_object_leave:[376,3,1,""],at_object_receive:[376,3,1,""],path:[376,4,1,""],typename:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.TeleportRoom":{DoesNotExist:[376,2,1,""],MultipleObjectsReturned:[376,2,1,""],at_object_creation:[376,3,1,""],at_object_receive:[376,3,1,""],path:[376,4,1,""],typename:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.TutorialRoom":{DoesNotExist:[376,2,1,""],MultipleObjectsReturned:[376,2,1,""],at_object_creation:[376,3,1,""],at_object_receive:[376,3,1,""],path:[376,4,1,""],return_detail:[376,3,1,""],set_detail:[376,3,1,""],typename:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.TutorialRoomCmdSet":{at_cmdset_creation:[376,3,1,""],key:[376,4,1,""],path:[376,4,1,""],priority:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.TutorialStartExit":{DoesNotExist:[376,2,1,""],MultipleObjectsReturned:[376,2,1,""],at_object_creation:[376,3,1,""],path:[376,4,1,""],typename:[376,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.WeatherRoom":{DoesNotExist:[376,2,1,""],MultipleObjectsReturned:[376,2,1,""],at_object_creation:[376,3,1,""],path:[376,4,1,""],typename:[376,4,1,""],update_weather:[376,3,1,""]},"evennia.contrib.tutorials.tutorial_world.tests":{TestTutorialWorldMob:[377,1,1,""],TestTutorialWorldObjects:[377,1,1,""],TestTutorialWorldRooms:[377,1,1,""]},"evennia.contrib.tutorials.tutorial_world.tests.TestTutorialWorldMob":{test_mob:[377,3,1,""]},"evennia.contrib.tutorials.tutorial_world.tests.TestTutorialWorldObjects":{test_climbable:[377,3,1,""],test_crumblingwall:[377,3,1,""],test_lightsource:[377,3,1,""],test_obelisk:[377,3,1,""],test_readable:[377,3,1,""],test_tutorialobj:[377,3,1,""],test_weapon:[377,3,1,""],test_weaponrack:[377,3,1,""]},"evennia.contrib.tutorials.tutorial_world.tests.TestTutorialWorldRooms":{test_bridgeroom:[377,3,1,""],test_cmdtutorial:[377,3,1,""],test_darkroom:[377,3,1,""],test_introroom:[377,3,1,""],test_outroroom:[377,3,1,""],test_teleportroom:[377,3,1,""],test_weatherroom:[377,3,1,""]},"evennia.contrib.utils":{auditing:[379,0,0,"-"],fieldfill:[383,0,0,"-"],random_string_generator:[385,0,0,"-"],tree_select:[388,0,0,"-"]},"evennia.contrib.utils.auditing":{outputs:[380,0,0,"-"],server:[381,0,0,"-"],tests:[382,0,0,"-"]},"evennia.contrib.utils.auditing.outputs":{to_file:[380,5,1,""],to_syslog:[380,5,1,""]},"evennia.contrib.utils.auditing.server":{AuditedServerSession:[381,1,1,""]},"evennia.contrib.utils.auditing.server.AuditedServerSession":{audit:[381,3,1,""],data_in:[381,3,1,""],data_out:[381,3,1,""],mask:[381,3,1,""]},"evennia.contrib.utils.auditing.tests":{AuditingTest:[382,1,1,""]},"evennia.contrib.utils.auditing.tests.AuditingTest":{setup_session:[382,3,1,""],test_audit:[382,3,1,""],test_mask:[382,3,1,""]},"evennia.contrib.utils.fieldfill":{fieldfill:[384,0,0,"-"]},"evennia.contrib.utils.fieldfill.fieldfill":{CmdTestMenu:[384,1,1,""],FieldEvMenu:[384,1,1,""],display_formdata:[384,5,1,""],form_template_to_dict:[384,5,1,""],init_delayed_message:[384,5,1,""],init_fill_field:[384,5,1,""],menunode_fieldfill:[384,5,1,""],sendmessage:[384,5,1,""],verify_online_player:[384,5,1,""]},"evennia.contrib.utils.fieldfill.fieldfill.CmdTestMenu":{aliases:[384,4,1,""],func:[384,3,1,""],help_category:[384,4,1,""],key:[384,4,1,""],lock_storage:[384,4,1,""],search_index_entry:[384,4,1,""]},"evennia.contrib.utils.fieldfill.fieldfill.FieldEvMenu":{node_formatter:[384,3,1,""]},"evennia.contrib.utils.random_string_generator":{random_string_generator:[386,0,0,"-"],tests:[387,0,0,"-"]},"evennia.contrib.utils.random_string_generator.random_string_generator":{ExhaustedGenerator:[386,2,1,""],RandomStringGenerator:[386,1,1,""],RandomStringGeneratorScript:[386,1,1,""],RejectedRegex:[386,2,1,""]},"evennia.contrib.utils.random_string_generator.random_string_generator.RandomStringGenerator":{__init__:[386,3,1,""],all:[386,3,1,""],clear:[386,3,1,""],get:[386,3,1,""],remove:[386,3,1,""],script:[386,4,1,""]},"evennia.contrib.utils.random_string_generator.random_string_generator.RandomStringGeneratorScript":{DoesNotExist:[386,2,1,""],MultipleObjectsReturned:[386,2,1,""],at_script_creation:[386,3,1,""],path:[386,4,1,""],typename:[386,4,1,""]},"evennia.contrib.utils.random_string_generator.tests":{TestRandomStringGenerator:[387,1,1,""]},"evennia.contrib.utils.random_string_generator.tests.TestRandomStringGenerator":{test_generate:[387,3,1,""]},"evennia.contrib.utils.tree_select":{tests:[389,0,0,"-"],tree_select:[390,0,0,"-"]},"evennia.contrib.utils.tree_select.tests":{TestFieldFillFunc:[389,1,1,""],TestTreeSelectFunc:[389,1,1,""]},"evennia.contrib.utils.tree_select.tests.TestFieldFillFunc":{test_field_functions:[389,3,1,""]},"evennia.contrib.utils.tree_select.tests.TestTreeSelectFunc":{test_tree_functions:[389,3,1,""]},"evennia.contrib.utils.tree_select.tree_select":{CmdNameColor:[390,1,1,""],change_name_color:[390,5,1,""],dashcount:[390,5,1,""],go_up_one_category:[390,5,1,""],index_to_selection:[390,5,1,""],init_tree_selection:[390,5,1,""],is_category:[390,5,1,""],menunode_treeselect:[390,5,1,""],optlist_to_menuoptions:[390,5,1,""],parse_opts:[390,5,1,""]},"evennia.contrib.utils.tree_select.tree_select.CmdNameColor":{aliases:[390,4,1,""],func:[390,3,1,""],help_category:[390,4,1,""],key:[390,4,1,""],lock_storage:[390,4,1,""],search_index_entry:[390,4,1,""]},"evennia.help":{filehelp:[392,0,0,"-"],manager:[393,0,0,"-"],models:[394,0,0,"-"],utils:[395,0,0,"-"]},"evennia.help.filehelp":{FileHelpEntry:[392,1,1,""],FileHelpStorageHandler:[392,1,1,""]},"evennia.help.filehelp.FileHelpEntry":{__init__:[392,3,1,""],access:[392,3,1,""],aliases:[392,4,1,""],entrytext:[392,4,1,""],help_category:[392,4,1,""],key:[392,4,1,""],lock_storage:[392,4,1,""],locks:[392,4,1,""],search_index_entry:[392,3,1,""],web_get_admin_url:[392,3,1,""],web_get_detail_url:[392,3,1,""]},"evennia.help.filehelp.FileHelpStorageHandler":{__init__:[392,3,1,""],all:[392,3,1,""],load:[392,3,1,""]},"evennia.help.manager":{HelpEntryManager:[393,1,1,""]},"evennia.help.manager.HelpEntryManager":{all_to_category:[393,3,1,""],create_help:[393,3,1,""],find_apropos:[393,3,1,""],find_topicmatch:[393,3,1,""],find_topics_with_category:[393,3,1,""],find_topicsuggestions:[393,3,1,""],get_all_categories:[393,3,1,""],get_all_topics:[393,3,1,""],search_help:[393,3,1,""]},"evennia.help.models":{HelpEntry:[394,1,1,""]},"evennia.help.models.HelpEntry":{DoesNotExist:[394,2,1,""],MultipleObjectsReturned:[394,2,1,""],access:[394,3,1,""],aliases:[394,4,1,""],date_created:[394,3,1,""],db_date_created:[394,4,1,""],db_entrytext:[394,4,1,""],db_help_category:[394,4,1,""],db_key:[394,4,1,""],db_lock_storage:[394,4,1,""],db_tags:[394,4,1,""],entrytext:[394,3,1,""],get_absolute_url:[394,3,1,""],get_next_by_db_date_created:[394,3,1,""],get_previous_by_db_date_created:[394,3,1,""],help_category:[394,3,1,""],id:[394,4,1,""],key:[394,3,1,""],lock_storage:[394,3,1,""],locks:[394,4,1,""],objects:[394,4,1,""],path:[394,4,1,""],search_index_entry:[394,3,1,""],tags:[394,4,1,""],typename:[394,4,1,""],web_get_admin_url:[394,3,1,""],web_get_create_url:[394,3,1,""],web_get_delete_url:[394,3,1,""],web_get_detail_url:[394,3,1,""],web_get_update_url:[394,3,1,""]},"evennia.help.utils":{help_search_with_index:[395,5,1,""],parse_entry_for_subcategories:[395,5,1,""]},"evennia.locks":{lockfuncs:[397,0,0,"-"],lockhandler:[398,0,0,"-"]},"evennia.locks.lockfuncs":{"false":[397,5,1,""],"true":[397,5,1,""],all:[397,5,1,""],attr:[397,5,1,""],attr_eq:[397,5,1,""],attr_ge:[397,5,1,""],attr_gt:[397,5,1,""],attr_le:[397,5,1,""],attr_lt:[397,5,1,""],attr_ne:[397,5,1,""],dbref:[397,5,1,""],has_account:[397,5,1,""],holds:[397,5,1,""],id:[397,5,1,""],inside:[397,5,1,""],inside_rec:[397,5,1,""],is_ooc:[397,5,1,""],locattr:[397,5,1,""],none:[397,5,1,""],objattr:[397,5,1,""],objlocattr:[397,5,1,""],objtag:[397,5,1,""],pdbref:[397,5,1,""],perm:[397,5,1,""],perm_above:[397,5,1,""],pid:[397,5,1,""],pperm:[397,5,1,""],pperm_above:[397,5,1,""],self:[397,5,1,""],serversetting:[397,5,1,""],superuser:[397,5,1,""],tag:[397,5,1,""]},"evennia.locks.lockhandler":{LockException:[398,2,1,""],LockHandler:[398,1,1,""]},"evennia.locks.lockhandler.LockHandler":{"delete":[398,3,1,""],__init__:[398,3,1,""],add:[398,3,1,""],all:[398,3,1,""],append:[398,3,1,""],cache_lock_bypass:[398,3,1,""],check:[398,3,1,""],check_lockstring:[398,3,1,""],clear:[398,3,1,""],get:[398,3,1,""],remove:[398,3,1,""],replace:[398,3,1,""],reset:[398,3,1,""],validate:[398,3,1,""]},"evennia.objects":{manager:[400,0,0,"-"],models:[401,0,0,"-"],objects:[402,0,0,"-"]},"evennia.objects.manager":{ObjectDBManager:[400,1,1,""],ObjectManager:[400,1,1,""]},"evennia.objects.manager.ObjectDBManager":{clear_all_sessids:[400,3,1,""],copy_object:[400,3,1,""],create_object:[400,3,1,""],get_contents:[400,3,1,""],get_object_with_account:[400,3,1,""],get_objs_with_attr:[400,3,1,""],get_objs_with_attr_value:[400,3,1,""],get_objs_with_db_property:[400,3,1,""],get_objs_with_db_property_value:[400,3,1,""],get_objs_with_key_and_typeclass:[400,3,1,""],get_objs_with_key_or_alias:[400,3,1,""],object_search:[400,3,1,""],search:[400,3,1,""],search_object:[400,3,1,""]},"evennia.objects.models":{ContentsHandler:[401,1,1,""],ObjectDB:[401,1,1,""]},"evennia.objects.models.ContentsHandler":{__init__:[401,3,1,""],add:[401,3,1,""],clear:[401,3,1,""],get:[401,3,1,""],init:[401,3,1,""],load:[401,3,1,""],remove:[401,3,1,""]},"evennia.objects.models.ObjectDB":{DoesNotExist:[401,2,1,""],MultipleObjectsReturned:[401,2,1,""],account:[401,3,1,""],at_db_location_postsave:[401,3,1,""],cmdset_storage:[401,3,1,""],contents_cache:[401,4,1,""],db_account:[401,4,1,""],db_account_id:[401,4,1,""],db_attributes:[401,4,1,""],db_cmdset_storage:[401,4,1,""],db_date_created:[401,4,1,""],db_destination:[401,4,1,""],db_destination_id:[401,4,1,""],db_home:[401,4,1,""],db_home_id:[401,4,1,""],db_key:[401,4,1,""],db_location:[401,4,1,""],db_location_id:[401,4,1,""],db_lock_storage:[401,4,1,""],db_sessid:[401,4,1,""],db_tags:[401,4,1,""],db_typeclass_path:[401,4,1,""],destination:[401,3,1,""],destinations_set:[401,4,1,""],get_next_by_db_date_created:[401,3,1,""],get_previous_by_db_date_created:[401,3,1,""],hide_from_objects_set:[401,4,1,""],home:[401,3,1,""],homes_set:[401,4,1,""],id:[401,4,1,""],location:[401,3,1,""],locations_set:[401,4,1,""],object_subscription_set:[401,4,1,""],objects:[401,4,1,""],path:[401,4,1,""],receiver_object_set:[401,4,1,""],scriptdb_set:[401,4,1,""],sender_object_set:[401,4,1,""],sessid:[401,3,1,""],typename:[401,4,1,""]},"evennia.objects.objects":{DefaultCharacter:[402,1,1,""],DefaultExit:[402,1,1,""],DefaultObject:[402,1,1,""],DefaultRoom:[402,1,1,""],ExitCommand:[402,1,1,""],ObjectSessionHandler:[402,1,1,""]},"evennia.objects.objects.DefaultCharacter":{DoesNotExist:[402,2,1,""],MultipleObjectsReturned:[402,2,1,""],at_after_move:[402,3,1,""],at_post_move:[402,3,1,""],at_post_puppet:[402,3,1,""],at_post_unpuppet:[402,3,1,""],at_pre_puppet:[402,3,1,""],basetype_setup:[402,3,1,""],connection_time:[402,3,1,""],create:[402,3,1,""],idle_time:[402,3,1,""],lockstring:[402,4,1,""],normalize_name:[402,3,1,""],path:[402,4,1,""],typename:[402,4,1,""],validate_name:[402,3,1,""]},"evennia.objects.objects.DefaultExit":{DoesNotExist:[402,2,1,""],MultipleObjectsReturned:[402,2,1,""],at_cmdset_get:[402,3,1,""],at_failed_traverse:[402,3,1,""],at_init:[402,3,1,""],at_traverse:[402,3,1,""],basetype_setup:[402,3,1,""],create:[402,3,1,""],create_exit_cmdset:[402,3,1,""],exit_command:[402,4,1,""],lockstring:[402,4,1,""],path:[402,4,1,""],priority:[402,4,1,""],typename:[402,4,1,""]},"evennia.objects.objects.DefaultObject":{"delete":[402,3,1,""],DoesNotExist:[402,2,1,""],MultipleObjectsReturned:[402,2,1,""],access:[402,3,1,""],announce_move_from:[402,3,1,""],announce_move_to:[402,3,1,""],appearance_template:[402,4,1,""],at_access:[402,3,1,""],at_after_move:[402,3,1,""],at_after_traverse:[402,3,1,""],at_before_drop:[402,3,1,""],at_before_get:[402,3,1,""],at_before_give:[402,3,1,""],at_before_move:[402,3,1,""],at_before_say:[402,3,1,""],at_cmdset_get:[402,3,1,""],at_desc:[402,3,1,""],at_drop:[402,3,1,""],at_failed_traverse:[402,3,1,""],at_first_save:[402,3,1,""],at_get:[402,3,1,""],at_give:[402,3,1,""],at_init:[402,3,1,""],at_look:[402,3,1,""],at_msg_receive:[402,3,1,""],at_msg_send:[402,3,1,""],at_object_creation:[402,3,1,""],at_object_delete:[402,3,1,""],at_object_leave:[402,3,1,""],at_object_post_copy:[402,3,1,""],at_object_receive:[402,3,1,""],at_post_move:[402,3,1,""],at_post_puppet:[402,3,1,""],at_post_traverse:[402,3,1,""],at_post_unpuppet:[402,3,1,""],at_pre_drop:[402,3,1,""],at_pre_get:[402,3,1,""],at_pre_give:[402,3,1,""],at_pre_move:[402,3,1,""],at_pre_puppet:[402,3,1,""],at_pre_say:[402,3,1,""],at_pre_unpuppet:[402,3,1,""],at_say:[402,3,1,""],at_server_reload:[402,3,1,""],at_server_shutdown:[402,3,1,""],at_traverse:[402,3,1,""],basetype_posthook_setup:[402,3,1,""],basetype_setup:[402,3,1,""],clear_contents:[402,3,1,""],clear_exits:[402,3,1,""],cmdset:[402,4,1,""],contents:[402,3,1,""],contents_get:[402,3,1,""],contents_set:[402,3,1,""],copy:[402,3,1,""],create:[402,3,1,""],execute_cmd:[402,3,1,""],exits:[402,3,1,""],for_contents:[402,3,1,""],get_content_names:[402,3,1,""],get_display_name:[402,3,1,""],get_numbered_name:[402,3,1,""],get_visible_contents:[402,3,1,""],has_account:[402,3,1,""],is_connected:[402,3,1,""],is_superuser:[402,3,1,""],lockstring:[402,4,1,""],move_to:[402,3,1,""],msg:[402,3,1,""],msg_contents:[402,3,1,""],nicks:[402,4,1,""],objects:[402,4,1,""],path:[402,4,1,""],return_appearance:[402,3,1,""],scripts:[402,4,1,""],search:[402,3,1,""],search_account:[402,3,1,""],sessions:[402,4,1,""],typename:[402,4,1,""]},"evennia.objects.objects.DefaultRoom":{DoesNotExist:[402,2,1,""],MultipleObjectsReturned:[402,2,1,""],basetype_setup:[402,3,1,""],create:[402,3,1,""],lockstring:[402,4,1,""],path:[402,4,1,""],typename:[402,4,1,""]},"evennia.objects.objects.ExitCommand":{aliases:[402,4,1,""],func:[402,3,1,""],get_extra_info:[402,3,1,""],help_category:[402,4,1,""],key:[402,4,1,""],lock_storage:[402,4,1,""],obj:[402,4,1,""],search_index_entry:[402,4,1,""]},"evennia.objects.objects.ObjectSessionHandler":{__init__:[402,3,1,""],add:[402,3,1,""],all:[402,3,1,""],clear:[402,3,1,""],count:[402,3,1,""],get:[402,3,1,""],remove:[402,3,1,""]},"evennia.prototypes":{menus:[404,0,0,"-"],protfuncs:[405,0,0,"-"],prototypes:[406,0,0,"-"],spawner:[407,0,0,"-"]},"evennia.prototypes.menus":{OLCMenu:[404,1,1,""],node_apply_diff:[404,5,1,""],node_destination:[404,5,1,""],node_examine_entity:[404,5,1,""],node_home:[404,5,1,""],node_index:[404,5,1,""],node_key:[404,5,1,""],node_location:[404,5,1,""],node_prototype_desc:[404,5,1,""],node_prototype_key:[404,5,1,""],node_prototype_save:[404,5,1,""],node_prototype_spawn:[404,5,1,""],node_validate_prototype:[404,5,1,""],start_olc:[404,5,1,""]},"evennia.prototypes.menus.OLCMenu":{display_helptext:[404,3,1,""],helptext_formatter:[404,3,1,""],nodetext_formatter:[404,3,1,""],options_formatter:[404,3,1,""]},"evennia.prototypes.protfuncs":{protfunc_callable_protkey:[405,5,1,""]},"evennia.prototypes.prototypes":{DbPrototype:[406,1,1,""],PermissionError:[406,2,1,""],PrototypeEvMore:[406,1,1,""],ValidationError:[406,2,1,""],check_permission:[406,5,1,""],create_prototype:[406,5,1,""],delete_prototype:[406,5,1,""],format_available_protfuncs:[406,5,1,""],homogenize_prototype:[406,5,1,""],init_spawn_value:[406,5,1,""],list_prototypes:[406,5,1,""],load_module_prototypes:[406,5,1,""],protfunc_parser:[406,5,1,""],prototype_to_str:[406,5,1,""],save_prototype:[406,5,1,""],search_objects_with_prototype:[406,5,1,""],search_prototype:[406,5,1,""],validate_prototype:[406,5,1,""],value_to_obj:[406,5,1,""],value_to_obj_or_any:[406,5,1,""]},"evennia.prototypes.prototypes.DbPrototype":{DoesNotExist:[406,2,1,""],MultipleObjectsReturned:[406,2,1,""],at_script_creation:[406,3,1,""],path:[406,4,1,""],prototype:[406,3,1,""],typename:[406,4,1,""]},"evennia.prototypes.prototypes.PrototypeEvMore":{__init__:[406,3,1,""],init_pages:[406,3,1,""],page_formatter:[406,3,1,""],prototype_paginator:[406,3,1,""]},"evennia.prototypes.spawner":{Unset:[407,1,1,""],batch_create_object:[407,5,1,""],batch_update_objects_with_prototype:[407,5,1,""],flatten_diff:[407,5,1,""],flatten_prototype:[407,5,1,""],format_diff:[407,5,1,""],prototype_diff:[407,5,1,""],prototype_diff_from_object:[407,5,1,""],prototype_from_object:[407,5,1,""],spawn:[407,5,1,""]},"evennia.scripts":{manager:[409,0,0,"-"],models:[410,0,0,"-"],monitorhandler:[411,0,0,"-"],scripthandler:[412,0,0,"-"],scripts:[413,0,0,"-"],taskhandler:[414,0,0,"-"],tickerhandler:[415,0,0,"-"]},"evennia.scripts.manager":{ScriptDBManager:[409,1,1,""],ScriptManager:[409,1,1,""]},"evennia.scripts.manager.ScriptDBManager":{copy_script:[409,3,1,""],create_script:[409,3,1,""],delete_script:[409,3,1,""],get_all_scripts:[409,3,1,""],get_all_scripts_on_obj:[409,3,1,""],script_search:[409,3,1,""],search_script:[409,3,1,""],update_scripts_after_server_start:[409,3,1,""]},"evennia.scripts.models":{ScriptDB:[410,1,1,""]},"evennia.scripts.models.ScriptDB":{DoesNotExist:[410,2,1,""],MultipleObjectsReturned:[410,2,1,""],account:[410,3,1,""],db_account:[410,4,1,""],db_account_id:[410,4,1,""],db_attributes:[410,4,1,""],db_date_created:[410,4,1,""],db_desc:[410,4,1,""],db_interval:[410,4,1,""],db_is_active:[410,4,1,""],db_key:[410,4,1,""],db_lock_storage:[410,4,1,""],db_obj:[410,4,1,""],db_obj_id:[410,4,1,""],db_persistent:[410,4,1,""],db_repeats:[410,4,1,""],db_start_delay:[410,4,1,""],db_tags:[410,4,1,""],db_typeclass_path:[410,4,1,""],desc:[410,3,1,""],get_next_by_db_date_created:[410,3,1,""],get_previous_by_db_date_created:[410,3,1,""],id:[410,4,1,""],interval:[410,3,1,""],is_active:[410,3,1,""],obj:[410,3,1,""],object:[410,3,1,""],objects:[410,4,1,""],path:[410,4,1,""],persistent:[410,3,1,""],receiver_script_set:[410,4,1,""],repeats:[410,3,1,""],sender_script_set:[410,4,1,""],start_delay:[410,3,1,""],typename:[410,4,1,""]},"evennia.scripts.monitorhandler":{MonitorHandler:[411,1,1,""]},"evennia.scripts.monitorhandler.MonitorHandler":{__init__:[411,3,1,""],add:[411,3,1,""],all:[411,3,1,""],at_update:[411,3,1,""],clear:[411,3,1,""],remove:[411,3,1,""],restore:[411,3,1,""],save:[411,3,1,""]},"evennia.scripts.scripthandler":{ScriptHandler:[412,1,1,""]},"evennia.scripts.scripthandler.ScriptHandler":{"delete":[412,3,1,""],__init__:[412,3,1,""],add:[412,3,1,""],all:[412,3,1,""],get:[412,3,1,""],start:[412,3,1,""],stop:[412,3,1,""]},"evennia.scripts.scripts":{DefaultScript:[413,1,1,""],DoNothing:[413,1,1,""],Store:[413,1,1,""]},"evennia.scripts.scripts.DefaultScript":{DoesNotExist:[413,2,1,""],MultipleObjectsReturned:[413,2,1,""],at_pause:[413,3,1,""],at_repeat:[413,3,1,""],at_script_creation:[413,3,1,""],at_script_delete:[413,3,1,""],at_server_reload:[413,3,1,""],at_server_shutdown:[413,3,1,""],at_server_start:[413,3,1,""],at_start:[413,3,1,""],at_stop:[413,3,1,""],create:[413,3,1,""],is_valid:[413,3,1,""],path:[413,4,1,""],typename:[413,4,1,""]},"evennia.scripts.scripts.DoNothing":{DoesNotExist:[413,2,1,""],MultipleObjectsReturned:[413,2,1,""],at_script_creation:[413,3,1,""],path:[413,4,1,""],typename:[413,4,1,""]},"evennia.scripts.scripts.Store":{DoesNotExist:[413,2,1,""],MultipleObjectsReturned:[413,2,1,""],at_script_creation:[413,3,1,""],path:[413,4,1,""],typename:[413,4,1,""]},"evennia.scripts.taskhandler":{TaskHandler:[414,1,1,""],TaskHandlerTask:[414,1,1,""],handle_error:[414,5,1,""]},"evennia.scripts.taskhandler.TaskHandler":{__init__:[414,3,1,""],active:[414,3,1,""],add:[414,3,1,""],call_task:[414,3,1,""],cancel:[414,3,1,""],clean_stale_tasks:[414,3,1,""],clear:[414,3,1,""],create_delays:[414,3,1,""],do_task:[414,3,1,""],exists:[414,3,1,""],get_deferred:[414,3,1,""],load:[414,3,1,""],remove:[414,3,1,""],save:[414,3,1,""]},"evennia.scripts.taskhandler.TaskHandlerTask":{__init__:[414,3,1,""],active:[414,3,1,"id6"],call:[414,3,1,"id3"],called:[414,3,1,""],cancel:[414,3,1,"id5"],do_task:[414,3,1,"id2"],exists:[414,3,1,"id7"],get_deferred:[414,3,1,""],get_id:[414,3,1,"id8"],pause:[414,3,1,"id0"],paused:[414,3,1,""],remove:[414,3,1,"id4"],unpause:[414,3,1,"id1"]},"evennia.scripts.tickerhandler":{Ticker:[415,1,1,""],TickerHandler:[415,1,1,""],TickerPool:[415,1,1,""]},"evennia.scripts.tickerhandler.Ticker":{__init__:[415,3,1,""],add:[415,3,1,""],remove:[415,3,1,""],stop:[415,3,1,""],validate:[415,3,1,""]},"evennia.scripts.tickerhandler.TickerHandler":{__init__:[415,3,1,""],add:[415,3,1,""],all:[415,3,1,""],all_display:[415,3,1,""],clear:[415,3,1,""],remove:[415,3,1,""],restore:[415,3,1,""],save:[415,3,1,""],ticker_pool_class:[415,4,1,""]},"evennia.scripts.tickerhandler.TickerPool":{__init__:[415,3,1,""],add:[415,3,1,""],remove:[415,3,1,""],stop:[415,3,1,""],ticker_class:[415,4,1,""]},"evennia.server":{amp_client:[417,0,0,"-"],connection_wizard:[418,0,0,"-"],deprecations:[419,0,0,"-"],evennia_launcher:[420,0,0,"-"],game_index_client:[421,0,0,"-"],initial_setup:[424,0,0,"-"],inputfuncs:[425,0,0,"-"],manager:[426,0,0,"-"],models:[427,0,0,"-"],portal:[428,0,0,"-"],profiling:[450,0,0,"-"],server:[458,0,0,"-"],serversession:[459,0,0,"-"],session:[460,0,0,"-"],sessionhandler:[461,0,0,"-"],signals:[462,0,0,"-"],throttle:[463,0,0,"-"],validators:[464,0,0,"-"],webserver:[465,0,0,"-"]},"evennia.server.amp_client":{AMPClientFactory:[417,1,1,""],AMPServerClientProtocol:[417,1,1,""]},"evennia.server.amp_client.AMPClientFactory":{__init__:[417,3,1,""],buildProtocol:[417,3,1,""],clientConnectionFailed:[417,3,1,""],clientConnectionLost:[417,3,1,""],factor:[417,4,1,""],initialDelay:[417,4,1,""],maxDelay:[417,4,1,""],noisy:[417,4,1,""],startedConnecting:[417,3,1,""]},"evennia.server.amp_client.AMPServerClientProtocol":{connectionMade:[417,3,1,""],data_to_portal:[417,3,1,""],send_AdminServer2Portal:[417,3,1,""],send_MsgServer2Portal:[417,3,1,""],server_receive_adminportal2server:[417,3,1,""],server_receive_msgportal2server:[417,3,1,""],server_receive_status:[417,3,1,""]},"evennia.server.connection_wizard":{ConnectionWizard:[418,1,1,""],node_game_index_fields:[418,5,1,""],node_game_index_start:[418,5,1,""],node_mssp_start:[418,5,1,""],node_start:[418,5,1,""],node_view_and_apply_settings:[418,5,1,""]},"evennia.server.connection_wizard.ConnectionWizard":{__init__:[418,3,1,""],ask_choice:[418,3,1,""],ask_continue:[418,3,1,""],ask_input:[418,3,1,""],ask_node:[418,3,1,""],ask_yesno:[418,3,1,""],display:[418,3,1,""]},"evennia.server.deprecations":{check_errors:[419,5,1,""],check_warnings:[419,5,1,""]},"evennia.server.evennia_launcher":{AMPLauncherProtocol:[420,1,1,""],MsgLauncher2Portal:[420,1,1,""],MsgStatus:[420,1,1,""],check_database:[420,5,1,""],check_main_evennia_dependencies:[420,5,1,""],collectstatic:[420,5,1,""],create_game_directory:[420,5,1,""],create_secret_key:[420,5,1,""],create_settings_file:[420,5,1,""],create_superuser:[420,5,1,""],del_pid:[420,5,1,""],error_check_python_modules:[420,5,1,""],evennia_version:[420,5,1,""],get_pid:[420,5,1,""],getenv:[420,5,1,""],init_game_directory:[420,5,1,""],kill:[420,5,1,""],list_settings:[420,5,1,""],main:[420,5,1,""],query_info:[420,5,1,""],query_status:[420,5,1,""],reboot_evennia:[420,5,1,""],reload_evennia:[420,5,1,""],run_connect_wizard:[420,5,1,""],run_custom_commands:[420,5,1,""],run_dummyrunner:[420,5,1,""],run_menu:[420,5,1,""],send_instruction:[420,5,1,""],set_gamedir:[420,5,1,""],show_version_info:[420,5,1,""],start_evennia:[420,5,1,""],start_only_server:[420,5,1,""],start_portal_interactive:[420,5,1,""],start_server_interactive:[420,5,1,""],stop_evennia:[420,5,1,""],stop_server_only:[420,5,1,""],tail_log_files:[420,5,1,""],wait_for_status:[420,5,1,""],wait_for_status_reply:[420,5,1,""]},"evennia.server.evennia_launcher.AMPLauncherProtocol":{__init__:[420,3,1,""],receive_status_from_portal:[420,3,1,""],wait_for_status:[420,3,1,""]},"evennia.server.evennia_launcher.MsgLauncher2Portal":{allErrors:[420,4,1,""],arguments:[420,4,1,""],commandName:[420,4,1,""],errors:[420,4,1,""],key:[420,4,1,""],response:[420,4,1,""],reverseErrors:[420,4,1,""]},"evennia.server.evennia_launcher.MsgStatus":{allErrors:[420,4,1,""],arguments:[420,4,1,""],commandName:[420,4,1,""],errors:[420,4,1,""],key:[420,4,1,""],response:[420,4,1,""],reverseErrors:[420,4,1,""]},"evennia.server.game_index_client":{client:[422,0,0,"-"],service:[423,0,0,"-"]},"evennia.server.game_index_client.client":{EvenniaGameIndexClient:[422,1,1,""],QuietHTTP11ClientFactory:[422,1,1,""],SimpleResponseReceiver:[422,1,1,""],StringProducer:[422,1,1,""]},"evennia.server.game_index_client.client.EvenniaGameIndexClient":{__init__:[422,3,1,""],handle_egd_response:[422,3,1,""],send_game_details:[422,3,1,""]},"evennia.server.game_index_client.client.QuietHTTP11ClientFactory":{noisy:[422,4,1,""]},"evennia.server.game_index_client.client.SimpleResponseReceiver":{__init__:[422,3,1,""],connectionLost:[422,3,1,""],dataReceived:[422,3,1,""]},"evennia.server.game_index_client.client.StringProducer":{__init__:[422,3,1,""],pauseProducing:[422,3,1,""],startProducing:[422,3,1,""],stopProducing:[422,3,1,""]},"evennia.server.game_index_client.service":{EvenniaGameIndexService:[423,1,1,""]},"evennia.server.game_index_client.service.EvenniaGameIndexService":{__init__:[423,3,1,""],name:[423,4,1,""],startService:[423,3,1,""],stopService:[423,3,1,""]},"evennia.server.initial_setup":{at_initial_setup:[424,5,1,""],collectstatic:[424,5,1,""],create_objects:[424,5,1,""],handle_setup:[424,5,1,""],reset_server:[424,5,1,""]},"evennia.server.inputfuncs":{"default":[425,5,1,""],bot_data_in:[425,5,1,""],client_gui:[425,5,1,""],client_options:[425,5,1,""],echo:[425,5,1,""],external_discord_hello:[425,5,1,""],get_client_options:[425,5,1,""],get_inputfuncs:[425,5,1,""],get_value:[425,5,1,""],hello:[425,5,1,""],login:[425,5,1,""],monitor:[425,5,1,""],monitored:[425,5,1,""],msdp_list:[425,5,1,""],msdp_report:[425,5,1,""],msdp_send:[425,5,1,""],msdp_unreport:[425,5,1,""],repeat:[425,5,1,""],supports_set:[425,5,1,""],text:[425,5,1,""],unmonitor:[425,5,1,""],unrepeat:[425,5,1,""],webclient_options:[425,5,1,""]},"evennia.server.manager":{ServerConfigManager:[426,1,1,""]},"evennia.server.manager.ServerConfigManager":{conf:[426,3,1,""]},"evennia.server.models":{ServerConfig:[427,1,1,""]},"evennia.server.models.ServerConfig":{DoesNotExist:[427,2,1,""],MultipleObjectsReturned:[427,2,1,""],db_key:[427,4,1,""],db_value:[427,4,1,""],id:[427,4,1,""],key:[427,3,1,""],objects:[427,4,1,""],path:[427,4,1,""],store:[427,3,1,""],typename:[427,4,1,""],value:[427,3,1,""]},"evennia.server.portal":{amp:[429,0,0,"-"],amp_server:[430,0,0,"-"],grapevine:[431,0,0,"-"],irc:[432,0,0,"-"],mccp:[433,0,0,"-"],mssp:[434,0,0,"-"],mxp:[435,0,0,"-"],naws:[436,0,0,"-"],portal:[437,0,0,"-"],portalsessionhandler:[438,0,0,"-"],rss:[439,0,0,"-"],ssh:[440,0,0,"-"],ssl:[441,0,0,"-"],suppress_ga:[442,0,0,"-"],telnet:[443,0,0,"-"],telnet_oob:[444,0,0,"-"],telnet_ssl:[445,0,0,"-"],tests:[446,0,0,"-"],ttype:[447,0,0,"-"],webclient:[448,0,0,"-"],webclient_ajax:[449,0,0,"-"]},"evennia.server.portal.amp":{AMPMultiConnectionProtocol:[429,1,1,""],AdminPortal2Server:[429,1,1,""],AdminServer2Portal:[429,1,1,""],Compressed:[429,1,1,""],FunctionCall:[429,1,1,""],MsgLauncher2Portal:[429,1,1,""],MsgPortal2Server:[429,1,1,""],MsgServer2Portal:[429,1,1,""],MsgStatus:[429,1,1,""],dumps:[429,5,1,""],loads:[429,5,1,""]},"evennia.server.portal.amp.AMPMultiConnectionProtocol":{__init__:[429,3,1,""],broadcast:[429,3,1,""],connectionLost:[429,3,1,""],connectionMade:[429,3,1,""],dataReceived:[429,3,1,""],data_in:[429,3,1,""],errback:[429,3,1,""],makeConnection:[429,3,1,""],receive_functioncall:[429,3,1,""],send_FunctionCall:[429,3,1,""],stringReceived:[429,3,1,""]},"evennia.server.portal.amp.AdminPortal2Server":{allErrors:[429,4,1,""],arguments:[429,4,1,""],commandName:[429,4,1,""],errors:[429,4,1,""],key:[429,4,1,""],response:[429,4,1,""],reverseErrors:[429,4,1,""]},"evennia.server.portal.amp.AdminServer2Portal":{allErrors:[429,4,1,""],arguments:[429,4,1,""],commandName:[429,4,1,""],errors:[429,4,1,""],key:[429,4,1,""],response:[429,4,1,""],reverseErrors:[429,4,1,""]},"evennia.server.portal.amp.Compressed":{fromBox:[429,3,1,""],fromString:[429,3,1,""],toBox:[429,3,1,""],toString:[429,3,1,""]},"evennia.server.portal.amp.FunctionCall":{allErrors:[429,4,1,""],arguments:[429,4,1,""],commandName:[429,4,1,""],errors:[429,4,1,""],key:[429,4,1,""],response:[429,4,1,""],reverseErrors:[429,4,1,""]},"evennia.server.portal.amp.MsgLauncher2Portal":{allErrors:[429,4,1,""],arguments:[429,4,1,""],commandName:[429,4,1,""],errors:[429,4,1,""],key:[429,4,1,""],response:[429,4,1,""],reverseErrors:[429,4,1,""]},"evennia.server.portal.amp.MsgPortal2Server":{allErrors:[429,4,1,""],arguments:[429,4,1,""],commandName:[429,4,1,""],errors:[429,4,1,""],key:[429,4,1,""],response:[429,4,1,""],reverseErrors:[429,4,1,""]},"evennia.server.portal.amp.MsgServer2Portal":{allErrors:[429,4,1,""],arguments:[429,4,1,""],commandName:[429,4,1,""],errors:[429,4,1,""],key:[429,4,1,""],response:[429,4,1,""],reverseErrors:[429,4,1,""]},"evennia.server.portal.amp.MsgStatus":{allErrors:[429,4,1,""],arguments:[429,4,1,""],commandName:[429,4,1,""],errors:[429,4,1,""],key:[429,4,1,""],response:[429,4,1,""],reverseErrors:[429,4,1,""]},"evennia.server.portal.amp_server":{AMPServerFactory:[430,1,1,""],AMPServerProtocol:[430,1,1,""],getenv:[430,5,1,""]},"evennia.server.portal.amp_server.AMPServerFactory":{__init__:[430,3,1,""],buildProtocol:[430,3,1,""],logPrefix:[430,3,1,""],noisy:[430,4,1,""]},"evennia.server.portal.amp_server.AMPServerProtocol":{connectionLost:[430,3,1,""],data_to_server:[430,3,1,""],get_status:[430,3,1,""],portal_receive_adminserver2portal:[430,3,1,""],portal_receive_launcher2portal:[430,3,1,""],portal_receive_server2portal:[430,3,1,""],portal_receive_status:[430,3,1,""],send_AdminPortal2Server:[430,3,1,""],send_MsgPortal2Server:[430,3,1,""],send_Status2Launcher:[430,3,1,""],start_server:[430,3,1,""],stop_server:[430,3,1,""],wait_for_disconnect:[430,3,1,""],wait_for_server_connect:[430,3,1,""]},"evennia.server.portal.grapevine":{GrapevineClient:[431,1,1,""],RestartingWebsocketServerFactory:[431,1,1,""]},"evennia.server.portal.grapevine.GrapevineClient":{__init__:[431,3,1,""],at_login:[431,3,1,""],data_in:[431,3,1,""],disconnect:[431,3,1,""],onClose:[431,3,1,""],onMessage:[431,3,1,""],onOpen:[431,3,1,""],send_authenticate:[431,3,1,""],send_channel:[431,3,1,""],send_default:[431,3,1,""],send_heartbeat:[431,3,1,""],send_subscribe:[431,3,1,""],send_unsubscribe:[431,3,1,""]},"evennia.server.portal.grapevine.RestartingWebsocketServerFactory":{__init__:[431,3,1,""],buildProtocol:[431,3,1,""],clientConnectionFailed:[431,3,1,""],clientConnectionLost:[431,3,1,""],factor:[431,4,1,""],initialDelay:[431,4,1,""],maxDelay:[431,4,1,""],reconnect:[431,3,1,""],start:[431,3,1,""],startedConnecting:[431,3,1,""]},"evennia.server.portal.irc":{IRCBot:[432,1,1,""],IRCBotFactory:[432,1,1,""],parse_ansi_to_irc:[432,5,1,""],parse_irc_to_ansi:[432,5,1,""]},"evennia.server.portal.irc.IRCBot":{action:[432,3,1,""],at_login:[432,3,1,""],channel:[432,4,1,""],data_in:[432,3,1,""],disconnect:[432,3,1,""],factory:[432,4,1,""],get_nicklist:[432,3,1,""],irc_RPL_ENDOFNAMES:[432,3,1,""],irc_RPL_NAMREPLY:[432,3,1,""],lineRate:[432,4,1,""],logger:[432,4,1,""],nickname:[432,4,1,""],pong:[432,3,1,""],privmsg:[432,3,1,""],send_channel:[432,3,1,""],send_default:[432,3,1,""],send_ping:[432,3,1,""],send_privmsg:[432,3,1,""],send_reconnect:[432,3,1,""],send_request_nicklist:[432,3,1,""],signedOn:[432,3,1,""],sourceURL:[432,4,1,""]},"evennia.server.portal.irc.IRCBotFactory":{__init__:[432,3,1,""],buildProtocol:[432,3,1,""],clientConnectionFailed:[432,3,1,""],clientConnectionLost:[432,3,1,""],factor:[432,4,1,""],initialDelay:[432,4,1,""],maxDelay:[432,4,1,""],reconnect:[432,3,1,""],start:[432,3,1,""],startedConnecting:[432,3,1,""]},"evennia.server.portal.mccp":{Mccp:[433,1,1,""],mccp_compress:[433,5,1,""]},"evennia.server.portal.mccp.Mccp":{__init__:[433,3,1,""],do_mccp:[433,3,1,""],no_mccp:[433,3,1,""]},"evennia.server.portal.mssp":{Mssp:[434,1,1,""]},"evennia.server.portal.mssp.Mssp":{__init__:[434,3,1,""],do_mssp:[434,3,1,""],get_player_count:[434,3,1,""],get_uptime:[434,3,1,""],no_mssp:[434,3,1,""]},"evennia.server.portal.mxp":{Mxp:[435,1,1,""],mxp_parse:[435,5,1,""]},"evennia.server.portal.mxp.Mxp":{__init__:[435,3,1,""],do_mxp:[435,3,1,""],no_mxp:[435,3,1,""]},"evennia.server.portal.naws":{Naws:[436,1,1,""]},"evennia.server.portal.naws.Naws":{__init__:[436,3,1,""],do_naws:[436,3,1,""],negotiate_sizes:[436,3,1,""],no_naws:[436,3,1,""]},"evennia.server.portal.portal":{Portal:[437,1,1,""],Websocket:[437,1,1,""]},"evennia.server.portal.portal.Portal":{__init__:[437,3,1,""],get_info_dict:[437,3,1,""],shutdown:[437,3,1,""]},"evennia.server.portal.portalsessionhandler":{PortalSessionHandler:[438,1,1,""]},"evennia.server.portal.portalsessionhandler.PortalSessionHandler":{__init__:[438,3,1,""],announce_all:[438,3,1,""],at_server_connection:[438,3,1,""],connect:[438,3,1,""],count_loggedin:[438,3,1,""],data_in:[438,3,1,""],data_out:[438,3,1,""],disconnect:[438,3,1,""],disconnect_all:[438,3,1,""],generate_sessid:[438,3,1,""],server_connect:[438,3,1,""],server_disconnect:[438,3,1,""],server_disconnect_all:[438,3,1,""],server_logged_in:[438,3,1,""],server_session_sync:[438,3,1,""],sessions_from_csessid:[438,3,1,""],sync:[438,3,1,""]},"evennia.server.portal.rss":{RSSBotFactory:[439,1,1,""],RSSReader:[439,1,1,""]},"evennia.server.portal.rss.RSSBotFactory":{__init__:[439,3,1,""],start:[439,3,1,""]},"evennia.server.portal.rss.RSSReader":{__init__:[439,3,1,""],data_in:[439,3,1,""],disconnect:[439,3,1,""],get_new:[439,3,1,""],update:[439,3,1,""]},"evennia.server.portal.ssh":{AccountDBPasswordChecker:[440,1,1,""],ExtraInfoAuthServer:[440,1,1,""],PassAvatarIdTerminalRealm:[440,1,1,""],SSHServerFactory:[440,1,1,""],SshProtocol:[440,1,1,""],TerminalSessionTransport_getPeer:[440,1,1,""],getKeyPair:[440,5,1,""],makeFactory:[440,5,1,""]},"evennia.server.portal.ssh.AccountDBPasswordChecker":{__init__:[440,3,1,""],credentialInterfaces:[440,4,1,""],noisy:[440,4,1,""],requestAvatarId:[440,3,1,""]},"evennia.server.portal.ssh.ExtraInfoAuthServer":{auth_password:[440,3,1,""],noisy:[440,4,1,""]},"evennia.server.portal.ssh.PassAvatarIdTerminalRealm":{noisy:[440,4,1,""]},"evennia.server.portal.ssh.SSHServerFactory":{logPrefix:[440,3,1,""],noisy:[440,4,1,""]},"evennia.server.portal.ssh.SshProtocol":{__init__:[440,3,1,""],at_login:[440,3,1,""],connectionLost:[440,3,1,""],connectionMade:[440,3,1,""],data_out:[440,3,1,""],disconnect:[440,3,1,""],getClientAddress:[440,3,1,""],handle_EOF:[440,3,1,""],handle_FF:[440,3,1,""],handle_INT:[440,3,1,""],handle_QUIT:[440,3,1,""],lineReceived:[440,3,1,""],noisy:[440,4,1,""],sendLine:[440,3,1,""],send_default:[440,3,1,""],send_prompt:[440,3,1,""],send_text:[440,3,1,""],terminalSize:[440,3,1,""]},"evennia.server.portal.ssh.TerminalSessionTransport_getPeer":{__init__:[440,3,1,""],noisy:[440,4,1,""]},"evennia.server.portal.ssl":{SSLProtocol:[441,1,1,""],getSSLContext:[441,5,1,""],verify_SSL_key_and_cert:[441,5,1,""]},"evennia.server.portal.ssl.SSLProtocol":{__init__:[441,3,1,""]},"evennia.server.portal.suppress_ga":{SuppressGA:[442,1,1,""]},"evennia.server.portal.suppress_ga.SuppressGA":{__init__:[442,3,1,""],will_suppress_ga:[442,3,1,""],wont_suppress_ga:[442,3,1,""]},"evennia.server.portal.telnet":{TelnetProtocol:[443,1,1,""],TelnetServerFactory:[443,1,1,""]},"evennia.server.portal.telnet.TelnetProtocol":{__init__:[443,3,1,""],applicationDataReceived:[443,3,1,""],at_login:[443,3,1,""],connectionLost:[443,3,1,""],connectionMade:[443,3,1,""],dataReceived:[443,3,1,""],data_in:[443,3,1,""],data_out:[443,3,1,""],disableLocal:[443,3,1,""],disableRemote:[443,3,1,""],disconnect:[443,3,1,""],enableLocal:[443,3,1,""],enableRemote:[443,3,1,""],handshake_done:[443,3,1,""],sendLine:[443,3,1,""],send_default:[443,3,1,""],send_prompt:[443,3,1,""],send_text:[443,3,1,""],toggle_nop_keepalive:[443,3,1,""]},"evennia.server.portal.telnet.TelnetServerFactory":{logPrefix:[443,3,1,""],noisy:[443,4,1,""]},"evennia.server.portal.telnet_oob":{TelnetOOB:[444,1,1,""]},"evennia.server.portal.telnet_oob.TelnetOOB":{__init__:[444,3,1,""],data_out:[444,3,1,""],decode_gmcp:[444,3,1,""],decode_msdp:[444,3,1,""],do_gmcp:[444,3,1,""],do_msdp:[444,3,1,""],encode_gmcp:[444,3,1,""],encode_msdp:[444,3,1,""],no_gmcp:[444,3,1,""],no_msdp:[444,3,1,""]},"evennia.server.portal.telnet_ssl":{SSLProtocol:[445,1,1,""],getSSLContext:[445,5,1,""],verify_or_create_SSL_key_and_cert:[445,5,1,""]},"evennia.server.portal.telnet_ssl.SSLProtocol":{__init__:[445,3,1,""]},"evennia.server.portal.tests":{TestAMPServer:[446,1,1,""],TestIRC:[446,1,1,""],TestTelnet:[446,1,1,""],TestWebSocket:[446,1,1,""]},"evennia.server.portal.tests.TestAMPServer":{setUp:[446,3,1,""],test_amp_in:[446,3,1,""],test_amp_out:[446,3,1,""],test_large_msg:[446,3,1,""]},"evennia.server.portal.tests.TestIRC":{test_bold:[446,3,1,""],test_colors:[446,3,1,""],test_identity:[446,3,1,""],test_italic:[446,3,1,""],test_plain_ansi:[446,3,1,""]},"evennia.server.portal.tests.TestTelnet":{setUp:[446,3,1,""],test_mudlet_ttype:[446,3,1,""]},"evennia.server.portal.tests.TestWebSocket":{setUp:[446,3,1,""],tearDown:[446,3,1,""],test_data_in:[446,3,1,""],test_data_out:[446,3,1,""]},"evennia.server.portal.ttype":{Ttype:[447,1,1,""]},"evennia.server.portal.ttype.Ttype":{__init__:[447,3,1,""],will_ttype:[447,3,1,""],wont_ttype:[447,3,1,""]},"evennia.server.portal.webclient":{WebSocketClient:[448,1,1,""]},"evennia.server.portal.webclient.WebSocketClient":{__init__:[448,3,1,""],at_login:[448,3,1,""],data_in:[448,3,1,""],disconnect:[448,3,1,""],get_client_session:[448,3,1,""],nonce:[448,4,1,""],onClose:[448,3,1,""],onMessage:[448,3,1,""],onOpen:[448,3,1,""],sendLine:[448,3,1,""],send_default:[448,3,1,""],send_prompt:[448,3,1,""],send_text:[448,3,1,""]},"evennia.server.portal.webclient_ajax":{AjaxWebClient:[449,1,1,""],AjaxWebClientSession:[449,1,1,""],LazyEncoder:[449,1,1,""],jsonify:[449,5,1,""]},"evennia.server.portal.webclient_ajax.AjaxWebClient":{__init__:[449,3,1,""],allowedMethods:[449,4,1,""],at_login:[449,3,1,""],client_disconnect:[449,3,1,""],get_browserstr:[449,3,1,""],get_client_sessid:[449,3,1,""],isLeaf:[449,4,1,""],lineSend:[449,3,1,""],mode_close:[449,3,1,""],mode_init:[449,3,1,""],mode_input:[449,3,1,""],mode_keepalive:[449,3,1,""],mode_receive:[449,3,1,""],render_POST:[449,3,1,""]},"evennia.server.portal.webclient_ajax.AjaxWebClientSession":{__init__:[449,3,1,""],at_login:[449,3,1,""],data_in:[449,3,1,""],data_out:[449,3,1,""],disconnect:[449,3,1,""],get_client_session:[449,3,1,""],send_default:[449,3,1,""],send_prompt:[449,3,1,""],send_text:[449,3,1,""]},"evennia.server.portal.webclient_ajax.LazyEncoder":{"default":[449,3,1,""]},"evennia.server.profiling":{dummyrunner:[451,0,0,"-"],dummyrunner_settings:[452,0,0,"-"],memplot:[453,0,0,"-"],settings_mixin:[454,0,0,"-"],test_queries:[455,0,0,"-"],tests:[456,0,0,"-"],timetrace:[457,0,0,"-"]},"evennia.server.profiling.dummyrunner":{CmdDummyRunnerEchoResponse:[451,1,1,""],DummyClient:[451,1,1,""],DummyFactory:[451,1,1,""],DummyRunnerCmdSet:[451,1,1,""],gidcounter:[451,5,1,""],idcounter:[451,5,1,""],makeiter:[451,5,1,""],start_all_dummy_clients:[451,5,1,""]},"evennia.server.profiling.dummyrunner.CmdDummyRunnerEchoResponse":{aliases:[451,4,1,""],func:[451,3,1,""],help_category:[451,4,1,""],key:[451,4,1,""],lock_storage:[451,4,1,""],search_index_entry:[451,4,1,""]},"evennia.server.profiling.dummyrunner.DummyClient":{connectionLost:[451,3,1,""],connectionMade:[451,3,1,""],counter:[451,3,1,""],dataReceived:[451,3,1,""],error:[451,3,1,""],logout:[451,3,1,""],report:[451,3,1,""],step:[451,3,1,""]},"evennia.server.profiling.dummyrunner.DummyFactory":{__init__:[451,3,1,""],initialDelay:[451,4,1,""],maxDelay:[451,4,1,""],noisy:[451,4,1,""],protocol:[451,4,1,""]},"evennia.server.profiling.dummyrunner.DummyRunnerCmdSet":{at_cmdset_creation:[451,3,1,""],path:[451,4,1,""]},"evennia.server.profiling.dummyrunner_settings":{c_creates_button:[452,5,1,""],c_creates_obj:[452,5,1,""],c_digs:[452,5,1,""],c_examines:[452,5,1,""],c_help:[452,5,1,""],c_idles:[452,5,1,""],c_login:[452,5,1,""],c_login_nodig:[452,5,1,""],c_logout:[452,5,1,""],c_looks:[452,5,1,""],c_measure_lag:[452,5,1,""],c_moves:[452,5,1,""],c_moves_n:[452,5,1,""],c_moves_s:[452,5,1,""],c_socialize:[452,5,1,""]},"evennia.server.profiling.memplot":{Memplot:[453,1,1,""]},"evennia.server.profiling.memplot.Memplot":{DoesNotExist:[453,2,1,""],MultipleObjectsReturned:[453,2,1,""],at_repeat:[453,3,1,""],at_script_creation:[453,3,1,""],path:[453,4,1,""],typename:[453,4,1,""]},"evennia.server.profiling.test_queries":{count_queries:[455,5,1,""]},"evennia.server.profiling.tests":{TestDummyrunnerSettings:[456,1,1,""],TestMemPlot:[456,1,1,""]},"evennia.server.profiling.tests.TestDummyrunnerSettings":{clear_client_lists:[456,3,1,""],perception_method_tests:[456,3,1,""],setUp:[456,3,1,""],test_c_creates_button:[456,3,1,""],test_c_creates_obj:[456,3,1,""],test_c_digs:[456,3,1,""],test_c_examines:[456,3,1,""],test_c_help:[456,3,1,""],test_c_login:[456,3,1,""],test_c_login_no_dig:[456,3,1,""],test_c_logout:[456,3,1,""],test_c_looks:[456,3,1,""],test_c_move_n:[456,3,1,""],test_c_move_s:[456,3,1,""],test_c_moves:[456,3,1,""],test_c_socialize:[456,3,1,""],test_idles:[456,3,1,""]},"evennia.server.profiling.tests.TestMemPlot":{test_memplot:[456,3,1,""]},"evennia.server.profiling.timetrace":{timetrace:[457,5,1,""]},"evennia.server.server":{Evennia:[458,1,1,""]},"evennia.server.server.Evennia":{__init__:[458,3,1,""],at_post_portal_sync:[458,3,1,""],at_server_cold_start:[458,3,1,""],at_server_cold_stop:[458,3,1,""],at_server_reload_start:[458,3,1,""],at_server_reload_stop:[458,3,1,""],at_server_start:[458,3,1,""],at_server_stop:[458,3,1,""],create_default_channels:[458,3,1,""],get_info_dict:[458,3,1,""],run_init_hooks:[458,3,1,""],run_initial_setup:[458,3,1,""],shutdown:[458,3,1,""],sqlite3_prep:[458,3,1,""],update_defaults:[458,3,1,""]},"evennia.server.serversession":{ServerSession:[459,1,1,""]},"evennia.server.serversession.ServerSession":{__init__:[459,3,1,""],access:[459,3,1,""],at_cmdset_get:[459,3,1,""],at_disconnect:[459,3,1,""],at_login:[459,3,1,""],at_sync:[459,3,1,""],attributes:[459,4,1,""],cmdset_storage:[459,3,1,""],data_in:[459,3,1,""],data_out:[459,3,1,""],db:[459,3,1,""],execute_cmd:[459,3,1,""],get_account:[459,3,1,""],get_character:[459,3,1,""],get_client_size:[459,3,1,""],get_puppet:[459,3,1,""],get_puppet_or_account:[459,3,1,""],id:[459,3,1,""],log:[459,3,1,""],msg:[459,3,1,""],nattributes:[459,4,1,""],ndb:[459,3,1,""],ndb_del:[459,3,1,""],ndb_get:[459,3,1,""],ndb_set:[459,3,1,""],update_flags:[459,3,1,""],update_session_counters:[459,3,1,""]},"evennia.server.session":{Session:[460,1,1,""]},"evennia.server.session.Session":{at_sync:[460,3,1,""],data_in:[460,3,1,""],data_out:[460,3,1,""],disconnect:[460,3,1,""],get_sync_data:[460,3,1,""],init_session:[460,3,1,""],load_sync_data:[460,3,1,""]},"evennia.server.sessionhandler":{DummySession:[461,1,1,""],ServerSessionHandler:[461,1,1,""],SessionHandler:[461,1,1,""],delayed_import:[461,5,1,""]},"evennia.server.sessionhandler.DummySession":{sessid:[461,4,1,""]},"evennia.server.sessionhandler.ServerSessionHandler":{__init__:[461,3,1,""],account_count:[461,3,1,""],all_connected_accounts:[461,3,1,""],all_sessions_portal_sync:[461,3,1,""],announce_all:[461,3,1,""],call_inputfuncs:[461,3,1,""],data_in:[461,3,1,""],data_out:[461,3,1,""],disconnect:[461,3,1,""],disconnect_all_sessions:[461,3,1,""],disconnect_duplicate_sessions:[461,3,1,""],get_inputfuncs:[461,3,1,""],login:[461,3,1,""],portal_connect:[461,3,1,""],portal_disconnect:[461,3,1,""],portal_disconnect_all:[461,3,1,""],portal_reset_server:[461,3,1,""],portal_restart_server:[461,3,1,""],portal_session_sync:[461,3,1,""],portal_sessions_sync:[461,3,1,""],portal_shutdown:[461,3,1,""],session_from_account:[461,3,1,""],session_from_sessid:[461,3,1,""],session_portal_partial_sync:[461,3,1,""],session_portal_sync:[461,3,1,""],sessions_from_account:[461,3,1,""],sessions_from_character:[461,3,1,""],sessions_from_csessid:[461,3,1,""],sessions_from_puppet:[461,3,1,""],start_bot_session:[461,3,1,""],validate_sessions:[461,3,1,""]},"evennia.server.sessionhandler.SessionHandler":{clean_senddata:[461,3,1,""],get:[461,3,1,""],get_all_sync_data:[461,3,1,""],get_sessions:[461,3,1,""]},"evennia.server.throttle":{Throttle:[463,1,1,""]},"evennia.server.throttle.Throttle":{__init__:[463,3,1,""],check:[463,3,1,""],error_msg:[463,4,1,""],get:[463,3,1,""],get_cache_key:[463,3,1,""],record_ip:[463,3,1,""],remove:[463,3,1,""],touch:[463,3,1,""],unrecord_ip:[463,3,1,""],update:[463,3,1,""]},"evennia.server.validators":{EvenniaPasswordValidator:[464,1,1,""],EvenniaUsernameAvailabilityValidator:[464,1,1,""]},"evennia.server.validators.EvenniaPasswordValidator":{__init__:[464,3,1,""],get_help_text:[464,3,1,""],validate:[464,3,1,""]},"evennia.server.webserver":{DjangoWebRoot:[465,1,1,""],EvenniaReverseProxyResource:[465,1,1,""],HTTPChannelWithXForwardedFor:[465,1,1,""],LockableThreadPool:[465,1,1,""],PrivateStaticRoot:[465,1,1,""],WSGIWebServer:[465,1,1,""],Website:[465,1,1,""]},"evennia.server.webserver.DjangoWebRoot":{__init__:[465,3,1,""],empty_threadpool:[465,3,1,""],getChild:[465,3,1,""]},"evennia.server.webserver.EvenniaReverseProxyResource":{getChild:[465,3,1,""],render:[465,3,1,""]},"evennia.server.webserver.HTTPChannelWithXForwardedFor":{allHeadersReceived:[465,3,1,""]},"evennia.server.webserver.LockableThreadPool":{__init__:[465,3,1,""],callInThread:[465,3,1,""],lock:[465,3,1,""]},"evennia.server.webserver.PrivateStaticRoot":{directoryListing:[465,3,1,""]},"evennia.server.webserver.WSGIWebServer":{__init__:[465,3,1,""],startService:[465,3,1,""],stopService:[465,3,1,""]},"evennia.server.webserver.Website":{log:[465,3,1,""],logPrefix:[465,3,1,""],noisy:[465,4,1,""]},"evennia.typeclasses":{attributes:[468,0,0,"-"],managers:[469,0,0,"-"],models:[470,0,0,"-"],tags:[471,0,0,"-"]},"evennia.typeclasses.attributes":{Attribute:[468,1,1,""],AttributeHandler:[468,1,1,""],AttributeProperty:[468,1,1,""],DbHolder:[468,1,1,""],IAttribute:[468,1,1,""],IAttributeBackend:[468,1,1,""],InMemoryAttribute:[468,1,1,""],InMemoryAttributeBackend:[468,1,1,""],ModelAttributeBackend:[468,1,1,""],NAttributeProperty:[468,1,1,""],NickHandler:[468,1,1,""],NickTemplateInvalid:[468,2,1,""],initialize_nick_templates:[468,5,1,""],parse_nick_template:[468,5,1,""]},"evennia.typeclasses.attributes.Attribute":{DoesNotExist:[468,2,1,""],MultipleObjectsReturned:[468,2,1,""],accountdb_set:[468,4,1,""],attrtype:[468,3,1,""],category:[468,3,1,""],channeldb_set:[468,4,1,""],date_created:[468,3,1,""],db_attrtype:[468,4,1,""],db_category:[468,4,1,""],db_date_created:[468,4,1,""],db_key:[468,4,1,""],db_lock_storage:[468,4,1,""],db_model:[468,4,1,""],db_strvalue:[468,4,1,""],db_value:[468,4,1,""],get_next_by_db_date_created:[468,3,1,""],get_previous_by_db_date_created:[468,3,1,""],id:[468,4,1,""],key:[468,3,1,""],lock_storage:[468,3,1,""],model:[468,3,1,""],objectdb_set:[468,4,1,""],path:[468,4,1,""],scriptdb_set:[468,4,1,""],strvalue:[468,3,1,""],typename:[468,4,1,""],value:[468,3,1,""]},"evennia.typeclasses.attributes.AttributeHandler":{__init__:[468,3,1,""],add:[468,3,1,""],all:[468,3,1,""],batch_add:[468,3,1,""],clear:[468,3,1,""],get:[468,3,1,""],has:[468,3,1,""],remove:[468,3,1,""],reset_cache:[468,3,1,""]},"evennia.typeclasses.attributes.AttributeProperty":{__init__:[468,3,1,""],at_get:[468,3,1,""],at_set:[468,3,1,""],attrhandler_name:[468,4,1,""]},"evennia.typeclasses.attributes.DbHolder":{__init__:[468,3,1,""],all:[468,3,1,""],get_all:[468,3,1,""]},"evennia.typeclasses.attributes.IAttribute":{access:[468,3,1,""],attrtype:[468,3,1,""],category:[468,3,1,""],date_created:[468,3,1,""],key:[468,3,1,""],lock_storage:[468,3,1,""],locks:[468,4,1,""],model:[468,3,1,""],strvalue:[468,3,1,""]},"evennia.typeclasses.attributes.IAttributeBackend":{__init__:[468,3,1,""],batch_add:[468,3,1,""],clear_attributes:[468,3,1,""],create_attribute:[468,3,1,""],delete_attribute:[468,3,1,""],do_batch_delete:[468,3,1,""],do_batch_finish:[468,3,1,""],do_batch_update_attribute:[468,3,1,""],do_create_attribute:[468,3,1,""],do_delete_attribute:[468,3,1,""],do_update_attribute:[468,3,1,""],get:[468,3,1,""],get_all_attributes:[468,3,1,""],query_all:[468,3,1,""],query_category:[468,3,1,""],query_key:[468,3,1,""],reset_cache:[468,3,1,""],update_attribute:[468,3,1,""]},"evennia.typeclasses.attributes.InMemoryAttribute":{__init__:[468,3,1,""],value:[468,3,1,""]},"evennia.typeclasses.attributes.InMemoryAttributeBackend":{__init__:[468,3,1,""],do_batch_finish:[468,3,1,""],do_batch_update_attribute:[468,3,1,""],do_create_attribute:[468,3,1,""],do_delete_attribute:[468,3,1,""],do_update_attribute:[468,3,1,""],query_all:[468,3,1,""],query_category:[468,3,1,""],query_key:[468,3,1,""]},"evennia.typeclasses.attributes.ModelAttributeBackend":{__init__:[468,3,1,""],do_batch_finish:[468,3,1,""],do_batch_update_attribute:[468,3,1,""],do_create_attribute:[468,3,1,""],do_delete_attribute:[468,3,1,""],do_update_attribute:[468,3,1,""],query_all:[468,3,1,""],query_category:[468,3,1,""],query_key:[468,3,1,""]},"evennia.typeclasses.attributes.NAttributeProperty":{attrhandler_name:[468,4,1,""]},"evennia.typeclasses.attributes.NickHandler":{__init__:[468,3,1,""],add:[468,3,1,""],get:[468,3,1,""],has:[468,3,1,""],nickreplace:[468,3,1,""],remove:[468,3,1,""]},"evennia.typeclasses.managers":{TypedObjectManager:[469,1,1,""]},"evennia.typeclasses.managers.TypedObjectManager":{create_tag:[469,3,1,""],dbref:[469,3,1,""],dbref_search:[469,3,1,""],get_alias:[469,3,1,""],get_attribute:[469,3,1,""],get_by_alias:[469,3,1,""],get_by_attribute:[469,3,1,""],get_by_nick:[469,3,1,""],get_by_permission:[469,3,1,""],get_by_tag:[469,3,1,""],get_dbref_range:[469,3,1,""],get_id:[469,3,1,""],get_nick:[469,3,1,""],get_permission:[469,3,1,""],get_tag:[469,3,1,""],get_typeclass_totals:[469,3,1,""],object_totals:[469,3,1,""],typeclass_search:[469,3,1,""]},"evennia.typeclasses.models":{TypedObject:[470,1,1,""]},"evennia.typeclasses.models.TypedObject":{"delete":[470,3,1,""],Meta:[470,1,1,""],__init__:[470,3,1,""],access:[470,3,1,""],aliases:[470,4,1,""],at_idmapper_flush:[470,3,1,""],at_init:[470,3,1,""],at_rename:[470,3,1,""],attributes:[470,4,1,""],check_permstring:[470,3,1,""],date_created:[470,3,1,""],db:[470,3,1,""],db_attributes:[470,4,1,""],db_date_created:[470,4,1,""],db_key:[470,4,1,""],db_lock_storage:[470,4,1,""],db_tags:[470,4,1,""],db_typeclass_path:[470,4,1,""],dbid:[470,3,1,""],dbref:[470,3,1,""],get_absolute_url:[470,3,1,""],get_display_name:[470,3,1,""],get_extra_info:[470,3,1,""],get_next_by_db_date_created:[470,3,1,""],get_previous_by_db_date_created:[470,3,1,""],init_evennia_properties:[470,3,1,""],is_typeclass:[470,3,1,""],key:[470,3,1,""],lock_storage:[470,3,1,""],locks:[470,4,1,""],name:[470,3,1,""],nattributes:[470,4,1,""],ndb:[470,3,1,""],objects:[470,4,1,""],path:[470,4,1,""],permissions:[470,4,1,""],search:[470,3,1,""],set_class_from_typeclass:[470,3,1,""],swap_typeclass:[470,3,1,""],tags:[470,4,1,""],typeclass_path:[470,3,1,""],typename:[470,4,1,""],web_get_admin_url:[470,3,1,""],web_get_create_url:[470,3,1,""],web_get_delete_url:[470,3,1,""],web_get_detail_url:[470,3,1,""],web_get_puppet_url:[470,3,1,""],web_get_update_url:[470,3,1,""]},"evennia.typeclasses.models.TypedObject.Meta":{"abstract":[470,4,1,""],ordering:[470,4,1,""],verbose_name:[470,4,1,""]},"evennia.typeclasses.tags":{AliasHandler:[471,1,1,""],AliasProperty:[471,1,1,""],PermissionHandler:[471,1,1,""],PermissionProperty:[471,1,1,""],Tag:[471,1,1,""],TagHandler:[471,1,1,""],TagProperty:[471,1,1,""]},"evennia.typeclasses.tags.AliasProperty":{taghandler_name:[471,4,1,""]},"evennia.typeclasses.tags.PermissionHandler":{check:[471,3,1,""]},"evennia.typeclasses.tags.PermissionProperty":{taghandler_name:[471,4,1,""]},"evennia.typeclasses.tags.Tag":{DoesNotExist:[471,2,1,""],MultipleObjectsReturned:[471,2,1,""],accountdb_set:[471,4,1,""],channeldb_set:[471,4,1,""],db_category:[471,4,1,""],db_data:[471,4,1,""],db_key:[471,4,1,""],db_model:[471,4,1,""],db_tagtype:[471,4,1,""],helpentry_set:[471,4,1,""],id:[471,4,1,""],msg_set:[471,4,1,""],objectdb_set:[471,4,1,""],objects:[471,4,1,""],scriptdb_set:[471,4,1,""]},"evennia.typeclasses.tags.TagHandler":{__init__:[471,3,1,""],add:[471,3,1,""],all:[471,3,1,""],batch_add:[471,3,1,""],clear:[471,3,1,""],get:[471,3,1,""],has:[471,3,1,""],remove:[471,3,1,""],reset_cache:[471,3,1,""]},"evennia.typeclasses.tags.TagProperty":{__init__:[471,3,1,""],taghandler_name:[471,4,1,""]},"evennia.utils":{ansi:[473,0,0,"-"],batchprocessors:[474,0,0,"-"],containers:[475,0,0,"-"],create:[476,0,0,"-"],dbserialize:[477,0,0,"-"],eveditor:[478,0,0,"-"],evform:[479,0,0,"-"],evmenu:[480,0,0,"-"],evmore:[481,0,0,"-"],evtable:[482,0,0,"-"],funcparser:[483,0,0,"-"],gametime:[484,0,0,"-"],idmapper:[485,0,0,"-"],logger:[489,0,0,"-"],optionclasses:[490,0,0,"-"],optionhandler:[491,0,0,"-"],picklefield:[492,0,0,"-"],search:[493,0,0,"-"],test_resources:[494,0,0,"-"],text2html:[495,0,0,"-"],utils:[496,0,0,"-"],validatorfuncs:[497,0,0,"-"],verb_conjugation:[498,0,0,"-"]},"evennia.utils.ansi":{ANSIMeta:[473,1,1,""],ANSIParser:[473,1,1,""],ANSIString:[473,1,1,""],parse_ansi:[473,5,1,""],raw:[473,5,1,""],strip_ansi:[473,5,1,""],strip_mxp:[473,5,1,""],strip_raw_ansi:[473,5,1,""],strip_unsafe_tokens:[473,5,1,""]},"evennia.utils.ansi.ANSIMeta":{__init__:[473,3,1,""]},"evennia.utils.ansi.ANSIParser":{ansi_escapes:[473,4,1,""],ansi_map:[473,4,1,""],ansi_map_dict:[473,4,1,""],ansi_re:[473,4,1,""],ansi_regex:[473,4,1,""],ansi_sub:[473,4,1,""],ansi_xterm256_bright_bg_map:[473,4,1,""],ansi_xterm256_bright_bg_map_dict:[473,4,1,""],brightbg_sub:[473,4,1,""],mxp_re:[473,4,1,""],mxp_sub:[473,4,1,""],mxp_url_re:[473,4,1,""],mxp_url_sub:[473,4,1,""],parse_ansi:[473,3,1,""],strip_mxp:[473,3,1,""],strip_raw_codes:[473,3,1,""],strip_unsafe_tokens:[473,3,1,""],sub_ansi:[473,3,1,""],sub_brightbg:[473,3,1,""],sub_xterm256:[473,3,1,""],unsafe_tokens:[473,4,1,""],xterm256_bg:[473,4,1,""],xterm256_bg_sub:[473,4,1,""],xterm256_fg:[473,4,1,""],xterm256_fg_sub:[473,4,1,""],xterm256_gbg:[473,4,1,""],xterm256_gbg_sub:[473,4,1,""],xterm256_gfg:[473,4,1,""],xterm256_gfg_sub:[473,4,1,""]},"evennia.utils.ansi.ANSIString":{__init__:[473,3,1,""],capitalize:[473,3,1,""],center:[473,3,1,""],clean:[473,3,1,""],count:[473,3,1,""],decode:[473,3,1,""],encode:[473,3,1,""],endswith:[473,3,1,""],expandtabs:[473,3,1,""],find:[473,3,1,""],format:[473,3,1,""],index:[473,3,1,""],isalnum:[473,3,1,""],isalpha:[473,3,1,""],isdigit:[473,3,1,""],islower:[473,3,1,""],isspace:[473,3,1,""],istitle:[473,3,1,""],isupper:[473,3,1,""],join:[473,3,1,""],ljust:[473,3,1,""],lower:[473,3,1,""],lstrip:[473,3,1,""],partition:[473,3,1,""],raw:[473,3,1,""],re_format:[473,4,1,""],replace:[473,3,1,""],rfind:[473,3,1,""],rindex:[473,3,1,""],rjust:[473,3,1,""],rsplit:[473,3,1,""],rstrip:[473,3,1,""],split:[473,3,1,""],startswith:[473,3,1,""],strip:[473,3,1,""],swapcase:[473,3,1,""],translate:[473,3,1,""],upper:[473,3,1,""]},"evennia.utils.batchprocessors":{BatchCodeProcessor:[474,1,1,""],BatchCommandProcessor:[474,1,1,""],read_batchfile:[474,5,1,""],tb_filename:[474,5,1,""],tb_iter:[474,5,1,""]},"evennia.utils.batchprocessors.BatchCodeProcessor":{code_exec:[474,3,1,""],parse_file:[474,3,1,""]},"evennia.utils.batchprocessors.BatchCommandProcessor":{parse_file:[474,3,1,""]},"evennia.utils.containers":{Container:[475,1,1,""],GlobalScriptContainer:[475,1,1,""],OptionContainer:[475,1,1,""]},"evennia.utils.containers.Container":{__init__:[475,3,1,""],all:[475,3,1,""],get:[475,3,1,""],load_data:[475,3,1,""],storage_modules:[475,4,1,""]},"evennia.utils.containers.GlobalScriptContainer":{__init__:[475,3,1,""],all:[475,3,1,""],get:[475,3,1,""],load_data:[475,3,1,""],start:[475,3,1,""]},"evennia.utils.containers.OptionContainer":{storage_modules:[475,4,1,""]},"evennia.utils.create":{create_account:[476,5,1,""],create_channel:[476,5,1,""],create_help_entry:[476,5,1,""],create_message:[476,5,1,""],create_object:[476,5,1,""],create_script:[476,5,1,""]},"evennia.utils.dbserialize":{dbserialize:[477,5,1,""],dbunserialize:[477,5,1,""],do_pickle:[477,5,1,""],do_unpickle:[477,5,1,""],from_pickle:[477,5,1,""],to_pickle:[477,5,1,""]},"evennia.utils.eveditor":{CmdEditorBase:[478,1,1,""],CmdEditorGroup:[478,1,1,""],CmdLineInput:[478,1,1,""],CmdSaveYesNo:[478,1,1,""],EvEditor:[478,1,1,""],EvEditorCmdSet:[478,1,1,""],SaveYesNoCmdSet:[478,1,1,""]},"evennia.utils.eveditor.CmdEditorBase":{aliases:[478,4,1,""],editor:[478,4,1,""],help_category:[478,4,1,""],help_entry:[478,4,1,""],key:[478,4,1,""],lock_storage:[478,4,1,""],locks:[478,4,1,""],parse:[478,3,1,""],search_index_entry:[478,4,1,""]},"evennia.utils.eveditor.CmdEditorGroup":{aliases:[478,4,1,""],arg_regex:[478,4,1,""],func:[478,3,1,""],help_category:[478,4,1,""],key:[478,4,1,""],lock_storage:[478,4,1,""],search_index_entry:[478,4,1,""]},"evennia.utils.eveditor.CmdLineInput":{aliases:[478,4,1,""],func:[478,3,1,""],help_category:[478,4,1,""],key:[478,4,1,""],lock_storage:[478,4,1,""],search_index_entry:[478,4,1,""]},"evennia.utils.eveditor.CmdSaveYesNo":{aliases:[478,4,1,""],func:[478,3,1,""],help_category:[478,4,1,""],help_cateogory:[478,4,1,""],key:[478,4,1,""],lock_storage:[478,4,1,""],locks:[478,4,1,""],search_index_entry:[478,4,1,""]},"evennia.utils.eveditor.EvEditor":{__init__:[478,3,1,""],decrease_indent:[478,3,1,""],deduce_indent:[478,3,1,""],display_buffer:[478,3,1,""],display_help:[478,3,1,""],get_buffer:[478,3,1,""],increase_indent:[478,3,1,""],load_buffer:[478,3,1,""],quit:[478,3,1,""],save_buffer:[478,3,1,""],swap_autoindent:[478,3,1,""],update_buffer:[478,3,1,""],update_undo:[478,3,1,""]},"evennia.utils.eveditor.EvEditorCmdSet":{at_cmdset_creation:[478,3,1,""],key:[478,4,1,""],mergetype:[478,4,1,""],path:[478,4,1,""]},"evennia.utils.eveditor.SaveYesNoCmdSet":{at_cmdset_creation:[478,3,1,""],key:[478,4,1,""],mergetype:[478,4,1,""],path:[478,4,1,""],priority:[478,4,1,""]},"evennia.utils.evform":{EvForm:[479,1,1,""]},"evennia.utils.evform.EvForm":{__init__:[479,3,1,""],map:[479,3,1,""],reload:[479,3,1,""]},"evennia.utils.evmenu":{CmdEvMenuNode:[480,1,1,""],CmdGetInput:[480,1,1,""],CmdYesNoQuestion:[480,1,1,""],EvMenu:[480,1,1,""],EvMenuCmdSet:[480,1,1,""],EvMenuError:[480,2,1,""],EvMenuGotoAbortMessage:[480,2,1,""],InputCmdSet:[480,1,1,""],YesNoQuestionCmdSet:[480,1,1,""],ask_yes_no:[480,5,1,""],get_input:[480,5,1,""],list_node:[480,5,1,""],parse_menu_template:[480,5,1,""],template2menu:[480,5,1,""]},"evennia.utils.evmenu.CmdEvMenuNode":{aliases:[480,4,1,""],auto_help_display_key:[480,4,1,""],func:[480,3,1,""],get_help:[480,3,1,""],help_category:[480,4,1,""],key:[480,4,1,""],lock_storage:[480,4,1,""],locks:[480,4,1,""],search_index_entry:[480,4,1,""]},"evennia.utils.evmenu.CmdGetInput":{aliases:[480,4,1,""],func:[480,3,1,""],help_category:[480,4,1,""],key:[480,4,1,""],lock_storage:[480,4,1,""],search_index_entry:[480,4,1,""]},"evennia.utils.evmenu.CmdYesNoQuestion":{aliases:[480,4,1,""],arg_regex:[480,4,1,""],func:[480,3,1,""],help_category:[480,4,1,""],key:[480,4,1,""],lock_storage:[480,4,1,""],search_index_entry:[480,4,1,""]},"evennia.utils.evmenu.EvMenu":{"goto":[480,3,1,""],__init__:[480,3,1,""],close_menu:[480,3,1,""],display_helptext:[480,3,1,""],display_nodetext:[480,3,1,""],extract_goto_exec:[480,3,1,""],helptext_formatter:[480,3,1,""],msg:[480,3,1,""],node_border_char:[480,4,1,""],node_formatter:[480,3,1,""],nodetext_formatter:[480,3,1,""],options_formatter:[480,3,1,""],parse_input:[480,3,1,""],print_debug_info:[480,3,1,""],run_exec:[480,3,1,""],run_exec_then_goto:[480,3,1,""]},"evennia.utils.evmenu.EvMenuCmdSet":{at_cmdset_creation:[480,3,1,""],key:[480,4,1,""],mergetype:[480,4,1,""],no_channels:[480,4,1,""],no_exits:[480,4,1,""],no_objs:[480,4,1,""],path:[480,4,1,""],priority:[480,4,1,""]},"evennia.utils.evmenu.InputCmdSet":{at_cmdset_creation:[480,3,1,""],key:[480,4,1,""],mergetype:[480,4,1,""],no_channels:[480,4,1,""],no_exits:[480,4,1,""],no_objs:[480,4,1,""],path:[480,4,1,""],priority:[480,4,1,""]},"evennia.utils.evmenu.YesNoQuestionCmdSet":{at_cmdset_creation:[480,3,1,""],key:[480,4,1,""],mergetype:[480,4,1,""],no_channels:[480,4,1,""],no_exits:[480,4,1,""],no_objs:[480,4,1,""],path:[480,4,1,""],priority:[480,4,1,""]},"evennia.utils.evmore":{CmdMore:[481,1,1,""],CmdMoreExit:[481,1,1,""],CmdSetMore:[481,1,1,""],EvMore:[481,1,1,""],msg:[481,5,1,""],queryset_maxsize:[481,5,1,""]},"evennia.utils.evmore.CmdMore":{aliases:[481,4,1,""],auto_help:[481,4,1,""],func:[481,3,1,""],help_category:[481,4,1,""],key:[481,4,1,""],lock_storage:[481,4,1,""],search_index_entry:[481,4,1,""]},"evennia.utils.evmore.CmdMoreExit":{aliases:[481,4,1,""],func:[481,3,1,""],help_category:[481,4,1,""],key:[481,4,1,""],lock_storage:[481,4,1,""],search_index_entry:[481,4,1,""]},"evennia.utils.evmore.CmdSetMore":{at_cmdset_creation:[481,3,1,""],key:[481,4,1,""],mergetype:[481,4,1,""],path:[481,4,1,""],priority:[481,4,1,""]},"evennia.utils.evmore.EvMore":{__init__:[481,3,1,""],display:[481,3,1,""],init_django_paginator:[481,3,1,""],init_evtable:[481,3,1,""],init_f_str:[481,3,1,""],init_iterable:[481,3,1,""],init_pages:[481,3,1,""],init_queryset:[481,3,1,""],init_str:[481,3,1,""],page_back:[481,3,1,""],page_end:[481,3,1,""],page_formatter:[481,3,1,""],page_next:[481,3,1,""],page_quit:[481,3,1,""],page_top:[481,3,1,""],paginator:[481,3,1,""],paginator_django:[481,3,1,""],paginator_index:[481,3,1,""],paginator_slice:[481,3,1,""],start:[481,3,1,""]},"evennia.utils.evtable":{ANSITextWrapper:[482,1,1,""],EvCell:[482,1,1,""],EvColumn:[482,1,1,""],EvTable:[482,1,1,""],fill:[482,5,1,""],wrap:[482,5,1,""]},"evennia.utils.evtable.EvCell":{__init__:[482,3,1,""],get:[482,3,1,""],get_height:[482,3,1,""],get_min_height:[482,3,1,""],get_min_width:[482,3,1,""],get_width:[482,3,1,""],reformat:[482,3,1,""],replace_data:[482,3,1,""]},"evennia.utils.evtable.EvColumn":{__init__:[482,3,1,""],add_rows:[482,3,1,""],reformat:[482,3,1,""],reformat_cell:[482,3,1,""]},"evennia.utils.evtable.EvTable":{__init__:[482,3,1,""],add_column:[482,3,1,""],add_header:[482,3,1,""],add_row:[482,3,1,""],get:[482,3,1,""],reformat:[482,3,1,""],reformat_column:[482,3,1,""]},"evennia.utils.funcparser":{FuncParser:[483,1,1,""],ParsingError:[483,2,1,""],funcparser_callable_add:[483,5,1,""],funcparser_callable_center_justify:[483,5,1,""],funcparser_callable_choice:[483,5,1,""],funcparser_callable_clr:[483,5,1,""],funcparser_callable_conjugate:[483,5,1,""],funcparser_callable_crop:[483,5,1,""],funcparser_callable_div:[483,5,1,""],funcparser_callable_eval:[483,5,1,""],funcparser_callable_justify:[483,5,1,""],funcparser_callable_left_justify:[483,5,1,""],funcparser_callable_mult:[483,5,1,""],funcparser_callable_pad:[483,5,1,""],funcparser_callable_pronoun:[483,5,1,""],funcparser_callable_pronoun_capitalize:[483,5,1,""],funcparser_callable_randint:[483,5,1,""],funcparser_callable_random:[483,5,1,""],funcparser_callable_right_justify:[483,5,1,""],funcparser_callable_round:[483,5,1,""],funcparser_callable_search:[483,5,1,""],funcparser_callable_search_list:[483,5,1,""],funcparser_callable_space:[483,5,1,""],funcparser_callable_sub:[483,5,1,""],funcparser_callable_toint:[483,5,1,""],funcparser_callable_you:[483,5,1,""],funcparser_callable_you_capitalize:[483,5,1,""]},"evennia.utils.funcparser.FuncParser":{__init__:[483,3,1,""],execute:[483,3,1,""],parse:[483,3,1,""],parse_to_any:[483,3,1,""],validate_callables:[483,3,1,""]},"evennia.utils.gametime":{TimeScript:[484,1,1,""],game_epoch:[484,5,1,""],gametime:[484,5,1,""],portal_uptime:[484,5,1,""],real_seconds_until:[484,5,1,""],reset_gametime:[484,5,1,""],runtime:[484,5,1,""],schedule:[484,5,1,""],server_epoch:[484,5,1,""],uptime:[484,5,1,""]},"evennia.utils.gametime.TimeScript":{DoesNotExist:[484,2,1,""],MultipleObjectsReturned:[484,2,1,""],at_repeat:[484,3,1,""],at_script_creation:[484,3,1,""],path:[484,4,1,""],typename:[484,4,1,""]},"evennia.utils.idmapper":{manager:[486,0,0,"-"],models:[487,0,0,"-"],tests:[488,0,0,"-"]},"evennia.utils.idmapper.manager":{SharedMemoryManager:[486,1,1,""]},"evennia.utils.idmapper.manager.SharedMemoryManager":{get:[486,3,1,""]},"evennia.utils.idmapper.models":{SharedMemoryModel:[487,1,1,""],SharedMemoryModelBase:[487,1,1,""],WeakSharedMemoryModel:[487,1,1,""],WeakSharedMemoryModelBase:[487,1,1,""],cache_size:[487,5,1,""],conditional_flush:[487,5,1,""],flush_cache:[487,5,1,""],flush_cached_instance:[487,5,1,""],update_cached_instance:[487,5,1,""]},"evennia.utils.idmapper.models.SharedMemoryModel":{"delete":[487,3,1,""],Meta:[487,1,1,""],at_idmapper_flush:[487,3,1,""],cache_instance:[487,3,1,""],flush_cached_instance:[487,3,1,""],flush_from_cache:[487,3,1,""],flush_instance_cache:[487,3,1,""],get_all_cached_instances:[487,3,1,""],get_cached_instance:[487,3,1,""],objects:[487,4,1,""],path:[487,4,1,""],save:[487,3,1,""],typename:[487,4,1,""]},"evennia.utils.idmapper.models.SharedMemoryModel.Meta":{"abstract":[487,4,1,""]},"evennia.utils.idmapper.models.WeakSharedMemoryModel":{Meta:[487,1,1,""],path:[487,4,1,""],typename:[487,4,1,""]},"evennia.utils.idmapper.models.WeakSharedMemoryModel.Meta":{"abstract":[487,4,1,""]},"evennia.utils.idmapper.tests":{Article:[488,1,1,""],Category:[488,1,1,""],RegularArticle:[488,1,1,""],RegularCategory:[488,1,1,""],SharedMemorysTest:[488,1,1,""]},"evennia.utils.idmapper.tests.Article":{DoesNotExist:[488,2,1,""],MultipleObjectsReturned:[488,2,1,""],category2:[488,4,1,""],category2_id:[488,4,1,""],category:[488,4,1,""],category_id:[488,4,1,""],id:[488,4,1,""],name:[488,4,1,""],path:[488,4,1,""],typename:[488,4,1,""]},"evennia.utils.idmapper.tests.Category":{DoesNotExist:[488,2,1,""],MultipleObjectsReturned:[488,2,1,""],article_set:[488,4,1,""],id:[488,4,1,""],name:[488,4,1,""],path:[488,4,1,""],regulararticle_set:[488,4,1,""],typename:[488,4,1,""]},"evennia.utils.idmapper.tests.RegularArticle":{DoesNotExist:[488,2,1,""],MultipleObjectsReturned:[488,2,1,""],category2:[488,4,1,""],category2_id:[488,4,1,""],category:[488,4,1,""],category_id:[488,4,1,""],id:[488,4,1,""],name:[488,4,1,""],objects:[488,4,1,""]},"evennia.utils.idmapper.tests.RegularCategory":{DoesNotExist:[488,2,1,""],MultipleObjectsReturned:[488,2,1,""],article_set:[488,4,1,""],id:[488,4,1,""],name:[488,4,1,""],objects:[488,4,1,""],regulararticle_set:[488,4,1,""]},"evennia.utils.idmapper.tests.SharedMemorysTest":{setUp:[488,3,1,""],testMixedReferences:[488,3,1,""],testObjectDeletion:[488,3,1,""],testRegularReferences:[488,3,1,""],testSharedMemoryReferences:[488,3,1,""]},"evennia.utils.logger":{EvenniaLogFile:[489,1,1,""],GetLogObserver:[489,1,1,""],GetPortalLogObserver:[489,1,1,""],GetServerLogObserver:[489,1,1,""],WeeklyLogFile:[489,1,1,""],critical:[489,5,1,""],dep:[489,5,1,""],deprecated:[489,5,1,""],err:[489,5,1,""],error:[489,5,1,""],exception:[489,5,1,""],info:[489,5,1,""],log_dep:[489,5,1,""],log_depmsg:[489,5,1,""],log_err:[489,5,1,""],log_errmsg:[489,5,1,""],log_file:[489,5,1,""],log_file_exists:[489,5,1,""],log_info:[489,5,1,""],log_infomsg:[489,5,1,""],log_msg:[489,5,1,""],log_sec:[489,5,1,""],log_secmsg:[489,5,1,""],log_server:[489,5,1,""],log_trace:[489,5,1,""],log_tracemsg:[489,5,1,""],log_warn:[489,5,1,""],log_warnmsg:[489,5,1,""],rotate_log_file:[489,5,1,""],sec:[489,5,1,""],security:[489,5,1,""],tail_log_file:[489,5,1,""],timeformat:[489,5,1,""],trace:[489,5,1,""],warn:[489,5,1,""],warning:[489,5,1,""]},"evennia.utils.logger.EvenniaLogFile":{num_lines_to_append:[489,4,1,""],readlines:[489,3,1,""],rotate:[489,3,1,""],seek:[489,3,1,""],settings:[489,4,1,""]},"evennia.utils.logger.GetLogObserver":{component_prefix:[489,4,1,""],event_levels:[489,4,1,""],format_log_event:[489,3,1,""]},"evennia.utils.logger.GetPortalLogObserver":{component_prefix:[489,4,1,""]},"evennia.utils.logger.GetServerLogObserver":{component_prefix:[489,4,1,""]},"evennia.utils.logger.WeeklyLogFile":{__init__:[489,3,1,""],shouldRotate:[489,3,1,""],suffix:[489,3,1,""],write:[489,3,1,""]},"evennia.utils.optionclasses":{BaseOption:[490,1,1,""],Boolean:[490,1,1,""],Color:[490,1,1,""],Datetime:[490,1,1,""],Duration:[490,1,1,""],Email:[490,1,1,""],Future:[490,1,1,""],Lock:[490,1,1,""],PositiveInteger:[490,1,1,""],SignedInteger:[490,1,1,""],Text:[490,1,1,""],Timezone:[490,1,1,""],UnsignedInteger:[490,1,1,""]},"evennia.utils.optionclasses.BaseOption":{"default":[490,3,1,""],__init__:[490,3,1,""],changed:[490,3,1,""],deserialize:[490,3,1,""],display:[490,3,1,""],load:[490,3,1,""],save:[490,3,1,""],serialize:[490,3,1,""],set:[490,3,1,""],validate:[490,3,1,""],value:[490,3,1,""]},"evennia.utils.optionclasses.Boolean":{deserialize:[490,3,1,""],display:[490,3,1,""],serialize:[490,3,1,""],validate:[490,3,1,""]},"evennia.utils.optionclasses.Color":{deserialize:[490,3,1,""],display:[490,3,1,""],validate:[490,3,1,""]},"evennia.utils.optionclasses.Datetime":{deserialize:[490,3,1,""],serialize:[490,3,1,""],validate:[490,3,1,""]},"evennia.utils.optionclasses.Duration":{deserialize:[490,3,1,""],serialize:[490,3,1,""],validate:[490,3,1,""]},"evennia.utils.optionclasses.Email":{deserialize:[490,3,1,""],validate:[490,3,1,""]},"evennia.utils.optionclasses.Future":{validate:[490,3,1,""]},"evennia.utils.optionclasses.Lock":{validate:[490,3,1,""]},"evennia.utils.optionclasses.PositiveInteger":{deserialize:[490,3,1,""],validate:[490,3,1,""]},"evennia.utils.optionclasses.SignedInteger":{deserialize:[490,3,1,""],validate:[490,3,1,""]},"evennia.utils.optionclasses.Text":{deserialize:[490,3,1,""]},"evennia.utils.optionclasses.Timezone":{"default":[490,3,1,""],deserialize:[490,3,1,""],serialize:[490,3,1,""],validate:[490,3,1,""]},"evennia.utils.optionclasses.UnsignedInteger":{deserialize:[490,3,1,""],validate:[490,3,1,""],validator_key:[490,4,1,""]},"evennia.utils.optionhandler":{InMemorySaveHandler:[491,1,1,""],OptionHandler:[491,1,1,""]},"evennia.utils.optionhandler.InMemorySaveHandler":{__init__:[491,3,1,""],add:[491,3,1,""],get:[491,3,1,""]},"evennia.utils.optionhandler.OptionHandler":{__init__:[491,3,1,""],all:[491,3,1,""],get:[491,3,1,""],set:[491,3,1,""]},"evennia.utils.picklefield":{PickledFormField:[492,1,1,""],PickledObject:[492,1,1,""],PickledObjectField:[492,1,1,""],PickledWidget:[492,1,1,""],dbsafe_decode:[492,5,1,""],dbsafe_encode:[492,5,1,""],wrap_conflictual_object:[492,5,1,""]},"evennia.utils.picklefield.PickledFormField":{__init__:[492,3,1,""],clean:[492,3,1,""],default_error_messages:[492,4,1,""],widget:[492,4,1,""]},"evennia.utils.picklefield.PickledObjectField":{__init__:[492,3,1,""],formfield:[492,3,1,""],from_db_value:[492,3,1,""],get_db_prep_lookup:[492,3,1,""],get_db_prep_value:[492,3,1,""],get_default:[492,3,1,""],get_internal_type:[492,3,1,""],pre_save:[492,3,1,""],value_to_string:[492,3,1,""]},"evennia.utils.picklefield.PickledWidget":{media:[492,3,1,""],render:[492,3,1,""],value_from_datadict:[492,3,1,""]},"evennia.utils.search":{search_account:[493,5,1,""],search_account_tag:[493,5,1,""],search_channel:[493,5,1,""],search_channel_tag:[493,5,1,""],search_help_entry:[493,5,1,""],search_message:[493,5,1,""],search_object:[493,5,1,""],search_script:[493,5,1,""],search_script_tag:[493,5,1,""],search_tag:[493,5,1,""]},"evennia.utils.test_resources":{BaseEvenniaCommandTest:[494,1,1,""],BaseEvenniaTest:[494,1,1,""],BaseEvenniaTestCase:[494,1,1,""],EvenniaCommandTest:[494,1,1,""],EvenniaCommandTestMixin:[494,1,1,""],EvenniaTest:[494,1,1,""],EvenniaTestCase:[494,1,1,""],EvenniaTestMixin:[494,1,1,""],mockdeferLater:[494,5,1,""],mockdelay:[494,5,1,""],unload_module:[494,5,1,""]},"evennia.utils.test_resources.EvenniaCommandTestMixin":{call:[494,3,1,""]},"evennia.utils.test_resources.EvenniaTest":{account_typeclass:[494,4,1,""],character_typeclass:[494,4,1,""],exit_typeclass:[494,4,1,""],object_typeclass:[494,4,1,""],room_typeclass:[494,4,1,""],script_typeclass:[494,4,1,""]},"evennia.utils.test_resources.EvenniaTestMixin":{account_typeclass:[494,4,1,""],character_typeclass:[494,4,1,""],create_accounts:[494,3,1,""],create_chars:[494,3,1,""],create_objs:[494,3,1,""],create_rooms:[494,3,1,""],create_script:[494,3,1,""],exit_typeclass:[494,4,1,""],object_typeclass:[494,4,1,""],room_typeclass:[494,4,1,""],script_typeclass:[494,4,1,""],setUp:[494,3,1,""],setup_session:[494,3,1,""],tearDown:[494,3,1,""],teardown_accounts:[494,3,1,""],teardown_session:[494,3,1,""]},"evennia.utils.text2html":{TextToHTMLparser:[495,1,1,""],parse_html:[495,5,1,""]},"evennia.utils.text2html.TextToHTMLparser":{ansi_bg_codes:[495,4,1,""],ansi_color_codes:[495,4,1,""],bglist:[495,4,1,""],colorlist:[495,4,1,""],convert_linebreaks:[495,3,1,""],convert_urls:[495,3,1,""],format_styles:[495,3,1,""],parse:[495,3,1,""],re_mxplink:[495,4,1,""],re_mxpurl:[495,4,1,""],re_string:[495,4,1,""],re_style:[495,4,1,""],re_url:[495,4,1,""],remove_backspaces:[495,3,1,""],remove_bells:[495,3,1,""],style_codes:[495,4,1,""],sub_mxp_links:[495,3,1,""],sub_mxp_urls:[495,3,1,""],sub_text:[495,3,1,""],tabstop:[495,4,1,""],xterm_bg_codes:[495,4,1,""],xterm_fg_codes:[495,4,1,""]},"evennia.utils.utils":{LimitedSizeOrderedDict:[496,1,1,""],all_from_module:[496,5,1,""],at_search_result:[496,5,1,""],callables_from_module:[496,5,1,""],calledby:[496,5,1,""],check_evennia_dependencies:[496,5,1,""],class_from_module:[496,5,1,""],columnize:[496,5,1,""],copy_word_case:[496,5,1,""],crop:[496,5,1,""],datetime_format:[496,5,1,""],dbid_to_obj:[496,5,1,""],dbref:[496,5,1,""],dbref_to_obj:[496,5,1,""],dedent:[496,5,1,""],deepsize:[496,5,1,""],delay:[496,5,1,""],display_len:[496,5,1,""],fill:[496,5,1,""],format_grid:[496,5,1,""],format_table:[496,5,1,""],fuzzy_import_from_module:[496,5,1,""],get_all_cmdsets:[496,5,1,""],get_all_typeclasses:[496,5,1,""],get_evennia_pids:[496,5,1,""],get_evennia_version:[496,5,1,""],get_game_dir_path:[496,5,1,""],has_parent:[496,5,1,""],host_os_is:[496,5,1,""],inherits_from:[496,5,1,""],init_new_account:[496,5,1,""],interactive:[496,5,1,""],is_iter:[496,5,1,""],iter_to_str:[496,5,1,""],iter_to_string:[496,5,1,""],justify:[496,5,1,""],latinify:[496,5,1,""],lazy_property:[496,1,1,""],list_to_string:[496,5,1,""],m_len:[496,5,1,""],make_iter:[496,5,1,""],mod_import:[496,5,1,""],mod_import_from_path:[496,5,1,""],object_from_module:[496,5,1,""],pad:[496,5,1,""],percent:[496,5,1,""],percentile:[496,5,1,""],pypath_to_realpath:[496,5,1,""],random_string_from_module:[496,5,1,""],repeat:[496,5,1,""],run_async:[496,5,1,""],run_in_main_thread:[496,5,1,""],safe_convert_to_types:[496,5,1,""],server_services:[496,5,1,""],string_from_module:[496,5,1,""],string_partial_matching:[496,5,1,""],string_similarity:[496,5,1,""],string_suggestions:[496,5,1,""],strip_control_sequences:[496,5,1,""],strip_unsafe_input:[496,5,1,""],time_format:[496,5,1,""],to_bytes:[496,5,1,""],to_str:[496,5,1,""],unrepeat:[496,5,1,""],uses_database:[496,5,1,""],validate_email_address:[496,5,1,""],variable_from_module:[496,5,1,""],wildcard_to_regexp:[496,5,1,""],wrap:[496,5,1,""]},"evennia.utils.utils.LimitedSizeOrderedDict":{__init__:[496,3,1,""],update:[496,3,1,""]},"evennia.utils.utils.lazy_property":{__init__:[496,3,1,""]},"evennia.utils.validatorfuncs":{"boolean":[497,5,1,""],color:[497,5,1,""],datetime:[497,5,1,""],duration:[497,5,1,""],email:[497,5,1,""],future:[497,5,1,""],lock:[497,5,1,""],positive_integer:[497,5,1,""],signed_integer:[497,5,1,""],text:[497,5,1,""],timezone:[497,5,1,""],unsigned_integer:[497,5,1,""]},"evennia.utils.verb_conjugation":{conjugate:[499,0,0,"-"],pronouns:[500,0,0,"-"],tests:[501,0,0,"-"]},"evennia.utils.verb_conjugation.conjugate":{verb_actor_stance_components:[499,5,1,""],verb_all_tenses:[499,5,1,""],verb_conjugate:[499,5,1,""],verb_infinitive:[499,5,1,""],verb_is_past:[499,5,1,""],verb_is_past_participle:[499,5,1,""],verb_is_present:[499,5,1,""],verb_is_present_participle:[499,5,1,""],verb_is_tense:[499,5,1,""],verb_past:[499,5,1,""],verb_past_participle:[499,5,1,""],verb_present:[499,5,1,""],verb_present_participle:[499,5,1,""],verb_tense:[499,5,1,""]},"evennia.utils.verb_conjugation.pronouns":{pronoun_to_viewpoints:[500,5,1,""]},"evennia.utils.verb_conjugation.tests":{TestPronounMapping:[501,1,1,""],TestVerbConjugate:[501,1,1,""]},"evennia.utils.verb_conjugation.tests.TestPronounMapping":{test_mapping_with_options:[501,4,1,""],test_mapping_with_options_00_you:[501,3,1,""],test_mapping_with_options_01_you:[501,3,1,""],test_mapping_with_options_02_I:[501,3,1,""],test_mapping_with_options_03_I:[501,3,1,""],test_mapping_with_options_04_I:[501,3,1,""],test_mapping_with_options_05_Me:[501,3,1,""],test_mapping_with_options_06_your:[501,3,1,""],test_mapping_with_options_07_ours:[501,3,1,""],test_mapping_with_options_08_yourself:[501,3,1,""],test_mapping_with_options_09_yourself:[501,3,1,""],test_mapping_with_options_10_yourself:[501,3,1,""],test_mapping_with_options_11_yourself:[501,3,1,""],test_mapping_with_options_12_yourselves:[501,3,1,""],test_mapping_with_options_13_he:[501,3,1,""],test_mapping_with_options_14_he:[501,3,1,""],test_mapping_with_options_15_he:[501,3,1,""],test_mapping_with_options_16_her:[501,3,1,""],test_mapping_with_options_17_her:[501,3,1,""],test_mapping_with_options_18_their:[501,3,1,""],test_mapping_with_options_19_their:[501,3,1,""],test_mapping_with_options_20_itself:[501,3,1,""],test_mapping_with_options_21_themselves:[501,3,1,""],test_mapping_with_options_22_herself:[501,3,1,""]},"evennia.utils.verb_conjugation.tests.TestVerbConjugate":{test_verb_actor_stance_components:[501,4,1,""],test_verb_actor_stance_components_00_have:[501,3,1,""],test_verb_actor_stance_components_01_swimming:[501,3,1,""],test_verb_actor_stance_components_02_give:[501,3,1,""],test_verb_actor_stance_components_03_given:[501,3,1,""],test_verb_actor_stance_components_04_am:[501,3,1,""],test_verb_actor_stance_components_05_doing:[501,3,1,""],test_verb_actor_stance_components_06_are:[501,3,1,""],test_verb_actor_stance_components_07_had:[501,3,1,""],test_verb_actor_stance_components_08_grin:[501,3,1,""],test_verb_actor_stance_components_09_smile:[501,3,1,""],test_verb_actor_stance_components_10_vex:[501,3,1,""],test_verb_actor_stance_components_11_thrust:[501,3,1,""],test_verb_conjugate:[501,4,1,""],test_verb_conjugate_0_inf:[501,3,1,""],test_verb_conjugate_1_inf:[501,3,1,""],test_verb_conjugate_2_inf:[501,3,1,""],test_verb_conjugate_3_inf:[501,3,1,""],test_verb_conjugate_4_inf:[501,3,1,""],test_verb_conjugate_5_inf:[501,3,1,""],test_verb_conjugate_6_inf:[501,3,1,""],test_verb_conjugate_7_2sgpres:[501,3,1,""],test_verb_conjugate_8_3sgpres:[501,3,1,""],test_verb_get_all_tenses:[501,3,1,""],test_verb_infinitive:[501,4,1,""],test_verb_infinitive_0_have:[501,3,1,""],test_verb_infinitive_1_swim:[501,3,1,""],test_verb_infinitive_2_give:[501,3,1,""],test_verb_infinitive_3_given:[501,3,1,""],test_verb_infinitive_4_am:[501,3,1,""],test_verb_infinitive_5_doing:[501,3,1,""],test_verb_infinitive_6_are:[501,3,1,""],test_verb_is_past:[501,4,1,""],test_verb_is_past_0_1st:[501,3,1,""],test_verb_is_past_1_1st:[501,3,1,""],test_verb_is_past_2_1st:[501,3,1,""],test_verb_is_past_3_1st:[501,3,1,""],test_verb_is_past_4_1st:[501,3,1,""],test_verb_is_past_5_1st:[501,3,1,""],test_verb_is_past_6_1st:[501,3,1,""],test_verb_is_past_7_2nd:[501,3,1,""],test_verb_is_past_participle:[501,4,1,""],test_verb_is_past_participle_0_have:[501,3,1,""],test_verb_is_past_participle_1_swimming:[501,3,1,""],test_verb_is_past_participle_2_give:[501,3,1,""],test_verb_is_past_participle_3_given:[501,3,1,""],test_verb_is_past_participle_4_am:[501,3,1,""],test_verb_is_past_participle_5_doing:[501,3,1,""],test_verb_is_past_participle_6_are:[501,3,1,""],test_verb_is_past_participle_7_had:[501,3,1,""],test_verb_is_present:[501,4,1,""],test_verb_is_present_0_1st:[501,3,1,""],test_verb_is_present_1_1st:[501,3,1,""],test_verb_is_present_2_1st:[501,3,1,""],test_verb_is_present_3_1st:[501,3,1,""],test_verb_is_present_4_1st:[501,3,1,""],test_verb_is_present_5_1st:[501,3,1,""],test_verb_is_present_6_1st:[501,3,1,""],test_verb_is_present_7_1st:[501,3,1,""],test_verb_is_present_participle:[501,4,1,""],test_verb_is_present_participle_0_have:[501,3,1,""],test_verb_is_present_participle_1_swim:[501,3,1,""],test_verb_is_present_participle_2_give:[501,3,1,""],test_verb_is_present_participle_3_given:[501,3,1,""],test_verb_is_present_participle_4_am:[501,3,1,""],test_verb_is_present_participle_5_doing:[501,3,1,""],test_verb_is_present_participle_6_are:[501,3,1,""],test_verb_is_tense:[501,4,1,""],test_verb_is_tense_0_inf:[501,3,1,""],test_verb_is_tense_1_inf:[501,3,1,""],test_verb_is_tense_2_inf:[501,3,1,""],test_verb_is_tense_3_inf:[501,3,1,""],test_verb_is_tense_4_inf:[501,3,1,""],test_verb_is_tense_5_inf:[501,3,1,""],test_verb_is_tense_6_inf:[501,3,1,""],test_verb_past:[501,4,1,""],test_verb_past_0_1st:[501,3,1,""],test_verb_past_1_1st:[501,3,1,""],test_verb_past_2_1st:[501,3,1,""],test_verb_past_3_1st:[501,3,1,""],test_verb_past_4_1st:[501,3,1,""],test_verb_past_5_1st:[501,3,1,""],test_verb_past_6_1st:[501,3,1,""],test_verb_past_7_2nd:[501,3,1,""],test_verb_past_participle:[501,4,1,""],test_verb_past_participle_0_have:[501,3,1,""],test_verb_past_participle_1_swim:[501,3,1,""],test_verb_past_participle_2_give:[501,3,1,""],test_verb_past_participle_3_given:[501,3,1,""],test_verb_past_participle_4_am:[501,3,1,""],test_verb_past_participle_5_doing:[501,3,1,""],test_verb_past_participle_6_are:[501,3,1,""],test_verb_present:[501,4,1,""],test_verb_present_0_1st:[501,3,1,""],test_verb_present_1_1st:[501,3,1,""],test_verb_present_2_1st:[501,3,1,""],test_verb_present_3_1st:[501,3,1,""],test_verb_present_4_1st:[501,3,1,""],test_verb_present_5_1st:[501,3,1,""],test_verb_present_6_1st:[501,3,1,""],test_verb_present_7_2nd:[501,3,1,""],test_verb_present_8_3rd:[501,3,1,""],test_verb_present_participle:[501,4,1,""],test_verb_present_participle_0_have:[501,3,1,""],test_verb_present_participle_1_swim:[501,3,1,""],test_verb_present_participle_2_give:[501,3,1,""],test_verb_present_participle_3_given:[501,3,1,""],test_verb_present_participle_4_am:[501,3,1,""],test_verb_present_participle_5_doing:[501,3,1,""],test_verb_present_participle_6_are:[501,3,1,""],test_verb_tense:[501,4,1,""],test_verb_tense_0_have:[501,3,1,""],test_verb_tense_1_swim:[501,3,1,""],test_verb_tense_2_give:[501,3,1,""],test_verb_tense_3_given:[501,3,1,""],test_verb_tense_4_am:[501,3,1,""],test_verb_tense_5_doing:[501,3,1,""],test_verb_tense_6_are:[501,3,1,""]},"evennia.web":{admin:[503,0,0,"-"],api:[515,0,0,"-"],templatetags:[523,0,0,"-"],urls:[525,0,0,"-"],utils:[526,0,0,"-"],webclient:[532,0,0,"-"],website:[535,0,0,"-"]},"evennia.web.admin":{accounts:[504,0,0,"-"],attributes:[505,0,0,"-"],comms:[506,0,0,"-"],frontpage:[507,0,0,"-"],help:[508,0,0,"-"],objects:[509,0,0,"-"],scripts:[510,0,0,"-"],server:[511,0,0,"-"],tags:[512,0,0,"-"],urls:[513,0,0,"-"],utils:[514,0,0,"-"]},"evennia.web.admin.accounts":{AccountAdmin:[504,1,1,""],AccountAttributeInline:[504,1,1,""],AccountChangeForm:[504,1,1,""],AccountCreationForm:[504,1,1,""],AccountTagInline:[504,1,1,""],ObjectPuppetInline:[504,1,1,""]},"evennia.web.admin.accounts.AccountAdmin":{add_fieldsets:[504,4,1,""],add_form:[504,4,1,""],fieldsets:[504,4,1,""],form:[504,4,1,""],get_form:[504,3,1,""],inlines:[504,4,1,""],list_display:[504,4,1,""],list_display_links:[504,4,1,""],list_filter:[504,4,1,""],media:[504,3,1,""],ordering:[504,4,1,""],puppeted_objects:[504,3,1,""],readonly_fields:[504,4,1,""],response_add:[504,3,1,""],save_model:[504,3,1,""],search_fields:[504,4,1,""],serialized_string:[504,3,1,""],user_change_password:[504,3,1,""],view_on_site:[504,4,1,""]},"evennia.web.admin.accounts.AccountAttributeInline":{media:[504,3,1,""],model:[504,4,1,""],related_field:[504,4,1,""]},"evennia.web.admin.accounts.AccountChangeForm":{Meta:[504,1,1,""],__init__:[504,3,1,""],base_fields:[504,4,1,""],clean_username:[504,3,1,""],declared_fields:[504,4,1,""],media:[504,3,1,""]},"evennia.web.admin.accounts.AccountChangeForm.Meta":{fields:[504,4,1,""],model:[504,4,1,""]},"evennia.web.admin.accounts.AccountCreationForm":{Meta:[504,1,1,""],base_fields:[504,4,1,""],clean_username:[504,3,1,""],declared_fields:[504,4,1,""],media:[504,3,1,""]},"evennia.web.admin.accounts.AccountCreationForm.Meta":{fields:[504,4,1,""],model:[504,4,1,""]},"evennia.web.admin.accounts.AccountTagInline":{media:[504,3,1,""],model:[504,4,1,""],related_field:[504,4,1,""]},"evennia.web.admin.accounts.ObjectPuppetInline":{ObjectCreateForm:[504,1,1,""],extra:[504,4,1,""],fieldsets:[504,4,1,""],form:[504,4,1,""],has_add_permission:[504,3,1,""],has_delete_permission:[504,3,1,""],media:[504,3,1,""],model:[504,4,1,""],readonly_fields:[504,4,1,""],show_change_link:[504,4,1,""],verbose_name:[504,4,1,""],view_on_site:[504,4,1,""]},"evennia.web.admin.accounts.ObjectPuppetInline.ObjectCreateForm":{Meta:[504,1,1,""],__init__:[504,3,1,""],base_fields:[504,4,1,""],declared_fields:[504,4,1,""],media:[504,3,1,""]},"evennia.web.admin.accounts.ObjectPuppetInline.ObjectCreateForm.Meta":{fields:[504,4,1,""],model:[504,4,1,""]},"evennia.web.admin.attributes":{AttributeForm:[505,1,1,""],AttributeFormSet:[505,1,1,""],AttributeInline:[505,1,1,""]},"evennia.web.admin.attributes.AttributeForm":{Meta:[505,1,1,""],__init__:[505,3,1,""],base_fields:[505,4,1,""],clean_attr_value:[505,3,1,""],declared_fields:[505,4,1,""],media:[505,3,1,""],save:[505,3,1,""]},"evennia.web.admin.attributes.AttributeForm.Meta":{fields:[505,4,1,""]},"evennia.web.admin.attributes.AttributeFormSet":{save:[505,3,1,""]},"evennia.web.admin.attributes.AttributeInline":{extra:[505,4,1,""],form:[505,4,1,""],formset:[505,4,1,""],get_formset:[505,3,1,""],media:[505,3,1,""],model:[505,4,1,""],related_field:[505,4,1,""],verbose_name:[505,4,1,""],verbose_name_plural:[505,4,1,""]},"evennia.web.admin.comms":{ChannelAdmin:[506,1,1,""],ChannelAttributeInline:[506,1,1,""],ChannelForm:[506,1,1,""],ChannelTagInline:[506,1,1,""],MsgAdmin:[506,1,1,""],MsgForm:[506,1,1,""],MsgTagInline:[506,1,1,""]},"evennia.web.admin.comms.ChannelAdmin":{fieldsets:[506,4,1,""],form:[506,4,1,""],get_form:[506,3,1,""],inlines:[506,4,1,""],list_display:[506,4,1,""],list_display_links:[506,4,1,""],list_select_related:[506,4,1,""],media:[506,3,1,""],no_of_subscribers:[506,3,1,""],ordering:[506,4,1,""],raw_id_fields:[506,4,1,""],readonly_fields:[506,4,1,""],response_add:[506,3,1,""],save_as:[506,4,1,""],save_model:[506,3,1,""],save_on_top:[506,4,1,""],search_fields:[506,4,1,""],serialized_string:[506,3,1,""],subscriptions:[506,3,1,""]},"evennia.web.admin.comms.ChannelAttributeInline":{media:[506,3,1,""],model:[506,4,1,""],related_field:[506,4,1,""]},"evennia.web.admin.comms.ChannelForm":{Meta:[506,1,1,""],base_fields:[506,4,1,""],declared_fields:[506,4,1,""],media:[506,3,1,""]},"evennia.web.admin.comms.ChannelForm.Meta":{fields:[506,4,1,""],model:[506,4,1,""]},"evennia.web.admin.comms.ChannelTagInline":{media:[506,3,1,""],model:[506,4,1,""],related_field:[506,4,1,""]},"evennia.web.admin.comms.MsgAdmin":{fieldsets:[506,4,1,""],form:[506,4,1,""],get_form:[506,3,1,""],inlines:[506,4,1,""],list_display:[506,4,1,""],list_display_links:[506,4,1,""],list_select_related:[506,4,1,""],media:[506,3,1,""],ordering:[506,4,1,""],raw_id_fields:[506,4,1,""],readonly_fields:[506,4,1,""],receiver:[506,3,1,""],save_as:[506,4,1,""],save_on_top:[506,4,1,""],search_fields:[506,4,1,""],sender:[506,3,1,""],serialized_string:[506,3,1,""],start_of_message:[506,3,1,""],view_on_site:[506,4,1,""]},"evennia.web.admin.comms.MsgForm":{Meta:[506,1,1,""],base_fields:[506,4,1,""],declared_fields:[506,4,1,""],media:[506,3,1,""]},"evennia.web.admin.comms.MsgForm.Meta":{fields:[506,4,1,""],models:[506,4,1,""]},"evennia.web.admin.comms.MsgTagInline":{media:[506,3,1,""],model:[506,4,1,""],related_field:[506,4,1,""]},"evennia.web.admin.frontpage":{admin_wrapper:[507,5,1,""],evennia_admin:[507,5,1,""]},"evennia.web.admin.help":{HelpEntryAdmin:[508,1,1,""],HelpEntryForm:[508,1,1,""],HelpTagInline:[508,1,1,""]},"evennia.web.admin.help.HelpEntryAdmin":{fieldsets:[508,4,1,""],form:[508,4,1,""],inlines:[508,4,1,""],list_display:[508,4,1,""],list_display_links:[508,4,1,""],list_filter:[508,4,1,""],list_select_related:[508,4,1,""],media:[508,3,1,""],ordering:[508,4,1,""],save_as:[508,4,1,""],save_on_top:[508,4,1,""],search_fields:[508,4,1,""],view_on_site:[508,4,1,""]},"evennia.web.admin.help.HelpEntryForm":{Meta:[508,1,1,""],base_fields:[508,4,1,""],declared_fields:[508,4,1,""],media:[508,3,1,""]},"evennia.web.admin.help.HelpEntryForm.Meta":{fields:[508,4,1,""],model:[508,4,1,""]},"evennia.web.admin.help.HelpTagInline":{media:[508,3,1,""],model:[508,4,1,""],related_field:[508,4,1,""]},"evennia.web.admin.objects":{ObjectAdmin:[509,1,1,""],ObjectAttributeInline:[509,1,1,""],ObjectCreateForm:[509,1,1,""],ObjectEditForm:[509,1,1,""],ObjectTagInline:[509,1,1,""]},"evennia.web.admin.objects.ObjectAdmin":{add_fieldsets:[509,4,1,""],add_form:[509,4,1,""],fieldsets:[509,4,1,""],form:[509,4,1,""],get_fieldsets:[509,3,1,""],get_form:[509,3,1,""],get_urls:[509,3,1,""],inlines:[509,4,1,""],link_button:[509,3,1,""],link_object_to_account:[509,3,1,""],list_display:[509,4,1,""],list_display_links:[509,4,1,""],list_filter:[509,4,1,""],list_select_related:[509,4,1,""],media:[509,3,1,""],ordering:[509,4,1,""],raw_id_fields:[509,4,1,""],readonly_fields:[509,4,1,""],response_add:[509,3,1,""],save_as:[509,4,1,""],save_model:[509,3,1,""],save_on_top:[509,4,1,""],search_fields:[509,4,1,""],serialized_string:[509,3,1,""],view_on_site:[509,4,1,""]},"evennia.web.admin.objects.ObjectAttributeInline":{media:[509,3,1,""],model:[509,4,1,""],related_field:[509,4,1,""]},"evennia.web.admin.objects.ObjectCreateForm":{Meta:[509,1,1,""],__init__:[509,3,1,""],base_fields:[509,4,1,""],declared_fields:[509,4,1,""],media:[509,3,1,""]},"evennia.web.admin.objects.ObjectCreateForm.Meta":{fields:[509,4,1,""],model:[509,4,1,""]},"evennia.web.admin.objects.ObjectEditForm":{Meta:[509,1,1,""],base_fields:[509,4,1,""],declared_fields:[509,4,1,""],media:[509,3,1,""]},"evennia.web.admin.objects.ObjectEditForm.Meta":{fields:[509,4,1,""],model:[509,4,1,""]},"evennia.web.admin.objects.ObjectTagInline":{media:[509,3,1,""],model:[509,4,1,""],related_field:[509,4,1,""]},"evennia.web.admin.scripts":{ScriptAdmin:[510,1,1,""],ScriptAttributeInline:[510,1,1,""],ScriptForm:[510,1,1,""],ScriptTagInline:[510,1,1,""]},"evennia.web.admin.scripts.ScriptAdmin":{fieldsets:[510,4,1,""],form:[510,4,1,""],get_form:[510,3,1,""],inlines:[510,4,1,""],list_display:[510,4,1,""],list_display_links:[510,4,1,""],list_select_related:[510,4,1,""],media:[510,3,1,""],ordering:[510,4,1,""],raw_id_fields:[510,4,1,""],readonly_fields:[510,4,1,""],save_as:[510,4,1,""],save_model:[510,3,1,""],save_on_top:[510,4,1,""],search_fields:[510,4,1,""],serialized_string:[510,3,1,""],view_on_site:[510,4,1,""]},"evennia.web.admin.scripts.ScriptAttributeInline":{media:[510,3,1,""],model:[510,4,1,""],related_field:[510,4,1,""]},"evennia.web.admin.scripts.ScriptForm":{base_fields:[510,4,1,""],declared_fields:[510,4,1,""],media:[510,3,1,""]},"evennia.web.admin.scripts.ScriptTagInline":{media:[510,3,1,""],model:[510,4,1,""],related_field:[510,4,1,""]},"evennia.web.admin.server":{ServerConfigAdmin:[511,1,1,""]},"evennia.web.admin.server.ServerConfigAdmin":{list_display:[511,4,1,""],list_display_links:[511,4,1,""],list_select_related:[511,4,1,""],media:[511,3,1,""],ordering:[511,4,1,""],save_as:[511,4,1,""],save_on_top:[511,4,1,""],search_fields:[511,4,1,""]},"evennia.web.admin.tags":{InlineTagForm:[512,1,1,""],TagAdmin:[512,1,1,""],TagForm:[512,1,1,""],TagFormSet:[512,1,1,""],TagInline:[512,1,1,""]},"evennia.web.admin.tags.InlineTagForm":{Meta:[512,1,1,""],__init__:[512,3,1,""],base_fields:[512,4,1,""],declared_fields:[512,4,1,""],media:[512,3,1,""],save:[512,3,1,""]},"evennia.web.admin.tags.InlineTagForm.Meta":{fields:[512,4,1,""]},"evennia.web.admin.tags.TagAdmin":{fieldsets:[512,4,1,""],form:[512,4,1,""],list_display:[512,4,1,""],list_filter:[512,4,1,""],media:[512,3,1,""],search_fields:[512,4,1,""],view_on_site:[512,4,1,""]},"evennia.web.admin.tags.TagForm":{Meta:[512,1,1,""],base_fields:[512,4,1,""],declared_fields:[512,4,1,""],media:[512,3,1,""]},"evennia.web.admin.tags.TagForm.Meta":{fields:[512,4,1,""]},"evennia.web.admin.tags.TagFormSet":{save:[512,3,1,""],verbose_name:[512,4,1,""],verbose_name_plural:[512,4,1,""]},"evennia.web.admin.tags.TagInline":{extra:[512,4,1,""],form:[512,4,1,""],formset:[512,4,1,""],get_formset:[512,3,1,""],media:[512,3,1,""],model:[512,4,1,""],related_field:[512,4,1,""],verbose_name:[512,4,1,""],verbose_name_plural:[512,4,1,""]},"evennia.web.admin.utils":{get_and_load_cmdsets:[514,5,1,""],get_and_load_typeclasses:[514,5,1,""]},"evennia.web.api":{filters:[516,0,0,"-"],permissions:[517,0,0,"-"],root:[518,0,0,"-"],serializers:[519,0,0,"-"],tests:[520,0,0,"-"],urls:[521,0,0,"-"],views:[522,0,0,"-"]},"evennia.web.api.filters":{AccountDBFilterSet:[516,1,1,""],AliasFilter:[516,1,1,""],BaseTypeclassFilterSet:[516,1,1,""],HelpFilterSet:[516,1,1,""],ObjectDBFilterSet:[516,1,1,""],PermissionFilter:[516,1,1,""],ScriptDBFilterSet:[516,1,1,""],TagTypeFilter:[516,1,1,""],get_tag_query:[516,5,1,""]},"evennia.web.api.filters.AccountDBFilterSet":{Meta:[516,1,1,""],base_filters:[516,4,1,""],declared_filters:[516,4,1,""]},"evennia.web.api.filters.AccountDBFilterSet.Meta":{fields:[516,4,1,""],model:[516,4,1,""]},"evennia.web.api.filters.AliasFilter":{tag_type:[516,4,1,""]},"evennia.web.api.filters.BaseTypeclassFilterSet":{base_filters:[516,4,1,""],declared_filters:[516,4,1,""],filter_name:[516,3,1,""]},"evennia.web.api.filters.HelpFilterSet":{base_filters:[516,4,1,""],declared_filters:[516,4,1,""]},"evennia.web.api.filters.ObjectDBFilterSet":{Meta:[516,1,1,""],base_filters:[516,4,1,""],declared_filters:[516,4,1,""]},"evennia.web.api.filters.ObjectDBFilterSet.Meta":{fields:[516,4,1,""],model:[516,4,1,""]},"evennia.web.api.filters.PermissionFilter":{tag_type:[516,4,1,""]},"evennia.web.api.filters.ScriptDBFilterSet":{Meta:[516,1,1,""],base_filters:[516,4,1,""],declared_filters:[516,4,1,""]},"evennia.web.api.filters.ScriptDBFilterSet.Meta":{fields:[516,4,1,""],model:[516,4,1,""]},"evennia.web.api.filters.TagTypeFilter":{filter:[516,3,1,""],tag_type:[516,4,1,""]},"evennia.web.api.permissions":{EvenniaPermission:[517,1,1,""]},"evennia.web.api.permissions.EvenniaPermission":{MINIMUM_CREATE_PERMISSION:[517,4,1,""],MINIMUM_LIST_PERMISSION:[517,4,1,""],check_locks:[517,3,1,""],destroy_locks:[517,4,1,""],has_object_permission:[517,3,1,""],has_permission:[517,3,1,""],update_locks:[517,4,1,""],view_locks:[517,4,1,""]},"evennia.web.api.root":{APIRootRouter:[518,1,1,""],EvenniaAPIRoot:[518,1,1,""]},"evennia.web.api.root.APIRootRouter":{APIRootView:[518,4,1,""]},"evennia.web.api.serializers":{AccountListSerializer:[519,1,1,""],AccountSerializer:[519,1,1,""],AttributeSerializer:[519,1,1,""],HelpListSerializer:[519,1,1,""],HelpSerializer:[519,1,1,""],ObjectDBSerializer:[519,1,1,""],ObjectListSerializer:[519,1,1,""],ScriptDBSerializer:[519,1,1,""],ScriptListSerializer:[519,1,1,""],SimpleObjectDBSerializer:[519,1,1,""],TagSerializer:[519,1,1,""],TypeclassListSerializerMixin:[519,1,1,""],TypeclassSerializerMixin:[519,1,1,""]},"evennia.web.api.serializers.AccountListSerializer":{Meta:[519,1,1,""]},"evennia.web.api.serializers.AccountListSerializer.Meta":{fields:[519,4,1,""],model:[519,4,1,""],read_only_fields:[519,4,1,""]},"evennia.web.api.serializers.AccountSerializer":{Meta:[519,1,1,""],get_session_ids:[519,3,1,""]},"evennia.web.api.serializers.AccountSerializer.Meta":{fields:[519,4,1,""],model:[519,4,1,""],read_only_fields:[519,4,1,""]},"evennia.web.api.serializers.AttributeSerializer":{Meta:[519,1,1,""],get_value_display:[519,3,1,""]},"evennia.web.api.serializers.AttributeSerializer.Meta":{fields:[519,4,1,""],model:[519,4,1,""]},"evennia.web.api.serializers.HelpListSerializer":{Meta:[519,1,1,""]},"evennia.web.api.serializers.HelpListSerializer.Meta":{fields:[519,4,1,""],model:[519,4,1,""],read_only_fields:[519,4,1,""]},"evennia.web.api.serializers.HelpSerializer":{Meta:[519,1,1,""]},"evennia.web.api.serializers.HelpSerializer.Meta":{fields:[519,4,1,""],model:[519,4,1,""],read_only_fields:[519,4,1,""]},"evennia.web.api.serializers.ObjectDBSerializer":{Meta:[519,1,1,""],get_contents:[519,3,1,""],get_exits:[519,3,1,""]},"evennia.web.api.serializers.ObjectDBSerializer.Meta":{fields:[519,4,1,""],model:[519,4,1,""],read_only_fields:[519,4,1,""]},"evennia.web.api.serializers.ObjectListSerializer":{Meta:[519,1,1,""]},"evennia.web.api.serializers.ObjectListSerializer.Meta":{fields:[519,4,1,""],model:[519,4,1,""],read_only_fields:[519,4,1,""]},"evennia.web.api.serializers.ScriptDBSerializer":{Meta:[519,1,1,""]},"evennia.web.api.serializers.ScriptDBSerializer.Meta":{fields:[519,4,1,""],model:[519,4,1,""],read_only_fields:[519,4,1,""]},"evennia.web.api.serializers.ScriptListSerializer":{Meta:[519,1,1,""]},"evennia.web.api.serializers.ScriptListSerializer.Meta":{fields:[519,4,1,""],model:[519,4,1,""],read_only_fields:[519,4,1,""]},"evennia.web.api.serializers.SimpleObjectDBSerializer":{Meta:[519,1,1,""]},"evennia.web.api.serializers.SimpleObjectDBSerializer.Meta":{fields:[519,4,1,""],model:[519,4,1,""]},"evennia.web.api.serializers.TagSerializer":{Meta:[519,1,1,""]},"evennia.web.api.serializers.TagSerializer.Meta":{fields:[519,4,1,""],model:[519,4,1,""]},"evennia.web.api.serializers.TypeclassListSerializerMixin":{shared_fields:[519,4,1,""]},"evennia.web.api.serializers.TypeclassSerializerMixin":{get_aliases:[519,3,1,""],get_attributes:[519,3,1,""],get_nicks:[519,3,1,""],get_permissions:[519,3,1,""],get_tags:[519,3,1,""],shared_fields:[519,4,1,""]},"evennia.web.api.tests":{TestEvenniaRESTApi:[520,1,1,""]},"evennia.web.api.tests.TestEvenniaRESTApi":{client_class:[520,4,1,""],get_view_details:[520,3,1,""],maxDiff:[520,4,1,""],setUp:[520,3,1,""],tearDown:[520,3,1,""],test_create:[520,3,1,""],test_delete:[520,3,1,""],test_list:[520,3,1,""],test_retrieve:[520,3,1,""],test_set_attribute:[520,3,1,""],test_update:[520,3,1,""]},"evennia.web.api.views":{AccountDBViewSet:[522,1,1,""],CharacterViewSet:[522,1,1,""],ExitViewSet:[522,1,1,""],GeneralViewSetMixin:[522,1,1,""],HelpViewSet:[522,1,1,""],ObjectDBViewSet:[522,1,1,""],RoomViewSet:[522,1,1,""],ScriptDBViewSet:[522,1,1,""],TypeclassViewSetMixin:[522,1,1,""]},"evennia.web.api.views.AccountDBViewSet":{basename:[522,4,1,""],description:[522,4,1,""],detail:[522,4,1,""],filterset_class:[522,4,1,""],list_serializer_class:[522,4,1,""],name:[522,4,1,""],queryset:[522,4,1,""],serializer_class:[522,4,1,""],suffix:[522,4,1,""]},"evennia.web.api.views.CharacterViewSet":{basename:[522,4,1,""],description:[522,4,1,""],detail:[522,4,1,""],list_serializer_class:[522,4,1,""],name:[522,4,1,""],queryset:[522,4,1,""],suffix:[522,4,1,""]},"evennia.web.api.views.ExitViewSet":{basename:[522,4,1,""],description:[522,4,1,""],detail:[522,4,1,""],list_serializer_class:[522,4,1,""],name:[522,4,1,""],queryset:[522,4,1,""],suffix:[522,4,1,""]},"evennia.web.api.views.GeneralViewSetMixin":{get_serializer_class:[522,3,1,""]},"evennia.web.api.views.HelpViewSet":{basename:[522,4,1,""],description:[522,4,1,""],detail:[522,4,1,""],filterset_class:[522,4,1,""],list_serializer_class:[522,4,1,""],name:[522,4,1,""],queryset:[522,4,1,""],serializer_class:[522,4,1,""],suffix:[522,4,1,""]},"evennia.web.api.views.ObjectDBViewSet":{basename:[522,4,1,""],description:[522,4,1,""],detail:[522,4,1,""],filterset_class:[522,4,1,""],list_serializer_class:[522,4,1,""],name:[522,4,1,""],queryset:[522,4,1,""],serializer_class:[522,4,1,""],suffix:[522,4,1,""]},"evennia.web.api.views.RoomViewSet":{basename:[522,4,1,""],description:[522,4,1,""],detail:[522,4,1,""],list_serializer_class:[522,4,1,""],name:[522,4,1,""],queryset:[522,4,1,""],suffix:[522,4,1,""]},"evennia.web.api.views.ScriptDBViewSet":{basename:[522,4,1,""],description:[522,4,1,""],detail:[522,4,1,""],filterset_class:[522,4,1,""],list_serializer_class:[522,4,1,""],name:[522,4,1,""],queryset:[522,4,1,""],serializer_class:[522,4,1,""],suffix:[522,4,1,""]},"evennia.web.api.views.TypeclassViewSetMixin":{filter_backends:[522,4,1,""],permission_classes:[522,4,1,""],set_attribute:[522,3,1,""]},"evennia.web.templatetags":{addclass:[524,0,0,"-"]},"evennia.web.templatetags.addclass":{addclass:[524,5,1,""]},"evennia.web.utils":{adminsite:[527,0,0,"-"],backends:[528,0,0,"-"],general_context:[529,0,0,"-"],middleware:[530,0,0,"-"],tests:[531,0,0,"-"]},"evennia.web.utils.adminsite":{EvenniaAdminApp:[527,1,1,""],EvenniaAdminSite:[527,1,1,""]},"evennia.web.utils.adminsite.EvenniaAdminApp":{default_site:[527,4,1,""]},"evennia.web.utils.adminsite.EvenniaAdminSite":{app_order:[527,4,1,""],get_app_list:[527,3,1,""],site_header:[527,4,1,""]},"evennia.web.utils.backends":{CaseInsensitiveModelBackend:[528,1,1,""]},"evennia.web.utils.backends.CaseInsensitiveModelBackend":{authenticate:[528,3,1,""]},"evennia.web.utils.general_context":{general_context:[529,5,1,""],load_game_settings:[529,5,1,""]},"evennia.web.utils.middleware":{SharedLoginMiddleware:[530,1,1,""]},"evennia.web.utils.middleware.SharedLoginMiddleware":{__init__:[530,3,1,""],make_shared_login:[530,3,1,""]},"evennia.web.utils.tests":{TestGeneralContext:[531,1,1,""]},"evennia.web.utils.tests.TestGeneralContext":{maxDiff:[531,4,1,""],test_general_context:[531,3,1,""]},"evennia.web.webclient":{urls:[533,0,0,"-"],views:[534,0,0,"-"]},"evennia.web.webclient.views":{webclient:[534,5,1,""]},"evennia.web.website":{forms:[536,0,0,"-"],tests:[537,0,0,"-"],urls:[538,0,0,"-"],views:[539,0,0,"-"]},"evennia.web.website.forms":{AccountForm:[536,1,1,""],CharacterForm:[536,1,1,""],CharacterUpdateForm:[536,1,1,""],EvenniaForm:[536,1,1,""],ObjectForm:[536,1,1,""]},"evennia.web.website.forms.AccountForm":{Meta:[536,1,1,""],base_fields:[536,4,1,""],declared_fields:[536,4,1,""],media:[536,3,1,""]},"evennia.web.website.forms.AccountForm.Meta":{field_classes:[536,4,1,""],fields:[536,4,1,""],model:[536,4,1,""]},"evennia.web.website.forms.CharacterForm":{Meta:[536,1,1,""],base_fields:[536,4,1,""],declared_fields:[536,4,1,""],media:[536,3,1,""]},"evennia.web.website.forms.CharacterForm.Meta":{fields:[536,4,1,""],labels:[536,4,1,""],model:[536,4,1,""]},"evennia.web.website.forms.CharacterUpdateForm":{base_fields:[536,4,1,""],declared_fields:[536,4,1,""],media:[536,3,1,""]},"evennia.web.website.forms.EvenniaForm":{base_fields:[536,4,1,""],clean:[536,3,1,""],declared_fields:[536,4,1,""],media:[536,3,1,""]},"evennia.web.website.forms.ObjectForm":{Meta:[536,1,1,""],base_fields:[536,4,1,""],declared_fields:[536,4,1,""],media:[536,3,1,""]},"evennia.web.website.forms.ObjectForm.Meta":{fields:[536,4,1,""],labels:[536,4,1,""],model:[536,4,1,""]},"evennia.web.website.tests":{AdminTest:[537,1,1,""],ChannelDetailTest:[537,1,1,""],ChannelListTest:[537,1,1,""],CharacterCreateView:[537,1,1,""],CharacterDeleteView:[537,1,1,""],CharacterListView:[537,1,1,""],CharacterManageView:[537,1,1,""],CharacterPuppetView:[537,1,1,""],CharacterUpdateView:[537,1,1,""],EvenniaWebTest:[537,1,1,""],HelpDetailTest:[537,1,1,""],HelpListTest:[537,1,1,""],HelpLockedDetailTest:[537,1,1,""],IndexTest:[537,1,1,""],LoginTest:[537,1,1,""],LogoutTest:[537,1,1,""],PasswordResetTest:[537,1,1,""],RegisterTest:[537,1,1,""],WebclientTest:[537,1,1,""]},"evennia.web.website.tests.AdminTest":{unauthenticated_response:[537,4,1,""],url_name:[537,4,1,""]},"evennia.web.website.tests.ChannelDetailTest":{get_kwargs:[537,3,1,""],setUp:[537,3,1,""],url_name:[537,4,1,""]},"evennia.web.website.tests.ChannelListTest":{url_name:[537,4,1,""]},"evennia.web.website.tests.CharacterCreateView":{test_valid_access_multisession_0:[537,3,1,""],test_valid_access_multisession_2:[537,3,1,""],unauthenticated_response:[537,4,1,""],url_name:[537,4,1,""]},"evennia.web.website.tests.CharacterDeleteView":{get_kwargs:[537,3,1,""],test_invalid_access:[537,3,1,""],test_valid_access:[537,3,1,""],unauthenticated_response:[537,4,1,""],url_name:[537,4,1,""]},"evennia.web.website.tests.CharacterListView":{unauthenticated_response:[537,4,1,""],url_name:[537,4,1,""]},"evennia.web.website.tests.CharacterManageView":{unauthenticated_response:[537,4,1,""],url_name:[537,4,1,""]},"evennia.web.website.tests.CharacterPuppetView":{get_kwargs:[537,3,1,""],test_invalid_access:[537,3,1,""],unauthenticated_response:[537,4,1,""],url_name:[537,4,1,""]},"evennia.web.website.tests.CharacterUpdateView":{get_kwargs:[537,3,1,""],test_invalid_access:[537,3,1,""],test_valid_access:[537,3,1,""],unauthenticated_response:[537,4,1,""],url_name:[537,4,1,""]},"evennia.web.website.tests.EvenniaWebTest":{account_typeclass:[537,4,1,""],authenticated_response:[537,4,1,""],channel_typeclass:[537,4,1,""],character_typeclass:[537,4,1,""],exit_typeclass:[537,4,1,""],get_kwargs:[537,3,1,""],login:[537,3,1,""],object_typeclass:[537,4,1,""],room_typeclass:[537,4,1,""],script_typeclass:[537,4,1,""],setUp:[537,3,1,""],test_get:[537,3,1,""],test_get_authenticated:[537,3,1,""],test_valid_chars:[537,3,1,""],unauthenticated_response:[537,4,1,""],url_name:[537,4,1,""]},"evennia.web.website.tests.HelpDetailTest":{get_kwargs:[537,3,1,""],setUp:[537,3,1,""],test_object_cache:[537,3,1,""],test_view:[537,3,1,""],url_name:[537,4,1,""]},"evennia.web.website.tests.HelpListTest":{url_name:[537,4,1,""]},"evennia.web.website.tests.HelpLockedDetailTest":{get_kwargs:[537,3,1,""],setUp:[537,3,1,""],test_lock_with_perm:[537,3,1,""],test_locked_entry:[537,3,1,""],url_name:[537,4,1,""]},"evennia.web.website.tests.IndexTest":{url_name:[537,4,1,""]},"evennia.web.website.tests.LoginTest":{url_name:[537,4,1,""]},"evennia.web.website.tests.LogoutTest":{url_name:[537,4,1,""]},"evennia.web.website.tests.PasswordResetTest":{unauthenticated_response:[537,4,1,""],url_name:[537,4,1,""]},"evennia.web.website.tests.RegisterTest":{url_name:[537,4,1,""]},"evennia.web.website.tests.WebclientTest":{test_get:[537,3,1,""],test_get_disabled:[537,3,1,""],url_name:[537,4,1,""]},"evennia.web.website.views":{accounts:[540,0,0,"-"],channels:[541,0,0,"-"],characters:[542,0,0,"-"],errors:[543,0,0,"-"],help:[544,0,0,"-"],index:[545,0,0,"-"],mixins:[546,0,0,"-"],objects:[547,0,0,"-"]},"evennia.web.website.views.accounts":{AccountCreateView:[540,1,1,""],AccountMixin:[540,1,1,""]},"evennia.web.website.views.accounts.AccountCreateView":{form_valid:[540,3,1,""],success_url:[540,4,1,""],template_name:[540,4,1,""]},"evennia.web.website.views.accounts.AccountMixin":{form_class:[540,4,1,""],model:[540,4,1,""]},"evennia.web.website.views.channels":{ChannelDetailView:[541,1,1,""],ChannelListView:[541,1,1,""],ChannelMixin:[541,1,1,""]},"evennia.web.website.views.channels.ChannelDetailView":{attributes:[541,4,1,""],get_context_data:[541,3,1,""],get_object:[541,3,1,""],max_num_lines:[541,4,1,""],template_name:[541,4,1,""]},"evennia.web.website.views.channels.ChannelListView":{get_context_data:[541,3,1,""],max_popular:[541,4,1,""],page_title:[541,4,1,""],paginate_by:[541,4,1,""],template_name:[541,4,1,""]},"evennia.web.website.views.channels.ChannelMixin":{access_type:[541,4,1,""],get_queryset:[541,3,1,""],model:[541,4,1,""],page_title:[541,4,1,""]},"evennia.web.website.views.characters":{CharacterCreateView:[542,1,1,""],CharacterDeleteView:[542,1,1,""],CharacterDetailView:[542,1,1,""],CharacterListView:[542,1,1,""],CharacterManageView:[542,1,1,""],CharacterMixin:[542,1,1,""],CharacterPuppetView:[542,1,1,""],CharacterUpdateView:[542,1,1,""]},"evennia.web.website.views.characters.CharacterCreateView":{form_valid:[542,3,1,""],template_name:[542,4,1,""]},"evennia.web.website.views.characters.CharacterDeleteView":{form_class:[542,4,1,""]},"evennia.web.website.views.characters.CharacterDetailView":{access_type:[542,4,1,""],attributes:[542,4,1,""],get_queryset:[542,3,1,""],template_name:[542,4,1,""]},"evennia.web.website.views.characters.CharacterListView":{access_type:[542,4,1,""],get_queryset:[542,3,1,""],page_title:[542,4,1,""],paginate_by:[542,4,1,""],template_name:[542,4,1,""]},"evennia.web.website.views.characters.CharacterManageView":{page_title:[542,4,1,""],paginate_by:[542,4,1,""],template_name:[542,4,1,""]},"evennia.web.website.views.characters.CharacterMixin":{form_class:[542,4,1,""],get_queryset:[542,3,1,""],model:[542,4,1,""],success_url:[542,4,1,""]},"evennia.web.website.views.characters.CharacterPuppetView":{get_redirect_url:[542,3,1,""]},"evennia.web.website.views.characters.CharacterUpdateView":{form_class:[542,4,1,""],template_name:[542,4,1,""]},"evennia.web.website.views.errors":{to_be_implemented:[543,5,1,""]},"evennia.web.website.views.help":{HelpDetailView:[544,1,1,""],HelpListView:[544,1,1,""],HelpMixin:[544,1,1,""],can_read_topic:[544,5,1,""],collect_topics:[544,5,1,""],get_help_category:[544,5,1,""],get_help_topic:[544,5,1,""]},"evennia.web.website.views.help.HelpDetailView":{get_context_data:[544,3,1,""],get_object:[544,3,1,""],page_title:[544,3,1,""],template_name:[544,4,1,""]},"evennia.web.website.views.help.HelpListView":{page_title:[544,4,1,""],paginate_by:[544,4,1,""],template_name:[544,4,1,""]},"evennia.web.website.views.help.HelpMixin":{get_queryset:[544,3,1,""],page_title:[544,4,1,""]},"evennia.web.website.views.index":{EvenniaIndexView:[545,1,1,""]},"evennia.web.website.views.index.EvenniaIndexView":{get_context_data:[545,3,1,""],template_name:[545,4,1,""]},"evennia.web.website.views.mixins":{EvenniaCreateView:[546,1,1,""],EvenniaDeleteView:[546,1,1,""],EvenniaDetailView:[546,1,1,""],EvenniaUpdateView:[546,1,1,""],TypeclassMixin:[546,1,1,""]},"evennia.web.website.views.mixins.EvenniaCreateView":{page_title:[546,3,1,""]},"evennia.web.website.views.mixins.EvenniaDeleteView":{page_title:[546,3,1,""]},"evennia.web.website.views.mixins.EvenniaDetailView":{page_title:[546,3,1,""]},"evennia.web.website.views.mixins.EvenniaUpdateView":{page_title:[546,3,1,""]},"evennia.web.website.views.mixins.TypeclassMixin":{typeclass:[546,3,1,""]},"evennia.web.website.views.objects":{ObjectCreateView:[547,1,1,""],ObjectDeleteView:[547,1,1,""],ObjectDetailView:[547,1,1,""],ObjectUpdateView:[547,1,1,""]},"evennia.web.website.views.objects.ObjectCreateView":{model:[547,4,1,""]},"evennia.web.website.views.objects.ObjectDeleteView":{access_type:[547,4,1,""],model:[547,4,1,""],template_name:[547,4,1,""]},"evennia.web.website.views.objects.ObjectDetailView":{access_type:[547,4,1,""],attributes:[547,4,1,""],get_context_data:[547,3,1,""],get_object:[547,3,1,""],model:[547,4,1,""],template_name:[547,4,1,""]},"evennia.web.website.views.objects.ObjectUpdateView":{access_type:[547,4,1,""],form_valid:[547,3,1,""],get_initial:[547,3,1,""],get_success_url:[547,3,1,""],model:[547,4,1,""]},evennia:{accounts:[207,0,0,"-"],commands:[212,0,0,"-"],comms:[235,0,0,"-"],contrib:[239,0,0,"-"],help:[391,0,0,"-"],locks:[396,0,0,"-"],objects:[399,0,0,"-"],prototypes:[403,0,0,"-"],scripts:[408,0,0,"-"],server:[416,0,0,"-"],set_trace:[205,5,1,""],settings_default:[466,0,0,"-"],typeclasses:[467,0,0,"-"],utils:[472,0,0,"-"],web:[502,0,0,"-"]}},objnames:{"0":["py","module","Python module"],"1":["py","class","Python class"],"2":["py","exception","Python exception"],"3":["py","method","Python method"],"4":["py","attribute","Python attribute"],"5":["py","function","Python function"],"6":["py","data","Python data"]},objtypes:{"0":"py:module","1":"py:class","2":"py:exception","3":"py:method","4":"py:attribute","5":"py:function","6":"py:data"},terms:{"000":[60,95,96,116,167,201],"0000":[95,96],"0004":80,"0005":75,"001":[80,339],"003":135,"005":[60,473],"010":153,"0157":201,"015public":153,"020t":153,"0247":80,"030a":153,"033":473,"034":80,"040f":153,"043thi":135,"050":473,"050f":153,"054":60,"055":473,"0b16":184,"0d0":160,"0jyyngi":0,"0th":14,"0x045a0990":6,"100":[7,14,21,48,83,85,91,93,110,124,141,146,160,168,170,201,232,280,312,315,316,339,347,350,357,358,384,496,541,542],"1000":[0,7,42,147,160,192,201,312,406],"10000":541,"1000000":[7,167,201,489],"100m":495,"100mb":197,"100x":0,"101":[21,402],"101m":495,"102":[110,358],"102m":495,"103m":495,"104m":495,"105m":495,"106m":495,"107m":495,"108m":495,"1098":48,"109m":495,"10gold":141,"10m":187,"110":[110,358,473,481],"1100":358,"110m":495,"111":[55,60,220],"111m":495,"112m":495,"113":197,"113m":495,"114m":495,"115600":160,"115m":495,"116m":495,"117m":495,"118":47,"1184":183,"118m":495,"119m":495,"120":21,"1200":[201,479],"1209600":201,"120m":495,"121m":495,"122m":495,"123":[12,82,117,179,402,483],"1234":[14,41,103,185,201,309],"123dark":166,"123m":495,"12400":167,"124m":495,"125":[49,201],"125m":495,"126m":495,"127":[53,124,125,182,183,184,187,193,195,197,201,440],"127m":495,"128m":495,"129m":495,"12s":20,"130m":495,"131m":495,"132m":495,"133m":495,"134":[55,220],"134m":495,"13541":429,"135m":495,"1369":0,"136m":495,"137m":495,"138m":495,"139m":495,"140":[0,6,205],"1400":479,"140313967648552":23,"140m":495,"141m":495,"142":[80,245],"142m":495,"143m":495,"144m":495,"145m":495,"146m":495,"147m":495,"148m":495,"149m":495,"150":478,"150m":495,"151m":495,"152m":495,"153m":495,"154m":495,"155m":495,"156m":495,"1577865600":163,"157m":495,"158m":495,"159":131,"159m":495,"15th":94,"1600":201,"160m":495,"161m":495,"162m":495,"163m":495,"164m":495,"165m":495,"166m":495,"167m":495,"168m":495,"169m":495,"16m":495,"170m":495,"171m":495,"172m":495,"1730":181,"173m":495,"174m":495,"175m":495,"1763":130,"1764":130,"176m":495,"177m":495,"178m":495,"179m":495,"17m":495,"180m":495,"181m":495,"182m":495,"183m":495,"184m":495,"185m":495,"186m":495,"187m":495,"188m":495,"189m":495,"18m":495,"1903":130,"190m":495,"1912":0,"191m":495,"192m":495,"193m":495,"194m":495,"195m":495,"196m":495,"1970":[163,201],"197m":495,"198m":495,"199m":495,"19m":495,"1_7":10,"1d100":[87,141,146,347],"1d2":160,"1d20":[87,141,347],"1d6":146,"1em":0,"1gb":197,"1st":[30,58,94,163,483,499,500,501],"200":[110,201,358,537],"2000":201,"2003":181,"2006":0,"2008":496,"200m":495,"2010":[2,495],"2011":[2,106,109,113,117,367,368,369,370,372,375],"2012":[2,75,77,78,79,87,88,90,117,253,255,286,287,319,320,346,347,360,362,363],"2013":2,"2014":[2,108,110,117,152,328,329,356,358],"2015":[2,64,92,104,113,117,184,299,300,352,353,354,365,372],"2016":[2,97,98,99,101,107,109,117,302,303,305,306,325,326,369,370],"2017":[2,76,81,82,86,93,94,100,105,111,112,114,115,117,163,197,247,248,250,251,272,274,289,290,311,312,313,314,315,316,331,333,349,350,380,381,385,386,388,390],"2018":[0,80,91,103,117,124,135,136,244,245,264,308,309,383,384],"2019":[0,64,89,90,99,117,181,276,319,320],"201m":495,"2020":[0,55,64,75,85,110,117,163,241,295,296,356,358,373],"2020_01_29":489,"2020_01_29__1":489,"2020_01_29__2":489,"2021":[50,64,83,84,102,116,117,269,270,292,293,334,499,500,544],"2022":[0,64,312,313,315],"2025":94,"202m":495,"203":197,"203m":495,"2048":187,"204m":495,"205":479,"2053":429,"205m":495,"206m":495,"2076":130,"207m":495,"208":169,"208m":495,"2099":75,"209m":495,"20m":495,"210m":495,"211m":495,"212":55,"2128":160,"212m":495,"213":49,"213m":495,"214":49,"214m":495,"215m":495,"216m":495,"217m":495,"218m":495,"219":124,"219m":495,"21m":495,"2207":[105,386],"220m":495,"221":474,"221m":495,"222":[60,473],"222m":495,"223":55,"223m":495,"224m":495,"225":55,"225m":495,"226m":495,"227m":495,"228m":495,"229m":495,"22m":[473,495],"22nd":496,"230":60,"230m":495,"231m":495,"232m":495,"233":[55,220,483],"233m":495,"234":[82,117,248],"234m":495,"235m":495,"236m":495,"237":55,"237m":495,"238m":495,"239m":495,"23fwsf23sdfw23wef23":7,"23m":495,"2401":0,"240m":495,"241m":495,"2429":544,"242m":495,"243m":495,"244":42,"244m":495,"245m":495,"246m":495,"247m":495,"248m":495,"249m":495,"24m":495,"250m":495,"251m":495,"252m":495,"253m":495,"254m":495,"255":[184,473],"255m":495,"256":[55,60,219,473],"25m":495,"26m":495,"27m":495,"280":188,"28gmcp":444,"28m":495,"29m":495,"2d10":[87,117],"2d6":[87,141,162,347],"2gb":197,"2nd":[30,58,284,483,499,500,501],"2nd_person_pronoun":500,"2sgpre":501,"2xcoal":297,"300":[60,176,251,484],"3000000":167,"302":537,"30m":[473,495],"30s":[141,339],"31m":[473,495],"31st":163,"32bit":[184,195],"32m":[473,495],"32nd":162,"333":[55,60],"33m":[473,495],"340":160,"343":30,"34m":[473,495],"358":50,"358283996582031":7,"35m":[473,495],"360":163,"3600":[163,201],"36m":[473,495],"37m":[473,495],"3872":130,"38m":495,"39m":495,"3c3ccec30f037be174d3":496,"3d10":[87,347],"3d6":347,"3rd":[30,58,163,284,483,499,500,501],"3rd_person_pronoun":500,"3sgpast":499,"3sgpre":[499,501],"4000":[4,121,124,125,187,190,191,192,193,195,197,199,201],"4001":[4,49,50,51,52,53,73,123,124,125,149,164,178,179,182,187,190,191,192,193,195,197,199,201,449],"4002":[4,182,187,192,197,201],"4003":[197,201],"4004":[197,201],"4005":[197,201],"4006":[197,201],"403":12,"404":[53,164],"40m":[473,495],"41917":440,"41m":[473,495],"4201":197,"425":473,"42m":[473,495],"430000":163,"431":473,"43m":[473,495],"443":[182,187,199,201],"444":60,"44m":[473,495],"450d70118f8e336dd5533aecaf712782212d4305":233,"45m":[20,473,495],"46m":[473,495],"474a3b9f":40,"47m":[473,495],"48m":495,"49m":495,"4er43233fwefwfw":124,"4th":[116,119,181],"500":[53,60,116,176,201,341,473,544],"50000":167,"500red":473,"502916":10,"503435":10,"505":473,"50m":495,"50mb":197,"516106":160,"51m":495,"520":60,"52m":495,"530":135,"53m":495,"543":[30,483],"5432":183,"54343":30,"5434343":483,"54m":495,"550":[473,479],"550n":153,"551e":153,"552w":153,"553b":153,"554i":153,"555":[60,105,386,473],"555e":153,"55m":495,"565000":163,"566":42,"56m":495,"577349":495,"57m":495,"58m":495,"593":496,"59m":495,"5d5":160,"5mb":75,"5x5":170,"600":496,"6000":201,"60m":495,"61m":495,"624660":50,"62cb3a1a":40,"62m":495,"63m":495,"64m":495,"64x64":53,"65m":495,"6666":62,"6667":[189,209,227,461],"66m":495,"67m":495,"686":58,"68m":495,"69m":495,"6d6":160,"6em":0,"70982813835144":7,"70m":495,"71m":495,"72m":495,"73m":495,"74m":495,"75m":495,"760000":163,"76m":495,"775":4,"77m":495,"78m":495,"79m":495,"7a3d54":53,"800":201,"8080":197,"80m":495,"8111":4,"81m":495,"82m":495,"83m":495,"84m":495,"85000":167,"85m":495,"8601":201,"86400":173,"86m":495,"87m":495,"8859":[17,70,201,234],"88m":495,"89m":495,"8f64fec2670c":197,"900":[91,384,479],"9000":536,"90m":495,"90s":497,"91m":495,"92m":495,"93m":495,"94608000":75,"94m":495,"95m":495,"96m":495,"97m":495,"981":[105,386],"98m":495,"990":479,"999":315,"99999":140,"999999999999":342,"99m":495,"\u6d4b\u8bd5":153,"abstract":[0,67,112,116,122,131,141,279,316,468,469,470,487,490,496],"ansl\u00f6t":64,"boolean":[0,14,15,19,23,30,51,91,126,178,217,347,384,398,402,413,440,468,471,473,474,490,497],"break":[0,6,10,16,30,31,48,51,54,55,60,64,69,102,117,134,135,136,140,142,144,156,161,162,169,170,185,199,201,205,222,229,230,270,306,335,344,368,429,473,480,481,496],"byte":[0,17,20,30,70,201,420,422,429,431,440,448,496],"case":[0,6,10,11,12,14,15,16,17,19,20,21,23,28,31,32,33,37,39,41,44,45,48,49,50,51,52,53,54,55,60,62,64,65,67,68,69,70,75,80,84,89,94,95,104,116,118,119,122,125,126,128,129,130,131,132,133,134,135,136,137,138,139,140,143,144,147,152,153,154,155,158,159,162,163,164,166,167,169,170,173,174,175,178,182,183,192,196,199,201,203,208,209,210,214,216,217,219,222,228,229,230,236,237,243,245,262,287,290,293,296,297,320,335,342,344,347,354,355,357,368,376,382,384,386,392,393,394,397,398,400,402,406,410,412,425,429,433,437,451,458,461,468,469,470,471,473,475,483,487,493,494,496,500,504,528],"catch":[0,1,8,17,20,28,36,42,47,144,156,162,169,172,209,228,236,277,376,411,420,425,432,458,459,468,478,480,481,487,492,545],"char":[0,10,14,44,68,92,94,116,130,133,146,147,160,162,168,170,173,178,188,201,208,222,228,279,280,300,341,344,376,402,417,430,443,444,465,473,479,482],"class":[0,1,2,6,8,13,14,18,19,21,24,27,28,29,30,31,37,39,41,42,44,46,49,50,52,53,54,55,56,62,64,67,73,77,81,83,84,85,87,89,90,92,97,101,102,104,105,107,108,110,114,115,116,117,119,120,121,122,125,126,127,128,129,130,131,134,137,139,140,141,144,146,147,149,152,153,154,155,156,157,158,159,160,161,162,163,166,167,168,169,171,172,173,174,175,177,178,179,188,201,208,209,210,211,212,215,216,217,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,236,237,238,243,245,246,249,251,252,255,256,258,259,261,262,264,270,271,273,274,277,278,279,280,281,282,283,284,287,288,290,291,293,294,296,297,298,300,301,303,304,306,307,309,310,312,313,314,315,316,317,320,321,326,327,329,330,332,333,335,336,339,341,342,343,344,347,348,351,353,354,355,357,358,363,364,366,368,370,371,373,374,375,376,377,381,382,384,386,387,389,390,392,393,394,398,399,400,401,402,404,406,407,409,410,411,412,413,414,415,417,418,420,422,423,426,427,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,451,453,456,458,459,460,461,463,464,465,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,486,487,488,489,490,491,492,493,494,495,496,501,504,505,506,508,509,510,511,512,514,516,517,518,519,520,522,525,527,528,530,531,536,537,540,541,542,544,545,546,547],"const":274,"default":[0,4,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,31,35,36,37,39,41,42,44,45,46,48,49,50,52,54,55,56,57,60,62,63,64,65,67,68,70,71,72,73,74,75,76,77,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,98,99,101,102,104,108,110,111,112,114,115,117,119,120,121,122,123,124,125,126,127,128,129,130,131,132,135,136,137,141,142,143,144,147,149,151,152,155,157,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,178,179,182,183,186,187,188,189,190,191,192,193,195,196,197,199,200,202,205,206,208,209,211,212,213,214,215,216,217,236,237,238,245,248,251,255,259,261,262,270,274,277,279,280,281,282,284,287,290,293,296,300,303,306,309,312,313,314,315,316,320,326,329,332,333,335,338,341,342,343,344,347,350,353,354,357,358,366,368,370,374,376,380,381,382,384,390,391,392,393,394,395,396,398,400,402,406,407,410,411,413,414,415,418,420,422,424,425,426,430,442,443,444,449,451,452,458,459,460,461,465,466,468,469,470,471,473,475,476,478,480,481,482,483,486,487,489,490,491,492,493,494,496,497,504,516,522,527,528,536,542,544,545,546,547,548],"elsd\u00f6rfer":75,"export":[75,191],"final":[1,4,20,23,41,44,48,53,54,60,64,65,67,94,119,126,129,130,131,133,134,138,142,146,147,151,155,157,162,164,168,175,176,178,179,183,187,193,199,213,214,215,222,227,231,296,341,347,390,398,407,457,461,473,475,480,481],"float":[0,30,110,119,134,159,209,251,260,261,264,293,358,414,420,432,469,483,484,492,496],"function":[0,1,3,7,9,10,11,14,15,16,20,23,24,27,28,29,31,32,39,41,42,45,47,48,49,51,52,54,57,58,60,62,65,67,68,69,71,73,74,75,76,77,85,86,87,91,93,94,95,98,102,104,106,110,111,112,115,116,117,119,121,122,123,124,125,126,127,128,130,132,133,134,136,138,140,141,142,143,144,146,149,152,153,155,158,161,162,163,164,166,167,168,169,170,172,174,175,178,179,183,191,200,201,203,205,208,211,214,216,217,219,220,221,222,223,227,228,229,230,232,233,234,236,237,245,251,254,260,261,264,270,274,277,279,284,287,293,296,298,303,309,312,313,314,315,316,320,326,333,341,342,343,347,350,353,354,358,368,373,375,376,382,384,390,394,396,397,398,402,405,406,407,411,413,414,415,420,424,425,429,440,441,446,449,452,459,461,463,470,471,472,473,474,476,477,478,480,481,483,484,489,490,491,494,495,496,497,500,520,522,525,545,546,547,548],"g\u00e9n\u00e9ral":181,"goto":[0,116,168,335,373,480],"import":[0,2,5,6,7,9,10,13,14,15,16,17,19,20,21,23,27,28,29,30,31,32,33,34,35,37,39,42,44,45,46,47,48,49,50,51,53,54,56,57,58,62,64,65,67,70,73,74,77,80,81,82,83,84,85,86,87,89,90,91,92,93,94,95,96,97,98,101,102,104,107,108,110,111,114,115,117,118,120,121,122,123,124,125,126,127,129,130,132,133,134,137,140,142,143,144,146,147,149,151,152,153,154,155,156,157,158,159,160,161,162,163,164,166,168,169,170,171,172,173,174,175,176,177,178,179,185,188,189,193,196,197,199,200,201,203,205,216,222,232,245,248,249,251,264,270,274,284,287,290,293,296,303,306,312,313,314,315,316,320,326,329,333,347,350,353,354,357,358,368,375,376,384,386,390,393,398,406,407,415,420,424,429,432,433,454,458,461,462,468,470,474,475,478,479,480,481,482,483,493,494,496,527,547],"int":[0,14,21,28,30,32,42,48,91,110,114,116,133,135,153,157,159,160,162,168,169,175,179,208,209,210,214,215,217,237,251,258,260,261,264,274,284,287,290,293,312,313,314,315,316,341,342,344,347,350,354,358,384,390,395,400,402,407,409,412,414,415,417,418,420,425,429,430,431,432,434,438,439,440,448,449,451,461,463,465,468,469,473,476,478,479,480,481,482,483,484,487,489,493,496,499],"long":[0,1,10,12,14,17,19,20,23,28,29,30,31,33,36,44,47,48,54,62,67,69,70,72,73,80,94,95,104,113,115,116,117,119,122,124,126,128,130,133,135,136,142,143,144,146,153,155,158,159,162,163,166,168,170,172,174,176,178,180,181,183,188,189,197,201,219,229,255,261,274,287,297,309,315,329,342,429,434,449,473,474,481,482,483,496,499],"n\u00fa\u00f1ez":75,"new":[1,2,4,7,9,11,12,13,14,15,16,19,20,21,23,24,25,26,27,28,31,33,34,35,37,39,40,41,44,45,46,49,50,51,55,56,57,61,62,64,65,68,69,72,73,78,80,83,84,89,90,91,96,103,104,107,108,111,113,115,116,117,118,119,121,122,124,125,126,127,128,130,134,135,136,137,138,139,140,141,143,144,145,146,147,148,150,151,152,153,155,157,158,159,161,163,166,167,168,169,170,171,172,174,175,177,179,180,181,183,184,185,186,187,188,189,191,192,193,195,196,197,198,200,201,202,208,209,210,215,216,217,219,220,222,227,229,230,233,234,236,237,245,255,258,261,270,277,278,279,282,284,290,293,296,303,306,309,312,314,316,320,326,329,333,335,341,342,343,344,353,354,355,358,374,375,376,384,386,390,392,394,398,400,401,402,404,406,407,409,410,413,414,415,417,420,429,430,431,432,438,439,440,445,452,460,461,465,468,469,470,471,473,474,476,479,480,481,482,487,489,490,496,504,506,509,510,537,542,544,546,548],"null":[49,67,76,126,182,505,512],"public":[0,12,19,53,75,76,89,126,132,142,153,162,179,186,187,189,192,197,199,201,227,236,402,465,482,548],"return":[0,4,6,7,8,10,14,17,19,20,23,24,27,29,30,31,32,33,37,39,41,42,45,46,48,49,51,52,53,54,58,60,62,64,69,72,80,83,84,85,91,94,98,105,110,111,115,116,119,122,123,125,126,127,128,133,134,137,138,144,146,147,149,152,153,154,155,156,157,158,159,162,163,164,166,167,168,169,170,171,172,174,175,178,179,181,188,192,195,199,201,203,204,208,209,210,211,213,214,215,216,217,219,222,227,229,232,233,236,237,238,243,245,251,254,258,259,260,261,264,274,277,278,279,280,282,284,287,290,293,296,303,309,312,313,314,316,320,326,333,335,341,342,343,344,347,350,353,354,357,358,363,368,373,374,375,376,381,382,384,386,390,392,393,394,395,397,398,400,401,402,404,405,406,407,409,411,412,413,414,415,417,418,420,425,426,429,430,432,433,434,435,437,438,439,440,441,443,444,445,447,448,449,451,452,458,459,461,463,464,465,468,469,470,471,473,474,475,476,477,478,480,481,482,483,484,487,489,490,491,492,493,494,495,496,497,499,500,504,505,506,508,509,510,512,514,516,517,519,525,527,529,536,541,542,544,545,547],"short":[6,14,28,36,37,46,51,58,60,65,72,74,80,94,95,104,114,116,117,128,131,133,135,141,155,157,161,162,163,175,185,188,199,201,203,227,245,261,274,279,290,306,342,353,354,407,474,496,499],"static":[31,49,51,52,53,73,75,78,104,109,117,119,132,141,142,151,159,162,165,201,205,206,232,239,245,258,345,354,356,357,370,393,406,407,465,476,516,517,519,525,534,545,548],"super":[10,21,37,48,61,62,80,81,85,94,133,136,153,159,161,162,163,166,172,174,175,190,245,290,354],"switch":[0,12,13,15,16,19,21,23,27,31,39,48,54,56,57,60,68,72,78,94,95,96,97,98,101,117,124,128,147,153,162,166,167,174,175,176,183,186,189,196,197,198,201,219,220,221,222,227,228,229,230,232,234,237,270,279,282,303,306,309,313,320,335,347,368,410,470,476,481,497,548],"th\u00ed":128,"throw":[12,14,41,63,80,178,191,216,414,496],"true":[0,1,10,13,14,15,19,20,21,23,27,28,30,31,32,33,34,36,37,39,42,44,47,48,49,50,51,52,53,54,60,62,63,64,67,71,73,75,80,82,83,86,91,94,116,123,126,128,132,133,134,137,138,142,144,147,152,153,155,159,160,162,163,164,166,168,169,171,173,174,175,176,178,185,186,189,192,197,198,201,208,210,211,213,215,216,217,219,222,227,229,230,233,236,237,238,245,248,251,258,261,270,277,278,279,282,284,287,290,293,296,297,309,312,314,315,326,333,341,342,343,344,347,350,353,354,358,368,373,374,384,386,390,392,394,397,398,400,401,402,404,406,407,409,410,411,412,413,414,415,418,420,425,426,429,431,438,443,448,449,459,461,463,465,468,469,470,471,473,476,478,480,481,482,483,484,487,491,492,493,494,496,497,501,504,505,506,508,509,510,511,512,517,544],"try":[0,1,6,7,8,14,15,17,19,20,27,28,30,31,32,33,39,42,50,51,54,55,56,58,63,64,67,69,70,73,74,80,85,89,94,95,96,106,107,108,110,115,116,118,119,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,138,139,140,141,143,144,145,146,148,150,151,152,153,155,156,157,158,159,160,161,162,164,166,169,170,172,173,174,175,176,178,179,182,183,185,186,187,191,195,197,199,201,203,208,211,215,217,222,236,238,245,246,249,251,255,262,287,296,312,313,314,315,316,326,329,333,341,344,353,354,357,358,368,374,375,376,386,392,394,400,402,406,417,420,429,444,445,449,463,468,470,473,475,476,478,479,483,492,496,505,512],"var":[0,51,68,98,183,187,380,444,474],"void":160,"while":[0,7,12,14,15,16,19,21,23,25,27,28,30,35,39,42,49,51,54,58,60,64,65,67,69,72,75,80,91,94,96,103,104,113,115,116,118,119,121,124,128,129,131,132,133,135,136,138,140,141,142,144,147,151,153,154,155,158,159,160,161,162,163,169,170,172,174,178,179,183,187,191,193,196,197,199,201,203,208,219,222,229,230,233,262,287,296,309,313,316,333,341,344,354,368,374,376,384,386,402,406,407,413,444,467,468,470,480,482,483,494,496,497,505,512,545],AIs:181,AND:[33,39,91,130,146,222,384,398,468,471],ARE:28,AWS:[117,192,197,241],Added:0,Adding:[12,22,23,24,39,41,61,69,83,90,125,127,132,135,141,142,144,147,161,165,167,168,188,229,320,341,480,548],Age:[91,384,536],And:[1,4,6,19,23,24,28,44,54,67,80,81,94,95,96,111,123,133,135,136,141,143,146,152,153,155,161,163,164,169,170,176,178,216,290,312,313,314,315,316,344,390,548],Are:[23,125,128,139,140,167,181,480],Aye:95,BGs:176,Being:[94,118,135,138,162,166,175],But:[1,6,10,14,15,17,19,20,21,23,28,31,39,41,42,45,48,54,58,60,65,67,77,80,89,94,96,110,116,118,119,121,122,126,128,130,132,133,134,135,136,137,140,142,143,144,146,148,152,153,154,155,157,158,161,163,164,167,168,169,170,176,178,179,185,187,189,192,200,201,215,216,287,344,358,406,471,546],DNS:[187,197],DOING:[91,384],DoS:[7,201,438],Doing:[12,23,42,121,126,146,155,160,179,216,219],For:[0,3,4,5,6,7,8,12,13,14,15,16,18,19,20,21,23,28,30,31,33,35,37,38,41,42,44,49,50,52,53,55,56,57,58,59,60,64,65,67,68,70,72,73,74,75,76,80,81,85,87,89,91,92,94,95,96,98,109,111,116,118,119,121,122,124,128,130,132,133,134,135,136,137,141,142,144,146,147,151,152,153,155,157,159,160,161,162,163,164,166,168,169,170,174,175,176,177,178,179,182,183,187,189,192,193,194,197,198,199,201,203,208,215,216,217,222,227,229,232,236,237,238,245,264,279,290,298,300,313,320,326,342,344,347,354,358,370,374,384,390,392,394,397,398,402,407,414,440,444,449,468,470,473,477,480,483,490,492,494,496,521,529,536,546],GMs:[141,142,162],Going:[114,142,143,274,548],Has:[184,312,313,314,315,316],His:[92,161,300],IDE:[9,119,125],IDEs:161,IDs:[96,178,179,192,260,468,496,519],INTO:[91,222,335,384],IOS:184,IPs:[55,183,199,201,380,463],IRE:[68,444],Its:[8,23,33,37,42,44,58,65,67,92,163,164,227,300,368,407,478,480,496],NOT:[23,33,51,113,130,153,197,199,201,222,342,398,407,463,483],Near:131,Not:[0,19,32,46,47,51,58,69,94,126,130,135,136,140,143,156,161,177,178,182,184,185,197,209,216,230,402,417,430,431,432,434,435,436,442,444,447,468,469,490,500],OBS:[57,201],ONE:199,Obs:201,One:[0,3,5,11,28,30,33,36,42,44,47,55,58,77,80,87,89,94,95,96,110,111,117,119,122,126,128,130,133,135,136,137,142,144,153,155,159,161,162,164,169,171,174,175,176,177,182,183,195,203,205,211,213,229,279,287,293,296,341,342,344,347,353,358,374,375,390,400,406,407,430,458,468,469,473,474,480,481,483,496,505,512,544],Such:[10,15,23,28,50,94,122,140,142,146,154,161,222,407,473,480],THAT:169,THE:[91,384],THEN:[91,216,384],THERE:[91,384],TLS:[199,201],That:[1,6,7,8,12,14,17,21,23,30,32,39,41,42,44,46,47,48,54,74,77,80,84,88,94,95,96,110,111,116,121,122,123,124,126,128,130,131,133,134,135,138,141,142,144,146,149,151,152,153,157,159,161,163,164,169,170,179,198,245,255,270,287,293,342,358,390,398,407,461,480,521],The:[0,2,4,5,6,8,9,10,11,12,13,14,17,18,19,20,21,23,24,26,29,32,33,34,35,36,37,40,44,45,46,47,48,49,51,52,53,55,58,60,61,62,63,64,67,68,69,70,71,72,74,75,76,77,78,80,81,84,85,86,87,88,89,90,91,92,93,96,97,98,103,104,105,106,107,108,110,111,112,113,114,115,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,139,141,142,144,146,150,151,152,153,154,156,157,158,160,161,163,165,166,167,169,170,172,173,174,176,177,178,179,180,181,182,183,184,185,187,189,191,192,193,194,195,196,197,198,199,200,201,202,203,208,209,210,211,213,214,215,216,217,219,222,226,227,228,229,230,231,232,233,234,236,237,238,245,251,254,255,258,259,260,261,264,274,277,278,279,280,282,284,287,290,293,296,297,300,303,309,312,313,314,315,316,320,326,329,333,335,338,341,342,343,344,347,350,353,354,358,363,366,368,373,374,375,376,384,386,390,391,392,393,394,395,397,398,400,401,402,404,405,406,407,409,410,411,412,413,414,415,417,418,419,420,422,424,425,427,429,430,431,432,433,434,435,436,437,438,439,440,442,443,444,445,447,448,449,451,452,457,458,459,460,461,465,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,487,489,490,491,492,493,494,495,496,497,499,500,505,506,512,516,517,519,521,522,525,527,536,544,545,548],Their:[28,41,53,92,146,199,300],Theirs:[92,300],Then:[6,7,10,12,17,45,51,53,64,80,83,90,94,95,96,100,116,119,124,133,157,160,164,169,192,195,320,336],There:[0,1,3,7,10,11,14,15,16,17,19,20,21,23,28,30,31,37,39,42,44,45,46,48,49,50,53,54,57,58,60,67,68,69,70,75,78,80,89,90,91,94,95,96,110,111,115,116,119,122,126,128,129,130,132,134,135,137,140,141,142,143,144,146,147,151,152,153,159,161,162,163,164,166,168,169,170,171,172,174,175,178,182,183,187,189,197,198,199,200,230,296,312,313,314,315,316,320,333,341,358,384,390,407,415,425,444,461,473,474,480,483],These:[0,7,10,12,14,15,18,23,24,25,28,30,31,32,35,41,42,44,45,46,48,50,51,52,53,58,60,62,65,67,68,71,80,81,83,85,89,94,96,103,104,106,116,117,119,123,124,126,128,129,130,132,133,135,136,137,141,142,144,146,153,157,159,164,169,170,174,178,186,187,192,194,196,197,199,201,203,207,208,213,215,217,219,221,223,227,231,237,245,251,264,296,303,309,339,341,342,344,353,354,358,368,376,381,392,393,398,402,406,407,415,419,426,445,448,449,451,460,461,462,468,470,473,477,480,481,482,483,484,489,490,491,496,500,504,513,546],USING:296,Use:[0,2,5,7,10,12,13,15,16,21,28,30,31,35,37,41,44,48,51,55,58,60,77,79,80,88,97,98,99,105,106,109,116,119,123,124,125,128,134,135,136,138,147,153,162,164,175,182,183,184,185,186,187,190,192,193,195,197,201,202,208,214,219,220,222,227,228,229,232,234,236,245,246,251,255,274,277,287,296,303,306,309,313,314,315,316,337,354,370,386,392,400,401,402,420,422,426,431,448,449,451,455,468,470,473,479,480,482,483,487,493,496,509],Used:[0,23,174,201,213,216,222,234,306,333,340,341,344,384,390,400,401,413,422,440,468,470,481,482,494,496,504],Useful:[28,116,197],Uses:[24,222,234,255,374,380,420,468,482,487],Using:[0,2,8,20,24,28,33,35,39,47,58,61,71,80,85,95,106,117,121,125,127,130,133,134,135,136,139,142,145,150,162,163,169,174,175,190,205,206,239,274,313,345,354,356,368,402,440,467,480,548],VCS:4,VHS:[91,384],VPS:197,WILL:[169,184],WIS:162,WITH:[28,91,183,384],Was:227,Will:[21,32,105,116,125,128,139,140,203,208,227,251,282,284,296,344,354,386,402,405,407,418,420,429,430,470,480,482,483,484,491,496],With:[0,14,17,19,28,36,53,57,75,94,116,121,126,130,137,138,140,141,142,144,161,170,175,182,183,192,201,205,208,245,296,342,354,407,468,473,483],Yes:[23,91,94,384,478,480],__1:489,__2:489,_________________:48,_________________________:28,___________________________:111,______________________________:28,_______________________________:111,________________________________:28,_________________________________:48,______________________________________:480,_________________________________________:28,______________________________________________:28,_______________________________________________:28,____________________________________________________:28,_________________________________________________________:168,__________________________________________________________:168,_______________________________________________________________:111,________________________________________________________________:111,__all__:[504,506,508,509],__defaultclasspath__:470,__deserialize_dbobjs__:[0,14],__dict__:420,__doc__:[23,31,217,230,232,233,393,394,476,480],__example__:8,__file__:201,__ge:130,__ge__:8,__getitem__:473,__gt:130,__iendswith:130,__in:130,__init_:482,__init__:[8,14,45,48,62,80,118,120,131,132,133,136,149,159,201,215,216,217,238,245,258,274,282,287,293,296,340,341,342,354,358,386,392,398,401,402,406,411,412,414,415,417,418,420,422,423,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,447,448,449,451,458,459,461,463,464,465,468,470,471,473,475,478,479,480,481,482,483,489,490,491,492,496,504,505,509,512,527,530],__istartswith:130,__iter__:14,__le:130,__lt:130,__multimatch_command:231,__noinput_command:[215,231,245,478,480,481],__nomatch_command:[231,245,277,376,478,480,481],__packed_dbobj__:50,__pycache__:132,__serialize_dbobjs__:[0,14],__settingsclasspath__:470,__str__:544,__unloggedin_look_command:[26,234,255],_action_thre:28,_action_two:28,_actual_myfunc_cal:28,_all_:215,_always_:[296,483],_and_:[483,496],_answer:429,_ask_again:28,_asynctest:[377,446],_attrs_to_sync:460,_attrtyp:468,_by_tag:20,_cach:470,_cached_cmdset:216,_call_or_get:245,_callable_no:480,_callable_y:480,_callback:[20,415],_char_index:473,_check_password:28,_check_usernam:28,_clean_nam:243,_clean_str:473,_cleanup_charact:147,_code_index:473,_compress_cont:243,_copi:[222,402],_create_charact:178,_creation:48,_dashlin:30,_data:481,_default:[28,480],_defend:28,_differ:473,_errorcmdset:216,_event:[94,264],_every_:296,_evmenu:[0,480],_file:489,_flag:406,_footer:23,_format_diff_text_and_opt:407,_funcnam:496,_gambl:28,_get_a_random_goblin_nam:41,_get_db_hold:[459,470],_get_top:164,_getinput:480,_gettabl:425,_guaranteed_:483,_handle_answ:28,_helper:483,_http11clientfactori:422,_init:1,_init_charact:147,_is_fight:155,_is_in_mage_guild:28,_ital:119,_italic_:185,_last_puppet:[50,509],_linklen:342,_loadfunc:478,_magicrecip:297,_maptest:339,_menutre:[0,28,153,480],_mockobj:357,_monitor:425,_monitor_callback:34,_nicklist_cal:209,_npage:481,_oob_at_:487,_option:28,_overrid:[51,73],_page_formatt:481,_pagin:481,_parsedfunc:483,_pending_request:465,_permission_hierarchi:397,_ping_cal:209,_playabel_charact:50,_playable_charact:[0,164,178,509],_postsav:487,_power_cal:30,_prefix:354,_process_cal:30,_quell:397,_quitfunc:478,_raw_str:473,_reactor_stop:[437,458],_read:358,_recog_obj2recog:354,_recog_ref2recog:354,_regex:354,_repeat:425,_safe_contents_upd:401,_savefunc:478,_saver:[0,14,477],_saverdict:[14,358,477],_saverlist:[14,477],_saverset:477,_sdesc:354,_select:28,_sensitive_:528,_session:480,_set:130,_set_attribut:28,_set_nam:28,_shared_login:0,_should:[125,139],_skill_check:28,_some_other_monitor_callback:34,_start_delai:415,_static:119,_step:342,_stop_:496,_stop_serv:437,_swordsmithingbaserecip:297,_templat:119,_test:[30,213],_test_environ:201,_to_evt:481,_traithandlerbas:357,_transit_:344,_try_again:28,_typeclass:53,_uptim:30,_validate_fieldnam:162,_weight:342,_yes_no_quest:480,a2enmod:182,a8oc3d5b:192,a_off:287,aaaaaargh:135,aardwolf:68,aaron:0,abandon:277,abat:143,abbrevi:[60,64,222,297,306,483],abcd:228,abid:176,abil:[0,14,21,23,29,33,41,51,54,69,94,104,108,116,117,128,132,135,138,141,142,146,160,161,162,175,179,192,197,201,312,313,314,316,329,353,354,402,413,420,468,540],abl:[0,1,4,5,6,7,9,12,14,15,16,19,20,21,23,28,29,30,36,37,41,42,50,52,53,57,67,74,80,85,89,93,94,96,102,107,110,116,119,121,122,123,125,128,130,134,135,138,139,140,143,144,146,147,149,152,154,155,159,161,162,164,166,168,169,170,174,175,178,179,182,183,187,188,191,192,195,197,199,200,201,216,219,220,222,223,227,229,236,238,245,251,279,303,312,313,314,315,316,326,337,341,342,350,358,468,470,477,492,496,537],abort:[20,23,28,29,37,108,116,117,137,144,153,201,208,217,222,236,277,296,329,335,342,376,402,405,413,480,481,483,496],about:[0,1,2,4,6,7,12,14,15,16,17,18,21,23,24,26,28,30,31,35,38,41,46,49,50,53,54,55,56,60,65,67,69,70,73,76,80,84,94,95,96,117,118,119,121,122,124,125,126,127,128,129,130,131,132,133,134,135,138,139,140,143,144,145,146,147,148,149,150,151,152,153,156,157,158,161,164,165,166,168,169,172,173,175,176,179,180,181,183,184,185,188,191,192,193,195,197,199,200,201,203,208,222,229,232,245,277,279,280,287,290,293,296,314,315,316,339,341,347,370,375,376,394,402,420,422,425,434,436,438,447,449,451,452,459,461,468,469,471,473,481,487,496,505,512,519],abov:[1,4,9,10,12,13,14,15,16,20,21,23,27,28,30,31,32,33,34,41,42,44,46,48,49,51,52,53,54,55,58,62,64,67,73,74,75,80,83,85,89,93,94,95,97,98,104,105,110,116,118,119,122,123,124,125,128,130,132,133,134,135,136,137,141,144,147,152,154,155,156,158,159,160,161,162,163,164,166,168,169,170,172,174,175,177,178,182,183,184,187,192,193,197,201,203,215,216,222,245,284,296,303,312,314,315,316,329,335,341,347,350,354,358,370,384,386,390,398,400,402,425,480,483,491,505],above_str:30,abruptli:[110,358],absolut:[20,53,92,119,160,163,165,169,201,251,290,300,347,479,484,496],absorb:32,abspath:[201,496],abstractus:211,abus:[61,76,199],academi:181,accept:[0,14,16,19,20,21,28,30,32,33,47,48,68,77,80,83,91,94,104,108,116,118,134,135,141,142,162,178,179,183,185,197,201,208,213,214,232,259,262,287,329,341,342,344,347,353,374,376,384,386,402,420,425,438,464,465,469,474,480,483,492,496],accept_callback:[259,261],access:[0,1,10,11,12,14,15,16,19,20,21,23,24,26,28,29,30,31,32,33,34,35,36,39,41,42,44,45,46,48,49,51,52,53,55,57,62,63,65,67,69,73,75,80,83,85,93,94,96,110,116,117,118,119,120,122,123,126,129,130,131,132,133,134,135,138,141,142,144,146,147,152,153,155,157,159,160,161,162,164,168,169,170,174,175,176,178,179,182,183,187,188,190,192,193,197,199,200,201,208,210,211,215,216,217,219,220,222,227,228,229,230,232,234,236,237,238,245,258,260,270,274,277,296,298,309,312,313,314,315,316,320,344,350,353,354,357,358,376,392,393,394,395,396,397,398,401,402,405,406,407,410,412,414,415,417,420,429,430,459,461,467,468,470,471,474,475,476,483,489,495,496,500,505,506,512,517,519,522,536,542,544,547,548],access_obj:[397,468],access_object:33,access_opt:497,access_token_kei:[173,188],access_token_secret:[173,188],access_typ:[37,208,217,222,236,238,392,394,397,398,402,468,470,541,542,547],accessed_obj:[33,144,153,174,397,398],accessing_obj:[14,33,144,153,174,208,236,238,392,394,397,398,402,468,470],accessing_object:[14,33,397],accessor:[211,238,394,401,410,468,470,471,488],accessori:193,accident:[17,21,58,116,119,142,175,220,222,297,459],accommod:123,accomod:482,accompani:175,accomplish:[55,113,121,140,142,144,153,159,483],accord:[21,23,104,130,142,147,170,176,245,284,290,313,341,353,386,414,473,474,483],accordingli:[9,159,162,197,274],account1:[10,537],account2:[10,537],account:[0,2,7,10,12,14,16,18,19,21,23,24,25,26,27,28,29,30,32,33,35,36,37,39,40,41,42,44,45,46,48,49,53,55,57,60,63,65,69,72,73,80,86,93,96,97,98,99,107,117,119,120,123,124,125,126,127,128,131,132,133,134,137,139,140,152,153,159,160,161,163,164,166,169,170,173,175,176,178,179,184,186,188,190,192,197,200,201,203,205,206,212,213,214,215,216,217,218,220,222,223,224,227,228,229,230,232,234,236,237,238,245,251,255,258,259,261,270,277,278,290,293,303,312,314,316,320,326,333,344,350,354,368,374,375,376,380,384,392,394,397,398,400,401,402,404,406,407,408,409,410,420,424,425,440,451,452,459,460,461,468,470,471,473,476,480,481,483,490,491,493,494,496,497,502,503,509,516,517,519,522,527,528,535,536,537,539,542,544,546,548],account_cal:[219,227,230,270,303],account_count:461,account_id:[178,402],account_nam:160,account_search:[210,354,402],account_subscription_set:211,account_typeclass:[494,537],accountadmin:[50,504],accountattributeinlin:504,accountchangeform:504,accountcmdset:[13,21,26,80,97,134,161,162,163,201,219,223,303],accountcreateview:540,accountcreationform:504,accountdb:[0,48,120,178,201,205,208,211,217,236,392,394,467,470,490,497,504,505,512,516],accountdb_db_attribut:504,accountdb_db_tag:504,accountdb_set:[468,471],accountdbfilterset:[516,522],accountdbmanag:[210,211],accountdbpasswordcheck:440,accountdbviewset:522,accountform:[536,540],accountid:178,accountlist:162,accountlistseri:[519,522],accountmanag:[208,210],accountmixin:540,accountnam:[162,222,234,237,255],accountseri:[519,522],accounttaginlin:504,accross:116,accru:208,acct:137,accur:[80,217,258,282,293,313,316,340,358,392,407,414,418,420,422,423,431,440,441,443,445,448,449,468,471,473,491,492,530],accuraci:[0,95,112,141,169,313,314,315],accus:146,accustom:36,aceamro:0,acept:[91,384],achiev:[20,23,60,80,96,119,130,138,143,161,176,280,315,420],ack:29,acl:[75,243],acquaint:[143,161],acquir:475,across:[0,28,30,41,42,44,48,56,62,67,69,81,83,104,116,135,140,142,160,169,187,201,208,215,216,290,342,344,353,376,384,393,402,413,415,417,429,430,444,461,481,482,483],act:[0,7,13,15,19,21,28,42,44,52,61,91,94,110,111,116,130,135,140,142,155,159,160,162,170,175,182,183,203,205,208,222,227,238,254,279,280,336,341,342,343,344,358,359,384,390,417,429,430,449,468,471,475,480],action1:147,action2:147,action:[6,7,28,42,49,50,58,60,68,75,78,80,84,89,91,94,95,96,112,114,116,117,121,122,125,132,133,135,139,140,144,146,147,155,157,161,163,169,171,172,175,178,197,201,208,209,217,227,228,232,236,274,277,279,282,284,287,293,312,313,314,315,316,342,354,368,373,384,392,393,394,406,410,411,432,451,452,453,463,470,480,481,487,504,517,520,521,522],action_count:147,action_nam:312,action_preposit:279,actiondict:147,actions_per_turn:[312,313,315,316],activ:[1,4,11,15,20,21,23,37,39,42,44,49,55,60,63,64,65,73,75,94,118,119,122,123,124,125,126,139,140,151,154,163,166,186,189,190,191,193,195,196,197,198,201,203,208,213,216,220,222,232,234,236,259,333,368,374,381,401,402,405,414,425,432,433,434,435,436,440,442,443,444,451,461,463,468,469,480,481,482,483,496],activest:495,actor:[0,30,61,316,402,483,499],actual:[0,1,4,6,7,8,9,10,11,12,13,14,15,16,19,20,24,28,30,31,33,35,36,37,39,41,44,46,47,50,51,52,53,54,57,58,60,62,65,67,68,70,75,80,89,95,102,115,116,117,119,122,126,128,129,130,131,132,134,135,136,137,138,140,141,142,143,144,146,147,148,151,152,155,158,159,162,164,166,168,169,170,174,175,176,178,179,181,182,188,192,193,195,197,201,208,213,217,219,222,227,228,230,232,233,234,236,238,245,264,277,282,287,290,296,297,306,309,312,313,314,315,316,320,329,333,338,339,341,342,343,353,354,357,368,370,375,376,384,390,392,394,397,398,401,402,407,440,443,449,451,457,459,460,461,465,466,468,470,473,475,478,480,487,490,491,492,494,496,514,547],actual_return:10,ada:31,adam:75,adapt:[62,96,123,141,146,152,164,178,296],add:[0,1,4,5,6,7,9,10,11,12,13,14,15,16,17,18,19,21,23,25,26,27,28,30,31,32,33,34,35,36,37,39,41,42,44,46,47,48,49,50,51,54,56,57,60,62,63,64,67,68,70,73,74,77,79,80,81,82,83,84,85,87,88,89,90,92,94,95,96,97,98,99,101,102,103,104,107,108,110,111,112,114,116,117,118,119,121,122,124,125,126,128,130,132,133,134,135,136,137,140,141,142,143,144,146,147,150,152,155,156,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,177,178,179,180,182,184,185,186,187,188,192,197,198,200,201,202,205,208,211,215,216,222,227,228,229,231,233,236,238,245,246,248,251,255,258,259,261,262,264,270,274,277,279,284,287,290,293,296,303,306,309,312,313,314,315,316,320,326,329,335,336,337,338,341,342,343,347,353,354,357,358,363,368,373,374,375,376,380,390,397,398,401,402,406,407,410,411,412,413,414,415,420,425,426,429,430,433,434,436,438,442,449,451,452,454,462,468,471,474,478,479,480,481,482,483,487,489,491,492,494,504,509,516,522,544,547,548],add_:482,add_act:147,add_alia:227,add_argu:[114,274],add_callback:[259,261],add_charact:147,add_choic:[245,246],add_choice_:245,add_choice_edit:[80,245],add_choice_quit:[80,245],add_collumn:217,add_column:[162,482],add_condit:314,add_default:[21,144,152,168,174,216],add_dist:316,add_ev:261,add_fieldset:[504,509],add_form:[504,509],add_head:482,add_languag:[104,353],add_map:343,add_msg_bord:284,add_row:[162,167,217,482],add_user_channel_alia:[19,236],add_view:[504,506,509],add_xp:146,addcallback:[23,402],addclass:[51,205,206,502,523],addcom:[0,102,126,162,270],added:[0,4,6,9,11,12,18,20,21,23,30,31,33,41,42,46,49,62,67,68,69,75,80,81,82,83,92,94,96,104,106,110,112,115,116,118,119,123,126,130,132,133,134,135,136,141,144,146,147,152,153,161,162,164,169,170,171,174,175,177,178,180,184,186,191,192,201,203,208,213,215,216,217,227,231,232,234,245,248,258,261,264,287,290,293,296,297,300,312,313,314,315,316,333,337,341,342,347,353,354,358,368,392,398,402,405,407,412,414,425,459,463,468,471,474,480,481,482,489,496,522,529,540,544,548],addendum:118,adding:[0,4,7,8,9,10,11,14,16,18,20,21,25,26,28,33,41,46,47,48,51,53,60,62,64,67,69,80,85,86,89,91,94,95,96,97,110,111,112,116,119,124,130,134,135,136,142,147,149,152,155,158,161,162,163,164,166,168,169,174,175,176,178,200,201,215,216,220,222,229,245,251,258,261,274,296,303,312,315,335,350,353,354,358,376,384,390,400,402,406,407,412,420,451,468,476,482,496,505,512],addingservermxp:435,addit:[0,3,4,21,27,30,42,50,53,60,68,80,83,94,95,98,111,116,117,118,119,123,153,159,162,163,164,167,169,179,182,197,199,200,201,202,208,209,216,217,229,236,245,248,258,259,261,274,313,316,342,344,353,354,357,380,390,398,402,405,414,431,459,468,470,480,536,548],addition:[153,170,316],additionalcmdset:21,addpart:309,addquot:496,addr:[210,417,430,431,432,476],address:[0,12,23,36,44,55,58,62,73,88,92,117,124,149,159,169,183,187,197,199,201,208,210,220,236,255,300,402,417,430,432,440,460,463,496,497],address_and_port:440,addresult:309,addscript:42,addservic:62,adjac:[98,116,316,374],adject:[8,58,144,483,500],adjoin:354,adjust:[23,96,118,141,176,178,193,201,350,414,480,482,483],admin:[0,1,2,13,14,17,19,23,24,33,39,52,53,55,57,61,67,76,124,132,133,140,142,152,159,162,164,168,174,175,178,179,189,198,201,203,205,206,210,211,212,217,218,222,227,232,234,236,255,270,277,284,374,392,394,398,401,402,429,430,470,476,492,502,527,548],admin_sit:[504,505,506,508,509,510,511,512],admin_wrapp:507,adminconfig:527,admindoc:201,administr:[4,23,33,39,54,72,94,119,121,122,125,139,162,183,190,193,195,199,201,417,429,430],adminportal2serv:429,adminserver2port:429,adminsit:[50,201,205,206,502,526],adminstr:417,admintest:537,admit:157,admittedli:[0,116,138],adopt:[0,1,80,117,122,142,152,161,238,444,499],advanc:[7,14,15,21,23,24,28,30,41,44,48,53,54,55,62,67,69,75,80,98,104,106,110,113,117,121,122,125,127,135,142,154,157,162,170,175,200,202,222,230,312,314,320,354,358,368,386,435,474,478,479,480,482],advantag:[3,14,16,17,28,31,41,58,95,104,116,121,142,144,146,147,149,154,157,160,162,163,164,172,175,178,197,199,200,245,287,312,380,390,471,474],adventur:[85,103,113,117,132,138,142,170],advic:181,advis:[80,96,153],aesthet:27,affair:475,affect:[7,11,15,16,21,23,39,42,44,46,50,57,60,82,106,112,116,135,140,142,144,146,147,153,163,166,176,190,201,208,215,232,248,264,282,296,314,326,341,353,368,402,406,470,474,482,490],affili:414,affliat:414,afford:[44,168],afraid:197,after:[0,1,3,4,5,10,11,12,14,16,17,20,21,23,27,28,33,42,45,52,53,54,60,64,65,67,75,77,80,81,85,91,94,95,96,106,110,112,113,116,119,121,124,126,128,132,133,134,135,136,138,140,142,143,147,151,152,153,154,155,156,157,159,162,168,169,171,174,175,176,178,182,187,190,192,193,194,195,196,197,199,201,208,215,216,217,218,219,222,229,230,232,233,234,236,245,251,252,255,261,274,277,282,283,287,290,296,297,298,309,312,313,314,317,320,333,339,342,350,353,354,355,357,358,364,368,374,375,376,384,390,392,401,402,407,409,411,413,414,420,442,443,446,451,458,459,460,461,463,465,468,473,474,475,478,480,481,487,491,496,517,520,540,542,547],after_:0,afterlif:142,afternoon:[90,320],afterward:[12,67,78,116,133,137,138,155,164,169,245],again:[0,6,9,11,14,15,16,19,23,28,35,42,44,52,55,60,67,80,84,89,94,96,105,106,113,115,116,117,122,125,126,128,131,133,134,135,136,140,142,144,146,147,152,154,155,157,158,159,160,161,162,163,164,166,168,169,170,174,175,176,178,183,185,187,190,192,195,197,198,201,203,209,216,227,233,251,261,293,312,333,368,386,413,420,437,440,443,463,473,474,477,492,494],againnneven:233,against:[0,12,14,21,23,48,64,65,94,112,118,130,138,141,147,152,161,162,197,199,201,208,214,215,297,312,313,314,316,354,398,400,402,406,407,438,463,468,470,471,493,496],age:[75,91,114,201,274,384,536],agenc:199,agent:4,agenta:[60,473],ages:[91,384],aggreg:0,aggress:[14,16,113,138,165,191,201,374,470,548],aggressive_pac:374,agi:[14,110,117,358],agil:14,agnost:[118,122],ago:[94,133,153,192,496],agre:[70,77,117,142,143,146,282,287],agree:287,ahead:[4,16,69,80,134,159,174,184,197,442],aid:[70,77,116,117,125,229,230,287,465],aim:[2,67,69,121,135,140,141,143,146,162,165,168,176,197,406],ain:95,ainnev:[0,110,117,130,146,358],air:[128,136,152,170],airport:137,ajax:[0,51,62,197,201,449,460],ajaxwebcli:449,ajaxwebclientsess:449,aka:[7,14,103,124,142,309,496],akin:133,alarm:[128,167],alchin:75,ale:98,alert:[19,236,402],alex:75,alexandrian:181,algebra:159,algorith:353,algorithm:[0,31,116,142,341,342,400,496],alia:[0,2,12,13,19,21,23,26,30,36,37,42,44,46,48,50,72,80,102,104,116,124,126,128,135,137,152,158,161,162,170,195,197,211,214,217,219,222,227,228,229,230,233,236,258,270,293,312,313,314,315,316,320,321,326,333,335,342,354,358,364,374,376,397,401,402,407,410,415,425,451,469,470,471,476,483,492,493,494,500,504,505,506,508,509,510,512,516,518,519,520,522,536,540,541,542,547],alias1:[222,320],alias2:[222,320],alias3:320,alias:[0,12,13,15,19,20,21,23,24,28,30,31,32,36,37,41,50,58,72,74,80,83,85,94,98,125,126,128,144,147,152,153,155,158,162,166,167,168,170,175,201,208,215,217,219,220,221,222,227,228,229,230,231,232,233,234,236,237,245,255,259,270,273,274,277,279,287,290,296,297,300,303,306,309,312,313,314,315,316,320,326,329,333,335,342,347,354,368,370,374,375,376,384,390,392,393,394,395,400,401,402,407,451,469,470,471,476,478,480,481,489,493,494,500,516,519],aliaschan:270,aliasdb:208,aliasfilt:516,aliashandl:[471,512,519],aliasnam:407,aliasproperti:[0,471],aliasstr:[400,476],align:[30,41,162,350,473,482,483,496],alist:8,aliv:[121,374],alkarouri:495,all:[0,1,4,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,23,25,27,28,30,31,32,33,35,36,37,39,41,42,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,62,64,65,67,68,69,70,71,72,73,74,75,76,78,80,83,85,87,89,90,91,95,96,102,103,104,105,107,110,111,113,115,116,117,118,119,120,121,122,124,125,126,128,129,130,131,132,134,135,136,137,138,139,140,141,143,144,146,147,148,149,151,152,154,155,156,157,158,159,160,161,162,163,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183,185,189,190,191,192,193,195,196,197,198,199,200,201,202,203,208,209,210,212,213,214,215,216,217,218,219,220,221,222,223,224,227,228,229,230,231,232,233,234,236,237,238,245,255,258,261,270,273,274,277,279,280,282,283,287,290,293,296,297,300,303,306,309,312,313,314,315,316,320,326,329,333,335,341,342,343,344,347,353,354,357,358,366,368,370,373,374,375,376,381,384,386,390,392,393,394,395,396,397,398,399,400,401,402,405,406,407,409,411,412,413,414,415,416,419,420,424,425,426,429,431,432,434,436,437,438,439,440,443,444,447,448,449,451,452,458,459,460,461,463,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,487,489,491,493,494,495,496,497,499,501,504,505,506,508,509,510,512,513,514,522,525,527,529,536,542,544,545,547],all_alias:46,all_attr:470,all_book:137,all_cannon:130,all_cloth:14,all_cmd:229,all_connected_account:461,all_displai:415,all_famili:130,all_fantasy_book:137,all_flow:137,all_from_modul:496,all_kei:229,all_map:[116,343],all_opt:491,all_receiv:402,all_room:[15,130],all_ros:137,all_script:42,all_scripts_on_obj:42,all_sessions_portal_sync:461,all_to_categori:393,all_weapon:130,allcom:[102,126,270],allerror:[420,429],allevi:[10,14,69,465],allheadersreceiv:465,alli:316,alloc:197,allow:[0,1,3,4,6,8,9,10,12,13,14,15,16,17,20,21,23,24,28,30,31,32,33,35,36,37,39,40,41,46,48,49,50,51,52,53,54,55,56,57,58,64,67,69,70,71,72,73,75,76,77,80,83,85,86,89,90,91,92,94,95,96,98,101,104,110,111,112,115,116,117,119,120,121,122,123,124,125,128,130,132,133,134,135,136,137,139,140,141,144,146,147,149,152,155,156,157,158,159,161,162,166,168,169,170,174,175,176,178,179,180,182,183,185,186,187,188,189,191,192,193,195,197,198,199,200,201,208,209,211,213,215,216,217,219,220,221,222,227,229,230,232,233,236,237,238,245,251,261,270,274,277,279,282,284,287,290,296,298,300,306,312,315,316,320,333,341,342,344,347,353,354,357,358,368,374,375,376,384,386,390,392,394,395,397,398,400,402,406,407,411,414,415,420,424,425,427,431,433,434,435,436,443,444,445,447,452,458,459,461,463,464,468,470,471,473,474,476,478,480,481,482,483,484,487,490,491,492,494,496,507,509,516,517,522,536,541,544],allow_abort:480,allow_dupl:215,allow_extra_properti:358,allow_nan:449,allow_quit:480,allow_reus:296,allowed_attr:162,allowed_fieldnam:162,allowed_host:[197,199,201],allowed_propnam:175,allowedmethod:449,allowext:465,almost:[0,14,23,31,47,48,50,57,80,81,135,136,245,290,422,429,467,471],alon:[0,10,12,15,28,33,36,67,89,113,117,135,143,146,147,155,159,160,162,201,215,229,344,415,425,451,474,476,482,483,512],alone_suffix:456,along:[0,7,23,28,32,42,45,55,60,68,76,77,78,94,98,104,110,111,113,116,122,130,131,135,138,140,143,144,145,169,174,180,200,208,219,287,315,342,347,353,358,380,390,398,402,449,467,471,522],alongsid:[91,187,343,384],alonw:410,alpha:[0,125,139,185,190,197,201,473],alphabet:[17,70,170,473],alreadi:[0,1,9,10,11,12,13,14,15,17,20,21,23,27,28,30,31,33,42,44,46,48,51,53,62,68,73,76,80,89,94,95,96,113,116,118,119,122,124,125,126,128,129,132,133,134,135,136,137,140,143,144,146,147,151,152,153,155,159,160,161,162,164,166,167,168,169,171,172,173,174,175,178,179,185,189,190,192,193,199,201,203,208,210,215,216,219,222,230,232,236,237,270,279,284,287,290,293,296,297,312,313,315,316,333,341,342,344,353,354,358,374,375,386,398,402,406,407,420,429,437,438,440,445,448,453,458,459,461,468,471,473,476,481,489,494,496,517,528],alredi:62,alright:[77,287],also:[0,1,2,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,25,27,28,30,31,32,33,34,36,37,39,41,42,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,60,62,63,64,65,67,68,69,70,72,73,74,75,77,80,81,83,84,85,87,88,89,90,91,93,94,95,96,99,101,104,105,108,110,111,113,115,116,117,118,119,120,121,122,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,166,167,168,169,170,171,172,174,175,176,177,178,179,181,182,183,184,185,186,187,189,190,191,192,193,195,197,198,199,200,201,203,208,210,211,214,215,216,217,219,220,221,222,224,227,228,229,230,232,233,236,237,238,245,261,279,280,284,287,290,293,296,297,303,306,314,315,316,320,329,333,335,341,342,344,347,350,353,354,358,368,374,375,376,384,386,390,392,396,397,398,400,401,402,406,407,408,410,413,415,416,420,424,425,429,431,438,440,443,444,447,448,451,452,461,465,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,487,493,494,496,516,542,544,545,547],alt:473,alter:[51,94,96,122,123,170,183,201,468],altern:[2,14,19,23,28,31,36,42,46,50,60,64,74,83,85,103,110,114,117,119,125,126,144,155,158,161,166,170,172,178,183,190,195,197,227,230,236,237,254,309,316,354,358,368,393,397,398,400,438,473,476,496],although:[6,80,94,136,155,157,193,219,245,347,465,492,496],althougn:95,altogeth:[27,60,116,199],alwai:[0,8,10,11,13,14,15,16,19,20,21,23,28,30,31,32,33,35,37,39,41,42,44,45,47,48,51,55,58,60,67,68,73,83,85,94,96,97,104,107,110,116,118,119,122,123,125,126,128,133,134,135,136,137,140,142,144,146,152,153,156,157,159,161,162,163,164,168,169,174,175,176,179,182,183,189,193,197,201,208,215,216,217,219,221,222,227,229,230,233,236,237,238,277,282,296,298,303,326,341,342,344,353,354,358,368,395,397,398,400,401,402,406,407,415,420,422,425,429,437,440,443,444,448,449,452,459,461,466,468,469,470,471,473,476,483,487,492,493,496,497,517,529,545],always_fail:429,always_pag:481,always_return:420,amaz:191,amazon:[75,117,181,197],amazonaw:75,amazons3:75,ambianc:69,ambigu:[92,116,217,300,342,402,470],ambiti:[69,72],amend:12,amfl:16,ammo:152,among:[13,25,37,122,137,143,163,170,175,181,200,228,290,375,398,400,482,493],amongst:98,amor:262,amount:[19,42,56,60,125,139,140,141,146,175,199,232,293,297,312,314,315,402,461,478],amp:[0,40,44,62,65,201,205,206,416,417,420,428,430,438,446,458,461],amp_client:[201,205,206,416,429],amp_client_protocol_class:201,amp_host:201,amp_interfac:201,amp_maxlen:446,amp_port:[197,201],amp_serv:[201,205,206,416,428],amp_server_protocol_class:201,ampbox:429,ampclientfactori:417,ampersand:69,amphack:429,ampl:135,amplauncherprotocol:420,ampmulticonnectionprotocol:[417,429,430],ampprotocol:417,ampserverclientprotocol:[201,417,429],ampserverfactori:430,ampserverprotocol:[201,430],amsterdam:197,amulet:314,amulet_of_weak:314,amus:126,anaconda:124,analog:[65,159],analys:28,analysi:381,analyz:[17,23,28,33,85,113,142,172,213,229,296,354,402,406,407,411,420,481,496,499],anchor:[0,217,236,316,392,394,470],anchor_obj:316,ancient:[60,98],andr:184,andrei:75,andrew:75,android:[190,202,548],anew:[134,135,170,195,236,420],angelica:141,angl:[72,116,279],angri:31,angular:232,ani:[0,6,8,10,11,12,13,14,16,17,19,20,21,23,27,28,30,31,32,33,34,35,36,37,39,41,42,44,45,46,47,48,49,51,54,55,56,57,60,62,64,65,67,68,72,73,74,75,76,80,81,84,85,87,88,89,91,93,94,96,101,104,110,112,113,114,115,116,117,118,119,122,124,126,128,129,130,132,133,134,135,136,137,138,139,141,142,143,144,146,147,151,152,153,156,157,158,159,160,161,162,166,167,168,169,171,172,174,175,176,178,179,181,182,183,184,185,186,189,190,192,193,195,196,197,198,199,200,201,208,211,213,214,215,216,217,219,220,222,228,229,232,233,236,237,238,245,255,260,274,277,279,282,284,287,290,293,296,300,303,306,312,313,314,315,316,320,329,333,341,342,344,350,353,354,358,363,366,368,374,376,380,381,384,386,392,395,397,398,400,402,405,406,407,410,411,413,414,415,417,418,420,422,424,425,429,430,432,438,439,440,443,444,448,449,451,459,460,461,465,468,469,470,471,473,474,475,477,478,479,480,481,482,483,489,490,491,492,493,496,504,514,521,522,527,540,541,542,544,545,546,547,548],anim:[20,29,52,297],anna:[58,162,171,172,175,189,193,222],anna_object:58,annoi:[55,89,126,136,142,168,169],annot:[125,127,181],announc:[11,147,153,175,220,227,232,236,312,402],announce_al:[438,461],announce_move_from:[37,153,402],announce_move_to:[37,153,402],annoy:208,annoyinguser123:19,anonym:[63,123,164,201,354],anonymous_add:354,anoth:[0,4,6,7,8,9,10,14,15,16,21,23,24,28,31,33,37,41,44,46,49,51,54,56,58,60,69,70,74,80,85,89,91,94,95,96,105,111,115,116,118,122,125,126,128,130,132,135,136,141,142,144,147,151,152,155,157,159,160,161,162,163,164,169,170,174,175,177,180,182,187,197,198,208,215,216,219,222,227,228,236,245,260,279,282,287,290,296,303,312,313,314,315,316,333,335,340,342,354,375,384,386,390,392,394,395,402,405,461,468,470,474,478,480,481,483,494,496,522],another_batch_fil:474,another_nod:480,another_script:42,anotherusernam:49,ansi:[0,32,51,61,71,82,120,135,165,166,184,201,205,206,219,248,249,306,350,425,432,440,443,448,449,472,482,483,495,496,548],ansi_bg_cod:495,ansi_color_cod:495,ansi_escap:473,ansi_map:473,ansi_map_dict:473,ansi_pars:473,ansi_r:[201,473],ansi_regex:473,ansi_sub:473,ansi_xterm256_bright_bg_map:473,ansi_xterm256_bright_bg_map_dict:473,ansimatch:473,ansimeta:473,ansipars:473,ansistr:[0,205,473,482],ansitextwrapp:482,answer:[1,10,14,23,28,95,96,135,140,142,143,144,146,152,153,164,187,195,199,418,480],ant:94,antechamb:113,anthoni:75,anti:195,anticip:116,anul:182,anvil:[296,297],any_options_her:119,anybodi:199,anychar:315,anymor:[105,123,124,144,201,261,309,333,386,480,492],anyobj:315,anyon:[6,33,55,64,89,123,142,147,152,153,155,162,168,172,175,185,197,201],anyth:[1,6,9,11,12,14,15,19,21,23,28,33,36,37,42,48,50,51,53,56,57,62,65,73,75,80,89,95,96,98,111,116,118,122,126,128,132,133,135,136,137,140,142,143,144,147,151,155,159,160,164,167,168,169,170,172,174,175,178,183,190,192,193,196,197,200,201,215,217,231,245,312,314,315,316,341,354,358,390,398,432,466,468,474,480,483],anytim:142,anywai:[16,19,28,60,69,74,88,96,116,121,123,128,144,169,191,255,287,341],anywher:[23,28,42,48,116,122,125,133,135,144,179,341,478],apach:[0,75,183,197,199,202,465,548],apache2:182,apache_wsgi:182,apart:[13,14,20,33,48,113,117,121,166,176,179,192,200,316,335],api:[0,1,2,6,10,14,15,17,19,20,24,29,31,35,37,41,42,44,48,52,58,78,85,133,137,146,170,173,178,188,201,205,206,208,221,232,234,238,255,296,392,459,468,470,474,475,481,502,548],api_kei:188,api_secret:188,apicli:520,apirootrout:518,apirootview:518,apocalyps:142,apostroph:17,app:[0,33,53,62,64,67,73,75,123,151,179,188,197,201,527],app_dir:201,app_id:178,app_modul:527,app_nam:527,app_ord:527,appar:[94,162,176],apparit:376,appeal:[28,60],appear:[0,1,9,12,19,20,28,31,33,41,42,50,51,53,54,59,60,63,80,81,83,98,107,116,119,124,125,126,130,135,138,139,140,152,153,156,167,170,175,176,186,189,192,193,195,197,200,205,219,229,249,261,290,297,326,333,342,354,402,444,445,470,482,489,512],appearance_templ:402,append:[7,8,20,21,27,33,37,62,68,76,80,81,117,130,147,153,157,159,164,168,169,175,178,187,197,201,217,222,229,290,303,354,398,400,453,474,489,496],appendto:51,appform:178,appl:[77,279,287,402],appli:[0,4,9,11,15,21,23,30,31,33,41,47,48,53,56,65,78,80,82,94,96,110,116,117,118,124,134,142,143,145,166,170,174,176,178,182,183,201,208,213,215,230,248,277,279,312,314,333,341,342,357,358,398,402,406,407,410,415,461,468,469,470,473,474,479,482,484,493,496],applic:[11,33,46,49,62,67,73,90,131,151,178,179,181,182,192,193,199,201,208,279,296,316,320,384,420,423,433,437,458,459,465,533],applicationdatareceiv:443,applied_d:178,apply_damag:312,apply_turn_condit:314,appnam:[14,33,201],appreci:[10,12,42,80,118,180,487],approach:[9,28,47,80,117,142,153,157,160,169,178,245,316,342],appropri:[4,9,21,23,58,72,93,94,117,124,169,174,178,182,183,188,208,220,279,350,354,420,459,490,492,496,525],approrpri:62,approv:[12,94,178,179],approxim:[232,496],apr:64,april:[2,89,117,163],apt:[12,182,187,191,193,195,197,199],arbitrari:[0,8,14,15,20,30,33,48,51,57,74,94,95,110,111,116,122,130,133,170,192,208,236,277,281,293,316,320,358,366,376,390,402,407,413,418,429,449,463,468,477,489,492,496],arcan:72,arcanist:142,arch:61,archer:407,archetyp:142,architectur:[33,143,407],archiv:[132,181,199],archwizard:407,area:[13,80,113,115,116,117,138,140,143,159,162,171,181,184,333,335,341,344,374,397,479,480,482,496],aren:[12,91,96,123,151,155,157,164,178,199,208,261,290,309,314,384,489,492,499],arg1:[30,33,217,230,233,236,277,468],arg2:[30,217,230,233,277,468],arg:[0,6,23,28,30,31,32,33,35,41,47,51,54,62,65,68,71,72,80,83,94,110,119,126,132,134,144,146,147,152,153,155,156,157,162,166,168,174,175,177,188,201,208,209,210,211,214,217,222,230,231,232,233,236,237,238,251,258,261,274,277,279,280,287,290,293,300,309,312,313,314,315,316,320,326,329,333,337,342,343,344,353,354,358,363,366,368,370,374,375,376,386,390,393,394,395,397,398,400,401,402,405,406,407,409,410,413,414,415,417,420,425,426,427,429,430,431,432,437,438,440,441,443,444,445,448,449,453,459,461,463,465,468,469,470,471,473,480,482,483,484,486,487,489,492,494,496,497,504,505,509,512,518,519,536,542,546,547],arg_regex:[158,201,217,222,228,229,232,233,234,277,290,296,354,478,480],arglist:230,argn:468,argpars:[114,274],argtyp:496,argu:14,arguabl:[116,135,141],argument:[0,1,6,7,10,16,19,20,21,23,27,29,30,32,33,36,37,41,42,47,48,54,55,58,62,65,68,72,76,80,89,91,94,95,98,105,114,117,123,125,126,127,128,129,130,136,144,149,152,153,155,161,162,163,164,165,166,168,170,175,179,183,201,208,209,210,213,214,216,217,219,220,222,227,228,229,230,232,233,236,237,245,251,254,258,260,261,270,274,277,279,281,282,284,290,296,300,312,314,315,316,320,326,335,343,344,350,353,354,366,376,381,384,386,398,400,402,406,407,409,411,413,414,415,418,420,425,429,431,432,438,439,440,443,444,448,449,451,452,459,460,461,463,464,468,469,470,471,473,474,476,478,479,480,481,482,483,487,490,492,493,496,522,545,548],argumentpars:[114,117,274],argumnet:482,argv:201,aribtrarili:496,ariel:75,aris:199,arithmet:[30,110,358],arm:[1,23,103,309],armchair:144,armi:168,armor:[0,14,81,112,141,145,155,167,290,313],armour:155,armpuzzl:[103,309],armscii:[17,70],arn:75,arnold:36,around:[0,6,15,16,17,21,30,33,37,41,52,53,54,60,70,72,81,89,94,96,116,119,121,122,123,125,126,127,130,132,133,134,135,136,137,140,141,142,144,146,147,151,152,155,157,159,162,164,168,169,170,171,174,175,183,188,195,197,222,230,251,260,290,297,309,316,333,339,342,354,368,374,375,376,402,473,474,482],arrai:[49,68,169,342,444,496],arrang:80,arrayclos:[68,444],arrayopen:[68,444],arrest:116,arriv:[44,65,94,96,146,153,155,222,280,335,432],arrow:[6,51,116,135],art:[60,479],articl:[10,12,17,70,123,152,157,161,181,488],article_set:488,artifact:[314,482],artifici:[142,146],artist:0,artsi:143,arx:181,arxcod:[165,548],as_view:[53,217,236,392,394,470],ascii:[17,70,98,116,117,124,170,208,234,341,479,482,496],asciiusernamevalid:[201,208],asdf:222,ash:297,ashlei:[0,81,91,93,111,112,117,289,290,311,312,313,314,315,316,349,350,383,384,388,390],asian:[0,496],asid:124,ask:[0,1,6,7,8,12,24,27,31,34,54,58,88,94,95,99,116,117,118,128,133,134,140,142,143,144,146,152,162,164,169,178,183,185,193,194,197,215,217,222,251,259,274,287,386,418,420,447,480,484,496],ask_again:28,ask_choic:418,ask_continu:418,ask_input:418,ask_nod:418,ask_yes_no:[0,480],ask_yesno:418,askew:141,asn:380,aspect:[28,41,53,67,122,132,135,146,161,296,350],assert:[10,147,483],assertequ:10,assertionerror:[483,494],asset:[75,125,139,151,199,424,525],assetown:124,assign:[0,4,8,13,14,15,19,28,33,36,37,39,41,42,46,47,51,55,61,82,91,104,113,116,117,128,132,133,134,135,137,144,147,160,162,174,175,208,213,214,216,222,227,229,230,236,248,277,312,313,314,315,316,320,354,358,376,384,398,401,402,406,407,425,432,438,440,443,459,468,471,477,489,494],assist:197,associ:[0,14,28,44,65,73,123,126,133,137,155,181,197,201,208,212,222,236,258,261,354,402,459,461,469,542],assort:[24,61],assum:[0,8,9,10,11,12,14,15,16,17,19,20,21,23,28,31,32,33,34,37,41,42,44,47,55,57,58,62,69,70,80,84,85,89,94,95,96,104,108,110,116,118,119,121,124,128,130,132,137,143,146,147,149,152,153,154,155,157,159,160,162,163,166,167,168,170,171,172,173,174,175,177,178,179,187,191,192,196,197,199,201,203,213,215,216,217,219,222,227,229,233,236,238,245,277,279,293,297,329,343,344,354,358,375,376,392,397,402,407,411,444,461,473,474,480,483,496,500,517,528,544,547],assumpt:[144,214],assur:[48,76,117,159],ast:[30,483],asterisk:[13,55,119,134,220],astronom:163,async:[61,178,496,548],asynccommand:54,asynchron:[0,7,20,23,40,61,84,117,122,154,155,209,293,402,429,430,444,489,496],at_:[48,487],at_access:[208,402],at_account_cr:[13,208],at_after_mov:402,at_after_travers:402,at_again_posit:279,at_already_clos:279,at_already_consum:279,at_already_mov:279,at_already_open:279,at_appli:279,at_befor:0,at_before_drop:402,at_before_g:402,at_before_get:402,at_before_mov:402,at_before_sai:402,at_cannot_appli:279,at_cannot_mov:279,at_cannot_posit:279,at_cannot_read:279,at_cannot_rot:279,at_channel_cr:236,at_channel_msg:236,at_char_ent:171,at_clos:279,at_cmdset_cr:[21,23,80,81,90,92,94,97,101,102,104,107,108,126,134,144,147,152,153,156,158,161,162,163,166,168,174,175,215,223,224,225,226,245,270,277,287,290,296,303,306,309,312,313,314,315,316,320,326,329,335,347,354,368,370,373,374,375,376,451,478,480,481],at_cmdset_createion:270,at_cmdset_get:[208,402,459],at_code_correct:279,at_code_incorrect:279,at_consum:279,at_db_location_postsav:401,at_defeat:312,at_desc:402,at_disconnect:[208,459],at_drink:279,at_drop:[313,316,402],at_empty_target:342,at_end:410,at_err:[54,496],at_err_funct:54,at_err_kwarg:[54,496],at_failed_login:208,at_failed_travers:[37,326,375,402],at_first_login:208,at_first_sav:[208,236,402],at_first_start:470,at_focu:279,at_focus_:[277,279],at_focus_climb:279,at_focus_clos:279,at_focus_cod:279,at_focus_combin:279,at_focus_drink:279,at_focus_eat:279,at_focus_feel:279,at_focus_insert:279,at_focus_kneel:279,at_focus_li:279,at_focus_listen:279,at_focus_mov:279,at_focus_open:279,at_focus_press:279,at_focus_push:279,at_focus_read:279,at_focus_rot:279,at_focus_shov:279,at_focus_sip:279,at_focus_sit:279,at_focus_smel:279,at_focus_turn:279,at_focus_us:279,at_get:[94,290,316,402,468],at_giv:[313,316,402],at_green_button:279,at_heard_sai:172,at_hit:374,at_idmapper_flush:[470,487],at_init:[45,48,208,236,374,375,376,402,470],at_initial_setup:[132,200,201,424],at_initial_setup_hook_modul:[201,424],at_left:279,at_lock:279,at_login:[48,62,431,432,440,443,448,449,459],at_look:[208,402],at_message_rec:208,at_message_send:208,at_mix:279,at_mix_failur:279,at_mix_success:279,at_msg_rec:[208,300,402],at_msg_send:[208,209,300,366,402],at_new_arriv:374,at_no_cod:279,at_nomatch:279,at_now_add:67,at_object_cr:[14,21,33,37,48,87,110,144,146,152,153,157,159,162,166,168,174,175,177,222,279,280,300,312,313,314,315,320,326,347,354,358,368,370,374,375,376,402,470],at_object_delet:402,at_object_leav:[280,333,376,402],at_object_post_copi:402,at_object_rec:[37,171,280,333,376,402],at_open:279,at_password_chang:208,at_paus:[42,413],at_posit:279,at_post_all_msg:236,at_post_channel_msg:[19,208,236],at_post_cmd:[0,23,156,213,217,230,494],at_post_command:23,at_post_disconnect:208,at_post_func:144,at_post_login:[153,208],at_post_mov:[37,171,402],at_post_msg:236,at_post_object_leav:333,at_post_portal_sync:458,at_post_puppet:402,at_post_travers:[37,375,402],at_post_unpuppet:402,at_pr:[0,402],at_pre_channel_msg:[19,208,236],at_pre_cmd:[23,83,213,217,230,494],at_pre_command:[23,144],at_pre_drop:[313,316,402],at_pre_g:[313,316,402],at_pre_get:[37,316,402],at_pre_leav:37,at_pre_login:208,at_pre_mov:[37,144,153,312,402],at_pre_msg:[19,236],at_pre_puppet:402,at_pre_sai:[354,402],at_pre_unpuppet:402,at_prepare_room:[115,333],at_read:279,at_red_button:279,at_reload:[232,458],at_renam:470,at_repeat:[42,48,147,173,174,209,251,261,281,287,312,363,413,453,484],at_return:[54,496],at_return_funct:54,at_return_kwarg:[54,496],at_right:279,at_rot:279,at_sai:[172,279,402],at_script_cr:[42,147,173,174,209,251,261,281,287,312,333,343,353,363,386,406,413,453,484],at_script_delet:413,at_search:[132,200],at_search_result:[201,231,496],at_server_cold_start:458,at_server_cold_stop:458,at_server_connect:438,at_server_reload:[42,201,203,208,209,402,413],at_server_reload_start:458,at_server_reload_stop:[153,458],at_server_shutdown:[42,203,208,209,402,413],at_server_start:[42,201,261,413,458],at_server_startstop:[132,153,200,201],at_server_startstop_modul:201,at_server_stop:[201,458],at_set:468,at_shutdown:458,at_smel:279,at_speech:279,at_start:[42,147,209,333,410,413],at_startstop_modul:415,at_stop:[42,147,174,312,413],at_sunris:163,at_sync:[459,460],at_tick:[47,415],at_travers:[37,329,333,402],at_traverse_coordin:333,at_turn_start:314,at_unfocu:279,at_upd:[314,411],at_weather_upd:177,ating:233,atlanti:184,atleast:[104,353],atom:[125,198],atop:[115,333],atribut:477,att:[28,64],attach:[2,14,24,37,44,64,74,84,111,117,122,123,126,130,134,135,137,152,160,162,203,217,222,230,243,293,300,303,333,390,398,402,412,457,471,505,512],attachmentsconfig:123,attack:[0,16,28,83,84,95,111,112,125,134,138,139,140,141,146,147,154,155,156,179,197,199,201,216,293,312,313,314,315,316,354,374,375,390,402,407,438],attack_count:315,attack_nam:315,attack_skil:407,attack_typ:316,attack_valu:[312,313,314,316],attempt:[9,13,21,28,36,73,80,83,96,116,155,169,173,184,199,201,219,222,277,312,313,314,315,316,320,326,381,417,420,425,458,463,470,483,496,542],attemt:30,attent:[37,119,160,162,170,199,277],attitud:161,attr1:[222,309],attr2:[222,309],attr3:222,attr:[0,14,28,33,41,51,80,130,159,162,222,229,238,245,280,376,397,406,407,459,468,470,487,492],attr_categori:505,attr_eq:397,attr_g:[33,397],attr_gt:[33,397],attr_kei:505,attr_l:[33,397],attr_lockstr:505,attr_lt:[33,397],attr_n:[33,397],attr_nam:222,attr_obj:[468,470],attr_object:470,attr_typ:505,attr_valu:505,attrcreat:[33,468],attread:14,attredit:[14,33,468],attrhandler_nam:468,attrib:398,attribiut:468,attribut:[0,2,6,13,19,20,24,27,28,32,33,34,35,36,37,41,42,44,46,47,48,55,67,69,80,83,84,95,96,101,104,110,112,117,125,128,130,135,141,144,146,147,153,154,156,157,159,160,161,162,164,166,167,168,169,175,178,179,201,205,206,208,210,211,216,222,231,232,236,245,260,261,279,293,296,297,306,309,312,313,314,315,316,320,329,342,354,358,368,374,375,376,397,400,401,402,405,406,407,409,410,411,414,425,459,467,469,470,471,476,477,478,484,489,490,493,496,502,503,504,506,509,510,512,519,521,522,536,541,542,544,547,548],attribute1:175,attribute2:175,attribute_list:468,attribute_nam:[144,208,354,400,402,493],attribute_stored_model_renam:201,attribute_valu:400,attributeerror:[6,14,67,133,144,459,468,471],attributeform:505,attributeformset:505,attributehandl:[0,14,48,83,468,491,496,519],attributeinlin:[504,505,506,509,510],attributemanag:14,attributeproperti:[0,83,468],attributeseri:519,attributproperti:14,attrkei:407,attrlist:468,attrnam:[14,28,33,41,48,110,222,358,397,400,470],attrread:[14,33,468],attrtyp:[14,468,469],attrvalu:28,attryp:469,atttribut:159,atyp:398,audibl:[104,353],audio:[0,51],audit:[0,205,206,236,239,378,402,548],audit_allow_spars:76,audit_callback:[76,380],audit_in:76,audit_mask:76,audit_out:76,auditedserversess:[76,380,381],auditingtest:382,aug2010:0,aug:[2,64,124],august:[124,496],aura:297,aut:29,auth:[49,76,201,208,210,211,227,440,504,527,528,536,542,547],auth_password:440,auth_password_valid:201,auth_profile_modul:211,auth_user_model:201,auth_username_valid:[0,201],authent:[0,44,45,53,62,76,178,199,201,208,431,438,440,443,449,459,461,528,541,542,544,547],authenticated_respons:537,authentication_backend:201,authenticationmiddlewar:201,author:[0,75,94,176,197,208,258,261,499],auto:[0,6,8,12,14,16,19,21,22,23,26,28,35,37,41,42,44,46,52,55,96,110,116,117,119,131,138,142,152,178,187,188,195,201,205,208,211,217,221,222,229,232,233,335,341,342,353,354,358,368,391,394,398,402,407,410,415,417,420,431,441,448,449,458,461,470,475,480,481,482,483,522,528],auto_close_msg:368,auto_help:[23,28,31,158,164,217,229,233,278,373,384,404,480,481],auto_help_display_kei:[217,233,480],auto_id:[506,508,510,512,536],auto_look:[28,278,373,384,404,480],auto_now_add:67,auto_quit:[28,278,373,384,404,480],auto_step_delai:335,auto_transl:[104,353],autobahn:[0,431,437,448],autoconnect:201,autocr:[14,468],autodoc:[0,49,119],autofield:[178,201],autologin:528,autom:[3,16,30,49,50,67,161,162,181,187,190,192,199,203,542],automat:[0,5,8,11,14,16,19,20,21,27,28,30,31,33,34,41,42,44,48,50,53,54,57,63,67,73,74,77,80,81,83,94,95,96,98,103,109,113,116,117,118,121,122,126,130,132,133,134,135,136,137,138,141,144,147,151,156,162,163,166,168,170,171,172,174,175,176,183,186,187,188,189,192,194,197,201,208,215,216,217,222,227,228,230,232,245,260,261,262,274,279,287,290,296,298,309,316,335,343,353,354,370,386,398,401,402,412,414,415,425,434,437,440,445,458,461,463,474,478,480,481,482,483,494,496,521,522,529],automatical:415,autostart:[42,409,412,476],autumn:[90,320],avail:[0,1,6,7,9,10,11,12,14,15,19,21,23,24,28,30,31,32,33,35,37,41,42,44,48,49,51,53,54,56,58,60,62,64,68,69,70,71,75,77,80,85,89,90,92,94,95,96,97,101,104,105,110,116,119,120,122,126,128,129,132,133,134,135,136,137,138,140,142,143,144,147,152,153,157,158,159,161,162,163,166,167,168,169,170,174,175,178,179,180,181,182,183,186,189,190,191,192,193,195,197,198,200,201,203,205,208,213,214,215,216,217,219,222,224,227,228,229,230,232,233,234,245,254,261,277,279,284,287,296,297,300,303,306,312,314,316,320,337,353,354,358,368,370,375,376,386,390,398,402,405,406,407,410,425,449,451,452,463,474,475,480,481,482,483,494,496,514,529,541,544],available_chan:227,available_choic:[28,480],available_funct:406,available_languag:353,available_weapon:375,avatar:[68,122,132,133,135,402,440,522],avatarid:440,avenu:[81,290],averag:[7,15,104,114,116,117,197,232,261,274,353],average_long_link_weight:[116,342],avoid:[0,1,6,8,10,12,14,20,21,23,28,39,41,48,53,60,62,72,89,115,116,118,133,135,136,140,142,144,166,168,170,176,182,183,192,201,215,222,274,333,342,353,368,386,397,401,429,439,449,459,468,470,471,473,474,475,478,481,483,487,496,519],awai:[1,6,12,14,16,17,28,31,33,41,42,44,54,63,67,85,94,95,96,111,115,116,117,121,124,133,136,138,141,144,146,152,155,159,164,170,174,175,197,201,228,238,282,290,313,316,333,341,344,368,374,376,390,402,410,460,473,496,504,548],await:54,awak:142,awar:[0,1,12,14,16,21,23,28,48,68,92,116,117,125,141,176,177,178,203,274,279,300,333,335,342,344,354,374,386,402,470,473],award:142,awesom:[53,73,135],awesome_func:136,awesomegam:187,awhil:94,awkward:64,aws:[75,197],aws_access_key_id:75,aws_auto_create_bucket:75,aws_bucket_nam:75,aws_default_acl:75,aws_s3_cdn:[205,206,239,240,241],aws_s3_custom_domain:75,aws_s3_object_paramet:75,aws_s3_region_nam:75,aws_secret_access_kei:75,aws_storage_bucket_nam:75,awsstorag:[205,206,239,240,548],axe:142,axel:75,axes:[116,341],axi:[98,341],axio:49,azur:[75,192,197],b64decod:492,b64encod:492,b_offer:287,baaad:10,back:[0,1,3,8,9,12,14,15,16,19,20,21,23,27,28,30,32,36,42,44,48,49,51,52,53,54,55,64,65,67,70,73,80,94,95,96,100,110,111,113,115,116,117,119,122,125,128,130,132,133,134,135,136,137,138,139,140,141,142,143,146,147,149,152,155,158,159,160,162,164,166,168,169,170,172,174,175,176,178,183,187,192,196,197,201,203,204,205,208,216,219,222,227,231,245,279,282,287,293,296,315,326,335,354,358,366,368,390,404,420,425,429,432,438,440,443,458,470,477,480,481,489,496,500],back_exit:[94,96],backbon:[178,201,474],backend:[0,4,10,41,42,49,50,53,73,75,183,201,205,206,468,496,502,516,522,526],backend_class:468,background:[1,18,28,53,54,60,82,135,155,176,178,187,197,199,201,203,248,350,473,483,545],backpack:21,backport:0,backtick:[119,483],backtrack:12,backup:[12,37,44,54,132,196,197,231,474],backward:[0,19,27,28,162,174,210,489],bad:[10,42,64,80,96,116,118,122,135,137,142,143,162,168,184,381,422],bad_back:398,baddi:138,badli:358,bag:[31,126,296,496],bake:[85,117,341],baker:142,balanc:[140,142,147,155,160,181,482],ball:[21,200,214,215,297,407],ballon:309,balloon:309,ban:[0,19,33,61,102,126,142,153,208,220,227,233,236,270,398,548],ban_us:227,band:[0,51,68,201,440,443,444],bandit:95,bandwidth:[75,433],banid:220,bank:[125,139,140],banlist:[19,236],bar:[0,12,14,19,28,30,34,42,46,51,65,68,73,104,111,116,117,126,132,137,141,167,201,222,349,350,351,354,390,395,420,444,468,480,483,496,548],bardisk:98,bare:[23,93,121,134,141,146,162,200,313,350],barehandattack:160,bargain:67,bark:297,barkeep:[6,98,354],barrel:[98,138],barriento:75,barstool:144,barter:[42,125,139,140,171,205,206,239,285,548],bartl:181,base:[4,6,10,12,15,18,19,23,28,30,31,33,35,37,42,44,47,48,51,52,53,56,65,67,69,70,72,75,80,84,85,86,89,92,94,107,110,117,119,120,121,122,123,124,125,128,130,132,133,136,137,138,139,140,141,143,145,146,149,151,152,156,157,158,159,160,161,162,164,168,170,173,175,176,178,179,183,187,189,190,191,192,196,197,199,201,205,208,209,210,211,213,215,216,217,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,236,237,238,243,245,246,249,251,252,255,256,258,259,261,262,264,270,271,273,274,277,278,279,280,281,282,283,287,288,290,291,293,294,296,297,298,300,301,303,304,306,307,309,310,312,313,314,315,316,317,320,321,326,327,329,330,332,333,335,336,339,340,341,342,343,344,347,348,351,353,354,355,357,358,363,364,366,368,370,371,373,374,375,376,377,381,382,384,386,387,389,390,392,393,394,398,400,401,402,404,406,407,409,410,411,412,413,414,415,417,418,420,422,423,426,427,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,451,452,453,456,458,459,460,461,463,464,465,468,469,470,471,473,474,475,478,479,480,481,482,483,484,486,487,488,489,490,491,492,493,494,495,496,501,504,505,506,507,508,509,510,511,512,514,516,517,518,519,520,521,522,527,528,530,531,536,537,540,541,542,544,545,546,547,548],base_account_typeclass:[13,201],base_batchprocess_path:201,base_channel_typeclass:[19,201],base_char_typeclass:173,base_character_typeclass:[166,173,178,179,201,208,222],base_exit_typeclass:[116,201],base_field:[504,505,506,508,509,510,512,536],base_filt:516,base_guest_typeclass:[63,201],base_object_typeclass:[41,129,133,201,407,470],base_room_typeclass:[116,201],base_script_path:397,base_script_typeclass:[42,201],base_session_class:201,base_set:124,base_system:[75,80,82,83,86,88,94,99,102,114,201,205,206,239,548],base_systesm:94,base_word:496,baseapplic:279,baseclass:375,basecommand:126,baseconsum:279,basecontain:475,baseevenniacommandtest:[10,233,246,256,262,271,273,283,288,291,298,301,304,307,310,317,321,327,330,348,355,371,377,494],baseevenniatest:[10,201,249,252,262,283,291,294,317,332,339,351,355,364,377,382,387,389,446,494,520,537],baseevenniatestcas:[10,201,298,357,494],baseinlineformset:[505,512],baselin:124,baseline_index:[0,496],basenam:522,baseobject:48,baseopt:490,basepath:496,basepermiss:517,baseposition:279,basest:282,basetyp:[402,474],basetype_posthook_setup:402,basetype_setup:[33,157,208,209,236,402],basetypeclassfilterset:516,bash:[4,119,193,375],basi:[23,94,116,118,123,132,151,163,197,201,230,238,342,354,449,470,479],basic:[0,1,4,11,13,17,18,21,23,24,33,36,51,53,56,57,58,62,65,67,70,73,89,91,95,96,98,112,116,124,125,126,127,128,132,133,134,135,136,138,140,141,142,144,146,147,149,150,155,157,160,161,162,163,164,165,166,170,171,172,174,176,178,179,193,202,203,208,209,222,227,229,236,238,260,296,309,313,315,375,384,397,399,402,451,536,545,548],basicauthent:201,basiccombatrul:[312,313,314,315,316],basicmapnod:[116,342],bat:[124,193,195],batch:[24,26,117,132,170,181,201,205,206,221,233,360,407,429,468,471,472,548],batch_add:[407,468,471],batch_cmd:[16,132],batch_cod:[15,474],batch_code_insert:15,batch_create_object:407,batch_exampl:474,batch_import_path:[15,16],batch_insert_fil:16,batch_update_objects_with_prototyp:407,batchcmd:[26,140,142,221],batchcmdfil:[16,474],batchcod:[16,26,78,126,142,148,170,181,221],batchcode_map:170,batchcode_world:170,batchcodefil:15,batchcodeprocessor:474,batchcommand:[0,16,26,78,80,113,126,138,148,190,221,474],batchcommandprocessor:474,batchfil:[16,17,170,474],batchprocess:[205,206,212,218],batchprocessor:[15,78,201,205,206,221,239,359,472,548],batchscript:[15,474],batteri:208,battl:[117,138,147,181,199,312,313,314,315,316,548],battlecmdset:[312,313,314,315,316],bayonet:85,baz:[111,390],bazaar:69,beach:170,bear:[374,386],beat:[140,142,147],beaten:[147,376],beauti:[30,80,94,159,178],beazlei:181,becam:[155,176],becasu:8,becaus:[0,4,6,13,14,15,17,21,28,30,31,33,37,41,45,47,48,49,50,53,54,55,56,58,62,64,69,80,83,89,95,96,115,116,119,122,124,126,130,133,134,135,136,141,143,144,146,147,151,152,153,155,160,169,170,171,176,178,179,182,185,187,201,216,229,234,236,255,260,282,315,333,339,341,353,402,413,432,438,451,461,473,483,490,492,496,504,505,512,522,527],becom:[0,6,11,28,33,36,41,46,54,67,68,71,80,92,96,103,104,110,111,119,122,126,131,132,133,134,135,138,140,142,144,146,159,160,166,170,180,200,201,219,236,293,297,300,309,313,353,354,358,390,402,407,459,474,480,483,494],been:[4,6,7,11,15,16,28,30,31,42,44,57,64,73,76,80,94,95,96,98,103,104,110,116,117,119,123,130,135,137,147,152,159,162,164,168,169,171,175,176,178,179,183,199,204,208,215,216,217,221,222,227,230,236,238,245,261,296,309,312,316,333,342,354,358,376,386,392,394,398,401,402,406,407,414,415,422,434,438,440,448,458,459,460,461,463,468,470,474,478,479,496,499,501,512,527,543,548],befit:48,befor:[0,2,5,6,7,8,9,10,12,14,15,16,17,19,20,21,23,28,31,33,34,39,41,42,45,46,47,48,50,51,53,54,55,64,66,67,69,70,73,75,76,80,85,88,92,94,95,98,106,111,115,116,117,118,123,126,127,128,130,133,134,135,136,140,142,144,147,152,153,154,155,159,160,161,162,164,166,168,169,170,171,172,174,175,176,177,178,179,183,187,188,191,192,196,197,199,200,201,208,213,214,217,222,227,229,230,234,236,238,243,251,254,255,260,264,282,293,296,298,300,312,316,320,333,341,342,350,353,354,357,358,368,373,375,376,380,381,384,390,397,398,401,402,405,406,407,409,413,414,415,420,429,438,440,446,452,454,456,458,459,463,465,468,473,474,475,476,480,481,482,484,488,489,492,496,527,541,547],beforehand:[14,190,475],beg:16,beggar:96,begin:[0,1,6,7,9,10,15,16,23,27,31,33,45,54,80,94,95,96,104,119,121,123,125,128,130,135,139,140,147,153,162,164,169,170,171,177,179,189,201,228,229,260,312,314,341,353,354,390,400,402,429,473,474,480,483,493],beginn:[0,2,23,121,133,140,148,169,342,480,548],behav:[14,15,45,80,94,117,128,134,135,136,155,163,164,169,203,315,496],behavior:[0,7,21,23,24,27,31,37,41,51,60,73,81,83,91,94,96,104,116,132,164,176,208,217,233,274,290,296,314,316,342,354,376,384,420,468,480,505,512],behaviour:[21,23,33,98,176,201,409,466,476,482,496],behind:[8,12,14,23,32,41,46,55,60,94,105,116,121,136,138,152,159,176,193,201,221,358,376,386,410,415,487],behvaior:481,being:[0,4,6,7,12,14,15,21,23,28,30,31,35,39,41,42,45,47,48,52,54,58,65,68,72,75,78,80,85,87,92,94,96,100,104,110,112,116,117,122,129,131,132,133,135,138,141,142,143,152,153,154,160,164,169,170,172,176,178,185,187,195,197,199,201,208,214,222,228,232,233,236,251,300,303,312,313,314,315,316,342,347,353,354,358,366,368,376,394,402,409,422,425,432,452,461,463,468,470,473,474,476,480,481,482,483,496,499,501,505,512,516,519,527],beipmu:184,belong:[16,65,74,116,122,123,130,135,178,199,216,333,354,390,394,405],belongs_to_fighter_guild:46,belov:142,below:[4,6,7,9,10,12,14,15,16,17,19,20,21,23,27,28,30,31,32,33,36,39,41,42,44,48,54,55,57,60,64,68,74,75,76,77,80,82,85,86,87,93,94,96,98,102,104,110,111,113,116,119,122,124,134,135,136,140,144,146,151,153,155,157,159,161,162,163,164,166,170,171,172,175,178,179,182,183,187,192,195,196,197,201,203,211,222,230,238,245,274,284,290,296,297,312,313,314,315,316,341,342,347,350,353,354,358,364,390,394,401,402,410,432,452,468,470,471,480,482,483,488,521],beneath:20,benefici:[159,314],benefit:[64,69,141,143,180,187,192,197,199,201,216,468,474,480],berserk:[110,358],besid:[9,16,21,39,64,93,96,117,134,170,315,350],best:[1,27,42,53,64,69,73,80,94,111,114,117,118,124,129,132,140,143,161,162,165,178,184,187,189,196,199,200,201,229,245,274,353,390,407,420,440,482,490,548],bet:[21,44,50,470],beta:[0,25,125,139,185,197,201,548],betray:28,better:[0,6,7,17,28,30,31,41,42,46,58,60,67,69,85,96,108,112,116,118,119,121,122,124,132,133,140,143,144,146,153,158,162,166,168,169,178,179,183,297,313,329,342,376,402,407,437,440,443,451,468,474,527],bettween:146,between:[0,4,7,12,13,14,16,19,21,23,24,30,31,36,41,42,44,46,51,54,58,60,62,64,68,70,74,76,77,80,82,89,94,95,96,97,98,101,105,110,111,112,116,117,119,122,126,132,133,135,136,138,141,142,146,147,153,154,157,159,160,161,162,164,168,169,173,174,175,176,181,187,192,197,201,214,217,222,227,229,232,233,237,238,248,260,261,264,287,290,296,297,303,306,312,316,339,341,342,343,344,353,354,357,358,386,390,402,407,415,420,429,432,439,440,443,444,451,452,459,471,473,474,476,480,482,483,484,496,500,530],bew:[90,320],bewar:157,beyond:[13,23,29,37,50,68,80,94,118,122,124,142,153,161,179,197,217,222,233,238,245,277,297,354,368,376,390,402,406,451,468,470,480,482],bglist:495,bias:222,bidirect:429,big:[0,15,16,19,23,33,50,53,74,85,113,118,124,126,128,136,138,142,143,145,146,154,155,161,201,214,229,231,357,358,368,400,474,481,493,496],bigger:[62,104,110,130,152,164,175,339,341,353,358],biggest:[189,358,496],biggui:23,bigmech:152,bigsw:155,bikesh:130,bill:[197,199],bin:[4,122,123,124,131,191,192,193,196],binari:[7,116,183,195,431,433,448],bind:187,birth:536,birthdai:0,bit:[1,6,9,12,14,18,25,41,42,51,53,55,58,64,80,94,95,96,113,123,124,126,127,130,131,132,135,136,140,142,143,144,155,157,163,164,166,174,179,191,193,195,227,234,255,297,398,402,474],bitbucket:161,bite:[140,170],bitten:130,black:[0,60,136,146,176,201,473],blackbird:181,blackbox:296,blackhaven:116,blacklist:[19,199,227],blacksmith:[39,471],blade:[142,297,375],blank:[28,67,76,91,171,179,208,384,473],blankmsg:[91,384],blargh:41,blast:[296,297],blatant:55,blaufeuer:130,bleed:[12,60,132,358,482],blend:[103,309],blender:[103,117,309],blind:[60,106,172,368],blind_target:368,blindcmdset:368,blindli:398,blink:[128,368],blink_msg:368,blist:8,blob:[95,119],block:[0,7,8,24,27,28,30,33,42,53,55,60,72,89,90,107,121,122,125,126,135,149,153,154,162,164,169,175,178,179,197,199,203,220,221,222,278,279,284,316,320,333,339,342,373,374,375,395,404,439,474,480,483,496,545,548],blockedmaplink:[116,342],blocker:116,blocking_cmdset:153,blockingcmdset:153,blockingroom:153,blocknam:53,blockquot:548,blocktitl:164,blog:[0,118,121,125,197,198,201,548],blond:141,blowtorch:184,blue:[15,60,134,135,142,161,166,176,201,375,473],blueprint:[51,161,170],blurb:[89,185,201],board:[33,35,125,139,140,159,174,181],boat:[21,174,216],bob:[23,49,166,220,284,471],bodi:[1,18,20,23,28,41,53,72,80,95,135,141,149,162,178,259,303,393,395,422,476],bodyfunct:[42,79,128,205,206,239,359,548],bodymag:297,bog:[140,152],boi:46,boiler:[28,48,53],bold:[185,548],bolt:[315,407],bone:[28,121,141,146],bonu:[113,142,146,197,313,314,410],bonus:[142,155,313],book:[41,53,73,137,142,146,149,159,163,169,181,279],bool:[0,13,21,23,28,32,34,42,91,116,208,209,210,211,213,214,215,216,217,227,229,236,237,238,245,251,258,261,279,282,284,287,290,293,296,312,314,315,316,333,341,342,343,344,347,350,353,354,358,384,386,390,392,393,394,398,400,401,402,406,407,409,410,411,412,413,414,415,420,425,426,431,432,437,438,439,443,448,449,457,459,461,463,468,469,470,471,473,474,476,478,480,481,482,483,484,487,489,491,493,495,496,499,504,506,509,510,517,544],booleanfield:[178,504,510],booleanfilt:516,boom:[133,152],boost:395,boot:[19,33,61,102,126,133,192,203,220,227,236,270,415],boot_us:227,bootstrap:[0,24,53,61,123,195,201,548],border:[162,167,170,201,219,279,282,284,384,479,482,494],border_bottom:482,border_bottom_char:482,border_char:482,border_color:201,border_left:482,border_left_char:482,border_right:482,border_right_char:482,border_top:482,border_top_char:482,border_width:482,borderless:162,borderstyl:384,bore:[55,121,140,141,199],borrow:[21,215,429],bort:[28,29,480],boss:162,bot:[7,131,178,186,189,199,201,205,206,207,211,227,425,431,432,439,461,542],bot_data_in:[209,425],both:[0,1,4,8,9,10,11,17,19,20,21,23,28,30,31,32,34,36,39,44,46,48,49,53,57,58,62,67,68,77,78,80,82,83,94,96,97,98,99,107,110,111,116,117,118,119,130,132,134,135,136,138,141,142,143,144,147,151,153,159,160,161,162,163,164,168,169,170,174,178,179,181,183,186,187,188,197,199,200,201,203,213,215,222,227,232,236,237,238,248,279,284,287,296,303,309,315,316,326,335,341,342,344,350,358,376,390,398,400,402,406,407,408,410,413,415,429,438,448,449,451,458,460,463,468,469,473,476,480,482,483,491,496,519,522],bother:[11,155,199,468],botnam:[189,227,432,461],botnet:199,boto3:75,boto:75,botstart:209,bottl:98,bottom:[7,9,29,48,50,51,53,75,115,116,123,126,135,144,157,161,162,164,168,170,178,185,187,216,303,315,333,341,407,474,481,482,548],bottommost:116,bought:168,bouncer:[20,199,479],bound:[20,69,110,119,132,133,161,258,314,315,341,358,392,496],boundari:[110,116,357,358,496],bow:[142,407],bowl:[85,296],box:[0,6,9,30,33,35,36,41,49,63,73,85,95,96,121,124,127,128,130,133,134,135,136,141,146,149,162,164,170,175,182,188,197,200,201,222,277,335,341,354,397,429,474,536,548],brace:[80,94,96,153,169,402,473],bracket:[72,82,119,232,248,483],branch:[0,4,12,105,111,116,117,118,119,124,126,190,192,196,201,282,386,390,548],branchnam:12,brandymail:[97,117,303],braymer:75,bread:[56,85,117,296],breadrecip:296,breadth:316,break_lamp:368,break_long_word:482,break_on_hyphen:482,breakag:142,breakdown:232,breaker:429,breakpoint:[9,56,205],breath:[133,136],breez:[42,177],breviti:[135,162],bribe:28,brick:167,bridg:[44,65,80,113,120,138,183,376],bridgecmdset:376,bridgeroom:376,brief:[12,50,56,57,67,91,95,127,128,131,149,152,153,162,168,203,274,384,402,464],briefer:[37,203],briefli:[56,61,133,142,197,203,368],bright:[60,82,106,116,135,166,176,201,248,368,473],brightbg_sub:473,brighten:60,brighter:60,bring:[0,111,116,141,143,150,151,159,174,175,178,183,192,199,316,342,374,390,462],broad:157,broadcast:[76,201,208,236,429],broadcast_server_restart_messag:201,broader:[157,354,402],brodowski:75,broken:[0,31,60,69,119,125,139,140,201,353,368],brown:473,brows:[0,9,51,117,121,124,131,149,151,153,157,162,163,164,168,169,175,197,199,201,542],browser:[0,1,49,51,52,53,56,59,73,119,122,124,125,131,132,149,151,164,178,179,182,187,190,191,193,195,197,199,201,281,448,449,544,545],brunt:142,brutal:274,bsd:[0,75,180,500],bsubtopicnna:233,btest:60,btn:18,bucket:[75,243,380],buf:[141,478],buff:141,buffer:[23,27,51,80,231,243,422,449,478,544],bug:[0,1,6,8,10,12,15,54,75,89,113,118,135,140,142,143,161,175,180,185,203,402,470],bugfix:[0,75],buggi:[14,480],bui:[77,142,168,287],build:[0,3,4,5,7,9,14,15,16,17,19,20,21,23,24,26,28,31,35,36,37,41,44,46,48,51,53,54,58,61,67,69,70,72,74,78,85,91,98,104,113,116,117,121,122,124,125,126,127,129,130,132,133,134,135,138,139,141,143,144,145,150,151,161,164,165,166,173,175,181,190,191,192,193,194,195,201,205,206,212,214,218,220,221,228,229,244,245,246,259,274,282,284,320,326,335,336,338,339,341,342,343,353,374,398,402,406,407,420,431,432,474,482,536,548],build_forest:98,build_link:342,build_match:214,build_mountain:98,build_templ:98,buildchannel:19,builder:[0,13,14,16,19,30,31,33,39,41,46,49,50,57,69,80,81,91,94,103,114,116,117,123,125,129,133,139,140,143,144,153,160,162,168,175,201,220,222,227,228,232,245,274,290,309,320,326,333,335,354,368,376,384,398,402,451,470,471,474,517,548],buildier:407,building_menu:[80,205,206,239,240,548],buildingmenu:[80,245,246],buildingmenucmdset:245,buildprotocol:[417,430,431,432],buildshop:168,built:[0,7,15,20,24,28,30,56,62,73,103,117,119,122,125,132,135,138,139,140,141,143,146,161,162,174,175,185,191,192,199,211,238,309,341,342,343,353,394,401,410,415,468,470,471,474,478,480,488],builtin:433,bulk:[31,199,201],bullet:[119,140],bulletin:[33,35,125,139,140,181],bulletpoint:119,bunch:[17,20,69,70,130,134,136,141,144,162],burden:167,buri:[69,138],burn:[138,140,143,146,197,375],busi:[76,77,98,122,141,197,287],butter:[56,296],button:[0,9,12,15,16,21,23,33,36,49,50,51,52,53,65,68,73,78,94,117,124,125,127,132,134,135,178,179,222,279,297,367,368,375,452,481,509,548],button_expos:375,buy_ware_result:168,byngyri:[104,353],bypass:[0,8,33,39,54,57,107,123,128,133,138,144,147,162,176,201,208,210,222,236,326,398,400,470,476,493,496,528],bypass_mut:[19,236],bypass_perm:496,bypass_superus:33,byt:402,bytecod:473,bytes_or_buff:544,bytestr:[429,496],bytestream:496,c123:[82,117],c20:227,c_creates_button:452,c_creates_obj:452,c_dig:452,c_examin:452,c_help:452,c_idl:452,c_login:[7,452],c_login_nodig:452,c_logout:[7,452],c_look:[7,452],c_measure_lag:452,c_move:452,c_moves_:452,c_moves_n:452,c_score:175,c_social:452,cabinet:40,cabl:167,cach:[0,10,14,23,42,48,51,52,53,55,67,116,133,154,157,182,201,208,217,232,236,238,320,341,357,374,375,398,401,402,424,463,468,470,471,472,485,487,496,505,512,529],cache_dir:201,cache_inst:487,cache_lock_bypass:398,cache_s:[463,487],cachecontrol:75,cached_properti:496,cactu:315,cake:21,calcul:[0,20,42,54,90,110,116,130,146,147,153,157,175,216,251,264,312,313,315,316,320,339,342,353,357,358,407,484,487,496,541,547],calculate_path_matrix:341,calculated_node_to_go_to:28,calculu:160,calendar:[0,86,94,117,251,264,484],call:[0,1,4,6,7,10,11,12,13,14,15,16,19,20,21,27,28,30,32,33,34,37,41,42,44,45,47,48,49,51,52,54,56,58,62,65,67,68,69,71,73,78,80,85,95,96,98,102,105,106,109,110,111,114,115,116,117,119,122,123,125,126,128,129,130,131,132,134,135,136,137,140,143,144,146,147,149,152,153,154,155,156,157,159,160,161,162,163,164,166,168,169,170,171,172,173,174,175,176,177,178,179,183,186,188,189,190,191,192,193,197,200,201,203,208,209,213,214,215,216,217,219,222,227,230,231,232,233,234,236,238,245,251,254,255,258,259,260,261,262,264,270,274,277,279,280,281,282,284,287,290,293,296,297,298,300,309,312,313,314,315,316,320,326,333,342,344,347,353,354,358,363,366,368,370,373,374,375,376,384,386,390,397,398,401,402,405,406,407,409,411,413,414,415,417,420,422,424,425,429,430,431,432,433,434,435,436,438,439,440,441,442,443,444,445,447,448,449,451,452,453,458,459,460,461,462,465,468,470,471,473,474,475,476,478,480,481,482,483,484,487,489,491,492,493,494,496,505,512,517,522,536,540,542,545,546,547],call_async:54,call_command:10,call_ev:[96,260],call_inputfunc:[65,459,461],call_task:414,callabl:[0,24,27,28,34,41,47,52,53,58,71,91,111,117,159,175,201,245,261,282,314,315,341,384,390,402,405,406,407,411,415,418,420,422,430,461,475,478,480,481,483,484,489,491,492,496],callables_from_modul:496,callbac:80,callback1:480,callback:[20,23,24,27,28,32,34,47,54,76,80,84,86,91,111,117,123,155,163,209,232,245,246,251,258,259,260,261,262,264,293,373,381,384,390,402,411,414,415,418,420,422,425,429,430,431,433,447,448,451,462,480,484,489,494,496,548],callback_nam:[258,261],callbackhandl:[205,206,239,240,257],called_bi:213,calledbi:496,caller:[0,6,14,15,19,20,23,27,30,31,33,36,37,47,48,54,58,65,67,68,72,78,80,83,84,85,91,93,94,98,111,115,116,119,126,133,134,137,144,146,147,152,153,154,155,156,158,159,160,162,166,167,168,169,170,174,175,188,209,213,214,215,217,219,222,223,227,228,229,230,232,233,245,246,259,274,277,278,279,280,293,296,303,309,333,350,354,368,370,373,375,376,384,390,398,402,404,406,407,468,474,478,480,481,483,490,494,496],callerdepth:496,callertyp:213,callinthread:465,calllback:260,callsign:[28,279,425],calm:170,came:[94,121,124,126,135,152,153,170,177,181,333,374,402],camp:170,campfir:170,campsit:170,can:[0,1,3,4,5,6,7,8,9,10,11,12,13,15,16,17,18,19,20,21,23,24,25,27,28,30,31,32,33,34,35,36,37,39,40,41,42,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,62,63,64,65,67,68,69,70,71,73,74,75,76,77,78,81,82,83,84,85,86,87,89,90,91,92,93,94,95,96,97,98,103,104,105,106,107,110,111,112,113,114,115,116,117,118,119,122,123,124,125,126,127,128,129,130,131,132,133,134,135,138,139,140,141,143,144,146,147,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,166,167,168,169,170,171,172,173,174,175,176,178,179,180,181,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,203,207,208,209,210,211,214,215,216,217,219,220,222,227,228,229,230,231,232,233,234,236,237,238,243,245,248,251,254,260,261,264,270,274,278,279,280,281,282,284,287,290,293,296,297,300,303,309,312,313,314,315,316,320,326,333,335,337,338,341,342,344,347,350,353,354,358,366,368,374,375,376,380,384,386,390,392,394,397,398,400,401,402,405,406,407,408,409,410,411,413,415,420,429,431,435,438,440,443,444,448,449,451,452,458,459,460,461,462,465,466,467,468,469,470,471,473,474,475,476,478,479,480,481,482,483,490,491,492,493,494,496,497,499,500,504,517,519,522,536,541,542,544,545,547,548],can_:[94,260],can_be_wield:46,can_delet:94,can_eat:94,can_ent:471,can_list_top:[229,544],can_mov:94,can_part:94,can_read_top:[229,544],can_sai:94,can_travers:94,cancel:[0,20,32,94,144,155,232,260,312,316,402,414],candid:[0,23,80,137,144,178,214,309,354,395,400,402,493],candidate_entri:395,candl:216,cannon:130,cannot:[0,8,10,11,14,15,16,20,21,23,27,28,30,35,39,41,46,50,54,57,60,64,80,89,90,91,95,107,113,116,118,124,125,132,133,134,137,138,139,140,143,146,152,153,154,155,157,158,160,164,168,175,178,195,197,200,201,208,209,216,219,222,229,245,258,261,282,296,316,320,326,335,374,375,384,390,393,398,400,402,406,415,468,475,477,479,482,487,496],cantanker:490,cantclear:[91,384],cantillon:181,cantmov:153,canva:159,cap:201,capabl:[33,44,65,68,109,117,122,125,139,140,159,162,201,219,370,425,447,536],cape:161,capfirst:164,capit:[0,30,55,58,68,92,104,105,122,124,135,136,142,153,155,175,222,284,300,353,358,386,444,473,483,496,500],captcha:178,caption:119,captur:[76,153,169,201,489],car:[36,85,174],carbon:[296,297],card:[116,199,343,344],cardin:[116,158,159,162,222,341,342,343],care:[14,23,28,54,55,67,76,94,96,110,116,119,122,123,133,135,142,143,147,159,160,161,163,169,174,176,177,180,183,202,203,208,215,236,277,296,309,320,326,329,335,341,354,358,373,374,376,397,402,451,470,474,478,480,481,482,496],career:143,carefulli:[7,44,50,94,117,121,170,178,201],carri:[21,33,46,125,128,132,139,140,144,147,167,168,171,238,290,297,313,314,374,397,459,469],carv:85,cascad:[201,487],case_insensit:279,case_sensit:[104,354],caseinsensitivemodelbackend:[201,528],cast:[41,111,112,136,154,205,206,239,285,295,315,390],caster:[154,297,315],castl:[15,46,113,116,129,138,170,320,376],cat:[187,191],catchi:[123,201],categor:[46,122,196,402],categori:[0,4,14,23,26,28,31,41,46,67,74,83,85,111,116,117,118,119,126,130,137,157,164,201,210,217,218,219,220,221,222,227,228,229,230,231,232,233,234,237,245,255,259,270,273,274,277,280,287,290,296,297,300,303,306,309,312,313,314,315,316,320,326,329,335,347,354,358,368,370,374,375,376,384,390,392,393,394,395,397,400,402,406,407,409,411,451,468,469,471,476,478,480,481,488,490,493,496,516,544],categoris:160,category2:488,category2_id:488,category_id:488,category_index:390,cater:[143,155],caught:[6,8,28,144,237],cauldron:297,caus:[0,6,10,21,33,51,55,74,88,122,126,133,147,155,156,171,175,183,197,201,216,236,249,255,293,297,333,342,368,402,451,480,482,496],caution:[51,94,163,201,480],cave:[95,116,335,336],caveat:[24,54,75,144,202],caveman:160,cblue:12,cboot:[55,102,126,270],cc1:195,cccacccc:479,ccccc2ccccc:162,cccccccc:479,ccccccccccc:162,cccccccccccccccccbccccccccccccccccc:479,ccccccccccccccccccccccccccccccccccc:479,ccreat:[0,102,126,162,186,189,198,270],cdesc:[102,126,270],cdestroi:[102,126,270],cdfaiwmpbaaj:0,cdmset:21,cdn:[75,199],ceas:222,cel:479,celebr:140,cell:[0,1,113,138,162,164,170,384,479,482],celltext:479,cemit:126,censu:469,center:[30,41,53,56,116,123,157,159,170,282,284,335,341,350,473,482,496],center_justifi:41,centos7:187,centr:[31,170],central:[0,10,19,32,85,116,122,170,177,192,208,216,222,233,236,237,238,280,296,339,402,407,429,476,480,487,525],centre_east:170,centre_north:170,centre_south:170,centre_west:170,centric:[33,44,104,124,175,354],cert:[182,441,445],certain:[8,14,15,16,21,23,33,42,44,45,47,56,57,59,68,69,77,84,85,106,110,117,119,122,125,127,132,141,142,153,155,174,183,191,197,201,222,237,287,293,297,333,341,353,358,368,375,380,397,400,406,413,420,426,443,444,447,462,468,469,478,482,483,493,496,505,522,536],certainli:17,certbot:[187,197,199],certfil:[441,445],certif:[182,197,202,441,445],certonli:187,cfg:187,cflag:191,cgi:197,cha:[28,162],chain:[0,28,41,54,95,96,116,130,155,260,261,342,420,452,480],chain_1:[94,96],chain_2:[94,96],chain_3:94,chain_:[94,96],chain_flood_room:94,chain_open_door:96,chain_x:[94,96],chainedprotocol:440,chainsol:130,chair:[15,37,46,48,78,125,139,140,169],challeng:[89,113,117,136,138,146,181,280],chamber:113,chan:[19,26,227],chanalia:270,chanc:[7,12,21,30,47,63,80,85,133,138,140,146,147,152,154,185,215,297,312,313,314,315,316,368,375,376,452],chance_of_act:[7,452],chance_of_login:[7,452],chandler:147,chang:[1,2,4,5,6,7,10,13,14,15,16,17,19,21,23,24,25,27,28,30,31,32,33,34,35,36,37,41,42,44,45,46,47,48,51,55,56,57,58,60,61,63,65,67,73,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,91,92,93,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,120,122,123,124,125,126,128,130,132,134,135,136,139,140,141,144,145,146,147,149,150,152,155,156,157,158,159,161,163,166,168,169,170,172,174,175,176,177,178,179,180,182,183,185,187,188,190,191,192,193,195,196,197,200,201,202,203,208,216,217,219,220,222,228,233,236,245,254,255,258,261,270,274,279,282,287,290,296,300,306,312,313,314,315,316,320,326,329,333,342,343,344,350,353,354,357,358,374,375,376,390,392,394,400,401,402,406,407,410,411,413,414,415,420,425,436,451,458,459,466,468,470,474,477,478,481,482,483,489,490,491,492,504,505,506,509,510,512,545,547],change_name_color:390,changelock:[19,227],changelog:[2,131,196,548],changem:201,changepag:179,channel:[0,13,14,21,23,24,26,33,35,36,45,46,48,52,53,55,57,67,102,117,118,120,121,125,126,132,133,137,139,140,167,175,181,186,188,189,197,198,201,205,206,208,209,215,216,222,227,233,235,236,237,238,261,270,368,431,432,439,452,458,459,461,468,476,489,493,502,506,535,537,539,548],channel_:[19,236],channel_ban:[19,227,270],channel_color:153,channel_connectinfo:[0,201,459],channel_detail:541,channel_handler_class:0,channel_list:541,channel_list_ban:227,channel_list_who:227,channel_log_num_tail_lin:201,channel_log_rotate_s:201,channel_msg:[19,208],channel_msg_nick_pattern:[19,236],channel_msg_nick_replac:[19,227,236],channel_msg_pattern:227,channel_mudinfo:[0,201],channel_prefix:[19,153,236],channel_prefix_str:[19,236],channel_search:237,channel_typeclass:537,channeladmin:506,channelalia:[19,227,236],channelattributeinlin:506,channelcl:227,channelcmdset:[0,21,126],channelconnect:238,channelcr:270,channelcreateview:236,channeldb:[48,120,205,236,238,467,506],channeldb_db_attribut:506,channeldb_db_tag:506,channeldb_set:[468,471],channeldbmanag:[237,238],channeldeleteview:236,channeldetailtest:537,channeldetailview:[236,541],channelform:506,channelhandl:[0,19],channelkei:237,channellisttest:537,channellistview:541,channelmanag:[236,237],channelmessag:236,channelmixin:541,channelnam:[19,189,208,209,227,236,431],channeltaginlin:506,channelupdateview:236,char1:[10,146,228,494,537],char2:[10,146,228,537],char_creat:201,char_health:376,char_nam:178,charac:34,charact:[0,4,6,7,8,10,13,14,16,17,18,20,21,23,24,27,28,31,32,33,36,39,42,44,46,48,49,53,57,60,62,64,67,68,70,72,73,79,80,81,83,84,85,87,89,90,91,92,94,96,97,98,101,103,104,105,106,110,111,112,113,115,116,117,120,121,124,125,126,128,129,130,131,132,134,135,136,137,139,141,145,147,151,152,154,155,156,157,159,160,161,163,164,165,166,168,169,170,171,172,173,174,183,188,201,205,206,207,208,210,214,215,217,219,222,223,224,228,229,230,232,234,236,245,258,260,261,277,279,280,282,290,293,300,303,306,309,312,313,314,315,316,320,333,335,339,341,342,344,347,350,353,354,357,358,363,368,370,374,375,376,380,384,386,390,392,394,397,398,402,413,425,446,459,464,468,470,471,473,474,479,480,482,483,494,496,497,502,516,522,535,536,537,539,544,546,547,548],character1:146,character2:146,character_cleanup:[280,282],character_cmdset:[90,320],character_cr:201,character_encod:201,character_ent:282,character_exit:280,character_form:542,character_id:402,character_leav:282,character_list:542,character_manage_list:542,character_sai:94,character_typeclass:[208,494,537],charactercmdset:[0,19,21,26,50,77,80,81,87,89,90,92,94,97,101,102,104,107,108,116,133,134,144,152,153,156,158,161,162,163,166,175,201,224,245,270,290,297,303,306,312,313,314,315,316,320,326,329,347,354,376],charactercreateview:[537,542],characterdeleteview:[537,542],characterdetailview:542,characterform:[536,542],characterlistview:[537,542],charactermanageview:[537,542],charactermixin:542,characterpuppetview:[537,542],charactersheet:28,characterupdateform:[536,542],characterupdateview:[537,542],characterviewset:522,charapp:178,charat:[91,384],charcreat:[26,95,96,126,164,219],charcter:19,chardata:162,chardelet:[26,126,219],chardeleteview:[394,470],chardetailview:[217,392,394,470],charfield:[67,178,492,504,505,506,508,509,510,512,536],charfilt:516,charg:197,chargen:[178,236,394,470],chargencmdset:175,chargenroom:175,chargenview:[394,470],charnam:[162,219,483],charpuppetview:470,charset:496,charsheet:162,charsheetform:162,charupdateview:[394,470],chase:138,chat:[0,1,13,39,53,98,118,121,140,142,143,162,175,181,186,189,198,201,449,489],chatroom:161,chatzilla:189,chdir:201,cheap:143,cheaper:47,cheapest:[116,197],cheapli:376,cheat:[2,119,146,183],chec:494,check:[0,1,3,4,5,6,7,8,9,10,11,12,15,16,19,20,21,23,24,28,30,35,36,37,41,42,46,47,48,49,55,57,58,62,64,67,76,80,83,85,91,94,95,96,117,118,119,123,125,132,133,134,142,143,144,146,147,151,153,154,155,157,159,160,162,164,166,167,168,169,170,171,172,174,175,178,185,186,187,188,190,192,193,197,198,199,201,202,203,208,210,213,214,215,216,217,219,221,222,227,228,229,230,232,233,234,236,238,255,261,274,279,280,282,287,290,293,296,303,312,320,333,339,342,344,358,363,368,374,376,384,397,398,401,402,406,407,410,412,413,414,419,420,424,429,435,440,458,459,461,463,464,465,468,470,471,473,474,476,483,490,491,494,496,497,499,504,505,512,517,544,547],check_attr:222,check_character_flag:279,check_circular:449,check_databas:420,check_db:420,check_defeat:146,check_end_turn:147,check_error:419,check_evennia_depend:496,check_flag:[279,280],check_from_attr:222,check_grid:159,check_has_attr:222,check_light_st:376,check_lock:517,check_lockstr:[0,33,123,398],check_main_evennia_depend:420,check_mixtur:279,check_obj:222,check_perm:280,check_permiss:406,check_permstr:[208,470],check_to_attr:222,check_warn:419,checkbox:178,checker:[2,17,159,397,440,497,501],checklockstr:126,checkout:[12,124,192,196],checkoutdir:4,cheer:98,chemic:297,cheng:75,chest:[39,89,136,137,169],chicken:277,child:[0,19,23,28,33,41,116,122,126,133,134,136,144,147,209,211,217,222,233,277,279,282,296,376,401,407,410,465,468,488,519],childhood:28,children:[23,46,48,122,125,152,171,211,344,401,402,410,420,469,470,488,514,542],chillout:222,chime:20,chines:[0,64,70,153],chip:162,chmod:4,choci:245,choic:[17,23,28,30,41,42,44,45,70,72,91,98,111,117,121,123,125,134,135,136,144,147,169,177,180,183,197,201,208,219,222,245,246,274,287,312,384,418,478,480,483],choice1:72,choice2:72,choice3:72,choicefield:[504,505,509,510,512,514],choos:[9,14,15,28,30,53,54,73,74,76,109,111,116,117,119,122,124,130,141,142,146,147,159,161,163,168,173,175,176,178,189,202,312,313,314,315,316,368,370,374,390,433,480,483,494,548],chop:[23,375],chore:140,chose:[28,67,135,162,178,185,190,199,390,480],chosen:[9,28,68,80,94,147,177,350,384,480,483],chown:192,chractercmdset:376,chraract:341,chri:75,chrislr:[0,83,117],christa:75,christian:75,chrome:[0,184],chronicl:[91,384],chroot:187,chug:23,chunk:[15,78,164,170,422,474],church:[20,141],church_clock:20,churn:144,cid:452,cillum:29,cinemat:[282,284],circl:157,circuit:51,circular:[422,475],circumst:[28,71,95,132,134,135,144,161,168,215,315,536],circumv:220,cis:499,citi:[31,116,142,341],citymap:116,cjust:[30,483],clang:191,clank:[94,96],clarifi:153,clariti:[64,67,136,169,175,191,297],clash:[21,31,125,183,197,222,470,480],class_from_modul:496,classic:[0,15,44,47,133,142,147,149,181],classifi:201,classmethod:[157,208,236,296,298,321,344,394,402,413,470,487,530],classnam:[14,64,136],classobj:470,clatter:28,claus:[75,172,180],clean:[0,12,14,18,19,28,113,123,133,134,138,144,147,153,154,170,203,215,217,222,232,280,282,287,297,312,333,354,375,376,402,410,420,424,438,448,461,470,473,478,480,487,492,495,496,504,505,512,536],clean_attr_valu:505,clean_attribut:[48,208,470],clean_cmdset:[48,470],clean_senddata:461,clean_stale_task:414,clean_str:473,clean_usernam:504,cleaned_data:178,cleaner:[0,136,169,175],cleanli:[44,83,91,122,203,213,217,270,384,422,431,437,448,461,478],cleanup:[0,14,23,27,28,62,80,281,282,287,293,296,373,376,480,504],cleanupscript:281,clear:[0,11,14,17,19,23,27,46,47,48,51,55,58,62,70,72,80,83,91,116,118,119,122,123,140,143,144,146,155,164,166,170,177,200,203,216,219,220,222,228,234,238,293,335,343,354,357,358,376,384,386,398,400,401,402,411,414,415,422,459,463,468,470,471,480,487],clear_all_sessid:400,clear_attribut:468,clear_client_list:456,clear_cont:[37,402],clear_exit:[37,402],clearal:[72,228],clearli:[11,55,94,118,133,487],cleartext:[76,210,381,476],clemesha:465,clever:[0,19,21,28,54,398],cleverli:44,click:[0,4,9,11,12,49,50,51,52,53,59,71,73,119,125,131,164,178,197,201,480,548],click_top:229,clickabl:[0,61,71,119,201,229,548],clickable_top:229,client:[0,4,7,11,23,24,27,29,30,32,34,44,45,49,52,55,59,60,61,62,69,70,76,80,116,117,119,121,122,124,128,132,133,134,135,142,147,149,151,153,156,166,169,170,171,176,181,182,183,185,186,187,189,190,191,192,193,195,199,200,201,202,205,206,208,209,217,219,222,227,229,232,234,342,344,381,416,417,421,423,425,429,430,431,432,433,434,435,436,438,440,442,443,444,445,447,448,449,451,452,458,459,460,461,477,478,480,496,516,519,545,548],client_address:62,client_class:520,client_default_height:[29,201],client_default_width:201,client_disconnect:449,client_encod:183,client_gui:[0,425],client_height:0,client_nam:0,client_opt:[68,425,444],client_secret:186,client_typ:279,client_width:[0,23,217],clientconnectionfail:[417,431,432],clientconnectionlost:[417,431,432],clienthelp:51,clientkei:451,clientraw:[0,232],clientsess:[448,449],clientwidth:126,cliff:[98,113,128,222],climat:46,climb:[7,23,121,201,222,279,375],climbabl:[279,375],clipboard:50,clock:[20,23,55,102,126,146,270],cloer:316,clone:[5,11,64,119,122,124,131,193,196],close:[0,9,12,16,27,28,30,44,48,51,52,62,80,89,94,95,96,106,107,112,117,119,122,133,135,136,153,157,164,178,187,190,192,195,197,199,201,203,232,234,243,245,255,279,281,287,316,326,350,368,373,422,430,431,438,440,448,449,461,468,474,480,483],close_menu:[373,480],closer:[14,316,353],closest:[60,110,157,358,496],cloth:[14,101,125,139,205,206,239,285,474,548],clothedcharact:[81,290],clothedcharactercmdset:[81,290],clothes_list:290,clothing_typ:[81,290],clothing_type_count:290,clothing_type_ord:290,cloud9:202,cloud:[42,75,117,177,192,197,199],cloud_keep:[98,117],cloudi:42,clr:[30,284,406,483],cls:[157,208,358],club:296,clue:375,clump:136,clunki:[12,316],cluster:183,clutter:[119,216],cma:12,cmd:[0,7,16,19,21,23,31,33,55,68,78,80,125,126,135,144,153,154,155,158,162,163,167,168,174,175,188,190,201,215,217,219,220,221,222,227,228,229,230,231,232,233,234,245,255,259,270,273,274,277,287,290,296,297,300,303,306,309,312,313,314,315,316,320,326,329,335,347,354,368,370,374,375,376,384,390,391,402,444,448,449,451,474,478,480,481,544],cmd_arg:169,cmd_channel:23,cmd_help_dict:229,cmd_help_top:544,cmd_ignore_prefix:[23,201,214],cmd_kei:169,cmd_last:[44,201],cmd_last_vis:[44,201],cmd_loginstart:[23,201],cmd_multimatch:[23,213],cmd_na_m:68,cmd_name:[0,68,444],cmd_noinput:[23,213,480],cmd_nomatch:[23,213,376,480],cmd_noperm:23,cmd_on_exit:[28,278,373,384,390,404,480],cmd_or_top:[229,544],cmd_total:[44,201],cmdabout:232,cmdaccept:287,cmdaccess:228,cmdaccount:232,cmdaddcom:270,cmdallcom:270,cmdapproach:316,cmdarmpuzzl:309,cmdasync:54,cmdattack:[146,147,155,175,312,313,314,315,316,375],cmdban:220,cmdbare:126,cmdbatchcod:221,cmdbatchcommand:221,cmdbigsw:155,cmdblindhelp:368,cmdblindlook:368,cmdblock:153,cmdboot:220,cmdbridgehelp:376,cmdbui:168,cmdbuildshop:168,cmdcallback:[94,259],cmdcast:[297,315],cmdcboot:270,cmdcdesc:270,cmdcdestroi:270,cmdchannel:[19,227,270],cmdchannelcr:270,cmdcharcreat:219,cmdchardelet:219,cmdclimb:375,cmdclock:270,cmdcloselid:368,cmdcolortest:219,cmdcombathelp:[312,313,314,315,316],cmdconfigcolor:166,cmdconfirm:23,cmdcopi:222,cmdcover:290,cmdcpattr:222,cmdcraft:[85,296],cmdcraftarmour:155,cmdcreat:222,cmdcreatenpc:175,cmdcreateobj:277,cmdcreatepuzzlerecip:309,cmdcwho:270,cmddarkhelp:376,cmddarknomatch:376,cmddeclin:287,cmddefend:147,cmddelcom:270,cmddesc:[222,320],cmddestroi:222,cmddiagnos:156,cmddice:[87,162,347],cmddig:222,cmddisengag:[147,312,313,314,315,316],cmddoff:313,cmddon:313,cmddrop:[228,290],cmddummi:273,cmddummyrunnerechorespons:451,cmdeast:376,cmdecho:[23,119,126,134,155,494],cmdedit:[80,245],cmdeditnpc:175,cmdeditorbas:478,cmdeditorgroup:478,cmdeditpuzzl:309,cmdemit:220,cmdemot:[277,354],cmdentertrain:174,cmdevalu:287,cmdevenniaintro:376,cmdevmenunod:480,cmdevscaperoom:277,cmdevscaperoomstart:[89,277],cmdexamin:222,cmdexiterror:158,cmdexiterroreast:158,cmdexiterrornorth:158,cmdexiterrorsouth:158,cmdexiterrorwest:158,cmdextendedlook:0,cmdextendedroom:0,cmdextendedroomdesc:[90,320],cmdextendedroomdetail:[0,90,320],cmdextendedroomgametim:[90,320],cmdextendedroomlook:[0,90,320],cmdfeint:147,cmdfight:[312,313,314,315,316],cmdfind:222,cmdfinish:287,cmdfocu:277,cmdfocusinteract:277,cmdforc:220,cmdget:[0,134,153,228,277],cmdgetinput:480,cmdgetweapon:375,cmdgive:[228,290],cmdgiveup:277,cmdgmsheet:162,cmdgoto:335,cmdgrapevine2chan:227,cmdhandler:[21,23,37,65,132,205,206,208,212,214,215,216,217,219,230,231,232,233,234,277,309,320,376,401,402,410,494,496],cmdhelp:[31,147,201,229,277,312],cmdhit:[126,134,147],cmdhome:228,cmdic:219,cmdid:425,cmdinsid:174,cmdinterrupt:233,cmdinventori:[167,228,290],cmdirc2chan:227,cmdircstatu:227,cmdjumpstat:277,cmdlaunch:152,cmdlearnspel:315,cmdleavetrain:174,cmdlen:[214,231],cmdlight:375,cmdline:420,cmdlineinput:478,cmdlink:222,cmdlistarmedpuzzl:309,cmdlistcmdset:222,cmdlistpuzzlerecip:309,cmdlock:222,cmdlook:[8,156,228,277,320,376],cmdlookbridg:376,cmdlookdark:376,cmdmail:[0,97,303],cmdmailcharact:[0,97,303],cmdmakegm:162,cmdmap:335,cmdmapbuild:98,cmdmask:354,cmdmobonoff:374,cmdmore:481,cmdmoreexit:481,cmdmultidesc:[101,161,306],cmdmvattr:222,cmdmycmd:[31,160],cmdmylook:10,cmdname2:214,cmdname3:214,cmdname:[0,32,51,62,65,68,126,144,175,201,213,214,217,222,230,231,233,425,443,444,448,449,461,494],cmdnamecolor:[111,390],cmdnewpassword:220,cmdnick:228,cmdnoinput:245,cmdnomatch:245,cmdnositstand:144,cmdnpc:175,cmdnudg:368,cmdobj:[213,214,231,494],cmdobj_kei:213,cmdobject:[0,213,214,222],cmdobjectchannel:[19,227],cmdoffer:287,cmdooc:219,cmdooclook:219,cmdopen:[222,326,335],cmdopenclosedoor:326,cmdopenlid:368,cmdoption:[219,277],cmdpage:227,cmdparri:147,cmdparser:[200,201,205,206,212],cmdpass:[312,313,314,315,316],cmdpassword:219,cmdperm:220,cmdplant:[114,274],cmdpose:[147,228,354],cmdpressbutton:375,cmdpush:94,cmdpushlidclos:368,cmdpushlidopen:368,cmdpy:232,cmdquell:219,cmdquit:219,cmdread:375,cmdrecog:[0,354],cmdreload:232,cmdremov:290,cmdrerout:277,cmdreset:232,cmdrest:[312,313,314,315,316],cmdroll:169,cmdrss2chan:227,cmdsai:[147,228,354],cmdsaveyesno:478,cmdscript:[0,222],cmdsdesc:354,cmdser:480,cmdserverload:232,cmdservic:232,cmdsession:219,cmdset:[6,8,13,16,19,21,23,26,28,31,37,42,44,62,64,77,80,85,87,89,90,92,94,97,102,103,106,108,116,120,125,127,131,132,133,144,147,152,153,158,161,163,164,166,168,174,175,201,205,206,208,212,213,214,216,217,222,223,224,225,226,230,231,232,233,245,259,270,274,277,287,290,296,300,303,309,312,313,314,315,316,320,326,329,335,347,354,368,370,373,374,375,376,401,402,410,451,458,459,470,478,480,481,494,496,514],cmdset_account:[13,201,205,206,212,218],cmdset_charact:[201,205,206,212,218,290,312,313,314,315,316],cmdset_creat:77,cmdset_fallback:201,cmdset_mergetyp:[28,278,373,384,404,480],cmdset_path:201,cmdset_prior:[28,278,373,384,404,480],cmdset_sess:[44,201,205,206,212,218],cmdset_stack:216,cmdset_storag:[211,401,459],cmdset_storage_str:201,cmdset_trad:287,cmdset_unloggedin:[23,88,99,201,205,206,212,218,255],cmdsetattribut:222,cmdsetclimb:375,cmdsetcrumblingwal:375,cmdsetdesc:228,cmdsetevenniaintro:376,cmdsetevscaperoom:277,cmdsetflag:277,cmdsethandl:[44,205,206,212],cmdsethelp:229,cmdsethom:222,cmdsetkei:21,cmdsetkeystr:215,cmdsetlegacycomm:[102,270],cmdsetlight:375,cmdsetmor:481,cmdsetobj:[215,216,223,224,225,226,245,270,277,287,290,296,309,312,313,314,315,316,320,326,329,335,347,354,368,370,373,374,375,376,451,478,480,481],cmdsetobjalia:222,cmdsetpow:175,cmdsetread:375,cmdsetsit:144,cmdsetspe:[108,329],cmdsettestattr:27,cmdsettrad:[77,287],cmdsettrain:174,cmdsetweapon:375,cmdsetweaponrack:375,cmdsheet:162,cmdshiftroot:375,cmdshoot:[152,316],cmdshutdown:232,cmdsit2:144,cmdsit:144,cmdsmashglass:368,cmdsmile:23,cmdspawn:222,cmdspeak:277,cmdspellfirestorm:154,cmdstand2:144,cmdstand:[144,277],cmdstatu:[287,315,316],cmdstop:[108,329],cmdstring:[23,126,162,213,217,230,233,494],cmdstyle:219,cmdtag:222,cmdtalk:370,cmdtask:232,cmdteleport:[222,335],cmdtest:[6,155,169],cmdtestid:23,cmdtestinput:28,cmdtestmenu:[28,91,384,480],cmdticker:232,cmdtime:[163,232],cmdtrade:287,cmdtradebas:287,cmdtradehelp:287,cmdtunnel:222,cmdtutori:376,cmdtutorialgiveup:376,cmdtutoriallook:376,cmdtutorialsetdetail:376,cmdtweet:188,cmdtypeclass:222,cmdunban:220,cmdunconnectedconnect:[234,255],cmdunconnectedcr:[234,255],cmdunconnectedencod:234,cmdunconnectedhelp:[234,255],cmdunconnectedinfo:234,cmdunconnectedlook:[234,255],cmdunconnectedquit:[234,255],cmdunconnectedscreenread:234,cmduncov:290,cmdunlink:222,cmdunwield:313,cmduse:314,cmdusepuzzlepart:309,cmdwait:23,cmdwall:220,cmdwear:290,cmdwerewolf:153,cmdwest:376,cmdwhisper:228,cmdwho:[219,277],cmdwield:313,cmdwipe:222,cmdwithdraw:316,cmdxyzopen:335,cmdxyzteleport:335,cmdyesnoquest:480,cmp:83,cmset:[216,514],cmud:184,cnf:[4,183],coal:[296,297],coast:[138,170],coastal:170,cobj:277,cockpit:152,code:[0,3,5,7,8,9,10,13,16,17,21,23,24,28,30,31,33,34,37,39,41,44,46,47,48,49,50,52,53,54,55,56,57,60,61,62,64,67,68,72,73,75,77,78,84,85,89,95,96,98,105,110,113,116,117,120,121,122,123,124,125,127,128,130,131,132,133,134,136,137,138,139,141,143,144,145,147,148,150,151,155,157,158,159,160,161,162,163,164,165,169,170,171,172,174,175,176,177,179,183,192,193,195,196,198,199,200,201,203,205,206,208,212,213,216,219,221,222,227,229,232,235,239,245,251,258,261,274,279,282,285,287,293,295,314,341,347,350,376,386,398,407,410,429,431,432,448,459,462,470,472,473,478,480,482,493,494,495,496,503,545,548],code_exec:474,code_hint:279,code_tri:279,codebas:[12,72,74,119,121,137,160,201,233],codeblock:119,codec:473,codefunc:478,codeinput:279,coder:[0,1,2,89,117,140,142,143,160,181,213,402],coding_styl:119,coerc:491,coexist:176,coher:148,coin:[77,117,118,125,136,137,139,140,141,287],col:[56,149,482],cold:[55,201,203,232,407,411,415,458],cole:496,coll_date_func:232,collabor:[12,89,122,123,140,143,197,229],collat:[31,65,406],collect:[0,1,14,21,30,31,49,103,116,136,151,213,215,229,232,309,358,468,496,522,544],collect_top:[229,544],collector:151,collectstat:[51,53,151,420,424],collid:[21,41,110,185,197,279,358,471,480,483],collis:[0,21,23,463],collist:136,colon:[20,33,94,128,135,398],color:[0,19,23,26,28,30,32,41,51,56,61,71,72,93,111,116,117,119,120,125,126,128,159,162,164,165,170,181,201,217,219,247,248,249,274,284,297,341,342,344,350,354,373,390,402,406,425,432,440,443,448,449,473,482,483,490,494,497,548],color_ansi_bright_bg_extra_map:[82,248],color_ansi_bright_bgs_extra_map:[82,248],color_ansi_extra_map:[82,201,248],color_ansi_xterm256_bright_bg_extra_map:201,color_markup:[82,205,206,239,240,548],color_no_default:[82,201,248],color_typ:473,color_xterm256_extra_bg:[82,201,248],color_xterm256_extra_fg:[82,201,248],color_xterm256_extra_gbg:[82,201,248],color_xterm256_extra_gfg:[82,201,248],colorablecharact:166,colorlist:495,colour:[20,61,222,447,473,482],column:[0,51,56,58,67,94,95,115,116,119,122,159,162,164,170,201,217,219,333,344,482,496],column_names_color:201,com:[0,1,5,10,11,12,40,49,53,54,56,64,69,73,75,80,84,89,95,119,121,124,133,137,140,157,170,178,181,182,183,185,187,191,192,193,197,198,199,201,205,227,232,245,255,293,395,429,432,435,444,448,465,482,495,496,536],coman:75,combat:[0,12,16,21,28,41,46,48,69,95,112,113,117,121,122,125,126,132,133,138,141,142,145,146,153,154,170,171,181,216,312,313,314,315,316,374,410],combat_:312,combat_cleanup:312,combat_cmdset:147,combat_handl:147,combat_handler_:147,combat_handler_class:[312,314,315,316],combat_help_text:[312,314,316],combat_movesleft:312,combat_rul:[312,313,315,316],combat_scor:175,combat_spel:315,combat_status_messag:316,combatcmdset:147,combathandl:147,combatscor:175,combin:[10,14,20,21,23,34,35,41,46,47,55,60,85,103,110,116,117,121,128,130,134,135,142,154,156,161,162,172,174,182,187,197,213,214,215,222,279,296,297,306,309,342,344,353,358,368,398,406,409,415,420,469,471,476,483,490,494,496],combo:44,come:[7,12,13,17,20,23,28,29,31,33,42,44,51,52,53,54,56,60,62,65,68,72,73,89,90,94,95,113,116,117,121,122,123,128,132,133,135,136,140,142,143,144,146,147,149,152,153,155,159,161,162,163,164,168,169,170,172,174,175,176,178,179,183,187,190,192,208,215,312,316,320,354,386,406,407,429,438,443,448,449,451,457,473,481,519,545],comet:[51,62,449],comfi:144,comfort:[12,17,121,143,164,169,202],comg:49,comlist:270,comm:[19,23,26,35,117,120,122,131,188,201,205,206,212,218,269,270,271,476,502,503,527,541,548],comma:[0,19,30,50,58,67,94,95,128,135,136,179,183,222,230,264,296,303,398,402,483,496],comman:128,command:[1,2,4,7,9,10,11,12,13,14,15,17,19,20,27,28,29,32,33,35,36,37,39,40,41,44,46,48,50,51,52,54,55,57,58,59,60,62,63,64,65,67,68,69,70,71,72,74,76,77,78,81,83,84,85,87,89,91,92,95,96,97,98,101,103,104,106,107,108,109,111,112,113,115,116,117,119,121,122,123,124,127,129,131,137,138,140,142,143,146,151,152,159,160,161,164,165,170,171,172,173,176,182,183,184,186,187,189,190,191,192,193,195,196,197,198,199,200,201,202,203,205,206,208,209,236,237,239,240,245,254,255,257,260,262,269,270,272,273,274,275,276,278,279,284,287,290,293,296,297,298,300,303,306,309,312,313,314,315,316,318,320,326,329,333,334,336,337,347,354,366,368,370,373,374,375,376,381,384,390,391,392,393,394,395,397,398,402,406,407,410,417,420,425,429,430,438,440,443,444,448,449,451,452,458,459,470,472,473,476,478,480,481,490,493,494,496,522,544,545,548],command_default_arg_regex:[0,23,201],command_default_class:[153,201],command_default_help_categori:[31,201],command_default_lock:201,command_default_msg_all_sess:201,command_handler_class:313,command_pars:[201,214],command_rate_warn:201,commandhandl:[32,216,231],commandmeta:217,commandnam:[23,32,65,128,274,420,429,459,461],commandset:[33,37,126,216],commandss:158,commandtest:0,commandtestmixin:494,comment:[15,16,28,48,78,124,126,144,153,172,182,184,197,201,341,474,480],commerc:181,commerci:[9,143,197],commerror:237,commit:[0,4,5,11,17,63,69,118,119,122,153,183,192,196,198,380,505,512],commmand:[107,312,313,314,315,316,326],commom:24,common:[0,1,8,10,12,17,19,20,23,24,28,32,33,41,42,44,45,47,48,54,55,56,58,62,65,68,70,77,85,104,108,117,119,120,122,128,129,130,132,133,135,136,137,139,140,142,143,146,147,156,163,164,169,175,178,187,195,197,201,215,222,227,234,287,296,329,353,354,398,400,410,425,448,452,469,470,479,481,491,493,496,522,529,545],commonli:[11,30,31,36,42,44,45,47,53,58,65,67,94,110,116,122,130,134,142,183,200,342,358,402,494,522],commonmark:119,commonmiddlewar:201,commonpasswordvalid:201,commun:[0,9,19,23,35,40,51,52,62,65,68,70,75,76,80,117,120,121,122,126,131,132,133,142,143,161,169,182,183,189,197,199,201,208,224,227,234,235,236,237,238,277,303,343,373,401,409,417,429,430,440,441,443,444,445,446,459,461,476,477,492,548],compact:[130,168,179,368],compani:[68,122],compar:[0,8,10,12,15,17,20,21,65,94,98,104,110,116,123,124,130,143,146,147,154,155,158,162,168,169,175,309,312,313,314,316,353,358,397,398,407,451,473,494,496],comparison:[7,15,30,130,131,357,397,407,480,494],compartment:162,compass:128,compat:[0,16,28,75,110,111,152,222,358,482,489,496],compatabil:0,compet:[17,68,142],compil:[7,23,64,69,119,124,132,160,191,193,195,197,217,222,228,229,232,234,277,290,296,354,473,478,480,495],compilemessag:64,complain:[6,11,67,144,169,203],complement:[0,1,45,143,358],complementari:[24,30,41,42,70],complet:[0,4,7,11,12,13,14,15,16,17,20,21,23,24,27,37,39,41,44,45,50,52,54,68,76,80,82,84,93,94,98,113,117,118,122,130,134,135,138,140,141,142,143,153,159,162,163,166,168,170,175,183,187,190,197,200,201,203,208,215,216,217,230,232,233,248,261,275,293,313,320,342,350,368,376,384,402,414,420,422,430,431,448,468,474,479,480,481,493,496,517,536],complete_task:261,complex:[7,14,16,17,21,23,30,47,58,67,69,83,89,94,105,109,116,117,119,122,125,127,128,132,134,135,136,137,140,141,142,144,146,147,163,170,175,192,200,216,236,262,279,368,370,386,407,452,468],complianc:[184,320],compliant:[157,444],complic:[54,80,91,96,111,130,155,159,164,169,170,178,179,197,234,255,384,390,468],compon:[0,1,7,10,23,35,42,49,50,51,53,60,61,62,73,116,119,131,140,143,147,148,150,155,159,162,165,175,197,201,203,205,206,222,232,237,238,239,251,296,309,318,334,341,343,353,357,400,407,408,409,410,413,420,449,476,479,483,493,496,499,525,548],component_nam:83,component_prefix:489,componenta:8,componentholdermixin:83,componentid:51,componentnam:51,componentproperti:83,componentst:51,compos:[91,181,192,384],composit:[83,446,469],comprehens:[7,10,33,35,48,121,141,144,199],compress:[32,425,429,433,492],compress_object:492,compris:208,compromis:[199,380],comput:[12,47,54,55,70,122,130,131,142,146,159,160,177,189,192,195,220,232,496,497],computation:47,comsystem:238,con:[26,117,162,181,234,255,548],concaten:[132,473],concept:[0,12,40,47,62,64,84,95,101,117,118,119,125,127,135,136,139,140,141,144,157,161,164,165,166,293,306,358,548],conceptu:[28,159],concern:[64,68,94,116,117,135,193,215,386,394],conch:[440,443,451],concis:143,conclud:[130,287,480],conclus:[125,127,139],concret:94,concurr:183,conda:124,conder:474,condit:[0,7,30,58,87,94,95,112,117,121,126,130,134,140,141,146,159,168,169,175,182,213,229,314,347,354,398,402,413,419,420,465,471,496],condition:153,condition_result:347,condition_tickdown:314,conditional_flush:487,conduct:151,conductor:174,conect:461,conf:[0,4,7,10,12,25,32,33,41,42,50,53,62,64,67,73,76,82,85,89,94,98,99,116,119,123,124,125,133,144,153,163,164,166,173,174,178,179,182,183,185,186,187,195,197,199,201,202,208,248,296,336,338,420,426,427,466,474],confer:[181,496],confid:[6,118,157],config:[0,4,5,9,12,13,62,123,124,187,195,197,198,201,202,358,420,422,426,427,438,511,548],config_1:13,config_2:13,config_3:13,config_color:166,configcmd:166,configdict:[440,461],configur:[0,2,4,10,13,50,94,96,119,122,132,151,153,163,164,165,173,185,192,197,199,201,208,211,214,219,274,358,380,381,422,427,438,461,463,465,466,469,536,548],configut:9,confirm:[0,23,51,75,88,116,128,182,195,199,222,255,309,444,447],conflict:[6,142,176],confus:[1,7,8,12,14,21,23,36,39,42,51,54,60,64,74,80,88,94,116,119,122,130,133,136,151,162,169,176,197,202,227,255,342,546],congratul:[125,139],conid:439,conj:[30,58,402,483],conjug:[0,30,58,205,206,402,472,483,498,501],conjunct:94,conjur:[112,315],conn:[26,234,255],conn_max_ag:201,conn_tim:[44,201],connect:[0,2,7,10,13,15,18,19,21,23,24,26,32,37,39,40,42,44,45,48,50,51,52,53,55,60,62,63,64,65,68,71,76,88,89,93,94,95,96,98,99,108,113,116,117,121,122,123,124,128,130,131,132,133,134,142,151,153,159,161,164,168,169,170,173,175,176,182,183,184,186,187,189,190,192,193,195,198,199,200,201,202,203,208,209,210,211,219,220,222,227,234,236,237,238,254,255,258,259,261,270,329,339,341,342,344,350,381,401,402,408,416,417,420,422,429,430,431,432,433,438,439,440,443,448,449,451,452,458,459,460,461,462,465,468,470,476,492,519,522,548],connection_cr:45,connection_screen:[0,25,88,99,132,200,201,205,206,239,240,253,255,265],connection_screen_modul:[88,99,201,255],connection_set:185,connection_tim:[208,402],connection_wizard:[205,206,416],connectiondon:422,connectionlost:[422,429,430,440,443,451],connectionmad:[417,429,440,443,451],connectionwizard:418,connector:[417,431,432,438,461],conquer:138,cons3:298,consecut:28,consequ:[197,216],consid:[1,7,8,14,15,16,19,20,21,23,28,30,32,33,39,41,42,44,46,47,48,50,52,54,55,58,60,62,67,70,73,85,91,95,96,103,104,110,116,118,121,122,123,130,132,135,137,140,141,143,144,157,158,161,167,168,174,178,179,180,183,193,197,199,201,208,215,216,274,293,309,316,339,341,342,353,354,358,384,402,406,407,410,425,440,443,469,471,474,475,480,481,483],consider:[0,67,76,133,142,170,172,200,407,482],consist:[0,13,14,18,23,28,31,33,40,41,51,58,60,67,73,95,98,104,116,119,125,135,138,141,147,158,163,175,201,203,208,214,229,230,236,237,251,287,297,309,343,353,391,398,407,444,449,459,468,470,476,482,494,496,505,512,547],consitut:133,consol:[0,1,6,8,9,51,57,60,64,75,119,122,124,125,133,135,136,175,183,190,191,192,193,195,197,229,232,343,354,420],conson:[104,353],constant:[68,96,201,429,494],constantli:[171,376],constitu:[216,230],constitut:14,constraint:[96,183],construct:[4,122,144,155,178,407,464,468,473,481,536],constructor:[23,80,85,110,245,296,358,431],consum:[54,85,117,201,279,296,297,298,422,496],consumable_kwarg:296,consumable_nam:296,consumable_tag:[85,296,297],consumable_tag_categori:[85,296],consume_flag:279,consume_on_fail:296,consumer_kei:[173,188],consumer_secret:[173,188],consumpt:[7,183,463],contact:[19,37,192,197,201],contain:[0,1,8,11,14,15,16,18,21,23,24,26,28,30,31,33,35,37,41,44,51,52,53,54,56,60,62,67,72,76,80,83,89,91,92,94,95,96,98,104,105,108,111,112,114,116,117,118,119,120,121,122,124,126,128,130,131,132,133,134,135,141,144,151,152,153,157,160,161,163,164,169,172,175,176,178,179,181,190,191,193,195,200,201,205,206,208,209,210,212,213,214,215,216,218,221,222,227,229,235,245,258,259,260,261,262,264,274,277,296,300,309,314,329,333,341,342,343,344,353,354,358,368,375,381,382,384,386,390,392,393,396,402,404,406,407,414,416,419,423,425,451,463,464,465,468,469,470,471,472,473,474,477,479,480,481,482,483,493,494,495,496,497,519,525,534,544,545,547],container:192,containin:201,contempl:160,content:[7,12,15,18,20,30,35,37,48,50,51,52,53,56,78,89,94,117,119,123,125,130,132,134,135,137,142,143,144,149,152,157,159,160,162,164,167,168,169,171,174,175,178,179,187,197,217,220,222,243,279,280,335,354,392,400,401,402,471,473,474,475,478,480,482,493,494,502,512,519,525,534],content_typ:[0,401,402],contentof:482,contents_cach:401,contents_get:[137,402],contents_set:402,contentshandl:[0,401],contenttyp:201,contest:[89,277],context:[0,53,60,94,95,121,127,164,169,176,178,245,261,441,445,529,541,542,544,545,547],context_processor:[201,529],contextu:46,contibut:[78,117],continu:[0,2,6,14,20,23,28,46,47,53,54,59,67,75,94,95,98,116,117,118,121,126,134,135,147,151,152,155,159,162,164,168,175,188,191,193,195,196,197,201,342,402,418,429,465,468,480,489,496,548],contrari:[49,94,96,110,132,142,163,232,358,471],contrast:[39,42,70,160,197,444],contrib:[2,15,16,50,58,75,76,77,78,79,80,81,82,84,85,86,87,88,89,90,91,92,93,94,95,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,119,120,121,123,125,128,131,132,135,138,139,142,145,146,147,161,162,163,180,196,201,205,206,208,210,211,232,233,462,473,474,504,505,506,508,509,510,511,512,527,528,536,542,547,548],contribcloth:290,contribrpcharact:[104,354],contribrpobject:[104,354],contribrproom:[104,354],contribu:12,contribut:[1,10,12,64,75,76,77,79,80,81,84,85,87,89,90,91,92,93,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,122,123,124,131,141,151,167,180,193,239,248,274,287,290,303,309,320,326,329,347,354,370,380,381,386,548],contributor:[0,75,180,245,358],control:[0,2,3,4,6,8,11,13,15,16,19,21,23,27,28,29,30,31,32,33,37,40,41,42,44,49,50,55,57,58,60,65,67,69,73,75,77,78,85,106,116,117,118,119,120,122,124,125,128,131,132,133,134,140,142,143,146,152,161,162,166,172,174,175,187,195,196,197,199,201,203,208,209,219,221,222,227,260,270,279,287,333,344,354,368,374,376,397,402,410,420,459,461,470,480,483,494,517,536,548],contrub:85,convei:[354,402],convenei:45,conveni:[9,19,28,31,32,33,37,39,41,42,48,53,54,62,67,69,74,80,98,116,119,121,124,125,133,134,135,137,152,161,164,178,182,198,201,203,208,222,232,245,282,284,296,303,402,452,463,474,475,480,481,483,489,492,493],convent:[21,45,67,96,130,176,201],convention:[217,402,470],convers:[19,28,30,36,85,109,117,174,353,370,448,449,473,496],convert:[0,11,14,19,20,36,41,60,62,65,68,70,86,91,116,118,122,125,130,133,144,157,159,163,166,168,176,181,190,193,196,199,201,210,220,251,341,347,384,390,397,400,406,407,409,411,429,431,440,443,444,461,465,473,477,480,481,482,483,484,492,495,496,499,519],convert_linebreak:495,convert_url:495,convinc:[28,197],cooki:201,cool:[1,80,94,124,140,149,152,181,222,227],cool_gui:39,cooldown:[0,147,155,165,205,206,239,285,548],cooldownhandl:[84,293],coord:[157,339,341,342,344],coordi:157,coordin:[0,51,98,115,116,117,159,165,316,333,335,341,342,343,344,548],coordx:157,coordz:157,cope:315,copi:[0,1,4,7,11,12,15,16,23,26,27,28,41,44,49,50,51,53,73,75,89,96,117,122,123,126,128,131,132,151,153,163,166,170,175,178,187,190,192,196,197,200,201,221,222,261,290,312,313,314,315,316,376,400,402,409,420,429,466,468,473,544,545],copy_object:[400,402],copy_script:409,copy_word_cas:496,copyright:[180,197],core:[0,9,12,37,48,57,64,68,86,97,117,118,131,136,141,159,180,200,201,208,211,232,238,239,297,303,394,401,402,410,416,427,437,444,458,468,470,471,474,481,488,494,536,547,548],corner:[18,113,115,116,157,161,181,333,341,482],corner_bottom_left_char:482,corner_bottom_right_char:482,corner_char:482,corner_top_left_char:482,corner_top_right_char:482,corpu:[104,353],correct:[0,16,20,21,23,27,30,53,54,60,70,113,118,119,133,136,143,152,156,169,174,175,176,183,213,219,222,237,279,309,320,341,354,364,398,435,438,440,446,460,473,494,496],correctli:[0,4,6,20,23,27,28,46,47,116,119,123,124,132,155,159,163,168,169,174,175,176,182,189,197,201,203,208,211,216,219,296,411,420,429,465,492,519],correl:407,correspond:[23,33,44,53,73,98,103,116,128,168,201,251,309,390,505,512,517,536],correspondingli:11,corrupt:160,cosi:170,cosin:496,cosmet:[0,333],cost:[115,116,154,168,197,315,333,354],cottag:[59,170],couchdb:75,could:[0,4,6,7,9,10,11,13,14,15,16,17,19,21,23,28,30,31,33,34,35,36,37,39,41,42,46,47,48,53,54,55,57,58,60,62,65,67,68,69,70,72,73,74,77,80,85,89,94,95,96,105,108,110,111,116,117,119,121,122,123,124,125,126,128,130,132,133,134,135,136,140,141,142,143,144,146,147,149,151,152,153,154,155,156,157,158,159,161,162,163,164,166,167,168,169,170,171,172,173,174,175,176,177,178,181,186,187,188,189,193,195,197,198,201,208,216,222,229,237,238,245,264,279,280,287,296,329,333,342,344,347,350,354,357,358,368,376,386,390,398,402,413,425,444,449,465,470,471,473,474,478,482,483,484,487,491,496,500],couldn:[57,74,122,126,135,157,158,169,176,179,386],count:[19,49,52,112,122,130,133,135,147,173,210,215,290,293,314,390,402,434,438,451,455,461,463,469,473,480,483,489,500],count_loggedin:438,count_queri:455,countdown:[42,128,155],counter:[11,42,44,80,141,147,155,164,168,205,209,239,345,356,357,376,438,451,452,459,480],countermeasur:201,counterpart:[0,15,60,141,425,461,477],countertrait:358,countri:220,coupl:[12,39,80,108,164,171,192,236,329],cours:[1,5,7,9,17,23,47,53,55,69,74,76,80,85,94,95,96,113,116,117,119,122,123,124,133,134,135,136,138,140,152,161,169,175,177,180,190,201,313,316,373],court:113,courtesi:[0,55],cousin:[72,94,117,169],cover:[1,12,15,16,31,53,61,62,66,67,81,94,106,116,118,124,130,131,132,134,135,141,142,143,155,161,173,181,182,183,195,197,202,279,290,297,320,342,368,376,402,496],coverag:[0,10],coveral:10,cpanel:197,cpattr:[26,126,222],cprofil:2,cpu:[7,55,197,199,232],cpython:7,crack:67,craft:[0,33,58,91,103,125,139,140,155,170,205,206,239,285,384,548],craft_recipe_modul:[85,296],craft_recipes_modul:296,craft_result:296,crafted_result:296,crafter:[296,297,298],crafting_consumable_err_msg:296,crafting_materi:[85,296,297],crafting_recipe_modul:85,crafting_result:296,crafting_skil:85,crafting_tool:[85,296],crafting_tool_err_msg:296,craftingcmdset:296,craftingerror:296,craftingrecip:[85,296,297,298],craftingrecipebas:[85,296],craftingvalidationerror:[85,296],craftrecip:296,cram:138,crank:47,crash:[1,135,140,170,199,201,424,468],crate:[36,128],crawl:199,crawler:[201,234,434],cre:[26,234,255],creat:[0,1,2,5,6,7,9,10,12,14,15,16,17,19,21,24,25,26,27,28,30,31,33,35,36,39,41,42,44,45,46,49,50,51,53,56,57,61,62,63,69,72,73,74,75,77,78,80,81,83,85,89,90,91,95,98,100,101,102,103,104,105,106,109,110,111,113,115,116,117,118,119,121,122,123,124,125,127,130,132,134,136,137,138,139,140,141,143,144,145,146,147,150,151,153,155,157,158,159,160,161,162,163,166,168,169,171,172,173,177,179,180,183,185,186,188,189,190,191,193,194,197,199,200,201,202,205,206,208,209,210,211,214,215,216,217,219,222,227,228,229,230,231,232,233,234,236,237,238,243,245,246,249,251,255,260,261,262,264,270,274,277,278,279,280,281,282,284,287,290,296,297,298,300,303,306,309,312,313,314,315,320,326,333,341,342,343,344,347,353,354,358,363,368,370,373,374,375,376,381,384,386,390,392,393,394,398,400,401,402,404,405,406,407,409,410,413,414,415,417,420,424,425,430,432,433,438,440,441,445,452,458,460,461,463,465,468,469,470,471,472,473,474,475,478,479,480,482,483,484,489,494,496,504,509,516,521,522,537,540,542,544,545,546,547],creataion:339,create_:[0,48],create_account:[20,45,48,120,205,210,476,494],create_attribut:468,create_cal:208,create_channel:[19,20,120,205,227,236,237,476],create_char:494,create_charact:[208,402],create_default_channel:458,create_delai:414,create_evscaperoom_object:284,create_exit:[222,326],create_exit_cmdset:402,create_fantasy_word:284,create_forward_many_to_many_manag:[211,238,394,401,410,468,470,471,488],create_game_directori:420,create_grid:159,create_help:393,create_help_entri:[20,31,120,205,476],create_kwarg:407,create_match:214,create_messag:[20,35,120,205,237,476],create_obj:494,create_object:[10,14,15,20,33,37,48,78,85,98,120,125,129,168,170,175,178,205,282,284,296,368,400,402,407,424,474,476],create_prototyp:[406,407],create_room:494,create_script:[20,42,48,94,120,147,160,205,409,413,474,476,494],create_secret_kei:420,create_settings_fil:420,create_superus:420,create_tag:469,create_wild:[115,333],createbucket:75,created_on:258,createobj:277,creater:120,createview:546,creation:[0,8,12,14,16,28,33,37,44,48,67,74,76,98,116,119,125,128,129,131,133,139,140,142,145,152,162,166,170,175,178,181,190,201,205,208,211,222,227,229,236,281,296,309,312,313,314,315,316,326,335,341,344,354,358,375,376,381,394,400,401,402,407,410,415,453,470,476,478,479,480,482,504,505,509,512,536,540,542,547,548],creation_:476,creation_throttle_limit:201,creation_throttle_timeout:201,creativ:[69,142],creator:[0,28,33,74,120,143,170,175,181,229,236,312,402,482],creatur:202,cred:[12,440],credenti:[12,52,53,75,197,199,208,440],credentialinterfac:440,credit:[12,118,125,127,135,197,199,495,496],creset:12,crew:130,criteria:[28,105,117,130,237,260,386,406,469,493],criterion:[12,130,133,134,138,208,287,354,393,400,402,409,412,493,496],critic:[1,8,11,21,42,44,57,60,89,187,195,398,419,420,489],critici:470,cron:187,crontab:187,crop:[30,60,162,341,479,482,483,496],crop_str:482,cross:[113,116,170,297,339,342,376,482],crossbario:448,crossbow:155,crossmaplink:[116,342],crossov:0,crossroad:170,crowd:[140,199],crt:[182,187],crucial:[47,169],crucibl:297,crucible_steel:297,cruciblesteelrecip:297,crud:[521,522],crude:[96,296,297],crumblingwal:375,crumblingwall_cmdset:375,crush:152,crypt:138,cryptocurr:199,cscore:175,csessid:[201,438,448,449,461],csession:[448,449],csrf:201,csrf_token:178,csrfviewmiddlewar:201,css:[0,18,50,51,53,71,73,121,132,151,201,495,525],cssclass:51,ctrl:[0,7,53,125,135,187,190,192,197,203,451],cuddli:[133,136],culpa:29,cumbersom:[11,28,174,390],cumul:452,cup:118,cupidatat:29,cur_valu:350,cure:[112,314,315],cure_condit:314,curi:159,curiou:69,curl:195,curli:[82,248],curly_color_ansi_bright_bg_extra_map:[82,248],curly_color_ansi_bright_bgs_extra_map:[82,248],curly_color_ansi_extra_map:[82,248],curly_color_xterm256_extra_bg:[82,248],curly_color_xterm256_extra_fg:[82,248],curly_color_xterm256_extra_gbg:[82,248],curly_color_xterm256_extra_gfg:[82,248],curr_sess:461,curr_tim:320,currenc:[168,173],current:[0,7,9,10,11,12,13,15,16,19,20,21,23,26,27,28,30,32,37,39,42,43,44,47,51,52,53,55,57,58,60,67,75,77,80,83,90,91,93,94,95,96,98,105,110,112,116,117,122,124,126,128,130,131,132,133,134,136,141,144,147,152,153,154,155,159,162,168,173,174,175,178,187,190,192,196,201,208,210,211,213,214,216,217,219,220,222,227,228,229,231,232,234,236,245,261,264,270,277,279,282,287,290,296,306,312,313,314,315,316,320,326,329,333,335,342,344,350,354,357,358,366,373,375,376,384,386,390,393,400,401,402,407,410,414,415,420,425,430,436,437,440,441,444,452,459,461,463,469,470,478,480,482,483,484,489,490,493,496,504,519,541,542,544,545],current_choic:245,current_cmdset:222,current_coordin:333,current_kei:[405,406],current_tim:451,current_us:178,current_weath:42,current_weight:342,currentroom:174,curriculum:181,curs:[6,141],curtain:31,curv:[121,160],curx:159,cushion:144,custom:[0,1,2,8,13,14,16,17,18,20,21,23,24,25,26,32,36,37,41,46,48,52,55,56,58,61,63,65,67,74,75,76,81,84,91,92,94,96,98,104,110,112,113,115,116,117,120,121,122,125,127,128,130,132,134,138,140,141,142,144,146,147,151,152,153,156,159,160,162,164,168,171,172,174,175,176,177,178,180,181,186,188,192,197,200,201,203,208,209,210,211,213,215,216,217,222,227,228,229,234,236,250,251,252,261,264,277,278,279,280,282,287,290,293,296,300,309,320,333,337,341,342,353,354,358,368,373,375,376,380,381,384,392,393,400,402,404,405,406,407,409,415,420,424,426,429,451,460,468,470,475,478,480,481,482,487,490,491,494,496,503,504,506,511,521,522,527,528,545,548],custom_add:261,custom_cal:[261,264],custom_evennia_launcher_command:420,custom_gametim:[0,86,94,163,205,206,239,240,548],custom_helpstr:279,custom_kei:406,custom_pattern:[123,149,178,179],customis:[205,206,239,318,331],customiz:[18,80,93,104,117,144,245,350,354,368,384],customlog:182,customt:494,cut:[19,27,62,85,121,128,142,159,169,170,175,201,341,407],cute:151,cutoff:496,cvcc:353,cvccv:353,cvccvcv:353,cvcvcc:353,cvcvccc:353,cvcvccvv:353,cvcvcvcvv:353,cvcvvcvvcc:[104,353],cvv:353,cvvc:[104,353],cwho:[102,126,270],cyan:[60,176],cyberpunk:[19,137],cyberspac:181,cycl:[0,15,16,140,153,160,163,177,312],cycle_logfil:0,cyril:17,daemon:[0,7,76,182,187,192,199,203,437,465],daffodil:137,dagger:46,dai:[0,20,69,86,90,94,117,125,139,140,141,160,163,173,176,177,187,192,199,210,251,297,320,484,489,496,497],daili:36,dailylogfil:489,dali:[104,353],dalnet:227,dalton:130,dam:160,damag:[0,16,83,112,138,141,142,146,147,152,154,168,199,297,312,313,314,315,316,374,375],damage_rang:315,damage_taken:160,damage_valu:[312,313,314],damascu:297,danc:116,dandelion:30,dandi:74,danger:[8,15,21,44,94,119,167,201,215],dare:[23,126,499],dark:[15,16,18,21,31,60,110,116,135,138,141,143,146,170,176,181,216,320,358,368,376,410,473,474],darkcmdset:376,darker:[60,176],darkgrai:176,darkroom:376,darkroom_cmdset:376,darkstat:376,dash:[94,105,119,386,390],dashcount:390,dashlin:30,data:[0,2,3,7,8,11,13,15,17,19,20,24,30,31,36,41,42,46,48,49,50,51,53,54,65,67,68,70,73,76,80,84,85,91,93,110,116,117,122,132,133,136,140,143,153,160,161,162,178,179,183,187,191,192,197,200,201,208,209,210,217,222,229,232,260,261,293,296,315,341,342,343,350,354,357,358,380,381,384,400,401,402,404,406,408,413,415,417,418,422,426,427,429,430,431,432,433,438,439,440,441,443,444,445,447,448,449,451,453,458,459,460,461,463,467,468,469,470,471,473,474,475,476,477,479,480,481,482,483,486,489,490,491,492,496,505,506,508,510,512,516,519,522,527,536,540,542,544,545,547],data_default_valu:358,data_in:[62,65,381,429,431,432,438,439,443,448,449,459,460,461],data_out:[62,381,438,440,443,444,449,459,460,461],data_to_port:[417,429],data_to_serv:430,databa:420,databas:[0,2,3,4,5,7,10,12,14,15,17,18,19,20,21,32,33,34,35,36,37,42,44,45,46,47,48,49,50,52,53,55,57,61,73,74,75,76,90,94,96,115,116,117,119,121,122,123,125,126,127,129,131,132,134,135,137,140,141,142,144,147,151,152,154,155,157,160,161,162,169,170,175,178,179,183,190,192,194,200,201,203,208,210,211,215,216,222,229,232,236,237,238,260,261,315,320,343,344,354,376,391,392,393,394,397,400,401,402,406,408,409,410,411,414,415,420,424,426,437,451,458,467,468,469,470,471,474,476,477,485,487,492,493,496,502,506,509,510,512,522,548],dataclass:483,datareceiv:[422,429,443,451],dataset:406,datastor:67,date:[11,12,14,31,55,64,67,75,159,163,176,178,183,187,191,200,201,216,220,232,380,484,489,497],date_appli:178,date_cr:[48,208,211,238,394,410,468,470],date_join:[211,504],date_s:35,datetim:[48,163,178,201,251,321,468,484,489,490,496,497],datetime_format:[201,496],datetimefield:[67,178,211,238,394,401,410,468,470,496,504],davewiththenicehat:[0,544],david:[75,181],dawn:128,day_rot:489,daylight:141,db3:[7,11,12,132,170,183,190,201],db3_backup:7,db_:[34,48,67,130,354,400,402,411,425,493],db_account:[281,290,400,401,410,504,509],db_account__db_kei:509,db_account__id:516,db_account__usernam:516,db_account_id:[401,410],db_account_subscript:[238,506],db_attribut:[45,84,211,238,293,401,410,470,504,506,509],db_attribute_categori:358,db_attribute_kei:358,db_attributes__db_kei:130,db_attributes__db_value__gt:130,db_attrtyp:[468,519],db_attryp:36,db_categori:[67,130,468,471,512,519],db_category__iequ:67,db_cmdset_storag:[211,290,401,504,509],db_data:[471,512,519],db_date_cr:[67,211,238,281,290,394,401,410,468,470,504,506,508,509,510,519],db_desc:[281,410,516],db_destin:[130,290,401,504,509],db_destination__isnul:173,db_destination_id:401,db_entrytext:[394,508,519],db_header:[238,506],db_help_categori:[394,508,519],db_help_dict:229,db_help_top:544,db_hide_from_account:[238,506],db_hide_from_object:[238,506],db_hide_from_receiv:238,db_hide_from_send:238,db_home:[290,401,504,509,519],db_home__db_kei:516,db_home__id:516,db_home_id:401,db_index:67,db_interv:[281,410,510,516,519],db_is_act:[281,410,516,519],db_is_bot:[211,504,516],db_is_connect:[211,504,516],db_kei:[34,48,49,67,116,129,130,133,164,211,238,260,281,290,394,401,410,411,427,468,470,471,504,506,508,509,510,511,512,516,519,536],db_key__contain:48,db_key__exact:130,db_key__icontain:[67,130],db_key__iexact:130,db_key__in:130,db_key__startswith:48,db_locat:[34,49,130,133,290,401,504,509,519],db_location__db_kei:[509,516],db_location__db_tags__db_key__iexact:130,db_location__id:516,db_location__isnul:173,db_location_id:401,db_lock_storag:[211,238,281,290,394,401,410,468,470,504,506,508,509,510],db_messag:[238,506],db_model:[468,471,512],db_obj:[281,410,477,510],db_obj__db_kei:516,db_obj__id:516,db_obj_id:410,db_object_subscript:[238,506],db_permiss:67,db_persist:[281,410,510,516,519],db_properti:425,db_protototyp:406,db_receiver_extern:[0,238,506],db_receivers_account:[238,506],db_receivers_accounts__db_kei:506,db_receivers_object:[238,506],db_receivers_objects__db_kei:506,db_receivers_script:[238,506],db_receivers_scripts__db_kei:506,db_repeat:[281,410,510,519],db_sender_account:[238,506],db_sender_accounts__db_kei:506,db_sender_extern:[238,506],db_sender_object:[238,506],db_sender_objects__db_kei:506,db_sender_script:[238,506],db_sender_scripts__db_kei:506,db_sessid:[290,400,401,504,509],db_start_delai:[281,410,510,519],db_strvalu:468,db_tag:[130,211,238,394,401,410,470,471,504,506,508,509],db_tags__db_categori:[130,157,516],db_tags__db_kei:[130,157,506,516],db_tags__db_key__iexact:130,db_tags__db_key__in:157,db_tagtyp:[471,512,516,519],db_text:67,db_typeclass_path:[67,173,211,238,281,290,401,410,470,496,504,506,509,510,516,519],db_valu:[34,36,130,427,468,511,519,522],dbef:[222,409,493],dbentri:229,dbfield:83,dbhandler:536,dbholder:468,dbid:[48,209,227,470],dbid_to_obj:496,dbmodel:469,dbobj:[0,14,468],dbobject:[14,469,470],dbprototyp:[222,406],dbref:[0,11,15,30,33,35,41,48,55,63,91,94,98,116,125,128,133,138,147,162,170,174,201,208,210,211,220,222,227,237,238,309,326,333,335,344,354,376,384,397,400,401,402,407,409,410,412,469,470,476,483,493,496],dbref_search:[210,400,409,469],dbref_to_obj:496,dbrefmax:222,dbrefmin:222,dbsafe_decod:492,dbsafe_encod:492,dbserial:[0,8,14,205,206,411,472],dbshell:[11,67,183,203],dbstore:357,dbunseri:[14,477],ddesc:160,deactiv:[90,122,166,171,195,196,201,227,320,374,480],dead:[142,358,374,375,458,461,487],deadli:138,deal:[17,19,24,28,31,44,46,53,54,55,70,76,77,80,91,122,141,146,147,164,169,176,179,199,208,245,251,287,312,313,314,315,316,341,342,384,401,402,459,470,473,490,547],dealt:[230,314,315],dealth:314,death:[28,125,139,140,146,173],death_msg:374,death_pac:374,debat:169,debian:[12,182,183,187,193],debuff:[110,358],debug:[0,2,9,16,20,24,28,32,42,53,73,76,78,94,117,134,135,169,189,201,202,213,217,221,232,277,278,373,384,404,420,425,431,432,443,465,474,480,489,496,548],debugg:[0,2,6,17,203,205],dec:[2,64,75],decemb:197,decend:213,decent:[7,353],decic:[104,353],decid:[16,17,23,28,30,44,46,67,68,85,94,95,112,117,123,125,139,140,146,147,153,158,162,164,168,176,197,199,213,287,312,398,481],decis:[47,89,142,146,519],declar:[0,60,83,492],declared_field:[504,505,506,508,509,510,512,536],declared_filt:516,declin:[28,77,287],decod:[17,444,473,496,544],decode_gmcp:444,decode_msdp:444,decoded_text:496,decompos:178,decompress:[429,492],deconstruct:[138,233,252,283,298,317,339,355,357,364,446,520],decor:[0,12,23,24,45,61,85,94,95,96,116,155,201,211,284,401,402,409,410,417,429,430,470,476,480,481,494,496],decoupl:[0,124,406],decreas:[141,315,316,376,478],decrease_ind:478,dedent:[0,27,31,496],dedic:[39,94,135,136,146,187,197],deduc:478,deduce_ind:478,deduct:[146,168,312,313,314],deem:[12,72,118,161,239,540,542,547],deep:[31,131,181,548],deeper:[24,75,111,138,165,390],deepest:222,deepli:[14,94,117],deepsiz:496,def:[6,7,10,14,20,21,23,27,28,30,32,33,34,37,39,41,42,45,48,54,62,77,80,83,84,85,87,90,92,94,98,102,104,107,108,110,114,115,119,123,126,133,134,135,136,137,144,146,147,149,152,153,154,155,156,157,158,159,160,161,162,163,164,166,167,168,169,170,171,172,173,174,175,177,178,179,181,188,245,270,274,279,293,320,326,329,333,347,354,358,405,449,462,478,480,481,483,494,496],def_down_mod:314,defafultobject:133,defalt_cmdset:188,defauklt:0,default_access:[14,400,409,468,476],default_authentication_class:201,default_auto_field:201,default_categori:393,default_channel:[0,201],default_charact:[92,300],default_client_width:30,default_cmd:[8,19,77,80,81,87,90,92,94,97,102,104,107,108,116,120,126,134,147,152,153,154,155,156,158,161,162,163,166,205,245,254,270,290,303,320,326,329,347,354],default_cmdset:[25,44,77,80,81,87,89,90,91,92,94,98,101,102,104,107,108,111,132,133,134,144,153,156,158,161,162,163,166,175,201,216,245,270,290,297,306,312,313,314,315,316,320,326,329,347,354,384,390],default_command:[132,153],default_confirm:[222,309],default_create_permiss:[49,201],default_destroy_lock:201,default_error_messag:492,default_filter_backend:201,default_help_categori:[31,201,229,392,544],default_hom:[41,201],default_in:51,default_kei:[110,358],default_kwarg:[30,483],default_list_permiss:[49,201],default_out:51,default_pagination_class:201,default_pass:[210,476],default_permission_class:201,default_screen_width:23,default_set:[10,132,149],default_sit:527,default_transaction_isol:183,default_unload:51,default_update_lock:201,default_view_lock:201,default_weight:[116,342],default_xyz_path_interrupt_msg:335,defaultaccount:[0,13,48,120,122,133,134,201,205,208,209,223,402,494,519,536,540],defaultchannel:[0,19,48,120,133,201,205,227,236,541],defaultcharact:[14,37,48,67,80,83,92,94,110,120,133,134,144,146,153,161,162,163,166,175,201,205,208,224,245,290,300,312,313,314,315,316,354,357,358,402,468,471,494,536,542],defaultd:0,defaultdict:411,defaultexit:[37,48,94,116,120,133,168,201,205,326,329,333,344,375,376,402,494],defaultguest:[120,205,208],defaultmod:489,defaultobject:[0,1,2,14,30,37,46,48,67,94,110,119,120,122,129,131,133,136,137,144,167,168,170,171,174,201,205,208,279,290,313,316,354,358,366,368,370,375,402,470,494,519,536,547],defaultpath:496,defaultplay:201,defaultroom:[37,48,94,116,120,133,157,159,160,168,177,201,205,280,320,333,344,354,376,402,494],defaultrout:[518,521],defaultscript:[0,42,48,120,133,147,160,173,174,201,205,209,251,261,281,287,309,312,333,343,353,363,386,406,412,413,453,484,494],defaultsess:[134,225],defaulttyp:465,defaultunloggedin:[134,226],defeat:[89,125,138,139,140,146,147,312,374],defeat_msg:374,defeat_msg_room:374,defend:[28,138,147,312,313,314,316,375,402],defens:[0,112,141,147,312,313,314,316],defense_valu:[312,313,314,316],defer:[0,20,23,54,155,178,211,213,232,238,320,329,394,401,402,410,414,417,427,429,430,461,465,468,470,471,488,489,504],deferredlist:465,defin:[0,4,6,7,8,9,10,13,14,15,16,20,24,25,27,31,32,37,39,41,47,48,49,51,53,54,55,59,60,61,62,65,68,70,72,73,75,76,80,81,82,83,85,91,94,95,96,98,104,110,111,120,121,122,123,126,128,130,132,134,135,136,140,142,144,146,151,152,153,156,158,159,160,161,162,163,164,166,168,169,170,171,174,175,176,178,180,200,201,205,207,211,213,215,216,217,219,222,228,229,230,232,233,234,236,237,238,243,245,248,251,254,260,261,264,277,283,290,296,309,314,315,320,341,347,353,354,358,363,370,375,376,384,386,390,391,392,393,394,396,397,398,399,400,401,402,406,407,409,410,413,415,416,417,420,427,430,451,452,459,460,461,464,467,468,469,470,471,473,474,475,478,480,483,484,488,491,493,496,500,506,508,509,519,522,529,536,544,545],define_charact:28,definin:135,definit:[0,6,13,16,23,24,31,36,37,39,41,47,54,55,59,68,84,94,96,116,121,132,144,157,164,167,201,215,217,222,230,237,258,270,293,309,375,396,398,401,406,407,412,474,476,480,483,492],deflist:465,degre:[31,125],deindent:496,del:[14,26,39,55,94,106,110,138,144,147,155,162,220,222,306,309,320,357,358,470],del_callback:[259,261],del_detail:320,del_pid:420,delaccount:0,delai:[0,23,26,61,84,91,96,106,108,117,154,173,201,232,251,261,293,329,368,375,384,414,415,432,438,461,475,496],delaliaschan:270,delay_cmd_loginstart:201,delayed_import:461,delchanalia:270,delcom:[102,126,162,270],deleg:[211,238,394,401,410,468,470,471,488],delet:[0,10,11,12,13,14,15,19,21,26,27,28,30,33,36,37,42,44,45,46,50,55,63,78,80,85,94,110,116,123,132,133,134,138,144,147,170,183,190,192,195,196,198,201,208,216,219,220,221,222,227,228,229,232,236,238,258,259,261,262,270,280,284,293,296,303,306,309,320,326,343,357,358,375,376,394,398,402,406,409,411,412,413,414,415,426,438,459,468,470,473,474,480,487,504,505,512,517,521,537,542,546,547],delete_attribut:468,delete_default:[21,216],delete_dupl:284,delete_prototyp:406,delete_script:409,deleteobject:75,deletet:320,deleteview:546,deliber:[6,72,141,496],delic:[81,290],delimit:[64,169,230,474],deliv:[197,303,354],delpart:309,delresult:309,deltatim:496,delux:197,demand:[42,47,90,140,142,146,156,162,171,197,201,208,236,320,358,402,462,475],demo:[53,80,89,117,121,125,127,138,139,145,148,150,373,480],democommandsetcomm:373,democommandsethelp:373,democommandsetroom:373,demon:41,demonin:496,demonstr:[80,91,96,123,144,176,178,245,314,380,384],demowiki:123,deni:[19,182,199,260,264],denot:[10,160,179,341,474],denounc:479,dep:489,depart:[94,159],depend:[0,2,7,8,9,16,17,19,20,21,23,28,30,32,35,42,44,47,48,51,54,55,56,60,61,62,64,65,68,80,85,89,90,94,95,96,104,106,110,115,116,118,121,122,123,132,133,134,138,140,142,144,146,147,159,161,162,164,168,170,172,175,178,179,183,189,191,192,193,197,199,200,201,207,213,215,217,219,232,245,259,320,333,341,342,344,347,353,358,368,392,398,402,406,415,420,440,443,449,451,461,470,471,478,480,481,483,496,500,548],depict:280,deplet:[110,314,358],deploi:[3,5,95,119,194,197,199],deploy:[4,9,76,119,192,197],deprec:[0,20,28,205,206,407,416,473,480,489,496],deprecationwarn:419,depth:[4,18,31,56,116,138,229,390,395,407],dequ:[14,463],deriv:[10,48,69,160,183,187,192,193,274,473,497],desc1:28,desc2:28,desc3:28,desc:[0,16,19,26,32,33,34,37,41,42,50,80,85,90,94,98,101,102,115,116,117,126,128,130,133,141,147,152,161,162,164,167,168,170,173,179,201,216,219,222,227,229,233,237,239,245,270,279,290,296,297,306,309,314,315,320,326,333,345,356,368,390,402,409,410,418,474,476,478,479,480,536,542,547],desc_add_lamp_broken:368,desc_al:374,desc_closed_lid:368,desc_dead:374,desc_open_lid:368,descend:[130,536],describ:[5,12,14,15,16,19,21,23,28,30,33,39,40,41,48,50,51,53,60,64,67,68,70,73,80,89,94,95,110,116,118,119,121,122,124,126,132,133,135,136,141,144,147,152,156,162,163,164,168,170,178,181,183,188,191,193,195,197,201,203,215,222,226,228,238,251,270,278,290,296,297,315,320,341,342,354,358,368,386,402,407,413,417,438,440,443,453,480,495,496,509],descripion:374,descript:[1,10,16,17,19,28,32,41,46,50,53,58,72,73,77,80,81,94,95,96,98,100,101,104,110,111,115,116,117,119,121,125,128,130,131,139,140,141,152,157,159,161,162,168,170,176,178,179,185,192,197,201,219,222,227,228,236,237,245,270,274,278,287,290,306,320,321,326,333,341,344,354,357,358,366,368,373,374,375,376,386,390,402,409,410,474,476,480,490,491,504,509,518,522],description_str:170,descriptor:[468,471],descvalidateerror:306,deseri:[0,8,14,490,519],deserunt:29,design:[1,16,23,37,41,53,56,69,72,80,85,113,117,121,130,132,138,140,141,142,143,144,157,161,169,170,171,172,178,181,183,216,222,245,260,354,375,380,402,474,490,496],desir:[20,46,47,51,60,69,82,84,116,123,154,155,159,161,162,169,174,175,178,201,222,236,237,248,284,293,353,398,420,465,468,476,482,497],desired_effect:297,desired_perm:398,desk:144,desktop:[17,56],despit:[14,15,44,122,161,166,195,376],desrib:201,dest:[274,402],destin:[0,23,32,37,41,50,80,94,96,98,108,116,130,137,144,153,159,168,169,170,174,222,312,326,329,335,336,341,342,344,375,376,380,400,401,402,407,476,522,542],destinations_set:401,destroi:[19,26,37,85,96,102,103,106,126,128,147,199,208,209,222,227,270,309,314,402],destroy:[107,117,326],destroy_channel:227,destroy_compon:279,destroy_lock:517,destruct:[21,215],detach:9,detail:[0,1,7,11,12,13,14,17,19,23,28,31,33,37,41,42,44,48,50,55,57,60,68,72,73,80,85,94,95,104,117,118,119,122,124,128,132,133,134,135,138,140,141,143,147,151,156,162,169,170,172,179,181,183,193,197,201,205,206,216,217,222,236,239,245,279,296,309,313,318,320,321,331,341,354,358,376,386,392,394,395,407,414,422,423,459,461,470,473,478,483,496,499,504,509,521,522,537,544,546,547],detail_color:222,detail_desc:321,detailkei:[320,376],detailview:[544,546],detect:[3,19,21,23,37,44,68,119,125,139,140,144,166,172,199,201,214,217,432,483,521],determ:469,determin:[0,7,13,15,17,19,20,21,23,27,28,29,31,33,36,41,42,51,65,85,94,98,104,116,123,128,134,144,146,147,151,155,157,159,167,168,175,183,195,201,203,208,215,216,217,219,227,229,230,236,287,312,313,314,315,316,329,342,353,354,375,390,392,394,398,402,406,444,468,469,470,473,478,481,483,489,494,496,500,504,506,509,516,517,525],determinist:342,detour:[65,132,136,152,461],dev:[0,31,118,121,122,135,143,161,183,187,188,193,195,197,198,201,548],devel:[0,132],develop:[0,1,3,4,6,7,8,9,10,12,14,17,19,20,23,30,31,39,41,49,51,53,56,57,58,64,67,68,69,73,78,94,112,117,118,119,121,122,124,128,129,131,132,133,134,135,136,140,142,143,149,151,153,160,162,169,170,176,178,181,183,185,188,189,190,193,195,196,197,201,202,217,220,221,227,228,229,232,236,258,259,264,277,380,392,394,402,407,466,470,471,474,480,548],deviat:143,devoid:473,dex:[14,28,133,135,141,162,479],dext:135,dexter:[141,312],diagnos:[8,156],diagon:[116,339],diagram:48,dialog:51,dialogu:[94,96,141],dice:[28,85,125,136,139,142,146,147,169,205,206,239,345,548],dicecmdset:347,dicenum:347,dicetyp:347,dict:[0,10,14,15,21,28,30,31,41,42,45,49,53,68,76,85,86,95,96,98,104,110,116,120,126,153,201,208,209,215,217,222,229,236,251,258,261,264,281,290,296,314,316,320,341,342,343,353,354,358,366,376,380,381,384,390,392,395,401,402,404,405,406,407,413,415,417,418,420,425,429,430,431,433,438,440,443,448,449,460,461,463,469,474,475,477,479,480,481,483,491,494,496,536,541,544,545,547],dict_of_kwarg_convert:30,dictat:[21,163,171,201],dictionari:[8,14,15,21,33,41,54,76,86,90,91,94,96,98,104,117,121,146,147,153,159,160,163,164,179,220,222,251,258,261,264,290,314,315,320,333,353,354,376,380,381,382,384,390,398,407,414,425,438,447,459,460,461,463,469,473,475,479,480,487,490,491,492,496,536,545,547],dicument:118,did:[12,13,64,80,122,126,128,133,134,135,144,152,155,161,169,170,175,200,201,208,287,402,414,471,492,496,501],did_declin:287,didn:[6,12,28,33,74,80,116,119,126,128,129,133,134,135,136,138,151,158,159,162,169,174,176,178,189,192,196,200,343],die:[9,138,142,146,169,171,347,353,461],dies:[142,374],diff:[12,191,347,407],differ:[0,6,7,9,10,13,14,15,16,17,20,21,23,24,27,28,30,31,33,34,36,41,42,44,45,46,47,51,56,57,60,61,62,63,65,68,70,71,72,74,78,80,84,85,89,94,95,96,97,104,110,112,115,116,117,118,119,121,122,124,125,126,128,129,130,132,133,134,135,136,139,140,143,144,146,147,151,152,153,157,159,161,162,163,164,165,167,169,170,172,173,174,176,178,181,182,184,185,192,196,199,201,203,205,208,213,215,216,219,222,229,231,232,234,236,245,251,255,261,262,274,278,279,282,293,296,303,312,314,315,316,329,333,339,341,342,344,347,354,358,386,390,400,402,404,407,409,410,415,418,422,444,449,451,468,470,474,476,480,483,489,492,496,500,501,504,505,512,516,521,522,545,547,548],differenti:[104,111,112,117,132,133,141,142,160,161,162,201,290,354,390,402,483,496,500],differnt:279,difficuli:14,difficult:[7,123,142,157,178,199,315,316],difficulti:[85,178],dig:[7,21,23,26,37,41,62,74,78,96,107,116,126,128,132,134,138,161,162,174,175,222,277,326,452],digit:[30,55,60,105,197,386,464,473,483,489],digitalocean:[187,197],dijkstra:[116,341,342],diku:[94,117,121,122,165,548],dikumud:72,dime:69,dimens:[121,159],dimension:[116,162],dimenst:136,diminish:60,dimli:170,dinner:[95,142],dip:135,dir:[0,2,4,5,11,12,37,42,53,64,76,89,119,122,124,127,133,135,136,152,162,179,181,183,185,187,191,192,193,196,197,201,489,496,525],direcetli:483,direcotri:[202,548],direct:[11,21,28,32,41,51,54,55,58,68,80,94,96,98,116,118,128,147,149,158,159,162,164,170,172,174,181,182,192,197,222,260,279,333,335,339,341,342,343,344,381,398,400,413,420,480,482,483,489,493,494,496,548],direction_alias:[116,342],direction_nam:342,direction_spawn_default:342,directli:[0,6,8,11,12,13,14,15,16,20,23,27,28,31,33,35,37,41,42,48,50,51,52,53,60,62,68,75,77,83,85,94,95,104,110,115,116,117,118,119,121,122,126,128,129,130,131,132,133,135,136,137,140,147,152,155,156,158,160,162,163,170,172,175,182,183,189,192,197,200,203,210,217,233,237,245,264,274,277,282,284,287,297,315,316,342,343,344,347,354,357,358,368,376,390,393,398,400,401,402,406,409,410,426,431,440,443,448,451,453,459,468,470,474,476,480,481,483,494,496],director:[61,104,354,402],directori:[3,4,5,7,9,10,11,12,15,20,48,51,53,73,75,94,117,118,122,123,124,131,132,151,153,162,163,164,175,178,179,182,183,191,192,193,195,196,201,202,222,380,420,440,441,465,474,489,496],directorylist:465,dirlang:201,dirnam:[201,420],dirti:121,dis:201,disabl:[0,7,9,10,27,33,51,60,71,76,91,96,110,111,123,144,153,166,184,195,201,202,217,233,274,354,357,358,368,384,390,398,406,443,463,481,483,487,497],disableloc:443,disableremot:443,disadvantag:[104,142,147,162,197,316],disambigu:[217,402,470],disappear:199,discard:473,disconcert:143,disconnect:[0,8,11,13,14,19,40,44,45,46,51,55,62,142,147,161,175,190,201,203,208,219,222,227,230,232,236,402,430,431,432,438,439,440,443,448,449,452,458,459,460,461],disconnect_al:438,disconnect_all_sess:461,disconnect_duplicate_sess:461,disconnect_session_from_account:208,discontinu:184,discord:[118,143,181],discordia:69,discourag:[122,142,191],discours:142,discov:[138,142,169,468],discoveri:381,discret:[35,132,522],discrimin:199,discuss:[1,19,23,53,116,117,118,121,123,137,142,147,153,164,181,183,193,201],discworld:68,disengag:[147,208,312,313,314,315,316],disguis:[58,104,117],disk:[12,14,20,67,69,76,192,203,341,353,380,392,404],dislik:161,dispel:176,displai:[0,6,7,18,21,23,24,27,28,31,33,37,42,49,51,52,53,59,60,65,68,73,80,90,93,94,95,96,116,117,119,133,140,144,147,151,153,156,162,164,166,167,168,169,170,175,178,179,199,200,201,208,217,219,222,227,229,232,234,245,254,255,259,261,274,278,282,284,287,290,303,320,333,339,341,342,344,350,354,358,368,373,375,376,384,390,392,402,406,407,418,420,437,455,458,463,470,471,478,479,480,481,482,489,490,491,492,494,496,497,506,508,510,511,512,519,536,541,545,546,547],display:415,display_all_channel:227,display_buff:478,display_choic:245,display_formdata:384,display_help:478,display_helptext:[404,480],display_len:496,display_map:339,display_met:[93,350],display_nam:483,display_nodetext:480,display_subbed_channel:227,display_symbol:[116,341,342,344],display_symbol_alias:342,display_titl:245,dispos:[103,170,309],disput:147,disregard:23,dissect:126,dist:[116,195,339,341],distanc:[10,20,48,95,104,112,116,117,122,129,130,157,159,315,316,339,341,353,402,496,514],distance_dec:316,distance_inc:316,distance_to_room:157,distant:[159,320,376],distinct:[44,74,121,122,130,316,516],distinguish:[80,217,316,390],distribut:[6,10,11,17,19,21,75,122,124,131,180,182,183,195,201,236,237,238,354,473,476,496,499],distribute_messag:236,distro:[182,183,187,189,193,201],disturb:[20,74],distutil:195,distutilserror:195,ditto:193,div:[18,30,41,51,56,119,149],dive:[80,127,136,137,548],diverg:65,divid:[0,15,30,78,122,164,251,376,496],dividend:251,divis:357,divisiblebi:164,divisor:251,divivid:141,django:[1,4,10,11,13,14,17,24,42,45,46,48,49,50,51,52,53,61,64,67,70,75,98,110,121,123,124,125,127,132,133,137,144,146,149,151,153,157,164,173,179,181,183,195,199,200,201,202,208,210,211,217,234,236,238,243,255,339,344,358,392,394,400,401,406,409,410,419,420,426,427,440,446,448,449,456,462,463,464,465,468,470,471,474,477,481,486,487,488,492,494,496,501,502,503,504,505,506,507,508,509,510,511,512,516,517,519,521,522,527,528,531,536,540,541,542,544,545,546,547],django_admin:537,django_extens:201,django_filt:[201,516,522],django_nyt:123,djangofilterbackend:[201,522],djangonytconfig:123,djangoproject:[64,133,183,201,536],djangotempl:201,djangowebroot:465,dmg:146,dnf:[182,187,195],do_attack:374,do_batch_delet:468,do_batch_finish:468,do_batch_update_attribut:468,do_craft:[85,296],do_create_attribut:468,do_delete_attribut:468,do_flush:[470,487],do_gmcp:444,do_hunt:374,do_mccp:433,do_msdp:444,do_mssp:434,do_mxp:435,do_naw:436,do_nested_lookup:222,do_not_exce:153,do_noth:373,do_patrol:374,do_pickl:477,do_power_attack:[84,293],do_search:229,do_sit:144,do_stand:144,do_task:[232,414,496],do_task_act:232,do_unpickl:477,do_update_attribut:468,do_xterm256:473,doabl:16,doc:[0,2,5,10,18,19,23,24,28,31,37,41,48,50,53,56,64,67,72,75,76,88,95,96,99,116,118,120,122,130,131,132,133,136,141,143,144,151,153,165,181,183,196,201,203,205,222,232,274,335,386,402,431,496,536,548],docker:[0,181,190,197,201,202,548],dockerfil:192,dockerhub:192,docstr:[31,32,126,133,134,144,153,217,222,233,245,259,274,277,297,341,353,354,358,368,376,390,395,451,480,548],document:[0,1,2,7,8,9,10,12,18,24,26,29,31,42,48,49,50,52,53,56,60,61,64,67,73,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,121,122,124,125,131,132,133,135,136,138,149,151,153,155,161,162,165,170,174,175,178,181,183,184,190,197,199,200,201,202,216,230,245,274,293,359,386,395,468,471,479,487,516,541,544],dodg:313,dodoo:75,doe:[0,1,10,13,14,19,21,23,28,30,31,33,35,37,39,41,42,46,48,51,52,53,58,59,60,62,68,70,72,74,75,82,83,85,87,88,89,98,101,111,115,116,117,118,119,121,122,123,124,125,126,128,131,132,133,135,136,138,139,140,141,144,146,147,151,152,153,155,157,159,160,161,162,164,168,169,170,171,172,174,175,176,177,178,180,183,184,185,187,193,195,200,201,203,208,209,219,230,232,234,248,255,274,277,284,290,293,296,306,309,312,315,316,320,333,341,342,358,375,376,390,402,406,407,411,413,414,419,420,424,425,426,429,432,440,441,447,468,470,471,475,480,483,489,492,494,496,528,536,544,547],doesn:[1,4,11,14,15,17,23,28,30,35,37,48,51,52,53,67,68,80,85,94,95,96,116,118,123,124,126,133,135,136,140,142,144,146,151,155,157,159,161,164,169,170,174,175,176,178,180,188,189,190,191,193,195,197,199,201,203,216,227,236,238,260,261,293,296,297,314,320,341,342,398,402,420,433,440,444,468,471,473,480,491,496,504],doesnotexist:[208,209,211,236,238,251,261,279,280,281,287,290,300,309,312,313,314,315,316,320,326,329,333,343,344,353,354,363,366,368,370,374,375,376,386,394,400,401,402,406,410,413,427,453,468,471,476,484,488],doff:313,dog:20,doing:[4,7,8,10,13,14,20,21,23,26,28,37,44,47,48,51,53,54,58,60,85,94,95,111,116,118,119,122,123,125,126,130,133,135,136,139,141,142,145,155,157,159,161,162,164,176,178,179,181,195,197,201,203,208,219,236,260,279,284,287,290,296,312,313,314,315,316,333,354,366,374,375,390,397,402,415,451,480,487,492,501,527],doll:[85,296],dolor:29,dolphin:126,dom:51,domain:[53,121,182,187,197,199,201,210,476],domexcept:197,domin:142,dominion:124,dompc:124,don:[0,1,6,7,8,9,10,11,12,14,19,20,21,23,27,28,30,31,33,39,42,44,48,53,54,60,64,65,67,68,73,74,75,78,80,85,94,95,96,104,110,112,113,115,116,117,118,119,122,123,124,125,126,128,130,132,133,134,135,136,138,140,141,142,143,146,147,149,151,152,153,155,156,157,158,162,163,164,166,168,169,170,175,176,177,178,179,183,185,187,189,190,191,194,196,197,199,200,201,208,209,215,216,222,227,228,229,230,231,234,236,245,260,264,270,274,279,280,293,297,313,314,315,333,335,341,342,347,353,354,357,358,368,376,398,401,402,406,407,415,425,432,437,438,443,445,452,459,466,470,473,474,480,487,489,492,496,505,517,536,545,548],donald:7,donat:[197,548],done:[0,1,4,7,10,11,12,14,21,23,28,30,31,33,36,45,47,50,51,52,53,54,64,69,80,94,104,106,115,116,118,119,121,122,123,124,125,127,128,132,133,135,136,142,144,146,147,151,152,153,155,156,157,158,159,160,161,162,163,164,167,168,169,171,172,173,174,175,176,178,183,187,192,197,201,203,208,217,219,227,238,254,287,316,333,341,343,347,353,398,401,402,413,414,415,420,424,433,437,439,441,445,449,455,458,459,461,466,468,473,474,481,483,487,494,496,501,545],donoth:413,dont:442,doom:[116,407],door:[20,23,31,33,37,80,94,96,107,116,117,128,137,140,159,168,199,222,284,325,326,342],doorwai:[107,326],dot:[8,53,80,216,222,474,496],dotal:[473,495],dotpath:496,doubl:[8,30,80,119,135,161,178,215,234,496],doublet:[215,216],doubt:[80,116,274],down:[3,7,8,9,14,21,23,27,28,51,55,67,69,79,80,85,94,96,111,112,115,119,121,123,125,127,131,135,138,139,140,142,144,145,146,148,150,151,152,155,157,159,161,162,166,168,169,170,175,192,195,197,199,200,202,208,222,227,232,261,279,293,313,314,333,339,341,342,375,380,390,395,397,402,407,413,415,420,422,429,430,437,438,458,459,461,473,481,482,496],download:[1,5,11,12,122,124,131,181,183,189,190,191,192,193,197],downmaplink:[116,342],downtim:[155,199,484],downward:219,dozen:[69,121,153],drag:[0,51],dragon:[126,129,133,134,136,142,160,201],drain:[110,358],drama:31,dramat:[0,130,140,144,201,406,407],dramati:31,drape:[81,290],draw:[16,75,98,116,117,119,146,157,159,482],draw_room_on_map:159,drawback:[14,16,28,67,110,129,142,144,146,154,155,162,183,201,358,474],drawn:[159,162,170],drawtext:146,dread:98,dream:[1,72,121,140,143],dress:[81,290],drf:[516,519],drift:142,drink:[141,279,468,470],drinkabl:279,drive:[12,30,57,75,122,124,131,136,140,142,143,152,174,178,192,193,195],driven:[109,117,141,142,143,153,175,370,404],driver:183,drizzl:[42,177],drop:[0,11,16,23,26,33,35,36,37,51,62,67,68,75,78,94,100,103,106,109,118,121,124,126,128,129,132,133,134,135,142,144,152,153,161,162,164,168,171,172,174,183,197,201,222,228,234,290,309,313,316,368,370,402,429,470,474,496],drop_whitespac:482,dropbox:75,dropdown:[0,9],droplet:187,dropper:[313,316,402],drum:197,dry:187,dtobj:496,duck:[20,135],duckclient:184,due:[7,21,23,45,48,55,62,74,80,122,135,155,162,163,169,176,193,195,197,200,201,216,232,401,402,422,458,461,473,489,505],dufresn:75,duh:69,dull:[1,46,94,128,170],dum:395,dumb:[128,461,473],dummi:[0,7,12,23,33,85,124,135,142,185,273,296,354,398,420,425,438,451,452,459],dummycharact:357,dummycli:451,dummyfactori:451,dummyrunn:[0,2,201,205,206,416,420,438,450,452,454],dummyrunner_act:451,dummyrunner_actions_modul:451,dummyrunner_echo_respons:451,dummyrunner_set:[7,201,205,206,416,420,450],dummyrunner_settings_modul:[7,201],dummyrunnercmdset:451,dummysess:461,dump:[28,380,429],dungeon:[46,116,121,132,137],dungeonmap:116,dupic:21,duplic:[0,21,215,222,229,415,470,489],durat:[54,154,165,177,232,293,314,490,497,548],dure:[8,14,21,33,44,45,51,62,63,73,74,90,94,98,113,116,119,124,136,140,142,147,151,155,175,177,181,192,195,201,208,215,227,233,236,274,277,296,309,320,341,342,374,376,398,400,414,429,439,474,476,480,489,509,536],duti:122,dwarf:170,dwarv:142,dying:[142,312],dynam:[0,10,13,24,30,42,47,51,52,53,58,67,94,110,111,116,117,119,130,132,149,165,167,170,178,197,201,208,211,217,229,232,233,238,254,312,339,342,344,354,358,384,390,393,394,401,402,406,410,415,468,470,471,476,478,480,488,490,496,504,509,525,547,548],dyndns_system:197,each:[3,4,6,7,8,10,13,14,15,19,20,21,23,24,28,30,31,33,37,41,44,46,47,48,50,51,53,54,57,60,62,65,67,69,74,77,80,81,82,83,85,89,90,91,94,96,98,103,104,110,112,115,116,117,119,121,122,123,125,126,127,130,131,133,134,135,136,139,140,146,147,151,155,157,158,159,160,161,162,163,164,167,168,170,174,175,176,177,178,192,200,201,208,214,215,216,220,222,227,229,231,236,248,279,284,287,290,293,296,309,312,314,315,316,320,333,339,341,342,343,344,353,354,358,364,368,384,390,392,394,395,398,401,402,405,406,407,412,415,422,425,438,440,443,447,452,459,460,461,468,470,471,473,474,476,478,479,480,481,482,483,487,494,496,519,522,525],eagl:144,eaoiui:[104,353],earler:128,earli:[0,3,143,312,313,314,315,316,422],earlier:[0,4,9,15,19,21,28,31,32,110,122,124,126,134,135,136,140,149,162,163,168,174,175,179,185,201,342,358,392,425],earn:143,earnest:[137,142],earth:[167,199],eas:[21,23,67,133,157,176,192,197],easi:[0,1,9,11,15,18,23,28,31,37,42,48,53,54,58,68,69,70,74,81,89,95,96,110,116,117,119,121,126,134,135,136,140,142,143,144,146,147,155,157,160,163,164,166,167,168,170,172,175,176,178,179,181,183,187,189,192,197,216,220,282,290,296,358,384,390,480,487,548],easier:[0,14,28,31,41,42,49,50,53,54,55,67,80,89,94,104,111,116,118,121,123,125,126,130,133,134,135,136,138,140,142,143,144,146,151,153,157,158,160,161,162,163,164,169,176,193,197,222,297,312,313,314,316,335,344,353,375,390,462,468,471,496],easiest:[11,12,17,20,49,53,55,64,73,75,85,95,96,116,118,133,153,156,162,175,178,187,195,380,470],easili:[0,9,12,15,16,18,19,20,23,28,31,33,35,37,41,44,45,51,53,55,58,64,65,68,69,74,80,81,85,93,94,95,96,107,110,111,117,118,119,123,128,130,132,133,134,137,138,140,141,142,146,149,151,153,154,157,159,162,163,168,169,170,175,178,192,195,197,198,199,227,236,238,245,260,274,287,290,312,315,316,326,335,350,353,358,384,390,392,393,394,415,474,480,491],east:[75,98,116,153,158,159,170,222,341,342,376],east_exit:376,east_room:98,east_west:170,eastern:[163,170,341,343],eastward:376,eat:[94,277,279],echo1:155,echo2:155,echo3:155,echo:[0,1,4,20,23,27,28,30,41,54,55,58,74,79,87,100,119,126,128,134,135,141,147,154,155,158,159,172,175,177,186,188,192,197,198,200,201,203,208,209,220,222,227,232,290,335,347,354,366,374,375,376,402,418,425,440,443,478,480,494,496],echocmdset:126,echowoo:126,econom:[67,121,132,133,136,142,181],economi:[42,69,125,139,140,146,173,287],ecosystem:192,edg:[12,20,46,56,116,297,341,342,482,494,496],edgi:159,edibl:279,edit:[0,1,8,9,11,12,14,15,16,19,23,24,25,26,31,33,39,41,49,51,52,62,64,67,73,75,76,77,78,79,81,82,83,84,85,86,87,88,89,90,91,92,93,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,123,124,125,133,142,151,153,156,160,162,163,164,166,170,178,179,181,183,185,187,191,192,200,201,220,222,229,232,245,246,255,258,259,261,262,306,309,384,398,402,404,406,407,468,478,508,509,517,536,542,546,547,548],edit_callback:[259,261],edit_handl:222,editcmd:80,editi:[110,358],editor:[8,12,17,23,24,30,31,41,49,64,69,80,95,96,119,120,124,135,136,152,161,170,181,187,195,222,229,231,232,245,306,410,474,478],editor_command_group:478,editorcmdset:478,editsheet:162,edu:499,effect:[0,10,11,14,16,19,20,21,25,36,42,45,47,53,54,60,72,74,75,85,94,98,106,110,112,113,116,117,119,135,136,140,141,142,144,146,147,154,155,157,160,161,162,170,171,176,200,201,203,208,215,216,222,231,236,261,279,293,297,313,314,315,342,347,358,374,376,400,402,408,410,433,496,548],effici:[1,7,14,36,42,46,47,48,67,77,108,116,121,122,130,136,144,154,155,157,160,177,181,199,287,329,341,342,344,354,398,402,415,468,469,471,478,481],effort:[12,132,160,179,542],egg:[191,296],egg_info:195,egi:422,egiven:400,eight:279,eightbal:137,eirik:75,either:[0,7,8,11,12,15,18,20,21,23,28,30,33,37,39,41,42,44,46,48,51,53,55,58,59,65,78,80,94,95,96,97,104,107,116,117,118,119,123,124,126,129,130,132,133,135,136,138,142,144,146,147,155,157,159,160,161,162,164,169,170,174,175,176,183,195,197,199,201,203,208,209,215,216,217,222,227,237,245,258,264,296,303,312,316,326,341,342,343,344,353,354,358,368,390,398,402,405,407,410,412,413,415,418,429,441,445,452,469,470,471,480,482,483,489,491,493,496,499],elabor:[80,94,119,123,168,169,175],electr:197,eleg:118,element:[7,14,18,28,30,53,56,59,80,85,116,121,133,134,135,137,169,214,219,229,245,251,341,343,344,353,386,402,407,468,469,471,474,479,480,481,483,494,496],elev:[94,95,167],elif:[28,42,96,126,137,146,147,159,162,171,175],elig:[75,483],elimin:[192,473],elimit:496,ellipsi:0,ellow:[60,473],els:[6,12,13,19,20,23,28,31,33,34,39,42,47,51,53,54,55,57,58,75,77,80,84,85,94,95,96,115,119,124,125,126,128,134,135,137,139,140,143,144,146,147,152,153,155,156,157,159,162,164,166,167,168,169,170,171,173,174,175,178,179,183,197,199,201,227,233,287,290,293,312,314,315,316,333,384,386,401,449,470,480,496],elsennsometh:233,elsewher:[13,21,46,53,131,133,155,162,178,216,342,376,420,461,468],elv:142,elvish:[104,353],emac:[16,181],email:[0,12,35,117,122,125,132,137,187,190,194,201,208,210,211,253,255,256,476,490,496,497,504,536,548],email_login:[88,205,206,239,240,548],emailaddress:496,emailfield:[504,536],emb:[41,58,90,104,116,119,162,320,407],embark:174,embed:[0,30,41,48,53,71,116,132,141,201,229,236,341,405,479,483,496],emerg:[39,64,199],emi:[104,353],emit:[51,69,126,153,208,216,220,236,300,402,459],emit_to_obj:[216,402],emo:152,emoji:184,emot:[0,19,23,26,30,31,58,77,117,121,141,142,143,147,208,228,277,287,352,353,354,468,483],emoteerror:354,emoteexcept:354,empathi:297,emphas:119,emphasi:119,empir:201,emploi:497,empti:[0,6,10,11,12,13,16,19,21,23,28,34,37,42,47,48,50,51,53,54,67,68,85,89,93,96,110,116,117,119,122,124,126,130,132,133,134,135,136,137,141,144,146,149,159,162,164,169,171,175,179,185,187,190,192,194,201,210,213,214,220,222,227,233,245,258,281,296,341,342,350,354,358,402,406,407,418,425,429,451,452,468,474,476,480,482,493,496,505,512],emptor:75,empty_color:350,empty_permit:[506,508,510,512,536],empty_symbol:341,empty_threadpool:465,emptyset:21,emul:[7,44,72,110,112,122,141,142,175,191,232,358],enabl:[0,9,51,60,75,76,83,84,91,176,179,182,183,184,188,192,199,201,208,243,293,354,357,384,443,497],enable_recog:354,enableloc:443,enableremot:443,enact:277,encamp:95,encapsul:490,encarnia:181,encas:478,enclos:[25,27,135,234,255,483],encod:[0,20,24,26,61,116,162,170,201,234,342,429,431,444,448,449,473,492,496,544,548],encode_gmcp:444,encode_msdp:444,encoded_text:496,encompass:[0,20],encount:[216,342,400,483,497],encourag:[0,80,149,157,169,184],encrypt:[65,75,182,187,199,227,440,441,445],encumb:141,end:[0,1,7,11,12,15,16,20,21,23,27,28,30,31,33,36,41,44,45,51,54,57,59,60,62,64,65,67,68,69,73,74,75,78,80,94,101,104,111,112,115,116,117,119,121,122,124,125,128,130,132,134,135,136,138,141,142,144,146,147,152,153,154,155,157,162,163,164,166,169,172,174,175,176,178,179,182,183,185,186,187,190,192,197,201,208,209,215,216,222,228,229,236,237,279,282,287,290,297,306,312,313,314,315,316,341,342,350,354,370,376,390,393,424,431,432,440,443,444,451,454,459,463,465,469,473,474,476,480,481,482,483,489,496,545],end_convers:28,end_direct:342,end_turn:147,end_xi:[116,341],endblock:[53,149,164,178,179],endclr:483,endcolor:30,endcoord:339,endfor:[164,178,179],endhour:153,endif:[164,178,179],endless:53,endlessli:199,endpoint:[49,199,521,522],endsep:496,endswith:473,enemi:[14,28,41,125,138,139,140,147,155,314,315,316,374,375,376],enemynam:28,enforc:[0,10,23,39,54,60,125,139,140,146,176,440,443,481,482,494,542],enforce_s:482,enforce_singl:83,engag:[121,316,374],engin:[0,4,10,23,28,31,37,74,89,117,122,125,134,138,139,146,151,160,181,183,199,200,201,213,216,229,231,232,275,296,376,381,393,420,431,437,440,443,448,458,460,474,476,500],english:[0,8,17,30,58,64,70,181,234,499,500],enhanc:[0,60,135,166,380,473,546],enigmat:128,enjoi:[9,140,143,169],enough:[6,10,19,33,34,36,46,47,69,85,115,116,118,119,121,122,123,125,126,127,130,131,133,134,136,139,140,144,151,152,155,157,161,162,164,168,169,175,176,187,193,197,201,216,222,296,315,333,342,353,368,386,480,481,482,494],enpoint:519,ensdep:496,ensur:[9,83,159,164,171,176,183,192,201,390,463,494,542],ensure_ascii:449,ensurepip:195,enter:[0,1,4,6,7,11,12,15,16,17,19,20,21,23,25,28,30,31,36,37,39,41,52,53,58,60,63,65,72,73,77,80,81,89,91,94,95,96,99,115,116,117,122,124,125,134,135,138,144,147,149,152,153,155,158,162,163,164,168,169,170,171,175,178,183,190,191,192,194,201,205,208,214,216,221,229,230,232,245,264,279,282,287,290,312,320,333,374,376,384,390,397,402,407,410,418,459,480,525,536],enter_guild:28,enter_nam:28,enter_wild:[115,333],enterpris:3,enthusiasm:143,enthusiast:[0,142],entir:[0,10,14,15,16,20,23,27,28,30,31,33,41,47,48,53,54,57,67,69,80,83,94,95,103,104,111,116,117,131,132,135,140,142,151,155,159,164,169,170,175,196,197,236,245,274,341,342,343,344,353,354,390,398,402,406,407,470,471,474,480,482,487,496,545],entireti:[28,146,278,384,480],entit:[237,476,548],entiti:[0,10,14,19,20,28,30,31,33,34,35,36,37,39,41,42,44,45,46,48,50,53,58,116,120,122,125,129,130,131,132,133,137,139,140,144,147,176,201,207,208,217,222,227,232,236,237,238,279,296,326,343,344,354,366,392,394,395,397,400,402,404,405,406,407,408,409,410,411,413,415,461,468,469,471,476,480,481,483,486,493,496,512,522],entitiess:122,entitii:45,entitl:197,entranc:[116,170],entri:[0,12,17,20,21,23,24,28,33,45,53,98,123,125,126,127,131,133,137,142,153,162,164,169,174,184,185,189,193,201,208,217,229,230,233,279,296,312,314,315,350,386,390,391,392,393,394,395,398,402,415,439,452,463,468,474,476,478,480,482,489,490,493,496,497,508,516,519,522,537,541,544],entriest:219,entrypoint:192,entrytext:[31,164,392,393,394,476],enul:182,enumar:496,enumer:179,env:[420,430],environ:[0,2,3,4,10,11,15,52,75,119,122,123,124,135,140,142,143,153,167,186,192,193,194,195,197,199,201,232,233,246,271,283,288,294,298,310,317,321,332,339,355,364,373,420,430,446,455,474,480,494,520,537],environment:420,envvar:194,eof:440,epic:181,epilog:274,epoch:[20,163,201,484],epollreactor:465,epub:181,equal:[8,21,23,30,56,57,60,87,94,95,96,116,117,128,130,133,134,142,153,157,169,174,215,227,312,313,314,316,320,354,357,358,402,496],equip:[16,60,81,112,132,141,142,161,290,312,313,316],equipmentcombatrul:313,equival:[0,11,12,14,15,30,36,50,53,54,58,60,62,68,116,131,135,137,195,199,200,203,207,210,222,293,335,341,342,393,400,409,438,444,468,496,517,545],eras:[124,316],erik:75,err:[162,201,429,451,474,489],err_travers:[37,402],errback:[54,417,420,429,430,496],errmessag:215,errmsg:175,erron:[0,70,175,429,482],error:[0,1,6,8,10,11,12,14,16,17,19,20,21,23,24,28,30,32,33,36,37,39,41,44,48,53,54,64,65,67,70,73,80,85,94,98,111,116,119,122,124,125,127,128,133,134,136,137,138,143,144,160,161,162,165,169,170,172,173,175,178,182,183,184,187,188,191,195,197,199,200,201,205,206,208,210,213,215,216,222,227,234,236,261,274,296,298,340,342,343,344,354,358,375,386,390,398,400,402,405,406,409,413,414,417,419,420,422,424,425,429,443,451,470,473,474,476,479,480,483,489,492,496,497,502,517,519,535,539,544,548],error_check_python_modul:420,error_class:[506,508,510,512,536],error_cmd:158,error_consumable_excess_messag:296,error_consumable_missing_messag:296,error_consumable_order_messag:296,error_msg:463,error_tool_excess_messag:296,error_tool_missing_messag:296,error_tool_order_messag:296,errorlist:[506,508,510,512,536],errorlog:182,escal:[13,39,57,142,219,397,471],escap:[0,60,89,116,117,164,201,228,232,274,277,280,473,483,495,536],escape_char:483,escaperoom:[89,280],escript:[80,245],esom:229,especi:[0,7,17,33,39,44,46,80,104,132,133,135,140,155,170,182,183,193,195,350,353,474],esqu:133,ess:29,essai:181,essenti:[9,58,70,132,142,154,159,160,181,187,191,237,420,476],est:[29,233],establish:[23,44,112,117,140,141,142,146,187,201,208,312,402,417,429,431,438,440,443,448,451,458,460],estim:[156,201,341,407,487],esult:402,etc:[0,1,10,12,13,14,19,20,23,25,28,30,31,33,34,35,36,37,39,41,42,44,45,48,50,51,52,53,55,58,62,65,67,68,69,71,75,78,80,85,86,89,91,93,94,104,107,110,116,117,118,119,120,121,122,126,128,130,131,132,140,141,142,144,146,147,153,155,156,159,160,161,162,163,173,176,177,181,182,183,187,192,193,199,201,203,208,211,213,214,215,216,219,221,222,227,230,232,234,237,248,251,274,279,280,287,297,309,313,315,326,341,342,343,344,350,353,354,358,368,384,402,406,407,438,440,443,447,448,449,459,460,468,470,473,474,476,477,478,479,480,483,489,496,500,505,512,516,522,525,547],etern:28,ethic:76,euclidian:116,eunpyo:75,ev_channel:209,evadventur:[142,145],eval:[30,41,287,496],evalstr:398,evalu:[23,28,30,77,119,130,141,143,214,287,398,480,483],evbot:[227,461],evcel:[479,482],evcolor:181,evcolumn:[0,482],evdemo:89,eve:496,evedit:0,eveditor:[24,26,31,80,94,120,205,206,245,472,548],eveditorcmdset:478,even:[0,1,6,7,9,14,16,19,20,21,27,28,31,33,39,42,44,47,48,49,50,55,57,60,64,67,69,72,73,79,80,81,86,90,91,94,95,104,110,113,116,117,118,121,122,123,124,130,131,133,134,135,136,138,140,141,142,143,144,145,146,147,152,153,155,157,159,160,161,162,163,164,165,168,169,172,175,176,185,193,195,197,199,201,203,208,215,217,220,227,229,236,251,274,290,296,312,313,314,315,316,320,341,342,344,353,354,358,376,384,402,406,407,443,480,482,483,487,496,544],evenia:131,evenli:[20,116,251,342,496],evenn:192,evenna:124,evenni:123,evennia:[2,3,4,5,7,13,14,15,16,17,18,19,20,21,23,24,25,26,27,28,29,31,32,33,34,35,36,37,39,40,42,44,45,46,47,48,50,52,53,54,57,58,59,60,61,62,63,65,67,68,69,70,72,73,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,95,96,97,98,99,100,102,103,105,106,107,108,109,110,111,112,114,115,116,117,120,122,125,126,127,128,129,130,132,133,134,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,154,155,156,157,158,159,163,164,165,166,168,170,171,172,173,174,175,177,178,179,180,184,186,189,193,194,195,198,199,200,202],evennia_access:182,evennia_admin:[201,507],evennia_channel:[186,189,198,227],evennia_dir:[201,496],evennia_error:182,evennia_gener:151,evennia_launch:[0,9,205,206,416,418],evennia_logo:[53,151],evennia_runn:[0,9],evennia_server_port:40,evennia_superuser_email:194,evennia_superuser_password:194,evennia_superuser_usernam:194,evennia_vers:420,evennia_websocket_webcli:448,evennia_wsgi_apach:182,evenniaadminapp:[201,527],evenniaadminsit:527,evenniaapiroot:518,evenniacommandmixin:[10,494],evenniacommandtest:[10,494],evenniacommandtestmixin:494,evenniacreateview:[540,546,547],evenniadeleteview:[546,547],evenniadetailview:[546,547],evenniaform:[536,542],evenniagameindexcli:422,evenniagameindexservic:423,evenniaindexview:[53,545],evennialogfil:489,evenniapasswordvalid:[201,464],evenniapermiss:[201,517,522],evenniareverseproxyresourc:465,evenniaserv:40,evenniatest:[10,382,494],evenniatestcas:[10,494],evenniatestmixin:[10,494],evenniatestsuiterunn:201,evenniaupdateview:[546,547],evenniausernameavailabilityvalid:[201,208,464],evenniawebtest:537,event:[0,28,31,45,51,76,86,117,122,143,146,199,201,205,209,251,260,261,262,264,279,287,354,368,380,410,413,462,489],event_level:489,event_nam:[260,264],event_push:94,eventcharact:94,eventexit:94,eventfunc:[96,205,206,239,240,257,261],eventfuncs_loc:94,eventhandl:[94,261],eventi:[217,245,274],eventobject:94,eventroom:94,events_calendar:94,events_dis:94,events_valid:94,events_with_valid:94,events_without_valid:94,eventu:[14,23,39,55,57,64,65,68,87,123,138,140,142,143,147,151,155,162,175,178,197,201,203,208,213,214,222,231,237,279,280,347,353,368,376,398,402,407,417,425,451,459,460,471,475,476,480,482,534],evenv:[4,9,122,123,191,193,195,196],evenwidth:482,ever:[11,12,14,15,16,17,23,30,42,44,46,48,55,67,70,80,104,116,122,130,133,141,146,161,169,170,172,183,190,201,203,277,280,342,353,415,431,432,438,468,480],everi:[0,1,4,5,7,10,11,12,15,19,20,21,23,28,30,31,32,35,41,42,47,48,58,67,69,70,73,75,76,79,84,86,91,94,95,96,116,118,119,122,123,126,128,130,132,133,135,136,138,141,146,147,151,152,154,157,159,161,163,164,168,169,170,173,174,175,177,178,179,187,191,192,193,197,200,201,208,222,227,236,261,278,290,293,298,312,314,333,341,342,353,363,373,384,390,402,407,413,415,425,442,452,458,467,468,470,471,480,481,482,483,494,496,505,512],everror:261,everyon:[11,12,19,23,28,31,33,36,42,57,58,64,89,122,133,136,137,140,142,143,146,147,152,162,174,175,177,180,184,188,198,203,222,227,228,229,279,280,282,312,313,314,315,316,347,438],everyong:58,everyth:[0,1,4,6,8,10,11,12,14,21,28,30,36,39,41,47,49,50,51,53,57,65,70,73,89,110,116,117,119,121,122,124,125,126,132,133,134,135,136,137,138,140,141,143,144,146,147,148,151,152,154,159,162,164,166,168,169,170,181,187,189,190,191,192,195,197,199,200,201,203,212,217,227,228,230,232,233,234,255,296,297,358,376,397,401,410,424,451,459,468,470,474,480],everywher:[124,132,160,187,193],evform:[20,120,205,206,472],evgam:227,evgamedir:119,evict:463,evid:189,evil:[7,16,187,368,407],evilus:227,evmenu:[20,23,24,80,91,99,109,111,113,117,120,138,142,162,168,205,206,232,245,278,370,373,384,390,404,472,481,494,548],evmenucmdset:480,evmenuerror:480,evmenugotoabortmessag:480,evmenugotomessag:480,evmor:[0,24,26,31,120,201,205,206,406,472,548],evscaperoom:[0,205,206,239,275,548],evscaperoom_start_st:89,evscaperoom_state_packag:89,evscaperoommenu:278,evscaperoomobject:[279,280],evtabl:[0,20,23,91,120,159,170,205,206,217,227,384,406,472,479,481,496],ewmaplink:[116,342],ewonewaymaplink:[116,342],exact:[0,7,12,23,28,39,72,110,130,133,137,201,208,210,214,222,227,231,237,296,316,354,358,393,400,402,406,407,469,470,492,493,496],exact_consum:296,exact_consumable_ord:[296,297],exact_tool:296,exact_tool_ord:296,exactli:[6,7,11,13,28,30,31,39,42,47,50,54,57,59,60,62,65,67,85,95,110,116,119,122,126,130,131,133,135,137,141,142,146,151,162,163,164,169,170,175,192,201,203,227,296,341,342,354,358,400,402,420,470,493],exam:[26,222],examin:[0,9,12,13,14,23,26,33,47,51,55,65,74,80,89,125,126,128,130,146,162,168,169,175,201,208,222,277,287,368,375,376,452,468,483,494,504,517],exampl:[0,2,3,4,5,7,8,9,10,12,13,14,15,16,17,18,19,20,21,23,24,26,31,32,34,35,36,37,41,44,46,47,48,49,50,54,57,58,59,60,61,62,64,65,67,68,72,73,74,75,76,77,81,86,87,89,91,92,94,96,104,108,110,111,112,113,114,117,118,119,121,122,123,125,126,127,128,129,130,132,133,134,135,136,137,138,140,141,142,143,144,145,151,152,153,154,155,156,158,159,160,161,162,163,166,167,168,169,170,171,172,174,175,176,177,178,182,183,187,188,192,194,198,199,200,201,203,205,206,208,211,214,215,216,217,220,221,222,227,228,229,230,231,232,233,236,238,239,245,251,270,274,277,279,284,287,290,293,296,297,298,300,303,309,312,313,314,315,316,318,320,326,329,331,334,335,339,341,342,343,344,347,350,353,354,357,358,359,360,362,363,368,370,374,376,380,384,386,390,392,394,395,398,401,402,407,410,413,415,420,425,440,443,444,449,452,461,465,468,470,471,472,473,475,479,480,481,482,483,484,488,489,490,493,494,496,497,499,500,505,512,521,522,536,545,548],example1_build_forest:98,example1_build_mountain:98,example1_build_templ:98,example1_legend:98,example1_map:98,example2_build_forest:98,example2_build_horizontal_exit:98,example2_build_verticle_exit:98,example2_legend:98,example2_map:98,example_batch_cmd:78,example_batch_cod:[15,78,205,206,239,359,360],example_recip:[205,206,239,285,295,296],example_recipi:296,excalibur:168,exce:[167,201,243,312,313,314,315,316,463,487],exceed:463,excel:[33,69,160,181,187],excempt:215,except:[0,8,14,16,20,21,23,27,28,30,31,33,37,41,42,49,50,53,54,57,60,65,80,85,94,95,115,116,119,122,123,124,128,130,132,134,135,136,137,142,147,152,154,155,157,162,169,170,172,173,174,175,176,178,179,191,195,197,201,208,209,211,213,216,217,230,231,236,237,238,251,260,261,264,274,279,280,281,287,290,296,300,306,309,312,313,314,315,316,320,326,329,333,340,341,342,343,344,353,354,358,363,366,368,370,374,375,376,386,394,397,398,400,401,402,406,409,410,413,414,420,425,427,429,441,443,445,449,453,465,468,471,473,476,479,480,482,483,484,488,489,491,496,504],excepteur:29,excerpt:27,excess:[33,41,80,144,230,296,401,474,496],exchang:[15,52,77,141,197,287,477],excit:[25,126,128,142,185],exclam:152,exclud:[0,58,94,122,130,137,173,175,201,236,290,309,315,376,400,401,402,478,480,514,516],exclude_cov:290,excluded_par:514,excluded_typeclass_path:222,excludeobj:400,exclus:[28,31,33,35,140,368,402,410,469,480,496],exclusiv:[409,476],exe:[9,11,195],exec:[28,30,168,407,480,496],exec_kwarg:480,exec_str:455,execcgi:182,execut:[0,4,9,11,15,16,21,23,27,28,30,36,37,41,42,51,52,53,54,55,57,59,65,71,78,80,89,94,95,96,98,114,122,124,132,135,138,142,153,154,155,163,164,168,169,170,191,195,201,208,209,211,212,213,217,220,221,230,232,233,238,245,261,273,274,277,297,315,354,366,368,376,390,394,397,398,401,402,407,408,410,414,417,425,427,430,431,437,440,443,448,451,452,455,458,459,468,470,471,474,480,481,483,488,494,496,525],execute_cmd:[13,23,37,171,172,175,208,209,217,402,425,459],execute_command:23,executor:4,exemplifi:[31,62,113,116,117,136,138,141,154],exercis:[6,135,147,152,162,168,170,175,177,243,298,357,446,456,488],exhaust:[19,80,387],exhaustedgener:386,exidbobj:402,exis:196,exist:[0,1,4,7,8,11,12,13,14,15,19,20,21,23,24,25,26,28,33,41,42,44,46,47,53,55,62,64,67,75,80,83,85,89,90,94,95,96,101,103,104,108,110,116,118,122,125,128,129,130,132,134,135,138,139,140,143,144,147,149,151,152,153,157,158,159,160,161,162,164,170,171,175,179,183,186,189,190,192,193,201,202,207,208,209,210,215,216,217,222,227,229,230,232,243,245,258,260,261,264,278,284,293,297,303,306,309,315,320,329,333,341,342,343,344,353,354,358,375,395,397,398,401,402,404,406,407,409,414,420,424,426,440,441,443,445,453,458,459,461,468,469,470,471,474,476,478,479,480,482,483,489,491,496,504,522,548],existen:459,exit:[0,9,10,11,21,24,27,28,33,41,48,49,50,67,77,80,94,98,107,113,115,116,117,120,126,128,129,132,133,135,136,137,138,152,157,159,162,165,168,169,170,174,175,183,190,192,195,201,205,213,215,216,222,232,239,245,246,262,274,280,287,293,316,318,326,328,330,333,335,336,341,342,343,344,368,374,375,376,390,397,400,401,402,407,424,440,452,468,476,478,480,481,494,516,519,522,537,548],exit_alias:[222,326],exit_back:162,exit_cmd:[0,28,481],exit_command:402,exit_dest_x_coordin:116,exit_dest_y_coordin:116,exit_dest_z_coordin:116,exit_nam:[159,222,326],exit_on_lastpag:481,exit_ther:162,exit_to_her:222,exit_to_ther:222,exit_typeclass:[333,494,537],exitbuildingmenu:80,exitcmdset:[21,402],exitcommand:402,exitnam:326,exitobject:158,exitviewset:522,exixt:438,exot:23,exp:479,expand:[0,12,32,37,49,58,60,73,74,88,89,96,107,112,117,122,123,125,126,128,130,132,133,134,135,136,140,141,142,143,148,152,158,159,161,162,166,168,170,171,173,175,177,183,197,200,205,206,222,239,255,312,313,314,315,316,326,335,345,356,402,473,482,548],expand_tab:482,expandtab:[473,482],expans:[140,158],expect:[0,7,8,10,11,23,30,35,36,37,45,47,53,54,58,64,65,68,70,94,96,105,116,119,124,130,132,133,135,137,138,140,142,143,160,162,169,175,176,179,187,191,197,201,222,230,233,245,258,260,293,296,333,339,341,342,386,397,402,406,407,418,420,468,470,480,481,483,487,494,496,501,505,512,522,528,547],expected1:494,expected2:494,expected_1st_or_2nd_person:501,expected_3rd_person:501,expected_direct:339,expected_input:494,expected_path:339,expected_return:10,expectlst:339,expectstr:339,expens:[47,197,400,493],experi:[1,6,28,30,73,85,100,112,113,117,125,126,130,135,136,138,139,140,145,146,161,163,166,170,190,197,227,279,366],experienc:[2,14,28,122,127,135,181],experienced_betray:28,experienced_viol:28,experiment:[32,53,191,201,232,506,509],expert:[110,358],expir:[75,201,293],explain:[12,23,26,28,49,53,67,72,80,94,116,121,122,128,132,142,144,151,157,162,174,176,179,188],explan:[14,21,23,50,60,94,122,153,157,164,192,201,280,464],explanatori:50,explicit:[21,62,68,72,80,96,119,151,164,169,183,188,200,386,420,442,468,480,500],explicitli:[0,8,14,21,30,31,33,34,36,39,41,42,46,47,48,60,65,67,110,116,123,124,133,134,136,141,142,152,156,162,168,187,216,217,222,229,237,342,358,386,392,402,407,409,415,468,470,473,476,492,494,519],exploit:[0,142,201,471,473,483,496],explor:[2,6,13,48,53,54,65,96,113,116,125,127,128,133,135,138,147,164,170,193,200,232],expos:[84,179,199,293,368,544],express:[23,28,30,33,41,52,73,74,76,86,105,119,130,133,137,149,160,179,201,222,251,316,386,468,496,525],ext:28,extend:[0,19,20,30,42,48,50,53,67,69,76,82,98,117,119,121,125,126,127,131,132,134,135,139,145,146,148,149,150,157,160,164,168,170,171,172,178,179,181,201,211,217,229,233,236,248,261,264,293,296,297,319,320,333,341,401,402,470,490,509,536,545,546,548],extended_room:[0,90,205,206,239,318,548],extendedloopingcal:415,extendedroom:[90,320,321],extendedroomcmdset:[0,90,320],extendng:297,extens:[0,8,10,28,31,60,68,116,119,121,122,124,128,132,133,140,149,160,170,183,196,200,201,211,312,336,381,393,435,443,476,486,495],extent:[80,94,142,146,160],exter:227,extern:[0,3,9,17,35,41,59,62,69,94,116,117,132,136,140,142,143,144,161,170,182,183,185,186,187,189,197,198,201,202,205,216,227,235,237,238,380,406,418,420,422,476,494],external_discord_hello:425,external_receiv:238,extes:201,extra1:30,extra2:30,extra:[0,1,14,16,19,21,23,28,30,31,33,37,45,48,51,53,56,71,75,77,89,110,116,117,118,119,125,126,127,135,136,141,142,151,152,153,155,161,162,175,176,179,182,183,196,197,201,208,211,217,229,233,236,287,296,300,306,320,354,357,358,368,376,402,405,406,415,417,469,473,474,478,480,481,482,483,489,490,491,495,496,504,505,512],extra_environ:474,extra_launcher_command:[0,116,201,336,337],extra_opt:480,extra_spac:496,extract:[0,8,14,30,45,102,117,160,169,217,270,271,279,296,341,354,381,398,434,448,496],extract_goto_exec:480,extrainfoauthserv:440,extral:238,extran:384,extrem:[1,11,136,160,169,203,312,313,316,433,490],eye:[8,31,60,98,140,170,407,481],eyed:[53,144,151],eyes:[23,118,161],eyesight:[33,60,162],f6d4ca9b2b22:192,face:[92,94,116,126,138,142,187,197,199,201,234,300,464,480],facil:489,facilit:142,fact:[9,16,23,37,42,48,54,65,74,121,131,132,133,140,152,155,161,162,171,175,176,179,190,199,461,463,483],factor:[96,163,167,201,313,315,417,431,432],factori:[62,358,417,422,430,431,432,438,439,440,441,443,451],factory_path:209,fade:[69,104,353],fail:[0,14,15,16,19,20,21,28,30,31,37,41,45,54,55,70,85,106,113,116,123,124,125,134,138,139,140,144,147,169,171,174,184,199,201,202,203,208,216,227,231,236,273,296,298,326,347,354,357,358,368,375,387,397,398,402,406,417,418,420,424,431,432,442,463,468,470,481,483,490,492,496,499,505,542],failmsg:463,failtext_templ:146,failur:[16,54,85,141,146,193,208,296,376,422,429,431,432,451,463,473,496],failure_effect:297,failure_messag:296,failure_teleport_msg:376,failure_teleport_to:376,faint:42,fair:[87,141,142,146,347],fairli:[81,91,157,164,191,290,313,384,390],fake:[10,82,116,201,248,342,451,461,468,473],fall:[0,1,8,21,42,70,92,94,113,116,119,122,133,146,158,163,170,205,208,231,296,300,354,368,376,496,536],fall_exit:376,fallback:[0,90,159,201,213,217,238,320,354,398,413,420,449,468,480,483,491,496],fallback_account_typeclass:201,fallback_channel_typeclass:201,fallback_character_typeclass:201,fallback_exit_typeclass:201,fallback_object_typeclass:201,fallback_room_typeclass:201,fallback_script_typeclass:201,fals:[0,10,13,14,19,20,21,23,27,28,30,31,32,33,34,37,39,42,47,48,51,67,76,80,82,91,104,115,116,123,126,128,133,137,144,147,152,153,155,158,159,162,163,166,167,172,173,174,175,178,199,201,208,210,211,213,214,215,216,217,222,227,229,236,238,245,246,248,251,258,261,274,277,278,279,282,287,290,293,296,303,312,315,316,326,333,341,342,344,347,353,354,373,384,390,392,393,394,397,398,400,401,402,404,406,407,409,410,411,413,414,415,417,420,422,426,429,430,437,438,439,440,443,449,451,457,458,459,461,463,465,468,469,470,471,473,474,476,478,480,481,482,483,484,487,491,492,493,494,495,496,497,499,501,504,505,506,508,509,510,512,516,517,536,544],falsestr:[91,384],falsi:[126,134,236,296,341],fame:[138,143],famili:[28,124,144,161],familiar:[2,21,23,48,94,102,117,119,130,133,134,135,143,149,155,157,162,168,169,170,178,197,270],famou:[29,478],fanci:[4,17,18,19,49,75,81,116,146,290,342],fantasi:[137,142,353],faq:[119,165,442,548],far:[9,12,15,19,21,23,53,60,68,80,94,95,96,98,115,116,121,128,130,132,133,135,136,152,157,159,161,169,170,185,191,192,197,215,316,333,341,344,422,447,468,478,487],fare:133,fart:144,fascilit:343,fashion:[41,170],fast:[1,12,14,17,20,37,47,69,116,117,122,135,142,143,155,160,163,167,183,201,220,395,452],faster:[2,7,14,116,137,142,163,183,201,238,287,468],fastest:[119,342],fatal:420,fault:143,faulti:135,favor:[20,116,342],favorit:[118,152],fear:20,feasibl:183,feat:142,featgmcp:444,featur:[0,1,4,6,10,11,12,17,18,20,21,23,27,41,45,48,53,59,60,72,80,83,89,94,95,96,104,111,113,116,117,118,119,121,122,123,126,128,138,140,141,142,153,159,160,161,163,165,166,168,169,170,175,180,189,199,201,208,216,217,261,274,320,354,390,415,437,458,462,470,478,496,543,548],feb:[2,64],februari:163,fed:[23,33,54,438,468,477,479],fedora:[12,182,187,195],feed:[11,17,28,146,159,198,201,209,227,341,422,439,440,470,481],feedback:[6,12,37,118,140,143,172,201,237,478],feedpars:[198,201,439],feedread:209,feel:[12,18,48,54,64,69,80,94,95,96,104,111,118,119,121,122,127,130,133,138,140,142,143,144,146,150,157,161,164,169,172,175,178,188,197,279,313,353,368,376,390],feelabl:279,feend78:303,feint:147,fel:64,felin:20,fellow:479,felt:[42,177],femal:[58,92,300,483,500],fermuch:0,fetch:[11,12,14,49,52,53,130,178,192,193,197,343,468,470,481],few:[1,3,4,6,7,12,14,17,18,21,23,27,30,31,32,33,37,50,53,54,60,63,67,68,76,89,96,104,118,119,121,122,123,124,128,130,131,133,135,140,141,142,143,146,147,159,169,174,175,176,183,187,199,203,232,251,353,368,401,435,444,463,473,482,496,545],fewer:[69,135,341,461,469],fiction:[28,121,163,480],fictional_word:353,fictiv:353,fictou:284,fiddl:376,field:[0,9,11,14,30,31,32,34,35,36,37,41,42,45,46,48,50,53,64,67,73,83,110,117,125,127,129,133,149,160,162,178,183,185,201,211,238,258,316,335,354,358,374,384,394,395,397,400,401,402,406,407,410,411,415,427,468,469,470,471,479,488,492,493,504,505,506,508,509,510,512,516,519,524,536,547],field_class:536,field_nam:[83,395,516],field_or_argnam:32,field_ord:536,fieldevmenu:384,fieldfil:[91,205,206,239,378,548],fieldnam:[34,91,162,384,411,470,487,536],fieldset:[504,506,508,509,510,512],fieldtyp:[91,384],fifo:496,fifth:159,fight:[21,42,112,117,125,134,138,139,140,147,155,312,313,314,315,316,375],fighter:[112,312,314,316],figur:[1,6,7,8,12,23,31,55,58,65,89,104,118,125,131,133,140,143,149,159,164,169,174,178,197,201,251,287,296,342,354,406,420,499],file:[0,1,3,4,5,6,7,9,10,11,13,19,20,21,24,26,28,39,40,49,50,51,52,53,57,62,63,64,67,73,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,122,123,124,125,126,128,131,132,134,135,136,142,149,151,152,153,158,160,161,162,163,164,166,168,170,171,173,174,175,178,179,181,182,183,185,186,187,189,190,191,192,195,196,197,198,199,202,203,205,206,208,221,229,236,243,245,248,251,255,274,280,290,296,333,353,358,380,392,407,419,420,440,441,444,445,452,453,454,458,465,466,472,479,480,489,492,493,496,500,505,506,508,510,512,522,525,529,536,544,548],file_end:[474,496],file_help_entry_modul:[31,201,229,392],file_help_top:544,file_to_revert:12,fileentri:229,filehelp:[31,205,206,391],filehelpentri:[229,392,544],filehelpstorag:0,filehelpstoragehandl:392,filenam:[12,20,78,104,131,236,353,474,479,489],filename1:420,filename2:420,filesystem:[192,195,199],filip:75,fill:[0,4,9,27,53,64,73,91,98,110,116,117,135,159,162,170,178,186,201,273,341,344,358,384,468,473,479,480,481,482,483,496,512],fill_char:482,fill_color:350,fillabl:[117,384,548],fillchar:[30,473,483,496],filler:500,filo:496,filter:[0,9,21,35,48,49,60,67,76,94,116,130,157,164,173,178,201,205,206,215,220,245,320,344,354,401,402,496,502,515,522,542],filter_backend:522,filter_famili:[48,130],filter_nam:516,filter_xyz:[116,344],filter_xyz_exit:[116,344],filterset:516,filterset_class:522,filthi:180,final_valu:54,find:[0,1,6,7,8,10,11,12,14,15,16,18,20,21,23,26,27,30,31,32,33,34,35,36,37,41,42,46,48,50,53,54,55,59,60,62,64,67,69,73,74,80,85,90,95,96,98,107,111,113,116,118,119,121,123,125,126,127,128,129,130,131,132,133,134,136,138,140,142,143,144,145,146,149,151,152,153,155,159,160,161,162,163,164,169,175,178,179,180,183,184,187,191,192,193,195,196,197,199,201,203,208,214,222,229,251,274,279,282,296,320,326,335,336,341,342,344,354,358,376,390,402,406,407,409,412,420,434,468,469,471,473,475,483,493,496,527],find_apropo:393,find_topicmatch:393,find_topics_with_categori:393,find_topicsuggest:393,findfoo:137,fine:[14,17,23,37,42,44,46,47,55,67,77,95,116,117,119,122,125,128,132,133,134,136,138,141,144,158,168,172,175,209,210,342,376,468,476,496],finer:[55,341,342],finish:[11,16,23,45,52,54,85,113,119,138,140,151,155,162,175,178,192,205,208,217,219,230,232,234,277,282,287,296,297,309,320,342,375,376,402,420,432,443,458,465,475,480,496,525],finish_chargen:28,finit:169,fire:[0,9,13,20,23,28,42,45,47,83,84,86,94,95,128,133,136,140,152,154,155,162,170,172,173,177,208,209,213,261,293,314,315,402,407,420,429,431,448,480,481,487,496],firebal:[85,142,296,297],fireball_recip:85,fireballrecip:297,firebreath:[133,136,162],firefox:[0,53,189],firemag:297,firestorm:154,firestorm_lastcast:154,firewal:[183,187,197,202],first:[0,1,6,7,8,9,11,12,13,14,15,16,17,20,21,23,25,27,28,30,31,33,37,39,41,42,44,45,48,50,51,53,54,55,56,57,58,60,62,64,65,67,69,70,73,82,89,94,98,110,112,115,118,119,121,123,124,125,126,127,128,129,130,131,132,134,136,137,138,140,141,142,143,144,146,147,149,150,151,152,155,157,159,160,162,163,164,166,168,169,172,173,174,175,176,177,178,179,183,184,186,188,191,192,193,194,195,196,197,198,199,200,201,202,203,208,209,211,214,215,222,229,230,233,234,236,238,245,248,251,254,255,274,279,280,281,282,287,290,293,312,313,314,315,316,320,326,333,336,341,342,353,354,357,358,363,368,370,374,375,376,386,394,397,401,402,406,407,409,410,413,420,424,425,427,438,440,443,448,449,451,452,458,461,468,470,471,473,474,476,478,479,480,482,483,484,487,488,494,496,517],first_lin:175,first_nam:[211,504],firsthand:33,firstli:[8,37,53,124,129,130,197],fish:[146,216,309],fist:[134,407],fit:[0,5,30,31,39,68,72,84,132,143,144,150,157,162,174,178,183,293,297,313,316,479,481,482,496],five:[23,125,130,143,150,154,170,197,216,390,496,497],fix:[0,1,2,6,8,14,15,16,20,23,28,41,48,56,65,75,89,104,116,118,122,133,135,136,140,142,144,161,168,174,175,180,191,195,197,203,344,353,420,479,481,482,492],fix_sentence_end:482,fixer:130,fixtur:[233,243,252,283,298,317,339,355,357,364,446,456,488,520],fizzl:142,flag:[0,15,16,21,23,28,32,46,47,50,62,65,67,69,124,125,128,133,135,140,144,154,155,156,162,175,201,208,213,215,217,222,277,279,280,282,296,298,368,374,397,398,402,420,427,431,440,443,448,459,478,480,496],flagnam:[277,279,280],flair:144,flakei:0,flame:[154,297,315],flash:[16,106,201,368],flat:[0,1,2,20,48,80,120,131,160,205,407,499],flatfil:160,flatpag:[201,527],flatpagefallbackmiddlewar:201,flatten:407,flatten_diff:407,flatten_prototyp:407,flattened_diff:407,flavor:[0,58,128,141,197,315],flavour:[36,176],flaw:174,fled:[147,374],fledg:[17,69,71,113,117,142,148,175,178,197,221],flee:[147,171,316,374],fleevalu:147,flesh:[128,142,162],flexibl:[0,15,28,41,42,68,69,80,91,111,116,133,136,141,142,144,146,147,152,155,157,161,170,179,197,211,222,245,287,296,315,384,390,444,468,480,496,545],fli:136,flick:497,flicker:368,flip:[26,28,166,234],flood:[20,27],floor:[94,96,167,277,279,354,357],flour:[85,117,296],flourish:468,flourrecip:296,flow:[4,18,24,47,51,62,65,67,89,116,121,125,139,140,144,237,476,480],flower:[36,37,55,119,125,128,129,130,137,139,140,141,222,483],flowerpot:[55,161],fluent:181,fluffi:[133,134,136],fluid:[18,56],flurri:354,flush:[11,23,170,183,201,232,468,470,487],flush_cach:487,flush_cached_inst:487,flush_from_cach:487,flush_instance_cach:487,flusher:487,flushmem:232,fluttersprit:0,fly:[0,14,20,21,23,28,30,31,41,42,55,85,122,130,132,133,137,149,152,168,208,228,230,238,394,402,406,415,427,438,441,445,468,474,484,496],fnmatch:468,foci:142,focu:[89,123,127,140,142,147,277,279],focus:[9,89,160,161,175,181,277,279,316,519],focused_object:277,foe:313,foilag:116,fold:[111,142,390],folder:[0,2,9,10,11,15,16,20,50,51,53,64,67,73,83,89,98,112,116,117,118,119,122,128,131,132,133,135,146,147,149,151,152,156,159,161,162,164,170,171,172,175,178,179,182,190,191,192,193,195,196,199,203,312,313,314,315,316,420,494,527],follow:[4,6,7,9,11,12,13,14,15,16,18,19,21,23,27,28,30,31,32,33,37,39,42,46,48,50,51,53,54,56,57,60,62,64,67,68,73,75,78,80,81,82,84,89,92,94,95,96,97,98,104,110,111,116,117,118,119,123,124,125,126,128,130,132,133,134,135,136,140,143,144,145,146,147,153,157,159,162,163,164,167,168,169,171,173,174,175,178,179,181,182,183,185,186,187,188,191,192,193,195,196,197,199,201,203,208,209,211,213,214,217,222,229,230,233,236,237,238,245,248,254,255,261,290,293,296,300,303,314,315,341,342,354,358,376,390,392,394,395,397,398,401,402,405,406,407,410,411,424,425,429,435,444,448,449,452,462,468,470,473,474,476,479,480,481,482,489,496,521],follwo:398,fond:163,font:[51,119,132,153,170,342],foo1:14,foo2:14,foo:[0,12,14,19,23,28,30,31,34,42,45,46,62,65,68,111,116,126,130,131,132,133,135,137,201,222,341,343,390,395,420,468,480,483,494],foo_bar:68,foobar:28,foobarfoo:55,food:[85,94,296],fooerror:480,fool:142,foolish:368,footer:[0,53,116,164,178,201,217,402,481],footer_fil:201,footer_star_color:201,footer_text_color:201,footnot:[17,119],footprint:232,footwear:161,for_cont:402,forai:132,forbidden:12,forc:[0,10,21,23,42,48,54,96,103,104,116,126,136,143,144,146,147,162,166,167,169,174,175,182,192,193,199,203,209,216,220,222,227,287,297,300,309,320,321,341,353,354,358,398,402,406,412,431,432,438,443,461,463,481,482,487,489,496],force_init:402,force_repeat:[42,147],force_str:[0,492],forceutcdatetim:321,forcibl:412,fore:458,forebod:320,foreground:[0,6,60,82,176,192,201,202,248,420,473,483],foreign:[48,130],foreignkei:[211,401,410,470,488,505,512],forens:381,forest:[15,46,74,98,116,132,170,320],forest_meadow:46,forest_room:46,forestobj:74,forget:[2,15,20,23,54,67,124,126,133,135,136,149,153,163,168,175,185,189,192,201,354,474],forgiv:144,forgo:375,forgot:0,forgotten:[118,133,154,159,168],fork:[2,75,124,181,548],forloop:164,form:[0,8,10,12,14,15,19,20,21,23,24,28,30,31,32,33,37,39,41,46,47,48,50,52,58,65,68,70,71,72,73,83,85,89,92,101,104,110,116,117,118,119,120,121,122,125,126,132,134,136,137,139,140,143,147,162,172,175,201,205,206,208,209,210,214,216,217,220,222,227,230,233,236,237,238,277,284,287,296,300,344,353,354,358,381,384,392,394,397,398,400,402,406,407,411,413,415,418,438,440,444,448,459,461,468,469,470,473,474,476,477,478,479,480,482,483,484,489,492,493,496,497,499,500,502,504,505,506,508,509,510,512,514,519,535,540,542,547,548],form_char:479,form_class:[53,540,542],form_template_to_dict:384,form_url:504,form_valid:[540,542,547],formal:[0,33,125,139,140,402,444,500],format:[0,6,12,16,18,19,20,21,23,24,30,31,57,60,64,65,68,69,70,72,80,82,94,95,110,114,115,116,118,119,121,125,130,134,144,146,162,164,166,170,175,178,181,183,198,199,215,217,219,222,229,233,236,237,245,248,251,264,274,278,284,290,296,314,333,341,354,358,366,373,380,384,390,392,394,402,404,406,407,411,420,425,435,440,460,462,468,470,473,474,476,478,480,481,482,484,489,491,496,497,519,522],format_:222,format_account_kei:222,format_account_permiss:222,format_account_typeclass:222,format_alias:222,format_attribut:222,format_available_protfunc:406,format_callback:258,format_channel_account_sub:222,format_channel_object_sub:222,format_channel_sub_tot:222,format_char:222,format_current_cmd:222,format_destin:222,format_diff:407,format_email:222,format_exit:222,format_extern:236,format_grid:[0,496],format_help:274,format_help_entri:229,format_help_index:229,format_hom:222,format_kei:222,format_loc:222,format_lock:222,format_log_ev:489,format_merged_cmdset:222,format_messag:236,format_nattribut:222,format_output:222,format_permiss:222,format_script:222,format_script_desc:222,format_script_is_persist:222,format_script_timer_data:222,format_send:236,format_sess:222,format_single_attribut:222,format_single_attribute_detail:222,format_single_cmdset:222,format_single_cmdset_opt:222,format_single_tag:222,format_stored_cmdset:222,format_styl:495,format_t:496,format_tag:222,format_text:245,format_th:222,format_typeclass:222,format_usag:274,formatt:[0,298,384,406,480,481],formcallback:[91,384],formchar:[162,479],formdata:[91,384],former:[18,122,176,183,296,480],formfield:492,formhelptext:384,formset:[505,512],formstr:162,formtempl:[91,384],formul:179,fort:0,forth:[12,20,222,315],fortress:170,fortun:[11,23,94,123,133,138,157,164],forum:[0,11,64,117,118,121,142,143,161,181,197,198,201],forward:[6,15,16,27,28,125,128,141,142,163,164,174,176,197,201,208,211,238,303,380,394,401,410,465,468,470,471,479,481,488],forwardfor:187,forwardmanytoonedescriptor:[401,410,488],forwardonetoonedescriptor:[401,410,488],foster:19,foul:41,found:[0,6,8,10,11,13,14,15,16,17,19,20,21,23,28,31,32,33,37,38,39,41,46,48,49,50,51,53,54,58,62,64,65,73,75,77,80,89,98,113,116,117,119,121,123,124,126,130,131,132,133,134,135,137,138,144,146,147,153,157,158,159,161,162,168,169,175,179,180,181,183,196,197,199,200,201,202,205,208,210,212,213,214,215,217,222,227,230,231,234,236,245,258,260,261,287,341,342,343,344,354,358,376,392,394,398,400,402,405,406,407,409,412,415,419,420,426,435,438,449,459,461,468,469,470,471,473,474,475,476,480,482,483,487,491,493,496,525],foundat:[121,130,159,181,312],four:[16,20,36,60,62,67,90,119,123,137,146,148,157,167,170,216,238,320,398],fourth:157,fqdn:197,fractal:160,fraction:142,frame:51,framework:[0,49,51,52,53,56,117,122,143,149,151,178,201,233,312,315,492,516,517,519,521,522,548],frankli:72,free:[5,9,28,31,46,64,75,80,96,101,104,111,117,118,121,122,130,140,142,147,155,161,175,176,178,181,197,277,287,313,354,390,406],freed:201,freedn:197,freedom:[1,16,142,158,193],freeform:[81,142,146,147,290],freeli:[116,181,192,199,474],freenod:[189,197,209,227,461],freetext:[35,237,493],freez:[6,23,94,155,260],french:64,frequenc:[7,353],frequent:[94,169,245],fresh:[11,21,89,116,133,162,190,420],freshli:170,fri:55,friend:[118,126,140,143,162,167,199],friendli:[80,110,118,119,135,178,180,211,358],friendlier:[236,402],frighten:314,from:[0,1,3,4,5,6,7,9,10,11,12,13,14,15,16,17,18,19,20,21,23,24,25,27,29,30,32,33,34,35,36,37,39,40,41,42,44,45,46,47,48,49,50,52,53,54,55,56,57,58,60,62,63,64,65,67,69,70,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,122,124,125,126,127,129,130,131,132,133,134,136,137,138,140,141,142,143,144,146,147,149,151,152,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,179,181,182,183,185,187,188,189,190,191,193,195,196,198,199,200,201,202,203,205,206,208,209,210,211,212,213,214,215,216,217,219,220,221,222,227,228,229,230,231,232,233,234,236,237,238,245,248,251,255,260,261,264,270,271,274,277,278,279,280,282,284,287,290,293,296,297,298,300,303,306,309,312,313,314,315,316,320,326,329,333,335,336,341,342,343,344,347,350,353,354,357,358,368,374,375,376,380,381,382,384,386,390,392,393,394,397,398,399,400,401,402,406,407,409,410,411,412,414,415,417,420,424,425,426,427,429,430,431,432,433,437,438,439,440,443,448,449,451,452,454,458,459,460,461,463,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,481,482,483,484,487,488,489,490,492,493,494,495,496,497,499,500,505,506,512,514,516,517,519,522,525,527,536,542,544,547,548],from_channel:209,from_db_valu:492,from_nod:480,from_obj:[58,65,166,172,208,209,217,300,366,402],from_pickl:477,from_prototyp:0,from_tz:497,frombox:429,fromstr:429,fromtimestamp:[321,484],front:[12,15,33,41,51,125,126,130,135,146,150,168,182,199,201,204,236],frontend:[49,111,390,468],frontpag:[50,53,131,137,205,206,502,503,513],frost:141,frozen:[23,155,261],fruit:[103,117,309],ftabl:496,ftp:[75,495],fuel:[110,141,152,315,358],fugiat:29,fulfil:[85,133,138,143,420],full:[0,1,5,8,10,11,12,15,16,17,18,20,23,26,28,30,33,34,37,39,41,42,44,47,48,56,58,68,69,71,73,77,78,85,89,90,93,94,104,110,111,112,113,114,116,117,118,119,121,122,123,124,126,128,130,131,135,136,141,142,144,146,147,148,151,152,153,161,162,165,170,171,174,175,178,179,183,184,190,191,192,197,201,203,209,214,216,217,221,222,227,229,231,232,233,236,245,254,270,274,278,282,284,287,296,306,315,320,341,343,344,350,353,354,358,373,390,398,400,407,411,432,438,451,461,462,468,470,474,478,480,482,483,494,496,548],full_desc:279,full_justifi:41,full_nam:36,full_result:347,full_system:[89,201,205,206,239,548],fullchain:187,fuller:162,fullest:143,fullfil:400,fulli:[0,7,14,23,28,57,64,67,89,116,121,123,127,144,162,168,197,199,203,208,237,353,398,402,413,448,460,476,496],fun:[1,7,128,140,141,142,151,166,170,181],func1:[222,398,452],func2:[222,398,452],func:[0,6,23,27,28,30,33,54,58,65,80,84,94,114,119,126,132,134,137,144,146,147,152,153,154,155,156,158,160,162,163,166,167,168,169,174,175,188,201,213,217,219,220,221,222,227,228,229,230,231,232,233,234,245,251,255,259,270,273,274,277,287,290,293,296,297,300,303,306,309,312,313,314,315,316,320,326,329,335,347,354,368,370,374,375,376,384,390,397,398,402,431,451,452,456,465,478,480,481,483,484,494,496,545],func_test_cmd_task:233,funcdef:483,funciton:315,funcnam:[28,30,32,71,132,201,398,405,406,415,480,483,496],funcpars:[0,24,41,58,65,71,120,170,200,201,205,206,405,461,472,496],funcparser_cal:[405,483],funcparser_callable_add:483,funcparser_callable_center_justifi:483,funcparser_callable_choic:483,funcparser_callable_clr:483,funcparser_callable_conjug:483,funcparser_callable_crop:483,funcparser_callable_div:483,funcparser_callable_ev:483,funcparser_callable_justifi:483,funcparser_callable_left_justifi:483,funcparser_callable_mult:483,funcparser_callable_pad:483,funcparser_callable_pronoun:483,funcparser_callable_pronoun_capit:483,funcparser_callable_randint:483,funcparser_callable_random:483,funcparser_callable_right_justifi:483,funcparser_callable_round:483,funcparser_callable_search:483,funcparser_callable_search_list:483,funcparser_callable_spac:483,funcparser_callable_sub:483,funcparser_callable_toint:483,funcparser_callable_y:483,funcparser_callable_you_capit:483,funcparser_escape_char:201,funcparser_max_nest:201,funcparser_outgoing_messages_modul:[201,461],funcparser_parse_outgoing_messages_en:[71,201],funcparser_prototype_parsing_modul:201,funcparser_start_char:201,function_nam:232,function_or_method:496,functioncal:429,functionnam:[30,429],functionpars:[30,406],functool:195,fundament:[23,37,132,133,135,136,142,161,201,402],fur:297,furnac:[296,297],furnitur:[15,46,48],furst:358,further:[5,6,9,12,19,20,21,30,31,41,44,48,49,61,65,67,75,85,96,116,117,119,124,125,133,137,144,150,158,159,161,168,169,170,192,197,200,201,203,216,222,312,314,316,342,344,353,407,420,444,496],furthermor:[119,176],fuss:192,futur:[12,14,27,36,54,115,119,124,125,127,128,134,135,139,140,143,144,145,148,150,158,162,163,175,183,195,219,261,297,333,375,425,469,490,497],futurist:163,fuzzi:[31,210,227,296,393,400,493,496],fuzzy_import_from_modul:496,gadea:75,gag:[184,201],gagprompt:201,gain:[7,104,125,130,139,140,144,155,201,217,232,238,314,354,398,402],galosch:353,gambl:[28,347],game:[2,3,4,5,6,7,8,9,13,15,16,17,18,21,23,24,25,26,27,28,29,30,33,35,36,37,39,40,41,44,45,46,47,48,49,50,51,52,54,57,58,60,63,64,65,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,85,86,87,90,91,92,93,95,96,98,103,104,105,108,111,112,113,114,116,117,118,119,120,122,123,124,126,127,128,129,130,131,133,134,135,136,137,138,139,141,144,145,147,148,149,150,151,152,153,154,155,156,158,160,164,165,166,168,169,171,172,174,177,178,179,180,182,183,184,186,187,188,189,191,193,195,196,198,199,201,202,203,205,206,207,208,209,210,211,213,215,216,217,219,220,221,222,226,227,228,229,232,233,234,235,236,237,238,239,245,251,252,254,255,259,260,261,262,274,275,277,278,279,282,285,287,290,295,297,303,312,313,314,315,316,318,320,329,336,338,341,342,343,344,347,350,353,354,368,373,376,384,386,390,392,393,394,399,400,401,402,409,410,412,413,416,420,422,423,424,425,431,432,437,439,440,443,444,451,452,453,458,459,461,469,470,471,474,475,476,478,479,484,487,489,494,496,504,505,512,517,522,529,545,548],game_dir:[4,201,489,496],game_epoch:[20,484],game_index_cli:[205,206,416],game_index_en:[0,185,201],game_index_list:[185,201],game_nam:[185,201],game_slogan:[53,124,201],game_statu:[185,201],game_system:[77,81,84,85,92,97,101,103,112,118,201,205,206,239,548],game_templ:[53,131,196,201],game_websit:[185,201],gamedir:[0,28,41,53,116,125,201,420,466,494],gamedirnam:162,gameim:[117,548],gameindexcli:423,gamemap:98,gameplai:[75,117,125,127,142,197,277],gamer:[186,189],gamesrc:[0,20],gametim:[20,30,86,90,117,120,165,201,205,206,250,251,261,320,472,548],gametime_to_realtim:251,gametimescript:251,gameworld:134,gammon:[181,435],gandalf:28,garbag:468,garbl:[104,117,141],garden:181,garment:[81,290],gate:[31,113,116,140,342],gatekeep:31,gatewai:[203,449],gather:[10,23,31,52,65,151,177,184,201,213,214,376,418,422,476,493],gaug:[141,205,239,345,356,357],gaugetrait:358,gave:[0,122,133,152,169,176,499,501],gbg:473,gcc:[135,136,193,195],gcreat:222,gear:[9,151,197,209,216,234,255],gemb:75,gemer:[105,386],gen:18,gender:[58,92,117,300,483,500],gendercharact:[92,300],gendersub:[205,206,239,285,548],gener:[4,7,9,10,14,19,21,23,24,26,28,31,33,36,39,41,42,44,46,50,51,53,54,55,60,64,65,67,68,75,76,77,78,79,81,82,83,84,85,86,87,88,89,90,91,92,93,94,96,97,98,99,100,101,102,103,104,106,107,108,109,110,111,112,113,114,115,116,117,118,119,121,122,124,125,126,128,132,137,138,139,140,141,144,146,147,153,155,159,161,162,163,165,170,176,179,183,187,195,197,200,201,205,206,208,209,210,212,217,218,219,222,229,230,231,233,234,236,243,245,255,261,273,274,277,279,280,287,290,296,297,300,303,306,312,313,314,315,316,320,326,329,335,342,347,353,354,368,370,373,374,376,380,381,384,385,386,387,390,393,394,398,400,402,404,406,407,409,431,438,440,443,444,448,451,459,460,461,465,468,471,472,473,475,476,478,481,482,483,484,489,491,492,496,520,521,522,528,536,540,541,542,544,545,546,548],general_context:[201,205,206,502,526],generalviewsetmixin:522,generate_prototype_kei:342,generate_sessid:438,generic_mud_communication_protocol:444,genericbuildingcmd:[80,245],genericbuildingmenu:245,genesi:197,geniu:[103,309],genr:[118,122,434],genuin:142,geoff:[114,117,274],geograph:74,geographi:157,geoip:380,geometr:170,geometri:170,get:[0,1,5,6,7,8,9,10,11,12,13,14,15,17,18,19,21,23,26,27,30,31,32,33,34,35,36,40,42,44,45,46,48,49,51,53,54,55,56,58,60,62,64,65,67,68,73,77,80,83,85,87,89,95,96,97,104,105,106,108,109,110,111,112,113,115,116,117,119,121,122,124,125,126,127,131,132,133,134,135,136,137,138,139,140,141,142,143,144,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,166,167,168,169,170,172,174,175,176,178,179,182,183,185,186,188,189,191,192,193,195,197,199,200,201,202,203,208,209,210,211,215,216,217,219,220,222,223,227,228,229,234,236,237,238,245,258,260,261,264,277,279,280,282,290,303,309,312,313,316,329,333,335,339,341,342,343,344,347,354,357,358,363,368,370,375,376,386,390,392,393,394,398,400,401,402,404,406,407,409,410,412,415,418,420,425,429,430,434,438,440,443,444,446,448,449,457,459,460,461,463,468,469,470,471,473,474,475,478,480,482,483,484,486,487,489,490,491,493,496,499,501,504,506,509,510,514,516,519,521,536,544,545,548],get_absolute_url:[179,236,394,470],get_account:[398,459],get_account_from_email:210,get_account_from_nam:210,get_account_from_uid:210,get_al:468,get_alia:469,get_alias:519,get_all_attribut:468,get_all_cached_inst:487,get_all_categori:393,get_all_channel:237,get_all_charact:280,get_all_cmd_keys_and_alias:215,get_all_cmdset:496,get_all_lockfunc:0,get_all_mail:303,get_all_puppet:208,get_all_script:409,get_all_scripts_on_obj:409,get_all_sync_data:461,get_all_top:393,get_all_typeclass:[0,496],get_and_load_cmdset:514,get_and_load_typeclass:514,get_and_merge_cmdset:216,get_app_list:527,get_attack:[312,313,314,316],get_attr:222,get_attribut:[469,519],get_browserstr:449,get_buff:478,get_by_alia:469,get_by_attribut:469,get_by_nick:469,get_by_permiss:469,get_by_tag:469,get_cach:468,get_cache_kei:463,get_cached_inst:487,get_callback:261,get_channel:237,get_channel_alias:227,get_channel_histori:227,get_charact:459,get_client_opt:425,get_client_s:459,get_client_sess:[448,449],get_client_sessid:449,get_cmd_signatur:279,get_command_info:[0,217,230],get_components_with_symbol:341,get_connected_account:210,get_cont:[400,519],get_content_nam:402,get_context_data:[53,541,544,545,547],get_damag:[312,313,314],get_db_prep_lookup:492,get_db_prep_valu:492,get_dbref_rang:[210,400,409,469],get_def:414,get_default:492,get_defens:[312,313,314,316],get_direct:[116,342],get_display_nam:[6,30,58,80,94,95,104,116,162,167,208,333,344,354,402,470],get_display_symbol:[116,342],get_err_msg:[33,128],get_ev:261,get_evennia_pid:496,get_evennia_vers:496,get_event_handl:264,get_exit:[116,343,519],get_exit_spawn_nam:[116,342],get_extra_info:[217,402,470],get_famili:[48,130],get_fieldset:509,get_form:[504,506,509,510],get_formatted_obj_data:222,get_formset:[505,512],get_game_dir_path:496,get_height:482,get_help:[23,31,164,217,233,259,274,279,480],get_help_categori:544,get_help_text:464,get_help_top:544,get_hint:282,get_id:[178,414,469],get_info_dict:[437,458],get_initi:547,get_input:[0,480,494],get_inputfunc:[68,425,444,461],get_internal_typ:492,get_kwarg:537,get_linked_neighbor:342,get_location_nam:[115,333],get_log_filenam:236,get_map:[116,343],get_mass:167,get_message_by_id:237,get_messages_by_receiv:237,get_messages_by_send:237,get_min_height:482,get_min_width:482,get_msg_by_receiv:35,get_msg_by_send:35,get_new:439,get_new_coordin:333,get_next_by_date_join:211,get_next_by_db_date_cr:[211,238,394,401,410,468,470],get_next_wait:264,get_nick:[469,519],get_nicklist:[209,432],get_node_from_coord:341,get_numbered_nam:402,get_obj_coordin:333,get_object:[282,522,541,544,547],get_object_with_account:[400,493],get_objs_at_coordin:333,get_objs_with_attr:400,get_objs_with_attr_match:400,get_objs_with_attr_valu:400,get_objs_with_db_properti:400,get_objs_with_db_property_match:400,get_objs_with_db_property_valu:400,get_objs_with_key_and_typeclass:400,get_objs_with_key_or_alia:400,get_oth:287,get_permiss:[469,519],get_pid:420,get_player_count:434,get_posed_sdesc:354,get_posit:279,get_previous_by_date_join:211,get_previous_by_db_date_cr:[211,238,394,401,410,468,470],get_puppet:[13,208,459],get_puppet_or_account:459,get_queryset:[541,542,544],get_rang:316,get_recently_connected_account:210,get_recently_created_account:210,get_redirect_url:542,get_respons:530,get_room:[116,343],get_room_at:157,get_rooms_around:157,get_sdesc:[0,354],get_serializer_class:522,get_sess:461,get_session_id:519,get_short_desc:279,get_shortest_path:[116,341],get_spawn_xyz:342,get_stat:133,get_statu:430,get_subscript:237,get_success_url:547,get_sync_data:460,get_system_cmd:215,get_tag:[469,519],get_tag_queri:516,get_time_and_season:320,get_typeclass_tot:469,get_uptim:434,get_url:509,get_username_valid:[0,208],get_valu:[68,425,444],get_value_displai:519,get_vari:[258,261],get_view_detail:520,get_visible_cont:402,get_visual_rang:[116,341],get_weight:342,get_width:482,get_wilderness_script:332,get_worn_cloth:290,get_xyz:[116,344],get_xyz_exit:[116,344],get_xyzgrid:[116,343],getattr:34,getbootstrap:56,getchild:465,getclientaddress:[62,440],getcwd:201,getdefaultencod:544,getel:51,getenv:[201,420,430],getgl:51,getinput:480,getkeypair:440,getloadavg:191,getlogobserv:489,getobject:75,getobjectacl:75,getpeer:440,getpid:496,getportallogobserv:489,getserverlogobserv:489,getsizof:487,getsslcontext:[441,445],getstartedwiths3:75,getston:23,getter:[37,211,238,290,313,316,354,401,402,427,468,501],gettext:64,gfg:473,ghost:31,ghostli:376,giant:152,giantess:133,gid:[7,192,452],gidcount:451,gift:164,gig:142,girl:[125,402],gist:[53,353,496],git:[2,5,11,64,67,69,119,124,153,181,183,190,191,192,196,197,202,548],github:[0,1,2,5,64,84,89,95,118,119,124,131,140,153,161,181,190,191,193,198,245,293,429,448,465,496,548],gitignor:12,give:[0,1,5,7,8,10,11,13,14,15,17,19,20,23,26,28,29,33,37,39,41,42,44,45,46,47,48,50,53,54,55,57,58,68,70,74,77,80,94,95,96,98,104,105,111,112,113,115,116,117,119,121,122,123,124,125,126,127,128,130,131,132,133,134,135,136,137,138,139,140,141,143,145,146,147,149,151,152,153,156,157,158,161,162,163,164,165,167,168,169,170,171,172,175,178,179,181,183,191,192,193,195,197,198,199,201,203,208,213,215,216,219,222,227,228,230,236,237,245,277,279,280,282,290,297,312,313,314,315,316,320,333,341,342,353,368,370,376,386,390,400,402,409,410,424,446,452,459,465,468,473,480,482,493,494,496,499,501,519],given:[0,1,6,7,8,10,13,14,15,16,20,21,23,24,27,28,30,31,32,33,34,35,37,39,41,42,44,47,48,53,54,55,58,59,60,64,65,67,68,70,73,74,79,80,84,86,89,91,94,95,96,100,103,110,111,116,117,119,122,123,126,128,129,132,133,135,136,138,141,142,146,147,152,153,157,159,162,163,168,171,175,176,178,179,192,194,197,201,203,208,210,213,214,215,216,217,219,220,222,227,229,231,232,233,236,237,238,245,251,254,255,258,260,264,270,274,277,279,280,282,284,290,293,296,297,300,309,312,313,314,315,316,320,326,335,341,342,343,344,347,350,353,354,358,366,368,375,376,384,386,390,395,397,398,400,402,404,406,407,409,411,412,413,415,418,420,425,426,429,438,443,444,449,452,455,459,460,461,462,463,464,465,468,469,470,471,473,474,476,477,478,479,480,481,482,483,484,487,489,491,492,493,494,496,499,500,501,504,517,525,528,541,542,544],given_class:524,giver:[109,117,141,313,316,402],glad:169,glade:[116,132],glanc:[20,21,23,80,104,157,162,169,245,354],glance_exit:80,glass:[106,309,368],glob:[28,228,480],global:[0,7,12,15,23,25,28,30,32,37,41,42,44,47,48,51,69,74,75,80,85,90,94,116,122,125,137,139,140,160,168,173,177,187,200,201,222,236,261,281,296,320,326,335,343,354,386,400,402,407,408,409,410,414,417,420,425,427,430,451,452,474,475,476,480,483,484,493,494,496,529],global_script:[0,24,201,205,475],global_search:[15,20,80,162,169,208,354,402,469],globalscriptcontain:475,globalth:494,globe:[151,197],glori:138,glorifi:[110,358],gloriou:130,glossari:193,glow:170,glu:40,glyph:429,gmcp:[0,32,65,444],gmsheet:162,gmt:[75,132,489],gmud:184,gno:80,gnome:[64,184],gnu:16,go_back:[390,480],go_up_one_categori:390,goal:[42,113,119,140,143,144,169,181,199,353,548],goals_of_input_valid:536,goblin:[28,41,132,222,407],goblin_arch:407,goblin_archwizard:407,goblin_wizard:407,goblinwieldingclub:41,god:[31,39,128,190,392],godhood:[125,127],godlik:[104,354],goe:[1,6,23,24,42,62,67,80,96,115,116,122,124,136,142,146,155,159,164,172,174,175,191,197,201,215,216,279,282,316,333,341,342,402,440,443,458,459,495,496,547],goff:[94,105,117,386],going:[1,28,30,50,53,62,68,80,94,95,96,104,116,128,130,133,135,137,140,142,147,149,153,159,162,163,164,167,169,170,174,178,186,187,192,197,201,245,312,313,314,315,316,333,354,368,373,376,402,417,422,473,480,519],goings:422,gold:[28,41,136,141,167,168,474],gold_necklac:14,gold_val:168,gold_valu:168,goldenlayout:24,goldenlayout_config:51,goldenlayout_default_config:51,gone:[33,55,94,128,133,135,137,138,142,158,168,192,201,280,341],good:[1,7,8,9,10,12,13,14,16,19,20,21,23,28,30,33,35,36,41,42,48,50,53,55,60,62,77,80,83,84,85,94,95,96,113,117,118,119,121,123,124,125,126,128,130,131,135,140,141,142,143,144,145,146,152,153,157,159,160,161,164,165,168,169,170,174,175,176,178,179,181,185,189,190,193,197,199,201,203,208,215,216,217,233,260,287,293,339,354,443,452,480,483],goodby:[28,440],goodgui:398,googl:[0,75,119,191,197,201,227,482],googlegroup:40,googli:[53,151],gorgeou:116,gossip:[186,201,227],got:[0,11,12,15,49,54,111,126,133,134,135,136,147,375,390],goto_cal:[28,480],goto_cleanup_cmdset:373,goto_command_demo_comm:373,goto_command_demo_help:373,goto_command_demo_room:373,goto_kwarg:480,goto_next_room:174,gotostr_or_func:480,gotten:[121,143,316,354,375,402,447],gpath:201,gpl2:499,graaah:171,grab:[14,23,26,46,126,128,146,178,228,375,519,547],gracefulli:[1,219,232,354,402,420,496],gradual:[0,15,16,104,110,140,141,155,353,358],grai:[60,176,201],grain:[47,210,476],gram:167,grammar:[58,104,279,353],grammat:[58,104,143,353,354],grand:[14,31,98],grant:[12,24,33,39,57,183,238,312,316,397,398,406,468,517,540,546],granular:316,grapevin:[0,181,201,202,205,206,209,227,416,428,548],grapevine2chan:[26,31,126,186,201,227],grapevine_:227,grapevine_channel:[186,201,209,227],grapevine_client_id:[186,201],grapevine_client_secret:[186,201],grapevine_en:[186,201,227],grapevinebot:209,grapevinecli:431,graph:[12,159,341],graphic:[0,6,11,33,34,49,50,52,65,73,125,127,143,162,170,205,255,350,444],grasp:[176,178],grave:113,grayscal:[82,201,248],great:[16,28,30,31,42,45,50,56,69,75,80,85,91,94,96,113,116,117,118,123,135,140,143,146,152,155,157,161,164,169,175,179,181,245,314,384,465],greater:[8,21,33,44,80,130,397,480],greatli:[94,180],greek:17,green:[12,21,33,41,60,116,135,176,201,222,232,279,315,375,473],greenforest:116,greenskin:407,greet:[25,44,94,95,124,171,200],greetjack:36,greg:[0,181],grei:[41,116,176,473],grenad:37,grep:[12,191],greyscal:[60,473],greyskinnedgoblin:41,griatch:[0,67,77,78,79,82,85,86,87,88,89,90,92,99,100,101,102,104,106,107,108,109,110,113,116,117,126,130,152,247,248,250,251,253,255,269,270,276,286,287,295,296,299,300,303,305,306,312,313,315,319,320,325,326,328,329,334,346,347,352,353,354,356,358,360,362,363,365,367,368,369,370,372,373,375,479,487,492,495,499,500],grid:[0,56,90,98,107,108,115,125,170,175,202,205,206,229,239,316,496,548],gridmap:116,gridpoint:[339,341],gridsiz:339,grief:55,griefer:179,grin:[23,141,468,483,501],grip:[119,297],gritti:23,ground:[94,113,121,125,128,130,134,152,170],group:[0,1,14,19,23,26,31,41,46,48,50,54,55,57,74,76,94,95,104,122,123,124,125,126,127,132,137,142,152,169,192,201,210,211,218,222,228,229,236,237,309,320,353,375,376,402,406,407,429,452,468,471,473,476,504,512],groupd:468,grow:[1,15,19,121,130,134,140,141,153,181,203,341,358,431,432,482,496],grown:[28,72,124,153],grudg:146,grungi:302,grungies1138:[97,109,117,303,369,370],grunt:[222,407],gsg:75,gstart:222,gthi:166,gtranslat:64,guarante:[14,39,42,67,87,118,141,187,197,261,347,406,438,459,470,483],guard:[28,116,142,297,342],guardian:113,guess:[17,27,70,80,95,164,169,199,245,407],guest1:[63,201],guest9:[63,201],guest:[0,39,61,120,201,208,548],guest_en:[39,63,201],guest_hom:[63,178,201],guest_list:[63,201],guest_start_loc:[63,201],guestaccount:46,gui:[0,51,52,65,142,161,201,303],guid:[4,11,88,99,151,166,178,516],guidelin:[119,181],guild:[0,19,67,89,117,142,172,181,227],guild_memb:28,gun:[58,152],gun_object:58,guru:121,gush:94,gzip:243,habit:160,habitu:47,hack:[121,146,147,429],hacker:[181,199],hackish:0,had:[1,11,12,16,17,21,42,57,73,85,118,121,124,125,127,128,130,133,134,135,136,140,142,152,155,175,182,192,197,217,221,233,277,290,342,375,407,410,420,470,474,481,499,501,536],hadn:[12,140,163],hair:297,half:[69,394],hall:[31,159],hallwai:159,halt:170,hammer:[85,296,297],hand:[17,28,36,37,44,58,62,69,77,94,98,117,118,121,130,134,136,139,141,146,160,161,162,179,217,222,228,230,232,287,297,519],hander:130,handi:[6,135,178,191,314],handl:[0,7,8,11,13,14,15,17,19,20,23,27,28,30,32,33,36,37,44,47,48,51,52,53,58,61,62,65,67,68,69,72,75,76,77,80,85,94,96,106,109,116,118,120,121,122,123,124,125,126,130,131,132,134,135,136,137,139,140,143,144,147,158,159,160,163,168,169,171,176,177,182,184,187,191,192,200,201,202,208,209,210,212,213,215,216,222,223,227,228,231,236,255,261,264,273,274,279,284,287,296,297,312,313,314,315,316,320,326,335,342,354,368,370,375,376,381,390,391,392,401,402,405,406,407,410,411,414,417,420,424,425,429,430,432,433,440,443,444,447,449,451,460,461,468,470,473,474,476,477,478,480,481,482,484,487,495,496,505,512,530],handle_answ:28,handle_appli:279,handle_consum:279,handle_egd_respons:422,handle_eof:440,handle_error:[227,261,414],handle_ff:440,handle_foo_messag:480,handle_int:440,handle_messag:480,handle_mix:279,handle_numb:480,handle_posit:279,handle_quit:440,handle_setup:[201,424],handler:[0,13,14,21,23,24,33,34,35,36,37,39,42,44,46,47,48,65,67,83,84,94,110,117,122,125,131,132,133,141,146,200,201,208,213,216,231,235,238,258,261,262,264,282,287,293,333,354,357,358,374,397,398,401,402,407,411,412,414,415,425,437,438,458,461,467,468,470,471,475,476,479,480,490,491,496,505,512,544],handlertyp:471,handshak:[29,65,184,430,436,438,443],handshake_don:443,hang:[46,119,136,140,143,149],happen:[0,1,6,7,8,11,19,20,21,23,28,30,33,39,42,44,45,47,52,53,55,57,65,67,68,69,84,86,87,94,96,116,117,121,122,126,128,133,134,135,142,143,144,146,147,157,158,161,162,163,169,170,175,176,178,185,189,197,201,203,208,215,216,227,236,251,279,281,282,293,312,316,329,333,341,374,376,402,407,414,422,429,432,452,457,459,460,461,470,480,481,487,489,496,517],happend:407,happi:[15,141,142,480],happier:169,happili:[19,126],haproxi:[197,202],hard:[1,7,8,12,15,17,20,21,23,30,31,41,42,46,47,54,57,62,64,68,75,91,111,119,122,124,130,131,133,136,137,140,143,144,162,174,178,192,193,195,197,231,384,390,410,420,468,470,480],hardcod:[74,133,161,162,170,192,468],hardcor:116,harden:195,harder:[7,55,116,130,133,140,142,144,160,375],hardwar:[197,433],hare:181,harm:[14,113,144,155,314],harsh:142,harvest:542,has:[0,4,6,7,8,10,11,12,13,14,15,16,17,19,20,21,23,27,28,30,31,32,33,35,36,37,39,41,42,44,45,46,47,48,49,50,51,53,54,55,56,57,58,60,62,64,65,67,68,70,72,73,75,76,77,79,80,84,89,91,94,95,96,97,98,103,104,110,111,112,116,117,118,119,120,121,122,123,124,126,128,129,130,132,133,134,135,136,137,138,141,142,143,144,147,148,151,152,153,154,155,157,158,159,160,161,162,163,164,168,169,171,172,174,175,176,177,178,179,180,181,182,183,185,186,187,188,191,192,195,196,197,199,200,201,203,204,207,208,209,214,215,216,217,219,221,222,227,229,230,232,233,234,236,237,238,243,245,251,255,261,274,277,279,287,293,296,303,309,312,313,314,315,316,320,333,339,341,342,343,344,347,354,358,363,368,374,375,376,384,386,390,392,394,397,398,400,401,402,406,407,409,410,413,414,415,420,422,425,429,432,434,438,442,447,448,452,458,459,460,461,463,468,469,470,471,476,478,479,480,482,483,487,489,490,493,494,496,501,504,505,512,516,517,522,536,537,544,546,547],has_account:[37,374,397,401,402],has_add_permiss:504,has_attribut:468,has_cmdset:216,has_connect:[19,236],has_consum:279,has_delete_permiss:504,has_drawn:159,has_nick:468,has_object_permiss:517,has_par:496,has_perm:[230,398],has_permiss:517,has_sharp_edg:46,has_sub:236,has_tag:471,has_thorn:[14,137],hasattr:[23,154],hasbutton:279,hash:[16,41,75,116,197,407,415,448,452,461,469],hasher:7,hasn:[80,159,375,386,468,512,543],hassl:163,hast:314,hat:[81,290],hau:[186,201,209,227,431],have:[0,1,3,4,6,7,8,9,10,11,12,13,14,15,16,17,19,20,21,23,25,27,28,30,31,32,33,34,35,36,37,39,40,41,42,44,46,47,48,50,51,52,53,54,55,56,57,58,60,62,63,64,65,67,68,69,70,72,73,74,75,76,77,80,81,83,85,88,89,90,91,92,94,95,96,101,104,106,110,111,113,114,116,117,118,119,121,122,123,124,125,126,128,129,130,132,133,134,135,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,176,177,178,179,180,183,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,203,208,209,213,215,216,217,219,222,224,227,230,231,232,233,234,236,237,238,245,251,255,260,261,264,270,274,279,280,287,290,293,296,297,300,306,312,313,314,315,320,341,342,353,354,358,368,376,380,381,384,386,390,392,393,394,395,397,400,401,402,405,406,407,408,409,410,413,414,415,425,430,433,434,438,440,443,444,458,459,460,461,466,467,468,469,470,471,473,474,475,476,477,479,480,481,482,483,489,492,493,494,496,497,499,501,505,512,517,519,522,527,529,536,544,545,547,548],haven:[6,10,11,41,75,80,98,116,123,126,130,155,163,170,171,172,173,178,179,187,463],havint:50,hay:75,head:[9,21,31,64,94,95,128,130,141,143,152,164,174,175,190,548],header:[0,15,16,20,30,31,35,37,50,64,72,119,124,126,135,167,193,199,201,217,229,237,238,303,354,402,474,476,481,482],header_color:222,header_fil:201,header_line_char:482,header_star_color:201,header_text_color:201,headi:482,heading1:[119,482],heading2:[119,482],heading3:119,headless:402,heal:[83,110,112,117,137,141,142,297,314,315,376],healing_rang:315,healingrecip:297,health:[0,34,41,68,83,110,117,132,141,142,146,147,156,197,297,349,350,351,357,358,407,444,548],health_bar:[93,205,206,239,345,548],healthi:358,hear:[19,95,140,155,494],heard:[138,170],heart:[31,133,176],heartbeat:[47,431],heat:297,heavi:[0,14,20,23,33,75,77,94,122,128,142,146,147,167,175,183,287,313,354,433,496],heavier:[42,313],heavili:[0,20,62,67,75,113,116,118,124,138,161,191,200,245,312,313,314,315,316,470],heed:[44,398],hei:[77,128,141,287,303,353],height:[0,29,32,51,201,205,341,425,440,459,479,482],hel:0,held:[21,89,147,341,397],hello:[19,28,30,32,36,44,65,68,69,72,95,96,104,119,125,127,136,141,142,155,169,175,189,227,228,236,354,425,473,494],hello_valu:69,hello_world:[69,135,136],helmet:[14,141,155],help:[0,6,7,10,12,14,15,16,17,19,20,22,23,24,25,26,27,28,30,33,39,41,42,44,45,46,49,51,53,55,57,58,64,67,69,70,77,80,85,89,91,94,95,96,97,104,106,113,114,116,119,120,122,123,125,126,127,129,131,133,134,135,137,138,140,141,142,143,147,155,157,158,159,161,162,165,169,170,175,176,178,183,187,188,189,190,197,201,203,205,206,212,213,215,217,218,219,227,230,232,233,234,251,255,258,259,261,274,277,279,282,287,293,303,312,313,314,315,316,337,340,353,358,368,373,376,380,384,400,404,414,418,420,422,423,431,438,440,441,443,445,448,449,451,452,468,469,471,473,476,477,478,480,481,483,491,492,493,494,500,502,503,504,506,507,510,516,519,522,527,530,535,536,537,539,548],help_categori:[23,31,80,126,147,162,164,168,175,188,217,219,220,221,222,227,228,229,230,231,232,233,234,245,255,259,270,273,274,277,287,290,296,297,300,303,306,309,312,313,314,315,316,320,326,329,335,347,354,368,370,374,375,376,384,390,392,393,394,402,451,478,480,481,493,544],help_category_color:201,help_cateogori:478,help_clickable_top:201,help_detail:544,help_entri:[31,201,392,478,544],help_entry1:392,help_entry_color:201,help_entry_dict:[31,392],help_file_modul:392,help_kei:222,help_list:544,help_messag:229,help_mor:[201,229],help_more_en:[31,201],help_search_with_index:395,help_sstem:164,help_summary_text:89,help_system:164,help_text:[229,261,536],help_top:544,helpact:274,helparg:233,helpdetailtest:537,helpdetailview:544,helpentri:[31,33,49,164,229,392,393,394,476,508,519,541,544],helpentry_db_tag:508,helpentry_set:471,helpentryadmin:508,helpentryform:508,helpentrymanag:[393,394],helper:[0,10,28,30,39,41,57,94,104,110,116,117,126,129,130,133,134,137,142,162,201,205,208,216,219,222,227,229,237,245,251,279,284,296,298,312,316,340,342,343,344,353,358,402,406,407,417,429,430,449,461,474,480,481,483,489,494,495,496,506,514,520],helpfil:229,helpfilterset:[516,522],helplistseri:[519,522],helplisttest:537,helplistview:544,helplockeddetailtest:537,helpmixin:544,helppopup:201,helpseri:[519,522],helptaginlin:508,helptext:[0,28,404,480],helptext_formatt:[0,28,404,480],helpviewset:522,henc:[8,9,80,95,96,135,136,274,376,474],henceforth:[12,15,33,44,63,74,158,170,175,177,197,461],henddher:[103,117,308,309],hendher:0,her:[58,92,138,141,290,300,483,500,501],herbal:479,herd:183,here:[0,2,3,4,5,6,7,9,10,11,12,13,14,15,16,17,18,20,23,26,28,30,31,32,33,34,35,36,37,40,41,42,44,45,47,48,49,51,53,54,56,57,58,60,62,64,65,67,68,69,70,72,73,75,77,80,81,85,86,94,95,96,98,104,105,108,110,112,113,114,116,117,118,119,120,122,123,124,125,126,128,130,131,132,133,134,135,136,137,138,140,141,142,143,144,146,147,149,151,152,153,155,156,157,158,159,160,161,162,163,164,166,168,169,170,171,172,173,174,175,176,178,179,181,183,184,186,187,188,189,190,191,192,193,195,198,199,200,201,203,208,209,215,216,217,222,230,231,232,234,238,245,251,255,260,261,274,277,278,279,282,284,287,290,296,297,312,329,333,335,342,344,347,353,354,358,363,374,375,376,386,394,398,400,402,406,407,420,422,429,431,437,438,440,443,452,458,459,461,467,468,470,473,476,480,482,487,489,494,500,505,512,514,517,519,525,541,544,545,548],hereaft:141,herein:75,heroism:142,herself:[30,58,141,483,500,501],hesit:[80,157],hfill_char:482,hidden:[12,14,51,87,114,116,117,122,125,137,138,139,140,141,159,229,238,274,290,347],hide:[14,21,23,31,33,39,104,116,117,124,125,128,139,140,141,146,170,229,238,347,354,375],hide_from:[35,238],hide_from_accounts_set:211,hide_from_objects_set:401,hieararci:397,hierarach:471,hierarch:[13,39,57,219,397,471],hierarchi:[24,26,57,63,80,123,125,139,140,164,201,228,290,397,496,517],high:[21,39,58,116,121,123,128,130,136,138,182,193,201,215,296,297,315,402,462,471],higher:[7,11,19,21,28,33,39,44,49,57,69,104,116,130,133,141,144,146,153,158,160,162,163,175,193,197,201,208,215,219,222,232,312,316,342,353,376,397,422,471,480,496],highest:[21,39,110,162,358,473,496],highest_protocol:492,highli:[1,18,28,33,45,47,67,93,116,117,118,121,122,124,135,160,171,190,350,474,487],highlight:[16,60,119,161,162,176],hijack:[179,187],hill:[36,94],hilt:[142,297],him:[28,58,92,95,104,133,181,300,354,483,500],himself:[58,483,500,501],hint:[11,24,41,53,89,117,119,121,125,126,133,143,151,153,165,175,181,193,201,203,251,282,466,548],hire:[168,199],his:[28,30,41,58,92,95,104,141,162,181,290,300,354,481,483,495,500],histogram:496,histor:[23,42,72,125,163,419,489],histori:[0,12,19,27,51,91,122,123,128,135,142,162,183,192,216,227,236,384,489],hit:[0,29,83,112,124,125,134,138,146,147,152,155,201,209,296,312,313,314,315,316,374,375,418,459,489,492],hit_msg:374,hite:60,hitter:126,hnow:60,hoard:142,hobbi:[85,140,143,197],hobbit:163,hobbyist:197,hoc:121,hold:[0,1,4,8,9,13,15,16,21,28,31,33,37,41,44,46,48,56,63,74,94,109,110,111,116,117,119,122,124,125,126,132,133,140,144,146,147,151,152,159,162,168,170,175,178,192,193,200,201,215,216,239,245,279,282,290,296,297,312,313,314,315,316,347,358,370,374,375,386,390,391,395,397,398,406,407,408,411,416,427,429,438,448,449,451,461,470,471,472,476,479,480,482,483,485,489,496,502],holder:[124,197,468],hole:[94,142],home:[1,12,26,37,41,52,53,56,63,116,117,122,126,132,133,142,178,182,193,197,199,201,216,222,228,374,400,401,402,407,476,496],home_loc:222,homepag:[7,20,181,193,195,197],homes_set:401,homogen:[0,20,143,406,407,410],homogenize_prototyp:406,honcho:143,hong:75,honor:[0,142,354],honour:[75,117],hood:[11,19,23,28,30,36,41,42,48,67,83,99,102,110,114,117,122,128,130,133,140,141,161,274,296,354,357,358],hook:[0,13,19,23,24,32,33,37,42,45,47,85,94,104,116,133,146,147,153,156,159,166,171,172,173,174,175,177,201,203,208,213,215,217,219,222,227,228,230,232,233,234,236,238,243,252,261,277,279,283,290,296,298,309,312,313,314,315,316,317,320,326,329,333,335,339,342,354,355,357,364,366,373,374,375,376,381,386,402,410,413,415,424,431,443,446,448,451,456,458,459,460,462,470,478,481,483,487,488,490,496,506,509,510,520,536,540,541,542,544,547],hooligan:55,hop:121,hope:[6,138,142,162,169],hopefulli:[0,1,51,89,135,138,143,159,170,178,182,196,197],horizon:163,horizont:[0,341,375,482,496],hors:20,host1plu:197,host:[1,12,20,37,55,73,75,83,117,122,140,150,183,187,192,198,199,201,202,353,465,496],host_os_i:496,hostnam:201,hot:0,hotbutton:51,hotel:197,hotspot:199,hould:142,hour:[20,86,94,142,163,177,251,484,496],hous:[41,116,125,127,143,197,222,483],housecat:20,how:[0,1,5,6,7,8,9,10,11,12,14,15,16,17,18,19,20,21,24,25,26,28,30,33,34,35,36,39,41,42,44,46,49,50,51,52,53,54,55,57,58,61,62,63,65,67,68,69,73,74,75,80,84,85,89,92,94,95,96,104,105,108,110,111,112,113,115,116,117,119,121,122,123,125,126,127,128,130,131,132,133,134,135,136,137,138,139,140,141,143,144,146,147,148,149,150,151,152,153,154,155,156,157,159,160,161,163,164,165,166,167,168,169,170,171,172,173,175,176,177,178,179,182,183,187,189,190,191,193,195,197,199,200,201,202,203,209,210,214,216,217,229,231,232,233,236,245,251,277,279,282,290,293,296,297,300,314,315,316,329,333,341,342,343,344,347,353,354,358,368,374,386,390,395,397,401,402,407,410,415,420,425,430,434,439,444,447,451,452,458,459,460,461,465,470,474,478,480,481,482,483,489,490,496,505,506,508,511,512,536,548],howev:[0,11,13,14,15,16,17,18,21,23,27,30,33,41,42,47,48,50,54,55,58,60,62,68,69,70,72,73,80,91,93,94,95,96,111,116,117,119,121,123,128,133,135,137,141,142,144,146,155,156,158,162,163,168,169,170,173,175,177,183,197,201,203,216,217,222,229,232,233,245,261,315,350,368,384,386,390,397,473,519],howto:[119,548],hpad_char:482,href:[18,164,178],hrs:[201,251],htm:435,html40:201,html5:132,html:[0,51,52,60,73,75,119,121,122,125,126,132,150,151,164,170,179,181,184,199,201,217,232,236,274,386,392,394,442,444,448,449,465,470,492,495,496,516,525,540,541,542,544,545,547],htmlchar:495,htop:[7,203],http404:[164,179],http:[0,1,4,5,10,11,12,40,45,49,50,51,52,53,54,56,64,69,73,75,80,84,89,95,119,121,122,123,124,125,132,133,147,149,157,164,170,178,179,183,185,186,190,191,193,195,197,198,199,201,202,205,209,227,245,274,293,386,395,422,429,431,432,433,434,435,436,442,444,447,448,449,465,473,482,495,496,499,516,536,548],http_log_fil:201,http_request:[73,199,201],httpchannel:465,httpchannelwithxforwardedfor:465,httpd:182,httprequest:208,httprespons:[504,506,509],httpresponseredirect:178,huawei:197,hub:[31,181,192,237,476],hue:60,huge:[56,67,115,117,136,140,142,149,152,155,157,163,333,481],huh:[23,80],human:[7,55,62,87,110,117,122,123,125,139,140,146,161,168,171,178,296,358,542],humanizeconfig:123,hundr:[70,142,178,189],hung:143,hungri:67,hunt:[110,117,141,146,357,358,374],hunting_pac:374,hunting_skil:146,hurdl:159,hurri:134,hurt:[113,138,141,142,156,358],hwejfpoiwjrpw09:124,hybrid:[142,146],i18n:[0,64,131,201,402],iac:68,iam:75,iattribut:468,iattributebackend:468,ice:116,ice_and_fir:137,icon:9,iconv:64,id_:[506,508,510,512,536],id_str:34,idcount:451,idea:[1,5,9,10,12,23,31,33,45,50,53,55,69,89,94,96,112,113,118,119,121,124,130,132,135,136,140,141,142,143,144,145,146,157,159,160,164,168,174,175,178,179,188,189,201,217,229,230,233,287,353,407,487,495,546],ideal:[23,64,72,95,197,211,398],idenfi:215,ident:[0,8,10,14,21,23,37,60,65,94,104,124,126,141,158,161,203,208,230,326,354,398,400,402,409,473,474,494],identif:[20,47,461],identifi:[0,6,7,8,21,23,27,28,32,34,41,42,47,48,65,68,85,88,96,104,117,130,133,134,140,147,154,156,157,159,162,164,179,182,183,214,217,222,227,230,233,236,237,245,282,296,320,342,353,354,376,390,398,402,406,409,412,415,417,420,425,427,430,444,448,457,459,461,468,469,473,476,479,480,483,496],identify_object:237,idl:[44,55,201,208,209,374,402,452,459,461],idle_command:[23,201],idle_tim:[208,402],idle_timeout:[201,209],idmap:487,idmapp:[48,67,201,205,206,232,238,394,427,453,468,469,470,472],idmapper_cache_maxs:201,idnum:237,ids:[55,162,174,320,451,461,479],idstr:[34,47,411,415,457,496],idtifi:237,idx:174,ietf:436,ifconfig:187,ifier:[110,358],ifram:51,ignor:[0,6,10,12,16,19,20,21,23,28,30,31,32,33,39,44,48,60,65,67,119,126,128,132,136,144,146,155,162,169,171,174,183,194,197,201,208,214,215,216,217,222,320,335,341,342,344,354,397,401,402,415,420,425,431,432,447,448,449,468,470,473,474,479,480,491,494,496,497],ignore_ansi:496,ignore_error:208,ignorecas:[217,222,228,229,232,234,277,290,296,354,473,478,480,495],ignoredext:465,illog:94,illumin:170,illus:54,illustr:94,imag:[0,9,18,51,52,53,73,75,117,123,132,151,164,178,193,197,201,202,525],imagefield:0,imagesconfig:123,imagin:[16,21,28,85,95,112,126,134,138,140,143,144,147,155,171,177,368,474],imaginari:[152,170,181],imc2:0,ime:194,imeplement:333,img:18,immedi:[17,20,23,28,32,41,42,50,65,94,96,116,122,126,130,133,135,144,147,155,159,173,178,179,190,192,197,201,220,232,293,296,342,374,409,424,431,474,476,480,481],immers:85,immobil:153,immort:[94,374],immut:[14,415],impact:176,impass:[116,138],impati:193,imper:106,implement:[0,1,8,10,11,14,19,21,23,28,30,33,35,37,46,47,48,51,53,58,60,62,67,68,69,73,74,76,77,85,94,108,111,112,113,114,116,117,121,125,129,132,134,136,139,140,141,144,145,147,152,153,154,155,159,160,161,162,165,166,170,171,172,173,175,180,181,187,201,205,206,210,211,215,216,219,220,221,222,223,224,227,228,229,230,231,232,234,236,237,238,239,251,270,275,287,290,296,300,306,312,313,316,318,320,326,329,331,335,341,347,353,354,357,370,374,375,376,381,390,393,394,398,400,401,402,409,410,412,415,426,431,433,434,435,436,437,438,440,442,443,444,447,448,449,451,458,465,468,469,470,471,473,474,477,478,480,481,488,491,492,495,496,504,521,543,545],impli:[46,80],implic:76,implicit:[60,169,176],implicit_keep:407,impmement:398,impopular:142,import_cmdset:216,importantli:[19,28,128,133,141,178,398],importerror:[8,123,124,201,496],impos:[121,463],imposs:[0,17,28,57,70,94,116,119,159,170,174,178,197,342,406,482],impract:[23,41,116,407],imprecis:487,impress:[6,142,170],improv:[0,11,64,96,118,125,134,135,139,140,143,169],impur:297,in_game_error:[1,199,201],inabl:[195,199],inaccess:[33,96],inact:[89,279,374],inactiv:232,inadvert:316,inadyn:197,inarticul:69,inbuilt:[46,175],incant:191,incapacit:142,incarn:536,incid:[76,117,381],includ:[0,1,4,7,9,12,13,14,15,20,21,23,26,28,30,32,33,34,37,44,45,46,47,48,50,51,53,55,56,60,68,69,73,76,77,80,85,91,98,104,110,111,112,113,116,117,118,119,120,121,122,123,124,125,126,127,128,129,132,133,134,135,136,137,139,140,141,142,144,145,146,147,148,150,151,152,156,157,158,162,163,164,168,169,170,174,178,179,180,191,192,195,200,201,208,213,214,215,217,220,221,222,230,233,236,237,261,274,277,282,287,290,296,297,298,300,312,313,314,315,316,320,333,339,341,342,343,344,353,354,358,376,381,384,390,395,397,402,406,413,420,438,440,443,444,452,457,460,468,469,470,471,473,474,475,476,477,479,480,482,484,489,494,496,519,525,529,545,548],include_account:468,include_children:469,include_par:469,include_prefix:214,include_unloggedin:[438,461],inclus:[31,469,483],incoher:176,incol:[162,479,482],incom:[23,52,62,68,183,197,200,201,209,214,231,277,313,342,381,420,429,433,436,439,443,444,448,449,451,459,460,461,465,480,481,483,504,506,509,510,517],incompat:0,incomplet:[108,217,329,482],inconsist:[8,54,386],incorpor:[0,219,482],incorrect:237,increas:[0,33,39,48,60,77,110,116,117,130,133,141,146,163,199,201,287,313,315,316,342,358,376,432,438,452,478,480],increase_ind:478,incred:[111,390,422],increment:[195,468],incur:20,indata:[62,468],inde:[87,121,124,169,197],indefinit:[314,375,409,476],indent:[0,15,16,20,27,30,51,72,96,119,124,126,135,136,161,341,449,474,478,480,483,496],independ:[0,35,42,52,89,94,96,117,122,160,176,190,287,293,380],indetermin:422,index:[31,52,53,67,69,73,111,118,119,125,133,140,151,159,160,168,170,174,181,197,201,202,205,206,214,227,228,229,279,287,341,342,375,390,392,394,395,400,418,422,423,465,471,473,481,482,496,502,535,536,537,539,541,544,548],index_category_clr:229,index_to_select:390,index_topic_clr:229,index_type_separator_clr:229,indexerror:[115,179,333,469],indexread:279,indextest:537,indic:[10,28,35,58,80,92,94,96,111,116,117,119,128,130,135,136,159,163,168,169,170,182,209,222,229,230,279,300,341,342,354,381,390,410,413,431,432,440,447,448,461,463,465,468,473,474,480,481,496,522],individu:[14,15,16,23,30,41,68,80,94,95,96,116,117,133,136,146,152,159,161,162,168,170,177,180,188,197,216,220,236,258,261,280,296,315,347,357,358,404,407,459,471,473,482,483,490,491],ineffici:[47,171,473],inert:10,inf:[499,501],infact:23,infinit:[0,42,94,96,116,125,139,140,201,209,333,342,406,499,501],infinitely_lock:279,inflat:142,inflect:[0,499],inflict:314,inflict_condit:314,influenc:[28,54,56,80,95,125,139,140,175,282,287,496],info1:370,info2:370,info3:370,info:[0,1,7,9,10,12,14,15,18,19,20,23,25,26,29,31,37,38,42,44,46,48,49,53,56,58,67,68,76,116,121,122,132,133,135,141,149,153,158,162,180,181,183,184,192,200,201,202,208,209,211,219,220,222,229,232,234,239,255,273,279,287,303,320,344,350,376,393,394,402,420,425,429,437,438,458,459,461,469,470,471,476,479,489,496],inforamt:[333,344,354,402,470],inform:[0,1,4,7,12,13,14,20,23,28,34,35,41,42,44,46,51,53,60,63,65,67,71,73,80,84,87,94,95,96,105,116,117,119,124,126,128,132,135,142,146,147,149,151,153,154,164,168,169,171,173,175,177,178,179,182,183,186,187,192,194,199,200,201,202,208,209,217,220,222,227,228,232,237,238,245,277,293,296,314,315,316,347,354,358,381,382,386,393,394,402,420,425,434,435,436,438,447,460,461,469,470,473,476,478,489,496,536,548],infrastructur:[65,119,122,125,143,197,199,201,213,430],infrequ:95,ing:[16,89,124,134,142,162,347],ingam:[94,95],ingame_python:[94,95,205,206,239,240,548],ingame_tim:163,ingen:64,ingo:[21,28,32,58,61,116,162,215,400,432,483,499],ingot:[296,297],ingredi:[85,117,142,279,296],ingredient1:279,ingredient2:279,ingredient3:279,ingredient_recip:279,inher:[36,54,69,110,123,358],inherit:[0,4,6,10,13,14,19,20,21,23,37,48,50,53,60,61,62,67,80,81,83,85,92,94,104,108,110,114,116,122,126,129,130,131,133,134,137,142,156,161,164,166,171,175,201,211,215,217,222,230,232,233,236,238,245,274,277,279,287,290,296,300,309,312,313,314,315,316,320,326,329,335,354,358,373,374,376,399,401,402,407,410,412,451,460,467,469,470,478,481,482,487,494,496,519,522,540,541,542,544,546,547],inheritng:407,inherits_from:[171,179,232,496],inifinit:406,init:[9,12,51,62,80,83,116,119,124,125,159,162,190,191,193,245,246,282,287,336,384,401,420,438,439,449,461],init_delayed_messag:384,init_django_pagin:481,init_evennia_properti:470,init_evt:481,init_f_str:481,init_fill_field:[91,384],init_game_directori:420,init_iter:481,init_menu:373,init_mod:216,init_new_account:496,init_pag:[406,481],init_pars:[114,273,274],init_queryset:481,init_rang:316,init_sess:[62,460],init_spawn_valu:406,init_st:282,init_str:481,init_tree_select:[111,390],init_tru:216,initi:[1,5,8,12,14,23,27,28,42,44,45,51,52,53,75,77,85,91,111,112,116,117,119,122,124,125,126,131,140,141,144,146,152,155,159,162,168,173,175,178,193,201,202,203,208,209,216,217,233,236,238,255,258,262,264,282,287,293,296,312,316,340,341,342,343,353,354,358,368,373,374,375,384,390,392,400,401,402,406,411,414,415,417,418,420,422,423,424,429,430,431,433,434,435,436,438,439,440,441,442,443,444,445,447,448,449,451,459,460,461,468,470,471,473,475,478,479,480,481,483,491,492,496,505,506,508,510,512,514,530,536,547],initial_formdata:384,initial_ind:482,initial_setup:[0,201,205,206,416,458],initial_setup_modul:201,initialdelai:[417,431,432,451],initialize_for_combat:312,initialize_nick_templ:468,initil:448,initpath:116,inject:[0,52,89,132,144,199,279,343,406,420,451,452,459,474,480],inlin:[24,51,58,120,161,168,402,418,483,504,505,506,508,509,510,512,548],inlinefunc:[0,41,58,132,200,201,483],inlinefunc_stack_maxs:0,inlinetagform:512,inmemori:468,inmemoryattribut:468,inmemoryattributebackend:468,inmemorybackend:468,inmemorysavehandl:491,inn:98,innard:0,inner:0,innermost:30,innoc:[55,220],innocu:199,inobject:429,inp:[28,222,237,406,418,481,483,496],inpect:28,input:[0,7,10,14,16,17,18,19,20,21,24,27,32,36,41,44,47,51,52,53,54,58,61,62,65,70,73,77,80,85,91,98,104,111,116,117,118,119,120,124,125,126,127,128,132,133,144,156,161,162,169,170,172,178,181,200,201,203,208,212,213,214,217,222,227,229,230,231,232,233,236,237,245,282,296,297,315,342,347,353,354,357,358,375,381,384,390,393,402,405,406,407,418,420,425,429,440,448,459,461,468,469,471,478,479,480,481,482,483,490,492,494,496,497,536,548],input_arg:494,input_cleanup_bypass_permiss:[0,201,496],input_cmdset:480,input_func_modul:[32,201,425],input_str:[30,480],input_validation_cheat_sheet:536,inputcmdset:480,inputcommand:[32,65,68],inputcompon:51,inputdebug:[32,425],inputfuc:132,inputfunc:[24,62,68,132,200,201,205,206,209,416,448,459,461,548],inputfunc_nam:448,inputfunct:32,inputhandl:205,inputlin:[36,228,236,468,469],insecur:197,insensit:[31,39,130,137,229,320,376,392,400,469,528],insert:[0,14,15,16,27,30,36,41,58,85,92,117,119,122,125,135,153,162,188,194,216,236,279,296,300,306,354,401,406,474,480,482,483,496],insid:[0,5,6,7,9,10,14,15,17,20,21,23,28,30,33,37,40,41,42,44,48,49,53,54,57,60,64,67,68,69,73,75,83,90,92,93,94,95,96,104,115,116,117,119,122,126,128,130,131,132,135,136,137,144,146,151,152,153,154,161,164,167,168,169,170,171,174,175,177,178,179,183,187,188,192,195,201,203,205,209,232,236,245,260,261,320,333,350,354,374,376,397,401,402,405,420,437,458,465,474,475,483,496],inside_rec:[0,397],insiderecurs:397,insight:[6,128,138,151],insist:[169,197],inspect:[28,55,116,168,183,208,222,232,287,418,420,480],inspectdb:67,inspectorcarac:0,inspir:[0,23,58,72,89,92,102,117,141,146,147,270,300,482,496],instac:[217,296,402,459],instal:[0,1,5,6,7,9,10,11,16,64,69,93,95,96,112,117,118,119,121,122,125,128,131,135,138,141,149,161,162,165,179,181,185,186,198,199,201,203,205,206,239,248,255,270,285,287,290,293,295,303,306,309,312,313,314,315,316,318,320,326,328,345,346,350,354,356,370,381,527,548],installed_app:[10,67,123,164,178,179,201,527],instanc:[0,5,6,8,13,14,18,20,24,27,28,30,34,41,44,45,46,50,51,56,61,64,75,80,83,94,95,96,98,105,111,116,117,122,125,126,129,130,132,133,135,137,144,147,149,151,153,154,155,157,160,161,162,163,164,168,169,174,176,182,199,208,211,213,214,215,216,217,226,229,231,232,236,238,243,245,261,264,274,284,296,333,344,386,390,394,401,402,406,407,409,410,414,415,417,420,429,430,431,432,433,434,435,436,438,442,443,447,451,452,460,461,465,468,470,471,473,476,477,480,482,487,488,492,494,496,497,504,505,506,508,509,510,512,516,517,519,521,536,544],instanci:245,instant:151,instanti:[10,23,30,67,136,208,216,233,358,368,412,415,437,458,461,468,479],instantli:[505,512],instead:[0,1,7,9,11,12,14,16,19,20,21,23,28,30,34,37,39,41,42,44,46,48,53,54,55,56,57,58,60,64,65,67,73,75,76,80,84,85,88,89,91,93,94,95,96,99,104,108,110,111,115,116,117,118,119,122,124,125,128,129,130,132,133,134,135,136,137,140,142,143,144,147,149,151,152,153,155,156,157,159,161,162,163,168,169,170,171,172,174,175,176,177,178,179,183,187,192,193,195,197,199,200,201,203,208,209,216,217,219,220,222,224,227,231,232,234,236,237,245,255,264,274,277,279,284,293,296,297,312,313,314,315,316,329,333,335,341,342,344,347,353,354,357,358,373,375,384,390,397,398,400,402,407,415,420,448,449,459,463,468,470,471,476,480,481,483,487,489,491,492,493,496,500,505,512,527,536,540,541,542,544],instig:220,instil:[74,314],instnac:414,instr:[429,496],instruct:[6,9,12,15,16,20,32,65,68,95,96,98,112,116,117,118,119,121,124,125,131,135,136,138,140,142,156,161,162,168,181,182,183,187,190,191,192,193,195,196,197,201,208,217,232,354,381,407,415,417,420,430,432,438,443,444,448,449,451,459,461,480,490],insur:142,intefac:0,integ:[21,23,30,41,44,48,60,91,110,117,157,168,169,175,201,214,251,290,312,314,316,342,344,347,358,376,384,397,402,469,483,492,496,497],integerfield:[178,510,536],integr:[49,51,104,112,117,122,123,136,141,179,181,199,233,354,423,425,480,516,548],intel:135,intellig:[65,142,146,169,179,199,216,451],intend:[6,15,18,20,21,23,30,35,41,46,51,69,75,76,77,80,103,113,116,117,118,121,128,138,140,144,151,170,176,197,199,201,208,245,284,287,296,344,354,393,394,402,407,438,469,471,476,477,479,482,483,493,494,496,497,514,542,545],intens:[60,130,142],intent:[104,199,353,496],inter:[15,116,142,181,341],interact:[0,2,6,9,13,23,24,26,28,61,62,69,78,116,119,121,128,136,138,142,143,144,147,155,160,178,181,183,192,201,202,203,205,221,277,316,368,420,437,474,489,494,496,548],intercept:[76,94,117,461],interchang:[39,125,147,392,480,546],interconnect:341,interest:[1,6,7,16,23,31,41,62,67,77,80,85,95,96,115,116,121,123,125,128,136,138,140,143,145,151,152,159,161,169,173,174,175,181,197,199,216,231,251,287,293,333,342,376],interestingli:141,interf:[193,195,368],interfac:[1,4,6,8,33,50,51,52,62,73,80,122,124,131,135,152,153,164,170,178,183,193,197,201,202,219,222,236,400,402,413,431,460,465,468,471,473,496,506,511,545],interfaceclass:440,interfer:[8,183,406],interim:[47,155],interlink:[437,458],intermediari:[354,398,411,480],intern:[0,11,14,17,19,20,28,33,36,41,44,45,46,54,62,68,70,86,88,115,130,131,132,142,147,187,192,197,199,201,203,208,209,238,255,296,300,333,339,341,342,354,358,366,400,401,402,406,412,448,449,468,470,471,473,477,480,482,496],internal:480,internal_port:197,internation:[61,70,201,548],internet:[23,53,54,55,56,62,183,187,189,190,197,199,201,220,417,422,430,431,432,440,443,451,465],interpret:[2,6,7,23,41,42,135,136,160,169,179,199,200,201,217,221,222,344,406,407,448,473,492],interract:116,interrupt:[94,144,213,217,233,258,261,264,335,339,440],interrupt_path:[116,342],interruptcommand:[23,144,169,205,213,217],interruptev:264,interruptmaplink:[116,342],interruptmapnod:[116,342],intersect:[21,215],interv:[32,42,47,79,110,117,122,147,173,174,177,201,209,210,251,261,297,312,358,363,374,376,409,410,415,425,476,484,496],interval1:415,intim:[21,23],intimid:162,intoexit:[222,335],intpropv:175,intricaci:163,intrigu:185,intro:[113,123,125,126,127,136,138,164,179,373,376],intro_menu:[205,206,239,359,372],introduc:[1,8,10,12,21,30,83,85,104,141,142,143,146,155,161,175,354],introduct:[0,2,12,15,16,17,24,56,57,75,124,125,126,127,128,134,139,145,148,149,150,193,245,548],introductori:121,introroom:376,introspect:[103,309],intrus:176,intuit:[12,28,67,80,140,142,144,169,201,215],intxt:20,inv:[21,26,167,228,277,290],invalid:[14,30,41,116,169,201,208,342,354,358,384,406,468,482,483,492,496,497,500],invalid_formchar:479,invent:[110,358],inventori:[0,8,20,21,26,33,85,89,126,128,130,134,137,142,143,152,153,168,169,228,277,290,296,297,354,397,402,470],invers:[33,60,116,126,133,176,342,357,446],invert:[60,176],investig:[53,76,117,133],invis:[116,184,339,342],invisiblesmartmaplink:342,invit:[54,96,140,150,368],invitingli:[128,368],invok:[15,16,42,380],involv:[14,33,37,42,44,45,61,62,91,116,134,140,142,147,160,175,191,201,296,297,316,342,384,470,471,473,517],ioerror:474,ipli:358,iplier:358,ipregex:220,ipstart:[192,195,203],iptabl:199,ipv4:183,ipv6:201,ipython:[1,7,125,127,162],irc2chan:[26,31,126,189,201,227],irc:[0,1,121,143,198,201,202,205,206,209,227,235,416,425,428,438,461,548],irc_botnam:209,irc_channel:209,irc_en:[189,201,227,397],irc_network:209,irc_port:209,irc_rpl_endofnam:432,irc_rpl_namrepli:432,irc_ssl:209,ircbot:[209,432],ircbotfactori:[209,432],ircclient:[432,461],ircclientfactori:438,irchannel:[189,227],ircnetwork:[189,227],ircstatu:[26,126,227],iron:[77,141,287,296,297],ironrealm:444,irregular:[79,117,363,374,376],irregular_echo:374,irrelev:[199,429],irur:29,is_account_object:160,is_act:[211,410,504],is_aggress:171,is_anonym:[123,164],is_anyon:123,is_authent:178,is_ban:[0,208],is_bot:211,is_build:123,is_categori:390,is_channel:23,is_connect:[211,402],is_craft:155,is_dark:133,is_dead:83,is_exit:[23,217],is_fight:155,is_full_moon:153,is_giving_light:375,is_gm:162,is_in_chargen:175,is_in_combat:312,is_inst:20,is_it:496,is_iter:496,is_lit:[375,376],is_next:[211,238,394,401,410,468,470],is_o:496,is_ooc:397,is_ouch:[14,137],is_prototype_bas:406,is_rest:144,is_sai:172,is_staff:[211,504],is_subprocess:496,is_superus:[13,50,123,208,210,211,398,402,476,504],is_thief:229,is_turn:312,is_typeclass:[0,208,470],is_valid:[42,174,178,287,410,413],is_valid_coordin:[115,333],isalnum:473,isalpha:473,isauthent:201,isb:494,isbinari:[431,448],isclos:51,isconnect:51,isdigit:[162,473],isfil:201,isfiremag:154,isinst:[157,496],island:98,isleaf:449,islow:473,isn:[6,18,27,80,94,95,96,123,130,144,160,163,164,169,193,201,245,258,262,274,315,316,376,422,473,490,499,505,512,528],isnul:492,iso:[17,70,201,234],isol:[10,12,15,89,118,119,122,125,135,140,169,190,192,193,195],isp:[197,199],isspac:473,issu:[0,1,6,7,10,12,14,15,16,21,23,26,37,48,54,69,74,80,113,118,119,136,141,144,152,155,162,168,170,175,176,182,183,185,193,195,197,199,201,202,227,234,249,406,420,429,451,452,482],istart:[0,6,203,205],istep:452,istitl:473,isub:147,isupp:473,ital:548,italian:[0,64],itch:142,item:[0,28,51,67,75,77,81,85,89,91,104,112,117,119,125,128,131,132,139,141,142,147,164,167,168,171,228,280,287,290,296,314,333,354,368,384,439,468,483,496],item_consum:314,item_func:314,item_kwarg:314,item_selfonli:314,item_us:314,itemcombatrul:314,itemcoordin:333,itemfunc:314,itemfunc_add_condit:314,itemfunc_attack:314,itemfunc_cure_condit:314,itemfunc_h:314,itend:496,iter:[8,14,28,30,46,98,126,133,159,208,210,237,333,342,354,366,393,400,402,407,409,413,449,451,452,468,470,471,473,474,477,481,493,496],iter_cal:481,iter_to_str:[0,496],itl:[80,245],its:[0,5,6,7,10,11,12,13,14,16,17,19,20,21,23,27,28,29,30,31,33,34,37,39,41,42,44,47,48,49,50,51,52,55,56,58,60,62,65,67,68,72,73,76,77,80,83,85,89,90,91,92,94,96,100,103,106,108,110,111,113,115,116,117,119,121,122,124,125,126,128,130,131,132,133,134,135,136,137,138,141,143,144,146,149,151,152,153,155,157,158,159,160,161,162,163,164,166,167,168,169,170,171,172,174,175,176,178,179,183,186,189,191,192,193,195,197,198,199,200,201,208,209,211,213,214,215,216,217,220,222,230,232,236,237,245,246,249,261,270,274,279,282,287,296,297,300,309,312,313,314,315,316,329,333,335,342,344,353,354,358,366,368,374,375,384,390,400,401,402,407,414,415,420,424,425,429,433,444,446,447,448,449,452,460,461,465,466,468,469,470,471,474,479,480,482,483,487,489,490,491,492,493,494,496,500,504,505,512,514,516,525,536,540,541,542,544,546],itself:[0,4,7,9,10,12,14,17,18,19,20,23,28,31,33,37,39,42,44,46,47,48,53,58,62,64,67,73,76,80,91,94,95,96,110,111,112,116,118,119,121,122,123,124,125,126,128,131,132,133,135,136,137,138,147,151,152,153,155,158,159,167,168,170,172,175,178,179,180,183,187,191,193,195,200,201,208,209,229,236,245,264,278,279,280,282,296,315,333,342,347,354,358,363,375,376,384,386,390,391,394,395,397,400,402,404,405,407,414,420,444,449,461,465,468,471,473,476,478,480,483,491,493,496,500,501,505,512,536,546],iusernamepassword:440,ivanov:75,iwar:168,iwebsocketclientchannelfactori:431,iwth:415,jack:36,jail:[15,55],jam:[0,89,117],jamalainm:0,jamochamud:184,jan:[2,55,163,201],janni:75,januari:[94,163],jarin:197,jason:75,java:135,javascript:[49,51,52,53,68,73,75,117,121,151,199,201,448,449],jenkin:[0,81,91,93,111,112,117,175,289,290,311,312,313,314,315,316,349,350,383,384,388,390],jet:315,jetbrain:[9,181],jinja:132,jiwjpowiwwerw:14,jnwidufhjw4545_oifej:124,job:[23,33,164,187,208],jodi:75,john:[109,162,370],johnni:[0,76,117,380,381],johnsson:36,join:[80,89,117,130,140,142,147,159,162,175,178,186,189,201,208,227,236,270,278,287,353,473,496],join_fight:[312,316],join_rangefield:316,joiner:236,jointli:[122,216],joker_kei:[80,245],jon:75,jonca:75,josh:75,journal:170,json:[49,51,65,68,76,201,380,431,444,448,449,477,519],jsondata:68,jsonencod:449,jsonifi:449,jtext:473,judgement:146,jump:[1,12,15,16,28,29,37,69,111,121,140,142,152,158,159,193,277,390,418,483],jumpei:75,jumpstat:277,june:[64,94],junk:429,just:[0,1,6,7,8,9,10,11,12,14,15,16,17,18,19,20,21,23,28,29,30,31,32,33,35,36,37,41,42,44,45,46,47,48,50,51,53,54,55,57,58,60,62,64,65,67,68,70,73,74,75,76,77,80,84,85,88,89,93,94,95,96,98,102,110,111,115,116,117,118,119,122,123,124,125,126,128,130,131,132,133,134,135,136,137,138,139,140,141,143,144,146,147,149,151,152,153,154,155,156,157,158,159,160,161,162,163,164,166,168,169,170,171,172,173,174,175,176,177,178,179,183,185,187,190,192,193,194,195,196,197,201,203,208,215,216,217,220,222,227,230,231,233,236,245,258,260,261,277,281,282,284,287,290,293,296,297,312,314,315,316,320,333,335,342,344,350,353,358,368,370,374,376,390,398,402,407,411,425,438,448,452,458,465,468,469,470,473,477,478,480,482,483,491,492,494,496,497,542,545,548],justif:[481,496],justifi:[0,30,41,473,481,483,496],justifii:481,justify_kwarg:[0,481],kafka:76,kaldara:94,kaledin:75,kcachegrind:7,keep:[0,1,6,7,8,11,15,16,17,23,28,31,40,41,44,53,56,83,90,93,94,96,98,117,122,123,124,126,130,134,135,136,140,141,142,143,144,146,147,153,155,156,160,161,162,163,164,166,167,168,169,172,174,176,177,178,179,180,183,187,190,191,192,193,196,201,209,216,261,293,320,350,368,375,376,380,386,406,407,422,463,480,482,496],keep_log:[236,237,476],keepal:[44,443,449],keeper:[142,168],keepint:122,kei:[0,1,6,8,10,12,14,15,19,20,21,23,27,29,30,31,32,33,34,37,39,42,45,46,47,48,49,51,53,54,64,67,68,72,75,76,83,85,92,94,96,98,104,110,111,114,116,117,119,120,124,125,126,129,130,133,134,135,136,144,145,147,152,153,154,155,156,157,158,159,160,161,162,163,164,166,167,168,169,170,173,174,175,178,182,188,201,208,209,210,211,213,215,216,217,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,236,237,238,245,246,251,255,259,260,270,273,274,277,278,279,282,284,287,290,293,296,297,300,303,306,309,312,313,314,315,316,320,326,329,333,335,341,342,343,344,347,353,354,358,368,370,373,374,375,376,384,390,392,393,394,395,397,400,401,402,405,406,407,409,410,411,412,413,414,415,418,420,425,426,427,429,438,441,444,445,447,448,449,451,452,459,460,461,463,468,469,470,471,475,476,478,479,480,481,483,489,490,491,493,494,496,516,536,547],keith:75,kept:[7,23,31,39,53,132,161,169,201,222,260,261,354,407,468],kept_opt:390,kernel:1,key1:[28,306],key2:[28,306,402],key3:28,key_mergetyp:[21,215,368],keydown:51,keyerror:[0,296,406,415,491,496],keyfil:[441,445],keynam:[236,237,393,405,407,476],keypair:440,keys_go_back:[80,245],keystr:471,keystrok:440,keywod:482,keyword:[0,7,10,14,20,23,27,28,29,30,32,33,41,42,45,47,48,54,58,65,67,80,90,94,96,104,129,130,135,144,153,155,156,162,163,166,169,175,179,201,208,209,210,213,217,222,228,236,237,251,258,260,261,264,274,282,284,290,312,314,316,320,344,350,353,354,376,381,398,400,402,406,407,409,411,414,415,418,420,425,429,431,432,438,439,440,443,448,449,459,460,461,463,468,469,470,476,479,480,481,482,483,487,489,490,492,493,496,545],keyword_ev:[94,264],kick:[19,21,28,55,142,162,197,209,215,220,227,234,255,270,481],kildclient:184,kill:[7,20,28,44,77,125,128,132,139,140,143,147,191,192,202,287,374,375,411,415,420,458,465],killsign:420,kilogram:167,kind:[8,14,33,62,84,94,96,118,119,125,133,134,135,139,140,147,169,172,174,178,200,293,312,398,470,497],kindli:176,kitchen:[46,134,144,158,222,335],kja:201,klass:64,klein:75,knee:[116,279,342],kneeabl:279,kneed:279,kneel:279,kneelabl:279,knew:[133,135],knife:[46,85,296,297],knight:14,knob:14,knock:[28,138],knot:[81,290],know:[1,6,7,8,11,12,13,14,15,16,17,19,21,23,28,30,31,32,33,34,37,44,48,53,54,56,58,60,62,64,65,67,70,80,84,85,94,96,104,106,111,116,117,118,119,122,125,126,127,128,130,132,133,134,135,136,137,140,141,142,143,144,146,147,151,152,155,157,158,159,160,161,162,164,166,167,168,169,170,171,172,174,176,177,178,179,181,182,183,185,187,189,190,197,198,201,202,203,217,221,222,230,233,260,287,293,303,315,342,353,368,375,390,401,402,425,459,461,468,474,475,480,496,505,512,543,548],knowledg:[15,17,23,118,121,442,461],known:[0,23,27,31,36,39,40,47,48,51,125,128,139,140,144,146,179,181,184,201,207,231,315,481],knuth:7,korean:[0,64],kornewald:75,koster:181,kovash:28,kwar:470,kwarg:[0,14,19,23,28,30,32,33,34,37,41,45,47,48,51,54,62,65,68,71,83,85,86,94,98,110,116,144,153,155,162,166,172,174,177,179,201,208,209,210,211,213,216,217,219,220,221,222,227,228,229,230,231,232,233,234,236,237,238,245,251,255,258,259,260,261,270,273,274,277,278,279,280,281,282,284,287,290,296,297,300,303,306,309,312,313,314,315,316,320,326,329,333,335,342,343,344,347,353,354,358,363,366,368,370,373,374,375,376,381,384,386,390,393,394,397,398,400,401,402,404,405,406,407,409,410,411,413,414,415,417,418,425,426,427,429,430,431,432,437,438,439,440,441,443,444,445,448,449,451,453,459,460,461,462,463,465,468,469,470,471,473,476,478,479,480,481,482,483,484,486,487,489,490,491,492,493,494,496,497,504,505,506,509,510,512,516,518,519,522,536,540,541,542,544,545,546,547],kwargtyp:496,label:[67,74,76,128,137,178,516,536],label_suffix:[506,508,510,512,536],labl:46,laborum:29,labyrinth:116,lack:[14,15,53,72,119,126,140,143,160,354,368,402,468,496],laddad:64,ladder:162,ladi:133,lag:[7,159,193],lair:16,lambda:[28,41,54,157,164,261,407,496],lamp:[170,368],lamp_breaks_msg:368,land:[147,169,374,375],landscap:[170,199],lang:[104,353],langaug:104,langcod:[201,354],langnam:354,languag:[5,17,24,30,39,48,51,52,53,58,61,62,69,70,72,111,117,119,121,122,126,130,131,132,133,134,135,141,143,160,161,162,169,172,181,199,201,352,353,354],language_cod:[64,201],languageerror:[353,354],languageexistserror:353,languagehandl:353,larg:[0,8,10,15,16,28,41,42,53,54,56,67,69,75,98,104,115,116,117,118,121,125,128,138,139,140,143,144,160,183,197,201,279,333,336,353,368,406,438,474,479,487],larger:[16,30,33,67,69,90,119,135,140,159,161,167,320,402,446,473,487,496,525,548],largest:[110,358],largesword:67,larlet:75,last:[1,4,6,12,14,15,16,19,21,23,28,32,36,37,44,45,51,58,64,67,77,80,94,111,116,119,123,129,134,135,136,137,138,140,142,143,147,151,155,162,164,169,174,176,179,185,187,201,203,210,213,214,216,222,227,228,251,261,287,293,312,314,320,354,390,402,424,473,474,475,480,481,482,484,489,496],last_cmd:[23,133],last_initial_setup_step:[201,458],last_login:[211,504],last_nam:[211,504],last_step:424,lastcast:154,lastli:[166,170,178,213,296],lastsit:153,late:[12,94,406,475],later:[8,12,13,14,15,19,23,31,32,34,41,42,47,48,55,62,65,67,74,75,80,85,89,94,95,96,103,116,121,122,124,125,126,128,130,133,134,135,136,140,141,142,143,144,145,146,158,162,164,166,170,171,173,174,175,178,183,191,193,197,201,215,219,220,222,230,236,251,309,342,354,406,407,415,440,471,483,496],latest:[0,2,3,20,21,53,75,89,119,122,152,162,187,191,195,198,222,227,232,402,407,439,463,480,483,489,516],latin:[0,17,64,70,201,234,402,496],latin_nam:402,latinifi:[0,402,496],latter:[0,20,28,33,47,104,110,116,122,155,169,176,354,358,392,410,412,471],launch:[0,9,16,24,94,116,138,152,168,185,191,193,197,201,203,216,368,419,420,430,432,451,478,496],launchcmd:[116,205,206,239,318,334,336],launcher:[0,7,9,116,201,336,337,419,420,429,430,451],lava:116,law:181,lawrenc:201,layer:[21,80,131,136,401,470],layout:[11,20,31,40,48,51,53,61,98,116,133,137,159,160,162,333,341,402],lazi:496,lazy_properti:[0,84,110,293,357,358,496],lazyencod:449,lazyset:489,lc_messag:64,lcnorth:59,ldesc:160,ldflag:191,lead:[0,10,14,15,18,21,28,30,42,50,52,53,65,67,71,80,94,96,104,116,121,122,128,130,137,140,142,159,160,164,170,174,181,183,199,201,208,214,215,222,232,261,264,296,326,335,340,342,343,344,354,386,402,406,407,429,459,468,470,480,482,483,496],leak:[53,73,201],lean:[35,141,354],leap:[135,144,163,172],learn:[2,6,9,17,18,21,23,49,53,56,69,80,89,94,95,96,104,113,116,117,126,129,130,131,133,134,135,136,138,140,141,142,143,144,151,155,159,160,161,164,166,176,179,190,315,353,354,548],learnspel:315,least:[0,6,9,14,23,28,33,35,50,67,77,94,104,110,121,127,133,135,136,140,143,146,149,157,159,161,162,174,182,187,197,201,208,216,237,279,287,353,358,393,402,407,413,473,479,482,483,493,496],leasur:374,leather:[142,168,297],leatherrecip:297,leav:[0,7,13,19,32,51,53,80,94,96,115,125,128,138,146,147,152,153,162,168,175,196,199,201,219,221,222,236,245,277,279,280,281,287,333,335,376,402,414,444,448,449,480,483,487,519],leaver:236,led:133,ledg:113,leer:75,left:[4,20,23,30,32,33,41,51,67,80,94,115,116,119,130,134,138,144,157,161,164,168,169,170,201,208,222,228,230,279,293,312,313,314,315,316,333,341,342,350,368,375,398,407,470,473,482,496,548],left_justifi:41,leftmost:116,leg:457,legaci:[0,30,41,42,68,82,117,142,190,208,270,271,483,548],legal:[197,199],legend:[27,98,159,184,205,206,239,318,334,341,343],legend_key_except:341,legenddict:343,leidel:75,leisur:497,leland:75,len:[41,130,137,147,153,159,162,168,173,174,188,201,214,231,251,496],lend:27,length:[63,67,80,86,91,104,116,117,135,142,153,159,163,169,183,188,197,214,251,264,284,296,341,342,350,353,354,384,422,463,468,473,482,483,496,547],lengthi:153,lenient:41,less:[9,28,31,53,64,67,69,80,116,122,133,134,140,142,144,146,147,158,160,169,177,178,197,201,251,313,315,342,468],lesson:[125,126,128,129,130,131,133,134,136,137,140,142,143,144],let:[7,9,10,12,14,16,17,19,21,23,28,30,32,33,37,39,47,51,53,55,60,62,65,74,80,85,89,91,93,94,95,96,111,115,116,117,118,119,122,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,148,149,150,151,152,153,154,157,158,159,160,161,162,163,166,167,168,169,170,171,172,174,175,176,178,179,182,186,189,190,191,193,198,199,208,216,217,222,228,233,237,287,290,333,341,347,350,358,384,390,398,402,430,449,461,476,480,490,516,536,543,544],letsencrypt:[187,197],letter:[0,17,28,35,60,64,70,80,104,105,116,119,135,157,170,175,178,197,201,219,228,234,245,279,353,358,386,464,473,496],leve:406,level10:297,level:[1,3,8,13,14,15,19,20,27,28,30,31,33,39,44,46,48,49,50,53,57,62,63,64,69,74,80,83,85,94,98,104,119,121,128,130,135,140,142,143,144,146,156,161,162,164,168,170,178,181,188,195,197,200,201,208,210,219,222,224,225,236,245,246,249,251,277,297,303,341,353,368,390,392,397,402,407,422,459,468,470,471,476,478,483,484,489,496,517,547],lever:[23,48,277],leverag:[52,119,144,149],levi:67,lexicon:279,lhs:[0,153,162,230],lhslist:230,liabl:279,lib:[183,187,191,195,196,201],libapache2:182,libcloud:75,libcrypt:191,libjpeg:191,librari:[0,1,8,10,11,15,41,48,49,51,64,69,114,116,117,120,122,125,127,133,136,151,160,161,169,178,180,181,190,191,192,193,199,201,239,274,386,406,407,433,468,470,482,496],licenc:473,licens:[0,9,105,117,118,142,386,473,499,500,548],lid:[106,368],lidclosedcmdset:368,lidopencmdset:368,lie:[170,279],lied:279,lies:[12,23,134],life:[36,118,125,142,143,144,163,176,251,374,548],lift:[33,128,146,175,279,316,398],lifter:33,light:[16,20,42,69,119,138,140,143,183,216,313,344,375,376,407,414,473],lightabl:375,lighter:[60,313],lightest:20,lightli:[56,313],lightsail:197,lightsourc:375,lightsource_cmdset:375,lightweight:[84,117,293],like:[0,1,4,6,7,8,9,10,11,12,13,14,16,17,18,19,20,21,23,25,28,29,30,31,32,33,34,35,37,39,41,42,44,45,46,47,48,50,51,52,53,54,55,56,57,58,60,62,64,65,67,68,69,72,73,74,76,80,81,83,84,85,86,89,90,91,92,93,94,95,96,98,104,105,106,107,108,110,111,112,113,115,116,117,118,119,120,121,122,124,125,126,128,129,130,132,133,134,135,136,137,138,139,140,141,143,144,146,147,149,151,152,153,154,155,156,157,158,159,161,162,163,164,165,166,168,169,170,171,173,174,176,177,178,179,181,182,183,185,186,187,188,189,190,191,192,193,195,196,197,199,200,201,208,209,211,212,214,215,216,219,221,222,227,230,234,235,236,237,245,255,264,270,272,274,279,287,290,293,296,297,300,312,314,315,316,320,326,329,333,342,350,353,354,358,366,368,376,384,386,390,393,394,395,397,398,400,401,402,406,407,420,425,433,449,452,454,458,460,461,468,469,470,471,473,474,476,479,480,481,482,483,484,487,490,492,493,494,496,499,521,536,545,548],likewis:0,limbo:[15,16,20,63,80,96,113,116,124,128,132,133,138,170,174,179,200,201,222,245,335,376,424],limbo_exit:170,limit:[0,1,7,13,14,19,20,21,23,24,28,30,31,33,35,41,42,46,48,49,50,56,57,67,74,81,84,95,96,110,111,112,116,117,120,121,122,125,128,130,132,134,135,137,139,140,141,143,147,153,154,162,169,175,176,183,188,197,200,201,208,210,217,219,220,221,222,236,237,261,279,290,293,312,314,315,341,354,357,358,368,390,392,393,394,395,398,400,402,407,409,410,415,425,438,463,468,469,470,471,474,476,478,489,493,496,499,514,542],limit_valu:[201,208],limitedsizeordereddict:496,limitoffsetpagin:201,limp:138,line2:134,line:[0,1,4,7,8,10,11,14,15,16,17,19,20,21,23,24,28,30,32,35,36,37,40,41,48,51,53,54,57,60,64,65,67,69,75,76,80,85,88,94,95,96,98,101,104,111,115,116,117,118,119,120,123,124,126,127,128,131,133,134,136,137,142,153,155,156,157,160,161,162,163,164,166,169,170,174,175,178,179,183,185,187,192,193,195,197,198,200,201,203,205,208,213,216,222,227,229,231,232,245,274,306,333,337,341,353,354,368,384,390,402,406,420,425,440,443,448,459,470,473,474,478,479,480,481,482,489,496,536,541],linear:159,linebreak:[164,473,495],lineeditor:478,lineend:495,lineno:119,linenum:478,liner:432,linereceiv:[440,443],linesend:449,lingo:[44,67,73,161],linguist:496,link:[0,1,3,10,11,13,16,18,19,21,23,26,28,31,37,44,49,52,53,61,62,71,80,94,95,112,118,121,122,123,124,125,126,128,130,131,132,133,135,142,149,153,155,157,159,161,164,168,170,174,175,178,179,185,189,193,197,198,201,208,211,222,227,258,274,335,339,340,341,342,343,398,402,410,418,420,431,435,440,443,470,495,496,509,548],link_button:509,link_object_to_account:509,linknam:[119,185],linknod:342,linktext:119,linkweight:342,linod:197,linux:[1,3,7,9,12,36,76,119,122,123,124,135,136,153,182,183,187,189,191,192,196,197,202,380,496],liquid:470,list:[0,1,2,7,8,9,11,13,14,15,16,17,19,20,21,23,26,28,30,31,32,33,35,37,41,42,44,46,48,49,50,51,53,55,60,62,63,64,67,68,70,72,73,76,78,80,81,82,83,85,90,91,94,95,96,97,98,101,104,105,111,116,118,121,123,125,126,128,130,131,132,135,137,138,139,140,141,143,144,146,147,149,153,157,159,161,162,164,167,168,169,170,174,175,178,179,181,183,185,189,195,197,198,199,201,203,208,209,210,211,214,215,216,217,219,220,221,222,227,228,229,230,232,233,236,237,238,245,248,258,259,261,262,264,270,277,278,279,287,290,293,296,300,303,306,309,312,313,314,315,316,320,333,335,341,342,343,344,350,353,354,358,368,373,374,375,380,381,384,386,390,392,393,395,398,400,401,402,406,407,409,411,412,413,415,418,420,425,426,429,430,432,434,436,438,439,444,449,452,461,463,465,468,469,470,471,473,474,475,476,477,480,482,483,489,490,493,494,496,499,500,504,505,512,514,517,519,520,521,527,529,540,541,542,544,546,547,548],list_callback:259,list_channel:227,list_displai:[504,506,508,509,510,511,512],list_display_link:[504,506,508,509,510,511],list_filt:[504,508,509,512],list_nod:[0,24,480],list_of_fieldnam:162,list_of_myscript:42,list_prototyp:406,list_select_rel:[506,508,509,510,511],list_serializer_class:522,list_set:420,list_styl:219,list_task:259,list_to_str:[0,496],listabl:222,listaccount:232,listbucket:75,listcmdset:222,listdir:201,listen:[13,19,33,44,51,55,104,165,183,187,199,201,227,236,270,279,353,354,368,541,548],listen_address:183,listing_contact:[185,201],listnod:480,listobject:222,listview:[541,542,544],lit:[375,376,483],liter:[15,30,31,41,50,63,128,161,228,473,483,492,496],literal_ev:[30,480,483,496,505],literari:143,literatur:548,littl:[0,6,12,17,23,41,42,48,53,54,78,94,96,98,111,113,115,116,117,119,122,123,124,125,126,128,130,132,133,134,135,136,137,138,140,141,142,143,144,151,152,153,154,158,161,162,164,168,169,170,171,172,179,188,192,197,203,279,313,315,354,373,376,455,468,480,496,536],live:[9,14,53,119,133,142,181,182,183,187,190,192,197],ljust:[30,473,483],lne:390,load:[0,1,7,8,9,10,12,14,15,17,21,23,27,28,41,51,52,53,55,64,75,85,89,116,133,134,135,136,140,146,151,155,160,161,162,164,167,170,174,175,199,201,211,216,228,229,232,238,261,282,298,320,341,343,353,392,394,398,401,402,406,410,414,424,427,429,460,468,470,471,474,475,478,483,488,490,491,494,496,514,529,534],load_buff:478,load_data:475,load_game_set:529,load_kwarg:491,load_module_prototyp:406,load_stat:282,load_sync_data:460,loader:[28,343,470,496],loadfunc:[27,478,491],loaf:[85,117],loc:[0,222,335],local0:187,local:[0,4,9,12,30,49,50,53,60,64,94,104,116,118,122,126,131,134,151,153,163,178,183,187,189,192,195,199,201,202,258,261,354,407,443,468,548],local_and_global_search:400,local_non_red_ros:130,local_ros:130,locale_path:201,localecho:[0,425],localhost:[49,50,51,52,53,73,123,124,125,149,164,178,179,183,184,187,190,191,193,197,201,202,449],locat:[0,7,8,10,11,12,13,15,20,21,23,25,26,28,32,33,37,41,42,46,48,49,50,51,53,55,58,63,73,74,75,80,89,90,94,95,96,98,100,103,115,116,117,119,122,123,124,125,126,128,130,131,132,133,134,135,138,141,142,144,151,152,153,156,157,159,161,162,168,169,170,171,172,174,175,178,182,187,190,192,193,197,199,200,201,202,208,213,222,228,232,236,237,245,282,284,290,296,309,320,326,333,335,339,341,342,343,344,354,366,374,376,397,400,401,402,407,449,458,468,469,470,471,474,476,480,482,489,493,522,525,527],location_nam:333,location_set:130,locations_set:[130,401],locattr:[375,397],lock:[19,21,23,24,26,30,35,37,41,42,46,48,50,54,55,57,80,89,94,102,104,107,116,120,123,126,128,131,132,133,144,152,153,154,155,157,158,162,163,167,168,175,178,183,188,197,200,201,203,205,206,208,210,217,219,220,221,222,227,228,229,231,232,233,234,236,237,238,245,255,258,259,261,262,270,277,279,287,290,296,297,300,303,306,309,320,326,333,335,342,347,354,368,370,374,375,376,392,393,394,400,401,402,406,407,409,429,465,468,470,471,476,478,480,490,496,497,509,517,544,548],lock_definit:398,lock_func_modul:[33,201,398],lock_storag:[217,219,220,221,222,227,228,229,230,231,232,233,234,238,245,255,259,270,273,274,277,287,290,296,297,300,303,306,309,312,313,314,315,316,320,326,329,335,347,354,368,370,374,375,376,384,390,392,394,402,451,468,470,478,480,481],lock_typ:33,lockabl:[35,107,117,162,279,326],lockablethreadpool:465,lockdown:[33,201,468],lockdown_mod:[197,201],lockexcept:398,lockfunc1:33,lockfunc2:33,lockfunc:[0,19,23,33,39,120,132,134,153,174,200,201,205,206,222,227,396,471],lockhandl:[0,14,31,33,48,126,205,206,217,245,274,396,397],lockset:402,lockstr:[0,8,14,19,23,31,33,41,123,134,144,201,210,222,227,229,236,237,238,270,326,393,398,400,402,407,409,468,471,476,517],locktyp:[19,215,227,296,407,471,483],lockwarn:201,lockwarning_log_fil:201,locmem:201,locmemcach:201,log:[0,4,5,7,9,11,12,13,14,23,24,25,28,32,35,37,42,44,45,50,51,52,53,54,55,63,64,67,73,76,78,89,94,113,116,119,120,121,122,123,125,126,128,134,142,144,146,152,153,157,161,162,170,174,175,178,179,182,183,184,186,187,188,189,191,192,195,197,201,202,203,208,210,216,220,234,236,237,254,255,280,341,342,343,380,381,384,402,410,414,420,425,429,430,434,437,438,440,443,451,452,453,459,461,463,465,470,476,489,496,504,541,542],log_19_03_08_:0,log___19:0,log_dep:[20,489],log_depmsg:489,log_dir:[19,201,236,380,489],log_err:[20,489],log_errmsg:489,log_fil:[19,20,236,489],log_file_exist:489,log_info:[20,489],log_infomsg:489,log_msg:489,log_sec:[0,489],log_secmsg:489,log_serv:489,log_system:489,log_trac:[20,42,172,173,489],log_tracemsg:489,log_typ:489,log_typemsg:489,log_warn:[20,489],log_warnmsg:489,logdir:4,logentry_set:211,logfil:[2,420,489,541],loggad:64,logged_in:[44,201],loggedin:[53,438],logger:[0,20,42,120,172,173,205,206,380,432,472],logic:[0,6,8,28,53,54,85,89,94,96,116,123,132,142,144,157,158,159,164,170,179,201,279,353,401,405,424,468,480,497,519],login:[0,7,8,12,13,23,25,28,33,44,45,52,53,61,76,116,117,123,124,142,153,164,178,197,201,208,219,234,253,254,255,256,398,424,425,440,443,448,449,452,461,496,528,530,537,548],login_func:452,login_redirect_url:201,login_requir:201,login_throttle_limit:201,login_throttle_timeout:201,login_url:201,loginrequiredmixin:[542,547],logintest:537,loglevel:489,logo:[75,125,150],logout:[0,201,451,452,537],logout_func:452,logout_url:201,logouttest:537,logprefix:[430,440,443,465],lon:483,lone:[140,170,222,229],long_descript:[185,201],long_running_funct:54,long_text:29,longer:[0,23,27,29,30,47,48,58,67,72,94,96,108,113,126,133,135,136,152,153,155,162,164,169,176,185,215,220,236,290,312,316,329,353,354,411,414,478,482,496],longest:20,longrun:23,longsword:49,loo:[217,233],look:[0,1,4,6,7,8,10,14,15,16,17,18,20,21,23,24,25,26,28,30,32,33,36,37,39,41,42,44,46,48,50,52,53,54,55,56,57,58,60,62,64,65,67,68,69,73,80,81,85,88,89,90,91,94,95,96,99,100,101,104,106,111,113,116,117,118,119,121,122,123,124,125,126,127,130,131,132,133,134,135,136,137,138,139,140,141,143,144,146,147,149,150,151,152,153,155,156,157,158,159,161,162,163,164,166,167,168,169,170,171,172,174,176,178,179,183,187,188,191,192,195,197,199,201,203,208,209,214,216,217,219,222,228,230,233,234,254,255,260,277,278,279,290,296,306,309,314,320,333,342,343,344,353,354,366,368,373,375,376,384,390,393,397,398,401,402,404,407,409,425,440,441,448,452,468,470,474,480,482,483,490,493,494,496,500,504,509,536],look_str:208,lookaccount:162,lookat:23,looker:[7,30,58,116,159,162,175,208,279,280,290,320,333,344,354,366,402,470],lookm:23,lookstr:402,lookup:[8,14,23,33,46,58,67,125,127,201,213,228,380,392,400,401,406,439,471,473,486,487,492,493,496,497],lookup_expr:516,lookup_typ:492,lookup_usernam:28,lookuperror:473,loom:170,loop:[0,7,14,30,48,94,95,96,112,116,117,121,122,125,130,147,152,159,164,168,172,201,205,209,312,342,407,438],loopingcal:423,loos:[16,28,81,208,227,290,316,393,440,451,474],loot:[125,139,140],lop:130,lore:[31,162,229,392],lose:[14,44,140,142,147,160,175,192,203,314,380,431,432,440,443],loser:138,lost:[48,73,96,108,119,157,160,169,170,181,201,203,227,329,417,430,431,432,440,443,448,468,473],lot:[0,1,3,6,7,10,12,15,17,19,20,30,31,33,41,42,46,48,50,52,53,54,58,64,67,69,73,80,85,88,89,91,94,95,96,98,109,111,112,116,118,120,121,123,125,126,130,132,133,134,135,136,137,138,140,141,142,143,144,145,146,154,157,161,162,163,164,169,170,174,175,178,181,187,197,201,245,251,255,313,333,354,370,375,384,465],loud:[144,152],love:[31,51,143,392],low:[0,21,62,63,95,142,197,201,215],lower:[7,13,14,19,21,23,28,39,51,54,57,60,67,110,116,138,142,153,155,159,162,163,168,197,201,214,215,219,230,232,341,342,354,358,425,471,473,496],lower_bound_inclus:358,lowercas:[119,135,217,354,473],lowest:[39,63,110,197,358,397,473],lpmud:72,lsarmedpuzzl:309,lspuzzlerecip:309,lst:[159,393,476],lstart:27,lstrip:[169,473],ltthe:232,ltto:59,luc:479,luciano:181,luck:[28,85,125,133,169,182],luckili:[12,33,170],lue:[60,473],lug:121,luggag:137,luhttp:232,lunch:[94,95],lunr:[0,31,201,229,395],lunr_stop_word_filter_except:[0,201],lunrj:395,lure:201,lurk:142,luxuri:[46,467],lvl10:297,lvl:489,lycanthrophi:130,lycantrhopi:130,lycantroph:130,lycantrophi:130,lying:[170,279],m2m:471,m2m_chang:45,m_len:496,mac:[7,9,12,119,122,124,125,135,183,184,190,192,196,202,496],machin:[9,12,15,135,142,153,183,192,201,374],machineri:201,macport:[12,193,195],macro:[123,147],macrosconfig:123,mad:12,made:[0,1,4,12,14,25,28,30,33,39,41,49,53,57,75,77,81,87,89,94,111,116,117,119,126,128,133,134,136,137,140,142,144,149,152,153,160,162,170,174,175,179,181,196,197,198,199,200,201,213,215,232,233,236,287,290,314,315,316,337,358,384,390,398,414,422,452,466,473,474,478,480,483,496],mag:479,magazin:181,mage:[28,75,130],mage_guild_block:28,mage_guild_welcom:28,magenta:176,magic:[2,14,33,46,74,77,93,138,140,141,142,156,174,287,297,315,350,357,422],magic_meadow:46,magicalforest:74,magiccombatrul:315,magnific:28,mai:[2,5,6,7,8,9,10,11,12,14,15,19,20,21,23,28,30,31,33,34,36,37,41,42,44,47,48,49,53,54,57,58,60,62,63,64,65,67,68,69,73,75,77,81,83,85,89,93,94,96,104,110,111,112,113,116,117,118,119,122,123,124,125,127,128,130,132,133,135,137,138,139,140,141,143,144,146,147,151,152,153,154,155,160,161,163,164,166,170,172,173,175,178,179,181,182,183,185,187,188,191,192,193,195,196,197,199,200,201,203,208,209,213,214,215,217,219,220,222,227,229,232,233,236,237,238,239,251,279,282,287,290,296,297,312,313,314,315,316,341,342,350,353,354,358,375,376,384,398,400,402,406,407,408,422,459,461,462,466,468,470,471,473,475,476,477,478,480,482,483,484,490,493,496,499,505,512,525,542],mail:[0,7,11,28,35,118,121,124,126,147,161,205,206,237,238,239,285,548],mailbox:[35,303],main:[0,8,12,14,15,16,17,21,23,28,31,34,37,39,40,41,42,44,46,47,48,49,51,52,53,58,62,65,67,73,80,91,94,95,102,104,116,117,118,122,125,127,128,131,133,134,141,142,144,147,152,156,159,160,164,166,168,169,178,179,181,183,185,192,197,200,201,203,208,211,213,219,222,227,229,233,236,238,245,261,296,298,303,333,337,343,353,354,384,394,395,401,402,407,410,420,424,425,427,432,437,439,444,458,460,465,470,471,480,481,485,493,495,496,504,510,527,545],mainli:[7,14,23,28,35,37,44,54,55,58,65,134,135,161,181,201,219,391,468,474,496],maintain:[0,7,12,31,47,57,69,75,116,117,118,119,123,137,143,160,183,190,192,197,201,202,232,234,255,337,415,548],maintainership:0,mainten:[197,199,548],major:[16,17,30,122,141,161,174,178,183],make:[0,1,2,4,5,6,7,8,9,11,13,14,15,16,17,19,21,23,26,27,28,30,31,32,33,35,36,37,39,41,42,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,62,64,65,67,69,70,74,75,76,77,79,80,85,90,92,93,94,95,96,97,98,104,107,108,110,111,113,115,116,117,119,121,122,123,124,125,127,129,130,131,132,134,136,137,138,139,140,141,143,145,146,147,148,150,151,153,154,155,156,157,158,159,160,163,164,165,166,168,169,170,171,172,176,177,178,179,180,181,182,183,184,185,188,189,190,191,192,193,195,196,197,199,200,201,202,203,208,209,211,214,215,216,217,219,220,222,227,230,233,237,245,251,262,277,279,287,290,296,297,303,312,313,314,315,320,326,329,335,341,342,344,350,353,354,358,363,368,374,375,376,382,384,390,393,397,398,400,402,406,407,409,412,415,420,424,432,437,451,452,458,459,461,462,464,465,468,469,470,471,473,474,475,476,477,478,480,482,483,484,487,493,494,496,505,512,514,537,545,547,548],make_it:496,make_shared_login:530,make_uniqu:215,makeconnect:429,makefactori:440,makefil:119,makeit:451,makemessag:64,makemigr:[4,67,178],makeshift_fishing_rod:85,male:[58,92,300,483,500],malevol:[16,201],malform:[343,494,497],malici:[30,199],malign:398,malysh:75,man2x1:69,man:[0,36,58,69,72,104,141,197,228,303,354],mana:[154,156],mana_cost:297,manaag:508,manag:[0,7,10,11,13,19,21,24,33,37,42,44,47,48,62,65,67,101,104,116,117,120,124,130,132,141,144,157,160,161,168,178,192,196,201,203,205,206,207,208,211,222,227,232,233,235,236,238,270,282,306,316,344,354,376,391,394,399,401,402,406,408,410,415,416,420,427,467,468,470,471,472,475,476,485,488,489,493,496,537,540,541,542,547,548],manager_nam:468,manchest:496,mandat:536,mandatori:[41,45,72,80,94,96,98,116],mandatorytraitkei:358,maneuv:[111,390],mangl:446,mango:[103,309],manhol:440,manhole_ssh:440,mani:[0,1,7,10,11,12,13,14,16,17,18,19,20,21,23,28,30,31,37,41,42,44,45,47,48,49,52,53,54,55,60,61,62,63,64,67,68,69,70,72,73,74,75,81,91,96,104,108,109,111,112,114,116,117,119,121,122,123,124,126,128,129,130,132,134,135,136,140,142,143,146,147,156,158,159,160,161,162,163,168,169,170,172,173,174,175,176,178,179,189,193,197,198,199,200,201,203,210,211,215,217,222,227,233,238,249,255,274,279,287,290,296,298,314,315,329,341,342,344,354,370,374,384,390,394,395,398,400,401,407,410,415,420,434,442,444,463,468,470,471,473,480,481,483,487,488,489,545],manifest:132,manipul:[0,14,21,28,39,41,42,50,67,80,90,94,96,110,117,122,126,158,175,210,222,232,237,258,318,320,358,393,400,402,409,426,476,481,542,544],manner:[16,333,354,402,438,470],manpow:118,manual:[0,7,8,11,14,16,23,31,33,37,41,42,48,50,52,60,62,64,67,74,94,110,111,116,117,119,121,123,125,128,132,133,135,139,140,143,144,152,156,162,165,168,170,171,174,179,181,183,187,194,195,196,197,201,202,203,205,209,222,274,281,342,358,368,373,390,402,407,413,420,437,444,480,481,483,548],manual_paus:[42,413],manual_transl:[104,353],manytomanydescriptor:[211,238,394,401,410,468,470,471],manytomanyfield:[211,238,394,401,410,468,470,471],map10:339,map11:339,map12a:339,map12atransit:339,map12b:339,map12btransit:339,map1:[116,339,342],map2:[116,339,342],map3:339,map4:339,map5:339,map6:339,map7:339,map8:339,map9:339,map:[0,8,17,19,28,30,36,58,68,73,75,82,86,94,95,96,104,115,117,122,153,157,161,162,165,187,192,201,205,206,219,227,236,239,248,249,251,279,318,333,334,335,336,338,339,340,341,343,344,353,354,358,395,402,406,407,444,468,470,473,479,480,483,494,496,500,501,548],map_align:[116,344],map_area_cli:344,map_character_symbol:[116,344],map_data:[339,341],map_displai:[116,339,344],map_exampl:336,map_fill_al:[116,344],map_legend:98,map_mod:[116,344],map_modul:170,map_module_or_dict:341,map_separator_char:[116,344],map_str:[115,159,170,333],map_target_path_styl:[116,344],map_visual_rang:[116,344],mapa:116,mapb:116,mapbuild:[98,205,206,239,318,548],mapc:116,mapcorner_symbol:341,mapdata:343,maperror:[340,341],maplegend:98,maplink:[116,341,342],mapnam:[98,335,343],mapnod:[116,341,342],mapp:483,mapparsererror:[340,342],mapper:[341,483,487,501],mapprovid:[115,333],maps_from_modul:343,mapstr:[116,343],mapstructur:341,mapsystem:201,maptransit:340,maptransitionnod:[116,342],mar:64,march:[2,181,489],margin:18,mariadb:202,mark:[0,12,15,16,23,30,31,33,50,51,53,59,60,71,73,74,111,116,119,126,130,135,141,152,159,162,189,190,193,195,197,201,214,221,261,284,297,320,339,341,342,386,390,461,468,470,474,479,480,483,492],mark_categori:390,markdown:[31,119,123,185,201],marker:[15,19,23,30,36,53,58,60,92,111,116,117,122,135,141,144,201,227,228,279,284,296,300,320,341,342,354,390,402,432,440,443,448,449,468,471,473,479,480,481,489,525],market:[142,197],markup:[31,58,60,117,151,166,201,205,206,222,247,248,249,472,495,496,548],martei:75,marti:75,martiniussen:75,mask:[104,117,141,309,354,381,382],maskout_protodef:309,mass:[7,140,165,315,548],massiv:[121,154,201],master:[87,89,95,110,117,118,119,124,125,139,140,146,147,161,172,179,192,196,198,201,358,466],match:[0,2,10,11,12,14,20,21,23,28,30,31,32,33,36,37,39,41,42,44,46,48,50,51,53,60,65,67,68,73,80,82,85,90,98,110,115,116,124,128,130,132,137,144,151,157,158,159,161,162,163,169,170,172,178,179,183,200,201,208,210,213,214,215,216,217,220,222,227,228,229,231,233,236,237,245,248,251,264,296,303,306,309,315,320,333,341,342,344,354,358,384,392,393,395,397,398,400,402,406,407,409,412,415,425,426,438,451,461,468,469,470,471,473,478,480,482,483,489,491,493,494,495,496,497,499,525,547],match_index:214,matched_charact:384,matcher:28,matches2:67,matchobject:[473,495],mate:122,materi:[85,135,142,296,297],math:157,mathemat:[141,215],matlab:1,matplotlib:453,matric:[116,341],matrix:[116,482],matt:75,matter:[4,21,28,31,34,44,45,64,69,85,96,104,116,123,124,125,135,136,139,140,144,146,147,151,153,161,163,164,169,171,193,199,215,296,316,342,354,374,401,425,468],matur:[0,11,31,53,69,72,135],maverick:122,max:[19,56,75,83,91,110,141,142,147,159,188,201,229,341,354,357,358,384,395,463,489,496],max_char_limit:201,max_char_limit_warn:201,max_command_r:201,max_connection_r:201,max_damag:314,max_dbref:469,max_depth:496,max_dist:159,max_entri:201,max_heal:314,max_hp:83,max_l:159,max_length:[67,159,178,354],max_lin:482,max_nest:483,max_nr_charact:[0,142,201],max_num_lin:541,max_pathfinding_length:341,max_popular:541,max_rmem:487,max_siz:[339,341,489],max_target:315,max_tim:339,max_valu:[350,536],max_w:159,max_width:159,maxalex:0,maxconn:187,maxdelai:[417,431,432,451],maxdepth:407,maxdiff:[233,298,355,520,531],maximum:[56,60,67,91,93,116,117,141,142,157,169,170,188,201,208,293,312,313,314,315,316,341,350,358,384,402,407,465,473,480,482,483,496],maxiumum:339,maxlengthvalid:[201,208],maxnum:496,maxrotatedfil:489,maxsplit:473,maxthread:465,maxval:[0,483,496],maxvalu:483,maxwidth:482,may_use_red_door:41,mayb:[14,15,16,20,21,23,28,41,46,67,74,77,80,85,116,119,124,130,132,133,134,137,140,142,143,146,147,152,153,158,159,164,167,168,185,195,197,216,264,287,297,353,438],mcclain:75,mccormick:75,mccp:[32,184,205,206,416,425,428],mccp_compress:433,mcintyr:75,mcmillan:0,md5:183,meadow:[30,46,74,80,141,483],mean:[0,6,7,8,10,11,12,14,15,16,17,19,20,21,23,28,30,32,33,34,35,36,39,41,42,44,46,48,52,54,55,58,60,62,65,67,68,70,73,80,85,94,95,96,104,110,114,115,116,117,118,121,122,125,128,130,131,132,133,134,135,136,138,139,140,143,144,146,147,151,154,159,161,162,163,166,168,170,171,174,175,176,179,180,183,192,197,199,200,201,203,208,209,210,216,222,229,261,274,279,297,341,344,347,353,358,375,397,400,402,406,407,411,415,420,444,460,468,470,473,480,482,483,487,489,492,493],meaning:[217,233],meaningless:175,meant:[0,21,31,35,42,48,49,51,52,56,65,74,80,92,110,112,115,117,128,132,134,141,158,163,176,185,201,215,245,279,300,312,313,314,315,316,333,354,358,370,376,392,402,425,474,496],meanwhil:31,measaur:7,measur:[7,175,197,201,214,231,341,451,452,496],meat:[125,127,139,145,148,150,178],mech:[165,548],mechan:[0,8,19,20,23,27,28,41,42,48,90,112,117,125,138,139,140,146,147,154,157,162,164,169,175,176,201,208,209,213,280,315,320,354,396,407,415,420,424,430,438,449,460,470,478,481,485,491,542,547],mechcmdset:152,mechcommand:152,mechcommandset:152,meck:152,med:64,medan:64,media:[56,75,117,132,201,448,465,492,504,505,506,508,509,510,511,512,536],media_root:201,media_url:201,median:159,mediat:146,mediev:297,medium:[56,201],mediumbox:429,meet:[4,115,132,138,141,153,260,333,464],mele:[83,112,141,316],melt:[296,297],mem:[201,232],member:[14,19,50,67,124,142,201,227,228,230,402,496],membership:[123,124,130],memori:[0,7,21,23,24,31,48,53,55,67,70,73,83,133,135,154,160,183,191,197,201,208,232,236,402,414,415,453,463,468,472,481,487,491,496],memoryerror:195,memoryusag:453,memplot:[205,206,416,450],meni:245,mental:[125,176],mention:[14,15,16,17,23,31,32,47,54,62,69,70,124,128,130,135,140,152,155,159,160,161,176,195,197,216,255],menu:[0,1,9,11,21,24,41,44,53,91,95,109,113,117,119,120,125,131,138,140,141,142,145,153,164,175,185,186,193,201,203,205,206,222,239,244,245,246,275,276,277,280,370,373,384,388,390,403,407,418,420,472,490,548],menu_cmdset:480,menu_data:28,menu_edit:245,menu_login:[0,99,205,206,239,240,548],menu_modul:480,menu_module_path:480,menu_quit:245,menu_setattr:245,menu_start_nod:370,menu_templ:[28,480],menuchoic:[28,480],menudata:[278,373,384,404,480],menudebug:[0,28,480],menufil:480,menunode_fieldfil:384,menunode_inspect_and_bui:168,menunode_shopfront:168,menunode_treeselect:390,menunodename1:28,menunodename2:28,menunodename3:28,menuopt:390,menutest:126,menutre:[28,480],merchandis:142,merchant:[95,109,117],mercuri:69,mere:[93,117,171,232,350],merg:[0,8,12,23,24,28,30,80,94,115,118,119,122,130,133,134,144,149,158,161,163,213,214,215,216,333,368,376,407,410,444,480],merge_prior:480,merger:[21,170,215,216],mergetyp:[21,28,147,215,368,376,478,480,481],merit:144,mess:[7,14,19,20,57,111,119,142,197,390],messag:[0,7,10,11,12,15,17,19,20,23,27,28,29,30,32,33,35,37,40,42,44,51,54,61,62,64,70,71,74,76,80,85,91,92,94,95,98,106,117,119,120,122,126,128,135,137,140,141,142,144,146,147,152,154,155,158,162,163,166,167,168,169,170,172,175,177,182,186,188,195,197,199,200,201,203,208,209,213,216,217,220,222,227,228,229,235,236,237,238,245,259,261,274,279,280,282,287,290,296,298,300,303,309,312,316,335,342,354,358,363,364,366,368,373,374,375,376,381,384,386,400,402,409,420,422,429,431,432,438,439,440,443,444,446,448,457,459,461,463,465,476,478,480,481,483,489,493,494,496,548],message_rout:51,message_search:237,message_tag:201,message_templ:175,message_transform:236,messagemiddlewar:201,messagepath:[61,548],messagewindow:51,messeng:366,messsag:282,meta:[35,48,132,200,201,470,487,504,505,506,508,509,512,516,519,522,536],metaclass:[48,67,217,470],metadata:[35,381,422],metavar:274,meteor:167,meter:[0,93,117,350,358],method:[0,2,6,10,12,13,14,19,20,21,24,28,30,31,33,37,39,41,44,45,46,47,48,51,53,54,58,62,65,67,68,76,80,85,94,95,101,102,104,105,106,110,114,116,119,121,122,124,125,126,129,130,131,134,136,137,144,146,147,153,154,155,156,157,159,162,163,164,169,170,171,172,173,174,175,177,178,179,200,201,208,210,211,213,215,216,217,219,222,223,227,229,230,232,233,236,237,238,243,245,246,251,252,258,261,270,274,277,279,282,283,284,287,293,296,298,306,309,312,313,314,315,316,317,320,326,329,333,335,339,342,344,353,354,355,357,358,364,368,373,374,375,376,380,381,386,392,393,394,397,398,400,402,409,414,415,417,422,425,426,427,429,430,431,432,433,438,440,443,446,448,449,451,452,456,458,459,460,461,463,468,470,471,473,474,476,478,480,481,482,483,484,487,488,489,490,491,493,494,495,496,506,512,516,517,519,520,522,542,545,547],methodnam:[233,243,246,249,252,256,262,271,273,283,288,291,294,298,301,304,307,310,317,321,327,330,332,339,348,351,355,357,364,371,377,382,387,389,415,446,456,488,494,501,520,531,537],metric:[167,353],michael:75,microsecond:14,microsoft:[170,193],mid:[69,155,174],middl:[23,155,159,197,313,339,473],middleman:187,middlewar:[0,201,205,206,502,526],midnight:[94,153,163],midst:138,midwai:60,mighht:169,might:[1,6,8,10,12,16,17,18,20,21,23,28,29,31,33,37,39,42,44,47,54,55,60,62,64,77,80,94,95,96,105,108,113,114,117,121,123,125,126,128,140,142,146,147,151,153,154,155,156,157,162,163,164,166,167,168,169,170,173,175,176,177,178,182,183,191,192,195,197,198,199,200,203,216,220,222,274,287,312,329,381,386,402,409,449,470,473,478,490,496,519,536],mighti:[19,133,155,170],migrat:[0,2,3,4,5,7,10,45,67,75,117,119,124,125,132,170,178,183,190,191,193,196,203,407],mike:222,million:[178,183],mime:[75,237,476],mimic:[0,7,10,14,27,42,121,142,146,183,238,358,392,459,478],mimick:[27,122,146,451,478,481],mimim:471,min:[42,86,91,110,141,159,163,201,251,357,358,384,483,484],min_damag:314,min_dbref:469,min_heal:314,min_height:482,min_length:201,min_shortcut:[80,245],min_valu:536,min_width:482,mind:[15,16,28,54,55,83,93,94,117,118,121,135,136,140,141,143,144,160,161,165,176,179,183,185,261,287,350,386,422,496],mindex:214,mine:[58,95,142,199,483,500],mini:[39,58,121,132,133,134,170],miniatur:138,minim:[7,44,53,75,104,116,140,143,147,199,353,407],minimalist:[23,69,162],minimum:[0,44,80,85,91,110,117,122,142,146,162,201,312,314,315,358,384,425,465,470,482,483,491,496],minimum_create_permiss:517,minimum_list_permiss:517,minimumlengthvalid:201,mininum:482,minlengthvalid:[201,208],minor:[196,216],mint:[12,187,193],minthread:465,minu:[67,130,402,484],minut:[20,42,94,143,147,154,163,169,181,192,201,227,232,251,287,463,484,496],minval:[0,483,496],mirc:432,mirror:[44,100,116,135,205,206,239,359,548],mirth:98,mis:161,misanthrop:130,miscelan:472,miscellan:[117,131,132],misconfigur:183,mismatch:[32,496],miss:[0,19,53,64,118,126,142,159,161,193,195,197,296,298,312,313,314,315,316,406,425],missil:[152,315],mission:164,mistak:[0,50,119],mistaken:0,mistakenli:0,misus:197,mit:[181,473],mitig:[161,199,546],mix:[0,10,14,23,28,58,60,64,77,110,116,117,120,130,144,156,176,178,208,229,238,279,287,297,341,354,358,402,406,407,464,471,474,482,483,496],mixabl:279,mixer:279,mixer_flag:279,mixin:[0,10,37,83,205,206,406,454,494,502,519,522,535,539,540,541,542,544,547],mixtur:[166,279,483],mkdir:[4,124,193],mktime:163,mlocati:64,mmo:112,mmorpg:143,mob0:160,mob:[16,33,44,113,121,125,138,139,140,160,205,206,216,222,239,359,372,376,377,407,474,548],mob_data:160,mob_db:160,mob_vnum_1:160,mobcmdset:374,mobdb:160,mobil:[16,41,138,142,188,374,397],moboff:374,mobon:374,mock:[297,414,494],mock_random:364,mock_repeat:233,mock_tim:[294,357,456],mock_tutori:233,mockdeferlat:494,mockdelai:494,mocked_idmapp:456,mocked_o:456,mocked_open:456,mocked_randint:348,mockrandom:298,mockval:494,mod:[0,110,182,357,358,406],mod_import:496,mod_import_from_path:496,mod_or_prototyp:406,mod_prototype_list:406,mod_proxi:202,mod_proxy_http:182,mod_proxy_wstunnel:182,mod_secur:199,mod_ssl:202,mod_sslj:182,mod_wsgi:202,mode:[0,6,7,9,13,21,24,26,27,28,32,53,61,73,78,94,97,106,116,128,133,135,136,142,147,164,171,175,178,181,182,187,192,199,201,202,205,221,229,232,234,243,303,339,341,344,368,374,402,420,425,430,437,448,449,458,474,478,480,483,489,496,548],mode_clos:449,mode_init:449,mode_input:449,mode_keepal:449,mode_rec:449,model:[0,2,14,31,33,35,36,42,46,47,48,49,50,58,61,73,84,110,112,117,119,122,124,130,142,146,151,164,177,201,205,206,207,208,210,235,236,237,293,358,391,399,402,408,411,415,416,426,467,468,469,471,472,477,485,486,488,492,493,496,504,505,506,508,509,510,511,512,516,519,536,540,541,542,546,547,548],model_inst:492,modeladmin:[506,508,509,510,511,512],modelattributebackend:468,modelbackend:528,modelbas:487,modelchoicefield:[504,509],modelclass:[14,46],modelform:[504,505,506,508,509,510,512,536],modelmultiplechoicefield:[504,506,508,509],modelnam:[201,217,236,392,394,470],modelseri:519,modelviewset:522,moder:[77,104,123,157,287],modern:[0,14,17,54,69,99,117,156,170,176,181,187,199,201,433],modif:[12,23,30,53,65,94,95,96,118,153,169,175,182,192,201,358,466,536],modifi:[0,1,11,12,13,14,19,21,23,24,28,30,31,37,41,42,44,48,49,51,52,60,62,73,74,80,85,88,89,92,94,95,96,99,104,108,110,112,116,117,119,120,121,123,125,126,127,128,132,134,135,136,137,138,141,142,143,144,146,150,153,157,158,160,161,162,168,170,172,175,180,183,192,200,201,203,208,216,229,236,245,261,274,279,280,282,296,297,300,309,312,313,314,315,316,320,329,347,354,357,358,375,376,394,400,402,407,415,468,470,474,480,487,492,495,504,525,536,540,541,542,544,546,547],modul:[0,1,7,8,10,14,15,17,20,21,23,25,27,28,30,31,32,33,37,42,44,45,48,53,62,65,69,73,76,77,80,81,82,83,85,86,87,88,89,91,93,94,98,99,102,104,105,107,108,111,112,114,116,117,118,119,121,125,126,127,128,131,132,133,134,136,141,142,144,145,149,152,155,160,161,162,163,166,167,168,170,171,174,175,186,191,198,199,200,201,202,203,213,214,216,217,222,224,225,226,229,231,233,245,248,249,251,254,255,258,259,260,262,270,274,277,279,282,284,287,290,293,296,297,298,312,313,314,315,316,320,326,329,335,341,343,347,350,353,354,357,358,368,374,375,376,382,384,386,390,392,397,398,401,402,405,406,407,411,413,414,415,417,419,420,424,425,429,437,439,440,443,444,447,449,451,452,453,458,460,461,462,468,470,471,472,473,474,475,476,477,478,479,480,481,483,484,494,496],modular:0,module1:118,module2:118,module_path:343,module_with_cal:483,modulepath:429,mogilef:75,moifi:320,mold:136,mollit:29,moment:[0,21,31,47,64,73,95,133,141,152,161,168,169,201,208,341,410],mona_lisa_overdr:137,monei:[67,77,117,124,140,141,142,143,197],monetari:[118,287],mongodb:75,monitor:[0,7,34,68,120,411,425,444,487],monitor_handl:[0,34,120,205,411],monitorhandl:[0,24,32,205,206,408,548],monlit:130,mono:153,monster:[31,37,41,122,133,136,140,141,142,145,155,161,222,407],monster_move_around:136,month:[0,75,86,94,117,118,163,187,197,201,251,484,489,496],monthli:[118,163],montorhandl:34,moo:[69,72,121,125,161,181,395,483],mood:[95,110,138,142,143,358],moon:[130,153,163,167],moonlight:130,moonlit:130,moor:[98,138],moral:8,more:[0,2,4,6,7,8,10,12,13,14,15,16,17,18,19,20,21,23,24,25,27,28,29,30,31,32,35,36,37,39,42,44,46,47,48,51,53,54,55,57,61,62,63,64,65,67,68,69,70,76,77,78,80,81,84,88,89,90,93,94,95,96,98,101,102,104,105,106,108,109,110,111,112,113,115,116,117,118,121,122,123,124,125,126,127,128,130,131,132,133,135,136,137,138,139,140,141,143,144,146,147,148,149,151,152,153,154,157,158,159,160,162,163,164,168,169,170,172,174,175,176,177,178,179,181,183,187,188,189,190,191,192,193,197,199,200,201,203,205,207,208,210,211,214,215,216,221,222,227,228,229,232,233,234,236,237,239,245,251,254,255,261,264,274,277,279,287,290,293,296,312,313,314,315,316,320,329,333,341,342,343,344,350,353,354,358,368,370,374,375,376,386,390,393,395,400,402,406,407,409,430,432,435,444,451,452,461,466,468,469,470,473,474,476,477,478,479,480,481,482,483,487,493,494,496,497,509,518,519,536,545],more_command:481,more_funcparser_cal:30,morennanoth:233,morennthird:233,moreov:[42,197],morn:[90,91,141,320,384],morph_engli:499,morpholog:499,mortal:31,mosso:75,most:[0,2,6,7,8,10,11,14,15,18,19,20,21,23,25,28,31,32,33,35,37,44,45,47,48,49,50,51,53,54,58,60,62,65,67,68,69,70,72,74,80,85,93,94,95,96,104,108,110,116,117,118,119,122,123,124,125,126,128,129,130,131,132,135,136,137,138,141,142,143,144,146,147,153,156,157,159,160,161,162,163,164,167,169,170,171,174,175,176,178,182,183,192,195,197,199,200,201,208,211,215,216,219,222,230,238,245,284,296,297,312,313,314,315,316,329,339,341,342,350,353,354,358,376,394,395,398,401,402,406,407,410,414,443,448,458,468,469,470,471,480,481,487,488,494,496,541],mostli:[0,28,48,51,53,62,94,116,146,161,164,169,175,197,215,234,314,333,342,347,353,440,504],motiv:[15,16,37,121,125,139,140,431,432,438,439,440,443,448,449,460,461],mount:192,mountain:[69,98,170],mous:[51,59,201,480],mouth:335,movabl:279,move:[0,12,16,17,19,23,27,28,29,37,77,80,91,94,95,96,110,113,115,116,117,123,124,125,132,133,135,136,138,140,141,142,147,152,155,158,159,162,164,167,168,169,170,171,176,178,179,183,185,196,216,222,228,245,260,279,280,282,287,312,315,316,318,329,333,335,342,358,374,375,376,384,393,397,402,452,470,474,481],move_around:[133,136],move_callback:232,move_delai:232,move_hook:402,move_obj:333,move_posit:279,move_to:[0,37,96,144,168,174,329,402],movecommand:158,moved_obj:[280,333,376,402],moved_object:402,movement:[0,41,108,112,116,117,141,162,174,232,312,316,329,341,342,402],movementfailcmdset:158,mover:316,mptt:123,mratio:[214,231],msdp:[0,65,425,444],msdp_list:[0,425],msdp_report:[0,425],msdp_send:425,msdp_unreport:[0,425],msdp_var:444,msg:[0,6,10,13,14,15,19,20,23,24,27,28,29,33,34,37,39,44,51,54,62,67,68,72,80,83,84,85,92,93,94,95,96,97,98,100,114,117,119,120,126,133,134,135,136,144,146,147,153,154,155,156,158,160,162,163,167,168,169,170,172,174,175,188,201,205,208,209,210,217,219,222,223,227,236,237,238,274,279,282,293,296,300,303,341,342,343,344,350,358,366,368,381,398,402,431,432,459,474,476,478,480,481,489,494,496,505,506,512,548],msg_all:147,msg_all_sess:[23,217],msg_already_sit:144,msg_arriv:[94,96],msg_channel:227,msg_char:279,msg_cinemat:284,msg_content:[0,20,23,30,37,42,58,94,95,96,152,163,172,174,175,177,402],msg_db_tag:506,msg_help:229,msg_leav:[94,96],msg_locat:402,msg_other:287,msg_other_sit:144,msg_receiv:402,msg_room:279,msg_self:402,msg_set:471,msg_sitting_down:144,msg_standing_fail:144,msg_standing_up:144,msg_system:279,msgadmin:506,msgform:506,msglauncher2port:[420,429],msgmanag:[237,238],msgobj:236,msgportal2serv:429,msgserver2port:429,msgstatu:[420,429],msgtaginlin:506,mssp:[132,200,201,205,206,416,428],mssp_meta_modul:201,mtt:447,much:[0,1,2,6,7,14,15,16,17,28,31,33,37,42,47,48,53,54,58,64,70,80,85,94,96,104,110,111,116,122,123,125,126,128,130,133,134,135,136,138,142,143,144,145,146,147,153,155,157,159,160,163,164,167,169,170,173,174,177,178,179,183,193,197,201,211,216,221,230,245,251,293,316,341,347,353,354,358,368,375,390,460,468,471,473,474,475,482,496,514,525],muck:[125,161],mud:[0,8,11,17,32,33,36,40,44,47,51,58,60,62,68,69,73,74,80,89,94,112,117,121,122,128,132,135,138,140,143,146,147,152,156,159,160,169,170,171,176,177,181,182,183,184,189,190,192,193,195,197,198,200,201,203,211,216,219,316,373,417,433,434,435,440,443,444,447,474,484],mudbyt:181,mudconnector:[181,234],mudderi:181,muddev:[124,193,195],mudform:479,mudinfo:[0,126,201,234],mudlab:181,mudlet:[0,184,435],mudmast:184,mudprog:[94,117],mudramm:184,mudstat:234,muhammad:495,mukluk:184,mult:[30,41,357,358,483],multi:[0,21,28,44,54,80,111,113,117,118,119,121,125,127,133,137,138,139,140,144,175,192,200,201,214,232,246,279,297,339,341,342,354,390,395,402,461,480,496,544],multiaccount_mod:8,multidesc:[205,206,239,285,548],multilin:495,multilink:[116,342],multimatch:[0,21,137,201,214,354,402,483,496],multimatch_str:[208,354,402,496],multimedia:[0,51,75],multipl:[0,10,16,19,20,21,23,30,31,34,37,41,44,45,47,48,50,55,60,62,68,69,80,82,83,85,89,94,98,101,111,112,116,117,122,125,130,132,133,135,138,139,140,146,156,162,163,175,183,197,200,201,208,213,215,220,221,222,227,229,231,232,248,255,262,270,296,300,306,312,314,315,320,341,342,347,350,354,357,366,376,390,398,400,402,406,407,415,418,422,425,429,444,452,468,469,474,480,482,493,494,496,505,512],multiplay:[0,19,89,117,121,125,139,142,143,161,181],multipleobjectsreturn:[208,209,211,236,238,251,261,279,280,281,287,290,300,309,312,313,314,315,316,320,326,329,333,343,344,353,354,363,366,368,370,374,375,376,386,394,401,402,406,410,413,427,453,468,471,484,488],multiplet:201,multipli:[30,135,358],multisess:[24,61,164,201,480,548],multisession_mod:[0,13,23,44,50,122,142,164,175,178,184,201,208,219,223,300,402,461],multisession_modd:28,multitud:[60,161,170],multumatch:402,mundan:[138,152],murri:496,muscular:141,muse:181,mush:[4,69,82,101,117,121,124,125,146,147,165,181,248,306,548],mushclient:[32,184,425,435],musher:181,mushman:69,mushpark:197,music:52,musket:130,musoapbox:[161,181],must:[0,1,7,8,10,11,12,13,14,17,21,23,27,28,30,31,32,33,34,35,36,37,39,41,42,46,47,48,49,50,51,52,53,54,58,59,62,64,65,70,73,74,76,77,82,83,84,94,96,103,104,106,110,116,117,118,119,122,123,125,126,129,132,133,134,135,136,137,139,140,141,143,144,147,151,153,155,159,160,162,163,166,168,171,175,178,182,184,186,187,188,189,192,193,195,197,199,200,201,203,209,214,215,217,222,227,233,236,237,238,248,251,254,255,279,282,287,290,293,296,309,312,313,314,315,316,341,342,344,353,354,358,368,373,375,376,381,390,392,394,395,397,402,405,406,409,411,415,420,425,438,440,443,460,462,463,468,469,470,471,473,474,475,476,477,478,479,480,481,483,484,490,491,492,493,494,496,497,499,505,512,519,527,544,545],must_be_default:216,mustn:116,mutabl:[0,2,477],mute:[18,19,102,208,227,236,270],mute_channel:227,mutelist:[19,236],mutual:[368,469],mux2:[72,234],mux:[23,61,69,82,102,117,121,125,128,152,162,199,212,230,248,269,270,271,548],mux_color_ansi_extra_map:[82,248],mux_color_xterm256_extra_bg:[82,248],mux_color_xterm256_extra_fg:[82,248],mux_color_xterm256_extra_gbg:[82,248],mux_color_xterm256_extra_gfg:[82,248],mux_comms_cmd:[102,205,206,239,240,548],muxaccountcommand:[230,303],muxaccountlookcommand:219,muxcommand:[0,23,120,126,153,154,155,156,158,162,167,175,201,205,206,212,218,219,220,221,222,227,228,229,231,232,234,255,259,277,290,303,306,309,314,315,320,326,335,347,370,376,402,478],mvattr:[26,126,222],mxp:[0,32,59,184,201,205,206,229,416,425,428,440,443,473,480,495,496],mxp_enabl:[0,201],mxp_outgoing_onli:[0,201],mxp_pars:435,mxp_re:473,mxp_sub:473,mxp_url_r:473,mxp_url_sub:473,my_callback:462,my_datastor:67,my_func:136,my_funct:155,my_github_password:12,my_github_usernam:12,my_identsystem:36,my_object:155,my_port:62,my_portal_plugin:62,my_script:42,my_server_plugin:62,my_servic:62,my_word_fil:[104,353],myaccount:46,myaccountnam:137,myapp:67,myarx:124,myattr:[14,208],mybool:14,mybot:227,mycar2:36,mychair:46,mychan:19,mychannel1:227,mychannel2:227,mychannel:[19,55,227],mycharact:166,mychargen:28,mycmd:[0,23,31,420],mycmdget:134,mycmdset:[21,23,126,134],mycommand1:21,mycommand2:21,mycommand3:21,mycommand:[10,21,23,31,65,126,134,137,156,494],mycommandtest:494,mycompon:51,myconf:4,mycontrib:10,mycontribnam:118,mycss:51,mycssdiv:51,mycustom_protocol:62,mycustomchannelcmd:19,mycustomcli:62,mycustomview:73,mydata:14,mydatastor:67,mydbobj:14,mydefault:30,mydhaccount:192,mydhaccountt:192,mydhacct:192,mydict:14,myevennia:189,myevilcmdset:[21,215],myevmenu:28,myfix:12,myformclass:53,myfunc:[10,28,30,47,54,496],myfuncparser_cal:30,myfunct:10,mygam:[0,1,6,7,9,10,11,12,13,14,15,16,19,20,21,25,28,32,33,37,41,42,48,49,50,51,53,62,64,67,73,75,77,80,81,82,85,87,89,90,92,97,98,99,101,102,104,107,108,110,115,116,119,120,124,125,126,131,132,133,134,135,136,144,146,147,149,151,152,153,156,158,159,160,161,162,163,164,166,167,168,170,172,173,174,175,178,179,183,185,186,187,188,190,191,192,193,195,196,197,200,201,203,205,239,245,248,270,297,303,306,318,320,326,328,336,338,347,354,358,445,494,496],mygamedir:119,mygamegam:166,mygrapevin:227,mygreatgam:53,myhandl:45,myhousetypeclass:222,myinstanc:67,myircchan:227,mykwarg:28,mylayout:51,mylink:119,mylist1:14,mylist2:14,mylist:[8,14,470],mylog:20,mymap:[98,116],mymenu:28,mymethod:160,mymodul:47,mymud:[9,182],mymudgam:[197,201],mynam:[142,192,194],mynestedlist:477,mynod:28,mynoinputcommand:23,mynpc:175,myobj1:46,myobj2:46,myobj:[14,20,33,42,222,415],myobject:14,myobjectcommand:153,myothercmdset:21,myownfactori:62,myownprototyp:41,mypassw:255,mypassword:49,myperm:471,myplugin:51,mypobj:14,myproc:62,myproc_en:62,myprotfunc:41,mypwd:194,myrecip:85,myreserv:30,myroom:[42,46,130,160,222],myros:37,myscript:[42,46,48],myself:[14,58,143,483,500],myserv:255,myservic:62,mysess:44,mysql:[4,11,122,201,202,496],mysqlclient:183,myst:548,mysteri:[31,36,191],myston:137,mystr:14,mytag2:471,mytag:[46,51,471],mytestobject:10,mytestview:53,mythic:138,mytick:415,mytickerhandl:415,mytickerpool:415,mytrait:[110,358],mytupl:14,myusernam:49,myvar:23,myview:73,myxyzroom:116,n_objects_in_cach:201,naccount:461,nail:[85,296],naiv:[217,236,321,333,392,394,470],nake:23,name1:222,name2:222,name:[0,2,4,5,6,7,9,10,11,12,13,14,15,16,17,19,21,23,26,28,29,30,31,32,33,34,36,37,39,41,42,44,45,46,48,49,50,51,53,54,57,58,62,63,65,67,68,70,73,74,75,76,80,83,85,86,89,91,94,95,96,99,104,105,110,111,115,116,117,119,122,123,124,125,126,128,129,130,131,132,134,135,136,137,138,139,140,141,144,147,149,151,153,155,158,159,160,161,162,163,164,166,167,168,169,170,171,174,175,176,177,178,179,183,184,185,186,187,188,189,190,191,192,197,199,200,201,203,205,208,209,210,211,213,214,215,216,217,219,220,222,227,228,229,230,231,232,233,234,236,237,238,245,251,255,258,260,261,264,270,274,277,279,280,282,284,290,293,296,297,309,314,315,326,332,333,335,341,342,343,344,353,354,357,358,374,376,384,386,390,392,393,394,395,400,401,402,406,407,409,410,411,413,415,420,423,425,426,427,429,430,432,437,440,443,444,447,448,449,452,461,463,465,468,469,470,471,473,474,475,476,478,479,480,481,483,487,488,489,490,492,493,494,496,497,499,500,505,512,516,520,521,522,527,528,536,541,542,547],namecolor:390,namedtupl:258,nameerror:[6,135],namelist:303,namesak:8,namespac:[48,51,164,261,274,407,463,474,489,513],namn:64,napoleon:119,narg:274,narr:316,narrow:[49,116,134,142,144,169],nativ:[6,42,49,58,68,75,76,119,130,142,380,463,465,547],nattempt:28,nattribut:[0,24,28,48,147,222,400,407,459,468,470,476,480],nattributehandl:[0,468],nattributeproperti:[0,14,468],natur:[14,17,19,20,46,68,121,181,209,482],natural_height:482,natural_kei:[201,468],natural_width:482,navbar:[0,53],navig:[9,11,28,116,119,124,159,170,178,179,316,544],naw:[29,184,205,206,416,428],nchar:173,nclient:451,ncolumn:482,ncurs:205,ndb:[0,14,15,23,28,42,44,48,80,83,147,153,155,208,211,232,401,410,459,470,480],ndb_:[222,407],ndb_del:459,ndb_get:459,ndb_set:459,ndbfield:83,ndk:191,nearbi:[116,215,216,217,316],nearli:[112,132,144,473],neat:[96,149,536],neatli:[69,496],necess:62,necessari:[4,12,48,60,62,69,80,85,94,96,98,116,123,131,132,140,157,161,162,169,172,174,183,201,203,216,217,238,261,274,279,342,376,381,406,407,449,474,480,482,483,490,492,496,505,512],necessarili:[41,68,116,117,119,138,161,197,201,496],necessit:462,neck:[14,41,81,290],neck_armor:14,neck_cloth:14,necklac:[81,141,290],need:[0,1,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19,20,21,23,25,27,28,30,31,32,33,34,36,37,41,42,44,46,47,48,50,51,52,53,54,57,58,60,62,63,64,65,67,68,70,73,74,75,76,77,78,80,83,84,85,86,88,89,90,92,94,95,98,104,110,111,114,115,116,117,118,119,122,123,124,126,127,128,130,131,132,133,135,136,137,138,139,140,141,143,144,146,147,148,149,151,152,153,154,155,156,157,158,159,160,161,162,163,164,166,167,168,169,170,171,172,174,175,176,178,179,181,182,183,185,186,187,188,189,190,191,192,193,195,196,197,198,199,200,201,203,208,209,210,211,215,217,219,222,227,228,230,236,245,255,259,260,261,262,274,279,280,282,284,287,293,296,297,300,309,312,313,315,320,333,335,341,342,343,353,354,358,368,374,375,376,386,390,392,398,401,402,406,407,409,420,422,425,429,437,444,449,451,459,460,461,465,468,470,471,473,474,476,480,481,482,483,484,490,491,493,494,496,499,505,507,512,514,541,545,548],need_gamedir:420,needl:309,needless:133,neg:[163,176,201,215,478,496],negat:[60,130,398,499],negoti:[77,287,434,436,438,447,461],negotiate_s:436,neighbor:[142,157,342],neither:[0,8,14,28,146,185,203,229,347,406,444,468,471,480,497],nelson:75,nenter:28,neophyt:[110,358],nerror:64,nest:[0,8,14,16,23,28,30,31,104,111,196,201,208,222,354,390,397,402,407,444,477,483],nested_r:222,nestl:170,neswmaplink:[116,342],net:[142,161,181,189,197,209,227,234,433,434,444,447,461],netrc:12,network:[0,62,70,120,121,122,143,181,183,186,188,189,197,199,201,209,227,431,432,437,458,461,548],neu:245,neural:142,neutral:[30,58,92,300,483,500],never:[1,2,12,14,16,20,21,23,28,30,35,39,41,47,48,55,60,67,68,89,94,104,110,116,122,132,133,135,136,137,140,141,142,144,160,163,169,172,174,178,185,187,200,201,208,232,260,315,316,336,353,354,358,374,398,402,459,468,477,496],nevertheless:[1,28,67,176,219,245],new_alias:[217,400],new_arriv:376,new_attrobj:468,new_channel:[162,227],new_charact:374,new_coordin:333,new_create_dict:279,new_datastor:67,new_destin:400,new_goto:480,new_hom:400,new_kei:[45,217,400,402,409],new_loc:[222,400],new_lock:[400,409],new_menu:245,new_nam:[45,222],new_name2:222,new_natural_kei:201,new_obj:[33,282,284,402,407,409],new_obj_lockstr:222,new_object:[41,407],new_permiss:400,new_po:279,new_posit:279,new_progress:280,new_raw_str:214,new_room_lockstr:222,new_ros:37,new_scor:280,new_script:42,new_typeclass:[208,470],new_typeclass_path:48,new_valu:[34,468],new_word:496,newbi:[121,153],newcom:[23,142,171],newer:124,newindex:390,newli:[12,49,63,95,114,130,135,162,178,210,222,236,237,245,274,282,284,296,303,341,344,386,393,400,402,407,413,476],newlin:[0,23,51,229,474,482],newnam:[23,222,470],newpassword:220,newstr:51,nexist:80,nexit:[10,173],next:[0,1,4,6,9,15,16,21,23,27,28,29,30,31,33,39,42,49,50,51,52,53,54,55,58,60,64,65,67,80,85,89,94,95,96,98,101,111,116,119,122,123,124,125,126,128,130,131,132,133,135,136,137,138,140,141,142,143,144,146,147,152,153,154,155,156,157,159,160,162,163,166,168,170,174,175,178,179,181,183,186,187,189,191,192,193,197,198,199,201,202,203,245,251,279,282,306,312,313,314,315,316,342,375,390,398,420,474,480,481,484,496,544],next_nod:28,next_node_nam:28,next_stat:[279,282],next_turn:[312,314],nextnod:480,nextnodenam:480,nextrpi:181,nfe:0,nfkc:208,ng2:482,nginx:[182,201],nice:[20,31,53,55,74,77,80,81,85,96,104,113,116,133,134,140,141,159,162,163,166,170,185,190,192,197,202,287,290,354,406,548],nicer:[128,135],niceti:222,nick:[0,13,14,19,24,26,32,37,72,104,126,161,181,201,208,209,222,227,228,236,354,401,402,432,468,469,519,548],nick_typ:36,nickhandl:[14,36,236,468],nicklist:[209,227,432],nicknam:[12,26,36,37,72,104,228,354,401,402,432,468,469],nickreplac:468,nickshandl:519,nicktemplateinvalid:468,nicktyp:[354,402],nifti:[134,182],night:[30,90,125,139,140,141,162,177,187,320],nine:[63,201],nineti:497,nit:163,nline:489,nmisslyckad:64,nnode:342,no_act:480,no_channel:[21,23,215,480],no_db:[406,407],no_default:[48,208,470],no_exit:[21,23,147,215,368,373,480],no_gmcp:444,no_log:216,no_match:245,no_mccp:433,no_more_weapons_msg:375,no_msdp:444,no_mssp:434,no_mxp:435,no_naw:436,no_obj:[21,215,368,373,480],no_of_subscrib:506,no_prefix:[208,217,219,220,221,222,227,228,229,230,231,232,233,234,236,245,255,259,270,273,274,277,287,290,296,297,300,303,306,309,312,313,314,315,316,320,326,329,335,347,354,368,370,374,375,376,384,390,402,451,478,480,481],no_superuser_bypass:[208,236,398,402,470],no_tel:33,noansi:494,nobj:173,nobodi:201,nocaptcha:178,nocaptcha_recaptcha:178,nocolor:[166,425,440,443,448,449],nod:141,nodaemon:9,node1:[28,480],node2:[28,480],node3:[28,480],node4:28,node5:28,node:[0,15,24,41,111,168,278,336,339,341,342,343,344,373,384,390,404,418,480],node_abort:28,node_apply_diff:404,node_attack:28,node_background:28,node_betrayal_background:28,node_border_char:[278,480],node_create_room:278,node_destin:404,node_end:28,node_examine_ent:404,node_exit:28,node_formatt:[28,278,384,480],node_four:28,node_game_index_field:418,node_game_index_start:418,node_guard:28,node_hom:404,node_index:[336,339,342,404,480],node_join_room:278,node_kei:404,node_loc:404,node_login:28,node_mssp_start:418,node_mylist:28,node_on:28,node_opt:278,node_or_link:[340,342],node_parse_input:28,node_password:28,node_prototype_desc:404,node_prototype_kei:404,node_prototype_sav:404,node_prototype_spawn:404,node_quest:28,node_quit:278,node_readus:28,node_select:28,node_set_desc:278,node_set_nam:28,node_start:418,node_test:28,node_usernam:28,node_validate_prototyp:404,node_view_and_apply_set:418,node_view_sheet:28,node_violent_background:28,node_with_other_nam:480,nodebox:499,nodefunc:480,nodekei:480,nodenam:[28,480],nodetext:[28,278,384,404,480],nodetext_formatt:[28,278,384,404,480],noecho:[135,232],noerror:402,nofound_str:[208,354,402,496],nogoahead:442,nohom:[400,476],noid:354,nois:[144,152],noisi:[197,417,422,430,440,443,451,465],noloc:222,nomarkup:[32,166],nomatch:[80,231,245,478,496],nomatch_exit:80,nomatch_single_exit:80,nomigr:10,nomin:542,non:[0,12,16,17,19,20,21,23,27,29,30,31,32,39,41,42,44,48,51,53,60,67,68,74,80,85,107,110,116,117,119,121,122,123,128,130,133,134,137,140,142,144,155,158,159,162,163,167,176,186,195,201,202,203,208,209,210,211,213,215,227,232,234,236,238,261,282,297,326,335,344,347,358,370,375,386,390,392,393,397,400,401,402,405,406,407,410,411,413,415,420,429,443,444,458,459,461,468,470,473,476,477,478,480,481,482,483,493,496,519,522,548],nonc:448,noncombat_spel:315,nondatabas:[459,470],none:[0,6,7,13,14,15,16,17,19,21,23,27,28,30,32,33,34,36,41,42,44,46,49,54,58,60,62,65,67,68,80,83,85,94,96,98,110,116,122,126,129,130,133,134,137,144,147,153,156,157,159,160,162,163,164,166,168,169,170,172,174,175,201,208,209,210,213,214,215,216,217,219,222,223,224,225,226,227,228,229,230,233,236,237,238,243,245,246,258,260,261,264,270,274,277,278,279,280,282,284,287,290,296,298,300,309,312,313,314,315,316,320,326,329,333,335,336,339,340,341,342,343,344,347,353,354,355,358,366,368,370,373,374,375,376,384,386,390,392,393,395,397,398,400,401,402,404,406,407,409,411,412,414,415,417,418,420,422,424,426,429,430,431,432,439,440,448,449,451,459,460,461,463,464,465,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,487,489,491,492,493,494,496,497,500,501,504,505,506,508,509,510,512,514,516,520,522,528,531,536,541,544,547],nonpc:175,nonsens:[0,353],noon:[33,64,94,128,146],nop:443,nopkeepal:[184,443],noqa:201,nor:[0,6,9,14,15,21,64,69,88,113,116,117,133,142,147,155,176,185,255,274,347,402,406,444,468,471],norecapcha:178,norecaptcha_secret_kei:178,norecaptcha_site_kei:178,norecaptchafield:178,normal:[0,7,8,10,11,12,13,14,15,16,17,19,20,21,23,28,30,31,32,33,35,36,37,39,41,44,46,48,50,51,53,54,57,60,63,64,65,67,68,70,73,74,75,77,78,86,90,95,106,107,110,113,114,116,117,118,119,121,122,124,126,128,130,133,134,135,136,138,141,147,149,152,153,155,156,158,159,160,161,162,163,164,166,167,168,170,174,175,176,179,183,189,191,192,196,197,200,201,203,208,209,211,213,214,215,216,217,219,222,229,232,236,243,249,251,274,279,287,296,312,313,314,315,333,341,342,344,347,358,368,374,376,392,397,401,402,404,407,415,420,429,432,433,434,436,438,452,459,461,467,468,469,470,473,474,477,480,481,487,493,494,496,502,519],normal_turn_end:147,normalize_nam:[0,402],normalize_usernam:[0,208],north:[37,59,78,80,94,95,96,98,108,116,128,144,158,159,170,174,222,245,329,335,341,342,343,452],north_room:98,north_south:170,northeast:[116,128,222,333,342],northern:[80,170],northwest:[116,222,341,342,343],nose:468,nosql:76,not_don:465,not_error:420,not_found:[14,222],notabl:[0,7,12,19,54,62,124,193,195,217,222,233,287,424,470,473,477,496],notat:[8,53,222,473,496],notdatabas:48,note:[1,2,5,6,7,9,11,12,13,14,15,19,20,24,26,30,32,33,37,39,41,42,44,45,47,48,51,53,55,57,58,59,60,61,64,65,67,68,70,73,75,76,82,83,85,89,90,94,96,102,104,106,107,110,111,114,116,117,118,122,123,124,125,126,128,130,133,134,135,136,137,138,140,142,144,146,147,151,152,153,155,159,161,162,163,164,168,171,174,175,176,178,179,183,184,191,192,197,199,201,203,205,206,208,209,210,214,215,216,217,219,222,223,224,227,228,229,230,232,233,234,236,237,239,248,249,251,255,260,261,264,274,279,284,287,290,296,297,300,306,309,312,313,314,315,316,318,320,326,328,333,335,341,342,343,344,347,353,354,358,368,376,386,390,392,393,397,398,400,401,402,406,407,409,415,417,420,425,429,430,432,433,437,438,439,440,443,444,445,447,448,451,453,454,459,461,465,466,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,487,489,491,492,493,494,496,504,505,517,519,522,525,544],notepad:[125,195],noteworthi:119,notfound:496,notgm:162,noth:[6,14,16,20,23,30,37,47,54,65,69,80,94,96,98,116,118,126,128,133,135,137,142,144,147,155,160,161,163,168,170,208,222,231,312,316,333,342,374,390,402,413,432,468,470,480],nother:173,notic:[4,6,12,15,23,54,55,80,94,95,96,116,128,132,133,142,144,155,157,163,164,169,171,174,176,183,201,245,363,433,543],notif:[51,123,191,201,303],notifi:[94,137,198,270,296,312,316,376,406],notification_popup:201,notification_sound:201,notificationsconfig:123,notimplementederror:443,notion:[47,85,145,147,163,358],noun:[0,58,104,353,354],noun_postfix:[104,353],noun_prefix:353,noun_transl:[104,353],nov:2,novemb:0,now:[0,1,4,8,9,11,12,13,14,16,19,20,21,23,28,30,33,35,37,38,41,42,44,47,48,49,51,52,53,54,55,58,60,67,69,73,74,77,80,85,86,89,91,94,95,96,106,110,111,115,116,117,121,122,124,125,126,128,130,131,132,133,134,135,136,137,138,140,141,142,143,144,146,148,149,151,152,153,154,155,157,159,160,161,162,163,164,166,167,168,169,170,171,172,174,175,176,178,179,181,183,186,187,188,189,190,191,192,193,195,196,197,198,199,203,216,227,229,251,261,287,298,333,337,358,368,384,390,398,402,432,440,461,492,494,496],nowher:[135,142,170,342],noxterm256:443,npc:[14,23,28,39,94,95,117,122,124,125,139,140,146,170,287,369,370,371,397,548],npcname:172,npcshop:168,nprot:173,nr_start:412,nroom:[80,173],nroom_desc:10,nrow:482,nsmaplink:[116,341,342],nsonewaymaplink:[116,342],ntf:195,nthe:368,nuanc:60,nudg:[106,180,368,465],nuisanc:199,nulla:29,num:[30,33,159,354,402],num_lines_to_append:489,num_object:130,num_objects__gt:130,num_tag:130,num_total_account:210,number:[0,1,4,7,8,10,14,15,20,21,23,27,28,30,35,36,42,44,45,46,47,48,49,53,54,55,73,74,75,81,86,87,89,91,93,94,96,98,104,105,111,115,116,117,119,122,126,130,133,134,135,136,137,138,142,144,146,147,152,159,161,162,163,166,168,170,173,175,179,183,187,188,192,197,198,200,201,205,208,209,210,214,215,216,220,222,227,228,229,237,238,251,258,260,261,264,279,290,293,296,312,314,315,335,339,341,342,344,347,350,353,354,384,386,390,400,402,406,407,409,412,418,420,425,431,432,434,438,451,452,461,463,465,468,469,471,473,474,476,478,480,481,482,483,484,487,489,493,496,499,506,521,522,536],number_of_dummi:420,number_tweet_output:173,numberfilt:516,numbertweetoutput:173,numer:[8,93,110,125,139,140,146,341,350,357,358,473],numericpasswordvalid:201,numpi:453,oak:297,oakbarkrecip:297,oakwood:297,oauth:201,obelisk:[138,375],obfusc:[353,354],obfuscate_languag:[104,353,354],obfuscate_whisp:[104,353,354],obj1:[8,10,14,30,39,41,137,222,277,296,309,316],obj1_search:277,obj2:[8,10,14,30,39,41,137,222,277,296,309,316,474],obj2_search:277,obj3:[14,137,222,296],obj4:[14,137],obj5:14,obj:[0,6,10,13,14,20,21,23,30,33,34,36,37,41,42,46,47,48,54,58,67,80,94,110,126,129,130,134,137,144,153,160,162,167,169,171,174,201,208,215,216,217,220,222,228,230,232,233,237,238,243,245,246,258,260,261,264,277,279,282,290,293,296,300,303,309,312,313,314,315,316,320,333,354,358,366,368,375,376,384,390,397,398,400,401,402,407,409,410,411,412,449,451,452,459,468,469,470,471,474,476,477,481,483,491,492,493,494,496,504,505,506,509,510,512,517,519],obj_desc:315,obj_detail:376,obj_kei:315,obj_nam:80,obj_prototyp:407,obj_to_chang:48,obj_typeclass:315,objattr:[375,397],objclass:[487,496],object1:23,object2:[23,287,402],object:[0,1,2,4,6,7,10,13,15,16,17,19,21,23,24,26,27,28,29,30,31,32,34,35,36,39,41,45,47,48,49,51,52,54,55,57,61,62,65,67,68,69,72,73,74,76,77,78,80,83,84,85,89,90,91,92,94,95,96,98,100,103,104,105,106,109,110,112,113,115,116,117,119,120,121,124,125,126,127,131,132,138,139,141,145,146,147,152,155,156,157,158,159,160,161,162,163,164,165,166,168,169,171,172,173,175,177,178,179,181,183,199,200,201,203,205,206,207,208,209,210,211,213,214,215,216,217,219,220,221,222,223,224,227,228,229,230,232,233,234,236,237,238,239,245,246,255,258,259,260,261,262,264,270,274,275,276,277,278,280,282,284,287,290,293,296,297,300,303,309,312,313,314,315,316,320,326,329,333,335,339,341,342,343,344,354,357,358,359,363,365,366,367,368,370,372,374,376,380,381,382,384,386,390,392,393,394,397,398,404,405,406,407,408,409,410,411,412,413,414,415,418,420,422,424,425,426,427,429,430,433,434,435,436,437,438,439,440,442,444,447,449,451,452,458,459,460,461,463,464,465,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,487,488,489,490,491,492,493,494,495,496,497,500,502,503,504,505,506,508,510,512,516,517,519,521,522,527,528,530,535,536,537,539,540,541,542,544,545,546,548],object_confirm_delet:547,object_detail:[542,547],object_from_modul:496,object_id:[179,509],object_or_list_of_object:58,object_pronoun:500,object_search:[179,400],object_subscription_set:401,object_tot:[210,400,409,469],object_typ:222,object_typeclass:[494,537],objectadmin:[50,509],objectattributeinlin:509,objectcr:536,objectcreateform:[504,509],objectcreateview:[542,547],objectdb:[0,14,46,48,50,120,173,178,205,400,401,402,407,467,468,476,481,493,504,505,509,512,516,521],objectdb_db_attribut:509,objectdb_db_tag:[505,509,512],objectdb_set:[211,468,471],objectdbfilterset:[516,522],objectdbmanag:[400,401],objectdbseri:[519,522],objectdbviewset:[521,522],objectdeleteview:[542,547],objectdetailview:[541,542,547],objectdoesnotexist:[211,238,394,401,410,427,468,471,488],objecteditform:509,objectform:536,objectlistseri:[519,522],objectmanag:[344,400,402,469],objectnam:162,objectpar:[0,37],objectpuppetinlin:504,objects_objectdb:67,objectsessionhandl:[13,402],objecttaginlin:509,objectupd:536,objectupdateview:[542,547],objid:33,objlist:[30,41,483],objlocattr:[375,397],objmanip:222,objmanipcommand:222,objnam:[20,48,222],objparam:407,objs2:46,objsparam:407,objtag:397,objtyp:237,obnoxi:422,obs:470,obscur:[104,117,167,189,353,354],observ:[15,16,58,68,79,117,128,166,222,228,320,354,363,376,444,474,496],obtain:[7,23,80,83,96,157,169,192,193,197,245,375],obviou:[11,19,93,96,116,117,174,199,350,547],obvious:[16,44,69,76,94,96,121,123,159,174,471],occaecat:29,occas:11,occasion:[137,197],occat:135,occation:[142,482],occur:[6,23,42,51,54,124,153,161,231,274,314,386,398,402,414,452,480],occurr:[95,169,175,473],ocean:[138,197],oct:[2,135,136],odd:[80,140,159,176,199,341],odor:162,off:[0,4,12,14,16,19,21,23,27,28,31,32,33,42,45,47,53,60,62,63,67,68,69,73,85,89,91,96,98,106,113,116,117,121,122,125,128,129,135,137,139,140,143,144,155,159,166,175,176,183,184,192,197,199,201,203,208,217,232,233,234,236,237,270,290,297,344,354,368,374,376,384,398,402,425,433,440,443,459,470,473,474,476,478,480,481,482,489,497,548],off_bal:155,offend:55,offer:[1,9,10,11,12,16,21,23,27,28,32,36,39,41,42,47,51,60,62,65,67,69,72,75,77,80,94,104,111,116,117,118,121,122,123,126,131,132,133,135,140,141,146,147,154,157,158,160,161,163,169,170,175,177,189,197,201,208,215,216,221,222,229,232,245,279,287,320,353,376,404,411,461,480],offernam:287,offici:[12,50,75,119,189,192,199,489,548],officia:29,offlin:[17,19,41,124,181,197,201,221,227,474],offscreen:124,offset:[49,354,478,489],often:[1,6,7,8,11,12,13,14,17,19,21,23,24,28,39,44,46,47,53,54,60,61,62,64,67,68,80,84,94,95,116,117,118,119,122,125,132,133,135,136,137,138,142,144,147,154,159,161,163,165,169,197,199,200,201,209,215,220,222,230,232,236,237,245,293,312,390,398,401,410,412,420,425,439,459,468,470,474,476,482,483,489,496,519,542],ogotai:0,okai:[6,11,28,116,142,144,159,162,170,175,191,264,342],olc:[0,24,26,131,222,404,407],olcmenu:404,old:[0,7,9,11,20,21,27,28,31,33,44,48,58,60,68,96,102,117,119,121,124,138,142,152,153,157,160,162,166,168,170,175,176,187,193,195,196,197,201,208,215,216,219,222,237,270,284,287,321,354,398,402,407,429,469,470,473,476],old_default_set:10,old_desc:321,old_kei:[45,402],old_nam:45,old_natural_kei:201,old_obj:279,old_po:279,older:[2,13,44,53,122,124,181,184,193,195,222,548],oldnam:470,oliv:60,omit:[41,169,192],on_:245,on_bad_request:422,on_death:83,on_ent:[80,245],on_leav:[80,245],on_nomatch:[80,245],onam:400,onbeforeunload:51,onbuild:192,onc:[6,7,8,11,12,13,15,19,23,28,31,33,35,37,42,44,48,51,53,54,56,60,62,64,65,69,77,78,80,84,89,91,95,97,98,99,103,104,107,110,111,113,114,115,116,117,118,119,121,122,124,125,127,128,130,131,132,133,134,135,136,140,142,143,144,147,152,153,157,158,159,161,162,163,168,174,176,178,183,187,189,190,192,195,197,201,208,209,214,217,222,227,230,233,236,245,261,274,277,279,280,281,287,293,300,303,309,312,313,314,315,326,333,337,342,353,358,363,368,374,375,376,384,390,402,406,410,413,425,430,443,447,458,468,470,473,480,481,489,494,496],onclos:[62,431,448],onconnectionclos:51,ond:471,one:[0,1,4,6,7,8,9,10,11,12,13,14,15,16,17,19,20,21,23,25,27,28,29,30,31,32,33,35,36,37,39,40,41,42,44,46,47,48,50,51,53,54,55,56,57,58,60,64,65,67,68,69,70,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,121,122,123,124,125,126,128,129,130,132,133,134,135,136,137,138,139,140,141,143,144,146,147,149,151,152,153,154,155,159,160,161,162,163,164,166,167,168,169,170,172,174,175,176,177,178,179,181,183,185,186,187,189,192,193,195,196,197,198,199,200,201,207,208,211,214,215,216,217,219,220,222,227,228,231,232,233,236,237,238,245,254,261,264,274,279,280,282,284,287,290,293,296,297,298,300,303,312,313,314,315,316,320,333,339,341,342,343,344,347,353,354,358,368,370,373,375,376,382,386,390,392,393,394,397,398,400,401,402,404,405,406,407,409,410,415,420,422,424,425,430,431,432,440,443,444,452,459,460,461,465,467,468,469,470,471,473,474,476,477,479,480,481,482,483,484,487,488,489,491,492,493,494,496,497,500,509,522,536,537,542,548],one_consume_onli:279,ones:[16,19,20,21,23,26,30,31,32,33,35,41,60,65,73,80,123,124,126,128,130,134,143,147,161,162,166,176,186,189,192,197,199,201,215,216,217,238,245,261,312,313,314,315,316,392,406,407,424,429,461,473,482,490],onew:196,onewai:222,ongo:[0,42,89,108,117,142,147,154,169,287,329],ongotopt:51,onkeydown:51,onli:[0,1,3,6,7,9,10,12,13,14,15,16,17,19,20,21,23,27,28,29,30,31,32,33,35,36,37,39,41,42,44,45,46,48,49,50,51,52,53,54,55,57,58,59,60,62,65,67,68,73,74,75,77,78,80,83,85,89,90,91,94,95,96,97,98,104,110,111,112,113,114,116,117,118,120,121,122,123,124,125,126,127,128,129,132,133,134,135,136,137,138,139,140,141,143,144,146,147,151,152,153,154,155,157,158,159,160,161,162,163,164,166,167,168,169,170,171,172,174,175,176,177,178,179,181,183,184,185,186,187,188,189,190,192,193,194,195,196,197,199,200,201,202,205,208,209,210,213,214,215,216,217,219,220,221,222,227,228,229,230,231,232,233,234,236,237,238,245,261,274,277,279,280,281,284,287,290,296,297,298,303,312,313,314,315,316,320,333,335,336,341,342,343,347,350,353,354,358,363,370,375,376,384,390,394,397,398,400,402,406,407,409,410,411,413,414,415,420,424,425,432,435,437,438,440,443,452,458,459,461,463,464,465,468,469,470,471,473,474,475,476,478,480,481,482,483,487,489,491,492,493,494,496,499,504,505,512,536,541,542,544,545,547,548],onlin:[0,5,11,17,19,37,53,55,69,72,89,91,121,122,125,127,132,136,139,140,142,143,145,146,147,148,150,152,161,162,164,175,181,183,186,188,190,198,200,201,202,205,219,227,236,238,245,277,384,434,474,548],onloggedin:51,onlook:[58,402],only_:358,only_nod:341,only_tim:[409,493],only_valid:407,onmessag:[62,431,448],onopen:[62,431,448],onoptionsui:51,onprompt:51,onsend:51,onset:14,ontext:51,onto:[19,21,23,51,116,121,134,140,153,174,189,197,216,227,297,376,401,432,477,480],onunknowncmd:51,onward:45,oob:[0,23,38,51,61,65,156,184,200,201,208,209,229,300,366,402,425,443,444,448,449,461,480,548],oobfunc:200,oobhandl:487,oobobject:42,ooc:[0,13,19,26,44,97,120,126,129,133,162,175,201,208,211,219,222,223,230,238,303,402],ooclook:44,oop:134,opaqu:[17,199],open:[0,1,5,6,9,12,21,23,26,27,31,33,39,44,52,53,59,77,80,89,91,94,95,96,106,107,108,116,117,118,119,121,122,123,124,126,128,131,133,134,135,136,142,144,146,147,149,161,162,164,170,175,178,179,181,183,186,187,188,189,190,191,193,195,197,199,201,202,222,229,232,237,243,245,277,279,284,287,316,326,329,335,341,368,375,384,463,468,476,489,496,548],open_chest:39,open_flag:279,open_parent_menu:245,open_submenu:[80,245],open_wal:375,openadventur:142,openhatch:181,opensourc:473,oper:[0,6,8,14,16,19,20,23,28,30,32,37,39,42,46,47,49,51,52,55,61,64,68,75,80,87,89,94,95,116,122,129,130,133,135,141,161,167,176,187,189,197,201,203,208,210,213,215,217,219,222,227,232,236,245,270,277,282,296,342,347,354,357,375,398,402,407,415,417,420,429,430,434,436,440,442,443,449,451,452,459,460,468,469,470,473,476,480,481,482,483,487,494,496,521,522],opic:233,opinion:[85,141],opnli:468,oppon:[146,313,315,374],opportun:[80,96,123,169,178,316],oppos:[20,37,60,199,203,459,471],opposit:[116,126,162,170,174,222,342,368],opt:[51,114,162,274],optim:[0,7,14,19,20,23,35,42,47,67,116,122,144,157,160,183,201,217,236,406,407,455,458,468],option100:28,option10:28,option11:28,option12:28,option13:28,option14:28,option1:28,option2:28,option3:28,option4:28,option5:28,option6:28,option7:28,option8:28,option9:28,option:[0,4,6,7,9,10,13,14,18,19,20,21,23,26,27,30,31,32,33,35,37,41,42,46,51,53,54,58,60,65,67,69,70,72,73,76,77,81,83,85,89,94,97,104,110,111,112,114,117,118,119,121,122,123,125,126,128,131,132,134,141,144,147,153,155,161,163,166,168,170,171,175,178,179,181,182,183,184,185,187,192,193,194,195,196,200,201,202,205,208,209,210,213,214,215,216,217,219,220,222,227,229,230,233,234,236,237,238,245,251,258,260,261,273,274,277,278,279,280,281,282,284,287,290,296,300,303,309,314,315,316,320,333,335,337,339,341,342,343,344,347,353,354,357,358,366,368,370,373,376,384,386,390,392,393,395,397,398,400,401,402,404,406,407,409,410,411,412,413,414,415,417,418,420,422,425,426,429,430,432,433,434,435,436,437,438,439,440,442,443,444,447,448,449,451,452,459,461,463,468,469,470,471,473,474,475,476,478,479,480,481,482,483,484,487,489,490,491,492,493,494,495,496,497,499,500,501,504,505,506,508,509,510,511,512,514,516,528,529],option_class:[201,205,475],option_class_modul:[0,201],option_contain:0,option_dict:480,option_gener:480,option_kei:497,option_str:274,option_typ:491,option_valu:491,optiona:[208,417,470],optionclass:[201,205,206,472,475],optioncontain:475,optionhandl:[205,206,472,490],optionlist:[28,278,373,404,480],options2:51,options_account_default:201,options_accounts_default:0,options_dict:491,options_formatt:[0,28,278,373,384,404,480],optionsl:406,optionslist:373,optionsmenu:278,optionstext:[28,278,384,480],optlist:390,optlist_to_menuopt:390,optuon:353,oracl:[183,201,496],orang:[60,103,114,135,274,309,473],orc:[41,161,171],orc_shaman:41,orchestr:192,order:[0,1,4,5,7,11,12,13,14,15,16,20,21,23,27,28,30,31,33,34,36,37,39,41,42,46,49,50,51,54,59,64,70,80,82,85,87,91,94,96,112,116,117,122,124,130,132,133,134,135,138,141,142,143,147,151,157,159,162,163,164,170,174,175,176,178,179,183,188,190,200,201,208,213,216,217,223,228,229,232,233,245,248,274,279,287,290,296,297,298,309,312,313,314,315,316,341,342,344,347,354,358,374,375,376,384,386,397,398,400,401,402,407,429,431,443,448,452,459,468,470,473,474,480,481,482,489,493,494,496,504,506,508,509,510,511,547],order_bi:130,order_clothes_list:290,ordered_clothes_list:290,ordereddict:[14,496],ordin:473,ordinari:[98,315],ore:[142,296,297],org:[64,69,119,122,147,197,201,274,386,436,442,448,473,496,536],organ:[14,19,31,37,39,42,46,50,69,72,80,83,116,118,119,124,130,136,144,146,164,170,177,217,229,233,343,499],organiz:144,orient:[112,121,122,136,161],oriented_program:122,origin:[0,9,12,28,37,44,49,50,53,64,86,89,94,96,102,104,117,121,123,124,130,133,134,143,151,152,153,155,159,161,166,169,181,187,191,199,208,209,215,222,245,270,274,303,342,353,354,400,402,406,407,409,429,463,470,473,480,492,495,496,499,500,548],original_object:400,original_script:409,origo:[116,341],orm:30,ormal:473,orphan:201,orthogon:116,oscar:[217,236,392,394,470],osnam:496,oss:9,ostr:[208,210,237,393,400,409,493],osx:[12,193,195],other:[0,3,4,8,10,11,13,14,15,16,17,18,19,20,21,24,27,28,30,31,32,33,35,36,37,41,44,45,46,47,48,49,51,52,54,55,56,57,59,60,61,62,64,65,67,68,69,70,73,74,75,76,77,80,81,83,85,86,91,94,95,96,97,98,104,107,110,111,112,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132,133,134,136,139,140,141,143,144,146,147,151,152,153,154,155,157,158,159,161,162,163,164,166,167,168,169,170,171,172,173,174,175,176,178,179,182,186,187,188,192,193,199,201,202,203,208,210,213,214,215,216,217,222,227,228,229,230,233,234,236,237,249,251,255,260,274,277,278,279,284,287,290,293,296,303,312,313,314,315,316,326,333,341,342,344,353,354,358,368,376,381,384,390,392,394,398,401,402,406,407,411,413,415,418,420,425,429,431,432,438,440,443,452,459,460,462,468,470,472,473,474,476,478,479,480,481,482,483,490,491,493,494,496,497,500,512,541,542,544,548],other_modul:131,other_obj:279,otherchar:315,othercondit:126,othermodul:53,otherroom:[107,326],others_act:279,otherwis:[0,6,7,8,12,17,20,21,23,28,30,37,41,42,44,60,64,65,67,73,82,94,96,100,110,115,116,119,123,130,135,137,140,153,155,157,163,164,169,174,175,180,183,192,197,199,205,210,214,215,219,222,227,236,248,258,261,279,282,284,287,296,312,320,333,335,354,358,366,384,392,398,402,405,406,407,414,420,431,432,440,459,463,464,473,480,481,483,489,493,494,496,505,540,541,542,544,546],otypeclass_path:400,ought:499,our:[1,4,6,11,12,13,14,16,21,23,26,33,39,47,51,56,58,61,62,64,65,68,72,73,74,85,94,95,98,111,115,117,118,119,121,122,123,124,125,127,128,130,132,134,136,137,139,141,143,144,145,146,147,148,149,150,151,152,153,156,157,158,159,161,162,163,166,167,168,169,170,171,175,177,179,180,181,182,183,187,191,192,197,198,199,211,216,230,238,297,320,333,374,375,390,398,411,465,483,489,500,501,505,512,519],ourself:[134,175],ourselv:[33,36,50,58,96,125,126,127,128,130,134,140,142,144,162,172,177,208,433,434,436,447,483,500],out:[0,1,6,7,8,10,12,14,15,16,17,18,19,23,24,28,30,31,35,37,39,41,42,44,46,49,51,52,53,54,55,56,57,58,63,67,68,69,72,73,76,77,80,85,88,89,91,94,95,96,97,98,102,104,107,108,110,113,116,117,118,119,120,121,122,124,125,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,147,148,149,150,152,153,154,155,157,158,159,160,161,163,164,169,170,171,174,175,176,178,181,182,183,185,187,188,190,192,197,200,201,207,208,214,215,219,221,222,227,236,251,255,270,273,277,279,287,296,297,303,312,313,314,315,316,326,329,335,341,342,343,344,353,354,358,373,375,380,381,384,397,406,407,413,420,422,444,448,449,451,460,461,468,477,479,480,482,483,496,499,504,512,536,548],outcom:[67,119,146,215,296,347,398,402,406],outdat:[182,187],outdata:[62,461],outdoor:[46,116,138,142,177,376],outer:[130,131,482],outermost:[30,32,131,135,144,155,254],outerwear:[81,290],outfunc_nam:62,outgo:[30,44,61,68,71,116,187,197,201,209,342,402,432,444,460,483,496,500],outgoing_port:197,outlet:197,outlin:[4,26,116,170,178,431],outlist:341,outmessag:402,output:[0,1,7,9,11,16,20,24,28,29,30,31,32,44,49,51,60,62,64,68,69,70,72,73,80,116,117,119,123,125,126,128,132,133,135,137,142,147,162,169,170,173,174,175,176,181,183,192,201,203,205,206,217,227,229,232,234,236,239,245,251,296,297,300,312,313,314,316,341,342,378,379,381,402,420,425,440,444,452,459,473,480,481,483,489,492,494,496,548],output_nam:296,output_prototyp:[85,296,297],outputcmd:444,outputcommand:[32,61,65],outputfunc:[0,24,62,65,68,402,425,431,548],outputfunc_nam:[62,425],outputfunct:65,outrank:469,outright:[55,197],outro:[113,138,376],outroroom:376,outsid:[0,15,17,30,31,41,49,52,53,64,68,69,75,94,96,98,112,116,119,122,128,132,135,136,137,141,142,146,152,157,161,174,179,187,192,202,203,229,315,336,341,342,374,386,392,397,444,459,460,468,471,482,527],outtempl:468,outtxt:20,outward:[159,197],oven:[85,117],over:[0,3,7,8,10,11,14,15,16,17,18,19,20,21,23,28,41,42,44,46,47,48,49,51,53,56,60,61,62,65,68,69,70,72,87,91,94,98,107,116,117,119,126,130,133,134,135,136,140,142,144,146,147,151,154,157,159,161,162,166,168,170,172,176,178,182,185,192,197,199,201,208,216,237,297,312,326,342,376,384,390,402,415,424,438,440,443,445,449,451,453,466,470,474,487,492,545],overal:[49,54,67,125,160,161,188,197,215,230,313],overcom:170,overdo:133,overhaul:0,overhead:[20,42,70,115,177,183,333,468],overhear:[104,353],overheard:[104,117],overlap:[21,163,353,473,482],overload:[0,8,21,23,24,28,32,37,47,62,80,107,134,151,156,158,161,171,175,200,201,208,215,217,231,236,245,249,274,277,296,300,309,312,313,314,315,316,320,326,329,335,354,373,374,375,376,402,407,415,424,443,451,460,478,480,481,482,490],overpow:142,overrid:[0,2,4,7,19,21,28,30,31,33,37,41,42,44,45,49,50,51,53,65,73,75,80,83,85,94,114,116,120,123,124,126,128,132,134,136,149,152,153,158,164,169,171,172,174,185,201,208,217,222,227,229,233,236,237,245,261,273,274,281,282,296,314,316,320,335,342,343,344,353,366,376,382,392,398,402,406,407,413,429,443,461,465,468,470,473,480,481,483,487,489,490,493,504,505,506,510,512,522,541,542,544,547],overridden:[30,35,53,62,116,123,151,201,208,222,245,246,274,342,357,406,470,481,483,504,547],override_set:45,overriden:[208,229,354],overrod:56,overrul:[13,39,208,216,354,402,482],overseen:146,overshadow:140,overshoot:496,oversight:161,overview:[1,2,3,7,17,50,56,61,95,113,118,125,127,141,145,150,161,175,183,199,548],overwhelm:[95,111,130,140],overwrit:[64,75,134,151,222,229,438,469,545],overwritten:[23,30,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,179,376,471],owasp:536,owen:296,owllex:[0,84,117,292,293],own:[0,1,5,7,8,10,11,12,14,15,18,19,20,21,24,26,28,30,31,33,36,41,42,44,45,46,48,49,52,53,54,57,58,61,65,67,68,69,72,73,76,80,81,83,85,88,90,94,97,99,104,106,111,112,113,114,115,116,117,118,119,121,122,123,124,125,126,127,128,131,132,133,134,136,138,139,140,141,143,145,148,149,150,151,152,153,155,156,158,161,163,165,166,168,169,170,174,175,177,178,179,180,181,182,187,188,189,191,195,198,199,200,201,202,205,206,211,213,214,215,216,222,230,239,251,270,274,278,279,290,303,312,313,314,316,320,333,341,342,345,353,354,356,375,381,384,397,398,402,407,425,452,460,470,473,474,475,481,482,487,489,490,494,496,522,542,548],owner:[33,39,57,123,142,168,183,208,398,490],owner_object:33,ownership:[75,192,197],oxford:[0,496],p_id:178,p_str:153,pace:[142,374],pack:[0,52,65,113,158,429],packag:[0,7,8,10,11,31,50,68,69,73,75,83,116,118,119,122,124,131,132,180,182,183,189,191,192,193,195,197,201,205,207,212,218,235,239,282,391,396,399,408,416,420,429,444,448,467,472,502,516],package_nam:122,packagenam:122,packed_data:429,packeddict:[8,470],packedlist:[8,470],packet:[65,440],pad:[18,30,473,482,483,496],pad_bottom:482,pad_char:482,pad_left:482,pad_right:482,pad_top:482,pad_width:482,page1:279,page2:279,page:[0,1,4,5,9,10,12,15,16,18,21,23,24,26,28,29,30,31,35,37,48,49,50,51,52,55,56,58,61,62,64,68,69,72,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,121,122,124,125,126,128,131,140,141,143,146,150,152,153,154,161,162,166,176,178,179,181,182,183,187,189,191,192,197,199,201,203,204,217,222,227,228,236,279,392,394,406,449,470,480,481,496,502,507,509,510,512,525,534,538,544,545,547],page_back:481,page_ban:[55,227],page_end:481,page_formatt:[406,481],page_next:481,page_quit:481,page_s:201,page_titl:[541,542,544,546],page_top:481,pageno:[406,481],pager:[0,29,31,481],pages:[28,480],pagin:[0,31,49,120,201,406,481],paginag:481,paginate_bi:[541,542,544],paginated_db_queri:406,paginator_django:481,paginator_index:481,paginator_slic:481,pai:[142,160,168,197,199,375],paid:[143,197],pain:197,painstakingli:15,pair:[21,51,65,76,81,116,147,208,215,290,342,397,402,461,536,547],pal:36,palac:116,palett:176,pallet:170,palm:[91,384],pane:[0,68,201,234,255,344,373],panel:[9,187],panic:[41,126],pant:140,pantheon:[31,392],paper:[147,181],paperback:146,paperwork:116,par:183,paradigm:[0,124,140,172,313],paragraph:[16,20,31,118,306,474,482,496],parallel:[0,111,125,161,163,164,469],paralyz:314,param:[94,187,222,402,415,422,432,465,495,516,517,519],paramat:[208,217,402,459],paramet:[4,6,9,21,49,80,84,95,96,130,137,142,157,159,163,169,184,192,205,208,209,210,213,214,215,216,217,227,229,236,237,238,245,246,251,258,259,260,261,264,274,277,278,279,280,281,282,284,287,290,293,296,300,303,312,313,314,315,316,320,326,333,341,342,343,344,347,350,353,354,358,366,368,373,376,380,381,384,386,390,392,393,394,395,398,400,401,402,404,406,407,409,411,412,413,414,415,417,418,419,420,422,424,425,426,427,429,430,431,432,433,434,435,436,437,438,439,440,442,443,444,445,447,448,449,451,457,458,459,460,461,463,464,465,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,487,489,490,491,493,494,495,496,497,499,500,504,506,509,510,514,517,528,544],paramt:497,pardir:201,paremt:407,parent1:41,parent2:41,parent:[0,12,13,20,21,23,26,37,41,42,48,61,62,74,80,85,116,119,122,126,129,133,134,136,153,158,166,172,174,175,195,201,211,219,222,230,232,245,246,274,277,279,296,298,342,354,357,358,390,401,402,406,407,410,468,469,470,478,488,494,496,514,516,522,545],parent_categori:390,parent_kei:[80,245],parent_model:[504,505,506,508,509,510,512],parenthes:[50,135],parenthesi:[30,135,136],paretn:514,pari:[181,197],pariatur:29,paricular:23,park:[80,245],parlanc:[53,149],parri:[147,297,375],parrot:172,pars:[0,8,17,21,23,27,28,30,58,60,61,62,65,68,69,72,85,114,116,117,118,119,120,125,127,133,144,149,165,166,175,179,195,200,201,212,213,214,217,222,228,229,230,232,233,245,254,255,273,274,277,279,284,287,296,297,303,320,335,341,342,343,347,354,355,368,375,376,380,381,382,390,395,398,402,405,406,407,425,432,435,444,448,449,451,461,468,473,474,478,479,480,483,489,494,495,496,548],parse_ansi:473,parse_ansi_to_irc:432,parse_entry_for_subcategori:395,parse_fil:474,parse_for_perspect:284,parse_for_th:284,parse_html:495,parse_inlinefunc:0,parse_input:480,parse_irc_to_ansi:432,parse_languag:354,parse_menu_templ:[28,480],parse_nick_templ:468,parse_opt:390,parse_sdescs_and_recog:[354,355],parse_to_ani:[30,483],parseabl:[406,483],parsed_str:[30,432],parsedfunc:483,parseerror:274,parser:[0,23,24,28,31,69,71,114,116,117,119,131,179,181,200,201,213,214,219,222,229,230,232,234,249,255,274,277,279,297,309,320,340,341,342,353,354,375,376,406,439,473,483,495,548],parsingerror:[30,483,496],part1:309,part2:309,part:[0,1,6,8,9,10,12,15,16,17,19,23,28,31,33,39,40,42,44,48,49,51,52,53,56,62,67,68,71,73,74,75,78,80,94,95,103,104,116,118,119,123,124,128,130,132,133,134,135,136,138,140,141,143,146,147,151,155,157,158,159,161,162,164,168,169,170,171,175,183,194,197,201,214,215,217,227,230,231,233,236,245,277,287,296,297,309,315,339,341,342,347,354,368,376,390,393,397,398,405,406,413,420,424,449,451,460,463,465,468,469,473,474,478,480,483,494,496],part_a:287,part_b:287,parth:445,parti:[0,6,11,15,20,30,59,77,87,118,122,124,135,136,141,143,179,182,183,189,191,197,201,238,287,347,483,548],partial:[31,116,153,227,229,353,392,400,406,422,435,461,491,493,496,497],particip:[112,117,199,312,313,314,315,316],participl:[499,501],particular:[7,8,12,14,15,16,21,31,32,33,37,42,44,45,46,48,55,60,62,65,68,70,73,80,90,110,116,117,119,122,128,130,131,132,134,135,136,137,140,141,142,144,154,158,162,165,168,172,174,177,181,182,187,189,191,200,208,210,214,215,222,237,280,296,314,315,320,341,342,344,381,393,397,398,409,410,461,463,470,483,487,493,543,545,548],particularli:[28,55,58,75,94,96,104,110,119,123,157,217,230,233,354,358,407,424],partit:473,partli:[14,21,67,72,104,117,131,215],party_oth:287,pass:[0,3,4,10,19,20,23,28,29,30,32,33,35,37,39,41,42,44,45,47,48,54,62,65,68,76,83,84,85,91,94,98,104,107,110,111,116,117,123,125,126,127,129,133,134,136,137,142,144,152,153,154,155,156,159,163,164,167,168,169,170,171,174,179,183,192,194,197,201,203,208,209,215,227,234,236,251,260,277,282,284,290,293,296,300,312,313,314,315,316,326,341,342,344,347,354,358,366,368,375,380,381,384,390,397,398,402,405,406,411,414,415,418,420,430,438,440,443,448,449,459,465,468,470,471,479,480,481,482,483,484,490,491,492,494,495,496,516,522,542,545,547],passabl:342,passag:[65,147,290,375,376,484],passant:176,passavataridterminalrealm:440,passiv:[147,155,178],passthrough:[21,341,413],password123:49,password1:[504,536],password2:[504,536],password:[0,4,7,12,25,26,28,32,33,53,55,76,88,99,105,117,122,123,124,125,126,132,133,183,187,190,194,199,201,208,210,211,219,220,234,255,279,381,386,425,440,443,464,476,504,528,536],password_chang:537,password_valid:201,passwordresettest:537,past:[1,12,15,27,50,51,69,75,95,96,116,118,128,132,142,147,162,163,164,170,175,178,187,200,201,210,314,342,466,474,484,499,501,545],pastebin:118,pastpl:499,pat:400,patch:[48,49,75,494,548],patfind:339,path:[0,8,9,10,13,16,20,28,30,31,32,33,35,37,41,42,44,48,52,53,61,62,63,64,67,68,73,75,76,80,94,96,98,104,116,119,123,125,128,129,130,133,135,136,144,151,152,155,157,164,168,171,172,174,175,179,182,187,192,193,195,197,201,208,209,211,214,215,216,217,221,222,223,224,225,226,227,236,238,243,245,251,261,264,270,277,279,280,281,282,284,287,290,296,300,309,312,313,314,315,316,320,326,329,333,335,339,341,342,343,344,347,353,354,363,366,368,370,373,374,375,376,386,392,394,400,401,402,406,407,409,410,412,413,415,420,427,429,438,445,451,453,457,461,465,468,469,470,474,476,478,479,480,481,483,484,487,488,493,496,514,522,542],path_or_typeclass:264,pathdata:335,pathfind:[0,117,335,339,341,342],pathnam:494,patient:28,patreon:118,patrol:[113,374],patrolling_pac:374,patron:98,pattern:[19,36,56,73,74,123,149,164,178,179,201,220,236,464,468,496,513],pattern_is_regex:468,paul:48,paus:[0,24,28,42,54,94,95,147,157,192,201,203,222,232,260,413,414,480,494,496],pausabl:496,pauseproduc:422,pax:124,paxboard:181,payload:[431,448],payment:[77,117,142],paypal:118,pdb:[0,2,205],pdbref:[33,397],pdf:181,peac:171,peek:[1,28,116,128,133,169],peer:[431,448],peform:425,peg:199,pem:187,pemit:[69,220],penalti:[67,125,139,140,314],pend:465,pennmush:[69,72,161,234],pentagon:199,peopl:[0,1,3,8,13,19,30,31,33,53,58,60,69,88,89,94,104,117,118,121,122,128,130,132,140,141,142,143,144,146,147,152,162,166,168,181,185,188,189,197,199,201,227,228,237,255,354,375,376,476,505,512],pep8:[0,1,75],per:[0,7,12,13,14,19,23,30,41,44,57,65,67,75,84,85,86,90,96,104,110,112,116,117,119,122,123,135,141,142,144,147,162,163,164,175,192,201,208,227,236,279,280,293,312,314,316,320,341,342,353,358,374,400,402,406,433,434,436,444,447,463,480,481,482,487,489,490],perceiv:[142,163],percent:[23,239,345,356,496],percentag:[110,147,357,358,469,496],percentil:496,perception_method_test:456,perfect:[12,27,75,121,140,141,144,191,192,341],perfectli:[42,46,72,123,164,473],perform:[0,6,7,8,14,15,16,19,28,29,32,33,37,42,58,78,80,84,85,91,94,102,111,112,117,121,135,147,153,157,169,171,175,178,179,183,188,191,199,201,208,213,215,219,222,227,229,245,260,261,270,277,290,293,296,312,313,314,315,316,339,354,380,384,390,400,402,406,410,411,424,429,443,451,452,468,469,470,477,480,481,483,490,493,496,497,536],perhap:[6,8,19,56,69,80,94,95,163,164,169],period:[5,10,11,135,192,197,199,201,496],perist:48,perm1:471,perm2:471,perm:[0,14,19,23,31,33,39,41,46,55,57,80,94,123,126,133,153,162,168,175,178,188,201,211,220,221,222,227,228,229,232,259,270,277,309,320,326,335,376,394,397,398,401,402,410,468,470,471,496],perm_abov:[33,39,397],perm_us:220,perma:142,permadeath:142,perman:[19,28,53,55,75,116,123,125,138,139,140,184,197,201,219,222,227,228,232,353,414,470],permiss:[0,7,10,13,14,19,21,24,41,49,50,55,61,63,69,75,78,123,124,128,133,144,152,153,175,178,182,183,188,191,201,205,206,208,210,211,215,217,219,220,221,222,227,228,230,236,259,280,316,354,392,394,397,398,400,401,402,406,407,410,468,469,470,471,474,476,483,489,493,496,502,504,515,516,519,522,547,548],permission_account_default:[39,201,451],permission_class:522,permission_func_modul:397,permission_guest_default:[63,201],permission_hierarchi:[39,57,201,397,398,471],permissiondeni:517,permissionerror:406,permissionfilt:516,permissionhandl:[0,39,178,471],permissionproperti:[0,471],permissionshandl:[512,519],permit:[180,183,222,464],permstr:[33,208,400,470,476],perpetu:[7,125,139],perri:75,persion:58,persis:155,persist:[0,19,20,21,23,24,28,34,37,42,44,47,48,67,80,83,84,96,104,106,108,110,112,117,121,122,125,127,129,132,134,135,141,147,152,153,160,161,168,174,175,181,200,203,208,211,215,216,232,237,238,245,246,251,261,278,293,312,313,314,315,316,329,343,353,354,358,368,373,375,384,390,394,400,401,402,404,406,409,410,411,413,414,415,425,426,427,458,459,463,467,470,476,478,480,482,484,496],persit:35,person:[12,19,30,44,55,58,72,75,77,104,125,126,127,139,140,141,143,146,152,172,193,197,208,222,227,228,236,279,280,284,287,347,354,483,499,500,501],persona:31,perspect:[44,58,146,284,500],pertain:[151,176,199],pertin:178,perus:51,peski:168,pester:[140,161],petal:119,peter:277,pg_ctlcluster:183,pg_hba:183,pg_lscluster:183,phantom:31,phase:[140,159],philosophi:[33,135,279],phone:[56,105,117,122,191,386],phone_gener:[105,386],phonem:[104,353],php:[69,122,536],phrase:[94,95,264],phrase_ev:[94,264],physic:[13,35,125,139,140,159,315,374],pick:[9,15,17,21,23,25,28,30,31,33,42,53,58,89,94,116,118,121,124,125,128,134,135,141,142,144,146,152,157,163,168,170,177,189,190,192,197,200,214,219,222,228,230,236,254,290,316,350,354,375,376,402,406,452,483],pickabl:37,pickl:[0,14,47,50,65,116,155,201,243,358,411,415,417,427,429,430,468,469,477,478,480,492,496],pickle_protocol:492,pickledfield:[400,492],pickledformfield:[492,505],pickledobject:492,pickledobjectfield:492,pickledwidget:492,picklefield:[0,205,206,472,505],pickpocket:229,pickup:[316,402],pictur:[9,62,152,161],pid:[4,12,33,50,178,192,203,397,402,420,430,496],piddir:4,pidfil:420,pie:277,piec:[7,15,35,53,54,85,89,103,122,134,135,141,187,296,297,309,447,474,481],piecem:[0,117],pierc:375,pig:[296,297],piggyback:208,pigironrecip:[296,297],piglei:75,pii:76,pile:[216,474],pillow:[0,191],pinch:142,ping:[209,227,420,432],pink:473,pip:[1,5,6,7,10,11,75,116,119,124,131,135,178,183,186,188,190,191,192,193,195,196,198,201,205],pipe:[44,76,432,477],pitfal:[1,16,60,176],pixel:[53,184],pizza:[211,238,394,401,410,468,470,471],pkg:191,pki:182,place:[0,1,11,13,14,16,17,19,28,33,35,37,41,42,44,49,52,53,64,65,66,72,73,77,80,83,85,91,94,95,96,110,113,116,117,121,122,123,124,128,131,132,134,135,137,142,144,146,149,151,152,153,156,158,159,163,164,169,170,174,175,176,177,178,182,188,191,192,193,197,199,200,201,208,220,222,228,236,245,251,279,287,290,297,309,312,316,333,341,342,344,354,358,368,375,376,380,384,402,409,413,429,438,443,459,460,461,468,474,475,477,480,496,548],placehold:[52,53,64,179,398,402,482],plai:[13,16,31,44,53,57,60,65,80,95,96,106,112,113,117,121,122,125,135,138,139,140,141,143,144,146,147,155,157,162,166,169,170,174,175,177,178,190,191,197,201,202,208,210,312,316,444,461,476,548],plain:[0,15,16,67,68,77,119,128,162,175,227,236,245,287,306,407,425,451,477,545],plaintext:381,plan:[2,6,16,17,19,48,62,94,121,124,125,127,130,134,137,139,145,148,150,160,192,197,474],plane:[116,137,174],planet:[0,132,163],plank:85,plant:[114,274],plate:[28,48,53,105,117,167,386],platform:[9,12,56,94,124,160,193,197],playabl:[142,178,537],player1:402,player2:402,player:[0,7,8,10,14,19,21,28,30,33,37,39,42,44,50,52,53,54,55,57,58,62,64,65,69,70,75,76,77,89,90,91,93,94,97,103,104,111,113,114,115,116,117,120,121,122,124,125,127,128,129,132,133,134,135,136,138,139,140,141,145,146,147,148,150,152,153,155,162,166,168,169,170,171,172,173,174,175,178,185,186,188,190,197,198,201,203,216,219,222,232,237,245,264,270,274,277,278,279,280,282,287,303,309,315,316,333,341,350,353,354,368,370,376,381,384,390,393,410,434,443,460,474,479,480,496,522,536,542],playercmdset:94,playerdb:201,playernam:188,playerornpc:124,pleas:[1,7,10,12,18,21,28,31,41,48,56,60,76,113,118,123,128,134,142,144,170,171,172,173,178,180,182,188,189,190,191,195,197,201,232,422,451,487,492,536],pleasur:56,plenti:[16,72,121,145],plop:53,plot:453,plu:[1,9,20,80,122,232],pluck:23,plug:[35,45,151,199,333],pluggabl:201,plugin:[0,24,62,65,69,75,117,120,123,131,132,181,189,200,201,354,418,548],plugin_handl:51,plugin_manag:51,plugin_servic:201,plural:[0,39,57,58,162,201,315,402,483,499,500],plusmaplink:[116,342],png:[40,53,151],pocoo:496,poeditor:64,poet:130,point:[0,2,4,5,6,7,8,9,12,13,15,16,17,20,21,23,28,30,31,35,37,41,42,44,46,47,48,50,53,58,65,67,68,70,73,77,80,88,89,92,94,96,98,99,112,116,117,119,121,123,126,128,132,133,134,135,136,140,142,143,146,147,148,151,152,153,155,157,159,160,163,164,165,166,168,169,174,175,178,179,182,187,190,191,192,193,196,197,201,208,213,217,222,227,230,274,277,287,293,296,300,312,326,333,335,339,341,342,354,376,402,404,406,415,420,424,438,440,448,459,461,468,470,474,480,483,496,505,512,525,547],pointer:[1,159,160,169],pointless:[37,47,54,229],poison:[14,110,117,141,201,314,358,407],pole:309,polici:[26,61,75,136,197,199,381,394,464,468],polish:[0,64],polit:[136,142,199],poll:[62,151,219,374,420,449],pommel:[142,297],pong:432,pool:[21,47,183,415,465,477],poor:[58,162],poorli:199,pop:[9,54,119,153,162,168,183],popen:430,popul:[4,73,80,94,98,140,161,163,166,183,201,215,223,224,225,226,245,277,290,296,309,312,313,314,315,316,320,326,329,335,354,368,370,373,374,375,376,402,414,415,451,474,478,479,481,505,512],popular:[69,112,122,124,125,130,161,181,199,541],popup:[0,51,201],port:[0,4,7,96,121,124,125,182,183,185,187,189,192,195,201,202,203,209,227,429,432,440,452,461,465],portal:[7,9,11,24,37,43,51,52,62,68,82,120,131,132,174,181,197,199,200,201,203,205,206,209,232,248,416,417,420,458,459,460,461,484,489,496,548],portal_connect:461,portal_disconnect:461,portal_disconnect_al:461,portal_l:430,portal_log_day_rot:201,portal_log_fil:201,portal_log_max_s:201,portal_pid:[430,496],portal_receive_adminserver2port:430,portal_receive_launcher2port:430,portal_receive_server2port:430,portal_receive_statu:430,portal_reset_serv:461,portal_restart_serv:461,portal_run:420,portal_service_plugin_modul:62,portal_services_plugin:[62,132,200,201],portal_services_plugin_modul:[62,201],portal_sess:62,portal_session_handler_class:201,portal_session_sync:461,portal_sessions_sync:461,portal_shutdown:461,portal_st:420,portal_uptim:484,portalsess:[44,62,438],portalsessiondata:461,portalsessionhandl:[62,201,205,206,416,428,439,461],portalsessionsdata:461,portion:[75,117,245,350],portuges:64,pos:[279,342],pose:[26,58,104,117,126,141,142,147,155,162,208,228,261,277,354,368],pose_transform:236,posgresql:183,posit:[0,15,28,42,51,80,94,98,112,114,116,117,128,136,141,147,157,159,169,170,176,201,216,234,236,245,255,274,277,279,306,316,333,341,342,344,375,376,402,414,473,474,477,478,482,496,497],position:279,position_prep_map:279,positive_integ:497,positiveinteg:490,posix:[489,496],possess:[58,92,300,483,500],possibl:[0,1,7,11,14,19,21,23,27,28,30,31,32,33,35,41,42,44,46,50,52,53,54,60,63,76,77,80,83,94,95,96,98,104,109,110,113,115,116,117,118,119,121,122,124,130,131,132,135,136,138,141,142,143,144,146,147,151,153,157,161,162,169,170,175,176,179,183,191,192,195,200,201,205,208,210,211,213,215,222,229,230,237,249,260,279,287,296,309,320,333,341,342,344,353,354,358,370,374,376,395,398,400,402,405,406,407,411,415,425,445,449,459,461,468,469,471,473,476,478,479,480,482,484,492,493,496,499,514],post:[14,19,21,33,45,49,53,64,76,85,117,118,121,125,139,140,151,161,162,164,170,173,178,188,198,201,381,413,449,521,542],post_:0,post_craft:[85,296],post_delet:45,post_init:45,post_join_channel:[19,236],post_leave_channel:[19,236],post_migr:45,post_mov:402,post_sav:45,post_send_messag:236,post_text:350,post_url_continu:[504,506,509],postfix:[104,353],postgr:[122,183],postgresql:[201,202,496],postgresql_psycopg2:183,postinit:51,posttext:384,postupd:[173,188],pot:[55,129],potato:[114,184,274],potenti:[0,1,5,14,15,30,54,60,65,85,94,104,117,136,141,142,147,167,170,175,197,198,201,217,229,237,381,382,397,398,402,406,490,493,496],potion:[137,141,142,279,470],pow:30,power:[0,6,17,21,23,27,28,30,35,37,39,41,50,51,53,57,58,84,94,95,104,111,114,117,121,122,128,130,134,135,136,137,138,141,142,144,147,155,156,160,162,170,175,215,216,221,222,274,293,314,315,390,395,474,480,496],powerattack:[84,293],powerfulli:96,ppart:499,pperm:[19,33,39,55,133,178,188,201,219,227,270,309,397,402],pperm_abov:[39,397],pprofil:420,pprogram:420,practial:17,practic:[1,3,15,16,23,37,42,44,50,80,83,96,122,133,134,135,136,137,141,142,144,155,161,162,165,176,187,193,196,197,342,474,548],pre:[0,14,23,37,49,140,142,159,170,185,188,190,195,197,201,208,222,229,296,353,398,402,406,407,448,449,452,478,483,492],pre_craft:[85,296],pre_delet:45,pre_init:45,pre_join_channel:[19,236],pre_leave_channel:[19,236],pre_migr:45,pre_sav:[45,492],pre_send_messag:236,pre_text:350,preced:[21,39,41,57,60,111,116,144,215,217,390,402,407,469,482,483,500],preceed:[30,128],precend:213,precens:14,precis:[14,42,94,176,293,296,473],predefin:[0,174,464],predict:[48,135,143,178],prefer:[9,12,19,21,23,33,41,51,80,118,121,125,132,134,152,161,169,170,175,183,188,197,201,215,217,220,245,313,342,354,374,393,395,400,402],prefix:[0,6,8,19,48,67,80,83,104,183,199,201,208,214,229,231,236,350,353,400,425,432,463,473,483,493,496,505,506,508,510,512,516,536],prelogout_loc:133,prematur:[7,20,42,287],premis:[89,277],prep:277,prepai:197,prepar:[0,4,36,41,52,116,149,159,161,201,208,227,312,354,374,410,477,492],prepars:119,prepend:[30,303,354,402,473,474,480,483,496],prepopul:[505,512,545,547],preposit:279,preprocess:222,prerequisit:[124,202],prescrib:[121,141,161],presen:30,presenc:[18,30,116,121,124,132,133,151,160,176,183,197,208,402,465,502],present:[6,8,28,31,44,49,53,80,83,91,93,95,111,112,117,123,140,141,147,159,163,164,168,169,175,182,200,201,245,274,350,353,370,384,386,390,407,478,496,499,501,505,519],present_participl:501,preserv:[176,201,230,470,473,474,489,496],preset:483,press:[1,6,9,16,17,21,23,28,33,65,68,80,106,117,124,125,128,132,135,192,203,245,279,368,375,418,480,509],pressur:167,presto:128,presum:[35,146,163,216,489,490],pretend:191,pretext:384,pretti:[1,12,14,23,37,42,50,58,68,80,81,94,96,119,122,133,135,136,138,140,145,147,153,157,168,174,175,176,178,189,197,201,217,236,284,290,358,386,391,398,406,479,481,490,496],prettier:[0,7,96,536],prettifi:[0,161,496],prettili:163,pretty_corn:482,prettyt:[20,167,482],prev:[28,144,481],prev_entri:28,prevent:[0,23,94,95,119,128,135,163,260,274,316,463,505,542],preview:119,previou:[0,6,12,14,16,21,23,28,29,30,31,33,36,45,49,53,54,56,60,67,80,83,94,110,111,125,126,130,131,133,134,135,138,142,144,145,155,162,163,164,168,169,175,176,190,192,193,200,201,227,358,376,390,404,480,481,489,544],previous:[14,21,27,32,42,53,60,98,116,128,134,151,159,169,178,187,189,200,217,220,222,227,236,287,343,425,441,445,452,461,471,496],previu:42,prgmr:197,price:[75,142,197,375],primadonna:31,primari:[12,18,48,133,178,192,354,400,402,468,493],primarili:[4,12,13,55,69,77,118,119,121,140,141,208,287,354,393,395,438,477,496],primary_kei:178,prime:[77,213,287],primer:[53,54],primit:[142,222],princess:[138,170],princip:143,principl:[1,10,13,19,23,28,30,33,35,37,50,57,58,62,77,85,89,117,118,119,124,130,132,133,136,141,142,156,161,168,175,177,197,198,216,219,287,376],print:[1,6,7,8,14,20,27,42,48,54,62,67,70,104,110,119,123,124,130,133,135,136,152,153,162,169,201,203,219,274,341,343,347,353,358,406,419,420,479,480,481,482,489,496],print_debug_info:480,print_error:343,print_help:274,print_stat:7,print_usag:274,printabl:446,printable_order_list:341,printout:[136,443],prio:[21,23,133,153,213,376,471],prior:[171,196,260,402],priorit:[116,342,353,471],prioriti:[8,21,23,24,28,41,116,123,144,147,153,158,215,219,223,224,225,226,230,245,277,373,375,376,402,478,480,481],prison:[125,130,139,140],privaci:76,privat:[0,12,19,76,119,123,140,142,161,164,182,183,197,227,228,432,445],private_set:124,privatestaticroot:465,priveleg:[0,134],privileg:[23,116,125,139,140,152,175,183,186,189,193,198,228,333,344,354,402,470],privkei:187,privkeyfil:440,privmsg:432,prize:138,pro:[117,548],proactiv:47,probabl:[7,11,23,28,31,37,42,49,50,53,56,67,69,75,80,94,95,110,116,121,122,123,124,133,142,144,147,151,152,153,155,161,164,168,174,178,179,183,197,229,245,246,264,358,376,386,422,432,440,487,496,497],problem:[0,1,3,8,10,14,15,17,20,23,26,33,61,70,74,80,118,122,126,135,137,140,142,143,144,152,153,160,164,165,170,183,184,187,190,191,192,197,199,201,203,208,216,261,296,341,402,429,474,483],problemat:[153,496],proce:[16,17,64,174,176,192,227,447,540,542],procedur:[111,390,440,443],proceed:[12,496],process:[0,1,3,6,7,9,12,14,15,16,17,23,28,30,35,37,40,49,52,53,64,65,68,80,85,94,96,98,116,118,119,122,123,124,132,135,139,140,142,144,146,153,155,157,158,159,169,178,182,183,187,191,192,197,201,202,208,213,215,222,232,236,274,287,296,297,337,354,360,390,396,398,402,406,411,414,420,425,429,430,437,440,443,448,449,452,458,459,461,468,473,474,477,480,490,495,496,497,514,548],process_languag:354,process_recog:354,process_sdesc:354,processed_result:496,processor:[24,26,117,142,148,170,201,203,205,206,221,232,233,472,548],procpool:496,produc:[12,19,23,28,31,60,78,94,104,141,143,175,219,222,254,279,284,296,297,309,333,353,375,402,406,407,419,451,468,470,479,480,496],produce_weapon:375,producion:20,product:[0,1,3,4,7,9,11,12,52,53,73,183,197,199,201,451,454,480],production_set:124,prof:7,profess:130,profession:[0,69,122,135,142,143,149,161],profil:[2,91,186,201,205,206,211,384,416,548],profile_templ:[91,384],profunc:41,prog:[274,499],program:[0,1,7,9,10,11,13,17,19,30,40,49,52,54,67,69,120,122,131,132,135,136,138,139,143,144,157,160,161,181,183,187,191,192,193,195,197,199,201,203,232,234,274,416,420,443,449,451,548],programiz:157,programm:[127,143,169],progress:[89,112,117,146,168,181,280,282,293,312,313,314,315,316,342,478],proident:29,project:[0,2,3,17,69,73,118,122,123,143,151,153,159,169,170,189,490,548],projectil:315,promin:31,promis:1,promisqu:176,prompt:[0,1,6,48,51,65,68,93,111,119,122,124,125,135,165,170,183,184,185,190,191,192,193,201,217,350,390,418,432,443,448,449,474,480,494,548],promptli:16,pron:[0,30,402,483],prone:[11,216,470],pronoun:[0,30,58,92,205,206,300,402,472,483,498,501],pronoun_to_viewpoint:500,pronoun_typ:[58,483,500],pronounc:284,pronount:500,proof:0,prop:[125,139,140],propag:[14,182,215,424,492],proper:[0,4,14,17,20,30,31,51,58,73,77,104,122,140,142,144,147,152,157,158,160,161,168,169,175,178,183,192,199,222,245,262,287,353,402,479,483,494,500],properi:229,properli:[5,9,11,12,30,34,48,69,74,76,124,155,162,163,164,171,176,178,195,201,217,287,339,376,382,397,414,415,440,496,507],properti:[0,8,10,15,24,31,33,34,36,39,41,42,47,53,58,67,80,83,84,85,94,110,117,120,121,125,126,127,131,133,137,142,146,147,153,157,160,161,166,170,174,175,176,200,201,203,208,209,211,217,219,222,230,232,233,236,238,245,260,274,277,279,280,293,296,297,309,312,314,316,333,342,343,344,354,357,358,368,374,375,376,384,390,392,394,395,397,398,400,401,402,406,407,410,412,413,414,424,425,427,432,438,451,452,459,460,461,468,470,471,475,477,480,483,490,491,492,493,494,496,504,505,506,508,509,510,511,512,519,536,544,546],property_nam:400,property_valu:400,propnam:175,propos:27,proprietari:183,propval:175,propvalu:175,prose:143,prosimii:[0,178,179],prospect:[140,296],prot:407,prot_func_modul:[41,201,405],protect:[0,7,21,76,197,201,222,297,368],protfunc:[201,205,206,403,406,407,483],protfunc_callable_protkei:405,protfunc_modul:406,protfunc_pars:406,protfunct:406,protkei:[41,405,406],proto:[429,440],proto_def:309,protocol:[20,23,32,40,44,51,61,65,120,122,131,132,143,181,184,189,197,199,200,201,203,208,209,217,220,300,366,381,402,416,417,420,422,425,429,430,431,432,433,434,435,436,438,439,440,442,443,444,445,447,448,449,451,458,459,460,461,478,492,496,548],protocol_flag:[0,201,442,443,447,459],protocol_kei:[201,460],protocol_path:[438,461],protodef:309,prototocol:232,protototyp:[404,406,407],protototype_tag:41,prototoyp:405,prototyp:[24,30,85,95,103,120,131,132,140,173,201,205,206,222,239,296,309,313,314,318,334,341,342,343,375,548],prototype1:407,prototype2:407,prototype_:41,prototype_desc:[41,407],prototype_dict:222,prototype_diff:407,prototype_diff_from_object:407,prototype_from_object:407,prototype_kei:[0,41,85,116,222,296,406,407],prototype_keykei:222,prototype_list:0,prototype_lock:[41,407],prototype_modul:[0,41,116,201,222,338,406,407],prototype_pagin:406,prototype_par:[0,41,116,222,338,407],prototype_tag:407,prototype_to_str:406,prototypeevmor:406,prototypefunc:[201,407],protpar:[406,407],protpart:406,provid:[3,4,8,10,14,18,19,23,30,31,39,41,42,48,49,50,51,52,53,55,56,58,69,71,75,80,81,84,85,93,94,96,98,103,111,115,117,119,121,123,134,135,136,137,141,142,144,149,151,153,155,164,169,176,178,179,187,191,192,197,199,208,217,222,227,234,236,245,246,259,273,274,279,290,293,296,309,312,314,315,316,333,341,350,376,384,386,390,392,397,402,405,413,420,440,463,469,471,480,483,490,491,492,494,496,497,521,522,536,542,545,547],provok:[6,181],prowl:31,proxi:[0,48,131,187,199,201,202,465,505,512],proxypass:182,proxypassrevers:182,proxyport:201,prudent:4,prune:21,pseudo:[62,69,104,117,159,169,353,385,386,548],psionic:315,psql:183,pstat:7,psycopg2:183,pty:124,pub:[201,227,236],pubkeyfil:440,publicli:[12,53,142,185,201],publish:[3,4,152,181,192],pudb:[0,2,205],puff:160,puid:201,pull:[2,3,11,21,23,30,52,53,118,119,122,132,143,151,153,192,196,264,375,422,544],pummel:138,punch:[21,113,126],punish:[142,316],puppet:[0,8,13,21,23,26,32,33,39,44,45,50,57,62,80,85,94,97,124,133,152,157,161,162,163,172,175,178,201,207,208,213,219,222,230,238,296,303,335,397,402,459,461,470,471,504,509,537,542,544],puppet_object:[13,208],puppeted_object:504,purchas:[168,187],pure:[48,60,68,95,142,160,176,187,410,420,468,473],pure_ascii:496,purg:[14,48,203,232],purpos:[0,14,40,46,58,65,89,123,130,136,175,176,178,187,197,209,213,217,260,284,342,347,440,468,477,480,483,496,500],pursu:[138,374],push:[0,80,94,106,119,125,127,134,176,192,199,264,279,368,375],pushd:193,put:[0,2,6,9,10,13,15,16,23,27,28,33,36,37,39,41,44,48,49,53,54,55,57,60,65,67,72,73,75,81,84,85,89,94,95,96,111,116,118,119,122,126,128,130,132,134,135,137,140,141,143,144,146,147,149,151,152,153,158,159,161,162,168,170,174,175,178,183,197,199,200,201,202,216,219,220,222,224,228,243,284,290,293,296,297,312,316,350,354,363,376,384,390,398,429,443,481,482,496],putobject:75,putobjectacl:75,putti:197,puzzl:[0,85,89,113,138,181,205,206,239,285,296,375,376,548],puzzle_desc:375,puzzle_kei:376,puzzle_nam:309,puzzle_valu:376,puzzleedit:309,puzzlerecip:[103,309],puzzlesystemcmdset:[103,309],pvp:[125,139,140],pwd:[7,192],py2:0,py3:429,py3k:75,pyc:132,pycharm:[2,119,125,548],pyflak:1,pylint:1,pyopenssl:[186,201],pypa:195,pypath:496,pypath_prefix:496,pypath_to_realpath:496,pypi:[0,7,122,181,197,473],pypiwin32:[124,193,195],pyprof2calltre:7,pyramid:[115,333],pyramidmapprovid:[115,333],pyself:141,python2:[124,195],python3:[122,191,193,195,196,358],python3_properti:122,python:[0,2,5,6,7,8,9,10,11,13,14,16,17,20,21,23,27,28,30,31,33,35,37,41,46,48,49,50,52,53,54,55,57,60,63,64,67,69,70,71,73,75,76,78,80,83,87,95,96,114,115,116,117,119,120,122,123,124,125,126,127,128,129,130,131,133,134,137,139,141,142,143,144,145,146,147,148,149,150,152,155,157,159,160,162,163,164,167,168,169,170,172,175,178,179,183,186,189,190,191,192,193,195,196,197,198,199,200,201,202,203,214,216,221,222,226,232,233,245,258,259,260,261,262,264,274,296,333,343,347,386,392,398,400,401,405,407,409,412,415,420,422,429,433,438,448,459,461,465,467,469,470,473,474,476,477,478,479,480,482,483,484,487,489,492,494,496,514,519,525,548],python_path:[136,216,496],pythonista:181,pythonpath:[216,420,430,474],pytz:497,q_lycantrop:130,q_moonlit:130,q_recently_bitten:130,qualiti:[76,117,140,142,214],queen:116,quell:[13,24,26,61,107,113,126,128,133,135,138,144,174,219,326,397],quell_color:222,queri:[0,12,14,24,30,41,46,49,56,65,67,84,116,117,122,125,127,137,144,157,160,211,227,229,238,293,344,354,393,394,395,400,401,402,406,407,410,427,440,455,468,469,470,471,481,483,488,493,496,497],query_al:468,query_categori:468,query_info:420,query_kei:468,query_statu:420,query_util:516,queryset:[0,42,46,122,125,127,210,237,280,303,343,344,393,400,406,409,426,469,481,493,505,512,516,522,541,542,544,547],queryset_maxs:481,querystr:516,quest:[94,109,117,121,125,138,139,140,141,143,145,161,171,376],question:[0,1,10,12,23,27,28,54,73,80,99,117,139,140,142,143,146,161,182,187,197,222,401,417,418,468,478,480,494,496],queu:[201,420],queue:[4,147,465],qui:29,quick:[0,8,21,23,35,42,46,69,74,78,80,85,94,103,117,119,121,125,135,136,139,140,147,157,169,181,193,197,209,222,245,353,392,407,425,468,471,482,521],quicker:[36,67,96,142],quickli:[0,11,14,17,23,28,35,37,46,54,60,67,80,101,104,116,117,142,143,151,153,157,173,222,245,282,284,353,471,474],quickstart:[64,67,135,162,191,197,203],quiescentcallback:422,quiet:[83,116,137,153,168,208,220,222,227,245,270,290,335,354,402,481,496],quiethttp11clientfactori:422,quietli:[30,65,68,155,201,468],quirk:[2,14,184,216,548],quit:[0,6,7,11,13,18,23,26,27,28,44,54,62,80,91,94,95,96,113,116,119,121,123,126,128,130,133,135,136,137,138,142,144,152,156,157,161,168,178,183,185,187,191,219,234,245,246,255,260,277,282,315,384,440,478,480,481],quitfunc:[27,478],quitfunc_arg:478,quitsave_yesno:478,quitter:138,quo:47,quot:[14,20,25,27,30,33,41,135,141,172,183,222,234,255,354,478,480,492,496],qux:[111,390],ra4d24e8a3cab:25,rabbit:142,race:[121,125,139,140,146,160,171,178,181,182,496],rack:[297,375],radio:[19,142],radiu:[157,159,170],rafal:75,rage:[110,138,358],ragetrait:[110,358],rail:[122,174],railroad:174,railwai:342,rain:[42,138,142,177],raini:376,rais:[0,14,17,20,23,30,41,54,65,85,94,130,146,164,169,179,208,209,210,237,245,251,258,260,261,296,320,341,342,343,344,347,353,354,358,386,398,400,405,406,415,419,420,438,443,449,464,468,469,471,473,474,476,479,480,482,483,490,491,492,494,496,497,517],raise_error:[30,483,491,496],raise_except:[0,14,296,468,471],ram:[14,197],ramalho:181,ran:[4,6,15,28,135,413],rand:42,randint:[30,41,85,94,98,133,146,147,169,173,175,312,407,483],random:[0,25,28,30,41,42,79,85,94,95,98,104,117,124,128,133,138,141,142,146,147,169,173,175,177,197,200,254,284,297,312,316,333,353,363,364,368,375,376,385,386,387,407,429,451,452,483,496,548],random_string_from_modul:496,random_string_gener:[105,205,206,239,378,548],randomli:[7,42,67,98,173,177,201,312,313,314,315,316,368,374,375,420,452,483],randomstringgener:[105,386],randomstringgeneratorscript:386,rang:[6,7,21,27,41,68,91,98,110,112,116,117,128,138,141,147,157,159,160,169,170,172,173,184,199,201,222,251,313,315,316,339,341,344,357,358,384,469,478,483,536,547],ranged_attack:297,rangedcombatrul:316,rank:[0,57,397],rant:0,raph:181,rapidli:216,rapier:130,raptur:444,rare:[9,11,23,47,54,58,67,80,98,119,195,227,343,398,400,476],rascal:46,rase:298,rate:[7,23,84,117,118,122,141,197,201,227,239,293,345,356,415,420,439,496],ratetarget:[110,141,357,358],rather:[0,1,8,10,11,12,13,14,15,23,31,37,42,46,47,53,67,72,73,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,121,122,125,128,132,135,137,141,142,144,147,149,153,155,157,161,169,170,179,187,188,200,201,203,208,211,215,219,222,223,229,230,232,236,260,270,287,306,312,313,314,315,316,342,343,350,354,358,391,402,404,406,407,468,470,473,482,491,492,505,512,545],ration:[77,141,287],raw:[0,14,23,32,41,55,60,65,67,119,122,125,128,135,136,142,149,160,208,214,217,222,230,231,233,274,354,358,381,402,425,440,443,448,449,459,468,473,478,480,490,496],raw_cmdnam:[126,214,231],raw_desc:320,raw_id_field:[506,509,510],raw_input:[28,168,480],raw_nick:36,raw_str:[23,28,126,168,208,209,213,214,217,278,373,384,390,402,404,459,468,480,494],raw_templ:36,rawhid:297,rawhiderecip:297,rawstr:[217,233],rcannot:80,rdelet:222,re_format:473,re_mxplink:495,re_mxpurl:495,re_str:495,re_styl:495,re_url:495,reach:[28,36,64,68,80,116,126,128,138,144,146,157,174,197,201,205,217,258,316,342,358,384,440,444,463,480,481,493,548],reachabl:[47,122,341],react:[28,47,52,94,171,172,374,402,468],reactiv:232,reactor:[431,458,465,494],read:[0,2,7,10,11,12,14,15,17,18,20,21,23,28,30,31,33,35,41,44,49,53,56,61,64,67,68,75,80,85,89,93,94,95,96,105,110,113,116,117,118,119,121,122,123,124,125,126,128,130,131,132,133,134,135,136,138,141,142,143,144,150,153,155,157,160,162,164,168,169,175,176,178,179,181,182,183,188,189,197,199,200,201,208,211,221,228,229,238,245,264,279,303,320,341,342,350,354,358,375,376,386,392,394,401,402,406,407,410,427,429,452,468,470,471,474,475,479,481,488,489,496,504,541,544],read_batchfil:474,read_default_fil:4,read_flag:279,read_only_field:519,readabl:[7,20,47,48,60,69,94,119,159,229,243,279,296,341,375,473,480,544],readable_text:375,reader:[32,93,119,144,162,166,178,181,198,201,227,316,350,425,439],readi:[0,4,6,7,9,12,13,17,33,37,54,55,62,84,89,118,128,132,133,143,151,153,155,174,185,191,208,217,293,312,313,314,315,316,354,402,449,481,490,496],readili:[170,183],readin:479,readlin:489,readm:[12,16,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,118,132,201,239,381],readonly_field:[504,506,509,510],readonlypasswordhashfield:504,readthedoc:[181,516],real:[0,6,7,8,12,13,20,21,30,37,41,48,54,63,69,80,89,94,95,104,112,119,121,130,135,136,142,146,147,148,152,157,162,163,170,175,176,187,189,192,195,197,201,203,211,216,238,251,287,297,314,342,343,353,354,397,451,474,483,484],real_address:13,real_nam:13,real_seconds_until:[251,484],real_word:353,realist:[7,142,143,177,279],realiti:[7,121,140,152,160,170,176,181],realiz:[12,133,176],realli:[1,6,8,11,14,15,16,19,21,23,28,30,33,37,42,46,47,49,54,55,57,69,80,89,94,111,113,114,116,117,122,123,126,128,133,134,136,137,141,143,144,153,157,162,163,168,169,170,172,174,187,189,198,200,201,203,217,233,245,274,287,342,390,398,429,473,474,480,492,494],really_all_weapon:130,realm:440,realnam:37,realpython:54,realtim:[132,162,251],realtime_to_gametim:[86,251],reason:[7,9,12,14,15,19,28,31,33,35,36,37,39,41,42,47,50,55,60,62,65,67,72,80,85,88,104,110,116,118,119,122,124,126,133,134,140,142,143,144,146,147,153,155,157,158,159,160,161,162,164,167,176,182,187,195,199,200,201,208,220,222,227,232,255,270,280,296,341,342,353,358,386,400,402,406,411,417,422,429,430,431,432,438,439,440,443,448,449,451,459,460,461,470,478,483,489,496,547],reasourc:41,reassign:159,reattach:[9,431,432],rebal:0,reboot:[0,11,14,20,26,27,34,42,44,47,67,75,82,110,121,132,147,154,187,190,192,197,201,202,208,216,227,232,248,293,358,374,375,384,402,410,411,413,415,420,460,461,478,480],reboot_evennia:420,rebuild:[11,116,162,187,192,195,343,432],rebuilt:[23,116,187,201,341],rec:201,recach:376,recal:[375,541],recaptcha:178,receiev:201,receipt:[76,199,422],receiv:[0,6,19,21,23,28,29,30,35,36,44,51,52,61,65,70,85,118,132,162,169,178,201,208,215,216,234,236,237,238,255,280,303,341,354,358,381,402,422,425,429,431,432,438,448,449,451,458,459,476,481,483,493,494,496,506,548],receive_functioncal:429,receive_status_from_port:420,receiver1:494,receiver2:494,receiver_account_set:211,receiver_extern:238,receiver_object_set:401,receiver_script_set:410,recent:[18,53,123,130,153,175,187,210,463],recently_bitten:130,recev:449,recip:[47,96,103,117,142,154,205,206,239,285,295,298,309],recipe_modul:296,recipe_nam:296,recipebread:85,recipenam:85,recipes_pot:296,recipes_weapon:296,recipi:[19,30,35,85,162,208,236,237,303,402,429,483],reckon:124,recoc:141,recog:[0,36,61,104,141,354,548],recogerror:354,recoghandl:354,recogn:[10,32,37,56,126,128,136,142,158,179,193,197,203,354,358,465],recognit:[58,104,117,143,354,468],recommend:[0,1,7,12,14,28,37,41,48,55,67,68,69,73,83,112,116,118,119,121,124,129,135,140,142,146,153,162,164,165,181,183,184,190,195,196,197,201,232,260,274,341,350,380,398,400,402,422,474,480,493],reconfigur:197,reconnect:[88,99,208,209,227,236,417,420,429,431,432,458,461],reconnectingclientfactori:[417,431,432,451],record:[17,76,175,183,197,316,381,463,536],record_ip:463,recours:55,recov:[0,20,110,154,155,160,312,313,314,315,316,358,398,496],recoveri:147,recreat:[11,42,132,170,183,195,201,209,216,343,474,475],rectangl:479,rectangular:[162,479],recur:122,recurs:[0,14,94,342,397,406],red:[15,16,21,36,39,41,53,60,78,116,117,119,128,132,134,135,136,176,201,222,232,279,367,368,375,473,483,497,548],red_button:[0,15,16,36,106,128,132,205,206,222,233,239,359,548],red_kei:39,red_ros:130,redbutton:[15,16,36,106,128,132,222,368],redd:199,reddit:199,redefin:[23,37,80,121,402,536],redhat:[187,195],redirect:[0,44,53,62,73,80,132,164,178,182,201,245,279,282,480,538,542,547],redirectlink:342,redirectview:542,redit:[80,245],redmapnod:116,redo:[27,135,136,140,478],redoc:0,redraw:440,reduc:[147,312,313,433],reduct:75,redund:473,reel:216,reen:[60,473],ref:[48,119,183,201,354,402,496,536],refactor:[0,161,312,313,315,402,499],refer:[5,9,12,14,15,21,23,28,30,36,37,41,42,44,48,53,57,58,62,67,68,72,75,77,80,85,94,95,96,98,104,105,110,117,118,122,124,125,126,130,132,133,134,135,136,141,142,143,146,147,159,160,161,163,164,165,170,176,178,179,181,182,192,197,200,201,203,208,216,222,227,231,236,270,282,287,297,312,314,335,341,344,354,358,384,386,397,402,411,412,414,415,422,432,452,460,469,480,483,487,492,493,496,505,512,547,548],referenc:[37,41,50,61,104,117,119,160,200,217,222,227,236,341,354,392,394,470,496,548],referenti:496,referr:197,refin:[159,297],reflect:[135,138,141,547],reflex:[58,483,500],reflow:56,reformat:[407,482],reformat_cel:482,reformat_column:[170,482],refresh:[1,53,116,179,440,463],refus:[19,55,142],regain:155,regard:[176,386,516],regardless:[0,10,21,23,39,44,48,55,57,58,65,140,146,162,166,174,201,208,215,236,279,287,300,354,402,415,437,440,443,458,460,468,471,474,487,489,496],regener:314,regex:[0,19,23,27,28,36,51,53,76,82,201,217,220,232,233,236,248,386,464,468,480,496,525],regex_nick:36,regexfield:504,region:[74,116,162,197,201,220],regist:[0,12,51,52,53,65,73,83,94,116,147,173,178,186,188,199,200,201,202,208,210,227,232,264,293,374,375,411,420,431,432,438,461,463,465,473,483,521,527,537,540],register_error:473,register_ev:[94,264],registercompon:51,registertest:537,registr:[0,49,186,540],registrar:187,registri:[117,386,463,465,548],regress:406,regroup:83,regul:398,regular:[0,10,12,14,18,19,23,30,31,35,42,44,47,50,52,58,73,76,77,81,94,103,105,116,117,119,125,128,129,130,132,135,136,139,140,144,149,164,177,179,193,197,201,209,215,290,309,342,376,386,392,398,415,468,471,483,487,496,500,525],regulararticl:488,regulararticle_set:488,regularcategori:488,regularli:[11,94,168,173,177,187,198,201,251,281,374,376,413,415,423,453,484],reilli:181,reimplement:[86,117],reinforc:181,reiniti:203,reinstal:195,reinvent:161,reject:[91,94,384,386],rejectedregex:386,rejoin:19,rel:[12,15,16,21,28,31,50,54,57,80,98,115,116,117,119,125,127,142,159,167,175,178,200,251,279,316,474,480],relai:[0,20,23,44,181,189,208,227,287,300,341,402,438,461,480,481,496],relat:[0,14,19,21,23,28,31,48,51,53,110,116,117,130,132,133,136,142,144,154,160,161,177,181,199,200,201,203,211,212,215,230,235,237,238,251,264,278,279,280,312,313,314,315,316,318,341,342,358,373,376,381,394,401,402,409,410,415,425,461,468,470,471,473,480,488,489,502,504,505,512,519,529,536,548],related_field:[504,505,506,508,509,510,512],related_nam:[211,238,394,401,410,468,470,471,488],relationship:[35,48,159],relay:209,releas:[0,75,118,121,124,125,132,139,143,154,180,181,192,196,197,232,500,548],relev:[14,16,23,33,37,45,46,48,50,53,60,73,74,77,80,110,116,118,119,124,144,147,149,156,162,163,175,178,181,202,208,213,215,245,287,296,342,358,398,412,434,452,459,460,461,473,478,480,490,496,505,512],relevant_choic:245,reli:[0,10,28,47,60,67,68,73,92,94,104,117,124,137,142,163,166,168,169,176,300,354,358,376,420,470,480],reliabl:[15,48,153,155,183,470,487],reliant:98,religion:[31,392],reload:[0,1,2,3,4,6,9,11,13,14,15,16,20,21,23,25,26,27,28,31,32,40,42,44,47,48,50,52,53,55,57,62,63,73,80,85,88,89,90,92,94,96,99,101,102,104,108,110,116,126,132,133,134,135,144,146,147,149,151,152,154,155,157,158,161,162,163,164,166,171,172,174,175,178,179,186,187,188,198,200,201,202,208,209,216,221,222,232,236,245,255,261,270,306,320,329,333,341,343,354,358,375,376,392,398,400,402,409,411,413,415,420,429,430,432,434,458,461,465,468,474,476,478,479,480,484,496,548],reload_evennia:420,reluct:142,remain:[0,8,14,15,21,23,27,28,41,42,45,57,70,89,104,110,132,133,134,144,156,162,169,197,203,214,216,222,224,228,251,282,296,312,313,314,315,316,320,353,358,374,402,420,448,449,480,481,496],remaind:[23,152,251],remaining_repeat:42,remap:[135,201,468],rememb:[2,7,10,11,12,14,15,21,23,28,31,39,41,46,47,51,53,55,60,67,68,80,94,96,116,123,130,133,135,137,138,140,141,142,143,144,152,154,155,157,159,160,162,163,164,169,170,175,176,185,193,195,197,220,222,260,342,402,411,474,493],remind:[27,96,119,123],remit:220,remnisc:161,remot:[153,187,192,199,202,227,429,431,443],remov:[0,4,11,12,14,19,20,21,24,27,28,30,31,34,36,37,39,42,47,55,75,76,80,83,89,96,104,105,106,110,116,121,123,124,125,126,132,133,138,142,147,151,152,157,162,164,166,168,169,178,198,201,205,215,216,220,222,227,228,229,232,233,236,238,245,258,262,270,279,284,290,297,309,312,313,314,320,342,343,353,354,357,358,368,384,386,390,398,401,402,407,411,414,415,420,438,449,461,463,468,471,473,477,480,487,492,494,495,496,522],remove_alia:227,remove_backspac:495,remove_bel:495,remove_charact:147,remove_default:[21,216],remove_map:343,remove_non_persist:409,remove_object:343,remove_receiv:238,remove_send:238,remove_user_channel_alia:[19,236],removeth:468,renam:[0,7,26,124,126,128,135,136,144,151,162,166,196,201,222,228,236,402,409,470],render:[45,52,53,80,93,119,149,151,164,166,178,179,229,350,465,490,492,504,505,506,508,509,510,512,519,525,534,536,547],render_post:449,renew:[155,162,187,463],reorgan:0,repair:[125,139,140,152],repeat:[0,6,7,68,86,94,96,105,117,135,140,142,147,151,163,170,172,174,191,201,203,208,209,251,281,287,386,390,409,410,413,420,425,444,468,476,480,484,496],repeatedli:[6,16,32,132,163,281,374,410,413,415,420,425,451,529],repeatlist:32,repetit:[147,163,386],replac:[0,4,14,19,21,23,27,28,30,31,32,33,36,37,41,44,49,51,58,60,73,75,77,80,82,88,91,94,101,102,104,116,117,119,124,125,126,127,132,135,137,141,144,147,151,153,155,156,158,161,164,170,179,183,187,192,196,200,201,208,214,215,216,217,220,228,229,232,233,236,248,255,258,261,270,274,278,284,287,293,296,306,309,320,341,342,353,354,368,373,376,384,398,402,404,406,407,432,435,448,449,459,468,473,478,479,480,481,482,483,495,496,525,527],replace_data:482,replace_timeslot:320,replace_whitespac:482,replacement_str:228,replacement_templ:228,replai:201,replenish:[312,316],repli:[23,28,77,142,186,209,287,303,418,442,443,449,461,480],replic:[143,151,471],replica:[12,133],repo:[0,9,12,64,118,119,124,131,140,161,181,196,496],repoint:53,report:[0,1,7,8,10,12,23,26,34,42,47,80,85,94,104,113,116,118,124,137,140,142,144,146,147,151,169,183,184,191,195,199,200,201,210,222,227,258,261,274,296,342,354,402,420,425,429,432,435,436,443,444,448,451,459,461,473,476,480,496],report_to:[210,400,409,476],repos:548,repositori:[2,3,5,64,75,118,119,124,131,153,180,182,183,192,407],repositri:64,repr:[169,496,544],reprehenderit:29,repres:[0,13,21,23,30,31,35,37,44,45,48,53,58,62,67,70,80,83,91,93,94,95,96,98,104,105,107,110,116,117,120,122,124,125,126,128,130,131,132,133,134,136,143,147,151,152,153,159,160,163,164,176,178,208,213,237,258,264,274,282,290,314,326,341,342,343,350,353,354,358,375,376,381,384,386,390,392,402,407,414,415,417,431,432,448,449,459,460,461,465,468,469,473,475,476,480,481,482,483,492,496,499,522],represen:133,represent:[0,13,14,30,35,36,44,62,67,68,70,122,133,146,154,162,176,237,258,261,341,354,400,406,410,429,448,449,471,477,484,519],reprocess:199,reproduc:[54,116,342,402],repurpos:75,reput:[125,139,140,380],reqhash:[469,496],reqiur:[91,384],request:[0,1,2,28,33,45,49,52,53,62,73,77,118,132,136,149,164,175,178,179,182,197,199,201,208,209,220,261,287,293,402,406,420,422,429,432,434,439,440,442,449,465,471,480,504,505,506,507,509,510,512,516,517,522,527,528,529,530,534,541,543,544,547],request_finish:45,request_start:45,requestavatarid:440,requestfactori:465,requestor:[208,463],requir:[1,3,7,10,16,17,23,27,28,30,31,33,34,37,39,41,47,48,49,50,51,52,53,54,59,67,72,75,76,80,83,85,89,94,95,98,99,101,105,111,116,117,118,119,123,124,126,140,142,143,144,147,151,159,162,164,168,170,172,176,177,178,179,180,181,182,183,185,187,188,190,191,193,197,201,202,203,210,221,222,227,237,238,255,270,274,293,296,297,306,314,315,320,341,342,344,347,354,358,376,384,386,390,393,397,400,402,406,414,420,431,432,445,453,464,469,474,479,480,481,482,483,487,491,492,493,496,504,505,506,508,509,510,512,536,542],require_al:[39,471],require_singl:[0,406],requirements_extra:[0,1,75,116,196],requr:41,requri:[406,483],rerout:[0,52,219,223,432,513],rerun:[0,15,16,28,116,296],res:201,research:[142,181,260],resembl:[72,121,153],resend:23,reserv:[23,30,54,126,133,135,170,406,464,469,483,496],reserved_keyword:30,reserved_kwarg:[30,483],reset:[0,2,17,18,20,21,23,26,27,42,44,48,55,60,63,94,96,104,110,126,132,141,146,147,155,158,166,170,174,175,176,183,200,201,202,208,209,216,222,232,251,261,277,279,293,354,357,358,375,398,420,424,430,440,458,468,471,474,482,483,484,494,496],reset_cach:[468,471],reset_callcount:42,reset_gametim:[20,484],reset_serv:424,reset_tim:320,reshuffl:[125,127],resid:[69,131,398],residu:[232,314],resist:[83,407,496],resiz:[52,162,479,482],resolut:[110,142,147,341,358],resolv:[1,6,12,89,119,135,136,142,143,147,155,197,200,309,312,313,314,316,519],resolve_attack:[312,313,314,315,316],resolve_combat:147,resort:[23,119,162,185,227,496],resourc:[1,10,47,49,52,53,69,73,75,110,117,118,119,120,124,126,130,131,132,133,134,135,136,137,142,151,154,160,183,197,199,201,208,315,340,358,395,411,418,449,465,475,494,548],respawn:[116,125,139,140],respect:[0,23,30,33,37,42,44,48,49,85,94,96,97,103,108,116,117,134,144,162,175,183,200,201,220,222,229,287,296,303,309,329,354,398,402,459,460,470,471,474,476,482,493,496,500,536],respond:[0,28,34,45,65,95,96,100,117,132,140,171,172,176,203,447,451],respons:[0,7,18,28,30,31,49,52,53,54,56,68,118,122,159,168,169,172,173,174,197,201,208,209,216,217,227,236,296,333,376,392,394,402,418,420,422,429,451,452,461,470,490,492,496,519],response_add:[504,506,509],resport:496,respositori:118,rest:[0,9,18,19,23,24,28,30,36,42,52,53,67,75,110,119,125,132,133,135,136,138,140,142,146,155,160,167,168,170,175,190,193,200,201,214,230,231,312,313,314,315,316,358,468,473,482,516,517,519,520,521,522,548],rest_api_en:[49,52,201],rest_framework:[49,201,516,517,518,519,520,522],restart:[0,1,6,9,11,26,40,42,51,55,64,73,82,87,94,133,136,147,162,183,187,197,199,200,201,202,203,205,208,232,236,245,248,261,347,402,409,411,413,414,415,424,437,458,459,460,496],restartingwebsocketserverfactori:[209,431],restock:168,restor:[14,21,96,176,245,297,315,411,415],restrain:[110,222,358,397,479,496],restrict:[14,33,41,47,48,51,57,81,94,105,123,128,131,132,137,141,146,170,179,182,197,222,270,290,315,316,341,386,392,393,398,400,407,409,476,478,480,482,493],restructur:[0,119,160],result1:309,result2:[28,309],result:[0,8,10,12,14,20,21,23,28,30,31,33,41,44,47,49,52,54,58,60,64,68,73,76,78,81,85,87,91,98,103,104,105,110,116,119,126,130,131,133,134,135,137,141,142,144,146,147,151,156,162,169,172,175,176,179,183,197,200,201,208,210,214,215,217,222,229,236,238,279,287,296,297,298,309,312,313,314,316,341,342,347,353,354,358,376,380,384,386,393,395,398,400,402,406,407,409,420,429,451,468,470,473,478,479,480,482,483,487,489,490,493,494,496,497,499,514,544],result_nam:309,resum:[23,116,144,155,414],resurrect:374,resync:[209,429,459],ret1:483,ret:[23,494],ret_index:496,retain:[0,8,20,21,31,41,53,54,64,92,136,170,201,237,300,358,392,394,401,407,466,468,470,474,476,483,489,496,500],retain_inst:[0,217],retext:119,retract:287,retreat:316,retri:420,retriev:[0,8,19,23,32,46,49,67,69,74,83,94,96,110,116,164,175,201,208,211,213,216,222,227,232,233,237,260,320,335,342,358,393,397,401,406,418,425,426,432,438,447,468,471,477,487,491,493,496,501,516,517,521,522,541,544,547],retriv:[209,475],retro:19,retroact:[48,162],retur:29,return_alias:342,return_appear:[0,116,159,175,279,280,290,320,344,354,366,375,402],return_apper:[344,402],return_cmdset:229,return_detail:[320,376],return_dict:392,return_except:0,return_iter:406,return_key_and_categori:471,return_list:[0,30,468,471,483],return_map:170,return_minimap:170,return_obj:[14,36,468,471,491],return_par:407,return_prototyp:173,return_puppet:208,return_str:[30,341,483],return_tagobj:471,return_tupl:[36,347,468],returnvalu:[23,54],reus:[0,83,135,137,270,487],rev342453534:496,reveal:[94,116,138,290],reveng:143,reverend:[75,117],revers:[21,23,53,58,60,94,115,155,157,170,174,176,179,201,211,227,238,333,341,357,394,401,410,465,468,470,471,473,488,522],reverse_lazi:201,reverseerror:[420,429],reversemanytoonedescriptor:[211,401,488],reverseproxyresourc:465,revert:[12,53,176,197,219,393],review:[11,21,73,96,118,122,126,141],revis:[0,140],revisit:[4,480],reviu:28,revok:162,revolutionari:12,reward:[113,145],rework:[0,99,117,133,140,155],rewrit:53,rfc1073:436,rfc858:442,rfc:[436,442],rfind:473,rgb:[60,135,473],rgbmatch:473,rgh:135,rhel:182,rhello:30,rhost:234,rhostmush:[69,72,161],rhs:[153,162,230,233],rhs_split:[222,228,230],rhslist:[0,230],ricardo:496,riccardomurri:496,rich:[0,75,80,161,180,477],richard:181,rick:41,rid:[134,160],riddanc:55,riddick:[91,384],ride:174,right:[0,1,6,7,8,11,16,23,28,30,32,33,36,41,42,49,51,52,53,54,64,75,83,85,90,91,94,95,96,115,116,117,119,121,125,126,130,131,132,133,135,136,138,140,143,144,152,153,154,155,157,160,161,162,168,169,170,171,174,175,176,178,179,181,182,183,187,191,193,197,201,216,219,222,230,232,234,236,261,262,273,277,279,296,309,316,320,333,341,342,350,368,374,375,376,384,398,407,410,460,473,474,478,482,496,497],right_justifi:41,rightmost:[116,342],rigid:161,rindex:473,ring:[104,137,353],ringmail_armor:14,rink:75,rise:[21,163],risen:163,risk:[30,52,119,140,142,161,175,193,197,201,221,232,496],rival:170,rjust:[30,473,483],rm_attr:222,rmem:201,rnormal:60,rnote:232,road:[21,95,170,174,215],roam:[138,216,374],roar:170,robot:178,robust:[168,169,199],rock:[67,94,98,147,216],rocki:138,rod:216,rodrigo:75,role:[0,18,75,112,117,121,125,134,139,140,146,161,169,183,312],roleplai:[31,61,101,117,121,124,125,139,140,141,146,147,161,165,175,181,347,352,354,548],roll1:146,roll2:146,roll:[28,85,94,112,117,136,141,142,146,147,162,169,175,312,313,314,315,316,346,347,463],roll_challeng:146,roll_dic:347,roll_dmg:146,roll_hit:146,roll_init:312,roll_result:347,roll_skil:146,roller:[117,141,142,146,147,296,347,548],rom:181,roof:222,room1:10,room2:10,room56:15,room:[0,6,10,14,15,16,17,19,20,21,23,33,35,41,42,46,48,49,50,55,58,69,72,74,80,87,89,94,95,98,104,107,108,109,112,114,115,116,117,120,121,122,124,125,128,129,130,132,133,134,135,136,137,138,139,144,146,147,152,158,160,161,163,165,168,169,170,171,172,173,174,175,177,178,200,201,205,206,213,214,215,216,220,222,228,233,239,245,260,274,275,276,277,278,279,281,282,284,290,312,313,314,315,316,319,320,326,329,333,335,336,338,341,342,343,344,347,354,359,368,370,372,373,374,375,397,402,410,424,452,474,494,516,522,537,548],room_desc:[10,98],room_dict:98,room_flag:160,room_lava:160,room_replac:277,room_typeclass:[321,333,494,537],room_x_coordin:116,room_y_coordin:116,room_z_coordin:116,roombuildingmenu:[80,245],roomnam:[162,222],roomref:174,rooms_with_five_object:130,roomstat:279,roomviewset:522,root:[1,4,5,7,8,9,11,15,33,37,53,58,67,73,75,80,119,122,124,131,151,164,166,179,180,183,187,191,192,193,197,205,206,375,402,407,420,465,477,502,515,527],root_urlconf:201,rose:[14,36,37,48,129,130,137],rostdev:197,roster:[124,141,312,313,314,315,316],rosterentri:124,rot:10,rotat:[0,19,132,201,279,489],rotate_flag:279,rotate_log_fil:489,rotatelength:489,rough:[119,140],roughli:[140,162,496],round:[7,18,30,104,110,293,316,353,358,451,482,483],rounder:[104,353],rout:[51,116,117,128,159,160,174,208,335,341,342],router:[197,518,521],routerlink:116,routermaplink:[116,342],routin:[104,201,354,400,455,493,496],row:[0,51,56,60,67,96,119,122,130,147,149,159,162,164,170,176,341,344,482,496],rowdi:98,rpcharact:354,rpcommand:354,rpg:[87,93,104,110,112,118,125,132,133,139,140,146,162,205,206,239,316,548],rpi:181,rplanguag:[0,104,141,205,206,239,345,352,354],rpm:195,rpolv:0,rpsystem:[0,58,101,104,119,141,205,206,239,306,345,548],rpsystemcmdset:[104,354],rred:473,rsa:[440,441],rspli8t:169,rsplit:[175,473],rss2chan:[26,126,198,201,227],rss:[11,201,202,205,206,209,227,235,416,425,428,438,548],rss_enabl:[198,201,227],rss_rate:209,rss_update_interv:[201,227],rss_url:[198,209,227],rssbot:209,rssbotfactori:439,rsschan:227,rssfactori:439,rssreader:439,rstop:222,rstrip:[169,473],rsyslog:380,rtest2:60,rtext:[168,483],rthe:80,rthi:[60,135],rtype:465,rubbish:219,rubbl:116,rubi:122,rudimentari:[113,374],ruin:[138,320,376],rule:[8,12,15,16,23,33,55,60,94,104,110,117,121,125,132,136,139,140,141,145,152,162,176,181,245,297,312,313,314,315,316,353,358,386,394,474],rulebook:[142,147],rumor:31,rumour:138,run:[0,1,2,3,4,5,7,8,11,12,13,14,15,16,17,19,20,21,25,28,30,31,33,40,41,42,47,48,49,50,51,52,53,54,62,64,67,71,75,78,79,89,94,95,96,113,116,119,120,122,124,125,126,128,130,132,133,134,135,136,138,140,141,142,143,144,146,149,151,152,153,154,155,160,161,163,164,166,168,169,170,174,175,176,177,178,179,181,182,183,184,185,187,189,190,193,194,195,196,197,199,200,201,203,205,208,209,213,214,216,217,221,222,228,229,232,233,236,249,261,262,270,278,296,312,314,315,321,329,333,341,342,354,373,380,390,397,398,402,406,407,409,410,413,414,415,420,424,426,429,430,437,438,445,449,451,454,458,459,463,465,470,473,474,478,480,481,483,484,489,493,494,496,522,547,548],run_async:[54,496],run_connect_wizard:420,run_custom_command:420,run_dummyrunn:420,run_evscaperoom_menu:278,run_exec:480,run_exec_then_goto:480,run_in_main_thread:[0,496],run_init_hook:458,run_initial_setup:458,run_menu:420,run_option_menu:278,run_start_hook:[48,470],rundown:127,runexec:480,runexec_kwarg:480,runnabl:41,runner:[2,4,7,9,201,375,451],runsnak:7,runsnakerun:7,runtest:[233,243,246,249,252,256,262,271,273,283,288,291,294,298,301,304,307,310,317,321,327,330,332,339,348,351,355,357,364,371,377,382,387,389,446,456,488,494,501,520,531,537],runtim:[20,23,55,83,163,201,217,245,274,484,496],runtimeerror:[146,208,209,258,261,264,296,340,343,353,358,386,406,438,468,480,483,496],runtimewarn:[340,406],rusernam:28,rush:155,russel:75,russian:64,rusti:[49,58,168],ruv:4,ryou:80,s3boto3storag:75,s3boto3storagetest:243,s3boto3testcas:243,sad:[178,443,480],sadli:234,safe:[0,1,3,8,12,14,21,37,52,53,77,95,116,117,122,141,142,156,160,167,178,187,200,208,219,287,398,415,429,461,465,470,474,477,483,487,496],safe_convert_input:496,safe_convert_to_typ:[30,496],safe_ev:496,safer:[15,55],safest:[44,96,197,470],safeti:[0,12,13,37,48,77,117,141,160,175,197,222,287,401,474],sai:[1,7,10,11,14,16,18,19,20,21,23,26,28,33,39,41,48,50,51,53,54,55,60,62,72,74,75,77,80,91,94,95,96,104,110,111,116,122,126,128,133,135,136,141,142,143,144,146,147,153,155,157,158,160,161,162,163,164,169,171,172,175,176,180,195,197,201,216,228,236,264,277,279,287,347,353,354,358,368,376,384,390,402,480,483],said:[1,28,46,54,65,80,94,95,96,123,133,135,141,142,158,159,161,169,170,172,179,201,214,227,231,333,341,354,402,432,468,470,480],sake:[15,73,135,140,142,143,161,176,201,234,255,546],sale:168,salt:[85,296],same:[0,1,6,7,8,9,10,11,12,13,14,15,16,17,19,20,21,23,27,30,31,32,33,34,35,37,39,41,42,44,46,47,48,50,52,53,54,55,56,57,58,60,62,63,64,65,67,68,69,70,75,78,80,83,86,89,94,96,98,104,105,109,110,111,115,116,117,118,119,121,122,124,126,128,130,131,132,133,134,135,136,137,142,143,144,146,147,151,152,154,155,158,160,161,162,163,164,166,168,169,170,174,175,176,178,179,180,183,187,192,195,197,198,200,201,203,208,213,214,215,216,217,220,222,227,230,231,232,233,234,237,243,245,251,260,261,274,279,280,284,290,293,296,303,312,313,314,315,316,320,326,333,335,342,344,350,353,354,358,370,374,376,386,390,392,397,402,406,407,410,411,415,424,429,441,444,445,459,460,461,463,465,468,469,470,471,473,474,476,480,481,482,483,484,489,490,494,496,499,505,512,522,536,547],sampl:[4,111,160,182,192,390],san:350,sand:[163,297],sandi:170,sandwitch:85,sane:[0,2,116,119,140,181,342,547],sanit:[536,547],saniti:[10,116,124,135,159,170,490],sarah:[72,228],sat:[74,152,279],satisfi:[69,230,468],satur:199,sauc:135,save:[0,4,6,8,12,17,20,23,24,27,28,34,35,36,41,42,44,45,46,47,48,50,53,67,75,76,80,94,95,96,104,122,124,126,129,132,133,135,147,152,155,160,175,178,184,185,187,192,199,201,203,208,219,222,232,236,238,243,245,261,293,353,398,401,402,404,406,407,411,413,414,415,418,425,438,453,458,465,468,470,477,478,487,490,491,492,496,504,505,506,509,510,512],save_a:[506,508,509,510,511],save_as_new:[505,512],save_buff:478,save_data:490,save_for_next:[23,217],save_handl:490,save_kwarg:491,save_model:[504,506,509,510],save_nam:415,save_on_top:[506,508,509,510,511],save_prototyp:[0,406],save_recip:309,savefunc:[27,478,491],savehandl:491,saver:477,saverdict:477,saverlist:477,saverset:477,saveyesnocmdset:478,savvi:143,saw:[0,54,85,94,95,133,135,164],say_text:172,saytext:354,scale:[9,50,60,104,119,132,140,146,161,183,201,353,548],scalewai:197,scam:142,scan:[116,182,213,341,342,344,374,376],scarf:[81,290],scari:[133,135],scatter:[314,474],scedul:86,scenario:[162,339],scene:[8,14,32,41,46,60,94,105,121,136,138,142,146,147,152,176,358,376,386,410,415,487],schedul:[20,84,86,94,117,163,251,261,293,414,484],schema:[2,48,67,122,123,496],schemaless:76,scheme:[23,60,67,89,135,154,222,232,473],schneier:75,school:142,sci:116,scienc:159,scientif:181,scipi:[116,342],scissor:147,scm:124,scope:[32,50,94,121,122,140,141,142,144,155,179,254,386,409,476],score:[162,280,496],scott:75,scraper:542,scratch:[5,11,53,62,95,110,141,142,151,161,162,175,195,278,343,358,424],scream:138,screen:[0,8,23,24,28,29,31,32,41,42,44,56,60,63,88,93,99,116,132,134,166,168,178,192,200,201,234,254,255,316,350,425,440,481,483,496,504,548],screenheight:[32,425],screenread:[26,32,234,425,448,449],screenreader_regex_strip:201,screenshot:178,screenwidth:[32,217,425],script:[0,4,5,7,9,10,14,15,16,20,24,26,30,33,34,35,37,41,44,45,46,47,48,49,51,67,69,77,78,90,103,105,108,115,116,117,120,121,126,128,131,132,133,137,138,142,143,147,160,161,163,168,171,173,177,178,188,193,194,196,197,199,200,201,203,205,206,208,209,221,222,232,237,238,239,240,251,257,258,264,275,276,287,309,312,313,314,315,316,320,329,333,343,353,362,363,368,376,386,401,402,406,407,420,453,458,474,475,476,483,484,491,493,494,496,502,503,516,519,522,527,537,548],script_copi:409,script_search:409,script_typeclass:[364,494,537],scriptadmin:510,scriptattributeinlin:510,scriptbas:413,scriptclass:412,scriptdb:[48,120,205,410,467,510,516,519],scriptdb_db_attribut:510,scriptdb_db_tag:510,scriptdb_set:[211,401,468,471],scriptdbfilterset:[516,522],scriptdbmanag:[409,410],scriptdbseri:[519,522],scriptdbviewset:522,scriptform:510,scripthandl:[205,206,408],scriptlistseri:[519,522],scriptmanag:409,scriptnam:[222,475],scriptpar:0,scripttaginlin:510,scroll:[8,29,31,94,131,135,175,193,195,201,481],scrollback:19,scrub:[76,461],sdesc:[0,104,141,160,306,354],sdescerror:354,sdeschandl:[104,354],sdfkjjkl:201,sdk:193,sea:[138,170],seal:141,seamless:[104,354],seamlessli:40,search:[0,6,10,12,13,15,19,23,24,26,27,30,31,35,36,37,41,42,48,61,64,74,80,83,94,96,104,116,121,122,124,125,126,127,131,132,133,134,135,142,143,144,146,147,151,152,156,162,175,179,200,201,205,206,208,210,213,215,217,222,227,229,236,237,260,279,282,287,303,309,312,313,314,315,316,333,335,341,342,344,354,376,392,393,394,395,397,400,402,406,407,409,412,426,468,469,470,471,472,473,476,478,483,496,516,525],search_:[20,130,137],search_account:[20,45,120,137,162,205,210,402,493],search_account_tag:493,search_at_multimatch_input:402,search_at_result:[201,354,402],search_channel:[20,120,205,227,237,493],search_channel_tag:493,search_field:[229,504,506,508,509,510,511,512],search_for_obj:222,search_help:[20,31,120,205,393],search_help_entri:493,search_helpentri:393,search_index_entri:[217,219,220,221,222,227,228,229,230,231,232,233,234,245,255,259,270,273,274,277,287,290,296,297,300,303,306,309,312,313,314,315,316,320,326,329,335,347,354,368,370,374,375,376,384,390,392,394,395,402,451,478,480,481],search_messag:[20,35,120,205,237,493],search_mod:354,search_multimatch_regex:[201,402],search_multimatch_templ:201,search_object:[14,15,19,20,48,78,120,133,135,137,170,174,205,208,400,493],search_object_attribut:137,search_objects_with_prototyp:406,search_prototyp:[0,406],search_script:[20,42,116,120,205,409,493],search_script_tag:493,search_tag:[46,74,120,130,137,205,493],search_tag_account:46,search_tag_script:46,search_target:303,searchabl:[131,260],searchdata:[208,354,400,402,493],season:[90,117,125,139,140,141,143,320],seat:140,sebastian:75,sec:[0,32,54,86,155,163,251,432,484,489],second:[7,14,16,20,21,23,28,30,33,39,41,42,47,54,56,58,60,67,68,75,80,84,94,96,98,108,110,112,116,117,119,126,133,135,137,141,147,152,153,155,157,163,164,167,168,169,173,174,175,176,177,179,193,197,199,200,201,203,208,209,214,222,227,229,233,251,260,261,264,284,293,296,312,314,316,329,341,354,358,363,374,397,402,407,409,414,415,420,425,434,439,452,463,473,476,480,483,484,489,496,497],secondari:[166,460],secondli:[37,129],secret:[75,76,87,117,124,132,140,186,188,201,347,420],secret_kei:[124,201],secret_set:[75,123,124,132,183,186,201,420],sect_insid:159,section:[1,4,7,12,14,17,21,23,25,28,30,31,33,42,48,50,51,53,58,62,67,70,80,90,94,104,116,119,123,124,125,127,131,133,134,135,137,142,152,153,155,157,162,163,164,165,170,178,183,191,192,195,197,201,229,315,320,353,402,407,473,474,480,497,516],sector:159,sector_typ:159,secur:[0,1,14,15,30,33,41,60,69,75,80,105,117,161,168,175,178,179,193,197,201,202,217,221,232,236,381,392,394,402,440,470,483,489,496,536,548],secure_attr:33,secureshel:201,securesocketlibrari:201,sed:4,sedat:[110,358],see:[0,1,2,5,6,7,9,10,11,12,13,14,15,16,19,20,21,22,23,25,27,28,29,30,31,32,33,35,36,37,39,41,42,44,47,48,50,51,52,53,54,55,57,58,60,62,64,67,68,69,70,73,76,77,79,80,82,84,85,86,88,93,95,96,97,98,99,102,103,104,105,106,108,109,110,111,114,115,116,117,118,119,120,121,122,123,124,125,126,128,130,131,132,133,134,135,136,138,141,142,143,144,147,149,151,152,153,154,155,156,157,158,159,160,161,162,163,166,167,169,170,171,172,173,174,175,176,177,178,179,181,182,183,186,187,188,189,191,192,193,195,196,197,198,199,201,202,203,208,217,219,221,222,227,228,229,230,232,233,234,236,239,245,255,258,273,274,277,279,282,284,287,293,296,297,303,309,312,313,333,335,340,341,342,344,350,353,354,358,363,368,370,374,376,381,386,390,392,394,395,401,402,409,414,418,420,422,423,431,432,433,434,436,440,441,443,445,447,448,449,451,452,460,461,465,468,471,473,476,477,478,479,482,483,491,492,494,496,499,500,530,536,541,544,547],seed:[85,201,296,298,342],seek:[138,279,398,489],seem:[21,41,51,80,98,104,113,123,125,140,143,144,157,160,174,175,184,191,195,203,234,468,474],seen:[21,28,44,58,62,80,94,95,96,98,119,126,127,130,133,134,136,144,155,159,161,162,164,166,169,170,173,174,176,245,432,482],sefsefiwwj3:124,segment:[174,465],sekizai:201,seldomli:[217,233],select:[0,9,12,13,20,21,28,39,44,50,51,52,53,67,74,80,98,117,128,141,164,168,170,173,175,178,185,193,200,201,214,215,220,278,313,388,389,390,470,478,480,514,519,548],selet:480,self:[0,6,10,13,14,15,20,21,23,27,28,33,36,37,39,41,42,47,48,50,54,62,64,67,72,77,80,81,83,84,85,87,89,90,92,94,96,97,98,101,102,103,104,107,108,110,114,115,116,119,124,126,128,133,134,135,136,137,141,142,144,146,147,152,153,154,155,156,157,158,159,160,161,162,163,166,167,168,171,172,173,174,175,177,179,188,189,193,208,209,211,213,215,216,217,219,222,223,227,230,232,233,234,236,238,245,258,270,274,277,278,279,282,287,290,293,296,297,303,306,309,312,313,314,315,316,320,326,329,333,335,340,343,347,354,358,363,368,373,374,375,376,384,390,392,397,402,414,418,420,422,423,427,429,431,432,438,440,441,443,445,447,448,449,451,459,460,461,468,470,471,473,478,480,481,483,487,490,491,492,494,496,530],self_fire_damag:297,self_pid:496,self_refer:14,selfaccount:162,sell:[141,142,168,180,287],semi:[7,104,128,135,177,201,284,353],semicolon:[33,398,400,409,476],send:[0,7,13,19,20,23,28,29,30,32,33,37,39,42,44,45,47,49,51,52,53,55,61,65,70,74,75,76,77,80,85,91,94,97,98,116,117,122,125,126,127,132,134,137,142,146,147,153,155,162,166,169,172,173,175,176,178,187,188,199,201,203,208,209,216,217,220,222,227,236,237,238,279,287,296,300,303,316,341,342,354,363,366,373,374,381,384,402,414,415,417,420,422,423,425,429,430,431,432,433,435,438,439,440,442,443,444,446,448,449,451,452,459,460,461,462,473,476,477,480,482,494,496,500,548],send_:[62,65,438],send_adminportal2serv:430,send_adminserver2port:417,send_authent:431,send_broken_link_email:201,send_channel:[431,432],send_default:[62,65,431,432,438,440,443,448,449],send_defeated_to:374,send_emot:[104,354],send_functioncal:429,send_game_detail:422,send_heartbeat:431,send_instruct:420,send_mail:303,send_msgportal2serv:430,send_msgserver2port:417,send_p:432,send_privmsg:432,send_prompt:[65,440,443,448,449],send_random_messag:363,send_reconnect:432,send_request_nicklist:432,send_status2launch:430,send_subscrib:431,send_testing_tag:373,send_text:[62,65,440,443,448,449],send_to_online_onli:[19,236],send_unsubscrib:431,sender:[19,35,45,100,208,209,236,237,238,279,287,354,366,402,431,462,476,487,493,506],sender_account_set:211,sender_extern:238,sender_object:462,sender_object_set:401,sender_script_set:410,sender_str:236,senderobj:[237,476],sendlin:[440,443,448],sendmessag:[62,384],sens:[0,21,33,37,52,53,54,64,67,80,110,116,118,136,144,160,162,174,183,215,358,368,400,476,477,480],sensibl:[19,30,31,197],sensit:[14,28,31,33,39,76,130,162,210,237,245,251,261,320,344,355,381,382,393,469,471,484,493],sensivit:386,sent:[7,19,28,30,32,35,44,45,51,53,65,68,70,76,88,91,94,97,100,117,132,135,153,162,164,169,187,201,208,209,213,227,236,237,238,245,255,261,274,279,303,364,366,381,384,402,417,420,422,425,429,430,431,432,440,444,448,459,461,468,480,493,494,519],sentenc:[0,58,64,94,95,104,169,201,264,279,353,354,496],senwmaplink:[116,342],sep:[64,473,496],sep_kei:[80,245],separ:[0,7,9,10,12,14,15,16,19,21,23,28,30,31,33,34,36,37,40,42,44,46,47,51,53,58,62,67,72,74,78,85,94,95,97,102,104,110,111,115,116,117,118,119,122,125,126,128,130,134,135,136,139,140,141,151,155,161,162,163,168,169,174,175,176,178,182,183,188,189,191,198,199,201,214,216,217,222,228,229,230,232,245,261,264,270,293,296,303,312,313,316,333,337,341,342,344,353,354,358,376,390,393,398,400,401,402,406,409,411,415,439,444,449,461,470,473,474,476,479,483,493,494,496,500,505],separatli:155,separator_fil:201,separator_star_color:201,separator_text_color:201,sepat:296,sept:2,seq:36,sequenc:[15,16,17,23,33,36,37,52,54,70,77,78,119,122,132,138,142,144,166,176,201,217,221,236,251,282,296,341,354,398,418,424,473,474,480,482,494,495,496],sequenti:142,seri:[0,8,12,19,28,60,89,99,117,135,141,142,143,144,151,482],serial:[0,14,50,65,201,205,206,405,414,415,429,438,477,490,492,496,502,504,506,509,510,515,522],serializ:449,serialized_str:[504,506,509,510],serializer_class:522,seriou:[157,203],serious:195,serrano:75,serv:[52,53,65,73,75,117,122,126,132,136,137,142,159,170,187,199,200,201,215,237,314,449,465,474,476,534],serve_media:201,server:[1,3,4,7,8,9,10,11,12,13,14,15,17,19,20,21,23,25,26,28,30,31,32,33,34,37,41,42,45,47,48,50,51,52,53,54,55,57,62,63,65,67,68,70,73,75,76,82,85,87,88,89,92,94,96,99,101,102,104,108,110,116,117,119,120,121,122,123,124,125,126,127,131,133,134,135,136,142,143,144,146,147,151,152,153,154,155,158,160,161,162,163,164,166,169,170,172,174,178,179,180,181,185,186,187,188,189,191,192,193,194,195,199,201,203,205,206,208,209,210,216,220,222,227,232,234,236,239,245,248,255,261,270,277,281,296,306,320,329,333,336,337,343,347,354,358,374,375,376,378,379,380,392,402,409,410,411,413,415,466,470,474,476,477,480,484,487,489,496,502,503,519,527,548],server_:0,server_connect:438,server_data:201,server_disconnect:438,server_disconnect_al:438,server_epoch:[20,484],server_hostnam:[0,201],server_l:430,server_log_day_rot:[0,201],server_log_fil:201,server_log_max_s:[0,201],server_logged_in:438,server_nam:200,server_pid:[430,496],server_receive_adminportal2serv:417,server_receive_msgportal2serv:417,server_receive_statu:417,server_reload:[411,415],server_run:420,server_runn:458,server_servic:496,server_services_plugin:[62,132,200,201],server_services_plugin_modul:[62,201],server_session_class:[44,76,201],server_session_handler_class:201,server_session_sync:438,server_st:420,server_twistd_cmd:430,server_twisted_cmd:430,serverconf:[0,220,415],serverconfig:[201,414,415,426,427],serverconfigadmin:511,serverconfigmanag:[426,427],serverfactori:[430,440,443],serverload:[26,232],servernam:[32,53,123,124,182,185,197,200,201],serverport:201,serversess:[44,62,76,126,201,205,206,381,398,416,438,461,468],serversessionhandl:[44,62,201,461],serverset:[33,227,397],servic:[3,5,12,26,55,62,75,126,132,178,183,187,188,192,197,199,200,201,203,205,206,232,416,417,420,421,429,430,437,458,465,496],sessdata:[460,461],sessid:[10,13,23,44,175,201,401,402,417,429,430,438,461],session:[0,10,13,17,21,23,24,26,28,30,32,34,37,39,42,45,55,62,68,120,126,131,133,134,142,161,165,166,167,169,175,184,192,201,205,206,208,209,210,211,213,214,215,217,219,220,223,225,230,234,255,278,300,373,380,381,382,384,401,402,404,405,406,411,416,417,425,429,430,431,432,438,439,440,443,448,449,458,459,461,463,478,480,481,483,496,497,519,548],session_cookie_ag:201,session_cookie_domain:201,session_cookie_nam:201,session_data:461,session_expire_at_browser_clos:201,session_from_account:461,session_from_sessid:461,session_handl:[44,120,205],session_id:519,session_portal_partial_sync:461,session_portal_sync:461,session_sync_attr:201,sessionauthent:201,sessioncmdset:[21,26,134,201,225],sessionhandl:[0,24,62,65,201,205,206,208,402,416,425,431,432,438,439,459,460],sessionid:[201,438],sessionmiddlewar:201,sessions_from_account:461,sessions_from_charact:461,sessions_from_csessid:[438,461],sessions_from_puppet:461,sessionsmain:120,sesslen:402,set:[1,3,4,5,6,7,8,10,11,13,14,15,16,17,18,19,20,22,23,24,25,26,27,29,30,31,32,35,36,37,39,41,42,44,45,46,48,49,50,51,53,54,55,56,57,58,60,62,63,64,65,67,69,70,71,72,73,76,80,81,82,83,84,85,86,88,90,91,92,94,95,96,98,99,103,104,110,111,113,115,116,118,119,120,121,122,126,127,128,129,130,131,132,134,135,136,139,140,143,144,145,147,148,149,150,151,152,153,155,156,157,158,160,161,162,164,167,168,169,170,171,173,174,176,178,179,182,183,184,187,188,190,191,192,193,195,202,203,205,207,208,209,210,211,213,214,215,216,217,219,220,222,223,224,225,226,227,229,230,233,234,235,236,243,245,246,248,249,251,255,259,261,264,271,274,277,278,279,280,281,282,283,288,290,293,294,296,297,298,300,306,309,310,312,313,314,315,316,317,320,321,326,329,332,333,335,336,337,338,339,341,342,344,347,353,354,355,357,358,364,368,373,374,375,376,380,384,390,392,393,397,398,400,401,402,405,406,407,409,412,413,414,415,417,419,420,424,425,426,427,430,431,433,434,436,437,440,442,443,445,446,451,452,454,456,458,459,460,461,463,465,466,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,487,488,489,490,491,492,493,494,496,497,505,508,509,511,512,517,518,520,521,522,525,529,536,537,544,548],set_active_coordin:333,set_al:374,set_alias:217,set_atribut:522,set_attr:222,set_attribut:522,set_cach:468,set_character_flag:279,set_class_from_typeclass:470,set_dead:374,set_desc:227,set_descript:28,set_detail:[320,376],set_flag:[279,280],set_gamedir:420,set_kei:217,set_lock:227,set_log_filenam:236,set_nam:28,set_password:[0,208],set_posit:279,set_task:261,set_trac:[0,6,205],setattr:246,setcolor:166,setdesc:[26,126,161,228,326],sete:10,setflag:[277,279],setgend:[92,300],sethelp:[0,26,31,126,128,229,392],sethom:[26,126,222],setlock:326,setnam:62,setobjalia:[26,222],setperm:220,setspe:[108,117,329],sett:198,settabl:[32,67,133,443],setter:157,settestattr:27,settingnam:33,settings_chang:45,settings_default:[0,10,120,123,131,133,195,200,201,205,206,489,496],settings_ful:200,settings_mixin:[7,205,206,416,450],settl:[147,170],setup:[0,1,7,10,12,17,31,49,53,62,64,67,72,116,119,140,147,162,168,173,181,187,188,191,192,193,201,203,208,219,227,233,243,246,251,262,271,283,288,294,298,310,317,321,332,339,355,357,364,368,373,376,395,402,413,424,437,446,451,455,456,458,465,468,470,487,488,494,520,537,548],setup_sess:[382,494],setup_str:455,setuptool:[191,193,195],sever:[0,6,14,16,21,23,27,29,33,37,39,41,42,48,49,51,53,57,70,80,94,96,116,117,119,125,130,135,141,142,145,147,155,160,161,163,164,181,200,221,222,230,232,237,260,261,320,374,376,402,446,447,471,476,496],sewag:116,sex:300,sftpstorag:75,shadow:[0,31],shall:[176,179],shaman:[41,161],shape:[80,115,128,140,157,162,170,297,333,482],sharabl:41,share:[2,3,4,6,19,21,33,44,46,48,52,67,73,95,118,122,124,125,132,142,147,153,161,178,186,197,199,201,260,261,407,415,451,468,469,471,482,496,504,519,522,530],shared_field:519,sharedloginmiddlewar:[201,530],sharedmemorymanag:[469,486],sharedmemorymodel:[61,238,394,468,470,487,488],sharedmemorymodelbas:[211,238,394,401,410,468,470,487,488],sharedmemorystest:488,sharp:[46,297],shaung:75,she:[23,31,58,80,92,96,104,141,160,169,176,245,300,353,483,499,500],sheer:[98,222],sheet:[2,28,51,119,141,142,178,179,183,479],sheet_lock:162,shell:[1,4,7,11,36,48,67,69,119,135,153,161,162,183,187,191,192,193,197,199,203,440,468],shell_plu:1,shelv:98,shield:[67,155],shift:[16,17,20,69,116,201,261,375,393,496],shiftroot:375,shine:[116,152,376],shini:[49,496],shinier:49,ship:[76,121,122,128,138,170,191],shire:163,shirt:[81,290],shoe:[81,290],shoot:[152,315,316,479],shop:[28,69,142,161,165,548],shop_exit:168,shopcmdset:168,shopkeep:141,shopnam:168,shopper:168,short_datetime_format:201,short_descript:[185,201],shortcom:168,shortcut:[0,8,14,19,20,21,23,30,45,48,72,80,85,94,96,119,131,135,147,149,155,164,169,178,179,183,192,205,209,216,217,222,227,245,258,296,333,398,402,490,496],shorten:[0,6,48,95,201,407,519],shorter:[0,48,62,69,83,116,119,133,144,171,172,177,200,201,236,237,353,393,468,469,476,489],shortest:[116,117,157,335,339,341,342],shorthand:[37,176,222],shortli:[80,96,144],shortsword:130,shot:315,should:[0,1,5,6,7,8,9,10,11,12,13,14,15,16,17,19,20,21,23,28,30,31,32,33,35,37,39,41,42,44,45,46,47,48,50,51,53,54,55,56,57,58,60,62,63,64,65,67,68,69,70,72,73,74,75,76,80,85,89,94,95,96,97,98,101,104,110,114,116,118,119,121,122,123,124,125,126,128,130,132,133,134,135,136,137,138,139,140,141,143,144,146,147,149,151,153,155,157,161,162,163,164,166,167,168,169,170,174,175,176,178,179,182,183,184,186,187,189,190,191,192,193,195,197,198,199,200,201,203,208,209,210,211,213,215,216,217,219,221,222,223,226,227,229,230,232,233,234,236,237,238,243,245,251,254,258,261,264,273,274,277,279,280,282,284,290,296,297,298,303,306,309,312,313,314,316,320,326,329,335,337,339,341,342,343,344,353,354,357,358,373,374,376,380,386,392,397,398,401,402,404,406,407,410,413,414,415,418,419,420,424,427,431,437,440,443,444,446,448,449,451,452,458,459,460,461,463,464,466,468,470,471,473,474,476,477,478,480,481,482,483,484,489,490,491,492,494,496,497,504,505,512,536,537,542],should_join:236,should_leav:236,should_list_top:229,should_show_help:229,shoulddrop:[316,402],shoulder:[81,162,290],shouldget:[316,402],shouldgiv:[316,402],shouldmov:[312,402],shouldn:[15,75,80,96,152,155,162,176,201,245,261,264,315,402,451],shouldrot:489,shout:[155,277,279],shove:152,show:[0,1,6,9,11,12,15,16,19,20,23,25,28,29,30,31,42,44,50,51,53,55,58,59,60,62,67,72,80,85,90,91,95,96,102,110,111,113,115,116,117,118,119,121,122,125,126,127,128,132,133,134,135,136,138,139,140,141,142,144,145,146,147,148,151,156,157,159,161,162,163,164,166,167,168,169,170,171,172,173,176,178,179,184,185,187,188,193,197,198,199,200,201,203,208,219,220,222,227,228,229,230,232,234,254,255,270,274,277,287,290,306,315,316,320,333,335,339,341,342,344,347,350,354,358,368,376,384,390,392,402,404,406,407,418,420,429,478,480,489,490,491,496,500,536],show_change_link:504,show_foot:481,show_map:159,show_non_edit:406,show_non_us:406,show_valu:350,show_version_info:420,show_warn:420,showcas:[21,98,132,138,170],shown:[23,25,28,31,41,42,50,59,80,89,96,104,105,110,123,124,133,144,153,155,159,161,163,174,178,185,201,217,220,227,231,233,245,254,270,284,290,296,341,342,354,358,368,375,386,402,420,480,481,525],showtim:163,shrink:[134,482],shrug:95,shuffl:20,shun:[1,69,197],shut:[7,51,96,123,135,155,192,200,202,208,232,402,413,415,420,422,429,430,437,438,458,461],shutdown:[7,21,26,42,44,55,57,126,162,203,208,209,232,409,415,420,429,430,437,458,459,470,476,480],shy:[1,72,140,143],sibl:[14,42,54,136,161],sid:[75,220],side:[0,4,10,14,30,32,42,44,46,51,53,65,77,87,96,107,116,117,119,130,141,142,146,159,162,169,176,178,184,201,208,209,211,222,228,230,238,287,326,342,347,394,401,410,417,425,429,430,438,441,444,445,448,459,460,461,468,470,471,473,482,488],sidebar:[53,148],sidestep:57,sidewai:482,sigint:420,sign:[9,16,30,47,65,94,95,96,116,128,130,132,137,169,175,177,197,201,227,279,320,341,402,415,468,473,497],signal:[0,7,24,94,203,205,206,312,313,314,315,316,340,416,420,443,449,451,487,548],signal_acccount_post_first_login:45,signal_account_:45,signal_account_post_connect:45,signal_account_post_cr:45,signal_account_post_last_logout:45,signal_account_post_login:45,signal_account_post_login_fail:45,signal_account_post_logout:45,signal_account_post_renam:45,signal_channel_post_cr:45,signal_helpentry_post_cr:45,signal_object_:45,signal_object_post_cr:45,signal_object_post_puppet:45,signal_object_post_unpuppet:45,signal_script_post_cr:45,signal_typed_object_post_renam:45,signatur:[23,30,146,217,258,282,293,340,358,392,414,418,420,422,423,431,440,441,443,445,448,449,468,471,473,480,491,492,530],signed_integ:497,signedinteg:490,signedon:432,signifi:[16,23,397,468],signific:[8,30,116,483,494],significantli:27,signup:123,silenc:[227,422],silenced_system_check:10,silent:[14,54,163,172,220,227,368,424,432],silli:[37,41,130],silmarillion:137,silvren:197,similar:[0,1,9,14,15,23,28,31,37,48,49,51,52,53,67,72,74,80,83,94,96,112,115,116,117,121,122,125,128,133,138,139,140,146,151,152,153,162,174,187,197,208,217,219,233,236,245,296,312,315,316,333,353,384,394,402,409,461,471,476,480,496,519,545],similarli:[46,83,110,116,130,162,163,197,274,313,358,505,512,519],simpl:[0,1,2,10,13,14,15,16,17,18,21,23,24,25,27,30,31,32,37,39,41,44,46,53,54,58,62,64,67,68,69,73,77,78,79,84,85,89,90,91,92,94,95,96,97,100,103,104,105,107,109,111,112,115,117,119,121,122,123,124,125,126,133,134,136,137,138,139,140,141,144,146,147,148,150,153,154,156,157,159,160,161,162,164,166,168,169,170,171,172,173,175,176,177,178,187,192,197,198,199,201,222,236,245,246,255,260,277,279,281,287,293,296,297,300,303,309,312,313,314,315,316,320,325,326,329,333,339,353,354,358,363,366,368,370,374,375,376,384,386,390,391,401,402,407,413,430,439,441,468,474,475,480,483,496,533,534,536],simple_ev:30,simpledoor:[205,206,239,318,548],simpledoorcmdset:[107,326],simpleev:30,simplemu:184,simpleobjectdbseri:519,simpler:[0,17,28,54,160,221,222,477,545],simpleresponsereceiv:422,simplest:[14,39,53,112,126,146,147,155,162,197,216,474,497],simpli:[0,10,11,12,15,18,21,28,33,39,46,48,53,55,60,62,65,74,75,80,84,89,90,98,108,111,118,119,128,131,134,140,141,144,146,152,153,155,157,159,162,166,168,172,174,175,177,182,183,188,189,195,199,200,201,208,215,216,217,233,234,236,245,255,262,293,312,313,316,320,329,341,366,368,375,390,392,394,402,438,468,470,474,475,479,481,496],simplic:[58,157,176,201,234,255,375],simplif:[142,147],simplifi:[0,7,54,64,133,147,164,170,172,192,258],simplist:[51,109,147,175,177,353,370],simul:[7,23,108,117,136,142,146,329],simultan:[68,142,147,162,201,400,496],sinc:[0,1,6,7,8,10,12,14,15,16,19,20,21,23,25,27,28,30,31,32,33,34,35,37,39,42,46,47,48,52,53,54,57,58,60,62,64,65,67,68,73,76,77,80,96,104,111,116,117,119,121,122,123,124,125,126,129,130,131,132,133,134,135,136,137,138,140,142,143,144,147,149,152,153,154,155,157,158,159,160,161,162,163,164,168,169,170,172,174,175,176,178,179,183,185,187,192,197,200,201,203,208,209,211,215,216,217,222,230,231,232,237,245,249,251,279,287,296,303,312,314,315,320,337,341,342,354,368,375,376,390,397,400,402,406,407,411,414,415,420,422,425,437,442,444,458,459,461,463,468,469,470,471,474,475,476,478,480,483,484,487,489,492,493,494,496,505,512,536],singl:[0,7,11,12,16,21,23,28,30,35,36,42,44,46,48,54,56,65,68,69,72,76,80,83,94,96,102,105,110,113,114,116,117,119,121,122,130,134,135,136,138,141,142,146,161,162,170,183,187,197,201,208,220,227,228,232,238,245,270,274,297,312,313,314,315,316,333,339,341,342,344,354,358,376,380,386,390,402,406,407,414,415,452,459,461,468,469,471,473,474,479,480,482,496,499,536],single_type_count:290,singleton:[34,44,47,116,411,414,475],singular:[119,162,201,402,499,501],sink:1,sint:29,sir:95,sit:[16,19,23,37,39,46,48,65,97,121,126,132,134,135,136,142,144,155,174,175,193,195,197,201,230,236,238,264,279,282,303,342,354,375,376,398,409,412,415,433,471,476,491,494],sitabl:48,sitat:376,site:[18,33,40,50,53,56,61,118,164,170,178,179,181,182,183,187,188,192,197,198,199,201,342,465,507,527],site_head:[50,527],site_id:[53,201],sitsondthi:144,sitsonthi:144,sittabl:[125,145,279],sittablein:144,sitter:144,situ:[14,470,477],situat:[0,6,14,23,30,31,42,44,48,52,64,65,67,80,94,95,96,118,134,137,144,163,216,217,222,260,280,487],six:[94,146,169,347,390],sixti:163,sizabl:75,size:[0,6,8,51,56,69,115,116,117,143,159,162,170,184,201,205,243,333,341,342,422,436,473,479,481,482,487,489,496],size_limit:496,skeleton:175,sketch:147,skill:[28,58,104,110,117,121,125,130,132,135,139,140,141,146,147,154,155,156,174,178,179,181,203,297,344,353,354,357,358,479],skill_combat:146,skill_craft:85,skill_requir:297,skill_rol:297,skillnam:146,skillrecip:85,skim:[113,117,130,143],skin:[41,297],skip:[1,9,19,21,23,28,41,47,53,58,68,75,78,98,116,119,126,128,130,132,134,136,140,143,159,163,191,208,221,222,297,402,406,468,477,489,496,514],skip_cal:279,skipkei:449,skippabl:[23,72],skull:41,sky:[42,177],slack:181,slam:[91,384],slash:[53,121,125,128,138,146,147,201,243,375],slate:[134,170],sleep:[23,30,54,142,146,155],sleepi:14,slew:[0,146,191,474],slice:[0,219,473,481],slice_bright_bg:219,slice_bright_fg:219,slice_dark_bg:219,slice_dark_fg:219,slicker:0,slide:[297,368],slider:53,slight:[169,182,251,261],slightli:[0,6,31,141,147,163,175,195,238,274,313,320,504,547],slogan:124,sloppi:119,slot:[53,91,110,162,179,313,315,320,358,384,407,496],slow:[7,20,113,117,141,147,232,237,328,329,330,333,337,342,374,406,433,439,473,493,496,548],slow_exit:[108,205,206,232,239,318,548],slowdoorcmdset:[108,329],slower:[7,42,142,163,197,201],slowexit:[108,329],slowexitcmdset:329,slowli:[0,110,181,358],slug:[217,236,392,394,470,544,547],slugifi:[541,544],slugify_cat:544,small:[7,8,11,16,17,23,35,52,56,69,79,85,89,113,115,116,117,118,121,123,138,140,141,142,143,144,148,153,156,161,162,164,165,166,168,169,170,175,190,197,198,293,296,315,333,335,336,339,341,347,358,368,443,478,479,482,496],smaller:[0,15,16,56,119,339,358,482],smallest:[39,86,94,104,110,162,163,197,251,353,358,479,496],smallshield:67,smart:[115,169,333,342],smarter:41,smartmaplink:342,smartreroutermaplink:342,smartteleportermaplink:342,smash:[106,368],smaug:[126,133,134,136],smedt:499,smell:[116,140,279],smellabl:279,smelli:41,smile:[23,30,133,141,228,277,501],smith:[58,479],smithi:155,smoother:0,smoothi:[103,117,309],smoothli:[179,201],smtp:0,snake:[53,151],snap:167,snapshot:[12,14],snazzi:180,sneak:398,snippet:[0,15,21,33,52,54,60,84,117,121,122,126,141,152,232,293,429,495,496],snonewaymaplink:[116,342],snoop:[187,199],snow:[85,296],snowbal:[85,296],snowball_recip:85,snuff:1,soak:134,social:[121,142,188],socializechat:452,societi:130,sofa:144,soft:[61,104,122,123,353,548],softcod:[30,61,72,94,117,142],softli:180,softwar:[12,195,197],solar:163,soldier:[136,168],sole:[161,164,209],solid:[60,121,143,159],solo:[132,142],solut:[0,10,16,20,28,31,47,48,61,96,110,116,124,138,142,144,146,153,155,157,160,164,168,169,170,172,174,197,199,231,341,342,358,398],solv:[8,20,89,103,116,117,125,138,139,140,152,159,165,170,195,282,309,341,375],some:[0,1,2,4,5,6,9,10,11,12,14,15,16,17,19,20,21,23,26,27,28,30,31,32,33,35,36,37,41,42,44,45,46,47,48,49,50,51,53,55,56,58,60,62,64,65,67,69,70,76,77,80,85,88,89,94,95,96,105,110,111,112,113,116,118,119,121,122,123,124,125,126,127,128,129,130,132,133,134,136,138,139,140,143,144,145,146,147,149,151,152,153,154,155,159,161,162,163,164,167,168,169,170,171,172,174,175,176,178,179,180,181,182,183,184,187,189,190,191,193,195,196,197,199,200,201,203,208,216,217,222,224,227,228,231,232,234,236,237,245,255,261,264,274,279,282,287,293,296,313,314,315,316,326,333,342,353,358,368,373,375,376,386,390,398,402,406,407,410,422,424,429,432,458,468,470,473,474,479,480,483,484,487,489,490,496,499,500,504,509,522,536,547],some_long_text_output:481,some_modul:131,somebodi:[94,96],someclass:131,somehow:[23,36,53,62,70,74,98,144,146,197,290,478],someon:[23,33,45,47,50,58,94,95,96,126,130,135,143,144,155,159,162,168,171,172,197,199,208,228,290,368,374,375,402],somepassword:183,someplac:374,someth:[7,10,11,12,14,16,19,20,23,28,29,30,31,33,37,39,41,42,45,47,48,50,51,52,54,55,58,60,62,65,67,69,72,73,75,77,80,84,85,94,95,96,98,105,108,110,114,116,117,118,119,121,122,123,124,125,126,128,130,133,135,136,137,138,139,140,143,144,146,149,153,155,156,157,158,159,160,161,162,163,164,167,168,169,170,175,178,179,182,183,186,187,188,189,191,195,197,200,208,215,217,222,228,230,233,236,245,264,274,287,290,293,297,300,312,316,329,333,342,354,375,376,386,398,402,407,459,470,474,480,481,483,490,496,542],something_els:42,somethingthat:358,sometim:[6,7,20,23,27,28,30,33,39,41,42,53,62,67,80,94,122,130,134,135,137,151,163,169,195,203,229,400],sometypeclass:[94,129],somewhat:[80,123,161,245],somewher:[0,10,12,41,42,48,55,89,96,116,118,134,144,146,174,197,201,217,222,236,335,392,394,470,496,548],somon:279,soon:[6,44,140,142,164,189,192,449,496],sophist:[20,54,69,121,147],sorl:123,sorri:[33,204,398],sort:[0,14,21,34,39,44,46,53,58,65,73,74,77,85,93,110,112,113,117,122,125,130,133,134,135,139,140,146,147,149,157,159,164,171,197,201,203,279,287,312,313,314,315,316,342,350,358,376,402,407,410,468,469,470,480,496,527,536,541,542,544,545,546],sort_kei:449,sort_stat:7,sortkei:7,sought:[208,214,236,392,394,402,468,470],soul:[143,170],sound:[0,33,47,64,65,80,89,98,104,117,118,140,141,144,155,162,167,170,200,201,353,444],sourc:[2,3,4,5,8,10,11,12,17,18,20,21,24,26,30,37,54,55,56,64,68,69,75,80,94,95,96,111,113,118,120,121,122,123,124,125,131,135,138,141,152,161,179,181,183,187,189,191,193,195,196,205,208,209,210,211,213,214,215,216,217,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,236,237,238,243,245,246,249,251,252,255,256,258,259,260,261,262,264,270,271,273,274,277,278,279,280,281,282,283,284,287,288,290,291,293,294,296,297,298,300,301,303,304,306,307,309,310,312,313,314,315,316,317,320,321,326,327,329,330,332,333,335,336,337,339,340,341,342,343,344,347,348,350,351,353,354,355,357,358,363,364,366,368,370,371,373,374,375,376,377,380,381,382,384,386,387,389,390,392,393,394,395,397,398,400,401,402,404,405,406,407,409,410,411,412,413,414,415,417,418,419,420,422,423,424,425,426,427,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,451,452,453,455,456,457,458,459,460,461,463,464,465,468,469,470,471,473,474,475,477,478,479,480,481,482,483,484,486,487,488,489,490,491,492,493,494,495,496,497,499,500,501,504,505,506,507,508,509,510,511,512,514,516,517,518,519,520,522,524,527,528,529,530,531,534,536,537,540,541,542,543,544,545,546,547,548],source_loc:[153,171,280,333,375,376,402],source_object:[234,255],sourceforg:[433,434,444,447],sourceurl:432,south:[0,80,96,98,116,144,158,159,170,174,222,335,341,342,452],south_north:170,south_room:98,southeast:[222,342],southern:170,southwest:[116,128,222,342],space:[0,14,19,23,25,30,31,33,36,41,42,51,58,60,72,75,76,80,94,95,98,116,119,124,125,126,128,134,135,136,147,152,153,159,161,169,170,172,176,201,214,217,222,227,228,229,230,233,234,297,306,316,341,342,353,354,375,402,464,470,473,474,479,480,482,483,496,500,525],spaceship:174,spaghetti:[15,480],spam:[19,42,55,78,147,154,199,201,227,463],spammi:[55,147,201,489],span:[18,56,69,495],spanish:[0,64],spare:[312,313,314,315,316,341],sparkly_mag:130,spars:76,spatial:170,spawen:[103,309],spawn:[0,7,19,24,26,35,51,85,89,103,116,117,120,126,131,138,142,173,205,220,222,296,309,313,314,336,339,341,342,343,404,405,406,407],spawn_alias:[116,342],spawn_link:[341,342],spawn_nod:341,spawner:[0,24,37,116,173,201,205,206,222,314,315,403,405,548],spawng:85,spd:179,speak:[17,19,57,70,95,96,104,117,142,171,172,176,178,228,279,354,402],speaker:[94,95,104,279,353,354],spear:[41,46],special:[0,1,6,10,13,14,15,16,17,19,20,21,23,25,28,33,37,39,45,46,48,50,51,52,53,54,57,60,64,65,67,68,70,90,92,94,116,117,119,122,125,128,130,131,132,133,134,135,136,137,139,141,147,153,156,162,164,166,168,170,175,179,199,201,209,211,213,216,228,231,277,279,280,284,300,314,315,320,333,344,354,375,376,390,395,398,402,424,425,448,452,468,470,474,480,495,509],specic:341,specif:[0,1,4,6,10,12,13,14,20,21,23,27,28,33,36,37,39,44,45,46,47,48,49,51,55,58,62,68,73,77,80,83,84,85,94,95,96,105,116,117,118,119,120,121,122,123,124,130,131,132,133,135,136,137,140,142,147,153,157,160,163,164,167,169,170,174,175,176,177,178,179,180,181,183,184,187,192,197,200,201,203,208,210,213,220,222,229,232,234,238,239,245,258,259,260,261,277,279,287,293,296,297,303,335,341,342,343,354,386,393,397,400,402,409,411,420,424,425,432,448,449,459,468,470,473,474,478,480,481,482,496,500,505,507,516,547,548],specifi:[0,10,14,19,20,21,28,31,34,41,44,46,47,53,55,56,57,58,60,65,67,68,80,81,82,85,87,91,94,95,103,110,111,115,116,119,128,129,133,134,136,137,144,149,151,152,155,157,159,162,163,169,170,175,179,185,192,195,197,198,199,201,213,214,222,229,236,237,245,246,248,258,260,261,279,290,296,303,309,313,314,315,320,333,335,341,342,347,354,358,384,386,390,397,398,402,405,406,407,411,431,457,468,471,473,474,476,479,480,483,484,490,491,492,494,496,499,500,516,519,536,544,547],specifici:280,specii:58,spectacular:6,spectrum:142,speech:[277,402],speed:[0,7,14,36,67,77,108,117,142,147,163,167,179,201,329,400,407,438,471,493],speedup:[201,406],spell:[17,41,46,57,111,112,154,161,205,206,239,285,295,315,390,407],spell_attack:315,spell_book:85,spell_conjur:315,spell_heal:315,spell_nam:315,spellbook:[296,297],spellcast:[0,112,141],spellfunc:315,spellnam:[297,315],spend:[37,112,137,142,143,157,169,312,313,314,315],spend_act:312,spend_item_us:314,spent:315,sphinx:119,spike:296,spiked_club:296,spin:[52,163,197,494],spine:315,spit:[135,147,149,296],splashscreen:255,splinter:138,split:[0,21,23,44,115,116,124,134,135,142,151,153,162,169,170,172,174,175,200,214,230,251,333,375,395,404,446,461,473,474,484],split_nested_attr:222,splittin:0,spoiler:113,spoken:[95,96,104,141,189,353,354,402],spoof:[187,505,512],sport:36,spot:[53,98,122,161,208,339,342],spread:[7,30,41,130,144,146,548],spring:[90,167,320,321],spring_desc:321,sprint:329,sprofil:420,spruce:58,spy:35,spyrit:184,sql:[3,48,67,122,137,160,161,202,455,548],sqlite3:[4,7,10,11,12,67,122,132,175,190,201,202,496],sqlite3_prep:458,sqlite:[11,67,183,458],sqrt:157,squar:[72,98,119,157],squeez:[67,119],src:[18,33,37,51,54,128,178,191,192,381],srcobj:[217,230],srun:424,srv:4,ssessionhandl:65,ssh:[0,44,62,65,122,124,153,197,201,202,203,205,206,416,428,459,460],ssh_enabl:201,ssh_interfac:[197,201],ssh_port:[197,201],ssh_protocol_class:201,sshd_config:199,sshfactori:440,sshprotocol:[201,440],sshserverfactori:440,sshuserauthserv:440,ssl:[0,65,68,122,182,187,201,202,205,206,209,227,416,428,432,445,460],ssl_context:[441,445],ssl_enabl:201,ssl_interfac:[197,201],ssl_port:[197,201],ssl_protocol_class:201,sslcertificatefil:182,sslcertificatekeyfil:182,sslciphersuit:182,sslengin:182,ssllab:182,sslprotocol:[182,201,441,445],ssltest:182,sslv3:187,sta:479,stab:[138,155,375],stabil:[0,140,233,353],stabl:[0,53,62,160,192],stabli:[8,415],stack:[0,15,21,51,125,139,140,144,174,215,216,402,406,461,480],stackedinlin:504,stackexchang:10,stackoverflow:10,stacktrac:406,staf:69,staff:[19,23,39,41,50,57,69,94,117,124,125,139,140,146,153,161,170,175,178,201,215,344,407,474],staff_contact_email:201,staffer:[50,124,142,201],staffernam:124,stage:[0,4,12,13,140,160,170,175,178,504,506,509],stagger:432,stai:[21,28,48,89,135,159,169,174,176,197,333,342],stale:[48,192,414],stale_timeout:414,stalker:542,stamina:[93,110,141,156,315,350,358],stamp:[20,44,48,51,201,208,211,220,232,401,410,452,457,470],stanc:[0,30,61,104,142,147,354,402,483,499],stand:[0,10,12,15,18,33,50,67,80,94,104,113,116,117,119,128,131,135,137,138,141,144,146,147,152,153,155,159,160,170,174,175,178,189,193,197,201,228,277,279,287,344,354,374,402,410,415,451,471,474,476,482,512],standalon:[187,199],standard:[14,17,19,20,27,30,49,53,60,61,65,68,70,87,88,94,96,114,116,117,122,124,130,133,135,147,151,152,156,161,162,169,173,176,181,182,187,193,195,199,201,205,208,219,255,274,344,347,354,402,440,442,447,464,468,473,482,484,494,497,521,548],stander:144,stanislav:75,stanza:[0,58,430],stapl:142,star:222,start:[0,2,5,6,7,9,10,11,12,13,15,16,17,19,20,21,23,27,28,30,32,33,34,36,39,41,42,44,45,48,51,52,53,55,56,59,60,62,63,64,65,67,69,75,77,85,89,90,91,92,96,104,109,110,112,113,116,117,118,119,121,122,123,125,128,130,131,132,133,135,136,139,140,141,142,143,144,146,147,149,151,152,153,155,157,158,159,161,163,164,165,169,170,173,174,175,177,178,181,183,185,186,187,189,191,193,194,195,196,197,198,199,200,201,202,208,209,214,215,221,222,227,228,229,230,231,232,233,236,245,251,261,277,278,279,281,287,296,300,312,313,314,315,316,320,333,341,342,347,350,353,354,358,368,370,373,374,376,384,390,402,404,406,409,410,411,412,413,414,415,417,420,422,424,425,430,431,432,433,437,438,439,444,445,451,452,457,458,461,465,469,473,474,475,476,478,480,481,482,483,484,489,496,525,548],start_:201,start_all_dummy_cli:451,start_attack:374,start_bot_sess:461,start_char:483,start_delai:[42,147,173,174,409,410,415,476],start_direct:342,start_driv:174,start_evennia:420,start_hunt:374,start_idl:374,start_index:227,start_lines1:420,start_lines2:420,start_loc:201,start_loc_on_grid:159,start_of_messag:506,start_olc:404,start_only_serv:420,start_open:279,start_ov:28,start_patrol:374,start_plugin_servic:[62,201],start_portal_interact:420,start_posit:279,start_read:279,start_rotat:279,start_serv:430,start_server_interact:420,start_sunrise_ev:163,start_text:390,start_turn:[312,316],start_xi:[116,341],startapp:[67,164,178,179],startclr:483,startcolor:30,startcoord:339,startedconnect:[417,431,432],starter:[124,125,138,151],starthour:153,startnod:[28,168,278,373,384,404,480],startnode_input:[28,278,373,384,404,480],startproduc:422,startservic:[423,465],startset:376,startswith:[31,34,222,473,494],starttupl:440,startup:[14,25,62,132,151,163,197,200,201,402,410,413,449,458,489,496],stat:[7,14,18,28,53,77,110,132,133,135,136,140,141,147,151,165,168,175,178,179,188,287,312,315,316,358,545,548],state:[0,6,12,14,15,16,21,23,26,27,28,33,42,44,51,60,84,89,106,117,121,122,132,133,136,138,142,147,160,174,176,192,196,203,205,206,208,213,215,216,219,226,234,236,239,275,276,277,279,280,283,284,293,312,326,368,374,376,407,410,412,413,415,420,440,468,478,480],state_001_start:89,state_chang:282,state_nam:282,state_unlog:226,statefultelnetprotocol:[443,451],statehandl:[280,282],statement:[6,15,16,20,21,28,53,54,67,75,121,130,135,159,162,172,368,474,495],statenam:[277,279,282],static_overrid:[0,51,73,132,151],static_root:[151,201],static_url:201,staticfil:[75,117,201],staticfiles_dir:201,staticfiles_ignore_pattern:201,staticfiles_storag:75,statict:222,statictrait:[110,358],station:[94,142,174],stationari:374,statist:[44,52,53,55,73,93,149,173,200,222,232,350,453,469,487],statu:[0,12,28,44,47,50,68,77,112,125,128,132,139,140,141,155,162,183,187,195,197,200,201,202,232,287,314,315,316,374,415,418,420,429,430,431,434,448,504],status:[125,139,140],status_cod:422,stderr:274,stdin_open:192,stdout:[0,192,274,420,489],steadi:122,steal:[35,168,229],stealth:142,steel:297,steer:174,step1:155,step2:155,step3:155,step:[1,4,8,9,11,15,16,19,21,23,27,28,41,67,69,80,94,95,96,116,117,119,123,125,127,139,142,143,146,152,155,157,162,164,165,167,168,169,174,175,176,179,182,183,192,193,195,201,202,221,227,245,297,316,339,341,342,357,376,415,424,436,447,451,452,461,470,474,477,478,480,481],step_sequ:335,stepnam:201,stepper:[116,342],stick:[17,23,28,70,85,119,220],still:[0,1,2,9,11,12,14,15,16,17,19,21,23,37,44,45,48,50,57,58,60,62,64,65,69,80,85,89,94,96,102,110,111,115,116,117,119,121,122,123,124,126,128,132,133,134,135,142,144,153,155,157,159,161,162,163,169,174,175,176,179,180,181,187,195,199,201,203,208,215,222,227,229,234,236,255,270,282,296,312,313,314,315,316,333,342,357,358,373,376,390,400,402,406,412,452,480,482,483,484,492,496,544],sting:170,stock:[121,143,168,381,536],stolen:[199,473],stone:[23,28,58,128,137,143],stop:[0,6,7,9,11,16,19,20,30,32,37,39,42,44,47,51,54,55,64,69,94,106,107,108,110,116,117,124,125,128,131,132,135,141,142,144,147,153,155,159,161,162,163,167,173,174,175,187,192,196,197,200,201,202,219,222,227,232,236,251,260,262,287,297,313,316,326,329,342,354,358,368,402,409,412,413,414,415,419,420,422,425,437,438,458,459,465,473,474,476,496,548],stop_driv:174,stop_evennia:420,stop_serv:430,stop_server_onli:420,stop_task:0,stopproduc:422,stopservic:[423,465],storag:[0,14,15,23,24,48,67,75,84,122,131,143,146,154,155,160,168,178,183,211,232,238,241,243,264,293,333,353,358,392,398,401,402,406,407,410,413,415,427,463,467,468,470,475,490,491],storage_modul:475,storagecontain:42,storagescript:42,store:[0,8,11,12,13,15,17,19,20,21,23,24,27,31,33,35,36,37,39,42,44,46,47,48,50,51,62,67,70,73,75,77,78,83,85,90,95,96,104,105,110,115,116,117,122,124,125,126,130,132,133,134,135,136,139,140,144,146,147,151,152,154,155,157,158,159,160,161,162,164,167,168,169,174,175,178,179,183,191,192,201,208,209,211,216,219,220,222,223,225,229,230,238,261,280,282,287,296,297,306,312,314,320,329,333,342,343,353,354,358,363,370,375,376,381,384,386,392,393,397,398,401,405,406,407,408,411,412,413,414,415,420,424,425,426,427,430,432,433,434,436,444,447,452,458,459,460,461,463,465,468,469,470,471,473,475,476,477,478,479,480,481,484,487,490,491,492,496,522,536,547],store_kei:[0,415,496],store_tru:[114,274],stored_obj:153,storekei:[168,415],storenam:168,storeroom:168,storeroom_exit:168,storeroom_kei:168,storeroom_key_nam:168,stori:[8,31,112,124,149,178],storm:154,storm_drain:85,storypag:149,storytel:175,stove:402,str:[0,14,20,27,28,30,32,34,35,42,48,54,62,70,80,91,94,96,98,110,116,117,126,133,134,135,141,146,153,157,162,167,169,178,179,201,205,208,209,210,213,214,215,216,217,222,227,229,236,237,238,245,251,258,259,260,261,264,274,278,279,280,282,284,287,290,293,296,300,303,312,314,315,316,320,326,333,341,342,343,344,350,353,354,357,358,366,368,373,376,381,384,386,390,392,393,394,395,398,400,401,402,405,406,407,409,411,412,413,415,417,418,420,424,425,426,427,429,430,431,432,433,435,438,439,440,443,444,445,448,449,451,457,458,459,460,461,463,464,465,468,469,470,471,473,474,475,476,478,479,480,481,482,483,489,490,491,492,493,494,495,496,497,499,500,505,514,516,519,528,542,544],straght:342,straight:[0,116,143,159,176,342,471],straightforward:[153,168,169,174,175],strang:[16,42,133,155,160,182,216,234,429],strange_bug:12,strangl:197,strap:142,strategi:[6,316],strattr:[14,468],strawberri:[114,274],stream:[9,429,433,459],streamlin:287,streeter:75,stren:135,strength:[14,33,110,132,133,141,142,146,147,161,162,179,357,358],stress:[7,339,451],stretch:[116,119,170],stribg:496,stricako:0,strict:[54,298,406,473,544],stricter:[143,406],strictli:[28,57,88,130,178,255,315,482],strike:[28,147,167,228,315,316,370],string1:496,string2:496,string:[0,6,7,8,10,14,15,17,19,20,21,23,24,25,27,28,30,31,34,36,37,39,41,46,47,48,50,51,55,57,58,64,65,67,68,70,72,80,85,91,98,104,105,111,115,117,119,121,124,125,126,128,130,132,133,134,136,137,141,142,144,147,153,155,159,161,162,167,170,178,179,183,185,188,194,197,200,201,205,206,208,209,210,211,213,214,217,220,222,227,228,229,230,231,232,233,236,237,238,245,254,255,264,279,284,287,290,293,296,303,309,312,314,333,341,343,344,353,354,358,368,373,374,381,382,384,386,387,390,393,394,396,397,398,400,401,402,405,406,407,409,410,413,415,420,422,425,429,432,440,443,444,446,449,452,457,459,461,464,468,469,470,471,472,473,474,476,477,478,479,481,482,483,489,490,492,493,494,495,496,497,499,500,505,512,519,544,547],string_from_modul:496,string_partial_match:[400,496],string_similar:496,string_suggest:496,stringproduc:422,stringreceiv:429,stringvalu:[110,358],strip:[0,23,28,30,31,32,60,69,80,94,119,126,134,144,152,162,166,168,172,175,201,214,222,229,230,231,279,297,354,400,407,425,440,443,444,473,474,478,480,483,494,496],strip_ansi:[166,473,495],strip_cmd_prefix:229,strip_control_sequ:496,strip_dir:7,strip_mxp:473,strip_raw_ansi:473,strip_raw_cod:473,strip_unsafe_input:[0,201,496],strip_unsafe_token:473,strippabl:480,stroll:329,strong:[33,60,143,175],strongest:33,strongli:[12,19,49,118,122,135,142,146,353],strr:386,struct:[160,201],structur:[0,14,23,28,30,31,39,41,53,65,68,75,117,118,121,122,124,126,130,131,132,135,142,151,159,160,164,178,179,195,196,201,222,227,236,341,343,354,395,402,406,407,444,449,471,477,480,517,533,545,548],strvalu:[0,14,468,469],stuck:[28,126,138,144],stuff:[10,14,21,28,30,33,39,41,42,44,45,53,92,110,114,117,118,119,124,125,126,127,134,135,136,137,138,140,141,142,144,146,149,152,155,159,161,168,187,201,216,233,274,300,357,358,415,458,529,548],stumbl:[8,143],stupid:[12,137,143],sturdi:479,stutter:69,style:[0,9,14,19,20,23,24,26,28,36,56,60,62,72,81,82,85,97,103,110,111,112,117,118,119,121,125,126,135,138,140,142,143,145,147,149,152,161,162,165,170,181,201,211,217,219,230,236,248,269,272,274,284,290,296,303,312,358,384,406,478,482,483,496,548],style_cod:495,style_foot:0,style_head:0,style_separ:0,styled_foot:217,styled_head:[23,217],styled_separ:217,styled_t:[0,23,217],sub:[4,14,19,30,31,41,42,51,53,68,69,102,104,119,124,130,132,147,161,164,186,196,197,201,207,212,227,229,235,239,245,246,270,274,339,354,391,393,395,396,399,407,408,416,467,472,473,483,495,502,506,538],sub_ansi:473,sub_app:178,sub_brightbg:473,sub_mxp_link:495,sub_mxp_url:495,sub_text:495,sub_to_channel:227,sub_xterm256:473,subbed_chan:227,subcategori:[229,395],subclass:[20,24,41,44,48,110,115,116,122,130,132,172,222,245,246,333,358,401,406,410,430,443,449,470,488,492,496,504,505,512],subcommand:[0,116],subcrib:19,subdir:10,subdirectori:10,subdomain:[182,197,199],subfold:[0,67,73,118,132,135,179],subhead:119,subject:[35,58,67,92,130,157,166,197,300,303,483,500],sublim:125,submarin:174,submenu:[9,245,246,404],submenu_class:245,submenu_obj:245,submiss:[91,384,536],submit:[18,53,91,117,118,178,199,234,384,536,540,542,547],submitcmd:384,submitt:0,submodul:444,subnegoti:444,subnet:[55,183,220],subpackag:[10,68],subprocess:[153,496],subreddit:181,subscrib:[11,19,23,33,47,55,120,122,162,177,201,209,227,236,237,238,270,314,415,431,462],subscribernam:227,subscript:[19,23,42,47,162,177,227,237,238,415,506],subscriptionhandl:[19,238],subsect:341,subsequ:[23,54,104,135,147,270,277,353,474,496],subsequent_ind:482,subset:[10,46,132,142,160,341],subsid:48,substanti:[75,296],substitut:[0,9,36,188,402,473,495],substr:[134,473,483],subsub:[31,229,233],subsubhead:119,subsubsubhead:119,subsubtop:[31,229,233],subsubtopicn:233,subsystem:[0,67,112,124,141,193,398],subtext:280,subtitl:18,subtop:[227,229,233,392,395],subtopic_separator_char:229,subtract:[30,110,117,168,357],subturn:147,subwai:94,subword:496,suc:85,succe:[85,125,139,140,147,273,296,347],succeed:[28,114,227,274,347],success:[0,85,130,141,142,146,147,175,179,208,227,236,287,296,312,313,314,315,316,347,368,375,376,398,406,414,420,424,470,478,490,496],success_messag:[296,297],success_teleport_msg:376,success_teleport_to:376,success_url:[540,542],successfuli:[103,296,309],successfulli:[4,5,23,54,103,136,144,154,170,203,208,296,297,298,309,333,375,402,414,420,432,464,470,547],suddenli:[1,8,470],sudo:[187,192,193,195,199],sue:141,suffic:[18,135,161],suffici:[67,75,197],suffix:[8,20,30,473,483,489,496,522],suggest:[0,1,28,29,31,48,74,75,110,113,118,119,121,140,141,142,143,153,183,197,214,229,287,297,354,358,376,395,402,496],suggestion_cutoff:229,suggestion_maxnum:[229,395],suggests:31,suid:201,suit:[0,2,5,112,122,143,155,171,233,496,545],suitabl:[12,23,30,33,36,42,46,50,65,68,109,116,117,118,121,122,125,126,130,135,152,153,195,197,210,215,227,279,296,341,398,454,461,476,480,483],sum:[116,118,125,131,167,169,216,280],summar:[96,117,118,126,181],summari:[50,61,94,95,96,118,125,127,175,181,202,203,245],summer:[90,141,142,320],sun:[116,163],sunris:163,sunt:29,super_long_text:481,superclass:504,superfici:[104,353],superflu:12,supersus:398,superus:[7,10,13,15,16,24,33,50,57,78,81,94,107,113,123,124,125,128,132,133,134,135,142,144,152,153,162,166,170,179,183,190,193,194,201,208,210,211,221,232,236,290,326,374,397,398,402,407,420,470,474,476,504],supplement:28,suppli:[7,14,20,28,30,31,32,34,41,42,44,46,47,49,54,58,68,88,90,94,110,118,134,142,147,162,175,189,201,211,216,217,220,222,227,232,233,237,245,251,255,320,341,350,358,400,401,402,406,410,415,431,461,470,478,483,484,493,496],supporst:447,support:[0,6,13,14,19,23,27,28,30,31,32,35,36,41,42,59,60,61,62,63,64,65,67,70,75,82,83,84,87,90,94,102,114,116,117,118,119,121,122,123,124,125,131,134,135,137,140,141,142,143,159,160,161,162,166,169,175,176,182,183,186,191,192,195,197,198,199,201,202,203,208,219,228,229,232,248,251,264,270,274,279,293,320,342,347,359,397,402,406,407,415,425,433,434,435,436,440,442,443,444,445,447,449,460,468,473,477,480,481,482,483,493,494,496,499,528,544,548],supports_set:[32,425],suppos:[1,23,28,41,49,65,96,130,208,245],supposedli:[104,187,353,444],suppress:[184,442],suppress_ga:[205,206,416,428],suppressga:442,supress:442,sur:181,sure:[0,4,6,8,9,10,11,12,13,14,15,16,17,19,21,23,28,31,33,36,37,39,41,42,44,46,47,48,49,50,51,53,55,57,64,67,70,74,76,89,96,98,104,110,111,116,119,123,124,125,128,130,133,134,135,138,140,141,142,143,144,146,147,151,152,153,154,155,156,159,161,162,163,166,169,170,172,175,176,178,179,180,182,183,187,188,189,190,191,192,193,195,196,197,201,203,208,209,215,216,217,219,222,230,237,245,262,279,290,296,315,342,353,358,363,374,375,376,382,386,390,393,397,398,402,406,407,412,420,424,430,432,437,458,464,465,466,468,469,470,471,473,475,477,480,487,492,493,496,505,512,514,537,545,547],surfac:[113,117,162,167,199,279],surpris:[14,33,80,135,157,164,169],surround:[21,23,30,72,98,113,116,147,170,220,284,342,374,492,496],surviv:[0,14,20,21,27,28,30,34,42,44,47,110,133,147,154,176,201,209,216,232,245,293,358,400,409,410,411,415,476,478,480,496],survivor:142,suscept:[20,160,398],suspect:178,suspend:[9,192,199],suspici:28,suspicion:178,svn:[0,69],swallow:[172,425,429],swam:[499,501],swap:[0,10,24,26,51,60,90,222,306,320,470,478],swap_autoind:478,swap_object:470,swap_typeclass:[48,208,470],swapcas:473,swapper:470,swedish:64,sweep:42,swiftli:54,swim:[499,501],swing:[23,134,154,155,167],switch1:72,switch2:72,switch_map:222,switch_opt:[219,220,221,222,227,228,229,230,232,270,320],sword:[14,23,46,49,67,77,85,94,110,117,125,128,130,137,138,141,142,144,146,154,168,205,206,239,279,285,287,295,296,298,354,358,400,407,493,496],swordbladerecip:297,swordguardrecip:297,swordhandlerecip:297,swordmanship:141,swordpommelrecip:297,swordrecip:[296,297],swordsmithingbaserecip:297,swum:[499,501],sylliaa:75,symbol:[9,16,17,23,69,115,116,130,159,191,201,234,333,336,339,341,342,344,354,390,481],symlink:[119,195],symlinkorcopi:75,symmetr:482,symmetri:10,sync:[12,44,52,65,122,201,341,342,343,409,438,443,458,459,460,461,468,477],sync_node_to_grid:342,sync_port:461,syncdata:[460,461],syncdb:10,synchron:[61,201,489],syntact:[398,496],syntax:[0,2,8,12,15,16,17,23,28,33,60,72,78,80,91,94,95,102,114,117,121,128,133,152,155,162,163,169,175,179,183,201,205,206,217,221,222,229,230,233,245,274,277,296,320,347,384,398,402,420,432,459,468,470,472,473,548],syntaxerror:135,sys:[201,544],sys_cmd:215,syscmdkei:[23,120,201,205],syscommand:[205,206,212,218,402],syslog:[76,380],sysroot:191,system:[0,1,3,4,7,8,10,11,12,13,14,19,20,21,24,26,32,34,35,36,39,41,42,44,45,46,47,48,53,54,57,61,62,64,65,67,69,72,74,76,80,81,86,89,95,96,101,111,113,116,117,118,119,120,121,122,123,124,125,127,131,132,133,135,138,139,144,145,151,152,154,155,157,158,159,160,163,166,168,170,174,176,177,179,181,183,187,190,191,193,195,197,199,200,201,203,205,206,209,211,212,213,215,217,218,219,221,222,229,231,233,235,236,237,238,241,245,255,259,260,261,262,264,279,287,288,290,296,297,298,302,303,306,309,311,312,313,314,315,316,333,339,340,341,342,344,353,354,355,373,376,380,381,382,390,391,392,394,397,398,401,402,404,406,407,408,420,443,449,457,467,470,474,476,479,480,483,489,500,504,522,548],system_command:23,systemat:157,systemctl:182,systemd:187,systemmultimatch:231,systemnoinput:231,systemnomatch:231,tab:[0,1,4,9,16,51,52,60,124,125,135,136,143,156,164,201,473,482,495],tabl:[0,8,11,15,17,48,58,60,61,68,70,78,94,95,96,98,120,122,123,125,130,137,162,164,167,170,179,201,217,219,227,229,232,384,444,463,473,479,481,482,483,493,496,548],table_char:479,table_format:219,table_lin:482,table_str:162,tablea:479,tableb:479,tablechar:[162,479],tableclos:[68,444],tablecol:482,tableopen:[68,444],tablet:56,tabletop:[112,117,146,162,181,312,316],tabsiz:[473,482],tabstop:495,tabularinlin:[505,512],tack:[128,216],tackl:118,tactic:[142,146,147],taction:147,tag:[0,15,19,23,24,26,28,31,32,35,36,39,41,42,48,50,51,52,53,55,60,61,64,67,68,74,82,83,85,92,103,104,116,117,124,125,126,128,130,135,151,161,162,165,179,184,192,201,205,206,210,217,219,220,221,222,227,228,229,230,231,232,233,234,236,237,238,245,248,255,259,270,273,274,277,279,280,287,290,296,297,300,303,306,309,312,313,314,315,316,320,326,329,335,342,344,347,354,358,368,370,373,374,375,376,380,384,386,390,393,394,395,397,400,402,406,407,409,435,449,451,457,467,469,470,473,476,478,479,480,481,482,493,494,496,502,503,504,506,508,509,510,516,519,548],tag_all_charact:280,tag_categori:512,tag_charact:280,tag_data:512,tag_kei:512,tag_typ:[512,516],tagadmin:512,tagcategori:[279,280,471],tagcount:130,taget_map_xyz:342,tagfield:83,tagform:512,tagformset:[505,512],taghandl:[0,46,48,471,512],taghandler_nam:471,taginlin:[504,506,508,509,510,512],tagkei:[397,400,471,476],taglin:18,tagnam:[46,407,471],tagproperti:[0,46,470,471],tagseri:519,tagshandl:519,tagstr:[407,471],tagtyp:[46,469,471,493,516],tagtypefilt:516,tail:[132,190,192,197,420,489],tail_log_fil:[420,489],tail_log_funct:489,tailor:[123,164,536],take:[0,1,6,9,10,15,16,17,18,19,20,21,23,28,29,30,32,33,39,41,44,48,54,56,57,60,62,64,65,69,76,80,85,86,89,91,94,95,96,98,105,111,113,116,117,118,119,121,122,123,124,125,127,128,132,133,134,135,138,139,141,142,143,144,145,147,148,149,150,151,152,153,154,155,159,160,161,162,163,164,165,168,169,170,174,175,176,178,179,181,191,197,199,200,208,209,214,215,219,231,236,238,251,254,277,282,284,287,290,296,309,312,313,314,315,316,320,326,329,335,339,354,368,373,374,376,380,384,386,390,398,407,440,448,451,460,461,469,470,473,478,479,480,481,483,490,494,495,496,497,500],taken:[1,21,122,136,147,160,173,174,175,190,199,228,255,312,380,393,402,440,464,473,476],takeov:462,tale:149,talk:[12,20,23,28,52,62,95,104,117,118,125,135,139,142,143,162,169,183,197,201,227,228,270,287,353,354,369,370,371,376,417,500,548],talker:121,talki:[19,122,142],talking_npc:[109,205,206,239,359,548],talkingcmdset:370,talkingnpc:[109,370],tall:[0,58,72,104,141,142,228,354],tallman:228,tan:297,tang:[126,297],tannin:297,tantal:16,tap:[76,117],target1:315,target2:315,target:[0,10,12,23,35,58,62,68,83,87,90,104,111,116,117,126,128,134,135,142,144,146,147,151,152,153,154,155,156,162,175,199,201,208,217,222,227,228,232,236,238,277,279,282,290,297,303,312,313,314,315,316,320,333,335,336,339,341,342,347,374,390,400,402,411,469,473,476,480,496],target_fire_damag:297,target_flag:279,target_loc:[280,329,333,376,402],target_map_xyz:[116,336,339,342],target_obj:398,target_path_styl:341,targetlist:303,task:[0,3,7,19,20,26,42,62,94,96,132,169,187,203,232,233,259,261,335,390,414,415,496],task_handl:[205,414,496],task_id:[232,261,414],taskhandl:[0,205,206,408,496],taskhandlertask:[414,496],tast:[80,138,143,178],tasti:296,tavern:[104,354],tax:[7,191],taylor:[0,181],tb_basic:[0,112,205,206,239,285,311,313,314,315,316],tb_equip:[0,112,205,206,239,285,311],tb_filenam:474,tb_item:[0,112,205,206,239,285,311],tb_iter:474,tb_magic:[0,112,205,206,239,285,311],tb_rang:[0,112,205,206,239,285,311],tbbasiccharact:[312,313,314,315,316],tbbasicturnhandl:[312,313,314,315,316],tbearmor:313,tbequipcharact:313,tbequipturnhandl:313,tbeweapon:313,tbitemscharact:314,tbitemscharactertest:314,tbitemsturnhandl:314,tbmagiccharact:315,tbmagicturnhandl:315,tbodi:179,tbrangecharact:316,tbrangeobject:316,tbrangeturnhandl:316,tchar:147,tcp:199,tcpserver:[62,465],teach:[117,143,165],team:[3,12,23,31,69,122,140,142,143],teamciti:3,teardown:[10,233,252,262,283,298,317,339,355,357,364,446,494,520],teardown_account:494,teardown_sess:494,teaser:197,tech:[125,127,139,143,145,148,150,181],technic:[24,28,46,48,54,57,58,60,62,64,65,69,116,122,123,124,128,140,143,157,183,197,205,206,239,287,359,367,468,548],techniqu:[142,144,155,473],technolog:142,tediou:[9,170],teenag:[152,199],tehom:[0,124,130],tehomcd:124,tel:[26,55,96,126,162,169,174,222,335],telepath:142,telephathi:19,teleport:[0,16,26,55,74,117,128,138,162,168,222,228,335,339,342,376,474],teleport_her:[0,222],teleportermaplink:[116,342],teleportmaplink:116,teleportroom:376,televis:21,tell:[0,1,5,6,8,11,12,14,15,21,23,26,28,30,32,33,35,36,39,41,42,54,55,57,64,65,67,73,76,80,85,87,89,94,95,96,104,126,128,132,133,134,135,136,142,146,147,149,152,155,159,162,164,169,171,174,177,179,182,183,191,192,197,199,201,203,209,219,227,228,238,342,347,354,376,402,420,438,449,461,478,545],telnet:[0,7,17,44,51,52,59,62,65,71,121,122,124,125,135,153,156,181,190,191,192,193,199,201,203,205,206,229,232,416,428,433,434,435,436,440,441,442,444,445,447,451,459,460],telnet_:197,telnet_en:201,telnet_hostnam:[185,201],telnet_interfac:[197,201],telnet_oob:[68,205,206,416,428],telnet_oob_en:201,telnet_port:[4,7,124,132,185,197,201,452],telnet_protocol_class:201,telnet_ssl:[205,206,416,428],telnetoob:444,telnetprotocol:[201,441,443,445],telnetserverfactori:443,temp:238,tempat:384,templ:[98,113],templat:[0,12,13,20,21,24,36,41,45,48,49,50,51,52,53,73,111,122,123,132,136,142,149,151,166,175,179,190,200,201,205,206,227,228,230,236,373,384,402,420,449,459,460,468,472,479,525,529,534,544,545,547],template2menu:[28,480],template_nam:[53,540,541,542,544,545,547],template_overrid:[0,51,73,123,132,151],template_regex:468,template_rend:45,template_str:[28,36],templates_overrid:73,templatestr:479,templatetag:[205,206,502],templateview:[53,545],tempmsg:[24,238],temporari:[10,12,14,24,138,201,203,216,238,264,312,415,480],temporarili:[1,8,10,19,21,28,42,52,110,128,133,141,197,227,232,261,296,309,358,368],tempt:[30,133,135,140,200,220],ten:[155,170,197],tend:[7,8,67,72,104,122,142,146,161,174,197,199,222,353,380],tens:[499,501],tent:170,term:[0,21,31,54,64,96,122,125,132,133,134,143,163,164,169,176,197,217,279,386,463],term_siz:[0,6,205],termin:[0,1,6,7,8,9,12,20,53,60,111,116,119,122,123,125,126,135,136,175,176,183,190,191,192,193,195,197,199,203,205,232,260,312,390,419,420,440,447,463,545],terminalrealm:440,terminals:440,terminalsessiontransport:440,terminalsessiontransport_getp:440,termux:202,terrain:[159,342],terribl:[314,433],territori:201,ters:42,test1:[14,32,482],test2010:126,test2028:126,test2:[14,23,32,60],test3:[14,482],test4:[14,482],test5:14,test6:14,test7:14,test8:14,test:[0,2,3,4,5,6,9,12,14,15,16,17,18,21,23,27,28,30,31,32,33,37,39,41,42,45,47,51,53,54,57,76,78,79,80,81,85,91,95,96,103,112,117,118,119,125,127,128,130,134,136,140,142,143,144,147,148,152,153,155,160,162,163,164,166,168,169,170,173,177,178,181,183,184,186,187,189,191,193,195,196,197,198,201,205,206,210,212,214,218,219,221,229,232,239,240,241,244,247,250,253,257,265,269,272,275,276,285,286,289,290,292,295,296,297,299,302,305,308,311,312,313,314,315,316,318,319,320,322,325,328,331,334,341,345,346,347,349,352,356,359,362,363,369,372,373,378,379,384,385,388,390,406,416,422,425,428,429,449,450,451,455,470,472,473,474,476,480,485,494,496,498,502,515,526,535,544,548],test_:10,test_about:233,test_accept:262,test_access:233,test_active_task:233,test_add:[262,294],test_add_choice_without_kei:246,test_add_float:294,test_add_multi:294,test_add_neg:294,test_add_non:294,test_add_overwrit:294,test_add_trait:357,test_add_valid:262,test_al:357,test_all_com:271,test_all_st:283,test_alternative_cal:10,test_amp_in:446,test_amp_out:446,test_at_repeat:364,test_attribute_command:233,test_audit:382,test_auto_creating_bucket:243,test_auto_creating_bucket_with_acl:243,test_available_languag:355,test_ban:233,test_base_pars:283,test_base_search:283,test_base_st:283,test_batch_command:233,test_bold:446,test_boundaries__bigmod:357,test_boundaries__change_boundari:357,test_boundaries__dis:357,test_boundaries__invers:357,test_boundaries__minmax:357,test_bridgeroom:377,test_build:339,test_c_creates_button:456,test_c_creates_obj:456,test_c_dig:456,test_c_examin:456,test_c_help:456,test_c_login:456,test_c_login_no_dig:456,test_c_logout:456,test_c_look:456,test_c_mov:456,test_c_move_:456,test_c_move_n:456,test_c_soci:456,test_cach:357,test_cal:[233,262],test_callback:246,test_cancel:233,test_cas:10,test_cboot:271,test_cdesc:271,test_cdestroi:271,test_channel__al:233,test_channel__alias__unalia:233,test_channel__ban__unban:233,test_channel__boot:233,test_channel__cr:233,test_channel__desc:233,test_channel__destroi:233,test_channel__histori:233,test_channel__list:233,test_channel__lock:233,test_channel__msg:233,test_channel__mut:233,test_channel__noarg:233,test_channel__sub:233,test_channel__unlock:233,test_channel__unmut:233,test_channel__unsub:233,test_channel__who:233,test_char_cr:233,test_char_delet:233,test_clean_nam:243,test_clean_name_norm:243,test_clean_name_trailing_slash:243,test_clean_name_window:243,test_cleanup:294,test_cleanup_doesnt_delete_anyth:294,test_clear:[294,357],test_climb:377,test_clock:271,test_clothingcommand:291,test_clothingfunct:291,test_cmd_armpuzzl:310,test_cmd_puzzl:310,test_cmd_us:310,test_cmddic:348,test_cmdextendedlook:321,test_cmdgametim:321,test_cmdmultidesc:307,test_cmdopen:327,test_cmdset_puzzl:310,test_cmdsetdetail:321,test_cmdtrad:288,test_cmdtradehelp:288,test_cmdtutori:377,test_color:446,test_color_test:233,test_command:355,test_comparisons_numer:357,test_comparisons_trait:357,test_compress_content_len:243,test_connect:256,test_connection_thread:243,test_content_typ:243,test_copi:233,test_craft__nocons__failur:298,test_craft__notools__failur:298,test_craft__success:298,test_craft_cons_excess__fail:298,test_craft_cons_excess__sucess:298,test_craft_cons_order__fail:298,test_craft_hook__fail:298,test_craft_hook__succe:298,test_craft_missing_cons__always_consume__fail:298,test_craft_missing_cons__fail:298,test_craft_missing_tool__fail:298,test_craft_sword:298,test_craft_tool_excess__fail:298,test_craft_tool_excess__sucess:298,test_craft_tool_order__fail:298,test_craft_wrong_tool__fail:298,test_creat:[233,520],test_create_wilderness_custom_nam:332,test_create_wilderness_default_nam:332,test_crumblingwal:377,test_curly_markup:249,test_curr:357,test_custom_gametim:252,test_cwho:271,test_darkroom:377,test_data_in:446,test_data_out:446,test_db_path:201,test_del:262,test_delet:[357,520],test_desc:[233,357],test_desc_default_to_room:233,test_destroi:233,test_destroy_sequ:233,test_dig:233,test_do_nested_lookup:233,test_do_task:233,test_e2:310,test_e2e_accumul:310,test_e2e_interchangeable_parts_and_result:310,test_echo:494,test_edit:262,test_edit_valid:262,test_emit:233,test_emot:283,test_empti:294,test_empty_desc:233,test_enter_wild:332,test_enter_wilderness_custom_coordin:332,test_enter_wilderness_custom_nam:332,test_error_format:298,test_examin:233,test_exit:[262,330],test_exit_command:233,test_extend:294,test_extend_float:294,test_extend_neg:294,test_extend_non:294,test_extended_path_tracking__horizont:339,test_extended_path_tracking__vert:339,test_failur:273,test_faulty_languag:355,test_field_funct:389,test_find:233,test_floordiv:357,test_focu:283,test_focus_interact:283,test_forc:233,test_func_name_manipul:233,test_gametime_to_realtim:252,test_gendercharact:301,test_gener:387,test_general_context:531,test_generated_url_is_encod:243,test_get:[357,537],test_get_and_drop:233,test_get_authent:537,test_get_dis:537,test_get_new_coordin:332,test_get_sdesc:355,test_get_shortest_path:339,test_get_visual_range__nodes__charact:339,test_get_visual_range__nodes__character_0:339,test_get_visual_range__nodes__character_1:339,test_get_visual_range__nodes__character_2:339,test_get_visual_range__nodes__character_3:339,test_get_visual_range__nodes__character_4:339,test_get_visual_range__nodes__character_5:339,test_get_visual_range__nodes__character_6:339,test_get_visual_range__nodes__character_7:339,test_get_visual_range__nodes__character_8:339,test_get_visual_range__nodes__character_9:339,test_get_visual_range__scan:339,test_get_visual_range__scan_0:339,test_get_visual_range__scan_1:339,test_get_visual_range__scan_2:339,test_get_visual_range__scan_3:339,test_get_visual_range__scan__charact:339,test_get_visual_range__scan__character_0:339,test_get_visual_range__scan__character_1:339,test_get_visual_range__scan__character_2:339,test_get_visual_range__scan__character_3:339,test_get_visual_range_with_path:339,test_get_visual_range_with_path_0:339,test_get_visual_range_with_path_1:339,test_get_visual_range_with_path_2:339,test_get_visual_range_with_path_3:339,test_get_visual_range_with_path_4:339,test_giv:233,test_go_hom:233,test_grid_cr:339,test_grid_creation_0:339,test_grid_creation_1:339,test_grid_pathfind:339,test_grid_pathfind_0:339,test_grid_pathfind_1:339,test_grid_vis:339,test_grid_visibility_0:339,test_grid_visibility_1:339,test_handl:262,test_healthbar:351,test_hello_world:136,test_help:233,test_hom:233,test_ic:233,test_ic__nonaccess:233,test_ic__other_object:233,test_ident:446,test_idl:456,test_info_command:233,test_init:357,test_interrupt_command:233,test_introroom:377,test_invalid_access:537,test_inventori:233,test_ital:446,test_large_msg:446,test_lightsourc:377,test_list:[262,520],test_list_cmdset:233,test_load_recip:298,test_location_leading_slash:243,test_location_search:10,test_lock:[233,262],test_lock_with_perm:537,test_locked_entri:537,test_look:[233,283],test_look_no_loc:233,test_look_nonexist:233,test_lspuzzlerecipes_lsarmedpuzzl:310,test_mail:304,test_mapping_with_opt:501,test_mapping_with_options_00_y:501,test_mapping_with_options_01_y:501,test_mapping_with_options_02_i:501,test_mapping_with_options_03_i:501,test_mapping_with_options_04_i:501,test_mapping_with_options_05_m:501,test_mapping_with_options_06_your:501,test_mapping_with_options_07_our:501,test_mapping_with_options_08_yourself:501,test_mapping_with_options_09_yourself:501,test_mapping_with_options_10_yourself:501,test_mapping_with_options_11_yourself:501,test_mapping_with_options_12_yourselv:501,test_mapping_with_options_13_h:501,test_mapping_with_options_14_h:501,test_mapping_with_options_15_h:501,test_mapping_with_options_16_h:501,test_mapping_with_options_17_h:501,test_mapping_with_options_18_their:501,test_mapping_with_options_19_their:501,test_mapping_with_options_20_itself:501,test_mapping_with_options_21_themselv:501,test_mapping_with_options_22_herself:501,test_mask:382,test_memplot:456,test_menu:[111,390],test_messag:457,test_misformed_command:233,test_mob:377,test_msg:298,test_mudlet_ttyp:446,test_mul_trait:357,test_multi_level:246,test_multimatch:233,test_mux_command:233,test_mux_markup:249,test_mycmd_char:10,test_mycmd_room:10,test_nam:233,test_nested_attribute_command:233,test_new_task_waiting_input:233,test_nick:233,test_nick_list:233,test_no_hom:233,test_no_input:233,test_no_task:233,test_node_from_coord:339,test_obelisk:377,test_obfuscate_languag:355,test_obfuscate_whisp:355,test_object:233,test_object_cach:537,test_object_search_charact:10,test_ooc:233,test_ooc_look:233,test_opt:233,test_outroroom:377,test_override_class_vari:243,test_override_init_argu:243,test_overwrit:283,test_pag:233,test_parse_for_perspect:283,test_parse_for_th:283,test_parse_languag:355,test_password:233,test_path:339,test_paths_0:339,test_paths_1:339,test_pause_unpaus:233,test_percentag:357,test_perm:233,test_persistent_task:233,test_pi:233,test_pickle_with_bucket:243,test_pickle_without_bucket:243,test_plain_ansi:446,test_pos:233,test_pos_shortcut:357,test_pre_craft:298,test_pre_craft_fail:298,test_puzzleedit:310,test_puzzleedit_add_remove_parts_result:310,test_quel:233,test_queri:[205,206,416,450],test_quit:[233,246,256],test_read:377,test_real_seconds_until:252,test_realtime_to_gametim:252,test_recog_handl:355,test_remov:[233,357],test_repr:357,test_reset:294,test_reset_non_exist:294,test_resourc:[10,201,205,206,233,246,249,252,256,262,271,273,283,288,291,294,298,301,304,307,310,317,321,327,330,332,339,348,351,355,357,364,371,377,382,387,389,446,472,520,537],test_responce_of_y:233,test_retriev:520,test_return_appear:321,test_return_detail:321,test_return_valu:10,test_roll_dic:348,test_room_cr:332,test_room_method:283,test_rpsearch:355,test_runn:201,test_sai:233,test_schedul:252,test_script:233,test_script_multi_delet:233,test_sdesc_handl:355,test_seed__success:298,test_send_case_sensitive_emot:355,test_send_emot:355,test_send_random_messag:364,test_server_load:233,test_sess:233,test_set:357,test_set_attribut:520,test_set_focu:283,test_set_help:233,test_set_hom:233,test_set_obj_alia:233,test_setattr:246,test_setgend:301,test_shortest_path:339,test_shortest_path_00:339,test_shortest_path_01:339,test_shortest_path_02:339,test_shortest_path_03:339,test_shortest_path_04:339,test_shortest_path_05:339,test_shortest_path_06:339,test_shortest_path_07:339,test_shortest_path_08:339,test_shortest_path_09:339,test_shortest_path_0:339,test_shortest_path_10:339,test_shortest_path_1:339,test_shortest_path_2:339,test_shortest_path_3:339,test_shortest_path_4:339,test_shortest_path_5:339,test_shortest_path_6:339,test_shortest_path_7:339,test_shortest_path_8:339,test_shortest_path_9:339,test_simple_default:233,test_spawn:[233,339],test_special_charact:243,test_speech:283,test_split_nested_attr:233,test_start:262,test_storage_delet:243,test_storage_exist:243,test_storage_exists_doesnt_create_bucket:243,test_storage_exists_fals:243,test_storage_listdir_bas:243,test_storage_listdir_subdir:243,test_storage_mtim:243,test_storage_open_no_overwrite_exist:243,test_storage_open_no_writ:243,test_storage_open_writ:243,test_storage_s:243,test_storage_sav:243,test_storage_save_gzip:243,test_storage_save_gzip_twic:243,test_storage_save_with_acl:243,test_storage_url:243,test_storage_url_slash:243,test_storage_write_beyond_buffer_s:243,test_str_output:339,test_strip_signing_paramet:243,test_sub_trait:357,test_submenu:246,test_subtopic_fetch:233,test_subtopic_fetch_00_test:233,test_subtopic_fetch_01_test_creating_extra_stuff:233,test_subtopic_fetch_02_test_cr:233,test_subtopic_fetch_03_test_extra:233,test_subtopic_fetch_04_test_extra_subsubtop:233,test_subtopic_fetch_05_test_creating_extra_subsub:233,test_subtopic_fetch_06_test_something_els:233,test_subtopic_fetch_07_test_mor:233,test_subtopic_fetch_08_test_more_second_mor:233,test_subtopic_fetch_09_test_more_mor:233,test_subtopic_fetch_10_test_more_second_more_again:233,test_subtopic_fetch_11_test_more_second_third:233,test_success:273,test_tag:233,test_talkingnpc:371,test_task_complete_waiting_input:233,test_tbbasicfunc:317,test_tbequipfunc:317,test_tbitemsfunc:317,test_tbrangefunc:317,test_teleport:233,test_teleportroom:377,test_time_to_tupl:252,test_timer_r:357,test_timer_ratetarget:357,test_toggle_com:271,test_tradehandler_bas:288,test_tradehandler_join:288,test_tradehandler_off:288,test_trait_db_connect:357,test_trait_getset:357,test_traitfield:357,test_tree_funct:389,test_tunnel:233,test_tunnel_exit_typeclass:233,test_turnbattlecmd:317,test_turnbattleequipcmd:317,test_turnbattleitemcmd:317,test_turnbattlemagiccmd:317,test_turnbattlerangecmd:317,test_tutorialobj:377,test_typeclass:233,test_unconnectedhelp:256,test_unconnectedlook:256,test_upd:520,test_valid_access:537,test_valid_access_multisession_0:537,test_valid_access_multisession_2:537,test_valid_char:537,test_validate_input__fail:357,test_validate_input__valid:357,test_valu:357,test_verb_actor_stance_compon:501,test_verb_actor_stance_components_00_hav:501,test_verb_actor_stance_components_01_swim:501,test_verb_actor_stance_components_02_g:501,test_verb_actor_stance_components_03_given:501,test_verb_actor_stance_components_04_am:501,test_verb_actor_stance_components_05_do:501,test_verb_actor_stance_components_06_ar:501,test_verb_actor_stance_components_07_had:501,test_verb_actor_stance_components_08_grin:501,test_verb_actor_stance_components_09_smil:501,test_verb_actor_stance_components_10_vex:501,test_verb_actor_stance_components_11_thrust:501,test_verb_conjug:501,test_verb_conjugate_0_inf:501,test_verb_conjugate_1_inf:501,test_verb_conjugate_2_inf:501,test_verb_conjugate_3_inf:501,test_verb_conjugate_4_inf:501,test_verb_conjugate_5_inf:501,test_verb_conjugate_6_inf:501,test_verb_conjugate_7_2sgpr:501,test_verb_conjugate_8_3sgpr:501,test_verb_get_all_tens:501,test_verb_infinit:501,test_verb_infinitive_0_hav:501,test_verb_infinitive_1_swim:501,test_verb_infinitive_2_g:501,test_verb_infinitive_3_given:501,test_verb_infinitive_4_am:501,test_verb_infinitive_5_do:501,test_verb_infinitive_6_ar:501,test_verb_is_past:501,test_verb_is_past_0_1st:501,test_verb_is_past_1_1st:501,test_verb_is_past_2_1st:501,test_verb_is_past_3_1st:501,test_verb_is_past_4_1st:501,test_verb_is_past_5_1st:501,test_verb_is_past_6_1st:501,test_verb_is_past_7_2nd:501,test_verb_is_past_participl:501,test_verb_is_past_participle_0_hav:501,test_verb_is_past_participle_1_swim:501,test_verb_is_past_participle_2_g:501,test_verb_is_past_participle_3_given:501,test_verb_is_past_participle_4_am:501,test_verb_is_past_participle_5_do:501,test_verb_is_past_participle_6_ar:501,test_verb_is_past_participle_7_had:501,test_verb_is_pres:501,test_verb_is_present_0_1st:501,test_verb_is_present_1_1st:501,test_verb_is_present_2_1st:501,test_verb_is_present_3_1st:501,test_verb_is_present_4_1st:501,test_verb_is_present_5_1st:501,test_verb_is_present_6_1st:501,test_verb_is_present_7_1st:501,test_verb_is_present_participl:501,test_verb_is_present_participle_0_hav:501,test_verb_is_present_participle_1_swim:501,test_verb_is_present_participle_2_g:501,test_verb_is_present_participle_3_given:501,test_verb_is_present_participle_4_am:501,test_verb_is_present_participle_5_do:501,test_verb_is_present_participle_6_ar:501,test_verb_is_tens:501,test_verb_is_tense_0_inf:501,test_verb_is_tense_1_inf:501,test_verb_is_tense_2_inf:501,test_verb_is_tense_3_inf:501,test_verb_is_tense_4_inf:501,test_verb_is_tense_5_inf:501,test_verb_is_tense_6_inf:501,test_verb_past:501,test_verb_past_0_1st:501,test_verb_past_1_1st:501,test_verb_past_2_1st:501,test_verb_past_3_1st:501,test_verb_past_4_1st:501,test_verb_past_5_1st:501,test_verb_past_6_1st:501,test_verb_past_7_2nd:501,test_verb_past_participl:501,test_verb_past_participle_0_hav:501,test_verb_past_participle_1_swim:501,test_verb_past_participle_2_g:501,test_verb_past_participle_3_given:501,test_verb_past_participle_4_am:501,test_verb_past_participle_5_do:501,test_verb_past_participle_6_ar:501,test_verb_pres:501,test_verb_present_0_1st:501,test_verb_present_1_1st:501,test_verb_present_2_1st:501,test_verb_present_3_1st:501,test_verb_present_4_1st:501,test_verb_present_5_1st:501,test_verb_present_6_1st:501,test_verb_present_7_2nd:501,test_verb_present_8_3rd:501,test_verb_present_participl:501,test_verb_present_participle_0_hav:501,test_verb_present_participle_1_swim:501,test_verb_present_participle_2_g:501,test_verb_present_participle_3_given:501,test_verb_present_participle_4_am:501,test_verb_present_participle_5_do:501,test_verb_present_participle_6_ar:501,test_verb_tens:501,test_verb_tense_0_hav:501,test_verb_tense_1_swim:501,test_verb_tense_2_g:501,test_verb_tense_3_given:501,test_verb_tense_4_am:501,test_verb_tense_5_do:501,test_verb_tense_6_ar:501,test_view:537,test_wal:233,test_weapon:377,test_weaponrack:377,test_weatherroom:377,test_whisp:233,test_who:233,test_wilderness_correct_exit:332,test_without_migr:10,test_wrong_func_nam:233,testaccount2:10,testaccount:[10,233],testadmin:233,testampserv:446,testapp:178,testbart:288,testbatchprocess:233,testbodyfunct:364,testbuild:233,testbuildexamplegrid:339,testbuildingmenu:246,testcas:[10,243,339,377,446,456,488,494,501,531],testclothingcmd:291,testclothingfunc:291,testcmdcallback:262,testcmdtask:233,testcolormarkup:249,testcomm:233,testcommand:28,testcommschannel:233,testcooldown:294,testcraftcommand:298,testcraftingrecip:298,testcraftingrecipebas:298,testcraftsword:298,testcraftutil:298,testcustomgametim:252,testdefaultcallback:262,testdic:348,testdummyrunnerset:456,testemaillogin:256,tester:[10,130,197,438],testevenniarestapi:520,testeventhandl:262,testevscaperoom:283,testevscaperoomcommand:283,testextendedroom:321,testfieldfillfunc:389,testform:479,testgendersub:301,testgener:233,testgeneralcontext:531,testhealthbar:351,testhelp:233,testid:23,testinterruptcommand:233,testirc:446,testlanguag:355,testlegacymuxcomm:271,testmail:304,testmap10:339,testmap11:339,testmap1:339,testmap2:339,testmap3:339,testmap4:339,testmap5:339,testmap6:339,testmap7:339,testmap8:339,testmap9:339,testmapstresstest:339,testmemplot:456,testmenu:[384,480],testmixedrefer:488,testmod:461,testmultidesc:307,testmymodel:10,testnnmain:233,testnumerictraitoper:357,testobj:[10,282,284],testobject:10,testobjectdelet:488,testok:169,testpronounmap:501,testpuzzl:310,testrandomstringgener:387,testregularrefer:488,testrenam:126,testrpsystem:355,testrpsystemcommand:355,testrunn:201,testserv:0,testset:10,testsharedmemoryrefer:488,testsimpledoor:327,testslowexit:330,teststat:283,testsystem:233,testsystemcommand:233,testtabl:126,testtalkingnpc:371,testtelnet:446,testtrait:357,testtraitcount:357,testtraitcountertim:357,testtraitfield:357,testtraitgaug:357,testtraitgaugetim:357,testtraitstat:357,testtreeselectfunc:389,testturnbattlebasiccmd:317,testturnbattlebasicfunc:317,testturnbattleequipcmd:317,testturnbattleequipfunc:317,testturnbattleitemscmd:317,testturnbattleitemsfunc:317,testturnbattlemagiccmd:317,testturnbattlemagicfunc:317,testturnbattlerangecmd:317,testturnbattlerangefunc:317,testtutorialworldmob:377,testtutorialworldobject:377,testtutorialworldroom:377,testunconnectedcommand:233,testunixcommand:273,testutil:283,testverbconjug:501,testview:53,testwebsocket:446,testwild:332,testxyzgrid:339,testxyzgridtransit:339,text2html:[0,205,206,472],text:[0,1,8,12,13,14,15,16,17,18,19,23,24,25,26,27,29,30,31,33,35,36,39,41,42,46,51,53,54,58,59,60,62,64,65,67,68,69,80,89,90,91,92,93,95,96,104,110,116,117,118,120,121,124,125,127,128,132,134,136,138,139,141,142,143,144,146,150,152,156,160,161,162,166,168,169,170,172,174,175,176,178,180,181,184,187,189,192,193,195,197,198,201,203,208,209,214,217,219,220,221,222,227,228,229,230,231,232,233,234,237,238,245,254,255,259,261,270,273,274,277,278,279,284,287,290,296,297,300,303,306,309,312,313,314,315,316,320,326,329,335,347,350,353,354,358,366,368,370,374,375,376,381,384,390,392,394,395,398,402,404,407,410,417,418,425,431,432,435,438,439,440,443,444,448,449,451,459,460,461,464,465,468,469,471,473,474,476,478,479,480,481,482,483,490,493,494,495,496,497,504,506,510,536,548],text_:119,text_color:350,text_descript:[110,358],text_exit:[80,245],text_single_exit:80,textarea:[492,536],textbook:62,textbox:536,textfield:[67,178],textn:233,textstr:32,texttag:[166,176],texttohtmlpars:495,textual:157,textwrap:[0,482],textwrapp:482,than:[0,1,6,7,8,9,10,11,12,13,14,15,16,19,21,23,24,25,28,29,30,31,33,37,39,41,42,44,46,47,48,51,53,56,57,58,60,64,67,70,72,73,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,121,122,123,125,126,130,132,133,134,135,137,138,139,140,141,143,144,146,147,153,155,157,159,161,162,163,164,167,169,175,176,179,182,183,185,187,188,197,199,200,201,203,208,211,214,215,216,219,220,221,222,223,229,230,232,233,245,251,254,261,270,274,279,282,287,296,312,313,314,315,316,329,337,341,342,343,344,350,353,354,358,375,386,390,397,400,402,404,406,420,446,461,466,468,469,470,471,473,474,480,481,482,483,487,489,491,492,493,496,505,512,525,545],thank:[28,123,179,303,465],thankfulli:178,the_answ:137,the_one_r:137,thead:179,theathr:31,theatr:31,thei:[0,6,7,8,9,10,12,13,14,15,16,17,18,19,20,21,23,28,30,31,33,37,39,40,41,42,44,45,46,48,50,51,52,53,54,55,56,57,58,60,62,63,64,65,67,68,69,70,74,75,77,78,80,83,84,85,90,92,94,95,96,98,104,107,110,114,115,116,117,119,121,122,123,124,125,126,128,129,130,132,133,134,135,136,137,139,140,141,143,144,146,147,151,152,153,155,156,157,158,160,161,162,164,165,166,168,169,170,172,174,175,176,177,179,180,182,183,191,197,199,201,203,208,215,216,219,221,222,227,228,230,231,232,236,245,254,260,270,274,279,287,290,293,296,297,300,312,313,314,315,316,320,333,341,342,344,347,353,354,358,375,376,392,397,398,401,402,406,407,408,410,412,413,415,420,440,441,443,444,445,449,452,458,459,460,461,463,468,473,474,475,477,480,482,483,496,497,500,505,512,517,519,522,536,542,546,547],theihr:14,theirs:[58,92,147,300,483,500,501],them:[0,1,7,8,9,10,11,12,13,14,15,16,17,19,20,21,23,25,27,28,30,31,32,33,35,36,37,39,41,42,44,46,47,48,50,51,53,54,55,56,58,60,62,63,64,65,67,68,70,73,74,75,76,80,82,83,85,89,90,92,93,94,95,96,103,104,110,111,116,117,118,119,121,122,123,124,125,126,130,132,133,134,135,136,137,138,139,140,141,143,144,146,147,150,151,152,154,155,156,157,158,161,162,163,164,167,168,169,170,172,174,175,176,178,179,183,185,188,190,191,197,198,199,200,201,203,208,213,214,215,217,219,221,222,227,229,230,233,236,237,248,254,258,260,274,280,290,296,297,300,309,312,313,314,315,316,320,341,350,354,358,368,374,376,384,386,390,393,398,402,407,412,415,420,438,440,443,451,455,458,459,461,468,470,471,473,474,476,480,483,492,494,495,500,505,512,514,519,527,542,545,547],themat:140,theme:[0,53,132,140,142,179],themself:314,themselv:[8,14,19,21,23,28,33,37,45,48,57,58,70,74,89,94,96,104,110,117,119,121,132,141,142,144,146,152,154,159,162,164,166,168,174,175,177,189,201,222,279,342,354,402,410,413,420,469,471,483,492,500,501],theoret:[21,69,116,139,344],theori:[6,21,161,165,175,181,208,215,548],thereaft:36,therefor:[42,96,116,138,159,163,169,221,245,258,279],therein:[17,23,219,230,232,234,277,309,320,376],thereof:[354,402],thess:400,thet:132,thi:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19,20,21,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,144,145,146,147,148,149,151,152,153,154,155,156,157,158,159,160,161,162,163,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,245,246,248,249,251,254,255,258,259,260,261,264,270,274,277,278,279,280,281,282,284,287,290,293,296,297,298,300,303,306,309,312,313,314,315,316,320,326,329,333,335,336,337,338,339,341,342,343,344,347,350,353,354,357,358,363,366,368,370,373,374,375,376,380,381,384,386,390,391,392,393,394,395,396,397,398,399,400,401,402,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,422,424,425,426,427,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,447,448,449,451,452,453,454,455,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,487,488,489,490,491,492,493,494,495,496,497,499,500,502,504,505,506,508,509,510,511,512,514,516,517,519,522,525,527,528,529,533,534,536,538,540,541,542,543,544,545,546,547,548],thie:28,thieveri:229,thin:[54,80,81,155,170,290,489],thing:[0,1,2,5,7,10,11,12,14,15,17,19,20,21,23,27,28,30,31,32,37,39,41,44,45,47,48,51,53,54,55,57,58,60,62,64,65,67,69,72,73,76,77,80,85,94,95,96,104,110,111,113,114,116,117,118,121,122,123,124,126,127,128,130,131,132,134,135,138,139,140,141,143,144,145,146,147,149,151,152,153,154,155,156,157,159,162,164,167,168,169,170,172,174,175,176,177,178,179,181,182,188,191,192,193,195,197,199,200,201,203,208,215,216,222,245,261,274,279,284,287,296,297,316,320,353,354,358,368,373,376,390,398,401,402,429,433,465,468,470,473,474,482,483,492,505,512,514,545,547],things_styl:284,think:[1,8,12,14,21,35,39,41,46,47,52,53,60,73,94,95,113,116,117,118,121,125,126,127,128,135,137,139,140,144,145,146,148,150,155,163,166,169,170,181,187,461,545],third:[0,6,11,14,20,28,30,59,94,96,118,119,122,124,135,143,144,157,164,174,179,182,183,189,191,197,201,222,233,279,473,480,483,548],third_person:284,thirdnod:28,this_is_provided_by_amazon:75,this_sign:462,thoma:[36,55,220],thorn:[37,137],thorough:1,those:[0,3,4,5,10,11,12,13,14,15,16,17,19,21,23,25,28,30,33,37,39,41,44,48,53,57,58,60,67,68,73,75,76,83,98,104,110,111,112,116,117,121,122,123,124,125,126,128,130,133,134,135,137,138,139,140,141,143,144,146,149,151,152,154,156,160,161,162,163,165,166,168,170,172,174,175,180,181,183,188,197,199,201,203,216,217,219,222,227,228,229,233,237,245,277,284,296,297,312,354,358,368,375,376,381,390,398,406,407,409,414,443,448,451,469,470,480,481,482,490,491,494,496,519,536,541,542,544],though:[1,11,13,14,15,16,17,20,21,28,37,50,54,55,64,72,79,80,94,102,110,116,117,118,122,126,129,131,133,135,138,141,142,143,144,147,156,157,161,163,164,166,169,174,175,176,183,187,189,191,193,197,199,200,203,208,217,245,274,312,313,316,342,350,358,376,402,406,407,468,473,480,496],thought:[33,34,135,140,142,157,181,183],thousand:[157,170,178,197],thread:[0,20,181,183,201,203,439,465,489,496],threadpool:[201,465,496],threadsaf:[505,512],threat:199,three:[0,14,15,19,21,23,28,31,33,36,37,55,56,58,60,65,73,75,80,94,95,96,111,119,123,129,135,137,141,145,153,164,168,178,179,197,201,214,227,229,315,343,390,398,473,480],threshold:[116,364,463,474],thrill:168,throttl:[0,201,205,206,208,416,425,438],through:[0,7,8,9,13,15,16,18,20,21,23,28,29,30,31,33,36,37,41,42,44,45,50,52,53,62,65,68,69,74,77,89,90,94,95,96,107,112,113,116,117,119,121,122,124,125,131,132,136,137,138,139,142,143,144,145,147,150,151,153,156,157,160,161,162,163,164,168,169,171,174,181,183,188,197,198,199,200,201,203,205,208,216,222,227,229,249,258,282,283,287,312,313,314,315,316,320,326,333,341,342,354,381,396,398,401,402,411,412,415,420,422,427,436,440,443,449,452,457,459,460,468,469,470,474,476,479,480,481,494,496,505,512,536,545],throughout:[28,89,121,128,159,200,314,339],throughput:[236,237,476],thrown:[147,201,297],thrust:[375,501],thu:[0,14,16,19,21,23,28,30,33,35,37,39,48,57,60,65,67,69,73,75,130,135,142,146,151,157,161,162,170,174,175,179,185,201,210,219,223,341,342,344,353,354,398,402,415,452,466,468,469,476],thud:[92,300],thumb:[8,12,60],thumbnail:123,thunder:[98,183],thunderstorm:138,thusli:191,tick:[7,23,28,42,47,79,113,119,122,177,183,283,314,374,376,415,452],ticker1:[47,415],ticker2:[47,415],ticker:[0,24,26,32,42,120,126,177,209,232,374,376,411,415,425,496],ticker_class:415,ticker_handl:[47,120,177,205,415,496],ticker_pool_class:415,ticker_storag:415,tickerhandl:[0,20,24,42,84,108,147,177,205,206,232,293,314,329,376,408,496,548],tickerpool:415,tickerpool_layout:415,tidbit:121,tidi:192,tie:[147,164,344],tied:[19,81,94,117,122,137,216,229,279,282,290,343,368,394,409],tier:[75,197],ties:[53,73,159,201,224],tight:[81,290],tightli:[39,75,199,236],tild:130,tim:[0,81,91,93,111,112,117,289,290,311,312,313,314,315,316,349,350,383,384,388,390],time:[0,1,4,6,7,9,10,11,12,13,14,15,16,18,19,21,24,26,28,29,30,31,33,35,37,41,44,47,48,54,55,60,61,62,63,65,67,68,70,72,73,75,77,78,80,83,84,85,86,89,96,98,103,104,106,108,110,111,112,113,116,117,118,120,121,122,123,124,125,126,128,130,132,133,134,135,136,137,138,139,140,141,143,144,146,147,152,153,154,155,156,157,159,160,162,164,169,171,174,175,177,178,182,183,185,186,187,189,191,192,193,197,200,201,203,208,209,211,213,214,216,217,220,227,232,236,237,238,251,252,260,261,264,279,287,293,296,297,309,312,313,314,315,316,320,326,329,347,353,357,358,363,368,374,375,376,386,390,394,401,402,405,407,408,409,410,413,414,415,420,422,424,426,427,432,438,443,445,451,452,453,457,458,459,461,463,468,470,471,473,474,475,476,481,484,487,488,489,492,496,505,512],time_ev:264,time_factor:[20,163,201,251,484],time_format:496,time_game_epoch:[20,163,201,484],time_ignore_downtim:201,time_left:293,time_str:163,time_to_tupl:251,time_unit:[86,163,251],time_until_next_repeat:42,time_zon:201,timed_script:42,timedelai:[155,414,494,496],timedelta:[490,497],timeeventscript:261,timefactor:[163,201],timeformat:[489,496],timeit:7,timelin:143,timeout:[147,173,187,195,201,443,463,487],timer:[0,2,20,23,47,65,79,84,90,106,117,122,128,131,132,142,147,160,201,222,293,314,320,357,363,368,375,408,409,413,414,415,451,459,493,522],timerobject:42,timerscript:42,timescript:484,timeslot:[90,320],timestamp:[20,64,153,321,451,452,463,484],timestep:[7,452],timestr:489,timetrac:[205,206,416,450],timetupl:163,timezon:[183,201,489,490,497],tin:136,tini:[157,166,183],tinker:8,tintin:[184,433,434,444,447],tinyfugu:184,tinymud:[69,161],tinymush:[69,72,161,234],tinymux:[69,161],tip:[2,46,181,199],tire:[128,216],titeuf87:[115,117,331,333],titl:[1,18,51,80,119,164,198,201,227,229,237,245,246,280,354,393,473,476,547],title_lone_categori:229,titlebar:51,titleblock:164,tlen:188,tls:182,tlsv10:187,tlsv1:182,tmp:[4,195,233],tmpgtt_9p0n:233,tmpmsg:19,tmwx:0,to_be_impl:543,to_byt:[0,496],to_closed_st:368,to_cur:314,to_displai:245,to_dupl:215,to_execut:496,to_exit:[94,96],to_fil:[76,380],to_init:316,to_non:402,to_obj:[208,217,402],to_object:237,to_open_st:368,to_pickl:477,to_str:[0,496],to_syslog:380,to_unicod:0,tobox:429,todai:[93,142,350],todo:[38,43,66,129,145,148,150,162],toe:[69,135],togeth:[0,14,16,21,23,30,31,37,40,48,61,65,80,89,96,97,101,103,116,117,119,122,124,130,132,135,136,137,138,140,141,142,143,144,146,147,148,149,155,159,161,162,175,176,182,188,197,201,202,213,222,224,229,236,280,296,297,306,309,320,341,342,353,354,375,376,400,401,407,429,448,461,473,474,493,505,512,548],toggl:[166,443],toggle_nop_keepal:443,togglecolor:166,togrid:116,toi:85,toint:[30,41,483],token:[19,144,188,201,236,440,443,474,483],told:[11,58,60,70,132,135,158,169,175,197,492],tolimbo:116,tolkien:163,tom:[30,36,58,72,92,104,141,162,175,222,228,300,354,479,483,499],tomb:113,tomdesmedt:499,tommi:[36,39,57,483],ton:[161,167,201],tone:60,tonon:[222,335],too:[0,6,7,9,11,14,15,16,18,19,20,23,28,30,31,34,48,50,55,58,60,65,80,94,95,96,111,113,119,123,124,125,126,128,131,133,134,137,140,141,142,143,144,146,147,152,153,155,157,159,161,162,168,169,174,175,178,193,195,201,220,222,239,297,298,315,342,343,368,390,397,400,425,429,463,465,471,474,479,480,481,482,493,496],took:[10,131,496],tool2:298,tool:[2,30,39,41,46,50,53,60,61,67,69,85,116,117,120,122,123,125,127,133,135,137,139,140,142,143,145,148,150,151,155,161,163,170,182,183,187,192,193,197,201,296,297,298,548],tool_kwarg:296,tool_nam:296,tool_tag:[85,296,297],tool_tag_categori:[85,296],toolbox:181,toolkit:53,tooltip:51,top:[1,7,12,15,21,23,27,29,30,31,42,46,48,50,53,58,80,81,85,89,101,115,116,119,124,126,131,134,135,136,155,157,161,162,164,168,170,171,175,178,179,181,191,193,200,203,211,216,238,245,251,274,277,290,306,333,341,342,354,390,392,394,401,410,420,462,468,470,471,474,481,482,489],topcistr:393,topic:[6,7,21,23,31,44,50,54,62,64,67,76,121,123,128,130,133,135,142,164,176,201,229,277,279,312,313,314,315,316,393,395,493,536,544],topicstr:393,topolog:[116,117,341,342],toppl:94,tostr:429,total:[7,20,33,44,49,60,75,94,116,141,163,167,169,172,200,210,232,342,347,457,481,482,484],total_num:487,touch:[0,60,119,132,133,182,185,199,200,201,463],tour:[125,127,132,139,145,148,150,169],toward:[6,23,62,80,98,116,140,142,143,169,170,316,350,374],tower:[170,320,376],town:[116,335],trace:[65,116,261,342,457,480,489],traceback:[2,8,10,15,20,42,53,64,73,94,126,135,161,175,178,201,203,261,306,405,429,470,474,489,496],tracemessag:457,track:[0,11,14,20,42,44,67,84,89,106,110,112,117,122,125,132,135,139,140,141,146,147,156,159,161,167,174,177,178,195,198,208,216,236,293,316,339,342,358,411,431,432,437,440,443,458,463,477,478,490],tracker:[26,113],trade:[77,95,117,141,142,287],tradehandl:[77,287],trader:95,tradetimeout:287,tradit:[3,17,32,54,60,65,128,132,135,142,146,147,197,199,296,333,443,459,481],tradition:[65,140,142,143,161,201,297],traffic:[75,182,199,433],trail:[53,201,243],train:[110,126,142,181,358],traindriv:174,traindrivingscript:174,trainobject:174,trainscript:174,trainstop:174,trainstoppedscript:174,trait1:[110,358],trait2:[110,358],trait:[0,20,119,125,139,142,146,205,206,239,345,407,548],trait_class_path:[110,358],trait_data:358,trait_kei:[110,358],trait_properti:358,trait_typ:[110,357,358],traitexcept:358,traitfield:[357,358],traithandl:[205,239,345,356,357],traithandler_nam:358,traithandlertest:357,traitproperti:[205,239,345,356,357],traitshandl:[357,358],transact:[77,117,141,287],transfer:[168,178,216,431,441,445,482],transform:[4,130],transit:[0,37,89,117,336,339,341,342],transitionmapnod:[116,336,339,342],transitiontocav:336,transitiontolargetre:336,transitiontomapa:116,transitiontomapc:116,translat:[16,36,41,58,60,61,62,68,70,104,132,176,181,353,354,407,422,473],transmiss:380,transmit:[70,519],transpar:[19,44,51,176,187,201,400,401,415],transport:[429,440,449],transportfactori:440,transpos:176,trap:[16,113,138,167],traumat:28,travel:[65,68,108,159,167,329,333],travers:[14,33,37,75,94,108,116,117,158,159,168,174,326,329,333,341,342,374,375,397,402,522],traverse_:23,traversing_object:[326,329,333,402],travi:[0,3],travis_build_dir:5,treasur:[124,137,141,333],treasurechest:39,treat:[0,14,16,23,44,46,48,54,116,122,130,136,137,158,170,208,213,216,300,342,366,392,400,402,407,452,461,480,482,493],tree:[0,12,23,28,39,74,85,89,114,116,117,119,120,122,125,139,140,141,149,193,205,206,239,245,274,285,295,336,354,388,389,390,402,407,420,449,465,480,496,518,548],tree_select:[111,205,206,239,378,548],treestr:[111,390],trembl:[133,136],treshold:487,trhr:[0,75,117,241],tri:[16,23,33,35,36,44,45,55,64,65,70,75,91,126,134,137,140,142,144,147,155,162,169,178,184,197,201,214,232,287,375,376,384,424,463,496,497],trial:[9,377,446],tribal:170,trick:[2,80,134,144,181,182,470,536],tricki:[41,176],trickier:[124,164],tried_kei:39,trigger:[0,4,6,19,21,23,28,32,34,37,44,45,47,59,65,73,80,94,95,98,106,117,143,147,152,159,160,161,164,171,172,174,179,184,192,208,209,213,214,217,219,233,245,264,279,293,368,374,376,401,402,407,409,415,422,425,429,451,458,462,476,480],trim:473,tripl:[20,119,135,496],triumph:[138,142],triumphant:138,trivial:[6,7,20,23,62,138,144,169],troll:55,troubl:[35,44,95,118,125,128,135,162,169,182,183,191,193,468],troubleshoot:[190,193,202,548],troublesom:[15,16,55],trove:[124,141],truestr:[91,384],truli:[44,55,96,157,320],trunk:0,trust:[28,30,57,94,117,141,142,161,232,474],truth:6,truthfulli:23,truthi:[126,414],try_num_differenti:214,ttarget:147,tto:443,tty:[124,192],ttype:[205,206,416,428,440,443],ttype_step:447,tuck:170,tulip:137,tun:[26,222],tune:[132,142,176,187],tunnel:[26,80,96,116,126,128,134,144,158,159,162,174,222,445],tup:157,tupl:[0,6,7,14,28,30,36,39,41,50,67,68,94,98,115,126,130,144,147,157,179,197,201,205,208,214,220,222,227,229,230,237,245,251,258,278,284,287,296,300,314,315,333,335,341,342,343,344,347,354,366,373,393,395,397,398,400,402,406,407,409,415,417,420,429,430,440,441,445,452,459,461,468,471,473,475,476,478,480,484,489,491,496,499,500,520],tuple_of_arg_convert:30,tupled:489,turbo:191,turkish:208,turn:[0,2,10,12,14,20,21,23,27,28,33,44,45,53,54,55,60,63,65,68,73,89,96,98,111,116,117,119,122,125,126,133,134,135,136,137,138,141,142,144,145,161,162,166,170,171,172,174,176,178,181,197,201,203,208,217,232,233,236,237,264,270,312,313,314,315,316,344,354,374,376,390,402,407,420,425,433,440,443,451,461,467,470,474,476,480,481,482,483,494,496,505,525,527,548],turn_act:147,turn_end_check:312,turnbattl:[0,112,125,139,205,206,239,285,548],turnchar:314,tut:[138,376],tutor:[113,373],tutori:[0,2,6,18,21,22,23,25,28,46,47,53,54,56,60,73,78,79,80,100,106,108,109,118,119,121,122,123,126,128,130,132,133,134,135,136,141,143,148,149,153,154,155,157,159,161,162,166,167,169,170,176,178,181,188,190,193,197,201,205,206,233,239,245,313,342,480,548],tutorial_bridge_posist:376,tutorial_cmdset:376,tutorial_exampl:[15,16,128,132,135,363],tutorial_info:376,tutorial_world:[80,113,138,190,205,206,239,359,548],tutorialclimb:375,tutorialevmenu:373,tutorialmirror:[117,135,366,548],tutorialobject:[374,375],tutorialread:375,tutorialroom:[374,376],tutorialroomcmdset:376,tutorialroomlook:376,tutorialstartexit:376,tutorialweapon:[0,374,375],tutorialweaponrack:[0,375],tutorialworld:[375,376],tutoru:135,tweak:[8,14,19,30,31,37,41,48,53,116,117,124,126,133,141,145,153,161,162,171,182,187,208,236,368,465,473,494,504,509],tweet:[165,202,548],tweet_output:173,tweet_stat:173,tweetstat:173,twenti:162,twice:[28,98,138,147,153,163,243,261,316,480],twist:[0,20,23,52,54,62,155,181,189,191,193,195,199,201,377,402,414,417,420,422,423,429,430,431,432,437,440,443,446,448,449,451,458,461,465,489],twistd:[9,195,203,437,458],twistedcli:62,twistedweb:199,twitch:147,twitter:[173,202,548],twitter_api:188,two:[0,7,8,10,12,14,15,16,17,20,21,23,27,28,30,31,32,33,34,37,40,41,42,44,46,48,51,56,57,58,62,64,65,67,68,69,70,72,73,74,77,78,80,89,94,95,96,97,104,105,107,108,110,111,114,116,117,119,122,123,125,128,129,130,131,132,133,134,135,136,137,138,139,141,142,143,144,145,146,147,153,154,155,157,158,159,161,162,164,168,169,170,174,175,176,178,179,181,183,186,187,192,195,197,199,200,201,203,215,222,227,236,238,245,274,279,287,296,297,303,314,316,326,329,339,341,342,347,358,368,376,386,390,402,404,420,449,460,461,469,471,474,480,482,483,489,496,497],twowai:222,txt:[0,1,27,62,75,104,116,119,124,135,180,191,196,197,209,353,436,444,478,480,496,499],txw:0,tyepclass:400,tying:[197,525],type:[0,1,6,8,11,16,18,19,20,21,23,24,25,26,27,28,30,31,33,35,36,41,42,44,45,46,47,48,49,50,51,55,56,57,58,60,65,67,68,69,70,75,78,80,81,84,85,89,91,94,95,96,97,104,108,114,116,117,119,121,122,128,129,130,131,132,133,135,136,138,140,141,142,144,145,146,147,152,153,154,155,158,159,160,161,162,163,166,167,169,170,171,172,173,174,175,176,178,181,182,184,191,197,199,201,203,205,206,208,209,217,222,227,229,232,233,234,236,237,238,239,243,245,255,258,261,264,274,277,279,280,282,290,293,296,297,303,312,313,314,315,316,329,340,341,342,344,345,354,356,357,368,375,376,384,392,394,397,398,401,402,406,407,409,414,415,418,420,422,423,429,431,432,438,440,441,443,444,445,447,448,449,451,459,461,465,468,469,470,471,473,474,476,477,480,481,482,483,491,492,493,495,496,500,504,505,512,516,517,519,522,530,536,544],type_count:290,typecalass:468,typecalss:261,typeclas:133,typeclass:[1,2,10,13,14,15,19,20,23,24,26,31,33,34,35,37,39,41,42,44,45,46,50,53,55,61,63,64,65,80,81,83,84,85,90,92,96,98,103,104,108,109,110,115,116,117,119,124,125,127,128,129,130,131,136,141,145,146,147,152,153,157,158,159,160,162,163,164,167,168,169,170,171,172,173,174,175,177,178,179,201,205,206,208,209,210,211,216,222,227,236,237,238,239,240,257,260,261,264,277,279,282,284,290,293,296,309,312,313,314,315,316,318,320,326,328,333,335,344,354,358,368,370,376,393,398,400,401,402,406,407,409,410,411,413,415,458,475,476,493,494,496,514,516,519,522,527,537,546,548],typeclass_aggressive_cach:201,typeclass_path:[42,48,201,211,222,410,469,470],typeclass_search:[210,400,409,469],typeclasses:133,typeclasslistserializermixin:519,typeclassmanag:[210,237,400,409],typeclassmixin:[540,541,542,546],typeclassserializermixin:519,typeclassviewsetmixin:522,typedobject:[48,211,217,238,333,344,354,401,402,410,468,469,470,471,491,496],typedobjectmanag:[210,237,393,400,409,469],typeerror:[6,347,449],typelass:19,typenam:[80,208,209,211,236,238,251,261,279,280,281,287,290,300,309,312,313,314,315,316,320,326,329,333,343,344,353,354,363,366,368,370,374,375,376,386,394,401,402,406,410,413,427,453,468,470,484,487,488],typeobject:471,types_count:290,typic:[10,20,94,110,121,169,315,316,358,519,546],typo:[0,118,119,199],ubuntu:[12,182,183,187,193,195,197,199],uemail:210,ufw:199,ugli:[41,51,135,160,490],uid:[192,201,210,211,432,439,460,461],uit:[80,245],ulrik:162,ultima:181,umlaut:17,unabl:[188,350],unaccept:23,unaffect:[28,147,314,414],unalia:[19,102,227,270],unam:[201,210],unari:357,unarm:313,unarmor:313,unauthenticated_respons:537,unavoid:47,unban:[0,19,55,102,126,220,227,233,236,270],unban_us:227,unbias:[87,347],unbroken:479,uncal:414,uncas:473,uncategor:493,unchang:[8,36,104,110,353,358,407,496],uncleanli:281,unclear:[58,116,143,156,342],uncolor:[60,166],uncom:[187,197],uncommit:12,uncompress:433,unconnect:[116,234,255],uncov:290,undefin:[4,46,67],under:[0,2,4,6,7,9,11,19,23,28,30,31,41,42,48,51,53,64,67,69,73,75,83,87,89,91,94,95,99,102,110,111,113,114,117,118,119,122,124,126,128,130,133,134,136,140,141,142,146,151,161,175,178,179,180,181,184,191,192,201,203,217,219,222,274,296,357,358,384,390,398,413,420,447,468,473,480,481,482,496,499,500,513],undergar:[81,290],undergon:261,underground:116,underli:[12,14,33,50,122,140,161],underlin:482,underneath:[124,470],underpin:148,underscor:[8,28,30,32,68,85,96,119,135,215,483,496],underscror:215,understand:[1,6,12,17,21,23,39,41,44,52,54,60,65,70,71,85,105,112,118,119,121,123,126,130,132,133,134,135,136,140,141,142,143,144,151,153,155,156,157,158,159,165,166,169,170,175,178,179,181,183,184,195,199,200,201,214,215,227,297,353,354,386,465,473,496,548],understood:[31,58,65,85,142,169,170,342,448,449],undertak:143,undestand:153,undo:[27,199,478],undon:219,undoubtedli:161,uneven:342,unexpect:[10,169,176,201,480,496],unexpectedli:487,unfair:142,unfamiliar:[32,33,53,68,135,172,193,197],unfocu:277,unfocus:279,unformat:[28,480,484],unfortun:[123,140],unhappi:124,unheard:58,unicod:[0,17,65,70,116,208,342,473,496],unicodeencodeerror:473,unifi:[178,460],uniform:44,uninflect:499,uninform:182,uninstal:[125,127,195],uninstati:496,unintent:274,union:[21,28,133,215,368,480],uniqu:[0,3,4,13,15,21,23,25,33,34,35,41,42,44,46,48,50,51,55,58,62,65,95,98,103,116,117,119,122,128,130,133,137,161,175,188,197,208,210,213,215,217,222,227,234,236,237,251,255,260,279,293,296,313,314,326,335,341,342,344,353,354,374,376,386,390,393,402,406,407,409,415,417,429,430,438,451,452,460,461,468,469,470,471,476,478,483,490,493,496,500],unit:[0,2,3,4,5,12,20,21,45,53,76,86,94,118,122,163,167,181,201,237,251,264,283,298,314,357,422,476,484,496,501,548],unittest:[0,5,10,153,201,233,400,461,476,494],univers:[16,17,163,270],unix:[0,1,29,36,117,119,184,187,195,228,272,274,481,489,496,548],unixcommand:[0,114,205,206,239,240,548],unixcommandpars:274,unixtim:489,unjoin:287,unknown:[51,133,160,164,342,406,496],unknown_top:544,unleash:154,unless:[14,19,20,23,28,30,33,34,35,37,47,55,68,74,75,80,113,116,117,119,123,133,136,140,142,152,155,175,180,183,187,189,197,201,203,208,215,216,220,222,227,229,230,236,260,316,353,354,375,386,392,397,398,402,407,418,433,449,461,468,470,483,493,494,496,497,544,548],unlik:[14,45,80,103,110,116,117,118,122,142,146,197,208,245,314,342,358,470],unlimit:[115,201,333,341],unlink:[26,126,222],unload:[116,494],unload_modul:494,unlock:[19,39,133,162,227,279,468],unlock_flag:279,unlocks_red_chest:39,unlog:[7,220,225,226,234,254,255,461],unloggedin:[0,44,201,205,206,212,218,461],unloggedincmdset:[25,26,44,88,99,134,201,226,254,255],unlucki:[55,113],unmask:354,unmodifi:[0,113,117,214,231,320,480],unmonitor:[24,425],unmut:[19,102,227,236,270],unmute_channel:227,unnam:[46,215],unneccesari:70,unnecessari:[4,140],unnecessarili:130,unneed:[115,333],unoffici:181,unpaced_data:429,unpack:[0,169,397],unpars:[32,36,214,448,449,483],unpaus:[42,192,222,232,414],unpickl:[50,65,429,468,477,492],unplay:[44,153],unpredict:496,unprivileg:407,unprogram:146,unpuppet:[0,26,45,94,175,219,504],unpuppet_al:208,unpuppet_object:[13,208],unquel:[26,39,128,135,138,219],unreal:181,unrecogn:483,unrecord_ip:463,unregist:73,unrel:[12,28,249],unrepat:496,unrepeat:[0,425,496],unreport:[0,425],unrestrict:141,unsaf:[0,203,215,376,496],unsafe_token:473,unsatisfactori:170,unsav:478,unsel:168,unseri:201,unset:[0,14,23,37,76,110,147,159,162,220,279,280,282,341,343,354,358,374,398,402,406,407,409,415,468,476,480,481,482,483,489,494],unset_character_flag:279,unset_flag:[279,280],unset_lock:227,unsign:497,unsigned_integ:[490,497],unsignedinteg:490,unskil:[110,358],unspawn:342,unstabl:[0,192],unstrip:214,unsuar:118,unsub:[19,102,201,227,270],unsub_from_channel:227,unsubscrib:[19,47,162,270,415,431],unsuccessful:64,unsuit:[57,406,471],unsupport:14,unsur:[17,30,108,118,126,147,188,193,197],unsurprisingli:135,untag:51,untest:[10,184,195,201],until:[1,4,7,8,14,15,21,23,28,36,42,47,51,52,54,55,60,67,77,84,98,104,106,112,116,117,122,128,130,135,136,138,140,141,142,144,151,155,156,175,176,182,251,264,287,290,293,312,313,314,315,316,341,357,368,374,375,376,402,414,420,429,449,451,468,473,474,484,496],untouch:[116,136,473],untrust:[15,30,94,142,496],unus:[0,23,85,116,142,166,201,208,213,217,227,236,281,315,316,320,344,366,376,390,402,413,443,459,464,469],unusu:[86,117,143,199],unwant:94,unwield:313,unwieldli:216,unwil:76,upcom:185,updat:[0,2,4,7,8,10,13,14,15,16,23,24,26,28,31,34,37,42,47,49,64,65,67,68,73,75,82,89,90,94,109,116,117,119,122,123,124,125,132,135,140,144,146,147,151,154,155,156,157,159,161,162,163,166,169,175,178,179,182,183,184,187,188,191,192,193,195,196,197,198,201,209,216,217,222,227,230,232,233,236,248,261,315,320,337,343,354,357,376,394,398,401,402,404,405,407,409,411,436,438,439,444,458,459,461,463,468,470,477,478,479,480,481,482,487,496,504,505,512,517,521,536,537,546,547,548],update_attribut:468,update_buff:478,update_cached_inst:487,update_charsheet:162,update_current_descript:320,update_default:458,update_flag:459,update_lock:517,update_method:51,update_po:159,update_scripts_after_server_start:409,update_session_count:459,update_undo:478,update_weath:376,updated_bi:258,updated_on:258,updatemethod:51,updateview:[546,547],upenn:499,upfir:9,upgrad:[0,2,122,191,193,195,202,548],upload:[75,122,123,192,195,197,201,202],upmaplink:[116,342],upon:[16,33,49,53,67,70,76,91,140,155,171,175,192,197,199,312,313,314,316,381,384,412,422,431,463,481,546],upp:376,upped:0,upper:[49,60,67,110,116,155,157,219,341,342,358,473],upper_bound:[110,358],upper_bound_inclus:358,uppercas:[60,354,473],upping:60,ups:0,upsel:197,upset:126,upsid:[115,333],upstart:62,upstream:[1,11,12,122,200],upstream_ip:201,upt:216,uptick:0,uptim:[0,20,26,30,55,163,232,434,484],urfgar:41,uri:[217,236,392,394,470],url:[0,12,49,50,52,53,59,73,122,125,132,150,151,179,182,197,198,201,205,206,209,217,227,236,243,392,394,439,449,465,470,495,502,503,515,522,532,535,541,542,544,547,548],url_nam:[522,537],url_or_ref:119,url_path:522,url_to_online_repo:12,urlconf:201,urlencod:164,urlpattern:[53,73,123,149,164,178,179],usabl:[63,85,112,123,135,141,175,222,245,279,314,350,397,463,480],usag:[6,7,23,24,28,31,35,41,47,55,72,94,96,118,119,122,126,134,135,144,146,147,152,154,155,156,162,166,167,168,169,174,175,188,190,197,201,205,206,217,219,220,221,222,227,228,229,232,233,234,239,245,251,255,270,274,277,287,290,296,297,300,303,306,309,312,313,314,315,316,318,320,326,329,331,335,337,345,346,353,354,368,370,373,374,375,376,381,384,397,405,414,420,451,480,482,483,487],use:[0,1,2,4,5,6,7,9,10,11,12,13,14,15,16,17,18,20,21,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,41,42,44,45,46,48,49,50,51,52,53,54,55,56,57,58,60,62,63,64,65,67,68,69,70,72,73,74,75,76,77,79,80,81,83,84,85,86,87,89,90,92,93,94,95,96,97,98,101,102,103,104,105,107,109,110,111,112,113,114,115,116,117,118,119,122,123,124,125,126,127,128,129,130,132,133,134,135,136,137,138,139,140,143,144,145,146,147,148,149,150,151,152,153,154,155,157,158,159,160,161,162,163,164,165,166,167,168,169,170,172,173,174,175,176,177,178,179,181,182,183,184,185,186,187,188,189,190,192,193,195,196,197,198,199,201,205,208,209,210,211,213,214,215,216,217,219,222,223,227,228,229,230,232,233,234,236,237,238,245,260,264,274,277,279,280,284,287,290,293,296,297,300,303,306,309,312,313,314,315,316,320,326,329,333,335,336,337,341,342,344,347,350,353,354,358,363,368,370,373,374,375,376,386,390,392,397,398,400,401,402,406,407,414,415,418,425,429,442,444,445,448,451,452,459,460,461,468,469,470,471,473,474,475,476,478,479,480,481,482,483,487,489,490,492,494,496,497,500,505,507,512,517,519,522,542,545,548],use_dbref:[354,400,402,493],use_destin:402,use_i18n:[64,201],use_int:293,use_item:314,use_nick:[208,354,402],use_required_attribut:[506,508,510,512,536],use_success_location_messag:309,use_success_messag:309,use_tz:201,use_xterm256:473,useabl:[115,333],used:[0,3,7,10,11,12,13,14,15,17,18,19,20,21,24,25,27,28,29,30,31,32,33,34,35,36,37,39,41,42,44,45,46,47,48,50,51,52,53,54,56,57,58,60,62,64,65,67,68,69,70,71,72,73,76,77,78,80,81,83,84,85,86,88,90,91,92,93,94,95,96,97,98,102,103,104,105,110,111,112,114,115,116,117,118,119,122,124,125,127,128,129,130,131,132,133,134,135,136,137,138,142,144,146,147,149,151,155,156,160,161,162,163,164,167,168,169,170,172,173,174,175,176,178,179,181,183,184,185,187,189,192,194,195,197,199,200,201,203,205,206,208,209,213,215,216,217,219,222,227,229,230,231,232,233,234,236,237,239,245,249,251,254,255,258,260,261,264,270,274,279,280,282,285,287,290,293,295,296,300,303,312,313,314,315,316,320,329,333,335,338,341,342,343,344,350,353,354,358,368,374,375,376,384,386,390,392,393,394,395,396,397,398,400,402,406,407,411,413,414,415,416,417,418,422,425,426,429,430,431,432,433,434,435,436,437,438,440,442,443,444,447,448,449,452,459,461,462,468,469,470,471,472,473,474,476,477,478,480,481,482,483,489,490,491,492,493,494,496,497,500,504,505,509,512,514,519,522,536,540,542,544,545,546],useful:[0,1,2,4,6,7,10,12,14,15,16,17,18,20,21,27,28,30,31,33,36,37,39,41,42,45,46,47,48,50,53,54,55,56,57,60,63,77,80,85,94,95,96,104,110,114,116,117,118,119,120,122,123,125,126,128,130,131,133,134,135,136,137,138,139,142,144,147,153,154,155,156,157,161,162,164,166,169,170,173,175,177,178,181,183,193,195,197,200,201,203,213,215,216,217,219,221,222,229,230,233,236,239,245,260,261,274,279,284,287,296,303,314,333,342,343,353,354,358,368,376,381,397,402,406,407,420,440,468,470,474,480,484,492,496,518,548],usefulli:134,useless:[133,144,374],user:[0,1,4,5,6,7,8,10,13,15,16,19,21,24,25,27,28,29,30,31,32,33,36,39,44,45,48,49,50,51,52,54,55,59,60,61,62,63,68,70,71,73,75,76,80,81,85,89,92,94,98,102,104,107,113,116,117,118,119,121,122,123,125,126,128,132,133,135,137,142,144,151,153,154,155,156,159,165,166,168,169,174,175,176,178,179,181,182,183,186,187,188,189,190,191,192,193,195,197,198,200,201,202,208,209,211,214,217,220,222,227,229,232,236,237,238,243,245,254,259,261,270,278,279,281,290,293,296,300,314,316,320,333,342,344,354,366,376,380,381,390,392,394,398,402,407,413,416,418,424,432,439,440,443,448,449,459,461,464,468,470,473,478,480,481,482,483,490,494,496,497,504,517,525,528,536,541,542,543,544,545,547,548],user_change_password:504,user_input:28,user_permiss:[211,504],useradmin:504,userattributesimilarityvalid:201,userauth:440,userchangeform:504,usercreationform:[504,536],userguid:75,usermanag:210,usernam:[0,12,13,25,28,32,45,49,88,117,123,141,179,192,194,201,208,211,255,440,464,504,516,519,528,536],usernamefield:536,userpassword:[55,126,220],uses:[0,7,10,12,15,17,18,19,21,23,28,30,31,33,35,37,41,42,45,46,47,48,50,51,53,56,58,60,62,67,68,70,77,80,86,88,90,94,96,97,99,104,107,110,114,117,122,124,130,132,133,135,136,141,151,155,156,157,161,164,166,183,197,198,201,215,229,236,274,279,287,296,303,314,320,333,341,342,347,353,354,357,358,376,398,400,410,415,429,449,463,468,471,489,490,494,496,516,519,525,544],uses_databas:496,using:[0,1,2,4,7,8,10,11,12,13,14,15,16,17,19,20,21,23,26,27,28,30,31,32,33,36,37,39,41,42,44,45,46,47,48,49,50,51,52,53,54,55,57,58,60,65,67,68,69,72,74,75,80,83,85,86,93,94,95,98,103,104,108,111,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,136,138,140,141,142,143,144,145,146,147,152,153,154,155,156,157,159,160,161,162,163,166,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,187,188,190,192,193,195,196,197,199,201,203,208,211,213,216,217,219,221,222,227,229,230,231,232,236,245,251,260,274,279,287,296,297,298,309,312,313,314,315,316,320,326,329,333,335,336,341,342,344,347,350,353,354,358,370,373,374,376,384,390,392,395,398,400,401,402,405,406,407,410,414,415,431,432,433,438,439,443,449,452,461,462,463,465,468,470,471,473,474,478,480,481,484,489,490,491,492,493,494,496,502,517,521,522,536,544,545,548],usr:[122,191,192,195],usu:42,usual:[1,7,8,9,12,13,14,19,20,21,23,27,28,29,32,33,35,36,37,39,41,42,44,46,47,48,50,52,53,57,58,60,62,64,80,94,95,96,110,116,117,118,119,122,123,124,125,126,129,130,132,133,135,136,137,142,143,144,151,152,153,155,156,161,163,166,169,176,178,182,183,187,189,192,193,195,197,201,203,208,209,210,214,215,216,217,219,222,227,228,232,233,236,238,251,260,261,264,274,282,293,341,342,344,353,354,358,376,386,398,400,401,402,406,407,420,422,427,452,459,468,470,473,475,476,480,481,483,489,491,493,494,496,505,512],usuallyj:116,utc:[183,201,321,497],utf8:[4,183],utf:[17,32,70,98,162,170,184,201,234,425,431,448,482,496],util:[2,8,10,14,15,16,27,28,29,37,42,50,51,54,56,60,67,76,84,86,89,90,91,94,98,105,106,110,111,118,127,129,131,143,159,161,162,163,166,168,170,171,178,179,182,193,199,201,205,206,221,232,233,236,238,239,240,246,249,251,252,256,257,261,262,271,273,275,276,278,283,288,291,293,294,298,301,304,307,310,315,317,318,320,321,327,329,330,332,334,339,348,351,355,357,358,364,368,371,373,377,391,394,400,402,404,406,413,414,427,446,451,468,469,470,502,503,505,506,508,510,512,520,536,537,548],utilis:480,uyi:[104,353],v22:195,vagu:152,val1:[14,483],val2:[14,483],val:[14,68,208,219,444,496],valid:[0,1,5,6,8,14,15,21,23,28,30,37,41,53,59,60,68,85,91,94,98,105,111,115,116,117,132,135,156,158,162,164,169,175,178,179,187,197,199,201,203,205,206,208,210,214,216,222,230,236,237,245,258,261,262,274,287,296,298,315,333,341,354,357,358,375,376,384,386,390,398,402,404,406,407,409,411,413,414,415,416,418,420,444,448,459,468,469,471,474,476,480,483,490,491,492,493,494,495,496,497,500,519,536,540,542,547],valid_handl:490,valid_target:83,validate_cal:483,validate_email_address:496,validate_input:358,validate_lockstr:0,validate_nam:[0,402],validate_onli:398,validate_password:[0,28,208],validate_prototyp:406,validate_sess:461,validate_usernam:[0,208],validated_consum:[85,296],validated_input:296,validated_tool:[85,296],validationerror:[208,406,464,490,492],validator_config:208,validator_contain:0,validator_func:201,validator_func_modul:[0,201],validator_kei:490,validatorfunc:[201,205,206,472],valign:482,valu:[0,6,8,10,11,13,14,18,20,21,23,27,30,32,33,34,36,42,46,47,48,49,50,51,54,55,60,67,68,75,76,80,83,84,91,93,94,96,104,110,112,116,117,119,122,123,125,126,128,130,132,133,134,135,137,139,140,141,146,147,153,154,157,159,162,163,164,166,167,168,170,175,176,178,179,187,197,201,208,210,211,213,215,217,219,220,222,236,238,245,258,261,262,279,290,293,300,309,312,313,314,315,316,333,341,342,344,347,350,353,354,357,358,364,366,376,382,384,386,394,397,398,400,401,402,405,406,407,409,410,414,415,418,425,426,427,429,438,443,444,459,460,461,466,468,469,470,471,473,475,476,477,478,479,480,483,487,488,490,491,492,493,494,496,497,500,516,519,536,545,547],valuabl:138,value1:[41,119],value2:[41,119],value3:119,value_displai:519,value_from_datadict:492,value_to_obj:406,value_to_obj_or_ani:406,value_to_str:492,valueerror:[41,169,175,210,245,251,306,386,468,471,473,476,496,497],valuei:170,values_list:130,valuex:170,vampir:[83,130],vampirism_from_elsewher:83,vanilla:[1,48,67,75,124,125,133,139,140,159,160,162],vaniti:28,vari:[30,31,48,62,64,69,94,104,110,116,117,118,122,132,135,156,167,259,316,344,353,358,459,468,470],variabl:[0,7,8,9,14,15,21,23,28,30,31,33,41,42,51,63,64,68,70,73,75,82,85,91,95,96,116,119,121,122,126,130,133,134,135,136,149,154,159,160,162,164,169,174,178,179,192,194,199,200,201,208,211,213,217,219,222,227,230,232,233,234,236,248,254,258,260,261,264,277,309,320,341,343,358,376,384,397,401,402,406,407,417,420,430,433,434,436,440,442,452,459,466,473,474,480,483,496,529],variable_from_modul:496,variable_nam:[258,261],variablenam:496,varianc:353,variant:[14,46,88,108,117,121,125,135,216,245,246,255,329,431,473],variat:[39,90,130,142,144,146,147,163,201,215,320,353,496],varieti:[112,121,147,167,173,314,315],variou:[0,7,8,14,17,23,30,35,37,41,42,44,46,47,48,51,53,62,66,68,71,94,95,104,111,113,116,117,118,120,130,131,132,135,137,141,144,146,147,148,161,163,164,166,175,187,197,199,201,203,215,231,251,279,314,315,342,353,354,368,374,375,390,398,401,402,407,408,415,452,476,482,493,494,525],varnam:444,vast:[67,69,170,183],vastli:122,vavera:75,vcc:[104,353],vccv:[104,353],vccvccvc:353,vcpython27:124,vcv:353,vcvccv:[104,353],vcvcvcc:[104,353],vcvcvvccvcvv:[104,353],vcvvccvvc:[104,353],vector:496,vehicl:[152,548],velit:29,venu:[12,237],venv:[122,191,193,195,196],ver:183,verb:[0,30,58,153,402,456,483,499,501],verb_actor_stance_compon:499,verb_all_tens:499,verb_conjug:[0,30,205,206,472],verb_infinit:499,verb_is_past:499,verb_is_past_participl:499,verb_is_pres:499,verb_is_present_participl:499,verb_is_tens:499,verb_past:499,verb_past_participl:499,verb_pres:499,verb_present_participl:499,verb_tens:499,verb_tenses_kei:499,verbal:[79,117,402],verbatim:[30,128,135,500,548],verbatim_el:496,verbos:[0,1,10,147],verbose_nam:[178,470,504,505,512],verbose_name_plur:[505,512],veri:[0,1,6,7,8,10,11,12,13,14,15,16,18,19,20,21,23,25,27,28,29,30,31,32,33,41,42,45,46,47,48,50,51,53,54,58,60,62,67,68,69,72,74,80,81,89,94,95,96,104,105,109,111,112,113,115,116,117,118,119,121,122,123,124,125,128,130,132,133,135,136,137,140,141,142,143,144,146,147,152,154,155,157,159,160,161,162,165,168,169,170,174,175,177,179,180,181,182,183,187,189,194,196,197,200,201,203,208,209,215,217,233,236,237,238,245,260,261,274,290,296,315,326,329,333,353,370,374,386,390,393,401,406,424,469,471,476,478,480,496,545],verif:197,verifi:[0,3,7,12,28,88,91,117,133,197,222,296,315,384,445,494],verify_online_play:384,verify_or_create_ssl_key_and_cert:445,verify_ssl_key_and_cert:441,verifyfunc:[91,384],versa:[44,53,58,62,68,116,130,147,201,227,335,429,483,500],version:[0,2,4,11,13,14,15,16,19,21,23,25,26,28,31,32,35,36,37,42,48,51,53,60,64,67,69,78,89,116,117,118,122,123,126,128,132,134,135,140,142,144,151,152,155,156,161,166,169,170,175,176,181,183,184,185,190,191,192,193,195,196,197,201,222,230,232,234,255,284,290,313,314,315,316,320,354,368,375,402,407,420,425,439,463,468,473,481,496,504,505,506,509,510,513,519,536,548],version_info:420,versionad:119,versionchang:119,versu:[61,121],vertic:[0,339,341,342,375,482,496],very_strong:398,very_weak:33,vest:199,vet:41,veteran:181,vex:501,vfill_char:482,via:[0,7,12,14,19,20,28,29,30,32,39,40,41,42,48,49,51,54,60,62,65,67,69,75,83,118,121,125,130,132,133,135,139,140,146,160,161,168,175,176,187,193,197,199,201,235,237,238,335,368,380,401,410,468,471,473,483,488],viabl:[85,142,374],vice:[44,53,58,62,68,116,130,147,201,227,335,429,483,500],vicin:[23,228,320,376],video:[0,51,60,132],vidual:116,vienv:124,view:[0,1,6,12,14,18,20,27,28,29,31,33,42,47,49,50,52,53,58,67,104,113,116,117,119,121,122,123,125,126,132,133,135,142,147,150,151,162,165,167,170,175,189,190,195,197,201,203,205,206,208,217,219,220,222,227,228,229,232,236,270,290,312,313,314,315,316,333,354,392,394,402,404,455,470,481,483,496,502,507,514,515,517,519,521,525,529,532,535,536,548],view_attr:222,view_lock:517,view_on_sit:[504,506,508,509,510,512],viewabl:[120,121,229],viewer:[119,153,164,333,354,402,470],viewpoint:[61,483,500,501,548],viewport:6,viewset:[49,521,522],vim:[16,27,125,181,478],vincent:[0,80,90,94,99,105,114,117,244,245,274,319,320,386],violent:28,virginia:75,virtual:[90,116,121,123,161,181,193,197,232,320,342,484],virtual_env:191,virtualenv:[1,4,7,9,11,64,75,119,124,183,190,191,192,193,196,197,202,203],virtualhost:182,viru:195,visibl:[0,4,12,14,15,21,31,35,44,48,53,60,83,104,116,119,140,141,142,144,153,164,166,175,185,187,190,197,201,228,229,339,341,342,354,402,432,465,480,496,544],vision:[14,140,162],visit:[75,80,114,159,170,178,179,197,274,480],visitor:[73,179,199],visual:[0,7,31,51,60,93,116,117,153,161,193,195,208,229,339,341,342,344,350,473],visual_rang:344,vital:169,vlgeoff:[86,105,114,117,250,251,272,385],vniftg:195,vnum:160,vocabulari:[95,496],voic:[23,94,95],volatil:406,volcano:137,volum:[125,139,140,152,170,192],volund:[0,130],volunt:64,voluntari:118,volupt:29,vowel:[104,353],vpad_char:482,vscode:125,vulner:[0,83,155,199],vvc:[104,353],vvcc:[104,353],vvccv:[104,353],vvccvvcc:[104,353],w001:10,wai:[0,6,7,8,9,10,11,12,13,14,15,16,17,20,21,23,30,31,32,33,34,35,36,37,39,40,41,42,44,45,46,47,48,52,53,54,55,57,58,60,62,65,67,68,70,72,74,75,77,78,80,83,85,86,87,88,89,91,93,94,95,96,99,101,104,107,110,111,113,117,118,119,121,122,124,125,126,127,128,129,130,131,132,133,136,137,138,140,142,143,144,146,147,151,152,154,156,157,158,159,160,161,162,163,164,165,167,168,169,170,171,172,174,175,176,177,178,181,183,185,189,191,195,197,198,199,200,201,203,208,214,215,222,229,236,251,260,264,274,279,282,287,296,297,312,314,320,326,329,335,339,342,347,350,353,358,368,373,374,375,384,390,392,398,402,406,415,420,425,429,440,461,463,465,466,467,468,469,471,474,479,480,482,487,489,492,496,500,514,521,522,545,547],wail:159,waist:290,wait:[6,20,23,28,42,54,94,96,106,110,113,128,138,141,142,153,154,155,174,201,209,233,260,264,312,313,314,315,316,358,368,409,420,430,449,451,463,476,480,496],wait_for_disconnect:430,wait_for_server_connect:430,wait_for_statu:420,wait_for_status_repli:420,waiter:420,waitinf:233,wake:[91,384],waldemar:75,walias:222,walk:[16,21,58,94,95,96,111,115,116,121,140,142,144,152,157,159,163,168,329,333,335,342,368,390,474],walki:[19,122,142],wall:[98,113,126,135,138,144,170,220,228,320,375,376],wand:[85,296,297],wanna:[77,141,287,368],want:[0,1,5,6,7,8,9,10,11,12,13,14,15,16,17,19,20,21,23,25,27,28,30,31,32,33,34,35,36,37,39,41,42,44,45,47,48,49,50,51,53,54,55,57,58,60,62,63,64,65,67,68,69,70,73,74,75,76,77,78,80,84,85,88,89,94,95,96,99,104,106,110,116,117,118,119,122,123,124,125,126,127,128,130,131,132,133,134,135,136,137,140,141,143,144,145,146,148,149,150,151,152,153,154,155,156,157,159,161,162,163,164,165,166,167,168,169,170,172,174,175,176,177,178,179,180,182,183,184,185,187,188,189,190,191,193,194,195,196,197,198,199,200,201,203,208,215,216,217,219,222,228,229,233,234,236,245,255,279,287,293,296,312,313,314,315,316,320,333,341,342,344,350,354,358,368,376,380,384,386,390,397,398,402,407,411,413,415,436,438,444,451,461,466,468,470,478,480,481,487,492,494,496,505,512,514,521,536,541,544,545,547,548],wanted_id:33,wapproach:316,war:[31,392],warchannel:227,ware:168,warehous:[380,474],wari:[60,333,402,470],warm:[42,203,424],warn:[0,11,14,20,21,31,44,74,116,117,122,132,135,169,170,179,182,195,197,200,201,215,236,381,419,420,445,489,548],warrior:[39,138,142,154,161,162,175,227],wasclean:[431,448],wasn:[6,96,179],wast:[16,47],watch:[9,16,34],water:[85,98,117,216,296,297,309],waterballon:309,watt:75,wattack:[312,314,316],wave:170,wavi:116,wcach:232,wcactu:315,wcommandnam:274,wcure:315,wdestin:222,wdisengag:[312,314,316],weak:[314,407],weakref:487,weaksharedmemorymodel:[427,487],weaksharedmemorymodelbas:[427,487],weakvalu:487,wealth:168,weap:14,weapon:[0,14,28,41,67,112,113,122,125,126,129,130,134,138,139,140,141,145,146,147,155,167,168,297,313,374,375,407],weapon_ineffective_msg:374,weapon_prototyp:375,weaponrack:0,weaponrack_cmdset:375,weaponstr:134,weapoon:138,wear:[81,106,141,145,167,290,313,354,368],wearabl:[81,117,290],wearer:290,wearstyl:290,weather:[42,46,47,74,125,132,138,139,140,146,156,165,170,376,548],weather_script:42,weatherroom:[177,376],web:[2,18,31,33,41,49,52,56,59,64,75,117,119,120,121,122,123,124,125,128,131,135,140,150,153,156,164,181,182,183,189,190,191,193,195,196,201,202,203,205,206,422,424,434,438,444,448,449,459,463,465,471,477,496,548],web_0:196,web_client_url:[185,201],web_get_absolute_url:0,web_get_admin_url:[0,217,236,392,394,470],web_get_create_url:[0,236,394,470],web_get_delete_url:[0,236,394,470],web_get_detail_url:[217,236,392,394,470],web_get_puppet_url:470,web_get_update_url:[0,236,394,470],web_help_entri:544,web_plugin:[132,201],web_plugins_modul:201,webclient:[44,51,53,59,60,62,65,68,71,73,75,120,122,132,135,156,164,184,185,187,199,201,203,205,206,229,232,279,373,416,425,428,444,449,460,480,502,530,537],webclient_ajax:[51,205,206,416,428],webclient_client_proxy_port:201,webclient_en:[199,201],webclient_gui:[24,548],webclient_opt:[201,425],webclient_templ:201,webclientdata:449,webclienttest:537,webpag:[0,18,182,197,533],webport:4,webserv:[0,24,49,53,62,73,124,131,132,149,182,183,187,192,197,201,202,205,206,416,548],webserver_en:[199,201],webserver_interfac:[187,197,201],webserver_port:[4,197,201],webserver_threadpool_limit:201,webservic:199,websit:[0,18,24,49,50,51,52,75,119,120,121,122,124,132,149,151,161,164,165,178,181,187,197,198,199,201,205,206,449,465,502,504,530,548],website_templ:201,websocket:[0,51,52,62,122,192,197,201,202,431,437,448,460,548],websocket_client_en:201,websocket_client_interfac:[187,197,201],websocket_client_port:[197,201],websocket_client_url:[182,187,197,201],websocket_clos:448,websocket_protocol_class:201,websocketcli:[201,448],websocketclientfactori:431,websocketclientprotocol:431,websocketserverfactori:437,websocketserverprotocol:448,weed:[1,215],week:[0,86,94,117,132,163,201,251,489,497],weeklylogfil:489,weigh:[167,451],weight:[69,104,116,119,125,139,140,165,183,341,342,350,353,469,548],weird:[31,126,142,144,496],welcom:[0,25,53,64,80,118,123,125,149,168,189],well:[0,1,9,10,11,12,13,14,18,19,23,26,27,28,29,30,31,32,37,39,41,44,48,50,53,55,56,57,62,63,68,69,70,73,75,80,87,90,94,95,101,104,111,112,116,117,118,119,121,122,123,124,130,133,134,135,136,137,138,141,142,143,144,147,151,152,153,157,158,159,161,162,163,164,166,168,169,172,173,175,178,179,183,188,190,191,196,198,199,200,201,211,215,216,217,222,235,236,260,270,277,278,279,287,290,306,314,315,316,320,341,344,353,354,358,368,374,390,402,410,414,416,420,429,431,432,438,455,463,468,469,473,477,480,483,484,492,496,505,512],went:[10,12,136,144,161,190,203,411,415],weonewaymaplink:[116,342],were:[0,6,10,14,15,19,21,23,28,30,41,42,48,51,54,67,69,85,94,102,111,116,117,118,122,130,132,133,134,135,136,142,158,162,164,167,168,169,175,176,184,192,196,200,208,214,215,216,227,236,270,341,342,386,390,402,406,467,470,474,483,493,496,499,501],weren:163,werewolf:[125,127,153],werewolv:130,werkzeug:496,wesson:58,west:[30,98,116,128,153,158,159,170,222,341,342,376],west_east:170,west_exit:376,west_room:98,western:170,westward:376,wet:142,wether:[210,287,476],wevennia:80,wflame:315,wflushmem:232,wfull:315,wguild:227,what:[0,1,2,5,6,7,8,10,11,12,13,15,16,19,20,21,23,24,28,30,31,32,33,35,37,41,42,44,47,48,49,52,53,54,55,57,58,60,61,62,65,67,68,69,70,72,74,78,80,85,87,94,95,96,98,103,104,105,110,113,116,117,118,119,122,123,125,126,128,130,131,133,134,135,138,140,141,144,145,146,147,150,151,152,153,155,157,158,159,160,161,162,163,164,166,168,170,171,172,174,175,176,177,178,179,180,181,182,183,187,189,193,195,197,198,199,200,201,203,208,213,215,216,217,219,222,233,236,261,277,279,280,284,296,297,309,314,315,341,342,343,344,354,358,370,374,376,380,386,392,394,398,402,405,406,407,420,422,425,432,444,449,464,466,468,470,471,473,474,480,490,491,494,496,497,519,525,527,528,536,545,546,548],whatev:[10,12,13,14,16,20,23,28,30,37,62,80,91,94,95,100,116,122,135,136,140,141,143,152,160,162,167,169,170,175,178,179,180,183,187,190,192,201,208,209,216,222,277,296,315,366,374,375,384,402,407,410,411,431,440,443,448,461,468,481,490,545],wheat:296,wheel:[47,85,161,191,193,195],whelp:[229,274],when:[0,1,4,6,9,10,11,12,13,14,15,16,17,18,19,20,21,23,25,27,28,29,30,31,32,33,34,36,37,39,41,42,44,45,46,48,50,51,52,53,54,55,57,58,60,62,63,64,65,67,68,69,70,72,75,78,80,81,83,86,88,89,90,91,92,94,95,96,97,98,101,104,106,110,111,114,115,116,117,118,119,122,123,124,125,126,127,128,130,131,132,133,134,135,136,137,138,139,141,142,143,145,146,147,148,149,150,151,152,155,156,157,158,159,160,161,162,163,164,167,168,169,170,171,172,173,174,175,176,177,178,180,181,182,183,184,186,187,190,191,192,193,195,197,198,199,200,201,203,205,208,209,211,213,215,216,217,219,221,222,227,228,229,230,231,232,234,236,237,238,243,245,251,254,255,261,262,264,274,279,280,281,282,287,290,293,296,297,300,303,306,309,312,313,314,315,316,320,326,333,340,341,342,343,347,350,353,354,358,363,364,368,370,373,374,375,376,384,386,387,390,393,394,397,398,400,401,402,404,406,407,409,410,411,413,414,415,417,420,422,426,427,429,430,431,432,433,434,435,436,438,440,441,442,443,444,445,448,449,451,452,458,459,460,461,462,463,468,470,471,473,474,476,477,478,479,480,481,482,487,488,489,491,496,500,509,525,527,536,540,542,547],when_stop:420,whenev:[9,11,14,19,23,32,33,34,36,41,42,45,54,58,63,70,80,95,122,133,144,153,170,171,190,192,197,198,208,216,236,282,374,375,376,400,402,411,413,422,439,459,460,461,468],where:[0,1,4,6,7,8,12,14,15,16,19,21,23,27,28,29,30,31,33,35,39,41,42,44,48,50,51,53,54,55,58,59,60,62,64,65,67,68,69,70,73,75,76,80,84,85,94,95,96,98,104,110,116,117,119,122,124,125,126,127,128,132,133,134,135,136,138,139,140,142,144,145,146,149,151,152,153,155,157,159,160,161,162,163,164,168,169,170,171,172,174,175,178,179,183,190,191,192,193,195,197,199,200,201,214,215,220,222,228,229,231,236,237,279,293,297,303,314,333,341,342,343,344,347,353,354,357,358,375,376,381,395,397,398,400,402,406,407,411,420,422,425,429,452,457,461,468,470,473,474,478,480,481,482,483,484,490,491,494,496,500,512,519,547,548],wherea:[0,1,6,7,8,11,14,15,21,23,28,33,44,48,55,57,58,60,62,67,70,85,116,135,147,152,160,166,168,199,201,210,296,342,353,400,409,415,449,468,487],whereabout:138,wherebi:315,wherev:[10,58,80,110,122,137,170,187,192,193,245,314,342,358,380],whether:[28,46,55,76,95,96,121,134,157,163,164,174,201,208,209,216,222,227,229,236,293,312,313,314,316,384,390,402,415,431,448,463,468,469,473,490,492,496,499],whewiu:124,which:[0,1,6,7,8,9,10,12,14,15,16,17,19,20,21,23,24,26,28,29,30,31,32,33,35,36,37,39,41,42,44,45,46,47,48,49,51,52,54,55,57,58,60,62,63,65,67,68,69,70,73,74,75,80,81,82,85,89,90,91,93,94,95,96,98,107,109,110,111,112,114,116,117,118,119,122,123,124,126,128,129,130,131,132,133,134,135,136,137,138,140,141,142,143,144,146,147,149,151,153,154,155,156,157,158,159,160,161,162,163,164,166,167,168,169,170,171,172,173,174,175,176,177,178,179,183,184,186,187,188,189,192,193,195,197,199,200,201,203,208,209,213,215,216,217,219,220,222,228,229,230,233,234,236,237,238,245,248,251,264,274,277,279,284,287,290,293,296,297,303,306,312,313,314,315,316,320,326,333,341,342,343,344,350,354,358,368,370,374,375,376,380,381,384,390,394,398,400,401,402,406,407,409,410,411,413,415,417,419,420,424,425,429,432,438,440,448,449,451,452,459,460,461,463,466,468,469,470,471,473,474,476,477,480,481,482,483,484,487,489,490,492,493,494,496,499,505,512,519,522,525,527,528,529,536,542,545,547],whichev:[20,140,143,197,199,376],whilst:[98,170],whimper:138,whisk:282,whisp:[104,353],whisper:[26,94,95,117,126,228,264,277,279,353,354,402],whistl:58,white:[32,60,75,176,201,473,496],whitelist:32,whitenois:[110,117,356,358],whitespac:[0,16,20,23,125,126,130,144,162,166,175,230,306,354,473,474,482,496],who:[14,19,26,28,30,31,33,36,39,41,42,48,49,54,55,58,60,64,89,94,95,102,121,123,125,130,134,135,136,138,140,141,143,144,146,147,152,159,160,162,174,175,177,178,199,201,209,217,219,222,227,236,238,261,270,277,279,287,312,313,314,315,316,353,354,375,384,392,394,398,402,407,470,478,480,483,500,517],whoever:178,whole:[36,46,56,72,116,117,121,123,126,140,142,144,159,161,170,175,187,215,222,277,316,482,527],wholist:[19,236],whome:222,whomev:[146,174,368],whoopi:144,whose:[30,48,68,85,130,132,133,208,217,233,261,312,314,354,390,409,425,475,480,483,496],whould:480,why:[1,14,28,48,55,80,89,94,95,96,121,122,128,141,143,144,153,157,167,169,170,175,176,190,193,195,199,220,312,316,342,386,417,418,480],wick:468,wide:[20,30,35,56,67,115,116,135,146,153,157,162,169,187,220,314,315,333,479,482,496],widen:[55,144],wider:[0,55,153,157,220,482],widest:496,widget:[492,504,505,506,508,509,510,512,519,536],width:[0,18,20,23,30,31,32,41,56,116,153,159,170,205,217,341,344,425,440,459,473,478,479,481,482,483,496],wield:[0,41,46,112,141,145,167,313],wifi:[197,199],wiki:[23,48,64,69,84,121,122,124,147,162,165,170,181,201,245,293,448,548],wiki_account_handl:123,wiki_account_signup_allow:123,wiki_can:123,wiki_can_admin:123,wiki_can_assign:123,wiki_can_assign_own:123,wiki_can_change_permiss:123,wiki_can_delet:123,wiki_can_moder:123,wiki_can_read:123,wiki_can_writ:123,wikiconfig:123,wikipedia:[10,12,17,70,121,122,147,201,448],wil:19,wild:[53,69,116,130,140,176,343,344],wildcard:[36,55,116,161,220,222,341,343,344,496],wildcard_to_regexp:496,wilder:[205,206,239,318,548],wildernessexit:333,wildernessmap:333,wildernessmapprovid:[115,333],wildernessroom:333,wildernessscript:333,wildli:353,wildr:94,wilfr:94,will_suppress_ga:442,will_transform:130,will_ttyp:447,willing:[140,143,162,181,548],wim:75,win10:[193,195],win11:195,win7:[193,195],win8:195,win:[28,124,147,169,184,277],wind:[94,138,177],winder:142,windmil:296,window:[0,1,7,8,9,11,12,21,29,37,44,51,52,65,68,116,119,122,123,125,128,135,141,153,158,159,183,189,190,196,201,202,203,217,229,279,281,420,436,459,463,496],windowid:459,windows10:193,wine:[137,138],wingd:170,winpti:124,winter:[90,320],wintertim:141,wintext_templ:146,wip:[0,119,548],wipe:[11,12,14,15,19,26,89,124,126,135,170,183,215,222,232,281,314],wire:[20,62,65,68,70,122,187,197,231,417,429,430,461,473],wis:162,wisdom:7,wise:[1,12,15,16,17,33,73,133,141,162,172],wiser:[42,128,144],wish:[4,12,23,80,151,157,173,191,201,245,316,473,536],with_tag:309,withdraw:[147,316],withdrawl:316,within:[0,1,8,12,21,23,28,30,31,47,51,54,75,80,89,90,93,116,118,119,122,124,130,132,135,137,144,147,151,157,159,160,162,171,172,173,176,179,182,183,184,192,195,197,208,211,213,222,258,287,320,343,350,381,393,402,407,414,463,468,469,473,483,489,496,536,542,547],withot:342,without:[0,6,7,8,10,11,12,14,15,16,19,20,21,23,25,27,28,30,35,40,41,42,45,47,48,50,52,53,55,56,60,62,63,64,67,68,69,72,80,83,85,87,89,90,94,95,96,98,104,107,111,115,116,117,119,122,126,128,129,130,132,134,135,136,140,141,142,143,144,151,152,153,155,156,158,159,161,162,169,172,174,175,176,178,182,183,187,190,192,193,195,197,200,201,208,209,214,217,219,220,222,227,228,229,230,231,232,233,236,237,238,243,246,258,261,270,282,287,290,296,312,314,316,320,326,342,353,354,358,368,374,376,390,398,400,402,405,406,407,413,414,429,440,443,444,451,461,462,468,470,473,474,476,477,478,480,481,483,489,492,493,494,496,529],withstand:33,wiz:162,wizard:[0,41,94,142,202,376,407,418,420],wkei:222,wlocat:222,wlock:222,wmagic:315,wmass:315,wndb_:222,wnn:19,woah:[133,134],woman:[141,142],won:[6,13,14,15,17,21,48,49,51,54,55,60,65,67,80,89,91,95,96,105,117,119,123,126,130,134,135,139,140,142,146,152,155,161,164,166,168,169,170,175,179,180,183,192,195,216,339,363,368,384,386,465,473,492],wonder:[56,124,160,167],wont_suppress_ga:442,wont_ttyp:447,woo:126,wood:[85,142,296,297],wooden:[41,85,296,297],woodenpuppetrecip:85,woosh:152,word:[0,7,8,12,16,19,20,23,27,30,31,37,58,64,68,83,94,95,104,117,125,126,133,135,141,143,151,159,163,164,169,170,176,189,201,214,229,230,234,255,264,284,353,400,432,478,483,493,496,500,548],word_fil:353,word_length_vari:[104,353],wordi:353,work:[0,1,2,4,6,7,8,9,10,11,13,14,15,16,17,19,20,21,24,26,28,30,31,33,34,37,41,42,44,46,47,50,52,53,54,56,58,60,63,65,67,69,72,77,80,83,85,89,90,96,101,107,111,117,118,119,122,123,124,125,126,128,130,131,132,133,134,135,136,137,139,140,141,143,144,147,148,150,151,152,153,154,155,158,159,160,161,162,163,166,168,170,171,175,176,177,178,179,182,183,184,187,188,189,190,191,193,195,196,197,199,201,202,213,216,217,219,222,227,228,230,232,234,236,245,270,274,277,287,296,298,306,309,314,315,316,320,326,333,342,354,376,390,392,394,397,398,402,406,407,420,424,425,437,452,465,467,468,470,471,474,479,480,481,482,490,496,529,540,541,542,544,546,548],workaround:[12,192,195,202],workflow:[0,504,548],world:[0,10,14,15,16,17,19,20,21,23,28,31,37,39,41,53,54,67,69,70,77,85,86,89,94,98,101,110,115,116,117,119,121,122,124,125,127,129,133,134,136,139,143,145,146,147,148,152,157,159,161,162,163,167,170,171,174,175,180,181,189,190,197,200,201,208,221,222,227,229,251,287,296,306,312,313,314,315,316,318,333,341,354,358,372,375,376,392,394,410,459,461,473,474,484,494,548],world_map:170,worm:[142,159],worm_has_map:159,worn:[81,117,290,313],worri:[4,14,17,28,50,60,70,94,96,118,130,138,144,157,175,200,279,280,287],wors:[141,143,195],worst:140,worth:[7,14,28,42,48,58,96,118,141,142,143,152,155,169,178,182,287],worthi:140,worthless:197,would:[4,6,7,9,10,11,14,15,16,17,20,21,23,28,30,31,33,35,37,41,42,44,46,47,48,52,53,54,56,57,60,67,68,73,74,75,77,80,81,83,85,86,94,95,96,110,111,116,117,121,122,123,124,125,126,128,130,131,132,133,134,135,136,140,141,142,143,144,146,147,151,152,153,155,157,158,159,160,161,162,163,164,166,167,168,169,170,171,172,174,175,176,178,179,182,192,195,197,208,214,215,216,217,222,231,236,249,251,261,274,279,287,296,297,333,341,342,353,358,368,390,392,394,398,406,407,432,444,470,473,474,477,480,491,492,494,496,505,512],wouldn:[31,134,157,176],wound:315,wow:[143,164],wpass:[312,314,316],wpermiss:222,wprototype_desc:222,wprototype_kei:222,wprototype_lock:222,wprototype_par:222,wprototype_tag:222,wrap:[0,28,30,41,42,54,91,130,135,137,144,151,156,159,201,279,290,297,354,384,427,467,482,496],wrap_conflictual_object:492,wrapper:[0,7,14,20,28,32,44,48,54,67,85,155,208,211,237,238,282,284,326,358,394,395,401,402,410,414,425,427,459,468,470,471,473,482,483,487,488,489,496,507,512],wresid:232,write:[2,5,7,14,16,17,20,21,23,24,28,31,36,48,54,56,58,61,68,69,72,76,80,89,94,95,96,118,119,123,126,128,130,133,134,135,136,138,141,142,143,144,153,158,160,162,163,169,175,183,186,188,189,193,195,222,227,229,236,243,245,274,380,381,402,429,433,489,494,545,547,548],writeabl:191,written:[17,19,20,41,52,116,119,126,130,132,133,134,135,136,137,160,161,162,164,178,179,181,185,199,204,229,342,380,474,545],wrong:[0,1,6,10,14,135,141,166,168,183,195,201,203,215,222,232,296,298,354],wrote:[130,133,494],wserver:232,wservic:227,wsgi:[182,465],wsgi_resourc:465,wsgiwebserv:465,wshoot:316,wsl:[119,193,195],wss:[182,197,201,202,548],wstatu:316,wtypeclass:222,wuse:314,wwhere:402,wwithdraw:316,www:[11,49,69,80,119,121,122,124,157,178,182,197,201,205,232,435,436,442,444,495,499,536],wyou:167,x0c:222,x1b:[473,495],x2x:162,x4x:479,x5x:479,x6x:479,x7x:479,x8x:479,x9x:479,x_r:157,xcode:195,xforward:465,xgettext:64,xgiven:344,xit:[80,245],xmlcharrefreplac:473,xp_gain:146,xpo:482,xtag:499,xterm256:[32,51,65,71,82,135,165,166,201,219,248,350,425,440,443,473,548],xterm256_bg:473,xterm256_bg_sub:473,xterm256_fg:473,xterm256_fg_sub:473,xterm256_gbg:473,xterm256_gbg_sub:473,xterm256_gfg:473,xterm256_gfg_sub:473,xterm:[60,135,176],xterm_bg_cod:495,xterm_fg_cod:495,xterms256:60,xval:23,xviewmiddlewar:201,xxx:[6,105,153,386],xxxx:[105,386],xxxxx1xxxxx:479,xxxxx3xxxxx:479,xxxxx:94,xxxxxxx2xxxxxxx:479,xxxxxxxxxx3xxxxxxxxxxx:162,xxxxxxxxxx4xxxxxxxxxxx:162,xxxxxxxxxxx:479,xxxxxxxxxxxxxx1xxxxxxxxxxxxxxx:162,xxxxxxxxxxxxxxxxxxxxxx:162,xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx:162,xygrid:[341,342],xymap:[205,206,239,318,334,335,336,339,342,343,344],xymap_data:[116,341,343],xymap_data_list:[116,341,343],xymap_legend:[116,205,206,239,318,334,336,339],xyroom:344,xyz:[36,116,335,338,342,343,344],xyz_destin:[116,344],xyz_destination_coord:344,xyz_exit:[116,338,342],xyz_room:[116,338,342],xyzcommand:[116,336,337],xyzexit:[343,344],xyzexit_prototype_overrid:116,xyzexitmanag:344,xyzgrid:[0,205,206,239,318,548],xyzgrid_cmdset:335,xyzgrid_use_db_prototyp:116,xyzgridcmdset:[116,335],xyzmanag:344,xyzmap:116,xyzroom:[205,206,239,318,334,343],xyzroom_prototype_overrid:116,y_r:157,yai:201,yan:[60,473],yank:27,yard:113,year:[0,68,69,75,86,94,117,118,121,125,142,163,197,251,484,489,496,536],yearli:[163,197],yeast:[85,117,296],yellow:[12,60,116,176,375],yer:141,yes:[0,23,28,54,58,95,119,157,176,222,232,264,418,478,480,496],yes_act:480,yes_no_question_cmdset:480,yesno:[28,119,478],yesnoquestioncmdset:480,yet:[0,4,6,11,12,13,16,25,28,41,44,55,64,67,80,84,95,96,98,116,117,122,123,126,130,133,143,144,153,154,159,170,174,178,179,185,187,190,193,195,197,204,208,227,234,255,261,287,293,342,368,398,401,414,438,461,465,473,543],yield:[0,23,33,54,69,76,183,222,381,482,494,496],yml:[5,192],yogurt:[103,309],yoshimura:75,you:[0,2,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,23,25,27,28,30,31,32,33,34,35,36,37,39,40,41,42,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,62,63,64,65,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,88,89,90,91,93,94,95,96,97,98,99,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,122,123,124,126,127,128,129,130,131,132,133,135,136,137,139,140,141,143,144,145,146,147,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,203,208,216,217,219,222,227,228,229,230,231,232,233,234,236,245,248,251,259,260,261,264,270,274,277,279,280,284,287,290,293,296,297,303,306,309,312,313,314,315,316,320,326,329,333,335,337,341,342,350,353,354,357,358,363,368,370,375,376,380,381,384,386,390,392,397,398,402,407,411,412,413,414,415,422,431,432,433,449,451,461,463,465,466,468,470,471,473,474,476,479,480,482,483,484,492,493,494,496,499,500,501,516,519,521,522,536,545,547,548],you_obj:30,you_replac:277,your:[0,2,4,5,6,7,9,14,15,16,17,18,19,20,21,24,25,27,28,30,31,33,35,36,39,41,42,44,45,46,47,48,49,50,52,53,54,55,56,58,60,61,63,64,65,68,70,72,73,74,75,76,77,79,80,81,82,83,84,85,86,87,88,90,91,92,93,94,95,96,98,99,101,104,106,107,108,111,112,113,114,115,116,117,118,119,121,122,124,125,127,130,131,133,134,135,136,137,138,139,140,141,144,145,146,147,148,149,150,151,152,153,155,156,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,179,180,181,182,183,185,186,187,188,189,190,191,193,194,196,198,200,201,202,203,205,206,208,211,214,216,217,219,220,222,227,228,229,232,233,234,239,245,246,248,251,255,260,274,277,279,287,290,293,296,297,312,313,314,315,316,320,326,329,333,335,336,341,345,347,350,353,354,356,363,368,375,376,380,381,384,386,390,397,398,401,451,470,473,478,480,482,483,492,493,494,496,497,500,501,505,512,522,536,542,545,548],your_act:279,your_bucket_nam:75,your_email:[12,201],yourchannelcommandnam:236,yourchar:135,yourgam:380,yourgamenam:75,yourhostnam:187,yournam:[118,126,133,134,182],yourpassword:183,yourrepo:9,yourself:[1,5,6,10,12,13,16,21,28,33,37,48,53,56,57,58,67,69,73,75,80,94,96,98,107,110,113,116,117,118,119,121,125,127,134,135,137,139,141,142,143,144,146,162,164,169,170,175,180,183,195,197,222,228,277,279,287,300,315,326,335,354,358,363,480,483,500,501],yourselv:[58,483,500,501],yoursit:178,yourtest:10,yourusernam:12,yourwebsit:178,yousuck:55,yousuckmor:55,youth:[91,384],youtub:12,ypo:482,yrs:251,ythi:60,yum:[12,182,187],yvonn:162,z_destin:344,z_r:157,z_sourc:344,zcoord:[335,339,341,343],zero:[20,35,41,128,133,135,137,195,227,293,296,343,354,395,402,468,473,483],zip:199,zlib:[191,429,433],zmud:[184,435],zone:[46,61,95,132,143,160,181,201,471,489,548],zoord:343,zopeinterfac:195,zuggsoft:435},titles:["Changelog","Coding Introduction","Coding and development help","Continuous Integration","Continuous Integration - TeamCity (linux)","Continuous integration with Travis","Debugging","Profiling","Quirks","Setting up PyCharm with Evennia","Unit Testing","Updating Your Game","Version Control","Accounts","Attributes","Batch Code Processor","Batch Command Processor","Batch Processors","Bootstrap Components and Utilities","Channels","Coding Utils","Command Sets","Command System","Commands","Core Components","Connection Screen","Default Commands","EvEditor","EvMenu","EvMore","The Inline Function Parser","Help System","Inputfuncs","Locks","MonitorHandler","Msg","Nicks","Objects","Outputfuncs","Permissions","Portal And Server","Spawner and Prototypes","Scripts","Server component","Sessions","Signals","Tags","TickerHandler","Typeclasses","Evennia REST API","The Web Admin","Web Client","Webserver","Game website","Async Process","Banning","Bootstrap & Evennia","Building Permissions","Sending different messages depending on viewpoint and receiver","Clickable links","Colors","Core Concepts","Custom Protocols","Guest Logins","Internationalization","Messagepath","Multisession modes","New Models","OOB","Soft Code","Text Encodings","In-text tags parsed by Evennia","Using MUX as a Standard","Web Features","Zones","AWSstorage system","Input/Output Auditing","Barter system","Batch processor examples","Script example","Building menu","Clothing","Additional Color markups","Components","Cooldowns","Crafting system","Custom gameime","Dice roller","Email-based login system","EvscapeRoom","Extended Room","Easy fillable form","Gendersub","Health Bar","Evennia in-game Python system","Dialogues in events","A voice operated elevator using events","In-Game Mail system","Map Builder","Menu-based login system","TutorialMirror","Evennia Multidescer","Legacy Comms-commands","Puzzles System","Roleplaying base system for Evennia","Pseudo-random generator and registry","Red Button example","SimpleDoor","Slow Exit","Talkative NPC example","Traits","Easy menu selection tree","Turn based battle system framework","Evennia Tutorial World","Unix-like Command style","Wilderness system","XYZgrid","Contribs","How To Contribute And Get Help","Contributing to Evennia Docs","API Summary","Evennia Introduction","Glossary","Add a wiki on your website","Arxcode installing help","Beginner Tutorial","8. Adding custom commands","Part 1: What we have","1. Using commands and building stuff","10. Creating things","12. Advanced searching - Django Database queries","6. Overview of the Evennia library","4. Overview of your new Game Dir","7. Making objects persistent","9. Parsing Command input","3. Intro to using Python with Evennia","5. Introduction to Python classes and objects","11. Searching for things","2. The Tutorial World","Part 2: What we want","On Planning a Game","Planning the use of some useful contribs","Planning our tutorial game","Where do I begin?","Making a sittable object","Part 3: How we get there","Implementing a game rule system","Turn based Combat System","Part 4: Using what we created","Add a simple new web page","Part 5: Showing the world","Web Tutorial","Building a mech tutorial","Coding FAQ","Command Cooldown","Command Duration","Command Prompt","Coordinates","Default Exit Errors","Dynamic In Game Map","Evennia for Diku Users","Evennia for MUSH Users","Evennia for roleplaying sessions","Gametime Tutorial","Help System Tutorial","Tutorials and Howto\u2019s","Manually Configuring Color","Mass and weight for objects","NPC shop Tutorial","Parsing command arguments, theory and best practices","Static In Game Map","Tutorial Aggressive NPCs","Tutorial NPCs listening","Tutorial Tweeting Game Stats","Tutorial Vehicles","Tutorial for basic MUSH like game","Understanding Color Tags","Weather Tutorial","Web Character Generation","Web Character View Tutorial","Licensing Q&A","Links","Apache Config","Choosing An SQL Server","Client Support Grid","Evennia Game Index","Grapevine","Making Evennia, HTTPS and WSS (Secure Websockets) play nicely together","How to connect Evennia to Twitter","IRC","Installation","Installing on Android","Installing with Docker","Installing with GIT","Non-interactive setup","Installation Troubleshooting","Upgrading an existing installation","Online Setup","RSS","Security","Game Settings and Configuration direcotry","Evennia Default settings file","Server Setup and Life","Start Stop Reload","Unimplemented","evennia","evennia","evennia.accounts","evennia.accounts.accounts","evennia.accounts.bots","evennia.accounts.manager","evennia.accounts.models","evennia.commands","evennia.commands.cmdhandler","evennia.commands.cmdparser","evennia.commands.cmdset","evennia.commands.cmdsethandler","evennia.commands.command","evennia.commands.default","evennia.commands.default.account","evennia.commands.default.admin","evennia.commands.default.batchprocess","evennia.commands.default.building","evennia.commands.default.cmdset_account","evennia.commands.default.cmdset_character","evennia.commands.default.cmdset_session","evennia.commands.default.cmdset_unloggedin","evennia.commands.default.comms","evennia.commands.default.general","evennia.commands.default.help","evennia.commands.default.muxcommand","evennia.commands.default.syscommands","evennia.commands.default.system","evennia.commands.default.tests","evennia.commands.default.unloggedin","evennia.comms","evennia.comms.comms","evennia.comms.managers","evennia.comms.models","evennia.contrib","evennia.contrib.base_systems","evennia.contrib.base_systems.awsstorage","evennia.contrib.base_systems.awsstorage.aws_s3_cdn","evennia.contrib.base_systems.awsstorage.tests","evennia.contrib.base_systems.building_menu","evennia.contrib.base_systems.building_menu.building_menu","evennia.contrib.base_systems.building_menu.tests","evennia.contrib.base_systems.color_markups","evennia.contrib.base_systems.color_markups.color_markups","evennia.contrib.base_systems.color_markups.tests","evennia.contrib.base_systems.custom_gametime","evennia.contrib.base_systems.custom_gametime.custom_gametime","evennia.contrib.base_systems.custom_gametime.tests","evennia.contrib.base_systems.email_login","evennia.contrib.base_systems.email_login.connection_screens","evennia.contrib.base_systems.email_login.email_login","evennia.contrib.base_systems.email_login.tests","evennia.contrib.base_systems.ingame_python","evennia.contrib.base_systems.ingame_python.callbackhandler","evennia.contrib.base_systems.ingame_python.commands","evennia.contrib.base_systems.ingame_python.eventfuncs","evennia.contrib.base_systems.ingame_python.scripts","evennia.contrib.base_systems.ingame_python.tests","evennia.contrib.base_systems.ingame_python.typeclasses","evennia.contrib.base_systems.ingame_python.utils","evennia.contrib.base_systems.menu_login","evennia.contrib.base_systems.menu_login.connection_screens","evennia.contrib.base_systems.menu_login.menu_login","evennia.contrib.base_systems.menu_login.tests","evennia.contrib.base_systems.mux_comms_cmds","evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds","evennia.contrib.base_systems.mux_comms_cmds.tests","evennia.contrib.base_systems.unixcommand","evennia.contrib.base_systems.unixcommand.tests","evennia.contrib.base_systems.unixcommand.unixcommand","evennia.contrib.full_systems","evennia.contrib.full_systems.evscaperoom","evennia.contrib.full_systems.evscaperoom.commands","evennia.contrib.full_systems.evscaperoom.menu","evennia.contrib.full_systems.evscaperoom.objects","evennia.contrib.full_systems.evscaperoom.room","evennia.contrib.full_systems.evscaperoom.scripts","evennia.contrib.full_systems.evscaperoom.state","evennia.contrib.full_systems.evscaperoom.tests","evennia.contrib.full_systems.evscaperoom.utils","evennia.contrib.game_systems","evennia.contrib.game_systems.barter","evennia.contrib.game_systems.barter.barter","evennia.contrib.game_systems.barter.tests","evennia.contrib.game_systems.clothing","evennia.contrib.game_systems.clothing.clothing","evennia.contrib.game_systems.clothing.tests","evennia.contrib.game_systems.cooldowns","evennia.contrib.game_systems.cooldowns.cooldowns","evennia.contrib.game_systems.cooldowns.tests","evennia.contrib.game_systems.crafting","evennia.contrib.game_systems.crafting.crafting","evennia.contrib.game_systems.crafting.example_recipes","evennia.contrib.game_systems.crafting.tests","evennia.contrib.game_systems.gendersub","evennia.contrib.game_systems.gendersub.gendersub","evennia.contrib.game_systems.gendersub.tests","evennia.contrib.game_systems.mail","evennia.contrib.game_systems.mail.mail","evennia.contrib.game_systems.mail.tests","evennia.contrib.game_systems.multidescer","evennia.contrib.game_systems.multidescer.multidescer","evennia.contrib.game_systems.multidescer.tests","evennia.contrib.game_systems.puzzles","evennia.contrib.game_systems.puzzles.puzzles","evennia.contrib.game_systems.puzzles.tests","evennia.contrib.game_systems.turnbattle","evennia.contrib.game_systems.turnbattle.tb_basic","evennia.contrib.game_systems.turnbattle.tb_equip","evennia.contrib.game_systems.turnbattle.tb_items","evennia.contrib.game_systems.turnbattle.tb_magic","evennia.contrib.game_systems.turnbattle.tb_range","evennia.contrib.game_systems.turnbattle.tests","evennia.contrib.grid","evennia.contrib.grid.extended_room","evennia.contrib.grid.extended_room.extended_room","evennia.contrib.grid.extended_room.tests","evennia.contrib.grid.mapbuilder","evennia.contrib.grid.mapbuilder.mapbuilder","evennia.contrib.grid.mapbuilder.tests","evennia.contrib.grid.simpledoor","evennia.contrib.grid.simpledoor.simpledoor","evennia.contrib.grid.simpledoor.tests","evennia.contrib.grid.slow_exit","evennia.contrib.grid.slow_exit.slow_exit","evennia.contrib.grid.slow_exit.tests","evennia.contrib.grid.wilderness","evennia.contrib.grid.wilderness.tests","evennia.contrib.grid.wilderness.wilderness","evennia.contrib.grid.xyzgrid","evennia.contrib.grid.xyzgrid.commands","evennia.contrib.grid.xyzgrid.example","evennia.contrib.grid.xyzgrid.launchcmd","evennia.contrib.grid.xyzgrid.prototypes","evennia.contrib.grid.xyzgrid.tests","evennia.contrib.grid.xyzgrid.utils","evennia.contrib.grid.xyzgrid.xymap","evennia.contrib.grid.xyzgrid.xymap_legend","evennia.contrib.grid.xyzgrid.xyzgrid","evennia.contrib.grid.xyzgrid.xyzroom","evennia.contrib.rpg","evennia.contrib.rpg.dice","evennia.contrib.rpg.dice.dice","evennia.contrib.rpg.dice.tests","evennia.contrib.rpg.health_bar","evennia.contrib.rpg.health_bar.health_bar","evennia.contrib.rpg.health_bar.tests","evennia.contrib.rpg.rpsystem","evennia.contrib.rpg.rpsystem.rplanguage","evennia.contrib.rpg.rpsystem.rpsystem","evennia.contrib.rpg.rpsystem.tests","evennia.contrib.rpg.traits","evennia.contrib.rpg.traits.tests","evennia.contrib.rpg.traits.traits","evennia.contrib.tutorials","evennia.contrib.tutorials.batchprocessor","evennia.contrib.tutorials.batchprocessor.example_batch_code","evennia.contrib.tutorials.bodyfunctions","evennia.contrib.tutorials.bodyfunctions.bodyfunctions","evennia.contrib.tutorials.bodyfunctions.tests","evennia.contrib.tutorials.mirror","evennia.contrib.tutorials.mirror.mirror","evennia.contrib.tutorials.red_button","evennia.contrib.tutorials.red_button.red_button","evennia.contrib.tutorials.talking_npc","evennia.contrib.tutorials.talking_npc.talking_npc","evennia.contrib.tutorials.talking_npc.tests","evennia.contrib.tutorials.tutorial_world","evennia.contrib.tutorials.tutorial_world.intro_menu","evennia.contrib.tutorials.tutorial_world.mob","evennia.contrib.tutorials.tutorial_world.objects","evennia.contrib.tutorials.tutorial_world.rooms","evennia.contrib.tutorials.tutorial_world.tests","evennia.contrib.utils","evennia.contrib.utils.auditing","evennia.contrib.utils.auditing.outputs","evennia.contrib.utils.auditing.server","evennia.contrib.utils.auditing.tests","evennia.contrib.utils.fieldfill","evennia.contrib.utils.fieldfill.fieldfill","evennia.contrib.utils.random_string_generator","evennia.contrib.utils.random_string_generator.random_string_generator","evennia.contrib.utils.random_string_generator.tests","evennia.contrib.utils.tree_select","evennia.contrib.utils.tree_select.tests","evennia.contrib.utils.tree_select.tree_select","evennia.help","evennia.help.filehelp","evennia.help.manager","evennia.help.models","evennia.help.utils","evennia.locks","evennia.locks.lockfuncs","evennia.locks.lockhandler","evennia.objects","evennia.objects.manager","evennia.objects.models","evennia.objects.objects","evennia.prototypes","evennia.prototypes.menus","evennia.prototypes.protfuncs","evennia.prototypes.prototypes","evennia.prototypes.spawner","evennia.scripts","evennia.scripts.manager","evennia.scripts.models","evennia.scripts.monitorhandler","evennia.scripts.scripthandler","evennia.scripts.scripts","evennia.scripts.taskhandler","evennia.scripts.tickerhandler","evennia.server","evennia.server.amp_client","evennia.server.connection_wizard","evennia.server.deprecations","evennia.server.evennia_launcher","evennia.server.game_index_client","evennia.server.game_index_client.client","evennia.server.game_index_client.service","evennia.server.initial_setup","evennia.server.inputfuncs","evennia.server.manager","evennia.server.models","evennia.server.portal","evennia.server.portal.amp","evennia.server.portal.amp_server","evennia.server.portal.grapevine","evennia.server.portal.irc","evennia.server.portal.mccp","evennia.server.portal.mssp","evennia.server.portal.mxp","evennia.server.portal.naws","evennia.server.portal.portal","evennia.server.portal.portalsessionhandler","evennia.server.portal.rss","evennia.server.portal.ssh","evennia.server.portal.ssl","evennia.server.portal.suppress_ga","evennia.server.portal.telnet","evennia.server.portal.telnet_oob","evennia.server.portal.telnet_ssl","evennia.server.portal.tests","evennia.server.portal.ttype","evennia.server.portal.webclient","evennia.server.portal.webclient_ajax","evennia.server.profiling","evennia.server.profiling.dummyrunner","evennia.server.profiling.dummyrunner_settings","evennia.server.profiling.memplot","evennia.server.profiling.settings_mixin","evennia.server.profiling.test_queries","evennia.server.profiling.tests","evennia.server.profiling.timetrace","evennia.server.server","evennia.server.serversession","evennia.server.session","evennia.server.sessionhandler","evennia.server.signals","evennia.server.throttle","evennia.server.validators","evennia.server.webserver","evennia.settings_default","evennia.typeclasses","evennia.typeclasses.attributes","evennia.typeclasses.managers","evennia.typeclasses.models","evennia.typeclasses.tags","evennia.utils","evennia.utils.ansi","evennia.utils.batchprocessors","evennia.utils.containers","evennia.utils.create","evennia.utils.dbserialize","evennia.utils.eveditor","evennia.utils.evform","evennia.utils.evmenu","evennia.utils.evmore","evennia.utils.evtable","evennia.utils.funcparser","evennia.utils.gametime","evennia.utils.idmapper","evennia.utils.idmapper.manager","evennia.utils.idmapper.models","evennia.utils.idmapper.tests","evennia.utils.logger","evennia.utils.optionclasses","evennia.utils.optionhandler","evennia.utils.picklefield","evennia.utils.search","evennia.utils.test_resources","evennia.utils.text2html","evennia.utils.utils","evennia.utils.validatorfuncs","evennia.utils.verb_conjugation","evennia.utils.verb_conjugation.conjugate","evennia.utils.verb_conjugation.pronouns","evennia.utils.verb_conjugation.tests","evennia.web","evennia.web.admin","evennia.web.admin.accounts","evennia.web.admin.attributes","evennia.web.admin.comms","evennia.web.admin.frontpage","evennia.web.admin.help","evennia.web.admin.objects","evennia.web.admin.scripts","evennia.web.admin.server","evennia.web.admin.tags","evennia.web.admin.urls","evennia.web.admin.utils","evennia.web.api","evennia.web.api.filters","evennia.web.api.permissions","evennia.web.api.root","evennia.web.api.serializers","evennia.web.api.tests","evennia.web.api.urls","evennia.web.api.views","evennia.web.templatetags","evennia.web.templatetags.addclass","evennia.web.urls","evennia.web.utils","evennia.web.utils.adminsite","evennia.web.utils.backends","evennia.web.utils.general_context","evennia.web.utils.middleware","evennia.web.utils.tests","evennia.web.webclient","evennia.web.webclient.urls","evennia.web.webclient.views","evennia.web.website","evennia.web.website.forms","evennia.web.website.tests","evennia.web.website.urls","evennia.web.website.views","evennia.web.website.views.accounts","evennia.web.website.views.channels","evennia.web.website.views.characters","evennia.web.website.views.errors","evennia.web.website.views.help","evennia.web.website.views.index","evennia.web.website.views.mixins","evennia.web.website.views.objects","Evennia Documentation"],titleterms:{"2010":0,"2011":0,"2012":0,"2013":0,"2014":0,"2015":0,"2016":0,"2017":0,"break":130,"case":[96,142],"class":[10,20,23,48,80,94,132,133,136,142],"default":[26,30,32,33,51,53,116,133,134,153,156,158,201,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234],"final":[159,191],"function":[6,30,33,37,53,80,120,135,137],"goto":28,"import":[1,8,105,116,119,131,135,136],"new":[0,8,10,42,48,53,67,85,94,123,132,133,142,149,162,164,178,190],"public":[185,202],"return":[28,44,130,135],"static":[110,170,358],"super":[57,134],AWS:75,Adding:[21,32,37,46,50,53,62,67,85,94,96,123,124,126,128,134,153,157,158,174,178],And:[40,118],Are:142,Going:202,One:[98,116],PMs:162,TLS:182,The:[1,7,15,16,27,28,30,31,39,41,42,50,54,56,57,65,73,83,94,95,116,117,138,140,143,147,149,155,159,162,164,168,175,190],Use:[1,199],Uses:30,Using:[7,10,14,19,29,30,31,34,41,46,53,67,72,74,94,110,118,128,148,159,197,358],Will:142,Yes:28,_famili:130,_should:142,abl:142,abort:155,about:[8,11,47,48,116,136,142,155],absolut:131,abus:55,access:[50,61],access_typ:33,account:[8,13,50,75,122,129,142,162,207,208,209,210,211,219,504,540],across:144,action:142,activ:[142,161,178],actor:58,actor_stance_cal:30,actual:[23,48],add:[53,123,149,153,183],add_choic:80,addclass:524,addit:[82,124,157,192],address:153,admin:[8,50,73,122,220,503,504,505,506,507,508,509,510,511,512,513,514],administr:[19,140,142],adminsit:527,advanc:[36,120,130,134,155,183,203],aggress:171,alia:8,alias:[46,137],all:[94,133,142,153,164,187,548],allow:[19,142],alpha:140,also:142,altern:[9,124],amount:142,amp:429,amp_client:417,amp_serv:430,analyz:7,android:191,ani:[15,121],annot:130,anoth:[42,119,134],ansi:[20,60,176,473],apach:182,api:[8,49,51,119,120,131,515,516,517,518,519,520,521,522],app:[164,178],appear:142,april:0,arbitrari:28,area:[170,175],arg:169,arg_regex:23,argument:[28,133,135,169],arm:152,around:128,arx:124,arxcod:124,ascii:20,ask:[23,28],asset:143,assign:[23,57],assort:[16,21,23,28,46,54,62,172],async:54,asynchron:54,at_object_cr:133,attach:[9,42,45],attack:[142,175],attribut:[8,14,50,122,133,137,468,505],attributeproperti:14,audit:[76,117,379,380,381,382],aug:0,auto:31,automat:153,avail:[25,45],awai:2,aws_s3_cdn:242,awsstorag:[75,117,241,242,243],backend:528,ban:55,bank:142,bar:93,barter:[77,117,141,142,286,287,288],base:[0,41,88,99,104,112,116,142,147,153,181],base_system:[117,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274],basic:[15,16,52,80,94,121,123,151,175,188],batch:[15,16,17,78,474],batchcod:15,batchprocess:221,batchprocessor:[117,360,361,474],battl:112,befor:1,begin:143,beginn:[125,127,139,145,150,165],behavior:19,best:169,beta:140,between:[15,28,48],block:[15,116,119,155],blockquot:119,blog:181,blurb:53,board:142,bodyfunct:[117,362,363,364],bold:119,boot:55,bootstrap:[18,56],border:18,bot:209,branch:28,brief:164,briefli:68,broken:142,build:[50,57,80,119,128,140,142,152,159,162,168,170,222],builder:[98,142],building_menu:[117,244,245,246],built:142,bulletin:142,busi:168,button:[18,106,128],calendar:163,call:[23,94,133],call_ev:94,callabl:30,callback:[51,94,95,96],callbackhandl:258,caller:28,can:[14,80,121,136,137,142],cannot:142,capabl:142,capcha:178,card:18,care:199,carri:142,cast:297,caveat:[15,16,48,60,191],certain:130,certif:187,chain:94,chair:[142,144],chang:[0,8,11,12,50,53,64,69,90,94,96,119,133,142,151,153,162,199],changelog:0,channel:[19,122,142,153,162,541],charact:[19,30,37,50,95,122,133,140,142,144,146,153,162,167,175,178,179,184,542],chargen:175,chat:19,cheat:6,check:[14,33,39,75,195],checker:1,checkpoint:178,children:136,choic:80,choos:183,clean:124,clickabl:59,client:[51,65,68,73,125,184,197,422],client_opt:32,clone:12,cloth:[81,117,141,289,290,291],cloud9:197,cmdhandler:213,cmdparser:214,cmdset:[126,134,215],cmdset_account:223,cmdset_charact:224,cmdset_sess:225,cmdset_unloggedin:226,cmdsethandl:216,code:[1,2,6,11,12,14,15,19,20,27,35,36,42,69,80,87,94,118,119,126,135,140,142,146,153,168,181,182,296,474],coin:142,collabor:161,color:[18,20,53,60,82,135,153,166,176],color_markup:[117,247,248,249],colour:60,combat:[147,175],comfort:192,comm:[102,227,235,236,237,238,506],command:[0,6,8,16,21,22,23,24,25,26,31,42,80,90,94,102,114,120,125,126,128,132,133,134,135,144,147,153,154,155,156,158,162,163,166,168,169,174,175,188,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,259,277,335,474],comment:[113,136,159],commit:12,commom:53,common:37,commun:[15,118,181],complet:33,complex:[80,130],compon:[18,24,43,83,117,342],comput:197,con:83,concept:[61,142,147,159],conclud:[157,175],conclus:[80,130,133,135,141,142,143,144,169,170],condit:153,conf:[132,200],config:[120,166,182],configur:[9,12,75,76,166,178,182,183,186,187,188,189,190,198,200,202],confus:195,congratul:140,conjug:499,connect:[8,25,185,188,197],connection_screen:[254,266],connection_wizard:418,contain:[42,192,475],content:[127,139,145,148,150,153],continu:[3,4,5,144],contrib:[0,10,83,117,118,122,141,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390],contribut:[118,119,120],control:12,convert:[30,169],cooldown:[84,117,154,292,293,294],coordin:157,copi:182,core:[10,24,61,120,122,160],cost:75,counter:[110,358],cprofil:7,craft:[85,117,142,295,296,297,298],crafter:85,creat:[4,8,13,20,23,37,48,55,67,94,96,120,126,128,129,133,135,142,148,149,152,164,170,174,175,178,192,476],create_object:133,createnpc:175,creation:143,creatur:192,credit:[133,138],crop:20,current:[6,163],custom:[10,19,28,30,31,33,44,49,50,51,53,54,62,70,73,80,85,86,123,126,161,163,166],custom_gametim:[117,250,251,252],customis:[115,333],dai:142,data:[9,14,28,44,52,62],databas:[8,11,24,31,41,67,120,124,130,133],dbref:137,dbserial:477,deal:42,death:142,debug:[6,15,199],debugg:9,dec:0,decid:142,decor:[28,54],dedent:20,dedic:178,deep:165,deeper:85,defaultobject:8,defeat:142,defin:[12,21,23,28,30,33,42,67,116],definit:33,delai:[20,42,54,155],delimit:153,demo:140,deni:94,depend:[11,58,75,124],deploi:192,deprec:[119,419],desc:[28,110,358],descer:161,descript:[90,142],design:[89,168],detail:[75,90,103,115,116,164,178,333],detect:142,dev:181,develop:[2,161,192,199,203],dialogu:95,dice:[87,117,141,162,346,347,348],dictionari:28,differ:[48,58,142,160],diku:160,dir:[10,125,132],direcotri:200,direct:119,director:58,directori:[197,200],disabl:[94,199],displai:[20,159,163,184],distribut:0,dive:165,django:[0,33,73,122,130,178,203],doc:[1,119],docker:192,docstr:[119,136],document:[72,118,119,548],doe:142,doing:143,don:[15,121,144,192],donat:118,done:138,down:[116,128,174,203],dummyrunn:[7,451],dummyrunner_set:452,durat:155,dure:203,dynam:[23,28,159],each:[137,142],easi:[91,111],echo:32,economi:142,edit:[27,80,94,119,175],editnpc:175,editor:[27,94,125],elev:96,els:142,email:88,email_login:[117,253,254,255,256],emot:104,emul:160,encod:[17,70],encrypt:197,enemi:142,enforc:142,engin:143,enjoi:182,enough:[138,142],enter:174,entir:96,entit:24,entiti:142,entri:[31,128],error:[42,126,135,158,203,543],escap:30,eval:119,eveditor:[27,478],even:85,evennia:[0,1,6,8,9,10,11,12,30,41,49,51,56,64,71,74,75,94,101,104,113,118,119,121,123,124,131,135,142,153,160,161,162,169,176,181,182,183,185,187,188,190,191,192,196,197,201,203,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548],evennia_launch:420,event:[94,95,96,163],eventfunc:[94,260],everi:156,everyth:80,evform:[162,479],evmenu:[0,28,153,480],evmor:[29,481],evscaperoom:[89,117,276,277,278,279,280,281,282,283,284],evtabl:[153,162,482],examin:[6,94,133],exampl:[6,27,28,30,33,39,42,51,53,69,78,79,80,82,83,84,85,95,98,105,106,109,115,116,131,146,147,157,197,333,336,474],example_batch_cod:361,example_recip:297,except:144,execut:6,exist:[48,142,196],exit:[23,37,96,108,153,158,329],expand:[110,147,174,358],experi:142,explan:80,explor:[1,131],extend:[61,90,116,141],extended_room:[117,319,320,321],extern:[119,199],extra:[90,94,133,138],fail:[142,195],familiar:[160,161],faq:153,faster:10,featur:[61,73,90,164],feb:0,feel:160,field:[91,122,130],fieldfil:[117,383,384],fight:142,figur:126,file:[12,15,16,17,31,119,200,201,474],filehelp:392,fill:20,fillabl:91,filter:516,find:[135,137,157],firewal:199,first:[80,95,96,116,133,135,161],fix:12,flat:[8,53],flexibl:119,flow:[52,142],flower:142,folder:[1,12,124],foreground:203,forget:8,fork:[12,118],form:[18,53,91,142,178,536],formal:142,format:[28,135],found:195,framework:[112,181],friarzen:0,from:[8,28,31,51,87,121,123,128,135,153,178,192,197,480],front:[53,151],frontpag:507,full:[80,83,164],full_system:[117,275,276,277,278,279,280,281,282,283,284],func:39,funcpars:[30,483],funcparser_cal:30,further:[54,151,182],futur:152,gain:142,game:[0,1,10,11,12,14,19,20,31,42,53,89,94,97,121,125,132,140,142,143,146,157,159,161,162,163,170,173,175,181,185,190,192,197,200,296],game_index_cli:[421,422,423],game_system:[117,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317],gamedir:119,gameim:86,gameplai:138,gametim:[163,484],gaug:[110,358],gendersub:[92,117,299,300,301],gener:[0,18,61,80,105,142,175,178,181,228,480],general_context:529,get:[28,94,118,128,130,145,187],get_client_opt:32,get_input:28,get_inputfunc:32,get_valu:32,git:[12,122,193,195],github:[12,122],give:142,given:46,global:[120,142,169],global_script:42,glossari:122,gmcp:68,godhood:128,golden:0,goldenlayout:51,good:136,googl:178,grant:[50,162],grapevin:[186,431],graphic:135,grid:[116,117,159,184,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344],group:130,guest:63,guid:124,guidelin:118,had:138,handl:[55,142,164,199,203],handler:[45,120,147],haproxi:187,have:[127,136,142,175],head:119,health:93,health_bar:[117,349,350,351],hello:135,help:[1,2,31,118,124,128,164,229,391,392,393,394,395,508,544],here:[1,121],hidden:142,hide:142,hierarchi:[39,142,162],hint:[7,42,64,113,138,182],hit:126,hold:134,hook:48,host:197,hous:128,how:[13,23,37,48,70,83,118,142,145,162,174,188,192],howto:165,html:[53,149,178],http:[182,187],human:142,idea:77,idmapp:[485,486,487,488],imag:[192,199],implement:[115,142,146,333],improv:[142,164],index:[0,164,178,185,190,545],infinit:142,influenc:142,info:[77,203],inform:[181,197],infrastructur:146,ingame_python:[117,257,258,259,260,261,262,263,264],ingo:65,inherit:[41,74,136],inherits_from:20,init:[131,133],initi:[0,147,153,183,190],initial_setup:424,inlin:30,input:[23,28,30,68,76,134,135],inputfunc:[32,65,425],instal:[12,75,76,77,80,81,82,83,84,86,87,88,89,90,92,94,97,98,99,100,101,102,103,104,107,108,109,110,113,114,115,116,123,124,178,182,183,187,188,190,191,192,193,195,196,197,202,296,329,347,358],instanc:[23,48,67,136],intal:85,integr:[2,3,4,5],interact:[1,15,16,54,135,194],interfac:199,intern:119,internation:[0,64],interpret:9,interrupt:116,intro:135,intro_menu:373,introduct:[1,7,28,89,121,136,159,170,178],inventori:167,ipython:135,irc:[189,432],issu:184,ital:119,item:140,itself:144,jan:0,join:19,jumbotron:18,jupyt:1,just:[121,142],kei:[28,41,80,91,137],keyword:[95,133],kill:[142,203],kind:142,know:[121,199],known:142,languag:[28,64,104],larg:142,last:153,latest:[11,12,192],latin:153,launch:[27,28],launchcmd:337,layout:[0,56],learn:[1,121,181],leav:174,legaci:102,legend:[116,342],lesson:[127,139,145,148,150],let:[6,15,164,197],librari:131,licens:[75,180],life:202,lift:55,like:[15,114,142,160,175],limit:[15,16,142],line:[6,27,125,130,135,144,152],link:[50,59,116,119,181],linux:[4,193,195,203],list:[3,6,119,133,134,142],list_nod:28,listen:172,literatur:181,live:203,local:[119,169,197],localhost:195,locat:[137,195],lock:[0,14,31,33,39,134,174,396,397,398],lockdown:197,lockfunc:[144,397],lockhandl:398,log:[19,20,124,132,135,164,190,199],logfil:9,logger:489,login:[32,63,88,99],logo:[53,151],longer:95,look:[31,128,142,160,175],lookup:[120,130],loop:133,loot:142,mac:[193,195,203],machin:197,magic:8,mai:[0,142],mail:[12,97,117,302,303,304],main:[119,120,137,548],make:[10,12,20,89,118,126,128,133,135,142,144,152,161,162,174,175,187],manag:[14,39,51,123,210,237,393,400,409,426,469,486],manual:[142,166,185],map:[98,113,116,159,170,342],mapbuild:[117,322,323,324],mapper:159,march:0,mariadb:183,markup:[82,473],mass:167,master:[12,142,162],match:[8,134],matter:142,mccp:433,mean:142,mech:152,mechan:142,memori:14,memplot:453,menu:[20,28,80,99,111,168,278,404,480],menu_login:[117,265,266,267,268],merg:21,messag:[58,65,68,96,153],messagepath:65,method:[8,23,42,133,135,166],middlewar:530,migrat:[11,122,123],mind:12,minimap:170,mirror:[117,365,366],mixin:546,mob:[142,165,374],mod_proxi:182,mod_ssl:182,mod_wsgi:182,mode:[15,16,44,66,122,197,203],model:[10,67,120,178,211,238,394,401,410,427,470,487],modif:162,modifi:[53,133,156,182],modul:[41,135,146,147,188],monitor:32,monitorhandl:[34,411],more:[1,11,33,41,56,58,60,73,85,119,120,134,142,155,161,166],most:1,motiv:143,move:[144,153,174],msdp:68,msg:[35,65,166],mssp:434,mud:125,multi:[134,135,136,142,161],multidesc:[101,117,161,305,306,307],multipl:[14,142,144],multisess:[44,66,122],mush:[161,175],must:142,mutabl:[8,14],mux:72,mux_comms_cmd:[117,269,270,271],muxcommand:230,mxp:435,mygam:329,mysql:183,myst:119,name:[8,55,133,142],nattribut:14,naw:436,need:[96,121,125,134,142],nest:80,network:24,next:[161,188,190],nice:187,nick:36,night:142,node:[28,116],non:[14,153,154,185,194],nop:184,note:[10,16,17,21,23,28,31,36,46,52,54,62,79,88,99,108,113,119,172,182,329],notebook:1,nov:0,npc:[77,109,141,142,165,168,171,172,175],number:169,numer:142,obfusc:104,obj:39,object:[8,14,20,33,37,42,44,46,50,58,122,128,129,130,133,134,135,136,137,140,142,144,153,167,170,174,279,375,399,400,401,402,509,547],obtain:178,oct:0,off:[142,153],offici:181,olc:41,older:0,onc:[94,138],one:[119,142,157],onli:[119,130,142,203],onlin:[12,197],oob:68,oop:136,open:168,oper:[54,96],option:[28,80,91,116,162,169,190,197,199,203],optionclass:490,optionhandl:491,other:[23,42,50,53,58,89,135,137,142,181,183,197,200],our:[69,80,96,126,133,135,140,142,164,174,178],ourselv:133,out:[62,126,142,162],outgo:65,output:[19,76,380],outputcommand:68,outputfunc:38,outsid:197,overal:146,overload:[48,73,166],overrid:8,overview:[0,4,67,116,131,132,147,151],own:[13,23,32,37,51,62,89,110,135,142,192,197,358],page:[53,73,123,149,151,164],paramet:94,parent:[67,94,161],pars:[71,134,135,153,169],parser:30,part:[125,127,139,145,148,150],parti:[2,181],pass:135,patch:118,path:[15,65,132],pathfind:116,paus:[23,96,155],pdb:6,penalti:142,percent:[110,358],perman:142,permiss:[33,39,46,57,94,162,517],perpetu:140,persist:[14,27,126,133,154,155],person:[128,142],philosophi:89,physic:142,picklefield:492,pictur:178,pip:[122,123],place:119,plai:[89,142,187],plan:[1,140,141,142,170],player:[142,161],plugin:51,point:1,polici:72,port:[197,199],portal:[0,40,44,65,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449],portalsess:65,portalsessionhandl:[65,438],post:142,postgresql:183,practic:169,prefix:23,prerequisit:[4,191],prevent:153,prioriti:31,prison:142,privileg:[123,142],pro:83,problem:69,process:[54,61,203],processor:[15,16,17,78,474],product:[152,192],profil:[7,450,451,452,453,454,455,456,457],program:[6,121],project:[4,9,181],prompt:[28,156],pron:58,pronoun:500,prop:142,properti:[13,14,19,21,23,28,35,37,44,46,48,116,122,130],protfunc:[41,405],protocol:[0,62,68],prototyp:[0,41,116,338,403,404,405,406,407],proxi:[182,197],pseudo:105,pudb:6,pull:12,puppet:122,push:[12,128],put:[12,164,187],puzzl:[103,117,308,309,310],pvp:142,pycharm:9,python:[1,15,94,121,132,135,136,161,181,188],quell:[39,57,134],queri:[48,130,133],queryset:[130,137],quest:142,quick:[4,142],quiet:169,quirk:8,race:142,rais:144,random:105,random_string_gener:[117,385,386,387],rate:[110,358],read:[1,54,60,73,151],real:15,reboot:203,recapcha:178,receiv:[58,62,68],recip:[85,296,297],recog:58,red:106,red_button:[117,367,368],refer:[119,153],referenc:58,regard:94,regist:[190,197],registri:105,regular:142,rel:[131,137],relat:[94,163,165],releas:[119,140],relev:197,reli:15,reload:[8,136,153,182,203],remark:175,rememb:[8,119,136],remind:164,remot:[12,183,197],remov:[46,94,134,153],repair:142,repeat:[28,32,42],replac:134,repos:118,repositori:[1,12,122],reput:142,request:12,requir:[0,91,195],reset:[11,203],reshuffl:128,resourc:181,respawn:142,rest:[49,144],restart:[182,190],restrict:19,retriev:14,role:[142,162],roleplai:[58,104,142,162],roll:87,roller:[87,162],rom:160,room:[37,90,96,113,140,141,142,153,157,159,162,167,280,376],root:518,router:116,rpg:[117,142,345,346,347,348,349,350,351,352,353,354,355,356,357,358],rplanguag:353,rpsystem:[117,352,353,354,355],rss:[198,439],rst:119,rule:[21,142,146,147],run:[6,9,10,23,121,123,191,192,202],runner:10,safe:30,safeti:15,same:[28,95],save:14,schema:11,score:175,screen:25,script:[42,79,94,122,174,261,281,408,409,410,411,412,413,414,415,510],scripthandl:412,search:[20,21,46,67,120,130,137,157,169,493],searching_cal:30,season:142,secret:178,section:548,secur:[94,182,187,199],see:[8,94,164,190],select:[111,153],self:169,send:[58,62,68,135,156],sent:156,separ:[80,142,144],sept:0,serial:519,server:[0,24,40,43,44,61,64,132,175,182,183,190,197,200,202,381,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,511],serversess:[65,459],serversessionhandl:65,servic:423,session:[44,65,122,153,162,460],sessionhandl:[44,461],set:[0,2,9,12,21,28,33,75,89,123,124,125,133,142,159,163,166,175,185,186,189,197,198,199,200,201],setpow:175,settings_default:466,settings_mixin:454,setup:[4,124,182,183,194,195,197,202],sever:[95,157,169],share:12,sharedmemorymodel:67,sheet:[6,162],shop:168,shortcut:120,should:142,show:[150,175],shut:203,sidebar:119,signal:[45,462],similar:142,simpl:[6,7,28,33,42,80,142,149,155],simpledoor:[107,117,325,326,327],singl:[14,158],singleton:120,site:[73,122],sitekei:178,sittabl:144,skill:[85,142,143],slot:90,slow:108,slow_exit:[117,328,329,330],soft:69,softcod:[69,161],solut:69,solv:142,some:[39,135,141,142,157,160],someth:142,somewher:121,sort:142,sourc:[9,31,119],space:[18,133],spawn:[41,161],spawner:[41,407],special:[30,142],spell:297,spread:118,spuriou:184,sql:[130,183],sqlite3:183,ssh:[68,199,440],ssl:[197,441],stack:142,staff:142,stanc:58,standard:[0,72,163],start:[1,94,124,162,168,190,192,203],stat:173,state:282,statement:126,statu:[142,203],status:142,step:[6,12,124,128,140,161,178,186,188,189,190,191,198],stop:[190,203],storag:[28,42],store:[14,28,41,142,153],strikaco:0,string:[33,116,135,169,480],strip:169,structur:[94,119],studi:96,stuff:[121,128,175],style:[18,53,114],sub:80,subclass:37,subtop:31,succe:142,suit:10,summari:[55,120,126,134,136,137,193],superus:39,support:[1,68,184],suppress_ga:442,surround:6,swap:48,sword:[134,297],synchron:54,syntax:[1,119,161,203,474],syscommand:231,system:[22,23,31,33,56,58,75,77,85,88,94,97,99,103,104,112,115,140,141,142,146,147,164,165,175,232],tabl:[20,67,119,127,139,145,148,150,153],tag:[46,71,90,122,137,157,176,471,512],talk:[109,141],talking_npc:[117,369,370,371],taskhandl:414,tb_basic:312,tb_equip:313,tb_item:314,tb_magic:315,tb_rang:316,teamciti:4,tech:140,technic:[31,75,77,89,106,119,368],teleport:116,telnet:[68,184,197,443],telnet_oob:444,telnet_ssl:445,templat:[4,28,91,164,178,480],templatetag:[523,524],tempmsg:35,temporari:28,term:136,termux:191,test:[7,10,90,121,135,175,233,243,246,249,252,256,262,268,271,273,283,288,291,294,298,301,304,307,310,317,321,324,327,330,332,339,348,351,355,357,364,371,377,382,387,389,446,456,488,501,520,531,537],test_queri:455,test_resourc:494,text2html:495,text:[20,28,32,61,70,71,119,135,151],than:142,thei:142,them:142,theori:169,thi:[143,164],thing:[8,119,125,129,133,136,137,142,160,161],third:[2,181],those:142,throttl:463,through:[6,192],ticker:[47,122],tickerhandl:[47,415],tie:162,time:[20,23,42,69,90,94,142,163],time_format:20,timer:[7,42],timetrac:457,tip:12,titl:[50,53],to_byt:20,to_str:20,togeth:[164,187],tool:[3,20,24,55,181],traceback:1,track:[12,142],train:174,trait:[110,117,141,356,357,358],traithandl:[110,358],traitproperti:[110,358],transit:116,translat:[0,64],travi:5,treat:15,tree:[111,142,297],tree_select:[117,388,389,390],trick:12,troubleshoot:[12,191,195],ttype:447,tupl:[133,134],turn:[8,112,147,153],turnbattl:[117,141,311,312,313,314,315,316,317],tutori:[1,94,95,96,113,117,125,127,138,139,140,142,145,147,150,151,152,163,164,165,168,171,172,173,174,175,177,179,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377],tutorial_world:[117,372,373,374,375,376,377],tutorialmirror:100,tweet:[173,188],twist:122,twitter:188,two:98,type:[13,14,37,110,358],typeclass:[0,8,48,74,94,120,122,126,132,133,137,144,161,166,263,329,467,468,469,470,471],under:12,understand:176,ungm:162,unimpl:204,uninstal:[75,138],unit:10,unix:114,unixcommand:[117,272,273,274],unloggedin:234,unmonitor:32,unquel:134,unrepeat:32,updat:[11,12,48,133,153],upgrad:[11,196],upload:199,url:[119,123,149,164,178,513,521,525,533,538],usag:[15,16,27,49,50,77,78,80,85,86,87,91,92,93,98,103,104,105,107,115,116,183,333,347],use:[8,19,47,121,141,142],used:[23,153,297],useful:[23,89,141],user:[12,23,53,57,64,160,161,164,199],using:[6,96,133,135,137],util:[0,9,18,20,23,24,30,117,120,155,264,284,340,378,379,380,381,382,383,384,385,386,387,388,389,390,395,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,514,526,527,528,529,530,531],valid:[33,464],validatorfunc:497,valu:[28,41,142],vanilla:142,variabl:[6,94],variant:144,vehicl:[165,174],verb_conjug:[498,499,500,501],verbatim:119,version:[12,75,119],versu:54,vhost:182,via:142,view:[19,73,149,164,178,179,522,534,539,540,541,542,543,544,545,546,547],viewpoint:58,virtualenv:[122,195],vocabulari:94,voic:96,volum:142,wai:[28,116,134,135,155],want:[121,139,142,192],warn:[94,119],weapon:142,weather:[142,177],web:[0,8,24,50,51,53,61,68,73,132,149,151,165,178,179,197,199,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547],webclient:[0,52,448,532,533,534],webclient_ajax:449,webclient_gui:51,webpag:53,webserv:[52,199,465],websit:[53,73,123,535,536,537,538,539,540,541,542,543,544,545,546,547],websocket:[182,187],weight:[142,167],werewolf:130,what:[3,14,56,121,127,136,137,139,142,143,148,169,192],when:[8,47,144,153],where:[121,131,143],whisper:104,who:[23,126],why:158,wiki:123,wilder:[115,117,331,332,333],willing:121,window:[64,124,193,195],wizard:185,word:118,work:[12,23,48,75,94,116,121,142,164,169,174,192],workaround:184,workflow:2,world:[113,128,132,135,138,140,142,150],write:[10,51,62],wss:187,xterm256:[60,176],xymap:[116,341],xymap_legend:342,xyzexit:116,xyzgrid:[116,117,334,335,336,337,338,339,340,341,342,343,344],xyzroom:[116,344],yield:[28,155],you:[1,121,125,134,138,142],your:[1,8,10,11,12,13,23,32,37,51,57,62,67,69,89,110,123,126,128,132,142,143,157,178,192,195,197,199,358],yourself:[128,140],zcoord:116,zone:74}})
\ No newline at end of file