<liclass="toclevel-2"><ahref="#Viewing.2Ftriggering_a_factoid"><spanclass="tocnumber">2.4</span><spanclass="toctext">Viewing/triggering a factoid</span></a></li>
<liclass="toclevel-2"><ahref="#Viewing.2Ftriggering_another_channel.27s_factoid"><spanclass="tocnumber">2.5</span><spanclass="toctext">Viewing/triggering another channel's factoid</span></a>
<liclass="toclevel-2"><ahref="#Information_about_a_factoid"><spanclass="tocnumber">2.10</span><spanclass="toctext">Information about a factoid</span></a>
<liclass="toclevel-4"><ahref="#Disallowed_system_calls"><spanclass="tocnumber">3.2.2.4</span><spanclass="toctext">Disallowed system calls</span></a></li>
<liclass="toclevel-4"><ahref="#Program_termination_with_no_output"><spanclass="tocnumber">3.2.2.5</span><spanclass="toctext">Program termination with no output</span></a></li>
<liclass="toclevel-4"><ahref="#Abnormal_program_termination"><spanclass="tocnumber">3.2.2.6</span><spanclass="toctext">Abnormal program termination</span></a></li>
<liclass="toclevel-4"><ahref="#C_and_C.2B.2B_Functionality"><spanclass="tocnumber">3.2.2.7</span><spanclass="toctext">C and C++ Functionality</span></a></li>
<liclass="toclevel-4"><ahref="#Using_the_preprocessor"><spanclass="tocnumber">3.2.2.8</span><spanclass="toctext">Using the preprocessor</span></a>
<liclass="toclevel-4"><ahref="#main.28.29_Function_Unnecessary"><spanclass="tocnumber">3.2.2.9</span><spanclass="toctext">main() Function Unnecessary</span></a></li>
<liclass="toclevel-4"><ahref="#Printing_in_binary.2Fbase2"><spanclass="tocnumber">3.2.2.11</span><spanclass="toctext">Printing in binary/base2</span></a></li>
<liclass="toclevel-4"><ahref="#Using_the_GDB_debugger"><spanclass="tocnumber">3.2.2.12</span><spanclass="toctext">Using the GDB debugger</span></a>
<p>All of <b>PBot'</b>s commands may begin with its name or its trigger, or be followed by its name.
</p><p>The trigger character defaults to exclaimation mark [!].
</p><p>Note that commands need not be submitted to the channel; you can /msg it instead. If you /msg <b>PBot</b>, it will respond with a private message in return. In private message, you do not need to specify its name or one of the trigger symbols.
<p>The URL for the source of any loaded modules may be found by using the <ahref="#factinfo"title="">factinfo</a> command:
</p>
<pre><pragma_> factinfo ##c faq
<PBot> faq: Module loaded by pragma_ on Fri Dec 31 02:34:04 2004 ->
<ahref="https://github.com/pragma-/pbot/blob/master/modules/cfaq.pl"class="external free"title="https://github.com/pragma-/pbot/blob/master/modules/cfaq.pl"rel="nofollow">https://github.com/pragma-/pbot/blob/master/modules/cfaq.pl</a>, used 512 times (last by ecrane)
<p>You may test/play with the bot in the #pbot2 channel on irc.freenode.net.
</p>
<aname="Directing_output_to_a_user"></a><h3><spanclass="mw-headline">Directing output to a user</span></h3>
<p>You may direct PBot to prepend the nickname of a specific person to a factoid in the channel by stating the nickname after the factoid (if the factoid doesn't take arguments):
<p>You may also use the `tell <nick> about <command>` syntax (which is necessary if the factoid does take arguments):
</p>
<pre><pragma_> PBot: tell defrost about help cc
<PBot> defrost: To learn all about cc, see <ahref="http://www.iso-9899.info/wiki/PBot#cc"class="external free"title="http://www.iso-9899.info/wiki/PBot#cc"rel="nofollow">http://www.iso-9899.info/wiki/PBot#cc</a>
<p>Factoids added in one channel may be called/triggered in another channel or in private message, providing that the other channel doesn't already have a factoid of the same name.
</p><p>Factoids may also be added to a special channel named global. Factoids that are set in this channel will be accessible to any channel, including private messages. However, factoids that are set in a specific channel will override factoids of the same name that are set in the global channel or other channels.
</p><p>For example, a factoid named 'malloc' set in ##c will be called instead of 'malloc' set in global,
if the factoid were triggered in ##c; otherwise, the latter 'malloc' will be triggered if the factoid were triggered in another channel.
</p><p>Similiarily, if there were no 'malloc' factoid in the global namespace, but only in ##c and you attempted to use this factoid in a channel other than ##c, that channel will invoke ##c's version of 'malloc', providing that channel doesn't have its own 'malloc' factoid.
</p><p>Likewise, if there is a 'malloc' factoid set in ##c++ and the factoid is triggered in the ##c++ channel,
then this version of 'malloc' will be called instead of the ##c or the global factoid.
</p><p>However, if you are in a channel that doesn't have a 'malloc' factoid and there is no 'malloc' factoid in the global channel, and you attempt to call 'malloc' then the bot will display a message notifying you that 'malloc' is ambiguous and which channels it belongs to so that you may use the <ahref="#fact"title="">fact</a> command to call the correct factoid.
</p>
<aname="Adding_a_factoid"></a><h3><spanclass="mw-headline">Adding a factoid</span></h3>
<p>You can use the <ahref="#factset"title="">factset</a> command to set a special factoid meta-data key named "action_with_args" to trigger an alternate message if an argument has been supplied.
</p>
<pre> Example:
<pragma_> factadd global snack is /me eats a cookie.
<PBot> 'snack' added to the global channel
<pragma_> factset global snack action_with_args /me gives $args a cookie.
<PBot> [Factoids] (global) snack: 'action_with_args' set to '/me gives $args a cookie.'
<p>You can use the <ahref="#factset"title="">factset</a> command to set a special factoid meta-data key named "add_nick" to prepend the nick of the caller to the output. This is mostly useful for modules.
</p>
<aname="Deleting_a_factoid"></a><h3><spanclass="mw-headline">Deleting a factoid</span></h3>
<p>If three arguments are given, the factoid is renamed in the source channel. If four arguments are given, the factoid is moved to the target channel with the target name.
</p>
<aname="Changing_a_factoid"></a><h3><spanclass="mw-headline">Changing a factoid</span></h3>
<p>Note that the final argument is a Perl-style substitution regex. See 'man perlre'.
</p>
<pre> For instance, it is possible to append to a factoid by using:
'factchange channel factoid s/$/text to append/'
</pre>
<pre> Likewise, you can prepend to a factoid by using:
'factchange channel factoid s/^/text to prepend/'
</pre>
<p>Alternatively, you may append to a factoid by using 'is also':
</p>
<pre><pragma_> PBot, c is also See FAQ at <ahref="http://www.eskimo.com/~scs/C-faq/top.html"class="external free"title="http://www.eskimo.com/~scs/C-faq/top.html"rel="nofollow">http://www.eskimo.com/~scs/C-faq/top.html</a>
<PBot> Changed: c is /say C rules! ; See FAQ at <ahref="http://www.eskimo.com/~scs/C-faq/top.html"class="external free"title="http://www.eskimo.com/~scs/C-faq/top.html"rel="nofollow">http://www.eskimo.com/~scs/C-faq/top.html</a>
<p>Omit <key> and <value> to list all the keys and values for a factoid. Specify <key>, but omit <value> to see the value for a specific key.
<p>Omit <key> and <value> to list all the keys and values for a factoid. Specify <key>, but omit <value> to see the value for a specific key.
<aname="Table_of_quotegrabs"></a><h4><spanclass="mw-headline">Table of quotegrabs</span></h4>
<p>A table of grabbed quotes can be found here: <ahref="http://www.iso-9899.info/PBot/quotegrabs.html"class="external free"title="http://www.iso-9899.info/PBot/quotegrabs.html"rel="nofollow">http://www.iso-9899.info/PBot/quotegrabs.html</a>
<p>Grabs a message someone says, and adds it to the quotegrabs database. You may grab multiple nicks/messages in one quotegrab by separating the arguments with a plus sign (the nicks need not be different -- you can grab multiple messages by the same nick by specifying a different history for each grab).
</p><p>You can use the <ahref="#recall"title="">recall</a> command to test the arguments before grabbing (please use a private message).
<p>This is just an alias for the <ahref="#cc"title="">cc</a> command. Can take an optional nick argument in front in order to address the output to said nick.
<p>Code compiler (and executor). This command will compile and execute user-provided code in a number of languages, and then display the compiler and/or program output.
</p><p>The program is executed within a gdb debugger instance, which may be interacted with via the gdb macros described below or with the gdb("command") function.
</p><p>The compiler and program are executed inside a virtual machine. After each run, the virtual machine is restored to a previous state. No system calls have been disallowed. You can write to and read from the filesystem, provided you do it in the same program. The network cable has been unplugged. You are free to write and test any code you like. Have fun.
cc <run|undo|show|paste|copy|replace|prepend|append|remove|s/// [and ...]>
cc <diff>
[nick] { <same as above without the cc in front> }
</pre>
<ul><li> You can pass any gcc compiler options. By default, -Wall -Wextra -std=c11 -pedantic are passed unless an option is specified.
</li><li> The -paste option will pretty-format and paste the code/output to a paste site and display the URL (useful to preserve newlines in output, and to refer to line-numbers).
</li><li> The -nomain flag will prevent the code from being wrapped with a main() function.
</li><li> The -input=<stdin input> option provides STDIN input (i.e., scanf(), getc(stdin), etc.); MUST be the last option after any code (otherwise the code will be considered to be input).
</li><li> The run, undo, show, replace, etc commands are part of interactive-editing. See below.
</li><li> The diff command can be used to display the differences between the two most recent snippets.
</li><li> You can use { } instead of cc; the options/flags/comments must be inside the braces. Can take an optional nick argument in front in order to address the output to said nick.
<p>The -lang option accepts the following languages: C, C99 and C11. Alternatively, you may use the -std=<c89|gnu89|c99|gnu99|etc> compiler option to specify which standard to follow.
</p><p>Support for additional languages coming soon.
<p>In C and C++, you may #include <file.h> one after another on the same line. The bot will automatically put them on separate lines. If you do use #include, the files you specify will replace the default includes. You do not need to append a \n after the #include.
</p>
<pre><pragma_> cc #include <sys/utsname.h> struct utsname u; uname(&u);
<PBot> pragma_: <no output: u = {sysname = "Linux", nodename = "compiler", release = "3.2.0-8-generic", version = "#15-Ubuntu SMP Wed Jan 11 13:57:44 UTC 2012", machine = "x86_64", __domainname = "(none)"}>
<p>In the previous examples, only the specified includes (e.g., <sys/utsname.h> in the first example, <stdio.h> and <stdlib.h> in the second, will be included instead of the default includes.
<p>You can also #define macros; however, #defines require an explicit "\n" sequence to terminate, otherwise the remainder of the line will be part of the macro.
</p>
<pre><pragma_> cc #define GREETING "Hello, World"\n puts(GREETING);
<PBot> pragma_: Hello, World
</pre>
<aname="main.28.29_Function_Unnecessary"></a><h5><spanclass="mw-headline">main() Function Unnecessary</span></h5>
<p>In C and C++, if there is no main function, then a main function will created and wrapped around the appropriate bits of your code (unless the -nomain flag was specified); anything outside of any functions, excluding preprocessor stuff, will be put into this new main function. Here's an example:
</p>
<pre><pragma_> cc -paste int add(int a, int b) { return a + b; } printf("4 + 6 = %d -- ", add(4, 6)); int add3(int a, int b, int c)
<PBot> pragma_: <Stack level 1, frame at 0x7fffffffe660:> rip = 0x400e28 in foo (); saved rip 0x400e43 called by frame at 0x7fffffffe680, caller of frame at 0x7fffffffe650 source language
c. Arglist at 0x7fffffffe650, args: Locals at 0x7fffffffe650, Previous frame's sp is 0x7fffffffe660 Saved registers: rbp at 0x7fffffffe650, rip at 0x7fffffffe658
<p>The <ahref="#cc"title="">cc</a> command supports interactive-editing. The general syntax is: cc [command].
</p><p>Each cc snippet is saved in a buffer which is named after the channel or nick it was used in. You can use <ahref="#show"title="">show</a> or <ahref="#diff"title="">diff</a> with a buffer argument to view that buffer; otherwise you can use the <ahref="#copy"title="">copy</a> command to copy the most recent snippet of another buffer into the current buffer and optionally chain it with another command -- for example, to copy the ##c buffer and paste it: <i>cc copy ##c and paste</i>.
</p><p>The commands are: <ahref="#copy"title="">copy</a>, <ahref="#show"title="">show</a>, <ahref="#diff"title="">diff</a>, <ahref="#paste"title="">paste</a>, <ahref="#run"title="">run</a>, <ahref="#undo"title="">undo</a>, <ahref="#s.2F.2F"title="">s//</a>, <ahref="#replace"title="">replace</a>, <ahref="#prepend"title="">prepend</a>, <ahref="#append"title="">append</a>, and <ahref="#remove"title="">remove</a>. Most of the commands may be chained together by separating them with whitespace or "and".
</p><p>The commands are described in more detail below:
<PBot> Let Batman be another name for a character. Let Bruce_Wayne be a character. Let superhero be a character, with value being Bruce_Wayne cast to a Batman.
<p>Expands macros in C code and displays the resulting code. Macros must be terminated by a \n sequence. You may #include headers to expand macros defined within.
</p>
<pre> Usage: expand <C snippet>
</pre>
<pre> Example:
<pragma_> expand #define WHILE while ( \n #define DO ) { \n #define WEND } \n int i = 5; WHILE --i DO puts("hi"); WEND
<PBot> pragma_: int i = 5; while ( --i ) { puts("hi"); }
<p>Displays questions from the <ahref="http://http://www.eskimo.com/~scs/C-faq/top.html"class="external text"title="http://http://www.eskimo.com/~scs/C-faq/top.html"rel="nofollow">comp.lang.c faq</a>. Some queries may return more than one result; if this happens, you may use the 'match #' optional argument to specify the match you'd like to view.
<p>Displays a random C Jeopardy question. You can specify a search text to limit the random set to those containing that text. Answer the questions with `what is ...?`
<p>Searches ISO/IEC 9899:TC3 (WG14/N1256), also known as the C99 draft standard. <ahref="http://www.open-std.org/jtc1/sc22/WG14/www/docs/n1256.pdf"class="external free"title="http://www.open-std.org/jtc1/sc22/WG14/www/docs/n1256.pdf"rel="nofollow">http://www.open-std.org/jtc1/sc22/WG14/www/docs/n1256.pdf</a>
If specified, 'section' must be in the form of X.YpZ where X and Y are section/chapter and, optionally, pZ is paragraph.
To display a specific section and all its paragraphs, specify just the 'section' without pZ.
To display just a specific paragraph, specify the full 'section' identifier (X.YpZ).
You may use -n # to skip to the #th match.
To list only the section numbers containing 'search text', add -list.
If both 'section' and 'search regex' are specified, then the search space will be within the specified section identifier.
</pre>
<pre> Examples:
</pre>
<pre>< pragma_> c99std pointer value
< PBot> Displaying #1 of 64 matches: 5.1.2.2.1p1: [Program startup] If they are declared, the parameters to the
main function shall obey the following constraints: -- The value of argc shall be nonnegative. -- argv[argc]
shall be a null pointer. -- If the value of argc is greater than zero, the array members argv[0] through
argv[argc-1] inclusive shall contain pointers to st... truncated; see <ahref="http://codepad.org/f2DULaGQ"class="external free"title="http://codepad.org/f2DULaGQ"rel="nofollow">http://codepad.org/f2DULaGQ</a> for full text.
6.7.5.1p3, 6.7.5.2p7, 7.1.1p1, 7.1.1p4, 7.1.4p1, 7... truncated; see <ahref="http://codepad.org/qQlnJYJk"class="external free"title="http://codepad.org/qQlnJYJk"rel="nofollow">http://codepad.org/qQlnJYJk</a> for full text.
</pre>
<pre>< pragma_> Hmm, how about just section 6.3?
</pre>
<pre>< pragma_> c99std pointer value 6.3
< PBot> Displaying #1 of 4 matches: 6.3.2.1p1: [Lvalues, arrays, and function designators] Except when it is the operand
of the sizeof operator or the unary & operator, or is a string literal used to initialize an array, an expression
that has type ``array of type is converted to an expression with type ``pointer to type that points to the
initial element of the array ob... truncated; see <ahref="http://codepad.org/mf1RNnr2"class="external free"title="http://codepad.org/mf1RNnr2"rel="nofollow">http://codepad.org/mf1RNnr2</a> for full text.
</pre>
<pre>< pragma_> c99std pointer value 6.3 -list
<p>Searches ISO/IEC 9811:201X (WG14/N1256), also known as the C11 draft standard. <ahref="http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1570.pdf"class="external free"title="http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1570.pdf"rel="nofollow">http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1570.pdf</a>
POSIX.1 - getcwd () function copies an absolute pathname of
the current working directory to the array pointed to by buf,
which is of length size - <ahref="http://www.iso-9899.info/man?getcwd"class="external free"title="http://www.iso-9899.info/man?getcwd"rel="nofollow">http://www.iso-9899.info/man?getcwd</a>
<PBot> brian kernighan (115,000): Brian Kernighan's Home Page:
(<ahref="http://www.cs.princeton.edu/~bwk/"class="external free"title="http://www.cs.princeton.edu/~bwk/"rel="nofollow">http://www.cs.princeton.edu/~bwk/</a>), An Interview with Brian
(<ahref="http://www.linuxjournal.com/article.php?sid=7035"class="external free"title="http://www.linuxjournal.com/article.php?sid=7035"rel="nofollow">http://www.linuxjournal.com/article.php?sid=7035</a>), Brian W.
Kernighan: (<ahref="http://www.lysator.liu.se/c/bwk/"class="external free"title="http://www.lysator.liu.se/c/bwk/"rel="nofollow">http://www.lysator.liu.se/c/bwk/</a>) ,Brian W.
<p>Displays dictionary defintions from <ahref="http://dict.org"class="external free"title="http://dict.org"rel="nofollow">http://dict.org</a> using DICT protocol.
</p><p>Databases for the -d option are listed here: <ahref="http://www.iso-9899.info/PBot/dict_databases.txt"class="external free"title="http://www.iso-9899.info/PBot/dict_databases.txt"rel="nofollow">http://www.iso-9899.info/PBot/dict_databases.txt</a> -- Note that there may be several commands aliased to one of these databases; for example, the `foldoc` command is an alias to `dict -d foldoc`.
</p>
<pre> Usage: dict [-d database] [-n start from definition number] [-t first letter of word class type (n]oun, v]erb, etc)]
[-search <regex> for definitions matching <regex>] <word>
</pre>
<pre> Examples:
</pre>
<pre><pragma_> dict hit
<PBot> hit: n: 1) (baseball) a successful stroke in an athletic contest (especially in baseball);
"he came all the way around on Williams' hit", 2) the act of contacting one thing with another;
"repeated hitting raised a large bruise"; "after three misses she finally got a hit" [syn: hitting,
striking], 3) a conspicuous success; "that song was his first hit and marked the beginning of his
career"; "that new Broadway show is a real smasher"
</pre>
<pre><pragma_> dict -n 4 hit
<PBot> hit: n: 4) (physics) an brief event in which two or more bodies come together; "the collision of the
particles resulted in an exchange of energy and a change of direction" [syn: collision], 5) a dose
of a narcotic drug, 6) a murder carried out by an underworld syndicate; "it has all the earmarks of
a Mafia hit", 7) a connection made via the internet to another website; "WordNet gets many hits from
users worldwide"
</pre>
<pre><pragma_> dict -t v hit
<PBot> hit: v: 1) cause to move by striking; "hit a ball", 2) hit against; come into sudden contact with;
"The car hit a tree"; "He struck the table with his elbow" [syn: strike, impinge on, run into,
collide with] [ant: miss], 3) affect or afflict suddenly, usually adversely; "We were hit by really
bad weather"; "He was stricken with cancer when he was still a teenager"; "The earthquake struck at
midnight" [syn: strike], 4) deal a blow to
</pre>
<pre><pragma_> dict -search ball hit
<PBot> hit: n: 1) (baseball) a successful stroke in an athletic contest (especially in baseball); "he came all
the way around on Williams' hit", v: 1) cause to move by striking; "hit a ball"
<p>The C Aphorisms can be triggered with c<n> where <n> is an integer representing one of the aphorisms. For example, to quote C Aphorism 1, use `c1`.
</p>
<ol><li> The questioner's first description of the problem/question will be misleading.
</li><li> All examples given by the questioner will be incomplete, misleading, broken, wrong, and/or not representative of the actual question.
</li><li> The questioner will not read and apply the answers they are given but will instead continue to practice c1 and c2.
</li><li> The ignorant will continually mis-educate the questioner.
</li><li> When given a choice of solutions, the questioner will always choose the wrong one.
</li><li> The questioner will always find a reason to say, "It doesn't work."
</li><li> The questioner will paste code and say "I have a problem" or "It doesn't work" without any further information or description of the problem.
</li><li> The more beginner they are, the more likely they are to be overcomplicating it.
</li><li> The questioner will always have some excuse for doing it wrong.
</li><li> The newbie will not accept the answer you give, no matter how right it is.
</li><li><skipped due to existing c11 factoid>
</li><li> The newbie will think they are smarter than they really are.
</li><li> The newbie will fail to recognize undefined behavior, and will wrongly think that their program is correct because it appears to work.
</li><li> The more the questioner attempts to describe their problem, the less coherent their description becomes.
<p>PBot can monitor the channel for excessive rapid traffic originating from an individual and automatically ban the offender for a certain length of time.
<p>If four (4) or more messages are sent within ten (10) seconds, the flood control is triggered. The offender will be muted for 30 seconds for the first offense. Each additional offense will result in the offender being muted for a much longer period. For example, the first offense will result in 30 seconds, the 2nd offense will be 5 minutes, the 3rd will be 1 hour, and so on.
<p>If four (4) or more JOINs are observed within thirty (30) minutes <b>without any messages in between joins</b>, the offender will be forwarded to another channel for a limited time: 2^(number_of_offenses + 2) hours.
</p><p>In addition to private instructions from PBot, this channel will have a /topic and ChanServ on-join message with instructions explaining to the offender how to remove the forwarding. The instructions are to message PBot with: unbanme <channel>.
</p><p>(Any messages sent to the public channel by the user at any time will reset their JOIN counter back to zero. The unbanme command can only be used for the first two offenses -- the offense counter is decremented once every 24 hours.)
<p>If four (4) consecutive messages are sent with ten (10) seconds or less between individual messages and without another person speaking, an enter-key-abuse counter is incremented. This counter will then continue to be incremented every two (2) consecutive messages with ten (10) seconds or less in between until another person speaks or more than ten (10) seconds have elapsed, whereupon it returns to requiring four (4) consecutive messages. When this counter reaches three (3) or greater, the offender will be muted using the same timeout rules as message flooding. This counter is automatically decremented once per hour.
<p>"You have been muted due to flooding. Please use a web paste service such as <ahref="http://codepad.org"class="external free"title="http://codepad.org"rel="nofollow">http://codepad.org</a> for lengthy pastes. You will be allowed to speak again in $timeout."
<p>"You have been banned from $channel due to join flooding. If your connection issues have been resolved, or this was an accident, you may request an unban at any time by responding to this message with: unbanme $channel, otherwise you will be automatically unbanned in $timeout."
<p>"You have been muted due to abusing the enter key. Please do not split your sentences over multiple messages. You will be allowed to speak again in $timeout."
<p>ChanServ will automagically op and deop PBot when necessary. PBot will wait until about 5 minutes have elapsed before requesting a deop from ChanServ.
<!-- Saved in parser cache with key wikidb:pcache:idhash:935-0!1!0!!en!2!edit=0 and timestamp 20141231003534 -->
<divclass="printfooter">
Retrieved from "<ahref="http://www.iso-9899.info/wiki/PBot">http://www.iso-9899.info/wiki/PBot</a>"</div>
<!-- end content -->
<divclass="visualClear"></div>
</div>
</div>
</div>
<divid="column-one">
<divid="p-cactions"class="portlet">
<h5>Views</h5>
<divclass="pBody">
<ul>
<liid="ca-nstab-main"class="selected"><ahref="/wiki/PBot"title="View the content page [c]"accesskey="c">Article</a></li>
<liid="ca-talk"><ahref="/wiki/Talk:PBot"title="Discussion about the content page [t]"accesskey="t">Discussion</a></li>
<liid="ca-viewsource"><ahref="/wiki?title=PBot&action=edit"title="This page is protected. You can view its source. [e]"accesskey="e">View source</a></li>
<liid="ca-history"><ahref="/wiki?title=PBot&action=history"title="Past versions of this page. [h]"accesskey="h">History</a></li>
</ul>
</div>
</div>
<divclass="portlet"id="p-personal">
<h5>Personal tools</h5>
<divclass="pBody">
<ul>
<liid="pt-login"><ahref="/wiki?title=Special:Userlogin&returnto=PBot"title="You are encouraged to log in, it is not mandatory however. [o]"accesskey="o">Log in</a></li>
</ul>
</div>
</div>
<divclass="portlet"id="p-logo">
<astyle="background-image: url(/wiki.png);"href="/wiki/Main_Page"title="Visit the Main Page [z]"accesskey="z"></a>
<liid="t-whatlinkshere"><ahref="/wiki/Special:Whatlinkshere/PBot"title="List of all wiki pages that link here [j]"accesskey="j">What links here</a></li>
<liid="t-recentchangeslinked"><ahref="/wiki/Special:Recentchangeslinked/PBot"title="Recent changes in pages linked from this page [k]"accesskey="k">Related changes</a></li>
<liid="t-specialpages"><ahref="/wiki/Special:Specialpages"title="List of all special pages [q]"accesskey="q">Special pages</a></li>
<liid="t-print"><ahref="/wiki?title=PBot&printable=yes"title="Printable version of this page [p]"accesskey="p">Printable version</a></li><liid="t-permalink"><ahref="/wiki?title=PBot&oldid=9009"title="Permanent link to this version of the page">Permanent link</a></li></ul>
</div>
</div>
</div><!-- end of the left (by default at least) column -->
<divclass="visualClear"></div>
<divid="footer">
<divid="f-poweredbyico"><ahref="http://www.mediawiki.org/"><imgsrc="/wiki/skins/common/images/poweredby_mediawiki_88x31.png"alt="Powered by MediaWiki"/></a></div>
<ulid="f-list">
<liid="lastmod"> This page was last modified 00:34, 31 December 2014.</li>
<liid="viewcount">This page has been accessed 34,578 times.</li>