<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
	<link rel="self" type="application/atom+xml" href="https://forum.eggheads.org/app.php/feed/topic/20323" />

	<title>egghelp/eggheads community</title>
	<subtitle>Discussion of eggdrop bots, shell accounts and tcl scripts.</subtitle>
	<link href="https://forum.eggheads.org/index.php" />
	<updated>2017-04-22T10:11:49-04:00</updated>

	<author><name><![CDATA[egghelp/eggheads community]]></name></author>
	<id>https://forum.eggheads.org/app.php/feed/topic/20323</id>

		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2017-04-22T10:11:49-04:00</updated>

		<published>2017-04-22T10:11:49-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106178#p106178</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106178#p106178"/>
		<title type="html"><![CDATA[slennox's autolimit with pub cmd]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106178#p106178"><![CDATA[
tnx caesar<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Sat Apr 22, 2017 10:11 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2017-04-22T03:06:04-04:00</updated>

		<published>2017-04-22T03:06:04-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106170#p106170</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106170#p106170"/>
		<title type="html"><![CDATA[slennox's autolimit with pub cmd]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106170#p106170"><![CDATA[
Ah, I messed up something and thus removed the code I posted. And yeah, you are right, should have added a utimer in the first place. Replace:<div class="codebox"><p>Code: </p><pre><code>check $chan</code></pre></div>with:<div class="codebox"><p>Code: </p><pre><code>utimer 5 [list [namespace current]::check $chan]</code></pre></div>And if you still aren't happy with the results then remove the binds for part, sign and kick and leave it as it was.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Sat Apr 22, 2017 3:06 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2017-04-21T12:50:19-04:00</updated>

		<published>2017-04-21T12:50:19-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106167#p106167</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106167#p106167"/>
		<title type="html"><![CDATA[slennox's autolimit with pub cmd]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106167#p106167"><![CDATA[
your entire code gives me this:<blockquote class="uncited"><div>[18:47:41] can't read "chan": no such variable<br>    while executing<br>"channel set $chan limitData "$limit:$grace""<br>    (in namespace eval "::autoLimit" script line 20)<br>    invoked from within<br>"namespace eval autoLimit {<br><br>   setudef flag autolimit<br>   setudef str limitData<br><br>   bind pub o|o !adjust [namespace current]::adjust<br>   bind pub o|o !l..."<br>    (file "scripts2a/autolimit-caesar2a.tcl" line 1)<br>    invoked from within<br>"source scripts2a/autolimit-caesar2a.tcl"</div></blockquote>with what i got so far i dont get any error so far:<div class="codebox"><p>Code: </p><pre><code>namespace eval autoLimit {   setudef flag autolimit   setudef str limitData   bind join * * [namespace current]::joins   bind pub o|o !adjust [namespace current]::adjust   bind pub o|o !autolimit [namespace current]::limit       bind pub o|o !limit [namespace current]::limit    bind pub o|o !climit [namespace current]::limit       bind part - * [namespace current]::del   bind sign - * [namespace current]::del   bind kick - * [namespace current]::kick      proc del {nick uhost hand chan {text ""}} {      if {![channel get $chan autolimit]} return      if {[isbotnick $nick]} return      check $chan   }      proc kick {nick uhost hand chan vict reason} {      if {![channel get $chan autolimit]} return      if {[isbotnick $vict]} return      check $chan   }    proc joins {nick uhost hand chan} {      if {![channel get $chan autolimit]} return      if {[isbotnick $nick] || ![botisop $chan]} return      check $chan   }   proc adjust {nick uhost hand chan text} {      if {![channel get $chan autolimit]} return      if {[scan [join [split $text :]] {%d%d} limit grace] != 2} {           puthelp "NOTICE $nick :Error, syntax: !adjust &lt;limit:grace&gt; (integer values)"         return      }      channel set $chan limitData "$limit:$grace"      puthelp "NOTICE $nick :Success, channel limit has been set to $limit and grace set to $grace"      check $chan   }   proc check {{chan ""}} {      if {[llength $chan]} {         set chan [string tolower $chan]         if {![channel get $chan autolimit]} return         if {[scan [join [split [channel get $chan limitData] :]] {%d%d} limit grace] != 2} return         set count [llength [chanlist $chan]]         set newlimit [expr $count + $limit]         set cm [getchanmode $chan]         if {[lsearch -exact [split $cm ""] "l"] != -1} {            set currlimit [lindex [split $cm] 1]         } else {            set currlimit 0         }         if {$newlimit == $currlimit} return         if {$newlimit &gt; $currlimit} {            set diff [expr $newlimit - $currlimit]         } else {            set diff [expr $currlimit - $newlimit]         }         if {$diff &lt;= $grace} return         pushmode $chan +l $newlimit      } else {         foreach chan [channels] {            check $chan         }      }   }proc limit {nick uhost hand chan text} {      if {[scan $text {%s} mode] != 1} {         puthelp "NOTICE $nick :Error, syntax: !limit &lt;on/off&gt;"         return      }      set status [channel get $chan autolimit]      switch -- [string tolower $mode] {         "on" {            if {$status} {               puthelp "NOTICE $nick :Error, can't continue because autolimit is already enabled."            } else {               channel set $chan +autolimit             check $chan             puthelp "NOTICE $nick :Success, autolimit has been enabled."            }         }         "off" {            if {!$status} {               puthelp "NOTICE $nick :Error, can't continue because autolimit is already disabled."             pushmode $chan -l             } else {               channel set $chan -autolimit               puthelp "NOTICE $nick :Success, autolimit has been disabled."             pushmode $chan -l             }         }         default {            puthelp "NOTICE $nick :Error, given syntax is unknown: !limit &lt;on/off&gt;"         }      }   }    proc start args {      utimer 5 [namespace current]::check   }   start} </code></pre></div>also it sets new limit to fast after joins making it ineffiecient incase of a join flood since it makes way after every join<br><br>also it sets new limit after each quit making it very spammy<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Fri Apr 21, 2017 12:50 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2017-04-22T03:04:06-04:00</updated>

		<published>2017-04-21T12:11:25-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106166#p106166</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106166#p106166"/>
		<title type="html"><![CDATA[slennox's autolimit with pub cmd]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106166#p106166"><![CDATA[
Let's say for disscussion sake channel has 50 people, channel doesn't have any limits set and settings are: limit 5 and grace 3.<br><br>When you first activate it, if there's no limit set it will set the count + limit, meaning 50 + 5. If new people join and the grace limit (meaning count + grace, meaning 50 + 3) isn't reached it won't change the channel limit. As soon as the 4th person joins and the new limit (50+4) is over the grace (53) it will change the channel mode to 59.<br><br>Proof of concept.<div class="codebox"><p>Code: </p><pre><code>% proc push {limit grace count {cm "+stn"}} {        set newlimit [expr $count + $limit]        if {[lsearch -exact [split $cm ""] "l"] != -1} {                set currlimit [lindex [split $cm] 1]        } else {                set currlimit 0        }        if {$newlimit == $currlimit} return        if {$newlimit &gt; $currlimit} {                set diff [expr $newlimit - $currlimit]        } else {                set diff [expr $currlimit - $newlimit]        }        if {$diff &lt;= $grace} return        puts "mode change: +l $newlimit"}% push 5 3 50mode change: +l 55% push 5 3 50 "+stnl 55"% push 5 3 52 "+stnl 55"% push 5 3 53 "+stnl 55"% push 5 3 54 "+stnl 55"mode change: +l 59</code></pre></div>I set the "+stn" to mimic default channel modes and then I set them to mimic the changed modes.<br><br>So, is it working as you wanted or not?<br><br>As for adding the kick, part and quit part is as easy as 1.. 2.. 3.. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><div class="codebox"><p>Code: </p><pre><code>bind part - * [namespace current]::delbind sign - * [namespace current]::delbind kick - * [namespace current]::kickproc del {nick uhost hand chan {text ""}} {if {![channel get $chan autolimit]} returnif {[isbotnick $nick]} returncheck $chan}proc kick {nick uhost hand chan vict reason} {if {![channel get $chan autolimit]} returnif {[isbotnick $vict]} returncheck $chan}</code></pre></div>Edit: removed code.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Fri Apr 21, 2017 12:11 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2017-04-21T10:56:53-04:00</updated>

		<published>2017-04-21T10:56:53-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106165#p106165</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106165#p106165"/>
		<title type="html"><![CDATA[slennox's autolimit with pub cmd]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106165#p106165"><![CDATA[
concerning the adding of part/kick/quit  seems good idea as well <br><br>i was also thinking about to check if the set limit and actual users in channel difference it bigger than the grace to then set new limit<br><br><br>so lets say there are 50 users current +l is 55 while we have set it at 3<br><br>if u understand what i gettin at afaik the grace calculates if the difference with the set limit is not beyond set grace value<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Fri Apr 21, 2017 10:56 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2017-04-21T09:54:32-04:00</updated>

		<published>2017-04-21T09:54:32-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106164#p106164</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106164#p106164"/>
		<title type="html"><![CDATA[slennox's autolimit with pub cmd]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106164#p106164"><![CDATA[
Yeah, I forgot about that..<br><br>You could also add after:<div class="codebox"><p>Code: </p><pre><code>channel set $chan +autolimit </code></pre></div>a <em class="text-italics">check $chan</em> to make it start limiting right away when the limit has been enabled. Your welcome.<br><br>I guess we could also add a proc for kick, part and quit to adjust the limit right away when one of the events happens. Up to you. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Fri Apr 21, 2017 9:54 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2017-04-21T09:30:29-04:00</updated>

		<published>2017-04-21T09:30:29-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106163#p106163</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106163#p106163"/>
		<title type="html"><![CDATA[slennox's autolimit with pub cmd]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106163#p106163"><![CDATA[
looks to be working so far<br><br>only when disabling it doesnt remove -l<br><br>i added pushmode $chan -l <br>that seemed to work<br><br>tnx caesar.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Fri Apr 21, 2017 9:30 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2017-04-21T08:41:35-04:00</updated>

		<published>2017-04-21T08:41:35-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106162#p106162</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106162#p106162"/>
		<title type="html"><![CDATA[slennox's autolimit with pub cmd]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106162#p106162"><![CDATA[
Initially the code had the limit and grace in two separate arguments and forgot to change this part as well. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_redface.gif" width="15" height="15" alt=":oops:" title="Embarassed"> <br>Replace:<div class="codebox"><p>Code: </p><pre><code>if {[scan $text {%d%d} limit grace] != 2} { </code></pre></div>with:<div class="codebox"><p>Code: </p><pre><code>if {[scan [join [split $text :]] {%d%d} limit grace] != 2} return </code></pre></div>As for adding the public enable/disable, just add:<div class="codebox"><p>Code: </p><pre><code>bind pub o|o !limit [namespace current]::limit</code></pre></div>behind:<div class="codebox"><p>Code: </p><pre><code>bind pub o|o !adjust [namespace current]::adjust</code></pre></div>and before the <em class="text-italics">proc start args {</em> insert:<div class="codebox"><p>Code: </p><pre><code>proc limit {nick uhost hand chan text} {if {[scan $text {%s} mode] != 1} {puthelp "NOTICE $nick :Error, syntax: !limit &lt;on/off&gt;"return}set status [channel get $chan autolimit]switch -- [string tolower $mode] {"on" {if {$status} {puthelp "NOTICE $nick :Error, can't continue because autolimit is already enabled."} else {channel set $chan +autolimitputhelp "NOTICE $nick :Success, autolimit has been enabled."}}"off" {if {!$status} {puthelp "NOTICE $nick :Error, can't continue because autolimit is already disabled."} else {channel set $chan -autolimitputhelp "NOTICE $nick :Success, autolimit has been disabled."}}default {puthelp "NOTICE $nick :Error, given syntax is unknown: !limit &lt;on/off&gt;"}}}</code></pre></div>As always, haven't tested anything.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Fri Apr 21, 2017 8:41 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2017-04-21T07:34:56-04:00</updated>

		<published>2017-04-21T07:34:56-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106161#p106161</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106161#p106161"/>
		<title type="html"><![CDATA[slennox's autolimit with pub cmd]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106161#p106161"><![CDATA[
i tried it and no matter what value i use in !adjust i get get:<br><br>also could the enable disable pub cmd be added <br><blockquote class="uncited"><div> Error, syntax: !adjust &lt;limit:grace&gt; (integer values)</div></blockquote><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Fri Apr 21, 2017 7:34 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2017-04-21T05:07:52-04:00</updated>

		<published>2017-04-21T05:07:52-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106160#p106160</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106160#p106160"/>
		<title type="html"><![CDATA[slennox's autolimit with pub cmd]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106160#p106160"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>namespace eval autoLimit {setudef flag autolimitsetudef str limitDatabind join * * [namespace current]::joinsbind pub o|o !adjust [namespace current]::adjustproc joins {nick uhost hand chan} {if {![channel get $chan autolimit]} returnif {[isbotnick $nick] || ![botisop $chan]} returncheck $chan}proc adjust {nick uhost hand chan text} {if {![channel get $chan autolimit]} returnif {[scan $text {%d%d} limit grace] != 2} {puthelp "NOTICE $nick :Error, syntax: !adjust &lt;limit:grace&gt; (integer values)"return}channel set $chan limitData "$limit:$grace"puthelp "NOTICE $nick :Success, channel limit has been set to $limit and grace set to $grace"check $chan}proc check {{chan ""}} {if {[llength $chan]} {set chan [string tolower $chan]if {![channel get $chan autolimit]} returnif {[scan [join [split [channel get $chan limitData] :]] {%d%d} limit grace] != 2} returnset count [llength [chanlist $chan]]set newlimit [expr $count + $limit]set cm [getchanmode $chan]if {[lsearch -exact [split $cm ""] "l"] != -1} {set currlimit [lindex [split $cm] 1]} else {set currlimit 0}if {$newlimit == $currlimit} returnif {$newlimit &gt; $currlimit} {set diff [expr $newlimit - $currlimit]} else {set diff [expr $currlimit - $newlimit]}if {$diff &lt;= $grace} returnpushmode $chan +l $newlimit} else {foreach chan [channels] {check $chan}}}proc start args {utimer 5 [namespace current]::check}start}</code></pre></div>Forgot to add the activation/deactivation from channel command so for now do <em class="text-italics">.chanset #channel +autolimit</em> from DCC Chat/telnet. Set the limit and grace with <em class="text-italics">!adjust limit:grace</em> (integer numbers), for example <em class="text-italics">!adjust 3:5</em>, or from DCC Chat/Telnet with <em class="text-italics">.chanset #channel limitData limit:grace</em> (integer numbers).<br><br>I could tie an <em class="text-italics">utimer</em> for each channel as well, if that is really needed.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Fri Apr 21, 2017 5:07 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2017-04-20T09:27:21-04:00</updated>

		<published>2017-04-20T09:27:21-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106155#p106155</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106155#p106155"/>
		<title type="html"><![CDATA[slennox's autolimit with pub cmd]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106155#p106155"><![CDATA[
does anyone know how to modify the code to have it work with pub commands<br><br>tnx in advance<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Thu Apr 20, 2017 9:27 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2017-04-17T15:49:58-04:00</updated>

		<published>2017-04-17T15:49:58-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106136#p106136</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106136#p106136"/>
		<title type="html"><![CDATA[slennox's autolimit with pub cmd]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106136#p106136"><![CDATA[
Without the utimer part is fine as well<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Mon Apr 17, 2017 3:49 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2017-04-16T14:14:20-04:00</updated>

		<published>2017-04-16T14:14:20-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106122#p106122</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106122#p106122"/>
		<title type="html"><![CDATA[slennox's autolimit with pub cmd]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106122#p106122"><![CDATA[
Adjusting the grace and limit on the fly is easy to implement, but the utimer part will be a bit tricky as would have to kill previous utimer before making and calling a new one.<br><br>If nobody jumps on this will do something tomorrow.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Sun Apr 16, 2017 2:14 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2017-04-16T07:58:18-04:00</updated>

		<published>2017-04-16T07:58:18-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106115#p106115</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106115#p106115"/>
		<title type="html"><![CDATA[slennox's autolimit with pub cmd]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106115#p106115"><![CDATA[
if posible to input grace , limit and timer by pub cmd<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Sun Apr 16, 2017 7:58 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2017-04-16T02:57:36-04:00</updated>

		<published>2017-04-16T02:57:36-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106114#p106114</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106114#p106114"/>
		<title type="html"><![CDATA[slennox's autolimit with pub cmd]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106114#p106114"><![CDATA[
Please don't revive old topics and post whatever info you want in your own and link to them.<br><br>What exactly you want to adjust on the fly? The limit to set (cl_limit)? Limit grace (cl_grace)? Want a adjustable timer (cl_timer) for each channel or one for all will do fine like is in the chanlimit.tcl by Slennox? I'm asking cos he used timer (minutes) and in your code i see you switched to utimer (seconds).<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Sun Apr 16, 2017 2:57 am</p><hr />
]]></content>
	</entry>
	</feed>
