<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>U-Labs Community - Protokoll</title>
		<link>https://u-labs.de/forum/</link>
		<description>Alles rund um das Thema Knuddels Protokoll.</description>
		<language>de</language>
		<lastBuildDate>Fri, 01 May 2026 11:23:13 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>1</ttl>
		<image>
			<url>https://u-labs.de/forum/images/ulabs/misc/rss.png</url>
			<title>U-Labs Community - Protokoll</title>
			<link>https://u-labs.de/forum/</link>
		</image>
		<item>
			<title>Aktueller Huffman-Tree</title>
			<link>protokoll-120/aktueller-huffman-tree-41599?goto=newpost</link>
			<pubDate>Sat, 18 Jan 2025 11:33:31 GMT</pubDate>
			<description>Hey ho! 
 
Ich versuche aktuell den neusten Huffman-Tree zu verwenden, da er sich wohl minimal verändetr hat. 
Egal in welcher Form das Tree...</description>
			<content:encoded><![CDATA[<div>Hey ho!<br />
<br />
Ich versuche aktuell den neusten Huffman-Tree zu verwenden, da er sich wohl minimal verändetr hat.<br />
Egal in welcher Form das Tree verwendet wird, das parsen habe ich erstmal gelassen und mache es aktuell auf anderem Wege:<br />
Ich lese den fertigen Tree direkt aus die StApp aus und speichere diese als JSON. So brauche ich den Baum nicht builden, sondern kann direkt den Decompressor verwenden:<br />
<script type="text/javascript" src="clientscript/syntaxhighlighter/shCore.js"></script>
<script type="text/javascript" src="clientscript/syntaxhighlighter/shBrushJava.js"></script>
<link type="text/css" rel="stylesheet" href="clientscript/syntaxhighlighter/styles/shCoreDefault.css"/>

<pre class="brush: java;">
import java.awt.Font;<br />
import java.io.FileOutputStream;<br />
import java.io.IOException;<br />
import java.lang.reflect.AccessFlag;<br />
import java.lang.reflect.Field;<br />
import java.lang.reflect.Method;<br />
import java.nio.charset.Charset;<br />
import java.util.Arrays;<br />
import java.util.HashMap;<br />
import java.io.*;<br />
import java.nio.charset.Charset;<br />
import org.json.JSONArray;<br />
<br />
import javassist.ClassPool;<br />
import javassist.CtClass;<br />
import javassist.CtField;<br />
import javassist.CtMethod;<br />
import javassist.Modifier;<br />
import javassist.bytecode.CodeAttribute;<br />
import javassist.bytecode.CodeIterator;<br />
import javassist.bytecode.MethodInfo;<br />
import javassist.bytecode.analysis.Type;<br />
import java.util.Base64;<br />
<br />
public class Demo extends hn {<br />
	private String HuffmanTree = null;<br />
	private String GenericProtocol = null;<br />
	private HashMap&lt;String, String&gt; data = new HashMap();<br />
	<br />
	public Demo(String hostname, int port) {	 <br />
		super(hostname, port);<br />
		<br />
		try {<br />
			ClassPool classPool = ClassPool.getDefault();<br />
            Class&lt;?&gt; groupChat	= this.getClass();<br />
            Class&lt;?&gt; client		= groupChat.getSuperclass();<br />
            <br />
            for(Field f : client.getDeclaredFields()) {<br />
                f.setAccessible(true);<br />
                <br />
                if(f.getGenericType().getTypeName().equals(&quot;java.lang.String&quot;)) {<br />
                	String value = (String) f.get(this);<br />
                	<br />
                	if(value == null) {<br />
                		continue;<br />
                	}<br />
                	<br />
                	if(value.startsWith(&quot;\b&quot;) &amp;&amp; value.length() &gt; 10) {<br />
                		this.HuffmanTree = value;<br />
                		<br />
                		data.put(&quot;HUFFMAN&quot;, f.getName());<br />
                	} else if(value.startsWith(&quot;-&quot;) &amp;&amp; value.length() &gt; 10) {<br />
                		this.GenericProtocol = value;<br />
                		<br />
                		data.put(&quot;GENERIC_PROTOCOL&quot;, f.getName());               		<br />
                	}<br />
                } else {<br />
                	//System.out.println(f.getGenericType().getTypeName());<br />
                }<br />
            }<br />
            <br />
            // private final void hn.v2(java.lang.String)<br />
            Method found	= null;<br />
            int count		= 0;<br />
            <br />
            for(Method m : client.getDeclaredMethods()) {<br />
            	if(found != null) {<br />
            		break;<br />
            	}<br />
            	<br />
            	if(m.accessFlags().contains(AccessFlag.PRIVATE) &amp;&amp; m.accessFlags().contains(AccessFlag.FINAL)) {<br />
            		if(m.getGenericReturnType().getTypeName().equals(&quot;void&quot;)) {<br />
            			java.lang.reflect.Type&#91;&#93; params = m.getGenericParameterTypes();<br />
            			<br />
            			if(params.length == 1) {<br />
            				if(params&#91;0&#93;.getTypeName().equals(&quot;java.lang.String&quot;)) {<br />
            					CtMethod method = classPool.get(client.getName()).getDeclaredMethod(m.getName());<br />
            					MethodInfo methodInfo = method.getMethodInfo();<br />
            		            CodeAttribute codeAttribute = methodInfo.getCodeAttribute();<br />
            		            CodeIterator codeIterator = codeAttribute.iterator();<br />
            		            <br />
            		            while (codeIterator.hasNext()) {<br />
            		                int index = codeIterator.next();<br />
            		                int opcode = codeIterator.byteAt(index);<br />
            		                <br />
            		                if(javassist.bytecode.Mnemonic.OPCODE&#91;opcode&#93; == &quot;new&quot;) {<br />
	            		                ++count;<br />
	            		                <br />
	            		                if(count == 2) {<br />
	            		                	found = m;<br />
	            		                	break;<br />
	            		                }<br />
            		                }<br />
            		            }<br />
            				}<br />
            			}<br />
            		}<br />
            	}<br />
            }<br />
            <br />
            /* Init Huffman */<br />
            Method method = client.getDeclaredMethod(found.getName(), String.class);<br />
            method.setAccessible(true);<br />
            method.invoke(this, this.HuffmanTree);<br />
            <br />
            /* Get Decoder */<br />
            Field field = client.getDeclaredField(&quot;ra&quot;);<br />
            field.setAccessible(true);<br />
            Object fieldValue = field.get(client);<br />
             <br />
            Class&lt;? extends Object&gt; Encoder = fieldValue.getClass();<br />
            <br />
            /* Call the Decoder */<br />
            Method mm		= Encoder.getDeclaredMethod(&quot;v&quot;, byte&#91;&#93;.class);<br />
            method.setAccessible(true);<br />
            Object result	= mm.invoke(fieldValue, new byte&#91;&#93; { (byte) 0xb4, (byte) 0x1b, (byte) 0xf8, (byte) 0x16,(byte)  0x8d, (byte) 0x51, (byte) 0xb5, (byte) 0x44, (byte) 0x5f, (byte) 0xb5, (byte) 0xa4 });<br />
            System.out.println(&quot;Method Result: &quot; + result);<br />
            <br />
            <br />
            Field parsed = Encoder.getDeclaredField(&quot;o&quot;);<br />
            parsed.setAccessible(true);<br />
            Object&#91;&#93; parsedValue = (Object&#91;&#93;) parsed.get(fieldValue);<br />
            String json = new JSONArray(parsedValue).toString();<br />
            System.out.println(Base64.getEncoder().encodeToString(json.getBytes()));<br />
            //System.out.println(&quot;o = &quot; + new JSONArray(parsedValue).toString());<br />
            <br />
            try (FileOutputStream fos = new FileOutputStream(&quot;TreeJS.json&quot;)) {<br />
            	System.err.println(&quot;SAVE TREE&quot;);<br />
                fos.write(json.getBytes());<br />
                <br />
                <br />
                <br />
                <br />
             // Eingabestream mit Cp-1215 Encoding<br />
                InputStream inputStream = new FileInputStream(&quot;TreeJS.json&quot;);<br />
                Reader reader = new InputStreamReader(inputStream, Charset.forName(&quot;cp1252&quot;));<br />
<br />
                // Ausgabestream mit UTF-8 Encoding<br />
                OutputStream outputStream = new FileOutputStream(&quot;TreeUC.json&quot;);<br />
                Writer writer = new OutputStreamWriter(outputStream, Charset.forName(&quot;UTF-8&quot;));<br />
<br />
                // Puffer für die Daten<br />
                char&#91;&#93; buffer = new char&#91;1024&#93;;<br />
                int bytesRead;<br />
                while ((bytesRead = reader.read(buffer)) != -1) {<br />
                    writer.write(buffer, 0, bytesRead);<br />
                }<br />
<br />
                // Streams schließen<br />
                reader.close();<br />
                writer.close();<br />
                <br />
                <br />
                <br />
            } catch (IOException e) {<br />
                e.printStackTrace();<br />
            }<br />
            Field e = Encoder.getDeclaredField(&quot;e&quot;);<br />
            e.setAccessible(true);<br />
            System.out.println(&quot;e = &quot; + e.get(fieldValue));<br />
            <br />
            Field t = Encoder.getDeclaredField(&quot;t&quot;);<br />
            t.setAccessible(true);<br />
            System.out.println(&quot;t = &quot; + t.get(fieldValue));<br />
            <br />
            Field p = Encoder.getDeclaredField(&quot;p&quot;);<br />
            p.setAccessible(true);<br />
            System.out.println(&quot;p = &quot; + p.get(fieldValue));<br />
            <br />
            Field z = Encoder.getDeclaredField(&quot;z&quot;);<br />
            z.setAccessible(true);<br />
            System.out.println(&quot;z = &quot; + z.get(fieldValue));<br />
            <br />
            Field k = Encoder.getDeclaredField(&quot;k&quot;);<br />
            k.setAccessible(true);<br />
            System.out.println(&quot;k = &quot; + k.get(fieldValue));<br />
            <br />
            Field v = Encoder.getDeclaredField(&quot;v&quot;);<br />
            v.setAccessible(true);<br />
            System.out.println(&quot;v = &quot; + v.get(fieldValue));<br />
            <br />
            Field r = Encoder.getDeclaredField(&quot;r&quot;);<br />
            r.setAccessible(true);<br />
            byte&#91;&#93; rVal = (byte&#91;&#93;) r.get(fieldValue);<br />
            System.out.println(&quot;r = &quot; + new JSONArray(rVal).toString());<br />
            <br />
            <br />
            <br />
<br />
            /*<br />
            /* Get Encoder var<br />
            for(Field dd : Encoder.getDeclaredFields()) {<br />
                System.out.println(dd.getName());<br />
                dd.setAccessible(true);<br />
                <br />
                System.out.println(dd.get(fieldValue));<br />
            }<br />
            */<br />
<br />
        } catch (Exception e) {<br />
            e.printStackTrace();<br />
        }<br />
	}<br />
	<br />
	<br />
	public static void main(String&#91;&#93; args) {        <br />
		new Demo(&quot;chat.knuddels.de&quot;, 2710);<br />
	}<br />
<br />
	@Override<br />
	public void n(String arg0) {}<br />
<br />
	@Override<br />
	public void nf() {}<br />
<br />
	@Override<br />
	public void oc() {}<br />
<br />
	@Override<br />
	public void ow(Font arg0, Font arg1, String arg2) {}<br />
<br />
	@Override<br />
	public void ro() {}<br />
<br />
	@Override<br />
	public void v(String arg0, String arg1) {}<br />
}<br />

</pre>
<script type="text/javascript">
SyntaxHighlighter.config.stripBrs = true;
SyntaxHighlighter.all();
</script><br />
<br />
Das Resultat schaut dann wie folgt aus:<br />
<script type="text/javascript" src="clientscript/syntaxhighlighter/shCore.js"></script>
<script type="text/javascript" src="clientscript/syntaxhighlighter/shBrushJScript.js"></script>
<link type="text/css" rel="stylesheet" href="clientscript/syntaxhighlighter/styles/shCoreDefault.css"/>

<pre class="brush: js;">
&#91;&#91;&#91;&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;y&quot;&#93;,&#91;null,&quot;|/serverpp \&quot;&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;tt&quot;&#93;,&#91;null,&quot;D&quot;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;ea&quot;&#93;,&#91;&#91;null,&quot;ud&quot;&#93;,&#91;&#91;&#91;null,&quot;\u0083&quot;&#93;,&#91;&#91;&#91;null,&quot;Ð·&quot;&#93;,&#91;&#91;null,&quot;Ãš&quot;&#93;,&#91;null,&quot;Ãž&quot;&#93;&#93;&#93;,&#91;null,&quot;\u20ac&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;\u203e&quot;&#93;,&#91;null,&quot;\u0085&quot;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;Ã¼r&quot;&#93;,&#91;null,&quot;Ãˆ&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;Ste&quot;&#93;,&#91;null,&quot;eck&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;06&quot;&#93;,&#91;&#91;null,&quot;Mafia&quot;&#93;,&#91;&#91;&#91;null,&quot;67&quot;&#93;,&#91;null,&quot;NI&quot;&#93;&#93;,&#91;&#91;null,&quot;lb&quot;&#93;,&#91;null,&quot;ou&quot;&#93;&#93;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;null,&quot;#&quot;&#93;&#93;,&#91;null,&quot;\n&quot;&#93;&#93;,&#91;null,&quot;Â°&quot;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;si&quot;&#93;,&#91;null,&quot;pla&quot;&#93;&#93;,&#91;&#91;null,&quot;ti&quot;&#93;,&#91;null,&quot;for&quot;&#93;&#93;&#93;,&#91;null,&quot;\f&quot;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;boy&quot;&#93;,&#91;null,&quot;\r&quot;&#93;&#93;,&#91;&#91;null,&quot;man&quot;&#93;,&#91;&#91;null,&quot;Kl&quot;&#93;,&#91;&#91;null,&quot;97&quot;&#93;,&#91;null,&quot;ub&quot;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;urg&quot;&#93;,&#91;null,&quot;kte&quot;&#93;&#93;,&#91;&#91;null,&quot;OK&quot;&#93;,&#91;null,&quot;ue&quot;&#93;&#93;&#93;&#93;,&#91;null,&quot;b&quot;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;op&quot;&#93;,&#91;&#91;null,&quot;ev&quot;&#93;,&#91;null,&quot;Ob&quot;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;per&quot;&#93;,&#91;null,&quot;Ko&quot;&#93;&#93;,&#91;null,&quot;Mo&quot;&#93;&#93;&#93;,&#91;null,&quot;_Â°&gt;_h&quot;&#93;&#93;,&#91;null,&quot;m&quot;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;di&quot;&#93;,&#91;null,&quot;ra&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;j&quot;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;\u0082&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;ÏŠ&quot;&#93;,&#91;null,&quot;Ã™&quot;&#93;&#93;,&#91;null,&quot;Ã†&quot;&#93;&#93;,&#91;null,&quot;Å¡&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;Â¹&quot;&#93;,&#91;&#91;null,&quot;â–¬&quot;&#93;,&#91;&#91;null,&quot;Ã‰&quot;&#93;,&#91;null,&quot;Ã¸&quot;&#93;&#93;&#93;&#93;&#93;,&#91;null,&quot;53&quot;&#93;&#93;,&#91;&#91;null,&quot;lh&quot;&#93;,&#91;&#91;null,&quot;\u2022&quot;&#93;,&#91;null,&quot;`&quot;&#93;&#93;&#93;&#93;&#93;,&#91;null,&quot;py&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;13&quot;&#93;,&#91;null,&quot;nn&quot;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;Ã£&quot;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;rc&quot;&#93;,&#91;null,&quot;_nicklist_&quot;&#93;&#93;,&#91;&#91;null,&quot;ef&quot;&#93;,&#91;null,&quot;bra&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;ee&quot;&#93;,&#91;&#91;null,&quot;ten&quot;&#93;,&#91;null,&quot;nc&quot;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;?d=&quot;&#93;,&#91;&#91;null,&quot;Wo&quot;&#93;,&#91;&#91;&#91;null,&quot;77&quot;&#93;,&#91;null,&quot;Ãº&quot;&#93;&#93;,&#91;null,&quot;94&quot;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;ing&quot;&#93;,&#91;&#91;null,&quot;\u000e&quot;&#93;,&#91;null,&quot;02&quot;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;De&quot;&#93;,&#91;null,&quot;au&quot;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;Ru&quot;&#93;,&#91;&#91;null,&quot;oy&quot;&#93;,&#91;null,&quot;km&quot;&#93;&#93;&#93;,&#91;null,&quot;eig&quot;&#93;&#93;,&#91;&#91;null,&quot;Es&quot;&#93;,&#91;&#91;null,&quot;ks&quot;&#93;,&#91;null,&quot;Ol&quot;&#93;&#93;&#93;&#93;&#93;,&#91;null,&quot;5&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;E&quot;&#93;,&#91;&#91;null,&quot;ii&quot;&#93;,&#91;&#91;null,&quot;\u0016&quot;&#93;,&#91;&#91;&#91;null,&quot;mf&quot;&#93;,&#91;null,&quot;Fo&quot;&#93;&#93;,&#91;&#91;null,&quot;sk&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;Â²&quot;&#93;,&#91;&#91;null,&quot;â•&#65533;&quot;&#93;,&#91;null,&quot;\u009e&quot;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;ï*¼&quot;&#93;,&#91;null,&quot;ïº¡&quot;&#93;&#93;,&#91;&#91;null,&quot;ïº¦&quot;&#93;,&#91;null,&quot;\u2019&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;Ä™&quot;&#93;,&#91;&#91;null,&quot;ï®Ž&quot;&#93;,&#91;null,&quot;ï»¶&quot;&#93;&#93;&#93;&#93;&#93;,&#91;null,&quot;\u0015&quot;&#93;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;Er&quot;&#93;,&#91;&#91;null,&quot;use&quot;&#93;,&#91;null,&quot;On&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;ol&quot;&#93;,&#91;&#91;null,&quot;89&quot;&#93;,&#91;&#91;null,&quot;kÃ¶&quot;&#93;,&#91;null,&quot;Ze&quot;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;art&quot;&#93;,&#91;null,&quot;ri&quot;&#93;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;w&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;co&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;\u0019&quot;&#93;,&#91;null,&quot;Ã„&quot;&#93;&#93;,&#91;null,&quot;Ct&quot;&#93;&#93;,&#91;null,&quot;va&quot;&#93;&#93;&#93;,&#91;null,&quot;bi&quot;&#93;&#93;,&#91;&#91;null,&quot;lin&quot;&#93;,&#91;&#91;null,&quot;hr&quot;&#93;,&#91;null,&quot;id&quot;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;do&quot;&#93;,&#91;null,&quot;nk&quot;&#93;&#93;,&#91;&#91;null,&quot;xx&quot;&#93;,&#91;&#91;&#91;null,&quot;wb&quot;&#93;,&#91;&#91;null,&quot;\u0018&quot;&#93;,&#91;&#91;&#91;null,&quot;Ðº&quot;&#93;,&#91;null,&quot;Ã&#65533;&quot;&#93;&#93;,&#91;null,&quot;\u008b&quot;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;ph&quot;&#93;,&#91;null,&quot;fw&quot;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;noc&quot;&#93;,&#91;null,&quot;we&quot;&#93;&#93;,&#91;null,&quot;yer&quot;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;fe&quot;&#93;,&#91;&#91;null,&quot;ko&quot;&#93;,&#91;null,&quot;ht&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;mi&quot;&#93;,&#91;&#91;null,&quot;100&quot;&#93;,&#91;null,&quot;31&quot;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;3&quot;&#93;,&#91;null,&quot;l&quot;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;W&quot;&#93;,&#91;null,&quot;fc&quot;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;kÃ¼&quot;&#93;,&#91;&#91;&#91;null,&quot;Ð²&quot;&#93;,&#91;&#91;null,&quot;Ã¹&quot;&#93;,&#91;&#91;&#91;null,&quot;Ò“&quot;&#93;,&#91;null,&quot;â„¢&quot;&#93;&#93;,&#91;null,&quot;Ð°&quot;&#93;&#93;&#93;&#93;,&#91;null,&quot;Â´&quot;&#93;&#93;&#93;,&#91;null,&quot;iz&quot;&#93;&#93;,&#91;null,&quot;09&quot;&#93;&#93;,&#91;null,&quot;BN&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;im&quot;&#93;,&#91;null,&quot;\u0001&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;\u0000p\u0000&quot;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;Kr&quot;&#93;,&#91;&#91;null,&quot;Oo&quot;&#93;,&#91;null,&quot;eg&quot;&#93;&#93;&#93;,&#91;null,&quot;Pun&quot;&#93;&#93;,&#91;&#91;null,&quot;yl&quot;&#93;,&#91;null,&quot;eh&quot;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;Ro&quot;&#93;,&#91;null,&quot;Su&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;xe&quot;&#93;,&#91;null,&quot;hel&quot;&#93;&#93;,&#91;null,&quot;hlt&quot;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;et&quot;&#93;,&#91;null,&quot;sm&quot;&#93;&#93;,&#91;&#91;null,&quot;M&quot;&#93;,&#91;&#91;null,&quot;pa&quot;&#93;,&#91;null,&quot;38&quot;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;z&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;Fl&quot;&#93;,&#91;null,&quot;48&quot;&#93;&#93;,&#91;null,&quot;uf&quot;&#93;&#93;,&#91;&#91;null,&quot;Knu&quot;&#93;,&#91;null,&quot;Ni&quot;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;hi&quot;&#93;,&#91;&#91;&#91;null,&quot;lz&quot;&#93;,&#91;null,&quot;Ãœ&quot;&#93;&#93;,&#91;null,&quot;her&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;So&quot;&#93;,&#91;&#91;&#91;null,&quot;SÃ¼&quot;&#93;,&#91;null,&quot;uh&quot;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;â†’&quot;&#93;,&#91;null,&quot;â–‘&quot;&#93;&#93;,&#91;null,&quot;Ð½&quot;&#93;&#93;,&#91;null,&quot;rÃ¼&quot;&#93;&#93;&#93;&#93;&#93;,&#91;null,&quot;Fh&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;Min&quot;&#93;,&#91;null,&quot;ba&quot;&#93;&#93;,&#91;&#91;null,&quot;pl&quot;&#93;,&#91;null,&quot;0,0,0&quot;&#93;&#93;&#93;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;17&quot;&#93;,&#91;null,&quot;  &quot;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;bin&quot;&#93;,&#91;&#91;null,&quot;Gl&quot;&#93;,&#91;null,&quot;Nu&quot;&#93;&#93;&#93;,&#91;null,&quot;Mafia2&quot;&#93;&#93;,&#91;&#91;null,&quot;da&quot;&#93;,&#91;&#91;&#91;null,&quot;Rh&quot;&#93;,&#91;null,&quot;ken&quot;&#93;&#93;,&#91;null,&quot;Sl&quot;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;I&quot;&#93;,&#91;&#91;null,&quot;knuddel&quot;&#93;,&#91;null,&quot;Fb&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;Bo&quot;&#93;,&#91;&#91;&#91;null,&quot;To&quot;&#93;,&#91;&#91;null,&quot;za&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;Æ’&quot;&#93;,&#91;&#91;null,&quot;Âµ&quot;&#93;,&#91;null,&quot;â–“&quot;&#93;&#93;&#93;,&#91;null,&quot;\u0086&quot;&#93;&#93;,&#91;null,&quot;Ð¸&quot;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;Go&quot;&#93;,&#91;null,&quot;56&quot;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;ois&quot;&#93;,&#91;null,&quot;ce&quot;&#93;&#93;,&#91;null,&quot;N&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;03&quot;&#93;,&#91;&#91;null,&quot;rb&quot;&#93;,&#91;null,&quot;hn&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;rie&quot;&#93;,&#91;&#91;null,&quot;Je&quot;&#93;,&#91;null,&quot;Dr&quot;&#93;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;4&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;FuÃŸ&quot;&#93;,&#91;&#91;null,&quot;Ju&quot;&#93;,&#91;&#91;null,&quot;ny&quot;&#93;,&#91;null,&quot;Yo&quot;&#93;&#93;&#93;&#93;,&#91;null,&quot;36&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;hei&quot;&#93;,&#91;&#91;&#91;null,&quot;58&quot;&#93;,&#91;null,&quot;ov&quot;&#93;&#93;,&#91;null,&quot;$&quot;&#93;&#93;&#93;,&#91;null,&quot;BB&quot;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;&amp;&quot;&#93;,&#91;&#91;&#91;null,&quot;Bingo&quot;&#93;,&#91;&#91;null,&quot;lie&quot;&#93;,&#91;&#91;null,&quot;by&quot;&#93;,&#91;null,&quot;Ig&quot;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;ste&quot;&#93;,&#91;null,&quot;\u0011&quot;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;2&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;G&quot;&#93;,&#91;&#91;null,&quot;ic&quot;&#93;,&#91;&#91;null,&quot;kle&quot;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;ï»»&quot;&#93;,&#91;null,&quot;Ð¯&quot;&#93;&#93;,&#91;null,&quot;Ñ’&quot;&#93;&#93;,&#91;null,&quot;Ã*&quot;&#93;&#93;,&#91;&#91;null,&quot;Û—&quot;&#93;,&#91;&#91;&#91;null,&quot;Ðµ&quot;&#93;,&#91;null,&quot;Ã&#65533;&quot;&#93;&#93;,&#91;&#91;null,&quot;Ã•&quot;&#93;,&#91;null,&quot;â”‚&quot;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;Ã®&quot;&#93;,&#91;null,&quot;â•”&quot;&#93;&#93;,&#91;null,&quot;&quot;&#93;&#93;,&#91;null,&quot;Ã–&quot;&#93;&#93;&#93;,&#91;null,&quot;64&quot;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;se&quot;&#93;,&#91;null,&quot;23&quot;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;ng&quot;&#93;,&#91;&#91;null,&quot;wa&quot;&#93;,&#91;&#91;null,&quot;DÃ¼&quot;&#93;,&#91;null,&quot;fl&quot;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;ar&quot;&#93;,&#91;&#91;null,&quot;rs&quot;&#93;,&#91;null,&quot;Bi&quot;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;null,&quot;\u0000p\u0000B\u0000-\u0000&quot;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;Ãµ&quot;&#93;,&#91;null,&quot;,&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;Ã‚&quot;&#93;,&#91;&#91;&#91;null,&quot;ute&quot;&#93;,&#91;null,&quot;ve&quot;&#93;&#93;,&#91;&#91;null,&quot;@&quot;&#93;,&#91;&#91;&#91;null,&quot;sl&quot;&#93;,&#91;null,&quot;ac&quot;&#93;&#93;,&#91;null,&quot;He&quot;&#93;&#93;&#93;&#93;&#93;,&#91;null,&quot;B&quot;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;20&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;Wi&quot;&#93;,&#91;&#91;&#91;null,&quot;cl&quot;&#93;,&#91;null,&quot;MÃ¶&quot;&#93;&#93;,&#91;null,&quot;dm&quot;&#93;&#93;&#93;,&#91;null,&quot;Ma&quot;&#93;&#93;,&#91;null,&quot;le&quot;&#93;&#93;&#93;,&#91;null,&quot;i&quot;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;ot&quot;&#93;,&#91;&#91;&#91;null,&quot;sc&quot;&#93;,&#91;null,&quot;uu&quot;&#93;&#93;,&#91;null,&quot;\t&quot;&#93;&#93;&#93;,&#91;null,&quot;S&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;geb&quot;&#93;,&#91;null,&quot;Me&quot;&#93;&#93;,&#91;&#91;null,&quot;female.b.my_4.gif&quot;&#93;,&#91;null,&quot;tl&quot;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;16&quot;&#93;,&#91;&#91;null,&quot;cht&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;lÃ¤&quot;&#93;,&#91;null,&quot;pu&quot;&#93;&#93;,&#91;&#91;null,&quot;sb&quot;&#93;,&#91;null,&quot;51&quot;&#93;&#93;&#93;,&#91;null,&quot;Fif&quot;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;90&quot;&#93;,&#91;null,&quot;erh&quot;&#93;&#93;,&#91;null,&quot;255&quot;&#93;&#93;,&#91;&#91;null,&quot;K&quot;&#93;,&#91;null,&quot;ig&quot;&#93;&#93;&#93;,&#91;null,&quot;|&quot;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;ma&quot;&#93;,&#91;&#91;&#91;null,&quot;29&quot;&#93;,&#91;&#91;&#91;null,&quot;Am&quot;&#93;,&#91;&#91;&#91;null,&quot;â™«&quot;&#93;,&#91;&#91;null,&quot;\u203a&quot;&#93;,&#91;&#91;null,&quot;\u009d&quot;&#93;,&#91;null,&quot; &quot;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;Ã¾&quot;&#93;,&#91;null,&quot;â†&#65533;&quot;&#93;&#93;,&#91;&#91;null,&quot;\u0099&quot;&#93;,&#91;null,&quot;Å&#65533;&quot;&#93;&#93;&#93;,&#91;null,&quot;Ð¼&quot;&#93;&#93;&#93;&#93;,&#91;null,&quot;KÃ¶&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;von&quot;&#93;,&#91;null,&quot;Ki&quot;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;Ã¤u&quot;&#93;,&#91;null,&quot;Ce&quot;&#93;&#93;,&#91;&#91;null,&quot;78&quot;&#93;,&#91;null,&quot;Gi&quot;&#93;&#93;&#93;,&#91;null,&quot;nu&quot;&#93;&#93;,&#91;null,&quot;gen&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;du&quot;&#93;,&#91;&#91;null,&quot;Mar&quot;&#93;,&#91;null,&quot;ru&quot;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;vo&quot;&#93;,&#91;null,&quot;ju&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;â„“&quot;&#93;,&#91;null,&quot;bs&quot;&#93;&#93;,&#91;null,&quot;uhp&quot;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;FotoContest&quot;&#93;,&#91;&#91;&#91;null,&quot;Cp&quot;&#93;,&#91;&#91;null,&quot;tor&quot;&#93;,&#91;null,&quot;rea&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;zi&quot;&#93;,&#91;null,&quot;kann&quot;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;ll&quot;&#93;,&#91;null,&quot;?&quot;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;Ã»&quot;&#93;,&#91;null,&quot;Â¾&quot;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;mp&quot;&#93;,&#91;&#91;null,&quot;ln&quot;&#93;,&#91;null,&quot;Spi&quot;&#93;&#93;&#93;,&#91;null,&quot;us&quot;&#93;&#93;,&#91;null,&quot;st&quot;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;rf&quot;&#93;,&#91;&#91;null,&quot;\u0006&quot;&#93;,&#91;null,&quot;\u008f&quot;&#93;&#93;&#93;,&#91;null,&quot;ff&quot;&#93;&#93;,&#91;&#91;null,&quot;sh&quot;&#93;,&#91;&#91;null,&quot;44&quot;&#93;,&#91;null,&quot;Ic&quot;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;hat&quot;&#93;,&#91;&#91;null,&quot;ja&quot;&#93;,&#91;&#91;null,&quot;.w_&quot;&#93;,&#91;null,&quot;\u0014&quot;&#93;&#93;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;g&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;27&quot;&#93;,&#91;&#91;&#91;null,&quot;Ar&quot;&#93;,&#91;null,&quot;Ñ”&quot;&#93;&#93;,&#91;null,&quot;Ã¼b&quot;&#93;&#93;&#93;,&#91;null,&quot;ie&quot;&#93;&#93;,&#91;null,&quot;10&quot;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;Und&quot;&#93;,&#91;null,&quot;ies&quot;&#93;&#93;,&#91;&#91;null,&quot;91&quot;&#93;,&#91;&#91;&#91;null,&quot;Â¶&quot;&#93;,&#91;&#91;null,&quot;Ã©&quot;&#93;,&#91;&#91;null,&quot;Ã˜&quot;&#93;,&#91;&#91;&#91;null,&quot;Å‹&quot;&#93;,&#91;null,&quot;â–€&quot;&#93;&#93;,&#91;null,&quot;Ã§&quot;&#93;&#93;&#93;&#93;&#93;,&#91;null,&quot;II&quot;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;go&quot;&#93;,&#91;&#91;null,&quot;ob&quot;&#93;,&#91;null,&quot;'&quot;&#93;&#93;&#93;&#93;,&#91;null,&quot;knuddels.de&quot;&#93;&#93;,&#91;null,&quot;x&quot;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;&#91;&quot;&#93;,&#91;&#91;null,&quot;nge&quot;&#93;,&#91;&#91;null,&quot;lt&quot;&#93;,&#91;&#91;null,&quot;88&quot;&#93;,&#91;null,&quot;Zi&quot;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;Na&quot;&#93;,&#91;null,&quot;Fa&quot;&#93;&#93;,&#91;null,&quot;&#93;&quot;&#93;&#93;&#93;,&#91;null,&quot;Â¼&quot;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;Ã¤&quot;&#93;,&#91;&#91;null,&quot;aus&quot;&#93;,&#91;null,&quot;sich&quot;&#93;&#93;&#93;,&#91;null,&quot;icon&quot;&#93;&#93;,&#91;&#91;null,&quot;6&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;â–ˆ&quot;&#93;,&#91;null,&quot;Gr&quot;&#93;&#93;,&#91;null,&quot;po&quot;&#93;&#93;,&#91;null,&quot;30&quot;&#93;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;&gt;&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;Sch&quot;&#93;,&#91;&#91;&#91;null,&quot;par&quot;&#93;,&#91;null,&quot;ey&quot;&#93;&#93;,&#91;&#91;null,&quot;Ga&quot;&#93;,&#91;null,&quot;Nor&quot;&#93;&#93;&#93;&#93;,&#91;null,&quot;mafia&quot;&#93;&#93;,&#91;&#91;null,&quot;12&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;Ja&quot;&#93;,&#91;null,&quot;sÃ¼&quot;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;Â¸&quot;&#93;,&#91;null,&quot;\u008a&quot;&#93;&#93;,&#91;&#91;null,&quot;\u001b&quot;&#93;,&#91;null,&quot;\u0087&quot;&#93;&#93;&#93;,&#91;null,&quot;Ã¶n&quot;&#93;&#93;,&#91;null,&quot;mag&quot;&#93;&#93;&#93;,&#91;null,&quot;ver&quot;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;Ge&quot;&#93;,&#91;null,&quot;Â¤&quot;&#93;&#93;,&#91;null,&quot;22&quot;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;ag&quot;&#93;,&#91;&#91;null,&quot;72&quot;&#93;,&#91;&#91;null,&quot;\u0090&quot;&#93;,&#91;&#91;null,&quot;Ã´&quot;&#93;,&#91;null,&quot;\u0088&quot;&#93;&#93;&#93;&#93;&#93;,&#91;null,&quot;hal&quot;&#93;&#93;,&#91;null,&quot;21&quot;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;ro&quot;&#93;,&#91;&#91;null,&quot;Ps&quot;&#93;,&#91;&#91;null,&quot;59&quot;&#93;,&#91;null,&quot;Fu&quot;&#93;&#93;&#93;&#93;,&#91;null,&quot;la&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;60&quot;&#93;,&#91;null,&quot;P&quot;&#93;&#93;,&#91;&#91;null,&quot;Stu&quot;&#93;,&#91;&#91;null,&quot;mu&quot;&#93;,&#91;&#91;null,&quot;Aa&quot;&#93;,&#91;null,&quot;62&quot;&#93;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;null,&quot;n&quot;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;:&quot;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;dt&quot;&#93;,&#91;&#91;null,&quot;ONL&quot;&#93;,&#91;null,&quot;92&quot;&#93;&#93;&#93;,&#91;null,&quot;|/go &quot;&#93;&#93;,&#91;&#91;null,&quot;Channel&quot;&#93;,&#91;&#91;null,&quot;bei&quot;&#93;,&#91;null,&quot;Hi&quot;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;\u0002&quot;&#93;,&#91;null,&quot;8&quot;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;f&quot;&#93;,&#91;&#91;null,&quot;200&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;fo&quot;&#93;,&#91;null,&quot;hm&quot;&#93;&#93;,&#91;null,&quot;ros&quot;&#93;&#93;,&#91;null,&quot;gl&quot;&#93;&#93;&#93;&#93;,&#91;null,&quot;0&quot;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;49&quot;&#93;,&#91;null,&quot;ens&quot;&#93;&#93;,&#91;null,&quot;34&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;swh&quot;&#93;,&#91;null,&quot;bt&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;HP&quot;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;Ã“&quot;&#93;,&#91;null,&quot;â–’&quot;&#93;&#93;,&#91;&#91;null,&quot;Ã‡&quot;&#93;,&#91;null,&quot;Ã‘&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;âˆš&quot;&#93;,&#91;null,&quot;â†“&quot;&#93;&#93;&#93;,&#91;null,&quot;Ã¢&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;Â±&quot;&#93;,&#91;null,&quot;Îž&quot;&#93;&#93;,&#91;null,&quot;\u0084&quot;&#93;&#93;&#93;&#93;,&#91;null,&quot;Bad&quot;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;ed&quot;&#93;,&#91;&#91;&#91;null,&quot;\u000f&quot;&#93;,&#91;null,&quot;tde&quot;&#93;&#93;,&#91;null,&quot;.png&quot;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;d&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;mb&quot;&#93;,&#91;null,&quot;kn&quot;&#93;&#93;,&#91;null,&quot;Da&quot;&#93;&#93;,&#91;&#91;null,&quot;ir&quot;&#93;,&#91;&#91;null,&quot;Gir&quot;&#93;,&#91;null,&quot;2009&quot;&#93;&#93;&#93;&#93;&#93;&#93;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;00&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;Pri&quot;&#93;,&#91;&#91;null,&quot;Bre&quot;&#93;,&#91;null,&quot;Te&quot;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;Ve&quot;&#93;,&#91;null,&quot;54&quot;&#93;&#93;,&#91;null,&quot;Sh&quot;&#93;&#93;,&#91;null,&quot;Who&quot;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;ft&quot;&#93;,&#91;null,&quot;Ne&quot;&#93;&#93;,&#91;null,&quot;Xx&quot;&#93;&#93;,&#91;null,&quot;James&quot;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;Cl&quot;&#93;,&#91;null,&quot;mo&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;ang&quot;&#93;,&#91;null,&quot;ÃŒ&quot;&#93;&#93;,&#91;&#91;null,&quot;Wu&quot;&#93;,&#91;null,&quot;04&quot;&#93;&#93;&#93;&#93;,&#91;null,&quot;9&quot;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;0065&quot;&#93;,&#91;&#91;&#91;null,&quot;CH&quot;&#93;,&#91;null,&quot;ci&quot;&#93;&#93;,&#91;null,&quot;gh&quot;&#93;&#93;&#93;,&#91;null,&quot;ke&quot;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;ur&quot;&#93;,&#91;null,&quot;ak&quot;&#93;&#93;,&#91;&#91;null,&quot;ia&quot;&#93;,&#91;null,&quot;wu&quot;&#93;&#93;&#93;,&#91;null,&quot;pics/&quot;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;den&quot;&#93;,&#91;&#91;null,&quot;Lo&quot;&#93;,&#91;null,&quot;sta&quot;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;GB&quot;&#93;,&#91;null,&quot;sbu&quot;&#93;&#93;,&#91;&#91;null,&quot;oh&quot;&#93;,&#91;null,&quot;qu&quot;&#93;&#93;&#93;,&#91;null,&quot;Sa&quot;&#93;&#93;,&#91;null,&quot;li&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;a&quot;&#93;,&#91;&#91;null,&quot;O&quot;&#93;,&#91;&#91;&#91;null,&quot;Fe&quot;&#93;,&#91;&#91;null,&quot;xy&quot;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;Â£&quot;&#93;,&#91;null,&quot;Ð¾&quot;&#93;&#93;,&#91;null,&quot;\u009a&quot;&#93;&#93;,&#91;null,&quot;Â©&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;Ã·&quot;&#93;,&#91;null,&quot;â•—&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;â”€&quot;&#93;,&#91;null,&quot;\u201c&quot;&#93;&#93;,&#91;&#91;null,&quot;Â*&quot;&#93;,&#91;null,&quot;Â½&quot;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;Â«&quot;&#93;,&#91;&#91;&#91;null,&quot;â•š&quot;&#93;,&#91;&#91;null,&quot;Ã‹&quot;&#93;,&#91;null,&quot;Ã²&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;Â¥&quot;&#93;,&#91;null,&quot;Ã³&quot;&#93;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;null,&quot;nich&quot;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;bes&quot;&#93;,&#91;null,&quot;tc&quot;&#93;&#93;,&#91;&#91;null,&quot;Â¬&quot;&#93;,&#91;null,&quot;â™¥&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;men&quot;&#93;,&#91;null,&quot;St&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;bur&quot;&#93;,&#91;null,&quot;rt&quot;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;93&quot;&#93;,&#91;null,&quot;Wa&quot;&#93;&#93;,&#91;&#91;null,&quot;Ti&quot;&#93;,&#91;null,&quot;07&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;ga&quot;&#93;,&#91;&#91;null,&quot;ds&quot;&#93;,&#91;&#91;null,&quot;99&quot;&#93;,&#91;null,&quot;Mu&quot;&#93;&#93;&#93;&#93;&#93;,&#91;null,&quot;sch&quot;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;Jo&quot;&#93;,&#91;null,&quot;Her&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;gg&quot;&#93;,&#91;null,&quot;vb&quot;&#93;&#93;,&#91;null,&quot;ib&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;ent&quot;&#93;,&#91;&#91;&#91;null,&quot;87&quot;&#93;,&#91;null,&quot;ya&quot;&#93;&#93;,&#91;null,&quot;lf&quot;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;or&quot;&#93;,&#91;&#91;null,&quot;eb&quot;&#93;,&#91;null,&quot;aw&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;\u0012&quot;&#93;,&#91;null,&quot;tz&quot;&#93;&#93;&#93;&#93;,&#91;null,&quot;ch&quot;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;rl&quot;&#93;,&#91;null,&quot;.shadow_&quot;&#93;&#93;,&#91;null,&quot;sp&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;to&quot;&#93;,&#91;null,&quot;oo&quot;&#93;&#93;,&#91;null,&quot;*&quot;&#93;&#93;&#93;,&#91;null,&quot;15&quot;&#93;&#93;,&#91;&#91;null,&quot;o&quot;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;nf&quot;&#93;,&#91;null,&quot;86&quot;&#93;&#93;,&#91;null,&quot;95&quot;&#93;&#93;,&#91;&#91;null,&quot;INE&quot;&#93;,&#91;null,&quot;Si&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;Foto&quot;&#93;,&#91;&#91;null,&quot;ys&quot;&#93;,&#91;&#91;null,&quot;96&quot;&#93;,&#91;&#91;&#91;null,&quot;\u001a&quot;&#93;,&#91;null,&quot;\u001f&quot;&#93;&#93;,&#91;&#91;null,&quot;\u0098&quot;&#93;,&#91;&#91;null,&quot;Ã¡&quot;&#93;,&#91;&#91;null,&quot;Ã”&quot;&#93;,&#91;&#91;null,&quot;Ñ—&quot;&#93;,&#91;null,&quot;Ã¬&quot;&#93;&#93;&#93;&#93;&#93;&#93;&#93;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;r&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;ist&quot;&#93;,&#91;&#91;&#91;null,&quot;Lad&quot;&#93;,&#91;null,&quot;Mom&quot;&#93;&#93;,&#91;&#91;null,&quot;Th&quot;&#93;,&#91;null,&quot;Pro&quot;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;ka&quot;&#93;,&#91;null,&quot;Ch&quot;&#93;&#93;,&#91;null,&quot;ni&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;ss&quot;&#93;,&#91;&#91;null,&quot;.my_&quot;&#93;,&#91;&#91;null,&quot;vi&quot;&#93;,&#91;&#91;null,&quot;Mon&quot;&#93;,&#91;null,&quot;pi&quot;&#93;&#93;&#93;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;Qf&quot;&#93;,&#91;&#91;null,&quot;oc&quot;&#93;,&#91;null,&quot;sg&quot;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;Ta&quot;&#93;,&#91;null,&quot;tw&quot;&#93;&#93;,&#91;&#91;null,&quot;if&quot;&#93;,&#91;null,&quot;zz&quot;&#93;&#93;&#93;&#93;,&#91;null,&quot;na&quot;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;Au&quot;&#93;,&#91;null,&quot;ai&quot;&#93;&#93;,&#91;null,&quot;Knuddels&quot;&#93;&#93;,&#91;null,&quot;X&quot;&#93;&#93;&#93;,&#91;null,&quot;Â°&gt;_h&quot;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;ug&quot;&#93;,&#91;null,&quot;My&quot;&#93;&#93;,&#91;null,&quot;Pe&quot;&#93;&#93;,&#91;&#91;null,&quot;ex&quot;&#93;,&#91;null,&quot;No&quot;&#93;&#93;&#93;,&#91;null,&quot;Ka&quot;&#93;&#93;,&#91;&#91;null,&quot;no&quot;&#93;,&#91;&#91;&#91;null,&quot;xt&quot;&#93;,&#91;null,&quot;hp&quot;&#93;&#93;,&#91;&#91;null,&quot;kr&quot;&#93;,&#91;null,&quot;Pu&quot;&#93;&#93;&#93;&#93;&#93;,&#91;null,&quot;18&quot;&#93;&#93;,&#91;&#91;null,&quot;R&quot;&#93;,&#91;&#91;&#91;null,&quot;Sin&quot;&#93;,&#91;null,&quot;An&quot;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;Ri&quot;&#93;,&#91;null,&quot;sel&quot;&#93;&#93;,&#91;null,&quot;bea&quot;&#93;&#93;,&#91;&#91;null,&quot;Vo&quot;&#93;,&#91;&#91;null,&quot;ah&quot;&#93;,&#91;null,&quot;Qu&quot;&#93;&#93;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;+&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;c&quot;&#93;,&#91;&#91;&#91;null,&quot;ts&quot;&#93;,&#91;null,&quot;Tr&quot;&#93;&#93;,&#91;null,&quot;We&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;L&quot;&#93;,&#91;null,&quot;icon_gender_&quot;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;me&quot;&#93;,&#91;&#91;null,&quot;.h_&quot;&#93;,&#91;&#91;null,&quot;www&quot;&#93;,&#91;&#91;null,&quot;yo&quot;&#93;,&#91;null,&quot;hu&quot;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;|/fotowhois \&quot;&quot;&#93;,&#91;&#91;null,&quot;mit&quot;&#93;,&#91;null,&quot;so&quot;&#93;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;\u000b&quot;&#93;,&#91;&#91;&#91;null,&quot;Fre&quot;&#93;,&#91;&#91;&#91;null,&quot;max&quot;&#93;,&#91;null,&quot;reg&quot;&#93;&#93;,&#91;&#91;null,&quot;Va&quot;&#93;,&#91;null,&quot;wer&quot;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;u&quot;&#93;,&#91;&#91;&#91;null,&quot;wie&quot;&#93;,&#91;null,&quot;icons/&quot;&#93;&#93;,&#91;&#91;null,&quot;En&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;â•&#65533;&quot;&#93;,&#91;&#91;null,&quot;\u0095&quot;&#93;,&#91;null,&quot;Ã—&quot;&#93;&#93;&#93;,&#91;null,&quot;\u009f&quot;&#93;&#93;,&#91;null,&quot;jo&quot;&#93;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;null,&quot;%&quot;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;255,255,255&quot;&#93;,&#91;&#91;null,&quot;ei&quot;&#93;,&#91;&#91;null,&quot;dr&quot;&#93;,&#91;null,&quot;ip&quot;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;Du&quot;&#93;,&#91;&#91;&#91;null,&quot;kf&quot;&#93;,&#91;null,&quot;57&quot;&#93;&#93;,&#91;null,&quot;Pl&quot;&#93;&#93;&#93;,&#91;null,&quot;lo&quot;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;Sta&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;Î±&quot;&#93;,&#91;&#91;null,&quot;\u001d&quot;&#93;,&#91;&#91;&#91;null,&quot;Ï„&quot;&#93;,&#91;null,&quot;Ã’&quot;&#93;&#93;,&#91;null,&quot;\u0091&quot;&#93;&#93;&#93;&#93;,&#91;null,&quot;ER&quot;&#93;&#93;,&#91;null,&quot;ku&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;ls&quot;&#93;,&#91;&#91;null,&quot;act&quot;&#93;,&#91;null,&quot;Fr&quot;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;\\&quot;&#93;,&#91;&#91;null,&quot;fotos/knuddels.de?n=&quot;&#93;,&#91;null,&quot;H&quot;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;   &quot;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;Lu&quot;&#93;,&#91;null,&quot;dem&quot;&#93;&#93;,&#91;null,&quot;end&quot;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;BÃ¼&quot;&#93;,&#91;null,&quot;ap&quot;&#93;&#93;,&#91;null,&quot;74&quot;&#93;&#93;,&#91;null,&quot;chl&quot;&#93;&#93;,&#91;null,&quot;gle&quot;&#93;&#93;&#93;,&#91;null,&quot;40&quot;&#93;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;!&quot;&#93;,&#91;null,&quot;32&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;ein&quot;&#93;,&#91;&#91;null,&quot;sei&quot;&#93;,&#91;&#91;null,&quot;Ke&quot;&#93;,&#91;null,&quot;ÃŸ&quot;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;fg&quot;&#93;,&#91;null,&quot;bal&quot;&#93;&#93;,&#91;null,&quot;ta&quot;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;19&quot;&#93;,&#91;&#91;null,&quot;nde&quot;&#93;,&#91;&#91;&#91;null,&quot;Men&quot;&#93;,&#91;null,&quot;Lie&quot;&#93;&#93;,&#91;null,&quot;ad&quot;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;Sf&quot;&#93;,&#91;null,&quot;Â§&quot;&#93;&#93;,&#91;null,&quot;in&quot;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;ec&quot;&#93;,&#91;&#91;null,&quot;\u001e&quot;&#93;,&#91;&#91;null,&quot;\u2039&quot;&#93;,&#91;&#91;null,&quot;Ã&#65533;&quot;&#93;,&#91;&#91;null,&quot;Â¦&quot;&#93;,&#91;null,&quot;Ãª&quot;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;Î¹&quot;&#93;,&#91;null,&quot;HÃ¼&quot;&#93;&#93;&#93;,&#91;null,&quot;os&quot;&#93;&#93;,&#91;null,&quot;rn&quot;&#93;&#93;,&#91;&#91;null,&quot;.mx_&quot;&#93;,&#91;null,&quot;wei&quot;&#93;&#93;&#93;,&#91;null,&quot;..&quot;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;ler&quot;&#93;,&#91;null,&quot;rk&quot;&#93;&#93;,&#91;null,&quot;q&quot;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;tf&quot;&#93;,&#91;null,&quot;Un&quot;&#93;&#93;,&#91;null,&quot;Po&quot;&#93;&#93;,&#91;null,&quot;Ver&quot;&#93;&#93;&#93;,&#91;null,&quot;p&quot;&#93;&#93;&#93;,&#91;null,&quot;/&quot;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;}&quot;&#93;,&#91;&#91;&#91;null,&quot;dw&quot;&#93;,&#91;&#91;null,&quot;Ñ•&quot;&#93;,&#91;&#91;null,&quot;\u0092&quot;&#93;,&#91;null,&quot;Ã«&quot;&#93;&#93;&#93;&#93;,&#91;null,&quot;az&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;lu&quot;&#93;,&#91;null,&quot;Fi&quot;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;kl&quot;&#93;,&#91;null,&quot;wo&quot;&#93;&#93;,&#91;null,&quot;80&quot;&#93;&#93;&#93;,&#91;null,&quot;\u0000p\u0000B\u0000pics/icon_fullChannel.gif\u0000-\u0000&quot;&#93;&#93;,&#91;&#91;null,&quot;el&quot;&#93;,&#91;&#91;null,&quot;ty&quot;&#93;,&#91;&#91;&#91;null,&quot;Neu&quot;&#93;,&#91;&#91;null,&quot;52&quot;&#93;,&#91;null,&quot;lm&quot;&#93;&#93;&#93;,&#91;null,&quot;01&quot;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;|/w \&quot;&lt;&quot;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;.quadcut_&quot;&#93;,&#91;&#91;&#91;null,&quot;69&quot;&#93;,&#91;null,&quot;dÃ¤&quot;&#93;&#93;,&#91;null,&quot;tu&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;fre&quot;&#93;,&#91;&#91;null,&quot;ih&quot;&#93;,&#91;&#91;null,&quot;ez&quot;&#93;,&#91;null,&quot;98&quot;&#93;&#93;&#93;&#93;&#93;,&#91;null,&quot;te&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;gir&quot;&#93;,&#91;null,&quot;cnt&quot;&#93;&#93;,&#91;&#91;null,&quot;.border_&quot;&#93;,&#91;null,&quot;it&quot;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;Y&quot;&#93;,&#91;null,&quot;fullChannel.gif&quot;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;zo&quot;&#93;,&#91;null,&quot;kc&quot;&#93;&#93;,&#91;&#91;null,&quot;Ab&quot;&#93;,&#91;&#91;&#91;null,&quot;Ï…&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;â–ª&quot;&#93;,&#91;&#91;null,&quot;â•©&quot;&#93;,&#91;null,&quot;â„®&quot;&#93;&#93;&#93;,&#91;null,&quot;ÃŠ&quot;&#93;&#93;,&#91;null,&quot;\u008d&quot;&#93;&#93;&#93;,&#91;null,&quot;82&quot;&#93;&#93;&#93;&#93;,&#91;null,&quot;33&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;nd&quot;&#93;,&#91;null,&quot;F&quot;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;Sp&quot;&#93;,&#91;null,&quot;^&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;ach&quot;&#93;,&#91;null,&quot;uc&quot;&#93;&#93;,&#91;null,&quot;ki&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;ich&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;fel&quot;&#93;,&#91;&#91;null,&quot;83&quot;&#93;,&#91;&#91;null,&quot;Â¿&quot;&#93;,&#91;null,&quot;Ã›&quot;&#93;&#93;&#93;&#93;,&#91;null,&quot;br&quot;&#93;&#93;,&#91;&#91;null,&quot;Fri&quot;&#93;,&#91;null,&quot;dor&quot;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;de&quot;&#93;,&#91;null,&quot;50&quot;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;aa&quot;&#93;,&#91;&#91;null,&quot;gb&quot;&#93;,&#91;null,&quot;lc&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;fÃ¼r&quot;&#93;,&#91;null,&quot;75&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;th&quot;&#93;,&#91;null,&quot;Ber&quot;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;Bal&quot;&#93;,&#91;null,&quot;70&quot;&#93;&#93;,&#91;&#91;null,&quot;45&quot;&#93;,&#91;&#91;null,&quot;Sw&quot;&#93;,&#91;null,&quot;41&quot;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;il&quot;&#93;,&#91;&#91;null,&quot;hfl&quot;&#93;,&#91;&#91;null,&quot;Ih&quot;&#93;,&#91;null,&quot;~&quot;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;pics/female.gif&quot;&#93;,&#91;&#91;null,&quot;htt&quot;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;â™ª&quot;&#93;,&#91;&#91;&#91;null,&quot;Â¡&quot;&#93;,&#91;null,&quot;Ã¨&quot;&#93;&#93;,&#91;&#91;null,&quot;Ä±&quot;&#93;,&#91;&#91;null,&quot;\u2014&quot;&#93;,&#91;&#91;null,&quot;\\\\\\&quot;&#93;,&#91;null,&quot;Ó™&quot;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;null,&quot;Â·&quot;&#93;&#93;,&#91;null,&quot;At&quot;&#93;&#93;,&#91;&#91;null,&quot;LE&quot;&#93;,&#91;null,&quot;Sk&quot;&#93;&#93;&#93;,&#91;null,&quot;2010&quot;&#93;&#93;&#93;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;.gif&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;foto&quot;&#93;,&#91;&#91;null,&quot;Lan&quot;&#93;,&#91;&#91;null,&quot;\u0013&quot;&#93;,&#91;null,&quot;ik&quot;&#93;&#93;&#93;&#93;,&#91;null,&quot;Â°&gt;gt.gif&lt;Â°&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;Ho&quot;&#93;,&#91;&#91;&#91;null,&quot;dy&quot;&#93;,&#91;null,&quot;Pi&quot;&#93;&#93;,&#91;null,&quot;alt&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;28&quot;&#93;,&#91;null,&quot;.jpg&quot;&#93;&#93;&#93;&#93;&#93;,&#91;null,&quot;e&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;s&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;El&quot;&#93;,&#91;&#91;null,&quot;mer&quot;&#93;,&#91;null,&quot;male.b.my_3.gif&quot;&#93;&#93;&#93;,&#91;null,&quot;\u0000Flirt &quot;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;Ñ&#65533;&quot;&#93;,&#91;null,&quot;76&quot;&#93;&#93;,&#91;null,&quot;nb&quot;&#93;&#93;,&#91;null,&quot;La&quot;&#93;&#93;,&#91;null,&quot;ns&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;rg&quot;&#93;,&#91;null,&quot;08&quot;&#93;&#93;,&#91;null,&quot;Be&quot;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;v&quot;&#93;,&#91;&#91;&#91;null,&quot;ml&quot;&#93;,&#91;&#91;null,&quot;cd&quot;&#93;,&#91;null,&quot;73&quot;&#93;&#93;&#93;,&#91;null,&quot;Bu&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;tr&quot;&#93;,&#91;null,&quot;wi&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;mm&quot;&#93;,&#91;&#91;&#91;null,&quot;sf&quot;&#93;,&#91;null,&quot;Die&quot;&#93;&#93;,&#91;null,&quot;nt&quot;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;ly&quot;&#93;,&#91;&#91;null,&quot;em&quot;&#93;,&#91;null,&quot;tmu&quot;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;od&quot;&#93;,&#91;null,&quot;sd&quot;&#93;&#93;,&#91;null,&quot;Kis&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;DD&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;\u0097&quot;&#93;,&#91;&#91;null,&quot;Â¨&quot;&#93;,&#91;null,&quot;ÃŽ&quot;&#93;&#93;&#93;,&#91;null,&quot;Î·&quot;&#93;&#93;,&#91;null,&quot;68&quot;&#93;&#93;&#93;,&#91;null,&quot;Q&quot;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;ge&quot;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;84&quot;&#93;,&#91;null,&quot;FC&quot;&#93;&#93;,&#91;null,&quot;gs&quot;&#93;&#93;,&#91;null,&quot;Ra&quot;&#93;&#93;,&#91;&#91;null,&quot;su&quot;&#93;,&#91;&#91;null,&quot;iv&quot;&#93;,&#91;&#91;null,&quot;hh&quot;&#93;,&#91;null,&quot;Pr&quot;&#93;&#93;&#93;&#93;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;&lt;&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;ha&quot;&#93;,&#91;null,&quot;on&quot;&#93;&#93;,&#91;&#91;null,&quot;T&quot;&#93;,&#91;null,&quot;che&quot;&#93;&#93;&#93;,&#91;null,&quot;h&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;\&quot;&quot;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;cloudsblue.gif&quot;&#93;,&#91;&#91;null,&quot;Ci&quot;&#93;,&#91;null,&quot;\u0003&quot;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;lig&quot;&#93;,&#91;&#91;null,&quot;\u0017&quot;&#93;,&#91;&#91;&#91;null,&quot;\u008e&quot;&#93;,&#91;null,&quot;\u0096&quot;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;Ã±&quot;&#93;,&#91;null,&quot;Ã½&quot;&#93;&#93;,&#91;&#91;null,&quot;Â®&quot;&#93;,&#91;null,&quot;Ñƒ&quot;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;Î®&quot;&#93;,&#91;null,&quot;Ä°&quot;&#93;&#93;,&#91;&#91;null,&quot;Å‚&quot;&#93;,&#91;null,&quot;Å„&quot;&#93;&#93;&#93;,&#91;null,&quot;Ï&#65533;&quot;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;null,&quot;bb&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;ber&quot;&#93;,&#91;null,&quot;Li&quot;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;Di&quot;&#93;,&#91;&#91;null,&quot;Â¯&quot;&#93;,&#91;null,&quot;lg&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;Al&quot;&#93;,&#91;null,&quot;Out&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;24&quot;&#93;,&#91;null,&quot;un&quot;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;39&quot;&#93;,&#91;&#91;&#91;null,&quot;urt&quot;&#93;,&#91;&#91;null,&quot;Is&quot;&#93;,&#91;null,&quot;Rf&quot;&#93;&#93;&#93;,&#91;null,&quot;71&quot;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;hl&quot;&#93;,&#91;null,&quot;Bl&quot;&#93;&#93;,&#91;null,&quot;Ba&quot;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;ear&quot;&#93;,&#91;&#91;null,&quot;ech&quot;&#93;,&#91;&#91;null,&quot;Us&quot;&#93;,&#91;null,&quot;47&quot;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;ipi&quot;&#93;,&#91;null,&quot;;&quot;&#93;&#93;,&#91;null,&quot;ze&quot;&#93;&#93;&#93;&#93;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;.&quot;&#93;,&#91;&#91;&#91;null,&quot;7&quot;&#93;,&#91;&#91;null,&quot;at&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;wÃ¤&quot;&#93;,&#91;&#91;null,&quot;Hu&quot;&#93;,&#91;&#91;null,&quot;âˆ‚&quot;&#93;,&#91;&#91;null,&quot;Âº&quot;&#93;,&#91;&#91;null,&quot;Ã°&quot;&#93;,&#91;null,&quot;ï»¹&quot;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;null,&quot;ÃŸe&quot;&#93;&#93;,&#91;&#91;null,&quot;ut&quot;&#93;,&#91;null,&quot;fu&quot;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;&gt;--&lt;&quot;&#93;,&#91;null,&quot;an&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;Le&quot;&#93;,&#91;null,&quot;sa&quot;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;\u0004&quot;&#93;,&#91;null,&quot;gt&quot;&#93;&#93;,&#91;null,&quot;je&quot;&#93;&#93;,&#91;null,&quot;pwd&quot;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;Re&quot;&#93;,&#91;null,&quot;he&quot;&#93;&#93;,&#91;&#91;null,&quot;ho&quot;&#93;,&#91;&#91;&#91;null,&quot;om&quot;&#93;,&#91;null,&quot;ok&quot;&#93;&#93;,&#91;null,&quot;55&quot;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;war&quot;&#93;,&#91;&#91;null,&quot;hen&quot;&#93;,&#91;&#91;&#91;null,&quot;pe&quot;&#93;,&#91;&#91;null,&quot;ek&quot;&#93;,&#91;null,&quot;LL&quot;&#93;&#93;&#93;,&#91;null,&quot;bu&quot;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;re&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;wÃ¼&quot;&#93;,&#91;null,&quot;66&quot;&#93;&#93;,&#91;null,&quot;Se&quot;&#93;&#93;,&#91;null,&quot;Z&quot;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;Ã¼c&quot;&#93;,&#91;&#91;null,&quot;Cr&quot;&#93;,&#91;null,&quot;gu&quot;&#93;&#93;&#93;,&#91;null,&quot;zu&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;J&quot;&#93;,&#91;&#91;null,&quot;mÃ¤&quot;&#93;,&#91;null,&quot;42&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;bo&quot;&#93;,&#91;null,&quot;Ca&quot;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;es&quot;&#93;,&#91;&#91;&#91;null,&quot;Tag&quot;&#93;,&#91;&#91;&#91;null,&quot;RR&quot;&#93;,&#91;null,&quot;ry&quot;&#93;&#93;,&#91;null,&quot;\u0005&quot;&#93;&#93;&#93;,&#91;null,&quot;26&quot;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;rr&quot;&#93;,&#91;null,&quot;of&quot;&#93;&#93;,&#91;null,&quot;Dor&quot;&#93;&#93;,&#91;null,&quot;res&quot;&#93;&#93;,&#91;&#91;null,&quot;cgi&quot;&#93;,&#91;&#91;null,&quot;dd&quot;&#93;,&#91;null,&quot;|http://www3.knuddels.de:8080/txtl/click?d=knuddels.de&amp;id=&quot;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;null,&quot;Sm&quot;&#93;,&#91;&#91;null,&quot;43&quot;&#93;,&#91;null,&quot;af&quot;&#93;&#93;&#93;,&#91;null,&quot;ine&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;Co&quot;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;Âª&quot;&#93;,&#91;null,&quot;Â³&quot;&#93;&#93;,&#91;null,&quot;Î£&quot;&#93;&#93;,&#91;null,&quot;\u0089&quot;&#93;&#93;,&#91;null,&quot;Â»&quot;&#93;&#93;,&#91;null,&quot;CE&quot;&#93;&#93;,&#91;null,&quot;lk&quot;&#93;&#93;&#93;,&#91;null,&quot;am&quot;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;pp&quot;&#93;,&#91;&#91;null,&quot;sw&quot;&#93;,&#91;&#91;&#91;null,&quot;63&quot;&#93;,&#91;null,&quot;my&quot;&#93;&#93;,&#91;&#91;null,&quot;pf&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;\u009c&quot;&#93;,&#91;null,&quot;Ã¦&quot;&#93;&#93;,&#91;null,&quot;\u008c&quot;&#93;&#93;,&#91;null,&quot;\u001c&quot;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;fhe&quot;&#93;,&#91;&#91;null,&quot;\b&quot;&#93;,&#91;null,&quot;Vi&quot;&#93;&#93;&#93;,&#91;null,&quot;ter&quot;&#93;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;Ã¿&quot;&#93;,&#91;null,&quot;11&quot;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;fa&quot;&#93;,&#91;&#91;&#91;null,&quot;sr&quot;&#93;,&#91;null,&quot;Mf&quot;&#93;&#93;,&#91;null,&quot;\u0010&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;Â°&gt;sm_&quot;&#93;,&#91;null,&quot;Anz&quot;&#93;&#93;&#93;,&#91;null,&quot;A&quot;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;as&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;NR&quot;&#93;,&#91;null,&quot;lr&quot;&#93;&#93;,&#91;&#91;null,&quot;NT&quot;&#93;,&#91;null,&quot;61&quot;&#93;&#93;&#93;,&#91;null,&quot;nz&quot;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;ab&quot;&#93;,&#91;null,&quot;gi&quot;&#93;&#93;,&#91;&#91;null,&quot;dpg&quot;&#93;,&#91;null,&quot;gr&quot;&#93;&#93;&#93;&#93;,&#91;null,&quot;(&quot;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;pics/male.gif&quot;&#93;,&#91;&#91;null,&quot;pg&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;Cu&quot;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;Î´&quot;&#93;,&#91;null,&quot;Ï‚&quot;&#93;&#93;,&#91;&#91;null,&quot;Ûš&quot;&#93;,&#91;null,&quot;â†”&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;Ñ–&quot;&#93;,&#91;null,&quot;â–º&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;Û–&quot;&#93;,&#91;&#91;&#91;null,&quot;Ä‘&quot;&#93;,&#91;null,&quot;Ä§&quot;&#93;&#93;,&#91;&#91;null,&quot;Æ§&quot;&#93;,&#91;null,&quot;Û™&quot;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;Î½&quot;&#93;,&#91;null,&quot;Ñ&#65533;&quot;&#93;&#93;,&#91;null,&quot;Ã&#65533;&quot;&#93;&#93;,&#91;&#91;null,&quot;Ã*&quot;&#93;,&#91;&#91;null,&quot;â—&#65533;&quot;&#93;,&#91;null,&quot;\u201d&quot;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;null,&quot;Os&quot;&#93;&#93;,&#91;null,&quot;ow&quot;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;ck&quot;&#93;,&#91;&#91;null,&quot;Ã¥&quot;&#93;,&#91;null,&quot;Ha&quot;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;gd&quot;&#93;,&#91;null,&quot;It&quot;&#93;&#93;,&#91;null,&quot;kt&quot;&#93;&#93;,&#91;null,&quot;len&quot;&#93;&#93;,&#91;&#91;null,&quot;Ei&quot;&#93;,&#91;&#91;null,&quot;\u0007&quot;&#93;,&#91;null,&quot;fr&quot;&#93;&#93;&#93;&#93;,&#91;null,&quot;C&quot;&#93;&#93;,&#91;null,&quot;)&quot;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;min&quot;&#93;,&#91;null,&quot;Sie&quot;&#93;&#93;,&#91;&#91;null,&quot;{&quot;&#93;,&#91;&#91;null,&quot;65&quot;&#93;,&#91;null,&quot;MÃ¼&quot;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;Ã¶&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;NÃ¼&quot;&#93;,&#91;null,&quot;Do&quot;&#93;&#93;,&#91;null,&quot;io&quot;&#93;&#93;,&#91;null,&quot;Pf&quot;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;das&quot;&#93;,&#91;null,&quot;V&quot;&#93;&#93;,&#91;null,&quot;Flirt&quot;&#93;&#93;,&#91;&#91;null,&quot;Ã¼&quot;&#93;,&#91;&#91;&#91;null,&quot;rz&quot;&#93;,&#91;&#91;null,&quot;Gu&quot;&#93;,&#91;null,&quot;fm&quot;&#93;&#93;&#93;,&#91;null,&quot;Ham&quot;&#93;&#93;&#93;&#93;&#93;,&#91;null,&quot;t&quot;&#93;&#93;,&#91;&#91;null,&quot;en&quot;&#93;,&#91;null,&quot;er&quot;&#93;&#93;&#93;&#93;&#93;,&#91;null,&quot;\u0000&quot;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;der&quot;&#93;,&#91;&#91;&#91;null,&quot;Cc&quot;&#93;,&#91;null,&quot;Alt&quot;&#93;&#93;,&#91;null,&quot;Mix&quot;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;As&quot;&#93;,&#91;null,&quot;tp&quot;&#93;&#93;,&#91;null,&quot;nen&quot;&#93;&#93;,&#91;null,&quot;ld&quot;&#93;&#93;,&#91;null,&quot;05&quot;&#93;&#93;,&#91;null,&quot;is&quot;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;Ãƒ&quot;&#93;,&#91;&#91;&#91;null,&quot;LÃ¼&quot;&#93;,&#91;&#91;&#91;null,&quot;Û˜&quot;&#93;,&#91;null,&quot;Û¡&quot;&#93;&#93;,&#91;&#91;null,&quot;Û¢&quot;&#93;,&#91;null,&quot;Â¢&quot;&#93;&#93;&#93;&#93;,&#91;null,&quot;Ges&quot;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;auf&quot;&#93;,&#91;null,&quot;and&quot;&#93;&#93;,&#91;&#91;null,&quot;blg&quot;&#93;,&#91;null,&quot;pr&quot;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;und&quot;&#93;,&#91;null,&quot;al&quot;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;In&quot;&#93;,&#91;null,&quot;WÃ¼&quot;&#93;&#93;,&#91;null,&quot;hie&quot;&#93;&#93;,&#91;&#91;null,&quot;ges&quot;&#93;,&#91;&#91;null,&quot;Ã¶ÃŸ&quot;&#93;,&#91;null,&quot;ps&quot;&#93;&#93;&#93;&#93;,&#91;null,&quot;be&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;25&quot;&#93;,&#91;&#91;null,&quot;140&quot;&#93;,&#91;&#91;&#91;null,&quot;hs&quot;&#93;,&#91;&#91;&#91;null,&quot;Ï‰&quot;&#93;,&#91;null,&quot;Ã¯&quot;&#93;&#93;,&#91;&#91;null,&quot;\u0093&quot;&#93;,&#91;null,&quot;Ïƒ&quot;&#93;&#93;&#93;&#93;,&#91;null,&quot;46&quot;&#93;&#93;&#93;&#93;,&#91;null,&quot;\u0080&quot;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;14&quot;&#93;,&#91;&#91;null,&quot;35&quot;&#93;,&#91;&#91;null,&quot;Em&quot;&#93;,&#91;null,&quot;ger&quot;&#93;&#93;&#93;&#93;,&#91;&#91;null,&quot;cg&quot;&#93;,&#91;null,&quot;k&quot;&#93;&#93;&#93;&#93;&#93;,&#91;null,&quot;-&quot;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;wh&quot;&#93;,&#91;&#91;null,&quot;rp&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;\u0094&quot;&#93;,&#91;&#91;null,&quot;Î›&quot;&#93;,&#91;null,&quot;\u009b&quot;&#93;&#93;&#93;,&#91;null,&quot;â•‘&quot;&#93;&#93;,&#91;&#91;null,&quot;\u0081&quot;&#93;,&#91;&#91;null,&quot;Ã&#65533;&quot;&#93;,&#91;&#91;&#91;null,&quot;ÄŸ&quot;&#93;,&#91;null,&quot;Æ&#65533;&quot;&#93;&#93;,&#91;&#91;null,&quot;â–*&quot;&#93;,&#91;null,&quot;â—„&quot;&#93;&#93;&#93;&#93;&#93;&#93;&#93;&#93;,&#91;null,&quot;Pa&quot;&#93;&#93;,&#91;null,&quot;U&quot;&#93;&#93;,&#91;&#91;null,&quot;bl&quot;&#93;,&#91;&#91;null,&quot;ca&quot;&#93;,&#91;null,&quot;vat&quot;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;37&quot;&#93;,&#91;&#91;null,&quot;eu&quot;&#93;,&#91;null,&quot;ms&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;Mi&quot;&#93;,&#91;null,&quot;cs&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;die&quot;&#93;,&#91;&#91;null,&quot;ay&quot;&#93;,&#91;null,&quot;fi&quot;&#93;&#93;&#93;&#93;&#93;,&#91;&#91;&#91;null,&quot;Ã€&quot;&#93;,&#91;&#91;null,&quot;um&quot;&#93;,&#91;null,&quot;sen&quot;&#93;&#93;&#93;,&#91;null,&quot;=&quot;&#93;&#93;&#93;,&#91;&#91;&#91;&#91;&#91;&#91;null,&quot;Br&quot;&#93;,&#91;&#91;null,&quot;ul&quot;&#93;,&#91;null,&quot;fy&quot;&#93;&#93;&#93;,&#91;null,&quot;vor&quot;&#93;&#93;,&#91;&#91;&#91;null,&quot;Wl&quot;&#93;,&#91;null,&quot;tsc&quot;&#93;&#93;,&#91;null,&quot;rd&quot;&#93;&#93;&#93;,&#91;&#91;null,&quot;ne&quot;&#93;,&#91;&#91;&#91;&#91;null,&quot;Ku&quot;&#93;,&#91;&#91;&#91;null,&quot;Îµ&quot;&#93;,&#91;null,&quot;Ñ‚&quot;&#93;&#93;,&#91;null,&quot;RÃ¼&quot;&#93;&#93;&#93;,&#91;null,&quot;Par&quot;&#93;&#93;,&#91;&#91;&#91;&#91;null,&quot;85&quot;&#93;,&#91;null,&quot;wc&quot;&#93;&#93;,&#91;null,&quot;cr&quot;&#93;&#93;,&#91;null,&quot;rm&quot;&#93;&#93;&#93;&#93;&#93;,&#91;null,&quot;1&quot;&#93;&#93;&#93;,&#91;null,&quot;_&quot;&#93;&#93;&#93;,&#91;null,&quot; &quot;&#93;&#93;&#93;&#93;&#93;
</pre>
<script type="text/javascript">
SyntaxHighlighter.config.stripBrs = true;
SyntaxHighlighter.all();
</script><br />
<br />
Und so nun in Javascript mein Decompressor:<br />
<script type="text/javascript" src="clientscript/syntaxhighlighter/shCore.js"></script>
<script type="text/javascript" src="clientscript/syntaxhighlighter/shBrushJScript.js"></script>
<link type="text/css" rel="stylesheet" href="clientscript/syntaxhighlighter/styles/shCoreDefault.css"/>

<pre class="brush: js;">
import Tree from '../../../Data/Tree.json' with { type: 'json' };<br />
<br />
export default (new class Huffman {<br />
    constructor() {<br />
      this.compressedData        = &quot;\\\\\\&quot;;<br />
      this.buffer                = Tree; //new Array(2);<br />
      this.totalBytesProcessed   = 0;<br />
      this.totalBytesWritten     = 0;<br />
      this.finished              = false;<br />
      this.rawData               = undefined;<br />
      this.readIndex             = 0;<br />
      this.writeIndex            = 0;<br />
    }<br />
<br />
	decompress(buffer) {<br />
		if(typeof(buffer) === 'undefined' || buffer === null) {<br />
			return null;<br />
		}<br />
<br />
		let uncompressed  = &#91;&#93;;<br />
		this.rawData      = buffer;<br />
		this.readIndex    = 0;<br />
		this.writeIndex   = 0;<br />
		this.finished     = false;<br />
		let ast           = &#91; this.buffer &#93;;<br />
<br />
		do {<br />
			try {<br />
				ast = ast&#91;this.getBitValue()&#93;;<br />
<br />
				if(ast&#91;0&#93; == null) {<br />
					if(ast&#91;1&#93; == this.compressedData) {<br />
						let i = 0;<br />
<br />
						for(let j = 0; j &lt; 16; j++) {<br />
							i += this.getBitValue() &lt;&lt; j;<br />
						}<br />
<br />
						uncompressed.push(String.fromCharCode(i));<br />
					} else {<br />
						uncompressed.push(ast&#91;1&#93;);<br />
					}<br />
<br />
					ast = this.buffer;<br />
				}<br />
			} catch(e) {}<br />
		} while(!this.finished);<br />
<br />
		let result                  = uncompressed.join('');<br />
		this.totalBytesWritten     += result.length;<br />
		this.totalBytesProcessed   += buffer.length;<br />
<br />
		return result;<br />
	}<br />
    <br />
<br />
	getBitValue() {<br />
		try {<br />
			let result = 0;<br />
<br />
			if((this.rawData&#91;this.writeIndex&#93; &amp; 1 &lt;&lt; this.readIndex) != 0) {<br />
				result = 1;<br />
			}<br />
<br />
			this.readIndex++;<br />
<br />
			if(this.readIndex &gt; 7) {<br />
				++this.writeIndex;<br />
				this.readIndex   = 0;<br />
				this.finished    = (this.writeIndex === this.rawData.length);<br />
			}<br />
<br />
			return result;<br />
		} catch(e) {<br />
			return 0;<br />
		}<br />
	}<br />
}());
</pre>
<script type="text/javascript">
SyntaxHighlighter.config.stripBrs = true;
SyntaxHighlighter.all();
</script><br />
<br />
Das Problem, was ich allerdings habe:<br />
Er ermittelt nicht richtig das Resultat.<br />
In dem Java-Crapper, der den Tree holt wird es korrekt dargestellt:<br />
<script type="text/javascript" src="clientscript/syntaxhighlighter/shCore.js"></script>
<script type="text/javascript" src="clientscript/syntaxhighlighter/shBrushJScript.js"></script>
<link type="text/css" rel="stylesheet" href="clientscript/syntaxhighlighter/styles/shCoreDefault.css"/>

<pre class="brush: js;">
5\0James\0Mentorsystem
</pre>
<script type="text/javascript">
SyntaxHighlighter.config.stripBrs = true;
SyntaxHighlighter.all();
</script><br />
<br />
Über Javascript allerdings:<br />
<script type="text/javascript" src="clientscript/syntaxhighlighter/shCore.js"></script>
<script type="text/javascript" src="clientscript/syntaxhighlighter/shBrushJScript.js"></script>
<link type="text/css" rel="stylesheet" href="clientscript/syntaxhighlighter/styles/shCoreDefault.css"/>

<pre class="brush: js;">
i\0James\0Mentorsystem
</pre>
<script type="text/javascript">
SyntaxHighlighter.config.stripBrs = true;
SyntaxHighlighter.all();
</script><br />
<br />
Im SYSTEM-BOT Packet &quot;5&quot;, da es so klein ist, ist nur der Opcode betroffen.<br />
<br />
Das lesen des Paketes aus dem Stream scheint auch korrekt zu funktionieren:<br />
<script type="text/javascript" src="clientscript/syntaxhighlighter/shCore.js"></script>
<script type="text/javascript" src="clientscript/syntaxhighlighter/shBrushJScript.js"></script>
<link type="text/css" rel="stylesheet" href="clientscript/syntaxhighlighter/styles/shCoreDefault.css"/>

<pre class="brush: js;">
<br />
export default (new class Packet {<br />
	DecodeKey = null;<br />
<br />
	decode(buff) {<br />
		let pos		= 0;<br />
		let first	= buff&#91;pos++&#93;;<br />
		<br />
		if(first === null) {<br />
			return null;<br />
		}<br />
		<br />
		if(first == -1) {<br />
			return null;<br />
		}<br />
		<br />
		let length		= 0;<br />
<br />
		if(first &gt;= 0) {<br />
			length		= first + 1;<br />
		} else {<br />
			length		= (first &amp; 0x1F) + 1;<br />
			let count	= (first &amp; 0x60) &gt;&gt;&gt; 5;<br />
<br />
			for(let i = 1; i &lt; count; i++) {<br />
				let nextByte = buff&#91;pos++&#93;;<br />
<br />
				if(nextByte == -1) {<br />
					throw new IOException(&quot;Unexpected end of stream&quot;);<br />
				}<br />
<br />
				length += nextByte &lt;&lt; (i - 1) * 8;<br />
			}<br />
		}<br />
		<br />
		let buffer = Buffer.alloc(length);<br />
		<br />
		for(let i = 0; i &lt; length; i++) {<br />
			let readByte	= buff&#91;pos++&#93;;<br />
<br />
			if(readByte == -1) {<br />
				throw new IOException(&quot;Unexpected end of stream&quot;);<br />
			}<br />
<br />
			buffer&#91;i&#93; = (readByte ^ (this.DecodeKey != null &amp;&amp; i &lt; this.DecodeKey.length ? this.DecodeKey&#91;i&#93; : 0));<br />
		}<br />
		<br />
		//console.log('&#91;Packet&#93;', length, buffer.length);<br />
<br />
		return new Uint8Array(buffer);<br />
	}<br />
	<br />
	encode(message) {<br />
		if(typeof(message) === 'undefined') {<br />
			return null;<br />
		}<br />
		<br />
		const length = message.length - 1;<br />
		let len;<br />
<br />
		if(length &lt; 128) {<br />
			len = Buffer.from(&#91; length &#93;);<br />
		} else {<br />
			let count = 0;<br />
			console.log(&quot;ZWO&quot;);<br />
			while((32 &lt;&lt; ((count + 1) &lt;&lt; 3)) &lt;= length) {<br />
			//while(32 &lt;&lt; (count + 1 &lt;&lt; 3) &lt;= length) {<br />
				count++;<br />
			}<br />
<br />
			count++;<br />
			<br />
			len			= Buffer.alloc(count + 1);<br />
			len&#91;0&#93;		= (count &lt;&lt; 5) | 0x80 | (length &amp; 0x1F);<br />
			//len&#91;0&#93;	= (count &lt;&lt; 5 | 0x80 | length &amp; 0x1F);<br />
<br />
			for(let i = 1; i &lt; len.length; i++) {<br />
				len&#91;i&#93;		= (length &gt;&gt;&gt; (8 * (i - 1)) + 5) &amp; 0xFF;<br />
				//len&#91;i&#93;	= (length &gt;&gt;&gt; 8 * (i - 1) + 5);<br />
			}<br />
		}<br />
<br />
		return Buffer.concat(&#91; len, message &#93;);<br />
	}<br />
}());<br />

</pre>
<script type="text/javascript">
SyntaxHighlighter.config.stripBrs = true;
SyntaxHighlighter.all();
</script><br />
<br />
Der Unterschied zwischen 32/64-bit-Behandlung zwischen Java und Node.js soll wohl keine Probleme bereiten, auch das bit-shifting &amp; co soll wie gewohnt in Java funktionieren.<br />
<br />
Hat vielleicht jemand eine Idee, übersehe ich etwas?</div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Bubble Gum</dc:creator>
			<guid isPermaLink="true">protokoll-120/aktueller-huffman-tree-41599</guid>
		</item>
		<item>
			<title>Applet-Versionen + Informationen</title>
			<link>protokoll-120/applet-versionen-informationen-40205?goto=newpost</link>
			<pubDate>Sun, 17 May 2020 14:41:00 GMT</pubDate>
			<description><![CDATA[[tr] 
	[td]Build Date[/td] 
	[td]Build[/td] 
	[td]Version[/td] 
	[td]GroupChat[/td] 
	[td]ProtocolTree[/td] 
[/tr] 
[tr] 
	[td][/td]]]></description>
			<content:encoded><![CDATA[<div><div class="cms_table"><table class="cms_table_grid" align="center"><tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">Build Date</td>
<td class="cms_table_grid_td">Build</td>
<td class="cms_table_grid_td">Version</td>
<td class="cms_table_grid_td">GroupChat</td>
<td class="cms_table_grid_td">ProtocolTree</td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">170116</td>
<td class="cms_table_grid_td"><b>V9.0bxl</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">170117</td>
<td class="cms_table_grid_td"><b>V9.0bxl</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">170118</td>
<td class="cms_table_grid_td"><b>V9.0bxm</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">170119</td>
<td class="cms_table_grid_td"><b>V9.0bxm</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">170120</td>
<td class="cms_table_grid_td"><b>V9.0bxm</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">170121</td>
<td class="cms_table_grid_td"><b>V9.0bxm</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">170213</td>
<td class="cms_table_grid_td"><b>V9.0bxo</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">170216</td>
<td class="cms_table_grid_td"><b>V9.0bxp</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">170220</td>
<td class="cms_table_grid_td"><b>V9.0bxq</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">170223</td>
<td class="cms_table_grid_td"><b>V9.0bxr</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">170309</td>
<td class="cms_table_grid_td"><b>V9.0bxt</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">170313</td>
<td class="cms_table_grid_td"><b>V9.0bxu</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">170327</td>
<td class="cms_table_grid_td"><b>V9.0bxv</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">170503</td>
<td class="cms_table_grid_td"><b>V9.0bxw</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">170504</td>
<td class="cms_table_grid_td"><b>V9.0bxw</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">170509</td>
<td class="cms_table_grid_td"><b>V9.0bxw</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">170510</td>
<td class="cms_table_grid_td"><b>V9.0bxw</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">170515</td>
<td class="cms_table_grid_td"><b>V9.0bxz</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">170612</td>
<td class="cms_table_grid_td"><b>V9.0bxz</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">170613</td>
<td class="cms_table_grid_td"><b>V9.0bxz</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">170801</td>
<td class="cms_table_grid_td"><b>V9.0byk</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">170810</td>
<td class="cms_table_grid_td"><b>V9.0byk</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">170914</td>
<td class="cms_table_grid_td"><b>V9.0byk</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">170921</td>
<td class="cms_table_grid_td"><b>V9.0byk</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">171215</td>
<td class="cms_table_grid_td"><b>V9.0bzh</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">171218</td>
<td class="cms_table_grid_td"><b>V9.0bzh</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180123</td>
<td class="cms_table_grid_td"><b>V9.0bzj</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180412</td>
<td class="cms_table_grid_td"><b>V9.0bzo</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180418</td>
<td class="cms_table_grid_td"><b>V9.0bzp</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180419</td>
<td class="cms_table_grid_td"><b>V9.0bzq</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180420</td>
<td class="cms_table_grid_td"><b>V9.0bzr</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180421</td>
<td class="cms_table_grid_td"><b>V9.0bzr</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180424</td>
<td class="cms_table_grid_td"><b>V9.0bzo</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180425</td>
<td class="cms_table_grid_td"><b>V9.0bzr</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180426</td>
<td class="cms_table_grid_td"><b>V9.0bzr</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180427</td>
<td class="cms_table_grid_td"><b>V9.0bzr</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180428</td>
<td class="cms_table_grid_td"><b>V9.0bzr</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180525</td>
<td class="cms_table_grid_td"><b>V9.0bzr</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180526</td>
<td class="cms_table_grid_td"><b>V9.0bzs</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180528</td>
<td class="cms_table_grid_td"><b>V9.0bzu</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180612</td>
<td class="cms_table_grid_td"><b>V9.0bzv</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180613</td>
<td class="cms_table_grid_td"><b>V9.0bzv</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180614</td>
<td class="cms_table_grid_td"><b>V9.0bzw</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180628</td>
<td class="cms_table_grid_td"><b>V9.0bzw</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180629</td>
<td class="cms_table_grid_td"><b>V9.0bzw</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180630</td>
<td class="cms_table_grid_td"><b>V9.0bzx</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180713</td>
<td class="cms_table_grid_td"><b>V9.0bzx</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180714</td>
<td class="cms_table_grid_td"><b>V9.0bzx</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180720</td>
<td class="cms_table_grid_td"><b>V9.0bzx</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180724</td>
<td class="cms_table_grid_td"><b>V9.0bzx</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180731</td>
<td class="cms_table_grid_td"><b>V9.0bzx</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180803</td>
<td class="cms_table_grid_td"><b>V9.0bzx</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180804</td>
<td class="cms_table_grid_td"><b>V9.0bzx</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180806</td>
<td class="cms_table_grid_td"><b>V9.0bzx</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180809</td>
<td class="cms_table_grid_td"><b>V9.0bzx</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180814</td>
<td class="cms_table_grid_td"><b>V9.0bzx</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180816</td>
<td class="cms_table_grid_td"><b>V9.0bzx</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180817</td>
<td class="cms_table_grid_td"><b>V9.0bzx</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180822</td>
<td class="cms_table_grid_td"><b>V9.0bzx</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180823</td>
<td class="cms_table_grid_td"><b>V9.0bzx</b></td>
<td class="cms_table_grid_td">base.GroupChat</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180903</td>
<td class="cms_table_grid_td"><b>V9.0bzx</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180910</td>
<td class="cms_table_grid_td"><b>V9.0bzx</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180918</td>
<td class="cms_table_grid_td"><b>V9.0bzy</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">180925</td>
<td class="cms_table_grid_td"><b>V9.0bzy</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">181002</td>
<td class="cms_table_grid_td"><b>V9.0bzy</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">181008</td>
<td class="cms_table_grid_td"><b>V9.0bzy</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">181009</td>
<td class="cms_table_grid_td"><b>V9.0bzy</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">181010</td>
<td class="cms_table_grid_td"><b>V9.0bzy</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">181011</td>
<td class="cms_table_grid_td"><b>V9.0bzy</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">181012</td>
<td class="cms_table_grid_td"><b>V9.0bzy</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">181019</td>
<td class="cms_table_grid_td"><b>V9.0bzy</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">181023</td>
<td class="cms_table_grid_td"><b>V9.0bzy</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">181025</td>
<td class="cms_table_grid_td"><b>V9.0bzy</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">181026</td>
<td class="cms_table_grid_td"><b>V9.0bzy</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">181030</td>
<td class="cms_table_grid_td"><b>V9.0bzy</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">181112</td>
<td class="cms_table_grid_td"><b>V9.0bzy</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">181207</td>
<td class="cms_table_grid_td"><b>V9.0bzy</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">181210</td>
<td class="cms_table_grid_td"><b>V9.0bzy</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">181212</td>
<td class="cms_table_grid_td"><b>V9.0bzy</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">181213</td>
<td class="cms_table_grid_td"><b>V9.0bzy</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">181218</td>
<td class="cms_table_grid_td"><b>V9.0bzy</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">181219</td>
<td class="cms_table_grid_td"><b>V9.0bzy</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">181220</td>
<td class="cms_table_grid_td"><b>V9.0bzy</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">181221</td>
<td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">181222</td>
<td class="cms_table_grid_td"><b>V9.0bzy</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">181223</td>
<td class="cms_table_grid_td"><b>V9.0bzy</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">190109</td>
<td class="cms_table_grid_td"><b>V9.0bzy</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">190117</td>
<td class="cms_table_grid_td"><b>V9.0bzy</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">190124</td>
<td class="cms_table_grid_td"><b>V9.0bzy</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">190130</td>
<td class="cms_table_grid_td"><b>V9.0bzy</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">190201</td>
<td class="cms_table_grid_td"><b>V9.0bzz</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">190204</td>
<td class="cms_table_grid_td"><b>V9.0bzz</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">190301</td>
<td class="cms_table_grid_td"><b>V9.0bzz</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">190305</td>
<td class="cms_table_grid_td"><b>V9.0bzz</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">190326</td>
<td class="cms_table_grid_td"><b>V9.0bzz</b></td>
<td class="cms_table_grid_td">dt</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">190402</td>
<td class="cms_table_grid_td"><b>V9.0bzz</b></td>
<td class="cms_table_grid_td">du</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">190405</td>
<td class="cms_table_grid_td"><b>V9.0bzz</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">190406</td>
<td class="cms_table_grid_td"><b>V9.0bzz</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"></td>
<td class="cms_table_grid_td">190415</td>
<td class="cms_table_grid_td"><b>V9.0bzz</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-04-15 15:00:07</td>
<td class="cms_table_grid_td">190416</td>
<td class="cms_table_grid_td"><b>V9.0bzz</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-04-16 18:11:49</td>
<td class="cms_table_grid_td">190417</td>
<td class="cms_table_grid_td"><b>V9.0bzz</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-04-24 18:13:03</td>
<td class="cms_table_grid_td">190424</td>
<td class="cms_table_grid_td"><b>V9.0bzz</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-04-25 13:37:37</td>
<td class="cms_table_grid_td">190425</td>
<td class="cms_table_grid_td"><b>V9.0bzz</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-04-25 16:59:56</td>
<td class="cms_table_grid_td">190426</td>
<td class="cms_table_grid_td"><b>V9.0bzz</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-04-25 17:24:34</td>
<td class="cms_table_grid_td">190427</td>
<td class="cms_table_grid_td"><b>V9.0bzz</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-05-03 14:14:48</td>
<td class="cms_table_grid_td">190503</td>
<td class="cms_table_grid_td"><b>V9.0bzz</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-05-13 13:41:12</td>
<td class="cms_table_grid_td">190513</td>
<td class="cms_table_grid_td"><b>V9.0bzz</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-05-15 15:29:11</td>
<td class="cms_table_grid_td">190515</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-05-15 17:36:55</td>
<td class="cms_table_grid_td">190516</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-05-24 15:23:55</td>
<td class="cms_table_grid_td">190524</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-05-24 16:36:31</td>
<td class="cms_table_grid_td">190525</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-05-24 17:40:44</td>
<td class="cms_table_grid_td">190526</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-05-27 19:55:37</td>
<td class="cms_table_grid_td">190527</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-05-29 14:39:55</td>
<td class="cms_table_grid_td">190529</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-06-05 12:17:55</td>
<td class="cms_table_grid_td">190605</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-06-06 18:58:01</td>
<td class="cms_table_grid_td">190606</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-06-06 19:08:14</td>
<td class="cms_table_grid_td">190607</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-06-07 17:31:16</td>
<td class="cms_table_grid_td">190608</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-06-07 18:24:12</td>
<td class="cms_table_grid_td">190609</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-06-07 18:42:38</td>
<td class="cms_table_grid_td">190610</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-06-11 19:03:40</td>
<td class="cms_table_grid_td">190611</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-06-17 21:37:04</td>
<td class="cms_table_grid_td">190617</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-06-24 19:02:48</td>
<td class="cms_table_grid_td">190624</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-06-25 10:30:45</td>
<td class="cms_table_grid_td">190625</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-06-25 19:05:31</td>
<td class="cms_table_grid_td">190626</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-06-26 14:17:10</td>
<td class="cms_table_grid_td">190627</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-06-26 20:00:53</td>
<td class="cms_table_grid_td">190628</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-06-26 21:20:03</td>
<td class="cms_table_grid_td">190629</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-06-27 12:05:17</td>
<td class="cms_table_grid_td">190630</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-06-27 18:08:28</td>
<td class="cms_table_grid_td">190631</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-06-28 10:14:52</td>
<td class="cms_table_grid_td">190632</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-07-01 11:29:31</td>
<td class="cms_table_grid_td">190701</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-07-02 12:11:42</td>
<td class="cms_table_grid_td">190702</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-07-02 13:07:11</td>
<td class="cms_table_grid_td">190703</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-07-02 13:26:14</td>
<td class="cms_table_grid_td">190704</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-07-02 16:58:36</td>
<td class="cms_table_grid_td">190705</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-07-03 17:43:09</td>
<td class="cms_table_grid_td">190706</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-07-04 15:31:19</td>
<td class="cms_table_grid_td">190707</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-07-04 18:33:35</td>
<td class="cms_table_grid_td">190708</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-07-09 16:54:01</td>
<td class="cms_table_grid_td">190709</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-07-15 11:44:32</td>
<td class="cms_table_grid_td">190715</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-07-15 12:33:49</td>
<td class="cms_table_grid_td">190716</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-07-15 12:39:15</td>
<td class="cms_table_grid_td">190717</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-07-16 11:21:10</td>
<td class="cms_table_grid_td">190718</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-07-25 18:01:04</td>
<td class="cms_table_grid_td">190725</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-07-31 19:13:51</td>
<td class="cms_table_grid_td">190731</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-08-05 20:05:18</td>
<td class="cms_table_grid_td">190805</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-08-06 14:47:29</td>
<td class="cms_table_grid_td">190806</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-08-06 20:14:45</td>
<td class="cms_table_grid_td">190807</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-08-08 14:09:22</td>
<td class="cms_table_grid_td">190808</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-08-09 10:08:55</td>
<td class="cms_table_grid_td">190809</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-08-12 14:19:01</td>
<td class="cms_table_grid_td">190812</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h5</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-08-13 20:20:19</td>
<td class="cms_table_grid_td">190813</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h7</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-08-15 17:23:44</td>
<td class="cms_table_grid_td">190815</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h7</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-08-15 18:25:28</td>
<td class="cms_table_grid_td">190816</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h7</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-08-16 11:22:50</td>
<td class="cms_table_grid_td">190817</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h7</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-08-16 12:02:45</td>
<td class="cms_table_grid_td">190818</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h7</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-08-16 13:39:43</td>
<td class="cms_table_grid_td">190819</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h7</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-08-19 15:03:02</td>
<td class="cms_table_grid_td">190820</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h7</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-08-19 19:04:33</td>
<td class="cms_table_grid_td">190821</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h7</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-08-27 15:01:47</td>
<td class="cms_table_grid_td">190827</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h7</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-08-27 16:20:20</td>
<td class="cms_table_grid_td">190828</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h7</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-09-04 11:44:39</td>
<td class="cms_table_grid_td">190904</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h7</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-09-12 14:19:31</td>
<td class="cms_table_grid_td">190912</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h7</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-09-16 12:32:27</td>
<td class="cms_table_grid_td">190916</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-09-17 19:58:16</td>
<td class="cms_table_grid_td">190917</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-09-18 09:55:21</td>
<td class="cms_table_grid_td">190918</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-09-19 15:02:47</td>
<td class="cms_table_grid_td">190919</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-09-19 17:27:20</td>
<td class="cms_table_grid_td">190920</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-09-19 17:36:41</td>
<td class="cms_table_grid_td">190921</td>
<td class="cms_table_grid_td"><b>V9.0caa</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-09-26 14:13:13</td>
<td class="cms_table_grid_td">190926</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-09-25 15:20:44</td>
<td class="cms_table_grid_td">190927</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-09-27 15:13:05</td>
<td class="cms_table_grid_td">190928</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-09-25 15:20:44</td>
<td class="cms_table_grid_td">191021</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-09-25 15:20:44</td>
<td class="cms_table_grid_td">191022</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-09-25 15:20:44</td>
<td class="cms_table_grid_td">191028</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-10-30 16:34:26</td>
<td class="cms_table_grid_td">191030</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-10-31 10:21:54</td>
<td class="cms_table_grid_td">191031</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-11-05 17:38:51</td>
<td class="cms_table_grid_td">191105</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-10-31 10:21:54</td>
<td class="cms_table_grid_td">191106</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-11-06 11:00:52</td>
<td class="cms_table_grid_td">191107</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-11-06 11:00:52</td>
<td class="cms_table_grid_td">191108</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-11-06 11:00:52</td>
<td class="cms_table_grid_td">191109</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-11-06 11:00:52</td>
<td class="cms_table_grid_td">191110</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-11-08 15:28:54</td>
<td class="cms_table_grid_td">191111</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-11-08 15:28:54</td>
<td class="cms_table_grid_td">191112</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-11-11 15:21:38</td>
<td class="cms_table_grid_td">191113</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-11-14 11:10:35</td>
<td class="cms_table_grid_td">191114</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-11-14 11:49:57</td>
<td class="cms_table_grid_td">191115</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-11-18 14:19:56</td>
<td class="cms_table_grid_td">191118</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-11-19 10:27:08</td>
<td class="cms_table_grid_td">191119</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-11-21 17:01:46</td>
<td class="cms_table_grid_td">191121</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-11-21 17:19:44</td>
<td class="cms_table_grid_td">191122</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-11-25 12:10:45</td>
<td class="cms_table_grid_td">191125</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-11-25 13:58:40</td>
<td class="cms_table_grid_td">191126</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-11-26 15:06:52</td>
<td class="cms_table_grid_td">191127</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-12-17 15:25:39</td>
<td class="cms_table_grid_td">191217</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-12-18 16:00:03</td>
<td class="cms_table_grid_td">191218</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-12-18 17:30:41</td>
<td class="cms_table_grid_td">191219</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-12-19 12:03:08</td>
<td class="cms_table_grid_td">191220</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-12-20 14:37:15</td>
<td class="cms_table_grid_td">191221</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">zu</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2020-01-14 12:19:10</td>
<td class="cms_table_grid_td">200114</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">j4</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2020-01-14 18:00:49</td>
<td class="cms_table_grid_td">200115</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">_y</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2020-01-16 15:51:37</td>
<td class="cms_table_grid_td">200116</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">w4</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-12-17 15:25:39</td>
<td class="cms_table_grid_td">200123</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2020-01-31 15:44:17</td>
<td class="cms_table_grid_td">200131</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">sk</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2020-02-04 14:35:46</td>
<td class="cms_table_grid_td">200204</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">xa</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2020-02-04 15:25:38</td>
<td class="cms_table_grid_td">200205</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">ot</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2020-02-04 16:56:35</td>
<td class="cms_table_grid_td">200206</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">ny</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2020-02-14 09:27:07</td>
<td class="cms_table_grid_td">200214</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">bv</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2019-12-17 15:25:39</td>
<td class="cms_table_grid_td">200220</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">h9</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2020-02-25 15:15:30</td>
<td class="cms_table_grid_td">200225</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">le</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2020-02-25 15:15:30</td>
<td class="cms_table_grid_td">200226</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">le</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2020-02-26 11:27:51</td>
<td class="cms_table_grid_td">200227</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">b0</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2020-02-27 15:42:57</td>
<td class="cms_table_grid_td">200228</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">n0</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2020-03-05 16:01:22</td>
<td class="cms_table_grid_td">200305</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">o_</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2020-04-15 10:37:16</td>
<td class="cms_table_grid_td">200415</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">jx</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2020-04-15 10:37:16</td>
<td class="cms_table_grid_td">200416</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">jx</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2020-04-15 10:37:16</td>
<td class="cms_table_grid_td">200417</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">jx</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2020-03-05 16:01:22</td>
<td class="cms_table_grid_td">200506</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">o_</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2020-03-05 16:01:22</td>
<td class="cms_table_grid_td">200507</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">o_</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2020-05-06 17:12:34</td>
<td class="cms_table_grid_td">200508</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">bk</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">2020-05-07 11:15:55</td>
<td class="cms_table_grid_td">200509</td>
<td class="cms_table_grid_td"><b>V9.0cab</b></td>
<td class="cms_table_grid_td">ga</td>
<td class="cms_table_grid_td"><a href="http://#" target="_blank" rel="nofollow">Link</a></td>
</tr>
</table></div>
</div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Bubble Gum</dc:creator>
			<guid isPermaLink="true">protokoll-120/applet-versionen-informationen-40205</guid>
		</item>
		<item>
			<title><![CDATA[[Passwort] Login ab V9.0cab]]></title>
			<link>protokoll-120/passwort-login-ab-v9-0cab-40203?goto=newpost</link>
			<pubDate>Sat, 16 May 2020 21:34:23 GMT</pubDate>
			<description>Ich bin seit gestern dabei, Basis-Klassen für Bots zu erstellen. Hierzu bin ich nun bei dem Password-Hashing angelangt. 
 
Mir ist aufgefallen, dass...</description>
			<content:encoded><![CDATA[<div>Ich bin seit gestern dabei, Basis-Klassen für Bots zu erstellen. Hierzu bin ich nun bei dem Password-Hashing angelangt.<br />
<br />
Mir ist aufgefallen, dass Knuddels die Passwörter nun nicht mehr (normal) im alten Schema hasht.<br />
<br />
Damals wurden aus den Passwörtern ein positiver bzw. negativer Integerwert kalkuliert und direkt im Login-Paket untergebracht (hier als Beispiel <b>-123456</b>):<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">n\0CHANNEL\0NICKNAME\0PASSWORD\0LOGIN_FLAGS</code><hr />
</div><div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">n\0Flirt\0James\0-123456\0T</code><hr />
</div>Mittlerweile wird/werden dort noch (eine) weitere Schicht(en) drübergelegt - Die gehashten Passwörter haben jetzt anscheinend ein Ablaufdatum, was anhand eines Timestamps ermittelt wird.<br />
<br />
Die neuen Passwort-Hashes fangen immer mit einem <b>0~</b> an:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">0~HASH</code><hr />
</div><div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">30 7E 3b 11 16 3E 72 5D 3C 69 04&nbsp; (0~;&gt;r]&lt;i)<br />
30 7E 22 27 25 13 4E 19 04 58 79&nbsp; (0~&quot;'%NXy)<br />
30 7E 70 4d 25 0B 74 3E 36 19 1D&nbsp; (0~pM%t&gt;6)</code><hr />
</div>Da die jeweiligen Methoden im Applet hart Obfuscated sind, dauert das ganze etwas, bis ich die extrahiert habe. Vielleicht hat da ja jemand bereits schon Informationen rausziehen können und kann das ganze ergänzen.<br />
<br />
Folgendes Popup wird hier zurückgesendet:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			<b>Keine Aufregung, es könnte...</b><br />
...die Speicherdauer deines Passworts in der Desktop App abgelaufen sein. Das machen wir zu deinem Schutz. Tippe deshalb dein Passwort einfach nochmals ein und achte auch auf mögliche Groß- und Kleinschreibung.<br />
<br />
<b>Man glaubt es kaum...</b><br />
...doch hin und wieder irrt oder vertippt man sich bei der exakten Schreibweise des Accounts.<br />
<br />
<b>Du möchtest ein neues Passwort setzen?</b><br />
Besuche <a href="https://www.knuddels.de/pwd.html" target="_blank" rel="nofollow">https://www.knuddels.de/pwd.html</a> und trage dort deinen Nicknamen ein.
			
		<hr />
	</div>
</div></div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Bubble Gum</dc:creator>
			<guid isPermaLink="true">protokoll-120/passwort-login-ab-v9-0cab-40203</guid>
		</item>
		<item>
			<title>Registrierung</title>
			<link>protokoll-120/registrierung-39966?goto=newpost</link>
			<pubDate>Fri, 11 Jan 2019 13:32:55 GMT</pubDate>
			<description>Falls sich jemand mittlerweile fragt, wie man automatisiert Nicknamen registrieren kann, hier eine Erläuterung: 
 
Beim Registrierungsprozess werden...</description>
			<content:encoded><![CDATA[<div>Falls sich jemand mittlerweile fragt, wie man automatisiert Nicknamen registrieren kann, hier eine Erläuterung:<br />
<br />
Beim Registrierungsprozess werden erst die Daten des Nutzers abgefragt, was ausschließlich Clientseitig geschieht. Bei der Registrierung werden zwei POST-Request's durchgeführt: Einmal das <b>checking</b>, nach der Nicknameneingabe (um zu prüfen, ob der Nick überhaupt registriert werden darf) und einmal das <b>submitting </b>(wo die Daten final an Knuddels gesendet werden und der Nickname registriert wird).<br />
<br />
Als Endpoint dienen folgende Informationen:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			<b><u>URL:</u></b> <a href="https://www.knuddels.de/registration/registration_submit.html" target="_blank" rel="nofollow">https://www.knuddels.de/registration...on_submit.html</a><br />
<b><u>Method:</u></b> POST
			
		<hr />
	</div>
</div>Folgende Request-Header werden dabei genutzt, hier würde ich auch nicht davon abweichen um unentdeckt zu bleiben:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			<b><u>Accept:</u></b> application/x-protobuf+base64<br />
<b><u>Content-Type:</u></b> application/x-protobuf+base64; charset=UTF-8
			
		<hr />
	</div>
</div>Der Referer ist Standardmäßig <a href="https://www.knuddels.de/" target="_blank" rel="nofollow">https://www.knuddels.de/</a> und der User-Agent sollte dementsprechend auch einem originalen Webbrowser ähneln.<br />
<br />
In den Cookies werden folgende Informationen gespeichert, die wichtigsten sind markiert, ggf. sollte man hier auch das Analyrics random erschleichen, ich weiß nämlich nicht, ob man hierbei ggf. geflaggt wird nach dem Thema &quot;Könnte sich um einen Bot handeln, da keine Analytics-Informationen vorhanden sind&quot;:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			<b><u>Cookie:</u></b> __utmc=115417948; __utmz=115417948.1544695544.1.1.utmcsr=(direct)|ut  mccn=(direct)|utmcmd=(none); _ga=GA1.2.1559713453.1544695544; _gid=GA1.2.1722159671.1547210859; fepId=; feprId=; <b><u>KnA=bH</u></b>; <b><u>ksgagc=%2CRegStart%2CRegistered</u></b>; <b><u>KnRPLC=true</u></b>; <b><u>KnA=bH</u></b>; <b><u>KnLL=html</u></b>; __utma=115417948.1559713453.1544695544.1547205737.  1547211243.55; __utmt=1; __utmb=115417948.6.8.1547211291621; __gads=ID=61d8e30d5b13ff03:T=1547211294:S=ALNI_MYn  RvIsqkyk2WPKULd2P3wwvXaa0Q; _gat_gtag_UA_34185161_1=1; <b><u>lastLoggedInNick=</u></b>
			
		<hr />
	</div>
</div>Bei KnLL handelt es sich vermutlich um den Clienten. &quot;html&quot; bzw. &quot;android&quot; oder &quot;standalone&quot; sollten hier die Werte sein. Vielleicht kann dies ja jemand herausfinden.<br />
<br />
Knuddels arbeitet bei der Registrierung mit protobuf, was dann noch base64 ausgeliefert wird. Beide Requests (ob <b>checking </b>oder <b>submitting</b>) enthalten Daten in base64, bereitgestellt durch protobuf.<br />
<u><br />
<b>checking</b></u><br />
Das checking enthält die Daten des ersten Überprüfungsprozesses. Hier wird von React die jeweilige Route angegeben (/registration.RegistrationRequest)<br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			<b>Encoded</b><br />
CjYKIS9yZWdpc3RyYXRpb24uUmVnaXN0cmF0aW9uUmVxdWVzdB  IRCAESDVJlZ1Rlc3RpbmcxMjM=<br />
<br />
<b>RAW</b><br />
0A = field 1, type String<br />
36 = length 54<br />
payload = 0A-21-2F-72-65-67-69-73-74-72-61-74-69-6F-6E-2E-52-65-67-69-73-74-72-61-74-69-6F-6E-52-65-71-75-65-73-74-12-11-08-01-12-0D-52-65-67-54-65-73-74-69-6E-67-31-32-33<br />
UTF8: !/registration.RegistrationRequest<br />
RegTesting123<br />
<br />
0A = field 1, type String<br />
21 = length 33<br />
payload = 2F-72-65-67-69-73-74-72-61-74-69-6F-6E-2E-52-65-67-69-73-74-72-61-74-69-6F-6E-52-65-71-75-65-73-74<br />
UTF8: /registration.RegistrationRequest <b>(Route)</b><br />
<br />
12 = field 2, type String<br />
11 = length 17<br />
payload = 08-01-12-0D-52-65-67-54-65-73-74-69-6E-67-31-32-33<br />
UTF8: <br />
RegTesting123<br />
<br />
08 = field 1, type Variant<br />
01 = 1 (raw) or -1 (zigzag)<br />
12 = field 2, type String<br />
0D = length 13<br />
payload = 52-65-67-54-65-73-74-69-6E-67-31-32-33<br />
UTF8: RegTesting123 <b>(Nickname)</b>
			
		<hr />
	</div>
</div><b>submitting</b>[/U]<br />
Das submittingenthält die Daten des finalen registrierungsprozesses:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			<b>Encoded</b><br />
CvoBCiEvcmVnaXN0cmF0aW9uLlJlZ2lzdHJhdGlvblJlcXVlc3  QS1AEIBxINUmVnVGVzdGluZzEyMxgcIAFCBDEyMzRIB1IAcrIB  U3RpbW1zdCBkdSBkZW4gQUdCIChodHRwczovL3d3dy5rbnVkZG  Vscy5kZS9hZ2IpIHVuZCBkZXIgVmVyYXJiZWl0dW5nIGRlaW5l  ciBEYXRlbiBpbSBSYWhtZW4gdW5zZXJlciBEYXRlbnNjaHV0em  Vya2zDpHJ1bmcgKGh0dHBzOi8vd3d3LmtudWRkZWxzLmRlL2xl  Z2FsL3ByaXZhY3ktcG9saWN5Lmh0bWwpIHp1Pw==<br />
<br />
<b>RAW</b><br />
0A = field 1, type String<br />
FA-01 = length 250<br />
payload = 0A-21-2F-72-65-67-69-73-74-72-61-74-69-6F-6E-2E-52-65-67-69-73-74-72-61-74-69-6F-6E-52-65-71-75-65-73-74-12-D4-01-08-07-12-0D-52-65-67-54-65-73-74-69-6E-67-31-32-33-18-1C-20-01-42-04-31-32-33-34-48-07-52-00-72-B2-01-53-74-69-6D-6D-73-74-20-64-75-20-64-65-6E-20-41-47-42-20-28-68-74-74-70-73-3A-2F-2F-77-77-77-2E-6B-6E-75-64-64-65-6C-73-2E-64-65-2F-61-67-62-29-20-75-6E-64-20-64-65-72-20-56-65-72-61-72-62-65-69-74-75-6E-67-20-64-65-69-6E-65-72-20-44-61-74-65-6E-20-69-6D-20-52-61-68-6D-65-6E-20-75-6E-73-65-72-65-72-20-44-61-74-65-6E-73-63-68-75-74-7A-65-72-6B-6C-C3-A4-72-75-6E-67-20-28-68-74-74-70-73-3A-2F-2F-77-77-77-2E-6B-6E-75-64-64-65-6C-73-2E-64-65-2F-6C-65-67-61-6C-2F-70-72-69-76-61-63-79-2D-70-6F-6C-69-63-79-2E-68-74-6D-6C-29-20-7A-75-3F<br />
UTF8: !/registration.RegistrationRequest&#65533;<br />
RegTesting123 B1234HR&#65533;r&#65533;Stimmst du den AGB (<a href="https://www.knuddels.de/agb" target="_blank" rel="nofollow">https://www.knuddels.de/agb</a>) und der Verarbeitung deiner Daten im Rahmen unserer Datenschutzerklärung (<a href="https://www.knuddels.de/legal/privacy-policy.html" target="_blank" rel="nofollow">https://www.knuddels.de/legal/privacy-policy.html</a>) zu?<br />
<br />
0A = field 1, type String<br />
21 = length 33<br />
payload = 2F-72-65-67-69-73-74-72-61-74-69-6F-6E-2E-52-65-67-69-73-74-72-61-74-69-6F-6E-52-65-71-75-65-73-74<br />
UTF8: /registration.RegistrationRequest<b> (Route)</b><br />
<br />
12 = field 2, type String<br />
D4-01 = length 212<br />
payload = 08-07-12-0D-52-65-67-54-65-73-74-69-6E-67-31-32-33-18-1C-20-01-42-04-31-32-33-34-48-07-52-00-72-B2-01-53-74-69-6D-6D-73-74-20-64-75-20-64-65-6E-20-41-47-42-20-28-68-74-74-70-73-3A-2F-2F-77-77-77-2E-6B-6E-75-64-64-65-6C-73-2E-64-65-2F-61-67-62-29-20-75-6E-64-20-64-65-72-20-56-65-72-61-72-62-65-69-74-75-6E-67-20-64-65-69-6E-65-72-20-44-61-74-65-6E-20-69-6D-20-52-61-68-6D-65-6E-20-75-6E-73-65-72-65-72-20-44-61-74-65-6E-73-63-68-75-74-7A-65-72-6B-6C-C3-A4-72-75-6E-67-20-28-68-74-74-70-73-3A-2F-2F-77-77-77-2E-6B-6E-75-64-64-65-6C-73-2E-64-65-2F-6C-65-67-61-6C-2F-70-72-69-76-61-63-79-2D-70-6F-6C-69-63-79-2E-68-74-6D-6C-29-20-7A-75-3F<br />
UTF8: <br />
RegTesting123 B1234HR&#65533;r&#65533;Stimmst du den AGB (<a href="https://www.knuddels.de/agb" target="_blank" rel="nofollow">https://www.knuddels.de/agb</a>) und der Verarbeitung deiner Daten im Rahmen unserer Datenschutzerklärung (<a href="https://www.knuddels.de/legal/privacy-policy.html" target="_blank" rel="nofollow">https://www.knuddels.de/legal/privacy-policy.html</a>) zu?<br />
<br />
08 = field 1, type Variant<br />
07 = 7 (raw) or -4 (zigzag)<br />
12 = field 2, type String<br />
0D = length 13<br />
payload = 52-65-67-54-65-73-74-69-6E-67-31-32-33<br />
UTF8: RegTesting123  <b>(Nickname)</b><br />
<br />
18 = field 3, type Variant<br />
1C = 28 (raw) or 14 (zigzag)<br />
20 = field 4, type Variant<br />
01 = 1 (raw) or -1 (zigzag)<br />
42 = field 8, type String<br />
04 = length 4<br />
payload = 31-32-33-34<br />
UTF8: 1234 <b>(Passwort)</b><br />
<br />
48 = field 9, type Variant<br />
07 = 7 (raw) or -4 (zigzag)<br />
52 = field 10, type String<br />
00 = length 0<br />
(empty payload)<br />
<br />
72 = field 14, type String<br />
B2-01 = length 178<br />
payload = 53-74-69-6D-6D-73-74-20-64-75-20-64-65-6E-20-41-47-42-20-28-68-74-74-70-73-3A-2F-2F-77-77-77-2E-6B-6E-75-64-64-65-6C-73-2E-64-65-2F-61-67-62-29-20-75-6E-64-20-64-65-72-20-56-65-72-61-72-62-65-69-74-75-6E-67-20-64-65-69-6E-65-72-20-44-61-74-65-6E-20-69-6D-20-52-61-68-6D-65-6E-20-75-6E-73-65-72-65-72-20-44-61-74-65-6E-73-63-68-75-74-7A-65-72-6B-6C-C3-A4-72-75-6E-67-20-28-68-74-74-70-73-3A-2F-2F-77-77-77-2E-6B-6E-75-64-64-65-6C-73-2E-64-65-2F-6C-65-67-61-6C-2F-70-72-69-76-61-63-79-2D-70-6F-6C-69-63-79-2E-68-74-6D-6C-29-20-7A-75-3F<br />
UTF8: Stimmst du den AGB (<a href="https://www.knuddels.de/agb" target="_blank" rel="nofollow">https://www.knuddels.de/agb</a>) und der Verarbeitung deiner Daten im Rahmen unserer Datenschutzerklärung (<a href="https://www.knuddels.de/legal/privacy-policy.html" target="_blank" rel="nofollow">https://www.knuddels.de/legal/privacy-policy.html</a>) zu?
			
		<hr />
	</div>
</div>Die Daten aus dem Client werden wie folgt definiert:<br />
<script type="text/javascript" src="clientscript/syntaxhighlighter/shCore.js"></script>
<script type="text/javascript" src="clientscript/syntaxhighlighter/shBrushJScript.js"></script>
<link type="text/css" rel="stylesheet" href="clientscript/syntaxhighlighter/styles/shCoreDefault.css"/>

<pre class="brush: js;">
 return t.RequestType = function() {<br />
                var t = {}<br />
                  , e = Object.create(t);<br />
                return e&#91;t&#91;0&#93; = &quot;ALL&quot;&#93; = 0,<br />
                e&#91;t&#91;1&#93; = &quot;NICK&quot;&#93; = 1,<br />
                e&#91;t&#91;2&#93; = &quot;AGE&quot;&#93; = 2,<br />
                e&#91;t&#91;3&#93; = &quot;GENDER&quot;&#93; = 3,<br />
                e&#91;t&#91;4&#93; = &quot;EMAIL&quot;&#93; = 4,<br />
                e&#91;t&#91;5&#93; = &quot;PASSWORD&quot;&#93; = 5,<br />
                e&#91;t&#91;6&#93; = &quot;CAP&quot;&#93; = 6,<br />
                e&#91;t&#91;7&#93; = &quot;FULL_REG_V1&quot;&#93; = 7,<br />
                e&#91;t&#91;8&#93; = &quot;CHATSERVER&quot;&#93; = 8,<br />
                e<br />
            }(),<br />
            t.Gender = function() {<br />
                var t = {}<br />
                  , e = Object.create(t);<br />
                return e&#91;t&#91;0&#93; = &quot;UNSPECIFIED&quot;&#93; = 0,<br />
                e&#91;t&#91;1&#93; = &quot;MALE&quot;&#93; = 1,<br />
                e&#91;t&#91;2&#93; = &quot;FEMALE&quot;&#93; = 2,<br />
                e<br />
            }(),
</pre>
<script type="text/javascript">
SyntaxHighlighter.config.stripBrs = true;
SyntaxHighlighter.all();
</script><br />
<br />
Das encoding/decoding wird durch folgende Funktionen gehandhabt:<br />
<script type="text/javascript" src="clientscript/syntaxhighlighter/shCore.js"></script>
<script type="text/javascript" src="clientscript/syntaxhighlighter/shBrushJScript.js"></script>
<link type="text/css" rel="stylesheet" href="clientscript/syntaxhighlighter/styles/shCoreDefault.css"/>

<pre class="brush: js;">
t.encode = function(t, e) {<br />
                    return e || (e = i.create()),<br />
                    null != t.nick &amp;&amp; t.hasOwnProperty(&quot;nick&quot;) &amp;&amp; e.uint32(10).string(t.nick),<br />
                    null != t.checksum &amp;&amp; t.hasOwnProperty(&quot;checksum&quot;) &amp;&amp; e.uint32(18).string(t.checksum),<br />
                    null != t.nextstep &amp;&amp; t.hasOwnProperty(&quot;nextstep&quot;) &amp;&amp; e.uint32(24).int32(t.nextstep),<br />
                    null != t.showInterstitial &amp;&amp; t.hasOwnProperty(&quot;showInterstitial&quot;) &amp;&amp; e.uint32(32).bool(t.showInterstitial),<br />
                    e<br />
                }<br />
                ,<br />
                t.encodeDelimited = function(t, e) {<br />
                    return this.encode(t, e).ldelim()<br />
                }<br />
                ,<br />
                t.decode = function(t, e) {<br />
                    t instanceof o || (t = o.create(t));<br />
                    for (var n = void 0 === e ? t.len : t.pos + e, r = new s.registration.Success; t.pos &lt; n; ) {<br />
                        var i = t.uint32();<br />
                        switch (i &gt;&gt;&gt; 3) {<br />
                        case 1:<br />
                            r.nick = t.string();<br />
                            break;<br />
                        case 2:<br />
                            r.checksum = t.string();<br />
                            break;<br />
                        case 3:<br />
                            r.nextstep = t.int32();<br />
                            break;<br />
                        case 4:<br />
                            r.showInterstitial = t.bool();<br />
                            break;<br />
                        default:<br />
                            t.skipType(7 &amp; i)<br />
                        }<br />
                    }<br />
                    return r<br />
                }<br />
                ,<br />
                t.decodeDelimited = function(t) {<br />
                    return t instanceof o || (t = new o(t)),<br />
                    this.decode(t, t.uint32())<br />
                }<br />
                ,
</pre>
<script type="text/javascript">
SyntaxHighlighter.config.stripBrs = true;
SyntaxHighlighter.all();
</script><br />
<br />
Fehlercodes um den Nutzer zu informieren, warum die Registrierung nicht funktioniert, wird hier definiert:<br />
<script type="text/javascript" src="clientscript/syntaxhighlighter/shCore.js"></script>
<script type="text/javascript" src="clientscript/syntaxhighlighter/shBrushJScript.js"></script>
<link type="text/css" rel="stylesheet" href="clientscript/syntaxhighlighter/styles/shCoreDefault.css"/>

<pre class="brush: js;">
return e&#91;t&#91;0&#93; = &quot;ALREADY_EXISTS&quot;&#93; = 0,<br />
                e&#91;t&#91;1&#93; = &quot;BRUTE_FORCE_PW_ATTEMPT&quot;&#93; = 1,<br />
                e&#91;t&#91;2&#93; = &quot;CHAR_NOT_ALLOWED&quot;&#93; = 2,<br />
                e&#91;t&#91;3&#93; = &quot;CONTAINS_BAD_WORDS&quot;&#93; = 3,<br />
                e&#91;t&#91;4&#93; = &quot;INSUFFICIENT_RIGHTS&quot;&#93; = 4,<br />
                e&#91;t&#91;5&#93; = &quot;INVALID_EMAIL_FORMAT&quot;&#93; = 5,<br />
                e&#91;t&#91;6&#93; = &quot;INVALID_URL_FORMAT&quot;&#93; = 6,<br />
                e&#91;t&#91;7&#93; = &quot;INVALID_VALUE&quot;&#93; = 7,<br />
                e&#91;t&#91;8&#93; = &quot;MISSING&quot;&#93; = 8,<br />
                e&#91;t&#91;9&#93; = &quot;NOT_ALLOWED&quot;&#93; = 9,<br />
                e&#91;t&#91;10&#93; = &quot;NOT_EVEN&quot;&#93; = 10,<br />
                e&#91;t&#91;11&#93; = &quot;NOT_ODD&quot;&#93; = 11,<br />
                e&#91;t&#91;12&#93; = &quot;NUMBER_FORMAT&quot;&#93; = 12,<br />
                e&#91;t&#91;13&#93; = &quot;OUT_OF_RANGE&quot;&#93; = 13,<br />
                e&#91;t&#91;14&#93; = &quot;TOO_LOW&quot;&#93; = 14,<br />
                e&#91;t&#91;15&#93; = &quot;TOO_LOW_AGE&quot;&#93; = 15,<br />
                e&#91;t&#91;16&#93; = &quot;TOO_HI&quot;&#93; = 16,<br />
                e&#91;t&#91;17&#93; = &quot;PASSWORDS_DONT_MATCH&quot;&#93; = 17,<br />
                e&#91;t&#91;18&#93; = &quot;TEMPORARY_INTERNAL_ERROR&quot;&#93; = 18,<br />
                e&#91;t&#91;19&#93; = &quot;TIMEOUT&quot;&#93; = 19,<br />
                e&#91;t&#91;20&#93; = &quot;TOO_FEW&quot;&#93; = 20,<br />
                e&#91;t&#91;21&#93; = &quot;TOO_LONG&quot;&#93; = 21,<br />
                e&#91;t&#91;22&#93; = &quot;TOO_MANY&quot;&#93; = 22,<br />
                e&#91;t&#91;23&#93; = &quot;TOO_SHORT&quot;&#93; = 23,<br />
                e&#91;t&#91;24&#93; = &quot;WRONG_PASSWORD&quot;&#93; = 24,<br />
                e&#91;t&#91;25&#93; = &quot;TEXT_CONTAINED_PASSWORD&quot;&#93; = 25,<br />
                e&#91;t&#91;26&#93; = &quot;SYSTEM_ERROR&quot;&#93; = 26,<br />
                e&#91;t&#91;27&#93; = &quot;UNKNOWN&quot;&#93; = 27,<br />
                e&#91;t&#91;28&#93; = &quot;OTHER&quot;&#93; = 28,<br />
                e&#91;t&#91;29&#93; = &quot;CHATSERVER_ERROR&quot;&#93; = 29,
</pre>
<script type="text/javascript">
SyntaxHighlighter.config.stripBrs = true;
SyntaxHighlighter.all();
</script><br />
<br />
Es gibt hier zwei Objektfunktionen, die dann die Daten hält und en- bzw. decoded:<br />
<script type="text/javascript" src="clientscript/syntaxhighlighter/shCore.js"></script>
<script type="text/javascript" src="clientscript/syntaxhighlighter/shBrushJScript.js"></script>
<link type="text/css" rel="stylesheet" href="clientscript/syntaxhighlighter/styles/shCoreDefault.css"/>

<pre class="brush: js;">
t.RegistrationRequest = function() {<br />
                function t(t) {<br />
                    if (this.uids = &#91;&#93;,<br />
                    this.flags = &#91;&#93;,<br />
                    t)<br />
                        for (var e = Object.keys(t), n = 0; n &lt; e.length; ++n)<br />
                            null != t&#91;e&#91;n&#93;&#93; &amp;&amp; (this&#91;e&#91;n&#93;&#93; = t&#91;e&#91;n&#93;&#93;)<br />
                }<br />
                return t.prototype.type = 0,<br />
                t.prototype.nick = &quot;&quot;,<br />
                t.prototype.age = 0,<br />
                t.prototype.gender = 0,<br />
                t.prototype.email = &quot;&quot;,<br />
                t.prototype.cap = &quot;&quot;,<br />
                t.prototype.capQuest = &quot;&quot;,<br />
                t.prototype.password = &quot;&quot;,<br />
                t.prototype.category = 0,<br />
                t.prototype.platform = &quot;&quot;,<br />
                t.prototype.uids = a.emptyArray,<br />
                t.prototype.flags = a.emptyArray,<br />
                t.prototype.interstitialCandidate = !1,<br />
                t.prototype.dsgvoQuestion = &quot;&quot;,<br />
                t.encode = function(t, e) {<br />
                    if (e || (e = i.create()),<br />
                    null != t.type &amp;&amp; t.hasOwnProperty(&quot;type&quot;) &amp;&amp; e.uint32(8).int32(t.type),<br />
                    null != t.nick &amp;&amp; t.hasOwnProperty(&quot;nick&quot;) &amp;&amp; e.uint32(18).string(t.nick),<br />
                    null != t.age &amp;&amp; t.hasOwnProperty(&quot;age&quot;) &amp;&amp; e.uint32(24).int32(t.age),<br />
                    null != t.gender &amp;&amp; t.hasOwnProperty(&quot;gender&quot;) &amp;&amp; e.uint32(32).int32(t.gender),<br />
                    null != t.email &amp;&amp; t.hasOwnProperty(&quot;email&quot;) &amp;&amp; e.uint32(42).string(t.email),<br />
                    null != t.cap &amp;&amp; t.hasOwnProperty(&quot;cap&quot;) &amp;&amp; e.uint32(50).string(t.cap),<br />
                    null != t.capQuest &amp;&amp; t.hasOwnProperty(&quot;capQuest&quot;) &amp;&amp; e.uint32(58).string(t.capQuest),<br />
                    null != t.password &amp;&amp; t.hasOwnProperty(&quot;password&quot;) &amp;&amp; e.uint32(66).string(t.password),<br />
                    null != t.category &amp;&amp; t.hasOwnProperty(&quot;category&quot;) &amp;&amp; e.uint32(72).int32(t.category),<br />
                    null != t.platform &amp;&amp; t.hasOwnProperty(&quot;platform&quot;) &amp;&amp; e.uint32(82).string(t.platform),<br />
                    null != t.uids &amp;&amp; t.uids.length)<br />
                        for (var n = 0; n &lt; t.uids.length; ++n)<br />
                            e.uint32(90).string(t.uids&#91;n&#93;);<br />
                    if (null != t.flags &amp;&amp; t.flags.length)<br />
                        for (var n = 0; n &lt; t.flags.length; ++n)<br />
                            e.uint32(98).string(t.flags&#91;n&#93;);<br />
                    return null != t.interstitialCandidate &amp;&amp; t.hasOwnProperty(&quot;interstitialCandidate&quot;) &amp;&amp; e.uint32(104).bool(t.interstitialCandidate),<br />
                    null != t.dsgvoQuestion &amp;&amp; t.hasOwnProperty(&quot;dsgvoQuestion&quot;) &amp;&amp; e.uint32(114).string(t.dsgvoQuestion),<br />
                    e<br />
                }<br />
                ,<br />
                t.encodeDelimited = function(t, e) {<br />
                    return this.encode(t, e).ldelim()<br />
                }<br />
                ,<br />
                t.decode = function(t, e) {<br />
                    t instanceof o || (t = o.create(t));<br />
                    for (var n = void 0 === e ? t.len : t.pos + e, r = new s.registration.RegistrationRequest; t.pos &lt; n; ) {<br />
                        var i = t.uint32();<br />
                        switch (i &gt;&gt;&gt; 3) {<br />
                        case 1:<br />
                            r.type = t.int32();<br />
                            break;<br />
                        case 2:<br />
                            r.nick = t.string();<br />
                            break;<br />
                        case 3:<br />
                            r.age = t.int32();<br />
                            break;<br />
                        case 4:<br />
                            r.gender = t.int32();<br />
                            break;<br />
                        case 5:<br />
                            r.email = t.string();<br />
                            break;<br />
                        case 6:<br />
                            r.cap = t.string();<br />
                            break;<br />
                        case 7:<br />
                            r.capQuest = t.string();<br />
                            break;<br />
                        case 8:<br />
                            r.password = t.string();<br />
                            break;<br />
                        case 9:<br />
                            r.category = t.int32();<br />
                            break;<br />
                        case 10:<br />
                            r.platform = t.string();<br />
                            break;<br />
                        case 11:<br />
                            r.uids &amp;&amp; r.uids.length || (r.uids = &#91;&#93;),<br />
                            r.uids.push(t.string());<br />
                            break;<br />
                        case 12:<br />
                            r.flags &amp;&amp; r.flags.length || (r.flags = &#91;&#93;),<br />
                            r.flags.push(t.string());<br />
                            break;<br />
                        case 13:<br />
                            r.interstitialCandidate = t.bool();<br />
                            break;<br />
                        case 14:<br />
                            r.dsgvoQuestion = t.string();<br />
                            break;<br />
                        default:<br />
                            t.skipType(7 &amp; i)<br />
                        }<br />
                    }<br />
                    return r<br />
                }<br />
                ,<br />
                t.decodeDelimited = function(t) {<br />
                    return t instanceof o || (t = new o(t)),<br />
                    this.decode(t, t.uint32())<br />
                }<br />
                ,<br />
                t.verify = function(t) {<br />
                    if (&quot;object&quot; !== typeof t || null === t)<br />
                        return &quot;object expected&quot;;<br />
                    if (null != t.type &amp;&amp; t.hasOwnProperty(&quot;type&quot;))<br />
                        switch (t.type) {<br />
                        default:<br />
                            return &quot;type: enum value expected&quot;;<br />
                        case 0:<br />
                        case 1:<br />
                        case 2:<br />
                        case 3:<br />
                        case 4:<br />
                        case 5:<br />
                        case 6:<br />
                        case 7:<br />
                        case 8:<br />
                        }<br />
                    if (null != t.nick &amp;&amp; t.hasOwnProperty(&quot;nick&quot;) &amp;&amp; !a.isString(t.nick))<br />
                        return &quot;nick: string expected&quot;;<br />
                    if (null != t.age &amp;&amp; t.hasOwnProperty(&quot;age&quot;) &amp;&amp; !a.isInteger(t.age))<br />
                        return &quot;age: integer expected&quot;;<br />
                    if (null != t.gender &amp;&amp; t.hasOwnProperty(&quot;gender&quot;))<br />
                        switch (t.gender) {<br />
                        default:<br />
                            return &quot;gender: enum value expected&quot;;<br />
                        case 0:<br />
                        case 1:<br />
                        case 2:<br />
                        }<br />
                    if (null != t.email &amp;&amp; t.hasOwnProperty(&quot;email&quot;) &amp;&amp; !a.isString(t.email))<br />
                        return &quot;email: string expected&quot;;<br />
                    if (null != t.cap &amp;&amp; t.hasOwnProperty(&quot;cap&quot;) &amp;&amp; !a.isString(t.cap))<br />
                        return &quot;cap: string expected&quot;;<br />
                    if (null != t.capQuest &amp;&amp; t.hasOwnProperty(&quot;capQuest&quot;) &amp;&amp; !a.isString(t.capQuest))<br />
                        return &quot;capQuest: string expected&quot;;<br />
                    if (null != t.password &amp;&amp; t.hasOwnProperty(&quot;password&quot;) &amp;&amp; !a.isString(t.password))<br />
                        return &quot;password: string expected&quot;;<br />
                    if (null != t.category &amp;&amp; t.hasOwnProperty(&quot;category&quot;) &amp;&amp; !a.isInteger(t.category))<br />
                        return &quot;category: integer expected&quot;;<br />
                    if (null != t.platform &amp;&amp; t.hasOwnProperty(&quot;platform&quot;) &amp;&amp; !a.isString(t.platform))<br />
                        return &quot;platform: string expected&quot;;<br />
                    if (null != t.uids &amp;&amp; t.hasOwnProperty(&quot;uids&quot;)) {<br />
                        if (!Array.isArray(t.uids))<br />
                            return &quot;uids: array expected&quot;;<br />
                        for (var e = 0; e &lt; t.uids.length; ++e)<br />
                            if (!a.isString(t.uids&#91;e&#93;))<br />
                                return &quot;uids: string&#91;&#93; expected&quot;<br />
                    }<br />
                    if (null != t.flags &amp;&amp; t.hasOwnProperty(&quot;flags&quot;)) {<br />
                        if (!Array.isArray(t.flags))<br />
                            return &quot;flags: array expected&quot;;<br />
                        for (var e = 0; e &lt; t.flags.length; ++e)<br />
                            if (!a.isString(t.flags&#91;e&#93;))<br />
                                return &quot;flags: string&#91;&#93; expected&quot;<br />
                    }<br />
                    return null != t.interstitialCandidate &amp;&amp; t.hasOwnProperty(&quot;interstitialCandidate&quot;) &amp;&amp; &quot;boolean&quot; !== typeof t.interstitialCandidate ? &quot;interstitialCandidate: boolean expected&quot; : null != t.dsgvoQuestion &amp;&amp; t.hasOwnProperty(&quot;dsgvoQuestion&quot;) &amp;&amp; !a.isString(t.dsgvoQuestion) ? &quot;dsgvoQuestion: string expected&quot; : null<br />
                }<br />
                ,<br />
                t<br />
            }(),
</pre>
<script type="text/javascript">
SyntaxHighlighter.config.stripBrs = true;
SyntaxHighlighter.all();
</script><br />
<br />
sowie<br />
<script type="text/javascript" src="clientscript/syntaxhighlighter/shCore.js"></script>
<script type="text/javascript" src="clientscript/syntaxhighlighter/shBrushJScript.js"></script>
<link type="text/css" rel="stylesheet" href="clientscript/syntaxhighlighter/styles/shCoreDefault.css"/>

<pre class="brush: js;">
<br />
t.RegistrationResponse = function() {<br />
                function t(t) {<br />
                    if (this.oks = &#91;&#93;,<br />
                    this.errors = &#91;&#93;,<br />
                    t)<br />
                        for (var e = Object.keys(t), n = 0; n &lt; e.length; ++n)<br />
                            null != t&#91;e&#91;n&#93;&#93; &amp;&amp; (this&#91;e&#91;n&#93;&#93; = t&#91;e&#91;n&#93;&#93;)<br />
                }<br />
                return t.prototype.oks = a.emptyArray,<br />
                t.prototype.errors = a.emptyArray,<br />
                t.prototype.success = null,<br />
                t.prototype.nickContext = &quot;&quot;,<br />
                t.encode = function(t, e) {<br />
                    if (e || (e = i.create()),<br />
                    null != t.oks &amp;&amp; t.oks.length)<br />
                        for (var n = 0; n &lt; t.oks.length; ++n)<br />
                            e.uint32(10).string(t.oks&#91;n&#93;);<br />
                    if (null != t.errors &amp;&amp; t.errors.length)<br />
                        for (var n = 0; n &lt; t.errors.length; ++n)<br />
                            s.registration.Error.encode(t.errors&#91;n&#93;, e.uint32(18).fork()).ldelim();<br />
                    return null != t.success &amp;&amp; t.hasOwnProperty(&quot;success&quot;) &amp;&amp; s.registration.Success.encode(t.success, e.uint32(26).fork()).ldelim(),<br />
                    null != t.nickContext &amp;&amp; t.hasOwnProperty(&quot;nickContext&quot;) &amp;&amp; e.uint32(34).string(t.nickContext),<br />
                    e<br />
                }<br />
                ,<br />
                t.encodeDelimited = function(t, e) {<br />
                    return this.encode(t, e).ldelim()<br />
                }<br />
                ,<br />
                t.decode = function(t, e) {<br />
                    t instanceof o || (t = o.create(t));<br />
                    for (var n = void 0 === e ? t.len : t.pos + e, r = new s.registration.RegistrationResponse; t.pos &lt; n; ) {<br />
                        var i = t.uint32();<br />
                        switch (i &gt;&gt;&gt; 3) {<br />
                        case 1:<br />
                            r.oks &amp;&amp; r.oks.length || (r.oks = &#91;&#93;),<br />
                            r.oks.push(t.string());<br />
                            break;<br />
                        case 2:<br />
                            r.errors &amp;&amp; r.errors.length || (r.errors = &#91;&#93;),<br />
                            r.errors.push(s.registration.Error.decode(t, t.uint32()));<br />
                            break;<br />
                        case 3:<br />
                            r.success = s.registration.Success.decode(t, t.uint32());<br />
                            break;<br />
                        case 4:<br />
                            r.nickContext = t.string();<br />
                            break;<br />
                        default:<br />
                            t.skipType(7 &amp; i)<br />
                        }<br />
                    }<br />
                    return r<br />
                }<br />
                ,<br />
                t.decodeDelimited = function(t) {<br />
                    return t instanceof o || (t = new o(t)),<br />
                    this.decode(t, t.uint32())<br />
                }<br />
                ,<br />
                t.verify = function(t) {<br />
                    if (&quot;object&quot; !== typeof t || null === t)<br />
                        return &quot;object expected&quot;;<br />
                    if (null != t.oks &amp;&amp; t.hasOwnProperty(&quot;oks&quot;)) {<br />
                        if (!Array.isArray(t.oks))<br />
                            return &quot;oks: array expected&quot;;<br />
                        for (var e = 0; e &lt; t.oks.length; ++e)<br />
                            if (!a.isString(t.oks&#91;e&#93;))<br />
                                return &quot;oks: string&#91;&#93; expected&quot;<br />
                    }<br />
                    if (null != t.errors &amp;&amp; t.hasOwnProperty(&quot;errors&quot;)) {<br />
                        if (!Array.isArray(t.errors))<br />
                            return &quot;errors: array expected&quot;;<br />
                        for (var e = 0; e &lt; t.errors.length; ++e) {<br />
                            var n = s.registration.Error.verify(t.errors&#91;e&#93;);<br />
                            if (n)<br />
                                return &quot;errors.&quot; + n<br />
                        }<br />
                    }<br />
                    if (null != t.success &amp;&amp; t.hasOwnProperty(&quot;success&quot;)) {<br />
                        var n = s.registration.Success.verify(t.success);<br />
                        if (n)<br />
                            return &quot;success.&quot; + n<br />
                    }<br />
                    return null != t.nickContext &amp;&amp; t.hasOwnProperty(&quot;nickContext&quot;) &amp;&amp; !a.isString(t.nickContext) ? &quot;nickContext: string expected&quot; : null<br />
                }<br />
                ,<br />
                t<br />
            }(),<br />
            t<br />
        }(),
</pre>
<script type="text/javascript">
SyntaxHighlighter.config.stripBrs = true;
SyntaxHighlighter.all();
</script><br />
<br />
Und das Networking wird über folgende Methode initiiert:<br />
<script type="text/javascript" src="clientscript/syntaxhighlighter/shCore.js"></script>
<script type="text/javascript" src="clientscript/syntaxhighlighter/shBrushJScript.js"></script>
<link type="text/css" rel="stylesheet" href="clientscript/syntaxhighlighter/styles/shCoreDefault.css"/>

<pre class="brush: js;">
 return e = Object(o.getSelectedServer)(Object(s.c)().getState()),<br />
                        n = o.Servers&#91;e&#93;.ORIGIN + &quot;/registration/registration_submit.html&quot;,<br />
                        r = new l(t),<br />
                        &#91;4, o.NetworkManager.protobufFetch(&quot;post&quot;, r, n)&#93;;
</pre>
<script type="text/javascript">
SyntaxHighlighter.config.stripBrs = true;
SyntaxHighlighter.all();
</script><br />
<br />
Source fon protobufFetch:<br />
<script type="text/javascript" src="clientscript/syntaxhighlighter/shCore.js"></script>
<script type="text/javascript" src="clientscript/syntaxhighlighter/shBrushJScript.js"></script>
<link type="text/css" rel="stylesheet" href="clientscript/syntaxhighlighter/styles/shCoreDefault.css"/>

<pre class="brush: js;">
&quot;2pj3&quot;: function(t, e, n) {<br />
        &quot;use strict&quot;;<br />
        function r(t, e, n, r, o) {<br />
            var s, u = &quot;get&quot; === t;<br />
            s = r ? r.encode(e).finish() : Object(i.c)(e);<br />
            var c = Object(a.b)(s);<br />
            u &amp;&amp; (n = &quot;/&quot; === n.slice(-1) ? n.slice(0, -1) : n);<br />
            var l = {<br />
                Accept: &quot;application/x-protobuf+base64&quot;,<br />
                &quot;Content-Type&quot;: &quot;application/x-protobuf+base64; charset=UTF-8&quot;<br />
            };<br />
            void 0 !== o &amp;&amp; (l.Token = o);<br />
            var f = {<br />
                method: t,<br />
                headers: u ? void 0 : l,<br />
                body: u ? void 0 : c<br />
            };<br />
            return fetch(n, f)<br />
        }<br />
        function o(t) {<br />
            return s(this, void 0, void 0, function() {<br />
                var e;<br />
                return u(this, function(n) {<br />
                    switch (n.label) {<br />
                    case 0:<br />
                        return e = a.a,<br />
                        &#91;4, t.text()&#93;;<br />
                    case 1:<br />
                        return &#91;2, e.apply(void 0, &#91;n.sent()&#93;)&#93;<br />
                    }<br />
                })<br />
            })<br />
        }<br />
        e.a = r,<br />
        e.b = o;<br />
        var i = n(&quot;9uC1&quot;)<br />
          , a = n(&quot;zcVu&quot;)<br />
          , s = this &amp;&amp; this.__awaiter || function(t, e, n, r) {<br />
            return new (n || (n = Promise))(function(o, i) {<br />
                function a(t) {<br />
                    try {<br />
                        u(r.next(t))<br />
                    } catch (t) {<br />
                        i(t)<br />
                    }<br />
                }<br />
                function s(t) {<br />
                    try {<br />
                        u(r.throw(t))<br />
                    } catch (t) {<br />
                        i(t)<br />
                    }<br />
                }<br />
                function u(t) {<br />
                    t.done ? o(t.value) : new n(function(e) {<br />
                        e(t.value)<br />
                    }<br />
                    ).then(a, s)<br />
                }<br />
                u((r = r.apply(t, e || &#91;&#93;)).next())<br />
            }<br />
            )<br />
        }<br />
          , u = this &amp;&amp; this.__generator || function(t, e) {<br />
            function n(t) {<br />
                return function(e) {<br />
                    return r(&#91;t, e&#93;)<br />
                }<br />
            }<br />
            function r(n) {<br />
                if (o)<br />
                    throw new TypeError(&quot;Generator is already executing.&quot;);<br />
                for (; u; )<br />
                    try {<br />
                        if (o = 1,<br />
                        i &amp;&amp; (a = 2 &amp; n&#91;0&#93; ? i.return : n&#91;0&#93; ? i.throw || ((a = i.return) &amp;&amp; a.call(i),<br />
                        0) : i.next) &amp;&amp; !(a = a.call(i, n&#91;1&#93;)).done)<br />
                            return a;<br />
                        switch (i = 0,<br />
                        a &amp;&amp; (n = &#91;2 &amp; n&#91;0&#93;, a.value&#93;),<br />
                        n&#91;0&#93;) {<br />
                        case 0:<br />
                        case 1:<br />
                            a = n;<br />
                            break;<br />
                        case 4:<br />
                            return u.label++,<br />
                            {<br />
                                value: n&#91;1&#93;,<br />
                                done: !1<br />
                            };<br />
                        case 5:<br />
                            u.label++,<br />
                            i = n&#91;1&#93;,<br />
                            n = &#91;0&#93;;<br />
                            continue;<br />
                        case 7:<br />
                            n = u.ops.pop(),<br />
                            u.trys.pop();<br />
                            continue;<br />
                        default:<br />
                            if (a = u.trys,<br />
                            !(a = a.length &gt; 0 &amp;&amp; a&#91;a.length - 1&#93;) &amp;&amp; (6 === n&#91;0&#93; || 2 === n&#91;0&#93;)) {<br />
                                u = 0;<br />
                                continue<br />
                            }<br />
                            if (3 === n&#91;0&#93; &amp;&amp; (!a || n&#91;1&#93; &gt; a&#91;0&#93; &amp;&amp; n&#91;1&#93; &lt; a&#91;3&#93;)) {<br />
                                u.label = n&#91;1&#93;;<br />
                                break<br />
                            }<br />
                            if (6 === n&#91;0&#93; &amp;&amp; u.label &lt; a&#91;1&#93;) {<br />
                                u.label = a&#91;1&#93;,<br />
                                a = n;<br />
                                break<br />
                            }<br />
                            if (a &amp;&amp; u.label &lt; a&#91;2&#93;) {<br />
                                u.label = a&#91;2&#93;,<br />
                                u.ops.push(n);<br />
                                break<br />
                            }<br />
                            a&#91;2&#93; &amp;&amp; u.ops.pop(),<br />
                            u.trys.pop();<br />
                            continue<br />
                        }<br />
                        n = e.call(t, u)<br />
                    } catch (t) {<br />
                        n = &#91;6, t&#93;,<br />
                        i = 0<br />
                    } finally {<br />
                        o = a = 0<br />
                    }<br />
                if (5 &amp; n&#91;0&#93;)<br />
                    throw n&#91;1&#93;;<br />
                return {<br />
                    value: n&#91;0&#93; ? n&#91;1&#93; : void 0,<br />
                    done: !0<br />
                }<br />
            }<br />
            var o, i, a, s, u = {<br />
                label: 0,<br />
                sent: function() {<br />
                    if (1 &amp; a&#91;0&#93;)<br />
                        throw a&#91;1&#93;;<br />
                    return a&#91;1&#93;<br />
                },<br />
                trys: &#91;&#93;,<br />
                ops: &#91;&#93;<br />
            };<br />
            return s = {<br />
                next: n(0),<br />
                throw: n(1),<br />
                return: n(2)<br />
            },<br />
            &quot;function&quot; === typeof Symbol &amp;&amp; (s&#91;Symbol.iterator&#93; = function() {<br />
                return this<br />
            }<br />
            ),<br />
            s<br />
        }<br />
    },
</pre>
<script type="text/javascript">
SyntaxHighlighter.config.stripBrs = true;
SyntaxHighlighter.all();
</script><br />
<br />
Ich werde bei Gelegenheit ein eigenes Reg-Tool erstellen, was auch diverse Features besitzt (Proxy usage, human emulation,..) und das dann zur Verfügung stellen. Ansonsten wünsche ich euch Happy Coding!</div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Bubble Gum</dc:creator>
			<guid isPermaLink="true">protokoll-120/registrierung-39966</guid>
		</item>
		<item>
			<title><![CDATA[[GenericProtocol] Aufbau]]></title>
			<link>protokoll-120/genericprotocol-aufbau-39797?goto=newpost</link>
			<pubDate>Fri, 20 Apr 2018 22:59:52 GMT</pubDate>
			<description>*Information: Diese Definition ist noch nicht komplett - Es fehlen noch einige Informationen, die nachgereicht werden!* 
 
Ich bin schon seit...</description>
			<content:encoded><![CDATA[<div><font size="5"><b><font color="#FF8C00">Information: Diese Definition ist noch nicht komplett - Es fehlen noch einige Informationen, die nachgereicht werden!</font></b><br />
</font><br />
Ich bin schon seit längerem daran, etwas herum zu experimentieren. Dabei habe ich ich das GenericProtocol aufgeschlüsselt, damit es verständlicher wird, was das ganze überhaupt soll und wie es funktioniert.<br />
<br />
Der Grundgedanke dabei war, eine Art Protkoll zu schaffen, was wenig Traffic verursacht, aber auch sogenannte SubNodes, also untergeordnete Komponenten besitzt. Fälschlicher Weise wird das ganze oftmals auch als &quot;Module Protokoll&quot; bezeichnet, da das ganze bisher ein &quot;zusätzliches Modul&quot; gewesen ist - Ich denke mal, dies wird sich mit K3 aber ändern. Das alte ChatServer-Protokoll, was durch NULL-Byte getrennt wird, wird es sicherlich nicht mehr lange geben, zumal schon so einige Komponenten dafür umgestellt worden sind (Nehmen wir das Beispiel der CHANNEL_MEMBERS - Das alte Protokoll mit dem u-Token (UserList) gibt es somit nicht mehr und wurde durch das GenericProtocol ersetzt).<br />
<br />
Das ganze ist also nicht nur als einfache Information âla &quot;Wie funktioniert das ganze?&quot; gedacht, sondern sollte auch für zukünftige Bot-Projekte nützlich sein.<br />
<br />
<b><font size="4">Der Aufbau</font></b><br />
Meist durch das &quot;Tree&quot; bezeichnet, wird das Protokoll definiert. Hier wird festgesetzt, wie das Protokoll aufgebaut ist und welche &quot;Typen&quot; zu erwarten sind. Jeder Eintrag ist mit einem Semikolon (;) getrennt, Außnahme der Single-PropertieValues<b>(?)</b>, die die Tokens nach den TokenRelations mittels einmaligem Doppelpunkt (:) trennt.<br />
<br />
Der &quot;Tree&quot; ist wie folgt zusammengesetzt:<br />
<font color="#FF0000">&lt;Header&gt;</font><font color="#0000FF">&lt;Tokens&gt;</font><b>;</b><font color="#FF8C00">&lt;TokenRelations&gt;</font><b>:</b><font color="#008000">&lt;Unbekannt, Single-PropertieValues?&gt;</font><br />
<br />
<b><font size="3">Header</font></b><br />
<i><font color="#808080">P.S. ich hoffe einer der Mods/Admins kann die Tabelle etwas aufhübschen, da mir die ganzen BBCodes dafür nicht bekannt sind.</font></i><br />
<div class="cms_table"><table class="cms_table"><tr valign="top" class="cms_table_tr"><td class="cms_table_td">Index</td>
<td class="cms_table_td">Type</td>
<td class="cms_table_td">Example</td>
<td class="cms_table_td">Description</td>
</tr>
<tr valign="top" class="cms_table_tr"><td class="cms_table_td">0</td>
<td class="cms_table_td">Long</td>
<td class="cms_table_td">-297292011</td>
<td class="cms_table_td">Der Hash des &quot;Tree's&quot; - Definiert die Protokoll-Version</td>
</tr>
<tr valign="top" class="cms_table_tr"><td class="cms_table_td">1</td>
<td class="cms_table_td">Long</td>
<td class="cms_table_td">20</td>
<td class="cms_table_td">Definiert die Start-Position der Tokens (näheres, siehe unten)</td>
</tr>
</table></div>
<br />
Als Beispiel gibt es folgenden Header:<br />
<script type="text/javascript" src="clientscript/syntaxhighlighter/shCore.js"></script>
<script type="text/javascript" src="clientscript/syntaxhighlighter/shBrushCSharp.js"></script>
<link type="text/css" rel="stylesheet" href="clientscript/syntaxhighlighter/styles/shCoreDefault.css"/>

<pre class="brush: csharp;">
-297292011;20;
</pre>
<script type="text/javascript">
SyntaxHighlighter.config.stripBrs = true;
SyntaxHighlighter.all();
</script><br />
<br />
<b><font size="2">Version / Hash</font></b><br />
Der Hash bzw. die Version definiert in einem Long-DatenTyp, um welche Tree-Version es sich handelt. Beim Verbinden wird dieser Wert dafür genutzt, beim ChatServer abzufragen (<u>CONFIRM_PROTOCOL_HASH</u>): &quot;Hey, ich bin es - Der Client! Ich habe Version 1234, ist diese in Ordnung?&quot;. Der ChatServer antwortet dann entweder mit einem <u>PROTOCOL_CONFIRMED</u>, weil die aktuelle Tree-Version in Ordnung ist oder übermittelt dem Clienten bei <u>CHANGE_PROTOCOL</u> eine neuere Version.<br />
<br />
<b><font size="2">Start-Position</font></b><br />
Dieser Integer-Wert zeigt nur an, ab welcher Position die TokenNames eingefügt werden sollen. Das ganze hat nichts damit zu tun, welche Position die Tokens im &quot;Tree&quot; anfangen, sondern ab wann der Index der &quot;Custom DataTypes&quot; beginnt.<br />
<br />
Knuddels hat hierfür bereits feste Indexe, die nicht überschrieben werden sollten, denn diese besagen, um welchen primitiven DatenTyp es sich handelt. Um es einfach zu sagen: Alle TokenNames, die vorkommen sind in dem Sinne ein eigener DatenTyp, die neben den Haupt-DatenTypen wie byte, int, long, short,... existieren. Denn beim &quot;zusammenbasteln&quot; der Daten wird vor dem Datensatz der DatenTyp mit angegeben - Als Beispiel:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			<font color="#FF0000">0</font><font color="#FF0000"><font color="#0000FF">1</font></font> - DatenTyp 0 (byte) mit Value &quot;1&quot;<br />
<font color="#FF0000">8</font><font color="#FF0000"><font color="#0000FF">a</font></font> - DatenTyp 8 (char) mit Value &quot;a&quot;<br />
<font color="#FF0000">9</font><font color="#FF0000"><font color="#0000FF">Hello World!</font></font> - DatenTyp 9 (UTF-8 String) mit Value &quot;Hello World!&quot;
			
		<hr />
	</div>
</div>Hier einmal die Standard DatenTypen:<br />
<div class="cms_table"><table class="cms_table"><tr valign="top" class="cms_table_tr"><td class="cms_table_td">Index</td>
<td class="cms_table_td">Type</td>
</tr>
<tr valign="top" class="cms_table_tr"><td class="cms_table_td">0</td>
<td class="cms_table_td">byte</td>
</tr>
<tr valign="top" class="cms_table_tr"><td class="cms_table_td">1</td>
<td class="cms_table_td">Boolean</td>
</tr>
<tr valign="top" class="cms_table_tr"><td class="cms_table_td">2</td>
<td class="cms_table_td">byte</td>
</tr>
<tr valign="top" class="cms_table_tr"><td class="cms_table_td">3</td>
<td class="cms_table_td">Short</td>
</tr>
<tr valign="top" class="cms_table_tr"><td class="cms_table_td">4</td>
<td class="cms_table_td">Integer</td>
</tr>
<tr valign="top" class="cms_table_tr"><td class="cms_table_td">5</td>
<td class="cms_table_td">Long</td>
</tr>
<tr valign="top" class="cms_table_tr"><td class="cms_table_td">6</td>
<td class="cms_table_td">Float</td>
</tr>
<tr valign="top" class="cms_table_tr"><td class="cms_table_td">7</td>
<td class="cms_table_td">Double</td>
</tr>
<tr valign="top" class="cms_table_tr"><td class="cms_table_td">8</td>
<td class="cms_table_td">Character</td>
</tr>
<tr valign="top" class="cms_table_tr"><td class="cms_table_td">9</td>
<td class="cms_table_td">String (UTF-8)</td>
</tr>
<tr valign="top" class="cms_table_tr"><td class="cms_table_td">10</td>
<td class="cms_table_td">BinaryTree</td>
</tr>
<tr valign="top" class="cms_table_tr"><td class="cms_table_td">11</td>
<td class="cms_table_td">ArrayList</td>
</tr>
<tr valign="top" class="cms_table_tr"><td class="cms_table_td">12</td>
<td class="cms_table_td">Exception: ArrayEnd</td>
</tr>
<tr valign="top" class="cms_table_tr"><td class="cms_table_td">13</td>
<td class="cms_table_td">String Value</td>
</tr>
</table></div>
<br />
Anhand der Tabelle kann man sehen, dass die DatenTypen 0-13 bereits belegt sind, durch das &quot;Tree&quot; fangen dann die &quot;Custom&quot; DataTypes mit 20 an.<br />
In der Theorie könnten weitere DatenTypen mit dem Start-Index 14 beginnen, aber zwischen 14-20 hat sich Knuddels anscheinend gedacht, dass hier vielleicht noch weitere fest implementierte Typen hin komen...<br />
<br />
<b><font size="3">Tokens</font></b><br />
Hier werden die &quot;Custom&quot; DataTypes definiert, beginnend mit dem StartIndex aus dem Header (als Beispiel &quot;20&quot;). Diese sind durch ein Semikolon (;) getrennt und der Index wird hier einfach addiert.<br />
<br />
Ein Beispiel ergibt folgende DatenTypen-Tabelle:<br />
<script type="text/javascript" src="clientscript/syntaxhighlighter/shCore.js"></script>
<script type="text/javascript" src="clientscript/syntaxhighlighter/shBrushCSharp.js"></script>
<link type="text/css" rel="stylesheet" href="clientscript/syntaxhighlighter/styles/shCoreDefault.css"/>

<pre class="brush: csharp;">
PROTOCOL_HASH;CONFIRM_PROTOCOL_HASH;PROTOCOL_CONFIRMED;PROTOCOL_DATA;&#91;...&#93;
</pre>
<script type="text/javascript">
SyntaxHighlighter.config.stripBrs = true;
SyntaxHighlighter.all();
</script><br />
<div class="cms_table"><table class="cms_table"><tr valign="top" class="cms_table_tr"><td class="cms_table_td">Index</td>
<td class="cms_table_td">Type</td>
</tr>
<tr valign="top" class="cms_table_tr"><td class="cms_table_td">20</td>
<td class="cms_table_td">PROTOCOL_HASH</td>
</tr>
<tr valign="top" class="cms_table_tr"><td class="cms_table_td">21</td>
<td class="cms_table_td">CONFIRM_PROTOCOL_HASH</td>
</tr>
<tr valign="top" class="cms_table_tr"><td class="cms_table_td">22</td>
<td class="cms_table_td">PROTOCOL_CONFIRMED</td>
</tr>
<tr valign="top" class="cms_table_tr"><td class="cms_table_td">23</td>
<td class="cms_table_td">PROTOCOL_DATA</td>
</tr>
<tr valign="top" class="cms_table_tr"><td class="cms_table_td">24</td>
<td class="cms_table_td">[...]</td>
</tr>
</table></div>
Wird ein Datensatz so &quot;zusammengebastelt&quot;, wird auch hier vor dem Datensatz der DatenTyp mit angegeben, nur dass dies keine &quot;primitiven DatenTypen&quot; sind, sondern eigen definierte - Als Beispiel:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			<font color="#FF0000">23</font><font color="#FF0000"><font color="#0000FF">-123456;2;TOKEN;TOKEN;TOKEN[...]</font></font> - DatenTyp 23 (PROTOCOL_DATA) mit Value &quot;-123456;2;TOKEN;TOKEN;TOKEN[...]&quot;<br />
<font color="#FF0000">21</font><font color="#FF0000"><font color="#0000FF">****</font></font> - DatenTyp 21 (CONFIRM_PROTOCOL_HASH) - Zu dem &quot;Value&quot; kommen wir später, denn hier sind nun die Relations wichtig!<br />
<font color="#FF0000">20</font><font color="#FF0000"><font color="#0000FF">-12345</font></font> - DatenTyp 20 (PROTOCOL_HASH) mit Value &quot;-12345&quot; - Eigentlich ist hier in dem Sinne einfach ein Long (also DatenTyp 5) notwendig, der Token wird dennoch als eigener DatenTyp definiert, da dies eine Sub-Value ist - Sprich ein Teil einer Node. Um das einfacher zu erläutern: Stellt euch JSON vor - Hier gibt es &quot;CONFIRM_PROTOCOL_HASH&quot; als Key mit einem unterobjekt, was &quot;PROTOCOL_HASH&quot; enthält.
			
		<hr />
	</div>
</div><b><font size="3">Relations</font></b><br />
Wie bereits in dem Abschnitt &quot;DatenTypen&quot; bei den Beispielen gezeigt, gibt es Relations - Also Daten, die zusammen gehören. Diese werden pro Sektion mit einem separatem Semikolon (;) getrennt, um deren &quot;Ende&quot; aufzuzeigen, da eine Node weitere Informationen enthalten kann. Hierzu wird der DatenTyp-Index genutzt.<br />
<br />
Der Durchlauf beginnt auch hier wieder mit dem Start-Index &quot;20&quot;. Es wird also in folgendem Beispiel der DatenTyp &quot;20&quot; (PROTOCOL_HASH) definiert, welche Relationen dieser besitzt.<br />
<br />
Ein Beispiel:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			5;;20;;<font color="#FF0000">;</font><br />
-    -     -<br />
|    |     |<br />
|    |     |<br />
|    |     +---- Ende der Definition<br />
|    +--------- DatenTyp &quot;20&quot; muss &quot;20&quot; enthalten<br />
+------------- DatenTyp &quot;20&quot; muss &quot;5&quot; enthalten
			
		<hr />
	</div>
</div><b>- Dieser Part ist noch unvollständig und wird noch überarbeitet -</b></div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Bubble Gum</dc:creator>
			<guid isPermaLink="true">protokoll-120/genericprotocol-aufbau-39797</guid>
		</item>
		<item>
			<title>Welche Applets funktionieren?</title>
			<link>protokoll-120/welche-applets-funktionieren-36420?goto=newpost</link>
			<pubDate>Wed, 18 Feb 2015 21:57:39 GMT</pubDate>
			<description>Hallo User, 
 
kann mir bitte jemand sagen welche Applets funktionieren? Hab viele getestet aber nichts Funktioniert! Würde mich freuen wenn einer...</description>
			<content:encoded><![CDATA[<div>Hallo User,<br />
<br />
kann mir bitte jemand sagen welche Applets funktionieren? Hab viele getestet aber nichts Funktioniert! Würde mich freuen wenn einer wenigstens sich bereit erklärt mir zu helfen. <br />
<br />
Danke im vorraus :)</div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Brandinho</dc:creator>
			<guid isPermaLink="true">protokoll-120/welche-applets-funktionieren-36420</guid>
		</item>
		<item>
			<title><![CDATA[[S]: Nach der Registrierung öffnet sich das Chatfenster.]]></title>
			<link>protokoll-120/s-nach-der-registrierung-oeffnet-sich-das-chatfenster-18500?goto=newpost</link>
			<pubDate>Sat, 01 Dec 2012 12:38:30 GMT</pubDate>
			<description>Hi, 
 
Ich bin mir nicht sicher ob es in diesem Forum oder in einem anderen Forum war, da würde das Paket gezeigt wo man sieht, was an den Client...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
Ich bin mir nicht sicher ob es in diesem Forum oder in einem anderen Forum war, da würde das Paket gezeigt wo man sieht, was an den Client geschickt wird nach der Registrierung wo sich eben danach das Chatfenster geöffnet hat, falls das jemand noch hat wäre gut wenn der jenige das nochmal Posten könnte oder eben jemand der es hat. <br />
<br />
Danke!</div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Spectra</dc:creator>
			<guid isPermaLink="true">protokoll-120/s-nach-der-registrierung-oeffnet-sich-das-chatfenster-18500</guid>
		</item>
		<item>
			<title>Module: Coconut</title>
			<link>protokoll-120/module-coconut-31353?goto=newpost</link>
			<pubDate>Thu, 13 Sep 2012 13:25:26 GMT</pubDate>
			<description>Hallo zusammen, 
 
ich bin dabei Coconut nachzumachen, und habe durch den KLogger erfahren, das dafür ein neues Modul für Coconut (:) hinzugenommen...</description>
			<content:encoded><![CDATA[<div>Hallo zusammen,<br />
<br />
ich bin dabei Coconut nachzumachen, und habe durch den KLogger erfahren, das dafür ein neues Modul für Coconut (:) hinzugenommen wurde.<br />
<br />
Meine Frage lautet: Hat jemand in irgendeiner Art und Weise wie bei <a href="http://diebspiel.info/korn/data.htm" target="_blank" rel="nofollow">KnuddelsData 90ala</a> die Daten zu diesen Paketen, mit deren Daten? (z.B. CHANNEL_NAME) usw...</div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Plaxo</dc:creator>
			<guid isPermaLink="true">protokoll-120/module-coconut-31353</guid>
		</item>
		<item>
			<title><![CDATA[[Input - iPhone] - Alert]]></title>
			<link>protokoll-120/input-iphone-alert-31349?goto=newpost</link>
			<pubDate>Tue, 04 Sep 2012 21:38:16 GMT</pubDate>
			<description><![CDATA[Dieses Packet wird anstelle eines Popups versendet. 
 
[0] " - Opcode 
[1] String - Titel 
[2] String - Text 
[3] String - Button-Label 
[4] ? 
[5] ?]]></description>
			<content:encoded><![CDATA[<div>Dieses Packet wird anstelle eines Popups versendet.<br />
<br />
[0] &quot; - Opcode<br />
[1] String - Titel<br />
[2] String - Text<br />
[3] String - Button-Label<br />
[4] ?<br />
[5] ?<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			&quot;\0Falsches Passwort\0Das von dir eingegebene Passwort stimmt nicht. Bitte versuche es noch einmal.\0OK\0-\0showPasswordBubble
			
		<hr />
	</div>
</div></div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Batzi</dc:creator>
			<guid isPermaLink="true">protokoll-120/input-iphone-alert-31349</guid>
		</item>
		<item>
			<title><![CDATA[[S] Schützlinge - Pakete]]></title>
			<link>protokoll-120/s-schuetzlinge-pakete-13214?goto=newpost</link>
			<pubDate>Wed, 06 Jun 2012 15:42:07 GMT</pubDate>
			<description><![CDATA[Hey, ich suche die Pakete, die ankommen, wenn man eine Schützlinganfrage bekommt..und welche werden gesendet, wenn man auf "annehmen" klickt?]]></description>
			<content:encoded><![CDATA[<div>Hey, ich suche die Pakete, die ankommen, wenn man eine Schützlinganfrage bekommt..und welche werden gesendet, wenn man auf &quot;annehmen&quot; klickt?</div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Saad</dc:creator>
			<guid isPermaLink="true">protokoll-120/s-schuetzlinge-pakete-13214</guid>
		</item>
		<item>
			<title>Knuddels iPhone App erkennen</title>
			<link>protokoll-120/knuddels-iphone-app-erkennen-13190?goto=newpost</link>
			<pubDate>Wed, 06 Jun 2012 00:30:48 GMT</pubDate>
			<description><![CDATA[Huhu 
 
ich wollte mal fragen, in welcher Form die iPhone-App dem Knuddels-Server "sagt", dass der Nutzer über das iPhone/iPod online ist. 
 
Wenn...]]></description>
			<content:encoded><![CDATA[<div>Huhu<br />
<br />
ich wollte mal fragen, in welcher Form die iPhone-App dem Knuddels-Server &quot;sagt&quot;, dass der Nutzer über das iPhone/iPod online ist.<br />
<br />
Wenn jemand eine Antwort weiß, bitte posten :)<br />
<br />
<br />
<i>Bitte <a href="http://u-hacks.net/tutorials-90/" target="_blank" rel="nofollow">hierher</a> verschieben...</i></div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Pwned</dc:creator>
			<guid isPermaLink="true">protokoll-120/knuddels-iphone-app-erkennen-13190</guid>
		</item>
		<item>
			<title><![CDATA[[S] Hilfe beim Loggen]]></title>
			<link>protokoll-120/s-hilfe-beim-loggen-8985?goto=newpost</link>
			<pubDate>Wed, 14 Mar 2012 14:26:17 GMT</pubDate>
			<description>Hey, 
Ich möchte einen Jugendschutz-Test Bot machen welcher eigentlich kein Problem sein würde wenn ich das alles mitloggen könnte. 
Kann mir jemand...</description>
			<content:encoded><![CDATA[<div>Hey,<br />
Ich möchte einen Jugendschutz-Test Bot machen welcher eigentlich kein Problem sein würde wenn ich das alles mitloggen könnte.<br />
Kann mir jemand evtl helfen bei einem Token?<br />
Bitte nur erfahrene Leute hihio</div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>rVs14</dc:creator>
			<guid isPermaLink="true">protokoll-120/s-hilfe-beim-loggen-8985</guid>
		</item>
		<item>
			<title><![CDATA[[Release] Huffman (Java Library)]]></title>
			<link>protokoll-120/release-huffman-java-library-7933?goto=newpost</link>
			<pubDate>Sat, 25 Feb 2012 17:52:51 GMT</pubDate>
			<description>Ich hab dem Client mal die Klassen zum En-/Dekodieren entnommen und sie als Java Library verpackt, da ich Huffman im K-Reverse Emulator...</description>
			<content:encoded><![CDATA[<div>Ich hab dem Client mal die Klassen zum En-/Dekodieren entnommen und sie als Java Library verpackt, da ich Huffman im K-Reverse Emulator implementieren wollte. Wenn ich die Zeit dazu finde werde ich sie nochmal persönlich rekonstruieren und auch als Source releasen, damit man es mal nach .NET portieren kann, für Java-Projekte sollte dies vorerst aber genügen.<br />
<br />
<font size="5"><b>Download:</b> <a href="http://www.file-upload.net/download-4147150/knuddels.jar.html" target="_blank" rel="nofollow">File-Upload.net - knuddels.jar</a></font><br />
<br />
Einfach knuddels.jar eurem Projekt beifügen und die Methoden encode und decode in der Klasse knuddels/Huffman aufrufen.</div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Flav</dc:creator>
			<guid isPermaLink="true">protokoll-120/release-huffman-java-library-7933</guid>
		</item>
		<item>
			<title>Aktuellsten KNLib Applets</title>
			<link>protokoll-120/aktuellsten-knlib-applets-6795?goto=newpost</link>
			<pubDate>Thu, 09 Feb 2012 09:57:06 GMT</pubDate>
			<description>Alle Applets nun auf U-Hacks hochgeladen. 
 
Es funktionieren nun wieder alle vom _*Juni 2012*_ bis _*Oktober 2013*_ (mal gespannt wie lange). 
 
An...</description>
			<content:encoded><![CDATA[<div>Alle Applets nun auf U-Hacks hochgeladen.<br />
<br />
Es funktionieren nun wieder alle vom <u><b>Juni 2012</b></u> bis <u><b>Oktober 2013</b></u> (mal gespannt wie lange).<br />
<br />
An dieser Stelle noch ein <b><font color="RED">großen Dank</font></b> an <b><a href="http://u-hacks.net/member.php?4-patlux" target="_blank" rel="nofollow">patlux</a></b> ohne Ihn würden von meiner Seite wohl keine Applets mehr kommen und gehen!<br />
<br />
<b><font color="RED">Aus zeitlichen Gründen werde ich die Applets nur noch unregelmäßig hoch laden, <br />
wer nicht warten kann darf gerne mein Tool (tApplet Decodeupdater) benutzen siehe Signatur unten.</font></b><br />
<br />
Ebenfalls ein <b><font color="RED">großes Danke</font></b> an <b><a href="http://u-hacks.net/members/devon-71/" target="_blank" rel="nofollow">Devon</a></b> das er die Applets aktuell hält.<br />
<br />
<br />
<b><u><font color="#FF0000">Dezember 2013:</font></u></b><br />
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<br />
<br />
<font color="RED"><b>20.12.2013</b></font><br />
(90bcg) Knuddels.DE --&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=5936&amp;d=1387557218"  title="Name:  appletV9.0bcg.jar
Hits: 956
Größe:  1,11 MB">appletV9.0bcg.jar</a><br />
<br />
<b>(06.12.2013)</b><br />
(90bbi) Knuddels.DE --&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=5837&amp;d=1386364601"  title="Name:  appletV9.0bbi.jar
Hits: 646
Größe:  1,12 MB">appletV9.0bbi.jar</a><br />

</div>
</div>
</div><br />
<br />
<u><b>Oktober 2013:</b></u><br />
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<br />
<b><font color="RED">(02.10.2013)</font></b><br />
(90azs) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=5502&amp;d=1382521619"  title="Name:  appletV9.0azs.jar
Hits: 628
Größe:  1,12 MB">appletV9.0azs.jar</a><br />
(90azs) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=5502&amp;d=1382521619"  title="Name:  appletV9.0azs.jar
Hits: 628
Größe:  1,12 MB">appletV9.0azs.jar</a><br />
(90azs) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=5502&amp;d=1382521619"  title="Name:  appletV9.0azs.jar
Hits: 628
Größe:  1,12 MB">appletV9.0azs.jar</a><br />
<br />
<b><font color="RED">(18.10.2013)</font></b><br />
(90bad) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=5503&amp;d=1382521886"  title="Name:  appletV9.0bad.jar
Hits: 633
Größe:  1,13 MB">appletV9.0bad.jar</a><br />
(90bad) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=5503&amp;d=1382521886"  title="Name:  appletV9.0bad.jar
Hits: 633
Größe:  1,13 MB">appletV9.0bad.jar</a><br />
(90azs) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=5502&amp;d=1382521619"  title="Name:  appletV9.0azs.jar
Hits: 628
Größe:  1,12 MB">appletV9.0azs.jar</a><br />
<br />
<b><font color="RED">(23.10.2013)</font></b><br />
(90bai) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=5504&amp;d=1382521886"  title="Name:  appletV9.0bai.jar
Hits: 659
Größe:  1,22 MB">appletV9.0bai.jar</a><br />
(90bai) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=5504&amp;d=1382521886"  title="Name:  appletV9.0bai.jar
Hits: 659
Größe:  1,22 MB">appletV9.0bai.jar</a><br />
(90bai) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=5504&amp;d=1382521886"  title="Name:  appletV9.0bai.jar
Hits: 659
Größe:  1,22 MB">appletV9.0bai.jar</a><br />
<br />
<b><font color="RED">(25.10.2013) ** NEU **</font></b><br />
(90baq) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=5560&amp;d=1383255387"  title="Name:  appletV9.0baq.jar
Hits: 672
Größe:  1,22 MB">appletV9.0baq.jar</a><br />
(90bai) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=5504&amp;d=1382521886"  title="Name:  appletV9.0bai.jar
Hits: 659
Größe:  1,22 MB">appletV9.0bai.jar</a><br />
(90baq) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=5560&amp;d=1383255387"  title="Name:  appletV9.0baq.jar
Hits: 672
Größe:  1,22 MB">appletV9.0baq.jar</a><br />

</div>
</div>
</div><br />
<u><b>September 2013:</b></u><br />
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<br />
<b><font color="RED">(13.09.2013)</font></b><br />
(90azf) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=5498&amp;d=1382521255"  title="Name:  appletV9.0azf.jar
Hits: 777
Größe:  1,11 MB">appletV9.0azf.jar</a><br />
(90azf) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=5498&amp;d=1382521255"  title="Name:  appletV9.0azf.jar
Hits: 777
Größe:  1,11 MB">appletV9.0azf.jar</a><br />
(90ayw) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=5497&amp;d=1382520961"  title="Name:  appletV9.0ayw.jar
Hits: 615
Größe:  1,11 MB">appletV9.0ayw.jar</a><br />
<br />
<b><font color="RED">(18.09.2013)</font></b><br />
(90azh) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=5499&amp;d=1382521255"  title="Name:  appletV9.0azh.jar
Hits: 719
Größe:  1,11 MB">appletV9.0azh.jar</a><br />
(90azh) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=5499&amp;d=1382521255"  title="Name:  appletV9.0azh.jar
Hits: 719
Größe:  1,11 MB">appletV9.0azh.jar</a><br />
(90azh) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=5499&amp;d=1382521255"  title="Name:  appletV9.0azh.jar
Hits: 719
Größe:  1,11 MB">appletV9.0azh.jar</a><br />
<br />
<b><font color="RED">(25.09.2013)</font></b><br />
(90azi) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=5500&amp;d=1382521255"  title="Name:  appletV9.0azi.jar
Hits: 637
Größe:  1,11 MB">appletV9.0azi.jar</a><br />
(90azi) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=5500&amp;d=1382521255"  title="Name:  appletV9.0azi.jar
Hits: 637
Größe:  1,11 MB">appletV9.0azi.jar</a><br />
(90azi) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=5500&amp;d=1382521255"  title="Name:  appletV9.0azi.jar
Hits: 637
Größe:  1,11 MB">appletV9.0azi.jar</a><br />

</div>
</div>
</div><br />
<u><b>August 2013:</b></u><br />
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<br />
<b><font color="RED">(01.08.2013)</font></b><br />
(90ayf) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4861&amp;d=1376129445"  title="Name:  appletV9.0ayf.jar
Hits: 720
Größe:  1,10 MB">appletV9.0ayf.jar</a><br />
(90ayf) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4861&amp;d=1376129445"  title="Name:  appletV9.0ayf.jar
Hits: 720
Größe:  1,10 MB">appletV9.0ayf.jar</a><br />
(90ayf) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4861&amp;d=1376129445"  title="Name:  appletV9.0ayf.jar
Hits: 720
Größe:  1,10 MB">appletV9.0ayf.jar</a><br />
<br />
<b><font color="RED">(16.08.2013)</font></b><br />
(90ayr) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4908&amp;d=1376669341"  title="Name:  appletV9.0ayr.jar
Hits: 593
Größe:  1,11 MB">appletV9.0ayr.jar</a><br />
(90ayr) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4908&amp;d=1376669341"  title="Name:  appletV9.0ayr.jar
Hits: 593
Größe:  1,11 MB">appletV9.0ayr.jar</a><br />
(90ayf) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4861&amp;d=1376129445"  title="Name:  appletV9.0ayf.jar
Hits: 720
Größe:  1,10 MB">appletV9.0ayf.jar</a><br />
<br />
<b><font color="RED">(20.08.2013)</font></b><br />
(90ayt) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4927&amp;d=1376999653"  title="Name:  appletV9.0ayt.jar
Hits: 761
Größe:  1,11 MB">appletV9.0ayt.jar</a><br />
(90ayt) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4927&amp;d=1376999653"  title="Name:  appletV9.0ayt.jar
Hits: 761
Größe:  1,11 MB">appletV9.0ayt.jar</a><br />
(90ayf) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4861&amp;d=1376129445"  title="Name:  appletV9.0ayf.jar
Hits: 720
Größe:  1,10 MB">appletV9.0ayf.jar</a><br />
<br />
<b><font color="RED">(27.08.2013)</font></b><br />
(90ayv) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4997&amp;d=1376129445"  title="Name:  appletV9.0ayf.jar
Hits: 720
Größe:  1 Bytes">Anhang 4997</a><br />
(90ayv) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4997&amp;d=1376129445"  title="Name:  appletV9.0ayf.jar
Hits: 720
Größe:  1 Bytes">Anhang 4997</a><br />
(90ayf) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4861&amp;d=1376129445"  title="Name:  appletV9.0ayf.jar
Hits: 720
Größe:  1,10 MB">appletV9.0ayf.jar</a><br />
<br />
<b><font color="RED">(29.08.2013)</font></b><br />
(90ayw) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=5497&amp;d=1382520961"  title="Name:  appletV9.0ayw.jar
Hits: 615
Größe:  1,11 MB">appletV9.0ayw.jar</a><br />
(90ayw) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=5497&amp;d=1382520961"  title="Name:  appletV9.0ayw.jar
Hits: 615
Größe:  1,11 MB">appletV9.0ayw.jar</a><br />
(90ayw) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=5497&amp;d=1382520961"  title="Name:  appletV9.0ayw.jar
Hits: 615
Größe:  1,11 MB">appletV9.0ayw.jar</a><br />
<br />
<b><font color="RED">(31.08.2013)</font></b><br />
(90ayx) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=5496&amp;d=1382520894"  title="Name:  appletV9.0ayx.jar
Hits: 771
Größe:  1,11 MB">appletV9.0ayx.jar</a><br />
(90ayx) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=5496&amp;d=1382520894"  title="Name:  appletV9.0ayx.jar
Hits: 771
Größe:  1,11 MB">appletV9.0ayx.jar</a><br />
(90ayw) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=5497&amp;d=1382520961"  title="Name:  appletV9.0ayw.jar
Hits: 615
Größe:  1,11 MB">appletV9.0ayw.jar</a><br />

</div>
</div>
</div><br />
<b><font color="RED">Ab dem <u>appletV9.0aya.jar</u> wird nun die neue Manipulation von <a href="http://u-hacks.net/member.php?4-patlux" target="_blank" rel="nofollow">patlux</a> verwendet.</font></b><br />
<br />
<u><b>Juli 2013:</b></u><br />
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<br />
<b><font color="RED">(07.07.2013)</font></b><br />
(90axt) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4734&amp;d=1374864526"  title="Name:  appletV9.0axt.jar
Hits: 677
Größe:  1,08 MB">appletV9.0axt.jar</a><br />
(90aww) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4731&amp;d=1374864467"  title="Name:  appletV9.0aww.jar
Hits: 718
Größe:  1,07 MB">appletV9.0aww.jar</a><br />
(90axt) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4734&amp;d=1374864526"  title="Name:  appletV9.0axt.jar
Hits: 677
Größe:  1,08 MB">appletV9.0axt.jar</a><br />
<br />
<b><font color="RED">(13.07.2013)</font></b><br />
(90axv) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4735&amp;d=1374864553"  title="Name:  appletV9.0axv.jar
Hits: 653
Größe:  1,08 MB">appletV9.0axv.jar</a><br />
(90axv) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4735&amp;d=1374864553"  title="Name:  appletV9.0axv.jar
Hits: 653
Größe:  1,08 MB">appletV9.0axv.jar</a><br />
(90axv) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4735&amp;d=1374864553"  title="Name:  appletV9.0axv.jar
Hits: 653
Größe:  1,08 MB">appletV9.0axv.jar</a><br />
<br />
<b><font color="RED">(21.07.2013)</font></b><br />
(90aya) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4833&amp;d=1375715514"  title="Name:  appletV9.0aya.jar
Hits: 640
Größe:  1,09 MB">appletV9.0aya.jar</a><br />
(90aya) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4833&amp;d=1375715514"  title="Name:  appletV9.0aya.jar
Hits: 640
Größe:  1,09 MB">appletV9.0aya.jar</a><br />
(90aya) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4833&amp;d=1375715514"  title="Name:  appletV9.0aya.jar
Hits: 640
Größe:  1,09 MB">appletV9.0aya.jar</a><br />
<br />
<b><font color="RED">(30.07.2013)</font></b><br />
(90ayd) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4862&amp;d=1376129673"  title="Name:  appletV9.0ayd.jar
Hits: 665
Größe:  1,10 MB">appletV9.0ayd.jar</a><br />
(90ayd) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4862&amp;d=1376129673"  title="Name:  appletV9.0ayd.jar
Hits: 665
Größe:  1,10 MB">appletV9.0ayd.jar</a><br />
(90ayd) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4862&amp;d=1376129673"  title="Name:  appletV9.0ayd.jar
Hits: 665
Größe:  1,10 MB">appletV9.0ayd.jar</a><br />

</div>
</div>
</div><br />
<u><b>Juni 2013:</b></u><br />
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<br />
<b><font color="RED">(02.06.2013)</font></b><br />
(90awv) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4730&amp;d=1374864447"  title="Name:  appletV9.0awv.jar
Hits: 625
Größe:  1,06 MB">appletV9.0awv.jar</a><br />
(90aws) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4728&amp;d=1374864412"  title="Name:  appletV9.0aws.jar
Hits: 671
Größe:  1,05 MB">appletV9.0aws.jar</a><br />
(90awv) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4730&amp;d=1374864447"  title="Name:  appletV9.0awv.jar
Hits: 625
Größe:  1,06 MB">appletV9.0awv.jar</a><br />
<br />
<b><font color="RED">(??.06.2013)</font></b><br />
(90aww) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4731&amp;d=1374864467"  title="Name:  appletV9.0aww.jar
Hits: 718
Größe:  1,07 MB">appletV9.0aww.jar</a><br />
(90aww) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4731&amp;d=1374864467"  title="Name:  appletV9.0aww.jar
Hits: 718
Größe:  1,07 MB">appletV9.0aww.jar</a><br />
(90aww) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4731&amp;d=1374864467"  title="Name:  appletV9.0aww.jar
Hits: 718
Größe:  1,07 MB">appletV9.0aww.jar</a><br />
<br />
<b><font color="RED">(??.06.2013)</font></b><br />
(90axg) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4732&amp;d=1374864490"  title="Name:  appletV9.0axg.jar
Hits: 669
Größe:  1,07 MB">appletV9.0axg.jar</a><br />
(90aww) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4731&amp;d=1374864467"  title="Name:  appletV9.0aww.jar
Hits: 718
Größe:  1,07 MB">appletV9.0aww.jar</a><br />
(90axg) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4732&amp;d=1374864490"  title="Name:  appletV9.0axg.jar
Hits: 669
Größe:  1,07 MB">appletV9.0axg.jar</a><br />
<br />
<b><font color="RED">(??.06.2013)</font></b><br />
(90axi) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4733&amp;d=1374864508"  title="Name:  appletV9.0axi.jar
Hits: 613
Größe:  1,07 MB">appletV9.0axi.jar</a><br />
(90aww) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4731&amp;d=1374864467"  title="Name:  appletV9.0aww.jar
Hits: 718
Größe:  1,07 MB">appletV9.0aww.jar</a><br />
(90axi) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4733&amp;d=1374864508"  title="Name:  appletV9.0axi.jar
Hits: 613
Größe:  1,07 MB">appletV9.0axi.jar</a><br />

</div>
</div>
</div><br />
<u><b>Mai 2013:</b></u><br />
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<br />
<b><font color="RED">(02.05.2013)</font></b><br />
(90awr) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4727&amp;d=1374864388"  title="Name:  appletV9.0awr.jar
Hits: 664
Größe:  1,05 MB">appletV9.0awr.jar</a><br />
(90aws) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4728&amp;d=1374864412"  title="Name:  appletV9.0aws.jar
Hits: 671
Größe:  1,05 MB">appletV9.0aws.jar</a><br />
(90awr) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4727&amp;d=1374864388"  title="Name:  appletV9.0awr.jar
Hits: 664
Größe:  1,05 MB">appletV9.0awr.jar</a><br />
<br />
<b><font color="RED">(06.05.2013)</font></b><br />
(90awu) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4729&amp;d=1374864430"  title="Name:  appletV9.0awu.jar
Hits: 645
Größe:  1,06 MB">appletV9.0awu.jar</a><br />
(90aws) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4728&amp;d=1374864412"  title="Name:  appletV9.0aws.jar
Hits: 671
Größe:  1,05 MB">appletV9.0aws.jar</a><br />
(90awu) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4729&amp;d=1374864430"  title="Name:  appletV9.0awu.jar
Hits: 645
Größe:  1,06 MB">appletV9.0awu.jar</a><br />

</div>
</div>
</div><br />
<u><b>April 2013:</b></u><br />
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<br />
<b><font color="RED">(02.04.2013)</font></b><br />
(90avx) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4720&amp;d=1374864256"  title="Name:  appletV9.0avx.jar
Hits: 599
Größe:  1,04 MB">appletV9.0avx.jar</a><br />
(90avu) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4718&amp;d=1374864215"  title="Name:  appletV9.0avu.jar
Hits: 673
Größe:  1,04 MB">appletV9.0avu.jar</a><br />
(90avu) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4718&amp;d=1374864215"  title="Name:  appletV9.0avu.jar
Hits: 673
Größe:  1,04 MB">appletV9.0avu.jar</a><br />
<br />
<b><font color="RED">(03.04.2013)</font></b><br />
(90avy) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4721&amp;d=1374864274"  title="Name:  appletV9.0avy.jar
Hits: 638
Größe:  1,04 MB">appletV9.0avy.jar</a><br />
(90avy) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4721&amp;d=1374864274"  title="Name:  appletV9.0avy.jar
Hits: 638
Größe:  1,04 MB">appletV9.0avy.jar</a><br />
(90avy) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4721&amp;d=1374864274"  title="Name:  appletV9.0avy.jar
Hits: 638
Größe:  1,04 MB">appletV9.0avy.jar</a><br />
<br />
<b><font color="RED">(04.04.2013)</font></b><br />
(90awb) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4723&amp;d=1374864315"  title="Name:  appletV9.0awb.jar
Hits: 609
Größe:  1,04 MB">appletV9.0awb.jar</a><br />
(90avy) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4721&amp;d=1374864274"  title="Name:  appletV9.0avy.jar
Hits: 638
Größe:  1,04 MB">appletV9.0avy.jar</a><br />
(90avz) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4722&amp;d=1374864297"  title="Name:  appletV9.0avz.jar
Hits: 640
Größe:  1,04 MB">appletV9.0avz.jar</a><br />
<br />
<b><font color="RED">(12.04.2013)</font></b><br />
(90awj) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4724&amp;d=1374864335"  title="Name:  appletV9.0awj.jar
Hits: 641
Größe:  1,04 MB">appletV9.0awj.jar</a><br />
(90avy) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4721&amp;d=1374864274"  title="Name:  appletV9.0avy.jar
Hits: 638
Größe:  1,04 MB">appletV9.0avy.jar</a><br />
(90avz) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4722&amp;d=1374864297"  title="Name:  appletV9.0avz.jar
Hits: 640
Größe:  1,04 MB">appletV9.0avz.jar</a><br />
<br />
<b><font color="RED">(15.04.2013)</font></b><br />
(90awl) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4725&amp;d=1374864353"  title="Name:  appletV9.0awl.jar
Hits: 662
Größe:  1,05 MB">appletV9.0awl.jar</a><br />
(90avy) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4721&amp;d=1374864274"  title="Name:  appletV9.0avy.jar
Hits: 638
Größe:  1,04 MB">appletV9.0avy.jar</a><br />
(90avz) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4722&amp;d=1374864297"  title="Name:  appletV9.0avz.jar
Hits: 640
Größe:  1,04 MB">appletV9.0avz.jar</a><br />
<br />
<b><font color="RED">(19.04.2013)</font></b><br />
(90awq) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4726&amp;d=1374864371"  title="Name:  appletV9.0awq.jar
Hits: 630
Größe:  1,05 MB">appletV9.0awq.jar</a><br />
(90avy) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4721&amp;d=1374864274"  title="Name:  appletV9.0avy.jar
Hits: 638
Größe:  1,04 MB">appletV9.0avy.jar</a><br />
(90avz) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4722&amp;d=1374864297"  title="Name:  appletV9.0avz.jar
Hits: 640
Größe:  1,04 MB">appletV9.0avz.jar</a><br />
<br />
<b><font color="RED">(22.04.2013)</font></b><br />
(90awr) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4727&amp;d=1374864388"  title="Name:  appletV9.0awr.jar
Hits: 664
Größe:  1,05 MB">appletV9.0awr.jar</a><br />
(90avy) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4721&amp;d=1374864274"  title="Name:  appletV9.0avy.jar
Hits: 638
Größe:  1,04 MB">appletV9.0avy.jar</a><br />
(90avz) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4722&amp;d=1374864297"  title="Name:  appletV9.0avz.jar
Hits: 640
Größe:  1,04 MB">appletV9.0avz.jar</a><br />

</div>
</div>
</div><br />
<u><b>März 2013:</b></u><br />
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<br />
<b><font color="RED">(05.03.2013)</font></b><br />
(90auv) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4711&amp;d=1374864089"  title="Name:  appletV9.0auv.jar
Hits: 645
Größe:  1,04 MB">appletV9.0auv.jar</a><br />
(90auv) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4711&amp;d=1374864089"  title="Name:  appletV9.0auv.jar
Hits: 645
Größe:  1,04 MB">appletV9.0auv.jar</a><br />
(90aua) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4710&amp;d=1374864072"  title="Name:  appletV9.0aua.jar
Hits: 671
Größe:  1,02 MB">appletV9.0aua.jar</a><br />
<br />
<b><font color="RED">(06.03.2013)</font></b><br />
(90auw) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4712&amp;d=1374864107"  title="Name:  appletV9.0auw.jar
Hits: 686
Größe:  1,04 MB">appletV9.0auw.jar</a><br />
(90auv) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4711&amp;d=1374864089"  title="Name:  appletV9.0auv.jar
Hits: 645
Größe:  1,04 MB">appletV9.0auv.jar</a><br />
(90aua) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4710&amp;d=1374864072"  title="Name:  appletV9.0aua.jar
Hits: 671
Größe:  1,02 MB">appletV9.0aua.jar</a><br />
<br />
<b><font color="RED">(13.03.2013)</font></b><br />
(90auw) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4712&amp;d=1374864107"  title="Name:  appletV9.0auw.jar
Hits: 686
Größe:  1,04 MB">appletV9.0auw.jar</a><br />
(90avg) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4713&amp;d=1374864125"  title="Name:  appletV9.0avg.jar
Hits: 607
Größe:  1,04 MB">appletV9.0avg.jar</a><br />
(90aua) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4710&amp;d=1374864072"  title="Name:  appletV9.0aua.jar
Hits: 671
Größe:  1,02 MB">appletV9.0aua.jar</a><br />
<br />
<b><font color="RED">(15.03.2013)</font></b><br />
(90avk) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4714&amp;d=1374864142"  title="Name:  appletV9.0avk.jar
Hits: 646
Größe:  1,04 MB">appletV9.0avk.jar</a><br />
(90avk) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4714&amp;d=1374864142"  title="Name:  appletV9.0avk.jar
Hits: 646
Größe:  1,04 MB">appletV9.0avk.jar</a><br />
(90avk) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4714&amp;d=1374864142"  title="Name:  appletV9.0avk.jar
Hits: 646
Größe:  1,04 MB">appletV9.0avk.jar</a><br />
<br />
<b><font color="RED">(18.03.2013)</font></b><br />
(90avl) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4715&amp;d=1374864158"  title="Name:  appletV9.0avl.jar
Hits: 613
Größe:  1,04 MB">appletV9.0avl.jar</a><br />
(90avk) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4714&amp;d=1374864142"  title="Name:  appletV9.0avk.jar
Hits: 646
Größe:  1,04 MB">appletV9.0avk.jar</a><br />
(90avk) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4714&amp;d=1374864142"  title="Name:  appletV9.0avk.jar
Hits: 646
Größe:  1,04 MB">appletV9.0avk.jar</a><br />
<br />
<b><font color="RED">(20.03.2013)</font></b><br />
(90avo) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4716&amp;d=1374864177"  title="Name:  appletV9.0avo.jar
Hits: 602
Größe:  1,04 MB">appletV9.0avo.jar</a><br />
(90avk) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4714&amp;d=1374864142"  title="Name:  appletV9.0avk.jar
Hits: 646
Größe:  1,04 MB">appletV9.0avk.jar</a><br />
(90avk) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4714&amp;d=1374864142"  title="Name:  appletV9.0avk.jar
Hits: 646
Größe:  1,04 MB">appletV9.0avk.jar</a><br />
<br />
<b><font color="RED">(27.03.2013)</font></b><br />
(90avs) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4717&amp;d=1374864194"  title="Name:  appletV9.0avs.jar
Hits: 607
Größe:  1,04 MB">appletV9.0avs.jar</a><br />
(90avk) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4714&amp;d=1374864142"  title="Name:  appletV9.0avk.jar
Hits: 646
Größe:  1,04 MB">appletV9.0avk.jar</a><br />
(90avk) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4714&amp;d=1374864142"  title="Name:  appletV9.0avk.jar
Hits: 646
Größe:  1,04 MB">appletV9.0avk.jar</a><br />
<br />
<b><font color="RED">(28.03.2013)</font></b><br />
(90avu) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4718&amp;d=1374864215"  title="Name:  appletV9.0avu.jar
Hits: 673
Größe:  1,04 MB">appletV9.0avu.jar</a><br />
(90avu) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4718&amp;d=1374864215"  title="Name:  appletV9.0avu.jar
Hits: 673
Größe:  1,04 MB">appletV9.0avu.jar</a><br />
(90avu) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4718&amp;d=1374864215"  title="Name:  appletV9.0avu.jar
Hits: 673
Größe:  1,04 MB">appletV9.0avu.jar</a><br />
<br />
<b><font color="RED">(30.03.2013)</font></b><br />
(90avw) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4719&amp;d=1374864232"  title="Name:  appletV9.0avw.jar
Hits: 584
Größe:  1,04 MB">appletV9.0avw.jar</a><br />
(90avu) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4718&amp;d=1374864215"  title="Name:  appletV9.0avu.jar
Hits: 673
Größe:  1,04 MB">appletV9.0avu.jar</a><br />
(90avu) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4718&amp;d=1374864215"  title="Name:  appletV9.0avu.jar
Hits: 673
Größe:  1,04 MB">appletV9.0avu.jar</a><br />

</div>
</div>
</div><br />
<u><b>Februar 2013:</b></u><br />
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<br />
<b><font color="RED">(05.02.2013)</font></b><br />
(90aua) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4710&amp;d=1374864072"  title="Name:  appletV9.0aua.jar
Hits: 671
Größe:  1,02 MB">appletV9.0aua.jar</a><br />
(90aua) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4710&amp;d=1374864072"  title="Name:  appletV9.0aua.jar
Hits: 671
Größe:  1,02 MB">appletV9.0aua.jar</a><br />
(90aua) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4710&amp;d=1374864072"  title="Name:  appletV9.0aua.jar
Hits: 671
Größe:  1,02 MB">appletV9.0aua.jar</a><br />

</div>
</div>
</div><br />
<u><b>Januar 2013:</b></u><br />
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<br />
<b><font color="RED">(04.01.2013)</font></b><br />
(90atd) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4703&amp;d=1374863887"  title="Name:  appletV9.0atd.jar
Hits: 555
Größe:  1,00 MB">appletV9.0atd.jar</a><br />
(90ass) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4702&amp;d=1374863870"  title="Name:  appletV9.0ass.jar
Hits: 564
Größe:  1,00 MB">appletV9.0ass.jar</a><br />
(90ass) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4702&amp;d=1374863870"  title="Name:  appletV9.0ass.jar
Hits: 564
Größe:  1,00 MB">appletV9.0ass.jar</a><br />
<br />
<b><font color="RED">(07.01.2013)</font></b><br />
(90ate) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4704&amp;d=1374863904"  title="Name:  appletV9.0ate.jar
Hits: 625
Größe:  1,01 MB">appletV9.0ate.jar</a><br />
(90ate) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4704&amp;d=1374863904"  title="Name:  appletV9.0ate.jar
Hits: 625
Größe:  1,01 MB">appletV9.0ate.jar</a><br />
(90ate) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4704&amp;d=1374863904"  title="Name:  appletV9.0ate.jar
Hits: 625
Größe:  1,01 MB">appletV9.0ate.jar</a><br />
<br />
<b><font color="RED">(17.01.2013)</font></b><br />
(90ato) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4705&amp;d=1374863943"  title="Name:  appletV9.0ato.jar
Hits: 570
Größe:  1,02 MB">appletV9.0ato.jar</a><br />
(90ato) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4705&amp;d=1374863943"  title="Name:  appletV9.0ato.jar
Hits: 570
Größe:  1,02 MB">appletV9.0ato.jar</a><br />
(90ato) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4705&amp;d=1374863943"  title="Name:  appletV9.0ato.jar
Hits: 570
Größe:  1,02 MB">appletV9.0ato.jar</a><br />
<br />
<b><font color="RED">(26.01.2013)</font></b><br />
(90ats) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4706&amp;d=1374863969"  title="Name:  appletV9.0ats.jar
Hits: 742
Größe:  1,02 MB">appletV9.0ats.jar</a><br />
(90ats) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4706&amp;d=1374863969"  title="Name:  appletV9.0ats.jar
Hits: 742
Größe:  1,02 MB">appletV9.0ats.jar</a><br />
(90ats) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4706&amp;d=1374863969"  title="Name:  appletV9.0ats.jar
Hits: 742
Größe:  1,02 MB">appletV9.0ats.jar</a><br />
<br />
<b><font color="RED">(28.01.2013)</font></b><br />
(90att) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4707&amp;d=1374863999"  title="Name:  appletV9.0att.jar
Hits: 556
Größe:  1,02 MB">appletV9.0att.jar</a><br />
(90ats) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4706&amp;d=1374863969"  title="Name:  appletV9.0ats.jar
Hits: 742
Größe:  1,02 MB">appletV9.0ats.jar</a><br />
(90ats) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4706&amp;d=1374863969"  title="Name:  appletV9.0ats.jar
Hits: 742
Größe:  1,02 MB">appletV9.0ats.jar</a><br />
<br />
<b><font color="RED">(30.01.2013)</font></b><br />
(90atv) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4708&amp;d=1374864017"  title="Name:  appletV9.0atv.jar
Hits: 589
Größe:  1,02 MB">appletV9.0atv.jar</a><br />
(90ats) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4706&amp;d=1374863969"  title="Name:  appletV9.0ats.jar
Hits: 742
Größe:  1,02 MB">appletV9.0ats.jar</a><br />
(90ats) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4706&amp;d=1374863969"  title="Name:  appletV9.0ats.jar
Hits: 742
Größe:  1,02 MB">appletV9.0ats.jar</a><br />
<br />
<b><font color="RED">(31.01.2013)</font></b><br />
(90atw) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4709&amp;d=1374864044"  title="Name:  appletV9.0atw.jar
Hits: 556
Größe:  1,02 MB">appletV9.0atw.jar</a><br />
(90atw) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4709&amp;d=1374864044"  title="Name:  appletV9.0atw.jar
Hits: 556
Größe:  1,02 MB">appletV9.0atw.jar</a><br />
(90atw) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4709&amp;d=1374864044"  title="Name:  appletV9.0atw.jar
Hits: 556
Größe:  1,02 MB">appletV9.0atw.jar</a><br />

</div>
</div>
</div><br />
<u><b>Dezember 2012:</b></u><br />
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<br />
<b><font color="RED">(04.12.2012)</font></b><br />
(90asc) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4696&amp;d=1374863748"  title="Name:  appletV9.0asc.jar
Hits: 540
Größe:  1.009,1 KB">appletV9.0asc.jar</a><br />
(90asc) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4696&amp;d=1374863748"  title="Name:  appletV9.0asc.jar
Hits: 540
Größe:  1.009,1 KB">appletV9.0asc.jar</a><br />
(90asc) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4696&amp;d=1374863748"  title="Name:  appletV9.0asc.jar
Hits: 540
Größe:  1.009,1 KB">appletV9.0asc.jar</a><br />
<br />
<b><font color="RED">(06.12.2012)</font></b><br />
(90ase) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4697&amp;d=1374863773"  title="Name:  appletV9.0ase.jar
Hits: 631
Größe:  1.011,1 KB">appletV9.0ase.jar</a><br />
(90ase) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4697&amp;d=1374863773"  title="Name:  appletV9.0ase.jar
Hits: 631
Größe:  1.011,1 KB">appletV9.0ase.jar</a><br />
(90ase) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4697&amp;d=1374863773"  title="Name:  appletV9.0ase.jar
Hits: 631
Größe:  1.011,1 KB">appletV9.0ase.jar</a><br />
<br />
<b><font color="RED">(07.12.2012)</font></b><br />
(90asf) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4698&amp;d=1374863790"  title="Name:  appletV9.0asf.jar
Hits: 556
Größe:  1.011,4 KB">appletV9.0asf.jar</a><br />
(90asf) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4698&amp;d=1374863790"  title="Name:  appletV9.0asf.jar
Hits: 556
Größe:  1.011,4 KB">appletV9.0asf.jar</a><br />
(90asf) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4698&amp;d=1374863790"  title="Name:  appletV9.0asf.jar
Hits: 556
Größe:  1.011,4 KB">appletV9.0asf.jar</a><br />
<br />
<b><font color="RED">(19.12.2012)</font></b><br />
(90ask) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4699&amp;d=1374863806"  title="Name:  appletV9.0ask.jar
Hits: 553
Größe:  1.016,1 KB">appletV9.0ask.jar</a><br />
(90asf) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4698&amp;d=1374863790"  title="Name:  appletV9.0asf.jar
Hits: 556
Größe:  1.011,4 KB">appletV9.0asf.jar</a><br />
(90ask) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4699&amp;d=1374863806"  title="Name:  appletV9.0ask.jar
Hits: 553
Größe:  1.016,1 KB">appletV9.0ask.jar</a><br />
<br />
<b><font color="RED">(20.12.2012)</font></b><br />
(90asn) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4700&amp;d=1374863823"  title="Name:  appletV9.0asn.jar
Hits: 612
Größe:  1.017,7 KB">appletV9.0asn.jar</a><br />
(90asf) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4698&amp;d=1374863790"  title="Name:  appletV9.0asf.jar
Hits: 556
Größe:  1.011,4 KB">appletV9.0asf.jar</a><br />
(90asn) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4700&amp;d=1374863823"  title="Name:  appletV9.0asn.jar
Hits: 612
Größe:  1.017,7 KB">appletV9.0asn.jar</a><br />
<br />
<b><font color="RED">(21.12.2012)</font></b><br />
(90aso) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4701&amp;d=1374863853"  title="Name:  appletV9.0aso.jar
Hits: 534
Größe:  1.023,3 KB">appletV9.0aso.jar</a><br />
(90aso) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4701&amp;d=1374863853"  title="Name:  appletV9.0aso.jar
Hits: 534
Größe:  1.023,3 KB">appletV9.0aso.jar</a><br />
(90aso) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4701&amp;d=1374863853"  title="Name:  appletV9.0aso.jar
Hits: 534
Größe:  1.023,3 KB">appletV9.0aso.jar</a><br />

</div>
</div>
</div><br />
<u><b>November 2012:</b></u><br />
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<br />
<b><font color="RED">(06.11.2012)</font></b><br />
(90art) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4693&amp;d=1374863678"  title="Name:  appletV9.0art.jar
Hits: 575
Größe:  999,9 KB">appletV9.0art.jar</a><br />
(90are) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4691&amp;d=1374863640"  title="Name:  appletV9.0are.jar
Hits: 610
Größe:  923,2 KB">appletV9.0are.jar</a><br />
(90are) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4691&amp;d=1374863640"  title="Name:  appletV9.0are.jar
Hits: 610
Größe:  923,2 KB">appletV9.0are.jar</a><br />
<br />
<b><font color="RED">(09.11.2012)</font></b><br />
(90aru) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4694&amp;d=1374863705"  title="Name:  appletV9.0aru.jar
Hits: 572
Größe:  1.001,2 KB">appletV9.0aru.jar</a><br />
(90are) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4691&amp;d=1374863640"  title="Name:  appletV9.0are.jar
Hits: 610
Größe:  923,2 KB">appletV9.0are.jar</a><br />
(90are) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4691&amp;d=1374863640"  title="Name:  appletV9.0are.jar
Hits: 610
Größe:  923,2 KB">appletV9.0are.jar</a><br />
<br />
<b><font color="RED">(30.11.2012)</font></b><br />
(90asb) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4695&amp;d=1374863721"  title="Name:  appletV9.0asb.jar
Hits: 555
Größe:  1.009,0 KB">appletV9.0asb.jar</a><br />
(90asb) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4695&amp;d=1374863721"  title="Name:  appletV9.0asb.jar
Hits: 555
Größe:  1.009,0 KB">appletV9.0asb.jar</a><br />
(90asb) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4695&amp;d=1374863721"  title="Name:  appletV9.0asb.jar
Hits: 555
Größe:  1.009,0 KB">appletV9.0asb.jar</a><br />

</div>
</div>
</div><br />
<u><b>Oktober 2012:</b></u><br />
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<br />
<b><font color="RED">(04.10.2012)</font></b><br />
(90aqv) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4688&amp;d=1374861779"  title="Name:  appletV9.0aqv.jar
Hits: 520
Größe:  908,0 KB">appletV9.0aqv.jar</a><br />
(90aps) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4687&amp;d=1374861765"  title="Name:  appletV9.0aqs.jar
Hits: 532
Größe:  907,9 KB">appletV9.0aqs.jar</a><br />
(90aps) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4687&amp;d=1374861765"  title="Name:  appletV9.0aqs.jar
Hits: 532
Größe:  907,9 KB">appletV9.0aqs.jar</a><br />
<br />
<b><font color="RED">(09.10.2012)</font></b><br />
(90aqw) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4689&amp;d=1374861794"  title="Name:  appletV9.0aqw.jar
Hits: 655
Größe:  913,8 KB">appletV9.0aqw.jar</a><br />
(90apw) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4689&amp;d=1374861794"  title="Name:  appletV9.0aqw.jar
Hits: 655
Größe:  913,8 KB">appletV9.0aqw.jar</a><br />
(90apw) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4689&amp;d=1374861794"  title="Name:  appletV9.0aqw.jar
Hits: 655
Größe:  913,8 KB">appletV9.0aqw.jar</a><br />
<br />
<b><font color="RED">(10.10.2012)</font></b><br />
(90ara) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4690&amp;d=1374863625"  title="Name:  appletV9.0ara.jar
Hits: 565
Größe:  915,2 KB">appletV9.0ara.jar</a><br />
(90apw) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4689&amp;d=1374861794"  title="Name:  appletV9.0aqw.jar
Hits: 655
Größe:  913,8 KB">appletV9.0aqw.jar</a><br />
(90apw) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4689&amp;d=1374861794"  title="Name:  appletV9.0aqw.jar
Hits: 655
Größe:  913,8 KB">appletV9.0aqw.jar</a><br />
<br />
<b><font color="RED">(22.10.2012)</font></b><br />
(90are) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4691&amp;d=1374863640"  title="Name:  appletV9.0are.jar
Hits: 610
Größe:  923,2 KB">appletV9.0are.jar</a><br />
(90are) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4691&amp;d=1374863640"  title="Name:  appletV9.0are.jar
Hits: 610
Größe:  923,2 KB">appletV9.0are.jar</a><br />
(90are) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4691&amp;d=1374863640"  title="Name:  appletV9.0are.jar
Hits: 610
Größe:  923,2 KB">appletV9.0are.jar</a><br />
<br />
<b><font color="RED">(30.10.2012)</font></b><br />
(90arp) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4692&amp;d=1374863661"  title="Name:  appletV9.0arp.jar
Hits: 617
Größe:  931,2 KB">appletV9.0arp.jar</a><br />
(90are) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4691&amp;d=1374863640"  title="Name:  appletV9.0are.jar
Hits: 610
Größe:  923,2 KB">appletV9.0are.jar</a><br />
(90are) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4691&amp;d=1374863640"  title="Name:  appletV9.0are.jar
Hits: 610
Größe:  923,2 KB">appletV9.0are.jar</a><br />

</div>
</div>
</div><br />
<u><b>September 2012:</b></u><br />
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<br />
<b><font color="RED">(05.09.2012)</font></b><br />
(90aph) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4676&amp;d=1374861314"  title="Name:  appletV9.0aph.jar
Hits: 548
Größe:  878,2 KB">appletV9.0aph.jar</a><br />
(90aoz) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4672&amp;d=1374861152"  title="Name:  appletV9.0aoz.jar
Hits: 533
Größe:  876,4 KB">appletV9.0aoz.jar</a><br />
(90aoz) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4672&amp;d=1374861152"  title="Name:  appletV9.0aoz.jar
Hits: 533
Größe:  876,4 KB">appletV9.0aoz.jar</a><br />
<br />
<b><font color="RED">(06.09.2012)</font></b><br />
(90apk) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4677&amp;d=1374861327"  title="Name:  appletV9.0apk.jar
Hits: 561
Größe:  878,8 KB">appletV9.0apk.jar</a><br />
(90aoh) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4676&amp;d=1374861314"  title="Name:  appletV9.0aph.jar
Hits: 548
Größe:  878,2 KB">appletV9.0aph.jar</a><br />
(90aoh) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4676&amp;d=1374861314"  title="Name:  appletV9.0aph.jar
Hits: 548
Größe:  878,2 KB">appletV9.0aph.jar</a><br />
<br />
<b><font color="RED">(10.09.2012)</font></b><br />
(90apl) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4678&amp;d=1374861342"  title="Name:  appletV9.0apl.jar
Hits: 577
Größe:  878,0 KB">appletV9.0apl.jar</a><br />
(90aoh) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4676&amp;d=1374861314"  title="Name:  appletV9.0aph.jar
Hits: 548
Größe:  878,2 KB">appletV9.0aph.jar</a><br />
(90aoh) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4676&amp;d=1374861314"  title="Name:  appletV9.0aph.jar
Hits: 548
Größe:  878,2 KB">appletV9.0aph.jar</a><br />
<br />
<b><font color="RED">(14.09.2012)</font></b><br />
(90apo) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4679&amp;d=1374861356"  title="Name:  appletV9.0apo.jar
Hits: 561
Größe:  882,7 KB">appletV9.0apo.jar</a><br />
(90aoh) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4676&amp;d=1374861314"  title="Name:  appletV9.0aph.jar
Hits: 548
Größe:  878,2 KB">appletV9.0aph.jar</a><br />
(90aoh) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4676&amp;d=1374861314"  title="Name:  appletV9.0aph.jar
Hits: 548
Größe:  878,2 KB">appletV9.0aph.jar</a><br />
<br />
<b><font color="RED">(15.09.2012)</font></b><br />
(90aps) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4680&amp;d=1374861370"  title="Name:  appletV9.0aps.jar
Hits: 547
Größe:  883,0 KB">appletV9.0aps.jar</a><br />
(90aps) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4680&amp;d=1374861370"  title="Name:  appletV9.0aps.jar
Hits: 547
Größe:  883,0 KB">appletV9.0aps.jar</a><br />
(90aps) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4680&amp;d=1374861370"  title="Name:  appletV9.0aps.jar
Hits: 547
Größe:  883,0 KB">appletV9.0aps.jar</a><br />
<br />
<b><font color="RED">(18.09.2012)</font></b><br />
(90apw) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4682&amp;d=1374861398"  title="Name:  appletV9.0apw.jar
Hits: 513
Größe:  883,1 KB">appletV9.0apw.jar</a><br />
(90apu) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4681&amp;d=1374861384"  title="Name:  appletV9.0apu.jar
Hits: 535
Größe:  883,6 KB">appletV9.0apu.jar</a><br />
(90apu) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4681&amp;d=1374861384"  title="Name:  appletV9.0apu.jar
Hits: 535
Größe:  883,6 KB">appletV9.0apu.jar</a><br />
<br />
<b><font color="RED">(20.09.2012)</font></b><br />
(90aqc) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4683&amp;d=1374861708"  title="Name:  appletV9.0aqc.jar
Hits: 558
Größe:  890,1 KB">appletV9.0aqc.jar</a><br />
(90apc) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4683&amp;d=1374861708"  title="Name:  appletV9.0aqc.jar
Hits: 558
Größe:  890,1 KB">appletV9.0aqc.jar</a><br />
(90apc) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4683&amp;d=1374861708"  title="Name:  appletV9.0aqc.jar
Hits: 558
Größe:  890,1 KB">appletV9.0aqc.jar</a><br />
<br />
<b><font color="RED">(21.09.2012)</font></b><br />
(90aqh) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4684&amp;d=1374861722"  title="Name:  appletV9.0aqh.jar
Hits: 556
Größe:  890,6 KB">appletV9.0aqh.jar</a><br />
(90apc) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4683&amp;d=1374861708"  title="Name:  appletV9.0aqc.jar
Hits: 558
Größe:  890,1 KB">appletV9.0aqc.jar</a><br />
(90apc) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4683&amp;d=1374861708"  title="Name:  appletV9.0aqc.jar
Hits: 558
Größe:  890,1 KB">appletV9.0aqc.jar</a><br />
<br />
<b><font color="RED">(25.09.2012)</font></b><br />
(90aqj) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4685&amp;d=1374861736"  title="Name:  appletV9.0aqj.jar
Hits: 550
Größe:  899,0 KB">appletV9.0aqj.jar</a><br />
(90apj) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4685&amp;d=1374861736"  title="Name:  appletV9.0aqj.jar
Hits: 550
Größe:  899,0 KB">appletV9.0aqj.jar</a><br />
(90apj) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4685&amp;d=1374861736"  title="Name:  appletV9.0aqj.jar
Hits: 550
Größe:  899,0 KB">appletV9.0aqj.jar</a><br />
<br />
<b><font color="RED">(26.09.2012)</font></b><br />
(90aqm) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4686&amp;d=1374861751"  title="Name:  appletV9.0aqm.jar
Hits: 566
Größe:  900,9 KB">appletV9.0aqm.jar</a><br />
(90apj) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4685&amp;d=1374861736"  title="Name:  appletV9.0aqj.jar
Hits: 550
Größe:  899,0 KB">appletV9.0aqj.jar</a><br />
(90apj) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4685&amp;d=1374861736"  title="Name:  appletV9.0aqj.jar
Hits: 550
Größe:  899,0 KB">appletV9.0aqj.jar</a><br />

</div>
</div>
</div><br />
<u><b>August 2012:</b></u><br />
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<br />
<b><font color="RED">(03.08.2012)</font></b><br />
(90aoo) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4668&amp;d=1374861096"  title="Name:  appletV9.0aoo.jar
Hits: 523
Größe:  863,7 KB">appletV9.0aoo.jar</a><br />
(90aon) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4667&amp;d=1374861082"  title="Name:  appletV9.0aon.jar
Hits: 528
Größe:  863,1 KB">appletV9.0aon.jar</a><br />
(90anw) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4666&amp;d=1374860812"  title="Name:  appletV9.0anw.jar
Hits: 544
Größe:  853,0 KB">appletV9.0anw.jar</a><br />
<br />
<b><font color="RED">(11.08.2012)</font></b><br />
(90aor) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4669&amp;d=1374861111"  title="Name:  appletV9.0aor.jar
Hits: 577
Größe:  864,4 KB">appletV9.0aor.jar</a><br />
(90aor) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4669&amp;d=1374861111"  title="Name:  appletV9.0aor.jar
Hits: 577
Größe:  864,4 KB">appletV9.0aor.jar</a><br />
(90aor) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4669&amp;d=1374861111"  title="Name:  appletV9.0aor.jar
Hits: 577
Größe:  864,4 KB">appletV9.0aor.jar</a><br />
<br />
<b><font color="RED">(18.08.2012)</font></b><br />
(90aou) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4670&amp;d=1374861125"  title="Name:  appletV9.0aou.jar
Hits: 564
Größe:  867,6 KB">appletV9.0aou.jar</a><br />
(90aor) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4669&amp;d=1374861111"  title="Name:  appletV9.0aor.jar
Hits: 577
Größe:  864,4 KB">appletV9.0aor.jar</a><br />
(90aor) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4669&amp;d=1374861111"  title="Name:  appletV9.0aor.jar
Hits: 577
Größe:  864,4 KB">appletV9.0aor.jar</a><br />
<br />
<b><font color="RED">(20.08.2012)</font></b><br />
(90aov) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4671&amp;d=1374861138"  title="Name:  appletV9.0aov.jar
Hits: 557
Größe:  868,5 KB">appletV9.0aov.jar</a><br />
(90aor) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4669&amp;d=1374861111"  title="Name:  appletV9.0aor.jar
Hits: 577
Größe:  864,4 KB">appletV9.0aor.jar</a><br />
(90aor) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4669&amp;d=1374861111"  title="Name:  appletV9.0aor.jar
Hits: 577
Größe:  864,4 KB">appletV9.0aor.jar</a><br />
<br />
<b><font color="RED">(22.08.2012)</font></b><br />
(90aoz) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4672&amp;d=1374861152"  title="Name:  appletV9.0aoz.jar
Hits: 533
Größe:  876,4 KB">appletV9.0aoz.jar</a><br />
(90aoz) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4672&amp;d=1374861152"  title="Name:  appletV9.0aoz.jar
Hits: 533
Größe:  876,4 KB">appletV9.0aoz.jar</a><br />
(90aoz) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4672&amp;d=1374861152"  title="Name:  appletV9.0aoz.jar
Hits: 533
Größe:  876,4 KB">appletV9.0aoz.jar</a><br />
<br />
<b><font color="RED">(23.08.2012)</font></b><br />
(90apb) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4673&amp;d=1374861272"  title="Name:  appletV9.0apb.jar
Hits: 579
Größe:  875,3 KB">appletV9.0apb.jar</a><br />
(90aoz) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4672&amp;d=1374861152"  title="Name:  appletV9.0aoz.jar
Hits: 533
Größe:  876,4 KB">appletV9.0aoz.jar</a><br />
(90aoz) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4672&amp;d=1374861152"  title="Name:  appletV9.0aoz.jar
Hits: 533
Größe:  876,4 KB">appletV9.0aoz.jar</a><br />
<br />
<b><font color="RED">(24.08.2012)</font></b><br />
(90apc) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4674&amp;d=1374861286"  title="Name:  appletV9.0apc.jar
Hits: 531
Größe:  875,7 KB">appletV9.0apc.jar</a><br />
(90aoz) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4672&amp;d=1374861152"  title="Name:  appletV9.0aoz.jar
Hits: 533
Größe:  876,4 KB">appletV9.0aoz.jar</a><br />
(90aoz) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4672&amp;d=1374861152"  title="Name:  appletV9.0aoz.jar
Hits: 533
Größe:  876,4 KB">appletV9.0aoz.jar</a><br />
<br />
<b><font color="RED">(31.08.2012)</font></b><br />
(90apd) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4675&amp;d=1374861300"  title="Name:  appletV9.0apd.jar
Hits: 561
Größe:  875,3 KB">appletV9.0apd.jar</a><br />
(90aoz) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4672&amp;d=1374861152"  title="Name:  appletV9.0aoz.jar
Hits: 533
Größe:  876,4 KB">appletV9.0aoz.jar</a><br />
(90aoz) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4672&amp;d=1374861152"  title="Name:  appletV9.0aoz.jar
Hits: 533
Größe:  876,4 KB">appletV9.0aoz.jar</a><br />

</div>
</div>
</div><br />
<u><b>Juli 2012:</b></u><br />
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<br />
<b><font color="RED">(04.07.2012)</font></b><br />
(90ant) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4664&amp;d=1374860784"  title="Name:  appletV9.0ant.jar
Hits: 583
Größe:  852,1 KB">appletV9.0ant.jar</a><br />
(90anp) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4662&amp;d=1374860750"  title="Name:  appletV9.0anp.jar
Hits: 629
Größe:  850,1 KB">appletV9.0anp.jar</a><br />
(90anr) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4659&amp;d=1374860708"  title="Name:  appletV9.0ani.jar
Hits: 549
Größe:  842,3 KB">appletV9.0ani.jar</a><br />
<br />
<b><font color="RED">(09.07.2012)</font></b><br />
(90anv) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4665&amp;d=1374860798"  title="Name:  appletV9.0anv.jar
Hits: 559
Größe:  852,2 KB">appletV9.0anv.jar</a><br />
(90anv) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4665&amp;d=1374860798"  title="Name:  appletV9.0anv.jar
Hits: 559
Größe:  852,2 KB">appletV9.0anv.jar</a><br />
(90anv) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4665&amp;d=1374860798"  title="Name:  appletV9.0anv.jar
Hits: 559
Größe:  852,2 KB">appletV9.0anv.jar</a><br />
<br />
<b><font color="RED">(12.07.2012)</font></b><br />
(90anw) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4666&amp;d=1374860812"  title="Name:  appletV9.0anw.jar
Hits: 544
Größe:  853,0 KB">appletV9.0anw.jar</a><br />
(90anw) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4666&amp;d=1374860812"  title="Name:  appletV9.0anw.jar
Hits: 544
Größe:  853,0 KB">appletV9.0anw.jar</a><br />
(90anw) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4666&amp;d=1374860812"  title="Name:  appletV9.0anw.jar
Hits: 544
Größe:  853,0 KB">appletV9.0anw.jar</a><br />

</div>
</div>
</div><br />
<u><b>Juni 2012:</b></u><br />
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<br />
<b><font color="RED">(01.06.2012)</font></b><br />
(90amz) Knuddels.DE -&gt; appletV9.0amz.jar<br />
(90amz) Knuddels.AT -&gt; appletV9.0amz.jar<br />
(90and) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4655&amp;d=1374860653"  title="Name:  appletV9.0and.jar
Hits: 568
Größe:  841,4 KB">appletV9.0and.jar</a><br />
<br />
<b><font color="RED">(04.06.2012)</font></b><br />
(90anf) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4656&amp;d=1374860667"  title="Name:  appletV9.0anf.jar
Hits: 546
Größe:  841,3 KB">appletV9.0anf.jar</a><br />
(90anf) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4656&amp;d=1374860667"  title="Name:  appletV9.0anf.jar
Hits: 546
Größe:  841,3 KB">appletV9.0anf.jar</a><br />
(90anf) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4656&amp;d=1374860667"  title="Name:  appletV9.0anf.jar
Hits: 546
Größe:  841,3 KB">appletV9.0anf.jar</a><br />
<br />
<b><font color="RED">(05.06.2012)</font></b><br />
(90ang) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4657&amp;d=1374860681"  title="Name:  appletV9.0ang.jar
Hits: 567
Größe:  841,0 KB">appletV9.0ang.jar</a><br />
(90ang) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4657&amp;d=1374860681"  title="Name:  appletV9.0ang.jar
Hits: 567
Größe:  841,0 KB">appletV9.0ang.jar</a><br />
(90anf) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4656&amp;d=1374860667"  title="Name:  appletV9.0anf.jar
Hits: 546
Größe:  841,3 KB">appletV9.0anf.jar</a><br />
<br />
<b><font color="RED">(06.06.2012)</font></b><br />
(90anh) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4658&amp;d=1374860694"  title="Name:  appletV9.0anh.jar
Hits: 494
Größe:  841,6 KB">appletV9.0anh.jar</a><br />
(90ang) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4657&amp;d=1374860681"  title="Name:  appletV9.0ang.jar
Hits: 567
Größe:  841,0 KB">appletV9.0ang.jar</a><br />
(90anf) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4656&amp;d=1374860667"  title="Name:  appletV9.0anf.jar
Hits: 546
Größe:  841,3 KB">appletV9.0anf.jar</a><br />
<br />
<b><font color="RED">(12.06.2012)</font></b><br />
(90ani) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4659&amp;d=1374860708"  title="Name:  appletV9.0ani.jar
Hits: 549
Größe:  842,3 KB">appletV9.0ani.jar</a><br />
(90ani) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4659&amp;d=1374860708"  title="Name:  appletV9.0ani.jar
Hits: 549
Größe:  842,3 KB">appletV9.0ani.jar</a><br />
(90ani) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4659&amp;d=1374860708"  title="Name:  appletV9.0ani.jar
Hits: 549
Größe:  842,3 KB">appletV9.0ani.jar</a><br />
<br />
<b><font color="RED">(13.06.2012)</font></b><br />
(90ank) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4660&amp;d=1374860721"  title="Name:  appletV9.0ank.jar
Hits: 578
Größe:  843,4 KB">appletV9.0ank.jar</a><br />
(90ank) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4660&amp;d=1374860721"  title="Name:  appletV9.0ank.jar
Hits: 578
Größe:  843,4 KB">appletV9.0ank.jar</a><br />
(90ani) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4659&amp;d=1374860708"  title="Name:  appletV9.0ani.jar
Hits: 549
Größe:  842,3 KB">appletV9.0ani.jar</a><br />
<br />
<b><font color="RED">(21.06.2012)</font></b><br />
(90ann) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4661&amp;d=1374860736"  title="Name:  appletV9.0ann.jar
Hits: 564
Größe:  847,4 KB">appletV9.0ann.jar</a><br />
(90ank) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4660&amp;d=1374860721"  title="Name:  appletV9.0ank.jar
Hits: 578
Größe:  843,4 KB">appletV9.0ank.jar</a><br />
(90ani) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4659&amp;d=1374860708"  title="Name:  appletV9.0ani.jar
Hits: 549
Größe:  842,3 KB">appletV9.0ani.jar</a><br />
<br />
<b><font color="RED">(25.06.2012)</font></b><br />
(90anp) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4662&amp;d=1374860750"  title="Name:  appletV9.0anp.jar
Hits: 629
Größe:  850,1 KB">appletV9.0anp.jar</a><br />
(90anp) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4662&amp;d=1374860750"  title="Name:  appletV9.0anp.jar
Hits: 629
Größe:  850,1 KB">appletV9.0anp.jar</a><br />
(90ani) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4659&amp;d=1374860708"  title="Name:  appletV9.0ani.jar
Hits: 549
Größe:  842,3 KB">appletV9.0ani.jar</a><br />
<br />
<b><font color="RED">(29.06.2012)</font></b><br />
(90anp) Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4663&amp;d=1374860766"  title="Name:  appletV9.0anr.jar
Hits: 522
Größe:  849,8 KB">appletV9.0anr.jar</a><br />
(90anp) Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4662&amp;d=1374860750"  title="Name:  appletV9.0anp.jar
Hits: 629
Größe:  850,1 KB">appletV9.0anp.jar</a><br />
(90anr) Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=4659&amp;d=1374860708"  title="Name:  appletV9.0ani.jar
Hits: 549
Größe:  842,3 KB">appletV9.0ani.jar</a><br />

</div>
</div>
</div><br />
<b><font color="RED">Die unten stehenden Applets gehen nicht mehr und das wird sich auch nicht ändern.</font></b><br />
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<br />
<u><b>Mai 2012:</b></u><br />
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<br />
<b><font color="RED">(01.05.2012)</font></b><br />
Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=588&amp;d=1351620506"  title="Name:  appletV9.0amm.jar
Hits: 621
Größe:  818,3 KB">appletV9.0amm.jar</a><br />
Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=585&amp;d=1351620468"  title="Name:  appletV9.0amc.jar
Hits: 613
Größe:  811,0 KB">appletV9.0amc.jar</a><br />
Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=585&amp;d=1351620468"  title="Name:  appletV9.0amc.jar
Hits: 613
Größe:  811,0 KB">appletV9.0amc.jar</a><br />
<br />
<b><font color="RED">(05.05.2012)</font></b><br />
Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=589&amp;d=1351620519"  title="Name:  appletV9.0amp.jar
Hits: 561
Größe:  819,6 KB">appletV9.0amp.jar</a><br />
Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=585&amp;d=1351620468"  title="Name:  appletV9.0amc.jar
Hits: 613
Größe:  811,0 KB">appletV9.0amc.jar</a><br />
Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=585&amp;d=1351620468"  title="Name:  appletV9.0amc.jar
Hits: 613
Größe:  811,0 KB">appletV9.0amc.jar</a><br />
<br />
<b><font color="RED">(08.05.2012)</font></b><br />
Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=590&amp;d=1351620533"  title="Name:  appletV9.0amq.jar
Hits: 612
Größe:  819,1 KB">appletV9.0amq.jar</a><br />
Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=591&amp;d=1351620546"  title="Name:  appletV9.0ams.jar
Hits: 599
Größe:  820,3 KB">appletV9.0ams.jar</a><br />
Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=585&amp;d=1351620468"  title="Name:  appletV9.0amc.jar
Hits: 613
Größe:  811,0 KB">appletV9.0amc.jar</a><br />
<br />
<b><font color="RED">(09.05.2012)</font></b><br />
Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=592&amp;d=1351620565"  title="Name:  appletV9.0amt.jar
Hits: 572
Größe:  819,7 KB">appletV9.0amt.jar</a><br />
Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=592&amp;d=1351620565"  title="Name:  appletV9.0amt.jar
Hits: 572
Größe:  819,7 KB">appletV9.0amt.jar</a><br />
Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=592&amp;d=1351620565"  title="Name:  appletV9.0amt.jar
Hits: 572
Größe:  819,7 KB">appletV9.0amt.jar</a><br />
<br />
<b><font color="RED">(12.05.2012)</font></b><br />
Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=592&amp;d=1351620565"  title="Name:  appletV9.0amt.jar
Hits: 572
Größe:  819,7 KB">appletV9.0amt.jar</a><br />
Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=593&amp;d=1351620590"  title="Name:  appletV9.0amu.jar
Hits: 605
Größe:  819,9 KB">appletV9.0amu.jar</a><br />
Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=592&amp;d=1351620565"  title="Name:  appletV9.0amt.jar
Hits: 572
Größe:  819,7 KB">appletV9.0amt.jar</a><br />
<br />
<b><font color="RED">(15.05.2012)</font></b><br />
Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=593&amp;d=1351620590"  title="Name:  appletV9.0amu.jar
Hits: 605
Größe:  819,9 KB">appletV9.0amu.jar</a><br />
Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=593&amp;d=1351620590"  title="Name:  appletV9.0amu.jar
Hits: 605
Größe:  819,9 KB">appletV9.0amu.jar</a><br />
Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=593&amp;d=1351620590"  title="Name:  appletV9.0amu.jar
Hits: 605
Größe:  819,9 KB">appletV9.0amu.jar</a><br />
<br />
<b><font color="RED">(23.05.2012)</font></b><br />
Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=594&amp;d=1351620613"  title="Name:  appletV9.0amx.jar
Hits: 570
Größe:  823,5 KB">appletV9.0amx.jar</a><br />
Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=594&amp;d=1351620613"  title="Name:  appletV9.0amx.jar
Hits: 570
Größe:  823,5 KB">appletV9.0amx.jar</a><br />
Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=594&amp;d=1351620613"  title="Name:  appletV9.0amx.jar
Hits: 570
Größe:  823,5 KB">appletV9.0amx.jar</a><br />
<br />
<b><font color="RED">(24.05.2012)</font></b><br />
Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=595&amp;d=1351620626"  title="Name:  appletV9.0amz.jar
Hits: 617
Größe:  824,1 KB">appletV9.0amz.jar</a><br />
Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=595&amp;d=1351620626"  title="Name:  appletV9.0amz.jar
Hits: 617
Größe:  824,1 KB">appletV9.0amz.jar</a><br />
Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=595&amp;d=1351620626"  title="Name:  appletV9.0amz.jar
Hits: 617
Größe:  824,1 KB">appletV9.0amz.jar</a><br />

</div>
</div>
</div><br />
<u><b>April 2012:</b></u><br />
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<br />
<b><font color="RED">(05.04.2012)</font></b><br />
Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=582&amp;d=1351620381"  title="Name:  appletV9.0alq.jar
Hits: 695
Größe:  756,0 KB">appletV9.0alq.jar</a><br />
Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=582&amp;d=1351620381"  title="Name:  appletV9.0alq.jar
Hits: 695
Größe:  756,0 KB">appletV9.0alq.jar</a><br />
Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=582&amp;d=1351620381"  title="Name:  appletV9.0alq.jar
Hits: 695
Größe:  756,0 KB">appletV9.0alq.jar</a><br />
<br />
<b><font color="RED">(13.04.2012)</font></b><br />
Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=583&amp;d=1351620394"  title="Name:  appletV9.0alw.jar
Hits: 618
Größe:  799,6 KB">appletV9.0alw.jar</a><br />
Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=583&amp;d=1351620394"  title="Name:  appletV9.0alw.jar
Hits: 618
Größe:  799,6 KB">appletV9.0alw.jar</a><br />
Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=582&amp;d=1351620381"  title="Name:  appletV9.0alq.jar
Hits: 695
Größe:  756,0 KB">appletV9.0alq.jar</a><br />
<br />
<b><font color="RED">(19.04.2012)</font></b><br />
Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=584&amp;d=1351620455"  title="Name:  appletV9.0ama.jar
Hits: 582
Größe:  808,4 KB">appletV9.0ama.jar</a><br />
Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=584&amp;d=1351620455"  title="Name:  appletV9.0ama.jar
Hits: 582
Größe:  808,4 KB">appletV9.0ama.jar</a><br />
Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=582&amp;d=1351620381"  title="Name:  appletV9.0alq.jar
Hits: 695
Größe:  756,0 KB">appletV9.0alq.jar</a><br />
<br />
<b><font color="RED">(26.04.2012)</font></b><br />
Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=586&amp;d=1351620481"  title="Name:  appletV9.0amd.jar
Hits: 626
Größe:  811,3 KB">appletV9.0amd.jar</a><br />
Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=585&amp;d=1351620468"  title="Name:  appletV9.0amc.jar
Hits: 613
Größe:  811,0 KB">appletV9.0amc.jar</a><br />
Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=585&amp;d=1351620468"  title="Name:  appletV9.0amc.jar
Hits: 613
Größe:  811,0 KB">appletV9.0amc.jar</a><br />
<br />
<b><font color="RED">(28.04.2012)</font></b><br />
Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=587&amp;d=1351620493"  title="Name:  appletV9.0amh.jar
Hits: 629
Größe:  813,0 KB">appletV9.0amh.jar</a><br />
Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=585&amp;d=1351620468"  title="Name:  appletV9.0amc.jar
Hits: 613
Größe:  811,0 KB">appletV9.0amc.jar</a><br />
Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=585&amp;d=1351620468"  title="Name:  appletV9.0amc.jar
Hits: 613
Größe:  811,0 KB">appletV9.0amc.jar</a><br />

</div>
</div>
</div><br />
<u><b>März 2012:</b></u><br />
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<br />
<b><font color="RED">(01.03.2012)</font></b><br />
Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=575&amp;d=1351619561"  title="Name:  appletV9.0ajz.jar
Hits: 616
Größe:  765,5 KB">appletV9.0ajz.jar</a><br />
Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=575&amp;d=1351619561"  title="Name:  appletV9.0ajz.jar
Hits: 616
Größe:  765,5 KB">appletV9.0ajz.jar</a><br />
Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=575&amp;d=1351619561"  title="Name:  appletV9.0ajz.jar
Hits: 616
Größe:  765,5 KB">appletV9.0ajz.jar</a><br />
<br />
<b><font color="RED">(12.03.2012)</font></b><br />
Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=577&amp;d=1351620261"  title="Name:  appletV9.0akh.jar
Hits: 625
Größe:  744,3 KB">appletV9.0akh.jar</a><br />
Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=577&amp;d=1351620261"  title="Name:  appletV9.0akh.jar
Hits: 625
Größe:  744,3 KB">appletV9.0akh.jar</a><br />
Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=577&amp;d=1351620261"  title="Name:  appletV9.0akh.jar
Hits: 625
Größe:  744,3 KB">appletV9.0akh.jar</a><br />
<br />
<b><font color="RED">(13.03.2012)</font></b><br />
Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=578&amp;d=1351620272"  title="Name:  appletV9.0akn.jar
Hits: 558
Größe:  745,5 KB">appletV9.0akn.jar</a><br />
Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=578&amp;d=1351620272"  title="Name:  appletV9.0akn.jar
Hits: 558
Größe:  745,5 KB">appletV9.0akn.jar</a><br />
Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=578&amp;d=1351620272"  title="Name:  appletV9.0akn.jar
Hits: 558
Größe:  745,5 KB">appletV9.0akn.jar</a><br />
<br />
<b><font color="RED">(23.03.2012)</font></b><br />
Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=579&amp;d=1351620284"  title="Name:  appletV9.0akr.jar
Hits: 572
Größe:  752,0 KB">appletV9.0akr.jar</a><br />
Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=578&amp;d=1351620272"  title="Name:  appletV9.0akn.jar
Hits: 558
Größe:  745,5 KB">appletV9.0akn.jar</a><br />
Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=578&amp;d=1351620272"  title="Name:  appletV9.0akn.jar
Hits: 558
Größe:  745,5 KB">appletV9.0akn.jar</a><br />
<br />
<b><font color="RED">(28.03.2012)</font></b><br />
Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=581&amp;d=1351620369"  title="Name:  appletV9.0ala.jar
Hits: 594
Größe:  752,6 KB">appletV9.0ala.jar</a><br />
Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=579&amp;d=1351620284"  title="Name:  appletV9.0akr.jar
Hits: 572
Größe:  752,0 KB">appletV9.0akr.jar</a><br />
Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=579&amp;d=1351620284"  title="Name:  appletV9.0akr.jar
Hits: 572
Größe:  752,0 KB">appletV9.0akr.jar</a><br />

</div>
</div>
</div><br />
<u><b>Februar 2012:</b></u><br />
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<br />
<b><font color="RED">(09.02.2012)</font></b><br />
Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=569&amp;d=1351619489"  title="Name:  appletV9.0ajp.jar
Hits: 527
Größe:  741,4 KB">appletV9.0ajp.jar</a><br />
Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=568&amp;d=1351619477"  title="Name:  appletV9.0ajl.jar
Hits: 631
Größe:  736,4 KB">appletV9.0ajl.jar</a><br />
Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=568&amp;d=1351619477"  title="Name:  appletV9.0ajl.jar
Hits: 631
Größe:  736,4 KB">appletV9.0ajl.jar</a><br />
<br />
<b><font color="RED">(10.02.2012)</font></b><br />
Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=570&amp;d=1351619500"  title="Name:  appletV9.0ajq.jar
Hits: 636
Größe:  744,3 KB">appletV9.0ajq.jar</a><br />
Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=570&amp;d=1351619500"  title="Name:  appletV9.0ajq.jar
Hits: 636
Größe:  744,3 KB">appletV9.0ajq.jar</a><br />
Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=570&amp;d=1351619500"  title="Name:  appletV9.0ajq.jar
Hits: 636
Größe:  744,3 KB">appletV9.0ajq.jar</a><br />
<br />
<b><font color="RED">(16.02.2012)</font></b><br />
Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=571&amp;d=1351619512"  title="Name:  appletV9.0ajs.jar
Hits: 563
Größe:  756,9 KB">appletV9.0ajs.jar</a><br />
Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=571&amp;d=1351619512"  title="Name:  appletV9.0ajs.jar
Hits: 563
Größe:  756,9 KB">appletV9.0ajs.jar</a><br />
Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=570&amp;d=1351619500"  title="Name:  appletV9.0ajq.jar
Hits: 636
Größe:  744,3 KB">appletV9.0ajq.jar</a><br />
<br />
<b><font color="RED">(17.02.2012)</font></b><br />
Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=572&amp;d=1351619525"  title="Name:  appletV9.0aju.jar
Hits: 579
Größe:  757,9 KB">appletV9.0aju.jar</a><br />
Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=572&amp;d=1351619525"  title="Name:  appletV9.0aju.jar
Hits: 579
Größe:  757,9 KB">appletV9.0aju.jar</a><br />
Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=572&amp;d=1351619525"  title="Name:  appletV9.0aju.jar
Hits: 579
Größe:  757,9 KB">appletV9.0aju.jar</a><br />
<br />
<b><font color="RED">(18.02.2012)</font></b><br />
Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=573&amp;d=1351619537"  title="Name:  appletV9.0ajv.jar
Hits: 577
Größe:  761,2 KB">appletV9.0ajv.jar</a><br />
Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=573&amp;d=1351619537"  title="Name:  appletV9.0ajv.jar
Hits: 577
Größe:  761,2 KB">appletV9.0ajv.jar</a><br />
Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=572&amp;d=1351619525"  title="Name:  appletV9.0aju.jar
Hits: 579
Größe:  757,9 KB">appletV9.0aju.jar</a><br />
<br />
<b><font color="RED">(20.02.2012)</font></b><br />
Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=574&amp;d=1351619549"  title="Name:  appletV9.0ajw.jar
Hits: 561
Größe:  760,9 KB">appletV9.0ajw.jar</a><br />
Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=574&amp;d=1351619549"  title="Name:  appletV9.0ajw.jar
Hits: 561
Größe:  760,9 KB">appletV9.0ajw.jar</a><br />
Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=572&amp;d=1351619525"  title="Name:  appletV9.0aju.jar
Hits: 579
Größe:  757,9 KB">appletV9.0aju.jar</a><br />
<br />
<b><font color="RED">(22.02.2012)</font></b><br />
Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=574&amp;d=1351619549"  title="Name:  appletV9.0ajw.jar
Hits: 561
Größe:  760,9 KB">appletV9.0ajw.jar</a><br />
Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=574&amp;d=1351619549"  title="Name:  appletV9.0ajw.jar
Hits: 561
Größe:  760,9 KB">appletV9.0ajw.jar</a><br />
Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=574&amp;d=1351619549"  title="Name:  appletV9.0ajw.jar
Hits: 561
Größe:  760,9 KB">appletV9.0ajw.jar</a><br />

</div>
</div>
</div><br />
<u><b>Januar 2012:</b></u><br />
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
<br />
<b><font color="RED">(21.01.2012)</font></b><br />
Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=565&amp;d=1351619443"  title="Name:  appletV9.0ajd.jar
Hits: 633
Größe:  720,8 KB">appletV9.0ajd.jar</a><br />
Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=565&amp;d=1351619443"  title="Name:  appletV9.0ajd.jar
Hits: 633
Größe:  720,8 KB">appletV9.0ajd.jar</a><br />
Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=565&amp;d=1351619443"  title="Name:  appletV9.0ajd.jar
Hits: 633
Größe:  720,8 KB">appletV9.0ajd.jar</a><br />
<br />
<b><font color="RED">(28.01.2012)</font></b><br />
Knuddels.DE -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=567&amp;d=1351619466"  title="Name:  appletV9.0ajg.jar
Hits: 566
Größe:  727,7 KB">appletV9.0ajg.jar</a><br />
Knuddels.AT -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=567&amp;d=1351619466"  title="Name:  appletV9.0ajg.jar
Hits: 566
Größe:  727,7 KB">appletV9.0ajg.jar</a><br />
Knuddels.CH -&gt; <a href="https://u-labs.de/forum/attachment.php?attachmentid=566&amp;d=1351619454"  title="Name:  appletV9.0ajf.jar
Hits: 581
Größe:  727,4 KB">appletV9.0ajf.jar</a><br />

</div>
</div>
</div>
</div>
</div>
</div><br />
Mfg DBZFreak</div>


	<div style="padding:10px">

	

	

	

	
		<fieldset class="fieldset">
			<legend>Angehängte Dateien</legend>
			<ul>
			<li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4908&amp;d=1376669341">appletV9.0ayr.jar</a> 
(1,11 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4655&amp;d=1374860653">appletV9.0and.jar</a> 
(841,4 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4656&amp;d=1374860667">appletV9.0anf.jar</a> 
(841,3 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=5936&amp;d=1387557218">appletV9.0bcg.jar</a> 
(1,11 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4657&amp;d=1374860681">appletV9.0ang.jar</a> 
(841,0 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4658&amp;d=1374860694">appletV9.0anh.jar</a> 
(841,6 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4659&amp;d=1374860708">appletV9.0ani.jar</a> 
(842,3 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4660&amp;d=1374860721">appletV9.0ank.jar</a> 
(843,4 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=565&amp;d=1351619443">appletV9.0ajd.jar</a> 
(720,8 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4661&amp;d=1374860736">appletV9.0ann.jar</a> 
(847,4 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=566&amp;d=1351619454">appletV9.0ajf.jar</a> 
(727,4 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4662&amp;d=1374860750">appletV9.0anp.jar</a> 
(850,1 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=567&amp;d=1351619466">appletV9.0ajg.jar</a> 
(727,7 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4663&amp;d=1374860766">appletV9.0anr.jar</a> 
(849,8 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=568&amp;d=1351619477">appletV9.0ajl.jar</a> 
(736,4 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4664&amp;d=1374860784">appletV9.0ant.jar</a> 
(852,1 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=569&amp;d=1351619489">appletV9.0ajp.jar</a> 
(741,4 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4665&amp;d=1374860798">appletV9.0anv.jar</a> 
(852,2 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=570&amp;d=1351619500">appletV9.0ajq.jar</a> 
(744,3 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4666&amp;d=1374860812">appletV9.0anw.jar</a> 
(853,0 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=571&amp;d=1351619512">appletV9.0ajs.jar</a> 
(756,9 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4667&amp;d=1374861082">appletV9.0aon.jar</a> 
(863,1 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=572&amp;d=1351619525">appletV9.0aju.jar</a> 
(757,9 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4668&amp;d=1374861096">appletV9.0aoo.jar</a> 
(863,7 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=573&amp;d=1351619537">appletV9.0ajv.jar</a> 
(761,2 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4669&amp;d=1374861111">appletV9.0aor.jar</a> 
(864,4 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=574&amp;d=1351619549">appletV9.0ajw.jar</a> 
(760,9 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4670&amp;d=1374861125">appletV9.0aou.jar</a> 
(867,6 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=575&amp;d=1351619561">appletV9.0ajz.jar</a> 
(765,5 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4671&amp;d=1374861138">appletV9.0aov.jar</a> 
(868,5 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4927&amp;d=1376999653">appletV9.0ayt.jar</a> 
(1,11 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4672&amp;d=1374861152">appletV9.0aoz.jar</a> 
(876,4 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=577&amp;d=1351620261">appletV9.0akh.jar</a> 
(744,3 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4673&amp;d=1374861272">appletV9.0apb.jar</a> 
(875,3 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=578&amp;d=1351620272">appletV9.0akn.jar</a> 
(745,5 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4674&amp;d=1374861286">appletV9.0apc.jar</a> 
(875,7 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=579&amp;d=1351620284">appletV9.0akr.jar</a> 
(752,0 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4675&amp;d=1374861300">appletV9.0apd.jar</a> 
(875,3 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4676&amp;d=1374861314">appletV9.0aph.jar</a> 
(878,2 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=581&amp;d=1351620369">appletV9.0ala.jar</a> 
(752,6 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4677&amp;d=1374861327">appletV9.0apk.jar</a> 
(878,8 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=582&amp;d=1351620381">appletV9.0alq.jar</a> 
(756,0 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4678&amp;d=1374861342">appletV9.0apl.jar</a> 
(878,0 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=583&amp;d=1351620394">appletV9.0alw.jar</a> 
(799,6 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4679&amp;d=1374861356">appletV9.0apo.jar</a> 
(882,7 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=584&amp;d=1351620455">appletV9.0ama.jar</a> 
(808,4 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4680&amp;d=1374861370">appletV9.0aps.jar</a> 
(883,0 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=585&amp;d=1351620468">appletV9.0amc.jar</a> 
(811,0 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4681&amp;d=1374861384">appletV9.0apu.jar</a> 
(883,6 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=586&amp;d=1351620481">appletV9.0amd.jar</a> 
(811,3 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4682&amp;d=1374861398">appletV9.0apw.jar</a> 
(883,1 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=587&amp;d=1351620493">appletV9.0amh.jar</a> 
(813,0 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4683&amp;d=1374861708">appletV9.0aqc.jar</a> 
(890,1 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=588&amp;d=1351620506">appletV9.0amm.jar</a> 
(818,3 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4684&amp;d=1374861722">appletV9.0aqh.jar</a> 
(890,6 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=589&amp;d=1351620519">appletV9.0amp.jar</a> 
(819,6 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4685&amp;d=1374861736">appletV9.0aqj.jar</a> 
(899,0 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=590&amp;d=1351620533">appletV9.0amq.jar</a> 
(819,1 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4686&amp;d=1374861751">appletV9.0aqm.jar</a> 
(900,9 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=591&amp;d=1351620546">appletV9.0ams.jar</a> 
(820,3 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4687&amp;d=1374861765">appletV9.0aqs.jar</a> 
(907,9 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=592&amp;d=1351620565">appletV9.0amt.jar</a> 
(819,7 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4688&amp;d=1374861779">appletV9.0aqv.jar</a> 
(908,0 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=593&amp;d=1351620590">appletV9.0amu.jar</a> 
(819,9 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4689&amp;d=1374861794">appletV9.0aqw.jar</a> 
(913,8 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=594&amp;d=1351620613">appletV9.0amx.jar</a> 
(823,5 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4690&amp;d=1374863625">appletV9.0ara.jar</a> 
(915,2 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=595&amp;d=1351620626">appletV9.0amz.jar</a> 
(824,1 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4691&amp;d=1374863640">appletV9.0are.jar</a> 
(923,2 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4692&amp;d=1374863661">appletV9.0arp.jar</a> 
(931,2 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4693&amp;d=1374863678">appletV9.0art.jar</a> 
(999,9 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4694&amp;d=1374863705">appletV9.0aru.jar</a> 
(1.001,2 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4695&amp;d=1374863721">appletV9.0asb.jar</a> 
(1.009,0 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4696&amp;d=1374863748">appletV9.0asc.jar</a> 
(1.009,1 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4697&amp;d=1374863773">appletV9.0ase.jar</a> 
(1.011,1 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4698&amp;d=1374863790">appletV9.0asf.jar</a> 
(1.011,4 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4699&amp;d=1374863806">appletV9.0ask.jar</a> 
(1.016,1 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4700&amp;d=1374863823">appletV9.0asn.jar</a> 
(1.017,7 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4701&amp;d=1374863853">appletV9.0aso.jar</a> 
(1.023,3 KB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4702&amp;d=1374863870">appletV9.0ass.jar</a> 
(1,00 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4703&amp;d=1374863887">appletV9.0atd.jar</a> 
(1,00 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4704&amp;d=1374863904">appletV9.0ate.jar</a> 
(1,01 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4705&amp;d=1374863943">appletV9.0ato.jar</a> 
(1,02 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4706&amp;d=1374863969">appletV9.0ats.jar</a> 
(1,02 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4707&amp;d=1374863999">appletV9.0att.jar</a> 
(1,02 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4708&amp;d=1374864017">appletV9.0atv.jar</a> 
(1,02 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4709&amp;d=1374864044">appletV9.0atw.jar</a> 
(1,02 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4710&amp;d=1374864072">appletV9.0aua.jar</a> 
(1,02 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4711&amp;d=1374864089">appletV9.0auv.jar</a> 
(1,04 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4712&amp;d=1374864107">appletV9.0auw.jar</a> 
(1,04 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4713&amp;d=1374864125">appletV9.0avg.jar</a> 
(1,04 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4714&amp;d=1374864142">appletV9.0avk.jar</a> 
(1,04 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4715&amp;d=1374864158">appletV9.0avl.jar</a> 
(1,04 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4716&amp;d=1374864177">appletV9.0avo.jar</a> 
(1,04 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4717&amp;d=1374864194">appletV9.0avs.jar</a> 
(1,04 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4718&amp;d=1374864215">appletV9.0avu.jar</a> 
(1,04 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4719&amp;d=1374864232">appletV9.0avw.jar</a> 
(1,04 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4720&amp;d=1374864256">appletV9.0avx.jar</a> 
(1,04 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4721&amp;d=1374864274">appletV9.0avy.jar</a> 
(1,04 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4722&amp;d=1374864297">appletV9.0avz.jar</a> 
(1,04 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4723&amp;d=1374864315">appletV9.0awb.jar</a> 
(1,04 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4724&amp;d=1374864335">appletV9.0awj.jar</a> 
(1,04 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4725&amp;d=1374864353">appletV9.0awl.jar</a> 
(1,05 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4726&amp;d=1374864371">appletV9.0awq.jar</a> 
(1,05 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4727&amp;d=1374864388">appletV9.0awr.jar</a> 
(1,05 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4728&amp;d=1374864412">appletV9.0aws.jar</a> 
(1,05 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=5496&amp;d=1382520894">appletV9.0ayx.jar</a> 
(1,11 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4729&amp;d=1374864430">appletV9.0awu.jar</a> 
(1,06 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=5497&amp;d=1382520961">appletV9.0ayw.jar</a> 
(1,11 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4730&amp;d=1374864447">appletV9.0awv.jar</a> 
(1,06 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=5498&amp;d=1382521255">appletV9.0azf.jar</a> 
(1,11 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4731&amp;d=1374864467">appletV9.0aww.jar</a> 
(1,07 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=5499&amp;d=1382521255">appletV9.0azh.jar</a> 
(1,11 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4732&amp;d=1374864490">appletV9.0axg.jar</a> 
(1,07 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=5500&amp;d=1382521255">appletV9.0azi.jar</a> 
(1,11 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4733&amp;d=1374864508">appletV9.0axi.jar</a> 
(1,07 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4734&amp;d=1374864526">appletV9.0axt.jar</a> 
(1,08 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=5502&amp;d=1382521619">appletV9.0azs.jar</a> 
(1,12 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4735&amp;d=1374864553">appletV9.0axv.jar</a> 
(1,08 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=5503&amp;d=1382521886">appletV9.0bad.jar</a> 
(1,13 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=5504&amp;d=1382521886">appletV9.0bai.jar</a> 
(1,22 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=5560&amp;d=1383255387">appletV9.0baq.jar</a> 
(1,22 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=5837&amp;d=1386364601">appletV9.0bbi.jar</a> 
(1,12 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4833&amp;d=1375715514">appletV9.0aya.jar</a> 
(1,09 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4861&amp;d=1376129445">appletV9.0ayf.jar</a> 
(1,10 MB)
</li><li>
	<img class="inlineimg" src="https://u-labs.de/forum/images/attach/jar.gif" alt="Dateityp: jar" />
	<a href="https://u-labs.de/forum/attachment.php?attachmentid=4862&amp;d=1376129673">appletV9.0ayd.jar</a> 
(1,10 MB)
</li>
			</ul>
		</fieldset>
	

	</div>
]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Dbzfreak1337</dc:creator>
			<guid isPermaLink="true">protokoll-120/aktuellsten-knlib-applets-6795</guid>
		</item>
		<item>
			<title>Bilderformatierung</title>
			<link>protokoll-120/bilderformatierung-3402?goto=newpost</link>
			<pubDate>Sun, 18 Dec 2011 13:23:47 GMT</pubDate>
			<description>Hier wird das Bild formatiert: 
 
*Beispiele:* 
 
 
1. sm_handyB_02.b.h_25.gif 
2. sm_pokertour_shufflecards...b.my_2.h_35.w_71.gif 
3....</description>
			<content:encoded><![CDATA[<div>Hier wird das Bild formatiert:<br />
<br />
<font color="DeepSkyBlue"><b>Beispiele:</b></font><br />
<br />
<ol class="decimal"><li style="">sm_handyB_02.b.h_25.gif</li><li style="">sm_pokertour_shufflecards...b.my_2.h_35.w_71.gif</li><li style="">sm_bedsheetsC_starlite-ani...b.my_1.w_0.mx_-90.h_30.gif</li><li style="">sm_abo_11-08_bouquetofroses-ani...b.w_0.h_31.mx_-54.my_7.gif</li><li style="">sm_abo_11-04_lovesignal-bg...b.my_7.w_65.mx_-2.h_25.png</li><li style="">sm_fairytale_hanselandgretel...b.my_8.h_70.w_70.mx  _-5.gif</li><li style="">sm_abo_11-11_xmas-boot...b.h_40.w_44.mx_-1.my_1.gif</li></ol><br />
 <font color="DeepSkyBlue"><b>Nach Entfernen der Bildnamen und Dateiendungen:</b></font><br />
<br />
<ol class="decimal"><li style="">b.h_25</li><li style="">..b.my_2.h_35.w_71</li><li style="">..b.my_1.w_0.mx_-90.h_30</li><li style="">..b.w_0.h_31.mx_-54.my_7</li><li style="">..b.my_7.w_65.mx_-2.h_25</li><li style="">..b.my_8.h_70.w_70.mx_-5</li><li style="">..b.h_40.w_44.mx_-1.my_1</li></ol><br />
<font color="DeepSkyBlue"><b>Auflösung:</b></font><br />
<br />
<ul><li style="">.. = ? (siehe b)</li><li style="">b = ? (eventuell nur einleitung des bildformats)</li><li style="">my = margin-y</li><li style="">mx = margin-x</li><li style="">w = width</li><li style="">h = height</li><li style="">. = trennzeichen</li></ul><br />
Wwenn w 0 ist, dann ist w = der breite des vorigen Bildes (Hintergrundbild bei Doublepics)<br />
<br />
Der Datentyp sollte <b>Dictionary </b>bzw. <b>Hashtable </b>sein, also Zugriff auf die Daten mittels<br />
<font color="Red">img.marginX = imgFormat['mx'];</font><br />
<br />
Bei Ergänzungen und Fragen könnt ihr hier gern posten...</div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Sky.NET</dc:creator>
			<guid isPermaLink="true">protokoll-120/bilderformatierung-3402</guid>
		</item>
		<item>
			<title>Bilderformatierung</title>
			<link>protokoll-120/bilderformatierung-30270?goto=newpost</link>
			<pubDate>Sun, 18 Dec 2011 13:17:37 GMT</pubDate>
			<description>Hier wird das Bild formatiert: 
 
*Beispiele:* 
 
 
1. sm_handyB_02.b.h_25.gif 
2. sm_pokertour_shufflecards...b.my_2.h_35.w_71.gif 
3....</description>
			<content:encoded><![CDATA[<div>Hier wird das Bild formatiert:<br />
<br />
<font color="DeepSkyBlue"><b>Beispiele:</b></font><br />
<br />
<ol class="decimal"><li style="">sm_handyB_02.b.h_25.gif</li><li style="">sm_pokertour_shufflecards...b.my_2.h_35.w_71.gif</li><li style="">sm_bedsheetsC_starlite-ani...b.my_1.w_0.mx_-90.h_30.gif</li><li style="">sm_abo_11-08_bouquetofroses-ani...b.w_0.h_31.mx_-54.my_7.gif</li><li style="">sm_abo_11-04_lovesignal-bg...b.my_7.w_65.mx_-2.h_25.png</li><li style="">sm_fairytale_hanselandgretel...b.my_8.h_70.w_70.mx  _-5.gif</li><li style="">sm_abo_11-11_xmas-boot...b.h_40.w_44.mx_-1.my_1.gif</li></ol><br />
 <font color="DeepSkyBlue"><b>Nach Entfernen der Bildnamen und Dateiendungen:</b></font><br />
<br />
<ol class="decimal"><li style="">b.h_25</li><li style="">..b.my_2.h_35.w_71</li><li style="">..b.my_1.w_0.mx_-90.h_30</li><li style="">..b.w_0.h_31.mx_-54.my_7</li><li style="">..b.my_7.w_65.mx_-2.h_25</li><li style="">..b.my_8.h_70.w_70.mx_-5</li><li style="">..b.h_40.w_44.mx_-1.my_1</li></ol><br />
<font color="DeepSkyBlue"><b>Auflösung:</b></font><br />
<br />
<ul><li style="">.. = ? (siehe b)</li><li style="">b = ? (eventuell nur einleitung des bildformats)</li><li style="">my = margin-y</li><li style="">mx = margin-x</li><li style="">w = width</li><li style="">h = height</li><li style="">. = trennzeichen</li></ul><br />
Wwenn w 0 ist, dann ist w = der breite des vorigen Bildes (Hintergrundbild bei Doublepics)<br />
<br />
Der Datentyp sollte <b>Dictionary </b>bzw. <b>Hashtable </b>sein, also Zugriff auf die Daten mittels<br />
<font color="Red">img.marginX = imgFormat['mx'];</font><br />
<br />
Bei Ergänzungen und Fragen könnt ihr hier gern posten...</div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Sky.NET</dc:creator>
			<guid isPermaLink="true">protokoll-120/bilderformatierung-30270</guid>
		</item>
		<item>
			<title><![CDATA[[OUTPUT] n - (Another) Channel Join]]></title>
			<link>protokoll-120/output-n-another-channel-join-31084?goto=newpost</link>
			<pubDate>Fri, 02 Dec 2011 07:45:36 GMT</pubDate>
			<description><![CDATA[Wird gesendet, wenn man *noch einem* Channel beitritt. 
 
 
Code: 
--------- 
"n\0Plauderecke\0EinNickname\0-2825636\0T" 
--------- 
 
Code:...]]></description>
			<content:encoded><![CDATA[<div>Wird gesendet, wenn man <b>noch einem</b> Channel beitritt.<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&quot;<font color="Red">n</font>\0<font color="Green">Plauderecke</font>\0<font color="Blue">EinNickname</font>\0<font color="Purple">-2825636</font>\0<font color="Orange">T</font>&quot;</code><hr />
</div><div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code"><font color="Red">n</font>\0<font color="Green">No Smalltalk!</font>\0<font color="Blue">EinNickname</font>\0<font color="Purple">-2825636</font>\0<font color="Orange">T</font>&quot;</code><hr />
</div>[0] <font color="red">Identifier</font><br />
[1] <font color="green">Channel, dem man joined</font><br />
[2] <font color="blue">Nickname</font><br />
[3] <font color="purple">???</font> <font size="1">(Auf jeden Fall eine Art ID)</font><br />
[4] <font color="orange">???</font> <font size="1">(Bis jetzt immer &quot;T&quot;)</font><br />
<br />
@Mods<br />
Es gibt zwar bereits einen Thread dazu, der beinhaltet aber +/- 0 Informationen. Dachte mir deswegen ich erstelle selbst nochmal einen :-x</div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>v3n3</dc:creator>
			<guid isPermaLink="true">protokoll-120/output-n-another-channel-join-31084</guid>
		</item>
		<item>
			<title><![CDATA[[OUTPUT] w - Channel Leave]]></title>
			<link>protokoll-120/output-w-channel-leave-31231?goto=newpost</link>
			<pubDate>Fri, 02 Dec 2011 07:31:54 GMT</pubDate>
			<description><![CDATA[Wird gesendet, wenn man den Channel verlässt. 
 
Wenn man sich in mehrere Channel befindet, sieht es wie folgt aus: 
 
Code: 
--------- 
"w\0No...]]></description>
			<content:encoded><![CDATA[<div>Wird gesendet, wenn man den Channel verlässt.<br />
<br />
Wenn man sich in mehrere Channel befindet, sieht es wie folgt aus:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&quot;<font color="Red">w</font>\0<font color="Green">No Smalltalk!</font>&quot;</code><hr />
</div>[0] <font color="Red">Identifier</font><br />
[1] <font color="Green">Channel der verlassen wird</font><br />
<br />
<br />
Ansonsten, wenn man den letzten Channel verlässt ändert sich das ganze:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&quot;<font color="Red">w</font>\0<font color="Green">Plauderecke</font>\0<font color="Blue">982</font>\0<font color="Purple">350</font>&quot;</code><hr />
</div>[0] <font color="Red">Identifier</font><br />
[1] <font color="Green">Channel der verlassen wird</font><br />
[2] <font color="Blue">???</font><br />
[3] <font color="Purple">???</font></div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>v3n3</dc:creator>
			<guid isPermaLink="true">protokoll-120/output-w-channel-leave-31231</guid>
		</item>
		<item>
			<title><![CDATA[[INPUT] z - UserList Event REMOVE]]></title>
			<link>protokoll-120/input-z-userlist-event-remove-31324?goto=newpost</link>
			<pubDate>Thu, 01 Dec 2011 12:24:30 GMT</pubDate>
			<description><![CDATA[Wird empfangen wenn ein User seinen Status ändert bzw. ein icon von seinem Namen entfernt werden soll. (zb.: wenn der User aus "\afk" wieder kommt )...]]></description>
			<content:encoded><![CDATA[<div>Wird empfangen wenn ein User seinen Status ändert bzw. ein icon von seinem Namen entfernt werden soll. (zb.: wenn der User aus &quot;\afk&quot; wieder kommt )<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			&quot;<font color="Red">z</font>\0<font color="Green">Düsseldorf</font>\0<font color="Blue">x Kiki</font>\0<font color="Purple">pics/away.png</font>&quot;
			
		<hr />
	</div>
</div>[0] <font color="Red">Identifier</font><br />
[1] <font color="Green">Channel</font><br />
[2] <font color="Blue">Username</font><br />
[3] <font color="Purple">Icon</font></div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>v3n3</dc:creator>
			<guid isPermaLink="true">protokoll-120/input-z-userlist-event-remove-31324</guid>
		</item>
		<item>
			<title><![CDATA[[INPUT] m - UserList Event ADD]]></title>
			<link>protokoll-120/input-m-userlist-event-add-31322?goto=newpost</link>
			<pubDate>Thu, 01 Dec 2011 12:21:51 GMT</pubDate>
			<description><![CDATA[Wird empfangen wenn ein User seinen Status ändert bzw. ein icon an seinen Namen gehängt werden soll. (zb.: bei "\afk" ) 
 
 
---Zitat---...]]></description>
			<content:encoded><![CDATA[<div>Wird empfangen wenn ein User seinen Status ändert bzw. ein icon an seinen Namen gehängt werden soll. (zb.: bei &quot;\afk&quot; )<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			&quot;<font color="Red">m</font>\0<font color="Blue">Düsseldorf</font>\0<font color="Purple">x Kiki</font>\0<font color="Orange">pics/away.png</font>&quot;
			
		<hr />
	</div>
</div>[0] <font color="Red">Identifier</font><br />
[1] <font color="Blue">Channel</font><br />
[2] <font color="Purple">Username</font><br />
[3] <font color="Orange">Icon</font><br />
<br />
<br />
Dann gibt es das selbe aber nochmal mit Icon-Width am Ende:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			&quot;<font color="Red">m</font>\0<font color="Blue">Düsseldorf</font>\0<font color="Purple">PeanutButterCup</font>\0<font color="Orange">pics/icon_sexy_ani.gif</font>\0<font color="Brown">24</font>&quot;
			
		<hr />
	</div>
</div>[4] <font color="Brown">Icon Breite</font><br />
<br />
Einfach checken wie lang das Array ist und dannach entscheiden welcher Typ es ist.</div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>v3n3</dc:creator>
			<guid isPermaLink="true">protokoll-120/input-m-userlist-event-add-31322</guid>
		</item>
		<item>
			<title><![CDATA[[INPUT] + - Cookie-set (???)]]></title>
			<link>protokoll-120/input--cookie-set-31170?goto=newpost</link>
			<pubDate>Wed, 30 Nov 2011 22:52:23 GMT</pubDate>
			<description>Wird nur einmalig bei Login gesendet. 
Ich kann nur vermuten, da ich bis jetzt eine Faule sau war, gehe aber davon aus das damit die Cookies gesetzt...</description>
			<content:encoded><![CDATA[<div>Wird nur einmalig bei Login gesendet.<br />
Ich kann nur vermuten, da ich bis jetzt eine Faule sau war, gehe aber davon aus das damit die Cookies gesetzt werden ... oder die Weltherrschaft an sich gerissen wird, keine ahnung.<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&quot;<font color="Red">+</font>\0<font color="SeaGreen">F</font>\0<font color="Blue">http://photo.knuddels.de/photos-loginonetimepwd.pl?d=1&amp;</font>\0<font color="Sienna">pwd</font>\0<font color="DarkOrchid">IrgendEineId</font>\0<font color="Yellow">n</font>\0<font color="Gray">InsertNicknameHere</font>&quot;</code><hr />
</div>[0] <font color="Red">Identifier</font><br />
[1] <font color="SeaGreen">???</font><br />
[2] <font color="Blue">URL</font><br />
[3] <font color="Sienna">Verschlüsseltes Passwort ???</font><br />
[4] <font color="DarkOrchid">OneTime-Password</font> <font size="1">(ändert sich bei jeden Login)</font><br />
[5] <font color="Yellow">???</font><br />
[6] <font color="Gray">Nickname</font></div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>v3n3</dc:creator>
			<guid isPermaLink="true">protokoll-120/input--cookie-set-31170</guid>
		</item>
		<item>
			<title>RemoteEndPoints</title>
			<link>protokoll-120/remoteendpoints-594?goto=newpost</link>
			<pubDate>Sun, 20 Nov 2011 19:53:23 GMT</pubDate>
			<description>_*Knuddels.de*_ 
 
---Zitat--- 
knuddels.net:2710 
---Zitatende--- 
*_Knuddels.at_* 
 
---Zitat--- 
knuddels.net:2711 
---Zitatende---</description>
			<content:encoded><![CDATA[<div><i><u><b>Knuddels.de</b></u></i><br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			knuddels.net:2710
			
		<hr />
	</div>
</div><b><u><i>Knuddels.at</i></u></b><br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			knuddels.net:2711
			
		<hr />
	</div>
</div><b><u><i>Knuddels.ch</i></u></b><br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			knuddels.net:2712
			
		<hr />
	</div>
</div><b><u><i>Knuddels.com</i></u></b><br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			knuddels.com:2713
			
		<hr />
	</div>
</div><b><u><i>MFC-Chat</i></u></b><br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			knuddels.net:4242
			
		<hr />
	</div>
</div></div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Snees</dc:creator>
			<guid isPermaLink="true">protokoll-120/remoteendpoints-594</guid>
		</item>
		<item>
			<title><![CDATA[[input] : - Module Paket]]></title>
			<link>protokoll-120/input--module-paket-30602?goto=newpost</link>
			<pubDate>Wed, 16 Nov 2011 00:35:13 GMT</pubDate>
			<description>Ein sehr seltsames Paket. 
Blicke da im moment noch komplett nicht durch, gehe davon aus das sich am Anfang ( nach dem Identifier ) ein Byte ist um...</description>
			<content:encoded><![CDATA[<div>Ein sehr seltsames Paket.<br />
Blicke da im moment noch komplett nicht durch, gehe davon aus das sich am Anfang ( nach dem Identifier ) ein Byte ist um zu identifizieren um was für ein paket es sich handelt, anders könnte ich es mir nicht vorstellen.<br />
<br />
Ich werde einfach mal ein paar Beispiele posten, fakt ist das das Paket extrem variabel ist und ich keine Peile hab wie es funktioniert :-3<br />
<br />
<b><u>??? :</u></b><br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			&quot;:\0\f\v\0\0\0d\v\0\0\0d\v\0\0,\v\0\0\0ú\v\0\0\0\0  \0\f\f&quot;
			
		<hr />
	</div>
</div>Dieses Paket wird IMMER direkt am Anfang geschickt.<br />
<br />
<u><b>Quick-WhoIs <font size="1">(Das kleine fenster wenn man über einen User zeigt)</font>:</b></u><br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			&quot;:\0\t\nDüsseldorf\v\bDucki900\0{(\fhiwhoisp_boydd  È\f?ü°+9506°8°&gt;{tr}&lt;°°&gt;{tc}&lt;° http://photo.knuddels.de/photos-profile.html?d=knuddels.de&amp;id=ducki900&lt;&gt;--&lt;&gt;fotos/knuddels.de?n=Ducki900&amp;cnt=13&amp;sq=&amp;...w_0.bordercol  _164,164,255.hbordercol_3,0,227.quadcut_79.border_  2.jpg!http://photo.knuddels.de/photos-profile.html?d=knuddels.de&amp;id=ducki900&quot;on#http://photo.knuddels.de/photos-profile.html?d=knuddels.de&amp;id=ducki900$http://photo.knuddels.de/photos-profile.html?d=knuddels.de&amp;id=ducki900%°&gt;{tc}&lt;°#°+  9503°5Ducki9006Ducki900|/ww Ducki900&lt;rK12°_ 8°14° _(23)_°12°#°+9503°9W-1513649399XlY-1513649399Z-1513649399[9:°K° _Single°b°989.233#°+0000°9:Ducki900&lt;rK12°_#°+9002+  0093°FqIDucki900Hw&lt;K°_DJ-1513649400K-boyLQ-boyRserverpp Ducki900SaTQ-boyUm Ducki900SbTQ-boyUf Ducki900ScTQ-boyUkiss Ducki900SfTQ-boyVig Ducki900SdTM-1513649400N-boyO-boyP-1513649400.w_86.h_106&lt;°E=http://photo.knuddels.de/photos-profile.html?d=knuddels.de&amp;id=ducki900&lt;°_ ??\f&quot;
			
		<hr />
	</div>
</div></div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>v3n3</dc:creator>
			<guid isPermaLink="true">protokoll-120/input--module-paket-30602</guid>
		</item>
		<item>
			<title><![CDATA[[INPUT] w - Channel Leave]]></title>
			<link>protokoll-120/input-w-channel-leave-31265?goto=newpost</link>
			<pubDate>Wed, 16 Nov 2011 00:19:03 GMT</pubDate>
			<description><![CDATA[Ein Paket, was vom Server geschickt wird wenn ein User den Channel verlässt. 
 
 
Code: 
--------- 
"w*\0*shumnice*\0*-*\0**\0*Frankfurt*\0*-*\0* "...]]></description>
			<content:encoded><![CDATA[<div>Ein Paket, was vom Server geschickt wird wenn ein User den Channel verlässt.<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&quot;w<b>\0</b>shumnice<b>\0</b>-<b>\0</b><b>\0</b>Frankfurt<b>\0</b>-<b>\0</b> &quot;</code><hr />
</div><div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&quot;w<b>\0</b>EnnÜ JennY &lt;3<b>\0</b>-<b>\0</b><b>\0</b>-<b>\0</b>-<b>\0</b> &quot;</code><hr />
</div>[0] Identifier<br />
[1] Username<br />
[2] Channel<br />
[3] ???<br />
[4] Channel, wo der User hin wechselt<br />
[5] ???<br />
[6] ???<br />
[7] ???<br />
<br />
PS.: Was mich dabei extremst stört ist, dass nicht angegeben wird aus welchem Channel er leaved :-/<br />
Vielleicht ist einer der Unknowns der gesuchte Channel und wird nur ausgefüllt, wenn man in mehreren Channeln ist.</div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>v3n3</dc:creator>
			<guid isPermaLink="true">protokoll-120/input-w-channel-leave-31265</guid>
		</item>
		<item>
			<title><![CDATA[[Input] t - Channel Aktion - Channel Action]]></title>
			<link>protokoll-120/input-t-channel-aktion-channel-action-30337?goto=newpost</link>
			<pubDate>Wed, 16 Nov 2011 00:07:44 GMT</pubDate>
			<description>*Channel Aktion - Channel Action* 
 
*Opcode: t* 
 
*Tokens*: 
 
 
 
1. Absender 
2. Channel</description>
			<content:encoded><![CDATA[<div><b>Channel Aktion - Channel Action</b><br />
<br />
<b>Opcode: <font color="Blue">t</font></b><br />
<br />
<b>Tokens</b>:<br />
<br />
<br />
<ol class="decimal"><li style=""><font color="Green">Absender</font></li><li style=""><font color="Purple">Channel</font></li><li style=""><font color="DarkOrange">Nachricht von James</font></li><li style="">(Nur bei manchen Aktionen)<font color="DarkRed"> Icon, welches vor dem Absender gesetzt wird z.B. bei Kiss / Knuddel / Knuddelz</font></li><li style="">Leerzeichen (?)</li><li style="">(Optional) <font color="Teal">1</font> ??</li><li style="">(Optional) <font color="DarkPink">0</font> ??</li></ol><br />
<br />
 <br />
<b>Beschreibung</b>:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			Dieses Paket erhält man, z.B. wenn man einen Channel betritt oder wenn man die Kiss-Funktion benutzt etc.
			
		<hr />
	</div>
</div><b>Beispiel:</b><br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			<font color="Blue"><b>t</b></font>\0<font color="DarkGreen">&gt;</font>\0<font color="Purple">/MoMo</font>\0<font color="DarkOrange">°&gt;_hdietekk|/serverpp &quot;|/w &quot;&lt;° gibt °&gt;_hJames|/serverpp &quot;|/w &quot;&lt;° einen ganz dicken Busserl. 17765329 Knutschflecken hat °&gt;_hJames|/serverpp &quot;|/w &quot;&lt;° nun schon.</font>\0<font color="DarkRed">icons/actKiss_mm.png</font>\0 \0<font color="Teal">1</font>\0<font color="DarkPink">0</font>
			
		<hr />
	</div>
</div></div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>3lit</dc:creator>
			<guid isPermaLink="true">protokoll-120/input-t-channel-aktion-channel-action-30337</guid>
		</item>
		<item>
			<title><![CDATA[[Input] j - Channel Background - Channel Hintergrund]]></title>
			<link>protokoll-120/input-j-channel-background-channel-hintergrund-31315?goto=newpost</link>
			<pubDate>Wed, 16 Nov 2011 00:06:15 GMT</pubDate>
			<description>*Channel Background - Channel Hintergrund* 
 
*Opcode: j*  
*Parameter*: 
 
 
 
1. Channel 
2. Hintergrund Bild 
3. Settings {6:Stretch,...</description>
			<content:encoded><![CDATA[<div><b>Channel Background - Channel Hintergrund</b><br />
<br />
<b>Opcode: <font color="Blue">j</font></b><font color="Blue"><br />
</font> <br />
<b>Parameter</b>:<br />
<br />
<br />
<ol class="decimal"><li style=""><font color="Red">Channel</font></li><li style=""><font color="Orange">Hintergrund Bild</font></li><li style=""><font color="Green">Settings {6:Stretch, 17:Wiederholen, ...}<br />
</font></li></ol><br />
<br />
<b>Beschreibung</b>:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			Erhält man, wenn man einen Channel wechselt und das Hintergrundbild geändert werden muss.
			
		<hr />
	</div>
</div><b>Beschreibung</b>:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			<font color="Blue"><b>j</b></font>\0<font color="Red">/Channel</font>\0<font color="Orange">pics/cloudsblue.gif</font>\0<font color="Green">17</font>
			
		<hr />
	</div>
</div></div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>3lit</dc:creator>
			<guid isPermaLink="true">protokoll-120/input-j-channel-background-channel-hintergrund-31315</guid>
		</item>
		<item>
			<title><![CDATA[[Input] l - Channel Login - Channel Join]]></title>
			<link>protokoll-120/input-l-channel-login-channel-join-30834?goto=newpost</link>
			<pubDate>Wed, 16 Nov 2011 00:04:53 GMT</pubDate>
			<description>*Channel Login - Channel Join* 
 
*Opcode*: *l* 
  
*Tokens*: 
 
 
 
1. ?? 
2. Nickname (Optional: \n + Alter)</description>
			<content:encoded><![CDATA[<div><b>Channel Login - Channel Join</b><br />
<br />
<b>Opcode</b>: <font color="Blue"><b>l</b></font><br />
 <br />
<b>Tokens</b>:<br />
<br />
<br />
<ol class="decimal"><li style=""><font color="RoyalBlue">??</font></li><li style=""><font color="DarkOrange">Nickname</font> (Optional: <font color="Purple">\n + Alter</font>)</li><li style=""><font color="Green">Formatierung in der Channelliste (b = Fett)</font></li><li style=""><font color="DarkPink">RGB Farbe für die Userlist</font></li><li style="">(Optional) <font color="Teal">Icon für das Geschlecht (Female / Male / Shemale :P) oder Rang / Extras (CM / VIP / SEXY / Butterfly)</font></li><li style="">(Optional) <font color="Black">?? Eventuell Position in der Userlist</font></li><li style=""><font color="RoyalBlue">??</font></li><li style="">(Optional) <font color="Brown">Channel von dem man her gejoint ist</font></li><li style="">??</li></ol><br />
<br />
<br />
<b>Beschreibung</b>:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			Dieses Paket erhält man sobald ein neuer User den Channel betritt.
			
		<hr />
	</div>
</div><b>Beschreibung</b>:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			<b><font color="Blue">l</font></b>\0<font color="RoyalBlue">-</font>\0<font color="DarkOrange">xtp57</font>\0<font color="Green">b</font>\0<font color="DarkPink">43,231,69</font>\0<font color="Teal">-</font>\0<font color="Black">-</font>\0<font color="MediumTurquoise">-</font>\0<br />
<font color="Blue"><b>l</b></font>\0-\0<font color="DarkOrange">dietekk</font><font color="Purple">\n19</font>\0<font color="DarkGreen">b</font>\0<font color="DarkPink">250,250,250</font>\0<font color="Teal">pics/male.png</font>\0<font color="Black">16</font>\0<font color="RoyalBlue">-</font>\0<font color="Brown">Kino</font>\0-\0
			
		<hr />
	</div>
</div></div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>3lit</dc:creator>
			<guid isPermaLink="true">protokoll-120/input-l-channel-login-channel-join-30834</guid>
		</item>
		<item>
			<title><![CDATA[[INPUT] , - Ping]]></title>
			<link>protokoll-120/input--ping-30131?goto=newpost</link>
			<pubDate>Tue, 15 Nov 2011 23:54:28 GMT</pubDate>
			<description>Habe *hier* (http://www.fuddels.com/pakete/atzgi/2010/08/15/ping-receive/) gelesen das es mehrere Typen von diesem Protokoll geben soll, habe bis...</description>
			<content:encoded><![CDATA[<div>Habe <a href="http://www.fuddels.com/pakete/atzgi/2010/08/15/ping-receive/" target="_blank" rel="nofollow"><b>hier</b></a> gelesen das es mehrere Typen von diesem Protokoll geben soll, habe bis jetzt aber nur dieses eine gefunden.<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&quot;<font color="Red">,</font><b>\0</b><font color="Green">DerTypMitBlaw</font>|<font color="Blue">1321400012118</font>&quot;</code><hr />
</div>[0] <font color="red">Identifier</font><br />
[1] <font color="Green">Sender</font> <font size="1">(wer den Ping sendet)</font> + <font color="blue">Unix-Timestamp</font> <font size="1">(???)</font><br />
<font size="1">(als split-byte wird &quot;|&quot; verwendet)</font><br />
<br />
In regelmäßigen Abständen sendet der Client selbstständig folgendes:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&quot;<font color="Red">h</font>\0<font color="Green">-</font>&quot;</code><hr />
</div>[0] <font color="Red">Identifier</font><br />
[1] <font color="Green">???</font><br />
<br />
Der Server sendet daraufhin &quot;,&quot;.<br />
Man sollte aufpassen, dass man nicht in einer endlosen Schleife hängen bleibt oder etwas in der Art, indem man immer dem &quot;,&quot; Protokoll automatisiert antwortet. Sollte aber nicht so schwer sein ;-)</div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>v3n3</dc:creator>
			<guid isPermaLink="true">protokoll-120/input--ping-30131</guid>
		</item>
		<item>
			<title><![CDATA[[INPUT] e - Public Message]]></title>
			<link>protokoll-120/input-e-public-message-31192?goto=newpost</link>
			<pubDate>Tue, 15 Nov 2011 23:39:03 GMT</pubDate>
			<description>Sollte selbsterklärend sein :-P 
Erhält man, wenn etwas Public (das alle es lesen können) geschrieben wird. 
 
 
Code: 
---------...</description>
			<content:encoded><![CDATA[<div>Sollte selbsterklärend sein :-P<br />
Erhält man, wenn etwas Public (das alle es lesen können) geschrieben wird.<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&quot;e<b>\0</b>UnbekannterTyp<b>\0</b>BlawChan<b>\0</b>wie, 1ne woche ? wooop wooop, danke &lt;3<b>\0</b> &quot;</code><hr />
</div>[0] Identifier<br />
[1] Username<br />
[2] Channel<br />
[3] Nachricht<br />
[4] ??? <font size="1">(immer leer)</font><br />
<br />
Hier einmal das ganze mit einem Smilie.<br />
Über den &quot;code&quot; kann ich momentan noch nichts sagen :-/<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&quot;e<b>\0</b>UnemployedCoder<b>\0</b>Düsseldorf<b>\0</b>°&gt;sm_abo_11-08_cookieplate...b.w_51.h_29.mx_-3.my_10.gif&lt;°<b>\0</b> &quot;</code><hr />
</div></div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>v3n3</dc:creator>
			<guid isPermaLink="true">protokoll-120/input-e-public-message-31192</guid>
		</item>
		<item>
			<title><![CDATA[[INPUT] u - UserList]]></title>
			<link>protokoll-120/input-u-userlist-30653?goto=newpost</link>
			<pubDate>Tue, 15 Nov 2011 00:00:07 GMT</pubDate>
			<description><![CDATA[Das "u" Token wird direkt geschickt wenn man einen Channel betritt. 
Das Paket ist teilweise dynamisch, werde auch unten den Code posten wie ich das...]]></description>
			<content:encoded><![CDATA[<div>Das &quot;u&quot; Token wird direkt geschickt wenn man einen Channel betritt.<br />
Das Paket ist teilweise dynamisch, werde auch unten den Code posten wie ich das ganze parse.<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&quot;u\0Düsseldorf\0James\n76\0p\0208,0,0\0pics/male.png\016\0-\0Düsseldorf Derendorf\n20\0p\00,0,235\0pics/male.png\016\0-\0bebish x33\n19\0p\00,0,0\0pics/female.png\014\0-\0Player aus Rasher\n17\0p\00,140,0\0pics/male.png\016\0-\0KPC Gangsta15\n21\0p\00,140,0\0pics/male.png\016\0-\0x Jacki Baby &lt;3\n21\0p\00,140,0\0pics/female.png\014\0-\0Australia\n24\0p\00,140,0\0pics/male.png\016\0-\0laura love1992\n19\0p\00,0,0\0pics/female.png\014\0-\0&quot;</code><hr />
</div>[0] Identifier<br />
[1] Channel<br />
<br />
Ab hier fangen die User an.<br />
Die struktur ist wie folgt:<br />
<br />
[0] Name + Alter <font size="1">(Split-Byte ist &quot;\n&quot;)</font><br />
[1] Font-Type <font size="1">(siehe enum unten)</font><br />
[2] Font-Color <font size="1">(Split-Byte ist &quot;,&quot; und Format ist &quot;R, G, B&quot;)</font><br />
[3] Gender-Image <font size="1">(zb.: &quot;pics/female.png&quot;, URL wäre dann &quot;chat.knuddels.de/pics/female.png&quot;)</font><br />
[4] Gender-Type <font size="1">( ??? siehe enum unten )</font><br />
<br />
Hier kann es tricky werden, am besten checken ob der nächste string &quot;-&quot; ist, anonsten gehts hiermit weiter:<br />
[5] Status-Image <font size="1">(zb.: &quot;pics/away.png&quot;, URL ware dann &quot;chat.knuddels.de/pics/away.png&quot;)</font><br />
[6] Status-Type <font size="1">( ??? siehe enum unten)</font><br />
<br />
[4] EOF <font size="1">(end of file-byte &quot;-&quot;)</font><br />
<br />
Hier 2 verschiedene User wo die beiden Fälle eintreffen:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">RundeKekseRund\n19\0p\00,0,0\0pics/female.png\014\0pics/away.png\018\0-\0<br />
Blaw blaw\n19\0p\00,0,0\0pics/male.png\016\0-\0</code><hr />
</div>Enums<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">public enum FontType : byte<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Kursiv = 0x69,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Bold = 0x62,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Normal = 0x70<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; public enum GenderType : byte<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Male = 0x10,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Female = 0xe<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; public enum StatusType : byte<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; None = 0x0,<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Away = 0x12,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ChannelModerator = 0x14<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</code><hr />
</div>EDIT:<br />
Structure updated<br />
Kot removed</div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>v3n3</dc:creator>
			<guid isPermaLink="true">protokoll-120/input-u-userlist-30653</guid>
		</item>
		<item>
			<title><![CDATA[[INPUT] ( - Decode Key + Momentane Kategorie]]></title>
			<link>protokoll-120/input--decode-key-momentane-kategorie-30389?goto=newpost</link>
			<pubDate>Fri, 11 Nov 2011 23:24:55 GMT</pubDate>
			<description>Wird nach dem Butler Token (http://k-script.cc/showthread.php?p=237730#post237730) geschickt. 
Übermittelt den Key zum decoden der Pakete und die...</description>
			<content:encoded><![CDATA[<div>Wird nach dem <a href="http://k-script.cc/showthread.php?p=237730#post237730" target="_blank" rel="nofollow">Butler Token</a> geschickt.<br />
Übermittelt den Key zum decoden der Pakete und die Kategorie in der man sich momentan befindet.<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			<font color="Red">(</font><b>\0</b><font color="SeaGreen">ûðó£t?E8¢?</font><b>\0</b><font color="Blue">Alternative</font><b>\0</b><font color="DarkOrchid">K</font>
			
		<hr />
	</div>
</div>[0] <font color="Red">Identifier</font><br />
[1] <font color="SeaGreen">PasswordKey</font> <font size="1">(siehe Beispiel unten)</font><br />
[2] <font color="blue">Vom Server zugewiesener Channel</font><br />
[3] <font color="DarkOrchid">DecodeKey</font> <font size="1">(siehe Beispiel unten)</font><br />
<br />
Password / DecodeKey Beispiel:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">string[] xToken = xInput.Split(KnuddelsDotNet.Client.NullByte);<br />
this.UserLogin.decodeKey = Encoding.UTF8.GetBytes(xToken[3].Trim());<br />
this.UserLogin.passwordKey = (xToken[1] + xToken[3].Trim());</code><hr />
</div><b>EDIT:</b><br />
Woops, komplett am Ziel vorbei.<br />
Korrigiert :-3</div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>v3n3</dc:creator>
			<guid isPermaLink="true">protokoll-120/input--decode-key-momentane-kategorie-30389</guid>
		</item>
		<item>
			<title><![CDATA[[Input] p - Wahlfenster]]></title>
			<link>protokoll-120/input-p-wahlfenster-30382?goto=newpost</link>
			<pubDate>Wed, 10 Aug 2011 20:25:37 GMT</pubDate>
			<description>*Achtung: *Obwohl das Wahlfenster ein Popup ist, ist es kein *k-Paket*. Es wird benutzt für Adminwahlen, CM-Wahlen und so weiter. Es ist auch...</description>
			<content:encoded><![CDATA[<div><b>Achtung: </b>Obwohl das Wahlfenster ein Popup ist, ist es kein <b>k-Paket</b>. Es wird benutzt für Adminwahlen, CM-Wahlen und so weiter. Es ist auch eigenständig dafür programmiert und natürlich clientseitig.<br />
<br />
<div style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px"><b>Spoiler</b>:<input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }">
</div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
p\0Admin\05\05\02\02\01257\0002ChocoLateAngel200\0 \0100 jahre  Schalker\0 \011 hasie\0 \011olli11\0 \013aggroberliner13\0 \015  Aggroberliner Sido\0 \01503\0 \016-Red-Devil-16\0 \0187g-star\0  \01968er\0 \01991Senseless1991\0 \01es2\0 \01Sweetangel86\0  \020-HipHop&gt;Babe&lt;\0 \02005max\0 \022 - 11 - 1992 &lt;3\0  \022traumwolke\0 \023 Black Rose 23\0 \0257ner\0 \050 cent fl\0  \07&lt;BanGKingZ&gt;7\0 \089 Saw\0 \08Andi8\0 \0Aaltje\0 \0abki\0 \0Adam  Lambert &lt;3\0 \0Adlers\0 \0advocat diaboli\0 \0Aggro Au\0 \0Aggro  Lieblingsrapperin\0 \0Agnostic-Hardcore\0 \0aiaiai is back\0 \0Air  Berlin\0 \0ajamummy\0 \0Alessandro006\0 \0Alex24GS\0 \0Alexander  Oellrich\0 \0alexis aus yu-gi-oh gx\0 \0Alexisonfire\0 \0alexk292005\0  \0AlexKiel87\0 \0Alinamaus1\0 \0aLLki no 1\0 \0Alucard0001\0 \0amsel am  deich\0 \0andi181\0 \0andre12580\0 \0Andri\0 \0angeL for biLL\0  \0Angel-Carrie\0 \0Angel-of-the-darkness&lt;3\0 \0Angel2\0 \0angel82\0  \0angelhart\0 \0AngelofFantasy85\0 \0Anglegirly99\0 \0Anica01\0  \0Annemäuschen230605\0 \0annimale\0 \0AnthraX one\0 \0AntiYou\0  \0Apfel010\0 \0Aponi1\0 \0aria31\0 \0Ariano16\0 \0aromatisierter  Kräutertee\0 \0Arranco\0 \0ass555\0 \0Astraela\0 \0Atom 24\0 \0Atze is  Back\0 \0Autobahnschnitzel\0 \0Autocrossfahrer\0 \0Autumn\0 \0Ax  Chrissi\0 \0Azchenische Legende\0 \0Azru\0 \0B-u-t-t-e-r-f-l-y\0  \0B00g-Y-mAn\0 \0B@bY B@sH16\0 \0babalubabay\0 \0Babyblue15\0  \0Babyplaya\0 \0BabüüLein\0 \0Bacardi Cola89\0 \0Baccio 1987\0  \0Backlash05\0 \0Badboy1990XXL\0 \0badboys2222\0 \0BaddBoyy\0 \0Badgirl  1913\0 \0Baerenmann\0 \0Bahamut1\0 \0Bakuryu\0 \0BALL 356\0 \0ballu\0  \0Bandit237\0 \0basketballfreak01\0 \0Bass Eater\0 \0Basti321123\0  \0Batista08\0 \0Bayern Profi\0 \0bbg14\0 \0beast29\0 \0BecksHB\0  \0Beddo\0 \0beejay27\0 \0Bela Dinka\0 \0beste Freunde 11\0 \0Betsi\0  \0Bianchi78\0 \0Bielefeld87\0 \0BiEnCheN the last one\0 \0biene37@ge\0  \0Bierholjunge\0 \0Big Biest\0 \0big sascha\0 \0Bigbad3868\0 \0BigMaster  G\0 \0billardprofi1\0 \0biq bosz\0 \0birdem\0 \0Bithya\0 \0Bjoern\0  \0Black Devil 2005\0 \0BLack PerL &lt;3\0 \0BlackChaos17\0  \0Blackdaphne1987\0 \0Blackmen02\0 \0BlackSAM20\0 \0Blacky@OB\0  \0blau20\0 \0Blaypoy15\0 \0Bling-Bling-Tuss\0 \0blinq-blinq  Gangstergirly\0 \0blizzzzzard\0 \0Blokkmonsta in Erfurt\0 \0Blonder  sunny Boy\0 \0BloodyRebirth\0 \0Bloondy007\0 \0Blue225\0  \0blueangel1610\0 \0Bluebird1\0 \0bluemoon733\0 \0blueroses75\0 \0Bob  Marley@bbg\0 \0bochum 13\0 \0bochum27\0 \0boeser cousin\0  \0Boom-Boom2004\0 \0Born from a wish\0 \0Boy15KR\0 \0boyfriend001\0  \0BrainlessRacer\0 \0Brian Okoner\0 \0Brinchen14\0 \0BrokenHeart37\0  \0Brösl\0 \0bubbeline\0 \0Bubble-Escape-13\0 \0buffysummer\0 \0Buha\0  \0BunnyW20ausHH\0 \0bussyido\0 \0Bvb91\0 \0Börchen\0 \0Börgelkat\0  \0Böser Engel09\0 \0c4 bom\0 \0C@rpangler19\0 \0cablegirl\0 \0Caddy21\0  \0calpurnia\0 \0calumon\0 \0campi kuddel un co\0 \0Candela\0  \0carla100099\0 \0Caromaus86\0 \0Cassie 2211\0 \0cassoraver2003\0  \0CastorV19\0 \0cat 910\0 \0Catcarry\0 \0cateye93\0 \0CaTsCaN\0  \0Catwommen89\0 \0Celli0692\0 \0Ceras Viktoria\0 \0CH1986M\0 \0Chakka\0  \0Chakuza55\0 \0Champ of all\0 \0Charmedboy 2006\0 \0charminggirl77\0  \0Chatter@Olli13\0 \0chekerboss\0 \0Cherymeetwodka\0 \0ChibiWolf\0  \0Chiefinstructor\0 \0chip18\0 \0Chiyoko die Magische\0 \0Chr1si 15\0  \0Chris-Disturbed\0 \0Chris30014\0 \0chrissen\0 \0Chrissn18\0  \0ChrisStriker\0 \0christmas girlie\0 \0ChUck Norris Baum\0  \0chucksBoy\0 \0Ciana\0 \0citaro bluetec5\0 \0clan-hand\0 \0Claudi-Mg\0  \0claudimauz\0 \0Cloud167\0 \0CnCAstral\0 \0CokaColaBoy\0  \0Colamonster\0 \0coMpi deLuXe\0 \0connyHH\0 \0cool mg\0 \0coole  vanessa123\0 \0coolerdete\0 \0Coolricky\0 \0Coolschnuffel\0  \0coolvegeta\0 \0Cordula1978\0 \0crazy mäddy\0 \0crazy7\0  \0CreativeChaos\0 \0Crespo &lt;3\0 \0Crypto-Zwirrfinst\0 \0Cyber-Bot\0  \0D&amp;G men 4you\0 \0D-Nice\0 \0D-Techno\0 \0D@ni@www\0  \0da-mistress\0 \0daKingchen\0 \0Dani141990\0 \0Daniel23m\0  \0DanielViersen1\0 \0dany0911\0 \0Dark Leon02\0 \0Darkangel000017\0  \0DarkAngel0124\0 \0Darkangel1972\0 \0Darkangeleyes\0 \0Darkiceman2002\0  \0Darkness0815\0 \0darkorgye3\0 \0DarkRotten\0 \0DarkSue\0  \0DarkyTeddy\0 \0Darth Marco\0 \0das girl aus pdm\0 \0Das Orakel sagt\0  \0das-Pünktchen\0 \0dasisteinaccount\0 \0daslolgetier\0 \0Dave20009\0  \0Dave@1987\0 \0David1990x\0 \0Dea92\0 \0Dead Devil 68\0 \0Deephouser\0  \0Defender\0 \0delphino\0 \0Deluxe-Daniel\0 \0DeManzo\0 \0Demon-123\0  \0demonhanter21\0 \0Denis@19\0 \0Denisman\0 \0dennis 124\0 \0Dennis nähe  Koblenz\0 \0denniscrazy\0 \0Denny3105\0 \0Der Altpunk\0 \0der dady\0  \0Der Einsame Kobold\0 \0Der King99\0 \0der liebe hai\0 \0Der liebe  Junge13\0 \0deralien\0 \0DerWunder\0 \0DestenySun\0 \0Detektiv007\0  \0Devil 1993\0 \0devil68er\0 \0dgalex\0 \0Diablo2ivi\0 \0Die Insel 2\0  \0Die Lila Eule\0 \0Diebelslein\0 \0dietanja31\0 \0dirrrtyyyangel\0 \0Dj  Ben89\0 \0DJ Squizz\0 \0dj tiesto15\0 \0DJ1599\0 \0djark\0 \0djdeve\0  \0DjK Rastatt Boy15\0 \0DJTrixX\0 \0Domarus\0 \0Don Diablo\0 \0Don  Mystery\0 \0dortmunder gangster 14\0 \0downloader1988hehe\0  \0Dr@gOnGiRlY16\0 \0Drachenmeister\0 \0DragonMistress\0 \0draogen91\0  \0dreagonheart\0 \0Dream Of You &lt;3\0 \0dreamboy025\0  \0Dreamengelchen\0 \0Dreamer1711\0 \0Dreami27\0 \0Duisburger2004\0  \0dustino91\0 \0DW2005\0 \0E i n z i Q a r t i Q\0 \0Ecki2004MG\0  \0Eddie Gori Guerrero\0 \0EddY 90\0 \0EG-Latino-Heat\0 \0EikeB\0  \0eimster\0 \0Eingepacktekackwurst\0 \0Einsamer Käfer\0  \0einsamerengel81h\0 \0Eisblume5678\0 \0EishockeyTeufel\0 \0EisKaLtEs  BaBy\0 \0Eismama\0 \0ekirlu\0 \0El Menor\0 \0Elfin des Waldes\0  \0Elmlohes gangstar nr1\0 \0Em0 - Kisz\0 \0EmelyErdbeer&lt;3\0  \0emo-entchÄn\0 \0emppu89\0 \0engel den man nur weh tut\0 \0engel mit  fehlern\0 \0engelchen-meets-teufelchen\0 \0Engelchen1988\0 \0Enqel feat  Hasy\0 \0enricoreiss\0 \0erbe09\0 \0Erdbeermausi\0 \0Erdianer\0  \0erneuerbar\0 \0Erzengel-huhu\0 \0Espiritu del Aire\0 \0EwelinaLady\0  \0exploror\0 \0Eye Of The Storm\0 \0F-Raz 2007\0 \0Fabi-Star\0  \0FaLlAdANoIrE\0 \0Fanfär30\0 \0Fargo\0 \0fayemausi\0 \0Fcfan2508\0  \0feiervogel\0 \0Feldwebel213\0 \0Fergie2008\0 \0Feuerwalze007\0  \0fippsi1\0 \0Fire159\0 \0Fireboy2411990\0 \0Fite\0 \0FlauschiBauchi\0  \0fliegenpilzchen\0 \0flinkeblitze\0 \0flipflop\0 \0Flipper m\0  \0Flirter25\0 \0Flo51187\0 \0Flocke 1\0 \0Flockekim18\0 \0floweranja\0  \0fluffy2020\0 \0flugi\0 \0Flummi2003\0 \0Fonlo\0 \0FoRdii\0 \0Forger\0  \0Foxy777\0 \0FR1\0 \0frecher bengel1971\0 \0Frechercell\0 \0FreDDüü\0  \0freestyla&lt;3\0 \0fresh-squeezed\0 \0FruchtzwergV16\0 \0Fräulin  Wunder 16\0 \0Funny honey\0 \0Funnymarie\0 \0Future Master 06\0  \0Fuzel\0 \0FuZzLe\0 \0FördeTom\0 \0Gaaras Hündchen17\0  \0GaBBerTuSSeo7\0 \0Gadir\0 \0Gangsterboy1987\0 \0garry\0 \0geboy1995\0  \0Genesis-Messias der Stille\0 \0Geoman\0 \0Gery123\0 \0Geräusch\0  \0Ghetto Gangsta 93\0 \0Ghetto gospel 231\0 \0gias\0 \0Gift@zwerg\0  \0Gilloni\0 \0Girlmoregirls ma\0 \0GJacky\0 \0Gl@mourgirl\0 \0Gladbeck  boy\0 \0GlitterBunnie\0 \0Gluecklicher Engel\0 \0goldangel23\0  \0Goldhandy\0 \0goldi&lt;m&gt;\0 \0goldiges Kätzle\0 \0goldregen-15\0  \0Goth-Engel-666\0 \0GrafvonKroloc\0 \0GreatHardwareTiger\0  \0Greenday-fan w13\0 \0Griesheimer Gangster\0 \0Gronau &lt;West&gt;\0  \0Gsus\0 \0Guisy feat Cati\0 \0Gutsche 1995\0 \0H3@dnuts Liebling\0  \0Haary7\0 \0Hacke2\0 \0Haiefan91\0 \0Hallo Ironie mein Name\0  \0Hamburger Rotzbengel\0 \0hamsterbaby\0 \0hanimaus\0 \0hanjaeck\0  \0happymilli\0 \0HappySinger\0 \0Hard Enduro\0 \0haus nr5\0 \0Hcds\0  \0Heidrich x3\0 \0Hein20\0 \0Heini3\0 \0Hellfire\0 \0Heminator15\0  \0Hermhann\0 \0hero with sword and shield\0 \0Hexa\0 \0hexenmeister67\0  \0HHdiablo\0 \0hiphopboy0105\0 \0HiSbAbYgIrL&lt;3\0 \0Hoernschen\0  \0Honey C\0 \0HoneyGlirl94\0 \0hopeless-w\0 \0HorstPeter\0  \0hot-girly-devil\0 \0Houmoulinchen\0 \0HSHschüler\0 \0HSV Hamburg HSV\0  \0husky1986m\0 \0Hübsche-schnecke14\0 \0I am Denise17\0 \0I am Me &amp;  You are You\0 \0I Will Give You My Heart\0 \0I&gt; Space &lt;I\0  \0I&gt;&gt;&gt;Puma&lt;&lt;&lt;I\0 \0I&gt;DaRealStayler&lt;I\0  \0I&gt;KissOfDeath&lt;I\0 \0ice pocket\0 \0IceAngelOnFire\0 \0IceShield  13\0 \0ich lebe noch\0 \0ichunddublindekuh\0 \0IgelchenM\0  \0IgsFLötenteich\0 \0Ikaruga\0 \0immoline\0 \0Inselaffe2008\0  \0Insulaner15\0 \0Iron devil19\0 \0irradiated\0  \0IrrenÄrztinVonKnuddels\0 \0Italia italia\0 \0iTAM\0 \0Ivar der  Seefahrer\0 \0iwana garfield\0 \0IzeTea\0 \0jaa89\0 \0Jack &amp; Jones  x3\0 \0Jackass1906\0 \0Jacob112\0 \0JaninaDoggi01\0 \0jason-mathias\0  \0Jazze13\0 \0jenniferlopez11\0 \0jens033\0 \0jens@fireball\0  \0jessi022\0 \0jeyjey87\0 \0JinKusma\0 \0jkitt\0 \0joel135\0  \0Josi+Elias\0 \0Juju0815\0 \0Julchen1986\0 \0Julchen555\0 \0julemule\0  \0Juli the Hammer\0 \0junky93\0 \0K2-137\0 \0K@th@2376\0 \0Kai-Hb\0  \0Kairi 1304\0 \0Kalle-94\0 \0kalle21\0 \0kantar1993\0 \0Karlsruher 16  16 16\0 \0karsten0311\0 \0KatZenFudDaH\0 \0kaufungerchiller\0 \0Kawa99\0  \0KeeeKse&lt;3\0 \0Keeper of Death\0 \0kehl1955\0 \0keksi28\0  \0Kessy90\0 \0Kevboy &lt;3\0 \0kevinboy13\0 \0KeWo2008\0 \0Kimiko\0  \0King of Cochones\0 \0king of handball\0 \0KiNg ReV\0 \0Kira1111\0  \0Kirihara Naoto\0 \0Kirschblüte16\0 \0kirsche122\0 \0KizZ-My-LiPzZ\0  \0kizzim\0 \0kleine honigbiene2005\0 \0kleinengelchen104\0  \0KleinesMiststück99\0 \0klene freche Fee79\0 \0Kneipenbelagerer2\0  \0Knuddel-Feuer\0 \0KnuddelChill\0 \0knuddelige maus 789\0  \0KnuddelSchnuffiMucki\0 \0Knuddelsüchtig25\0 \0knuddeltier90\0  \0KnuddelTigger\0 \0knuddeltrine0811-1\0 \0knuddelzmausi\0  \0knudelbärchen144\0 \0knuffelin04\0 \0knuth\0 \0knutzemus\0 \0koki12\0  \0Konfi-angi\0 \0Koruglu\0 \0Krankenpfleger23\0 \0krebby\0  \0KräuterKröte\0 \0Ktm525Sx\0 \0kuba&lt;3 016\0 \0Kurt Angele TNA\0  \0Kuschel-Ela\0 \0Kuschel19\0 \0Kuschelbaer1604\0 \0kuschelfant\0  \0kuschelfreddy\0 \0Kuschelmaus aus NRW\0 \0käferchen@@käferchen\0  \0kölngirl 15x\0 \0l0v3nÄss+core\0 \0La-Latina-nr-1\0 \0lachmausi\0  \0ladage\0 \0Laddymen\0 \0lady2003\0 \0ladykracher123\0 \0laja1978\0  \0lammar\0 \0Laura Chick85\0 \0Lazanna\0 \0le petit garcon content\0  \0lea1978\0 \0LenaFrechen\0 \0Leon3373\0 \0LetzGetDirty\0 \0Letzte  Instanz &lt;3\0 \0Letzter blauäugiger Drache\0 \0lgh4411\0 \0Lia06\0  \0Lieb-Kuschel\0 \0liebezicke782\0 \0light tornado\0 \0Lil Jacky xD\0  \0liL-mauZü\0 \0lilli@lucky\0 \0Lillyfee 1234\0 \0Limp89\0 \0lisa99\0  \0Lissy1956\0 \0Little Nash\0 \0little Podolski\0 \0littlebadgirl15\0  \0Loewenherz&lt;26&gt;\0 \0Lolmops35\0 \0lolzz123\0 \0lonelywolve32\0  \0Lonsdalegirl-Nr1\0 \0loonimaus85\0 \0Lost Mind\0 \0Lost Teardrop\0  \0lounge\0 \0love bärchin\0 \0loveboy 97\0 \0LoveMeBack\0 \0Lover girl  38\0 \0Lover32\0 \0Loverhengst\0 \0LoveYaSo&lt;3\0 \0Lovlie Girl 15\0  \0LPfangirl13\0 \0Lucky1278\0 \0Luckyman36\0 \0Luhp\0 \0Lumpenkatze\0  \0luna1414\0 \0luxus-lady 3004\0 \0LuziferDerErste\0 \0Lypern\0  \0lämmie\0 \0Löschzicke\0 \0M@uzi\0 \0Mabian\0 \0MADDINST\0  \0Maeuschen81\0 \0Mag Griffen\0 \0mamo2002\0 \0Mandys8\0 \0Manliana\0  \0mann-weiß-ja-nie\0 \0Mannheimer 1990\0 \0mannheimersgirl\0  \0Marcel-1586\0 \0Marcel-Matze\0 \0Marcel198604\0 \0Marci93\0  \0marco91\0 \0maria171089\0 \0mariemaus\0 \0marju\0 \0marriegirl\0  \0Marseillais74\0 \0martin51\0 \0marvin 147\0 \0MasseurHH\0  \0Master-of-Desaster1982\0 \0Master-of-Desasters Maus\0 \0master6474\0  \0MasterDevil\0 \0mastergirl1989\0 \0matchico\0 \0MATuRkiShBoY\0  \0matze191285\0 \0maus1291\0 \0maus2006-nicole\0 \0Mausi080589\0  \0Mausimaus2005\0 \0Mauss18\0 \0Max0101\0 \0Maxigirl90\0 \0Maxiking999\0  \0maxim2808\0 \0maximus1989\0 \0Maylina\0 \0Mc-Dom\0 \0MC-Future\0  \0mckalle\0 \0McPfeifer\0 \0med-mike 2\0 \0Meenzer Bub\0 \0Mega Maus  182\0 \0megacamlol\0 \0Mein Herz in Deinen Händen\0 \0meinereiner78\0  \0meisterricci\0 \0MeLi Feat aLex\0 \0Mellaz\0 \0Melli 61\0 \0Melli die  liebe\0 \0melly7\0 \0mengreen\0 \0merhi\0 \0Merkuera\0 \0Method man001\0  \0mettwurst 01\0 \0Metzler21\0 \0Mich@1973\0 \0Micha007\0 \0Michael bei  Koblenz\0 \0Michael33Erfurt\0 \0Michael91\0 \0MichiLi\0 \0Mickey712\0  \0Milkahase84\0 \0Minamausi159\0 \0mirko der lover\0 \0Miss Anonym\0  \0Miss Nightlady\0 \0Miss Randy Orton\0 \0Miss Sixtygirl 89\0 \0miss  sweety86\0 \0missbirdy\0 \0missmarple93\0 \0Missouri92\0 \0mivo87\0  \0Mizz Honeymoon\0 \0mohtho\0 \0Mona10788\0 \0Mona40\0 \0mondboy\0  \0Moni&amp;Chrisi&lt;3\0 \0Monimaeuschen\0 \0Moonlady1990\0  \0MorganADFX02\0 \0Morgenstern B\0 \0Motro\0 \0mpok\0 \0mrs fabelhaft\0  \0Msssboy 14\0 \0MSV Duisburg Freak\0 \0msv-fan 1988\0 \0mucke1106\0  \0Mullemaus58\0 \0Mupra1\0 \0Musicman-LP\0 \0MusikparkA67\0 \0My Lucky\0  \0mylover\0 \0Mörser XS\0 \0N3cR1d\0 \0nachtfälkin\0 \0nally13\0  \0Nashy\0 \0Natty02\0 \0nefge\0 \0Neron XYZ\0 \0nervzwerg22\0  \0Nessa2006\0 \0Neumühlerbaby08\0 \0Nevus\0 \0new polskaboy\0 \0NFS  Spieler\0 \0Nic 100\0 \0niceangel123\0 \0niceone-de\0 \0NickiDO\0  \0niedliches Stück DNA\0 \0NiennaFallasion\0 \0nightmare 2000\0  \0NikeBoy-NRW\0 \0nobodydaniel\0 \0Nos14\0 \0NosstrEAm\0 \0NupeNöt\0  \0nw-jacky\0 \0Nyanpi\0 \0o0obottroperboyo0o\0 \0O&gt;&gt;@@@ EsMeR  DelUxE @@@&lt;&lt;O\0 \0Ocean Girl +rhb+\0 \0Oellinger\0 \0ohh\0  \0oifix\0 \0olli2604\0 \0OneLoveDenim\0 \0onkel dargo\0 \0onkel sam1\0  \0oO Destroy Oo\0 \0oO emotional Oo\0 \0oO+Mellii+Oo\0  \0OoOEinsamerEngelOoO\0 \0optik crw\0 \0Orangenwodka\0 \0Otterfutter\0  \0over 14\0 \0oX-Ice&amp;Chocolate\0 \0P O C A H O N T A S x3\0  \0paddelboot\0 \0Pali\0 \0Pan13\0 \0panter04\0 \0Panzer103\0 \0papa09\0  \0partyguy92\0 \0partymouse87\0 \0Pascal333\0 \0pascalrichter\0  \0pati-m-15-berlin\0 \0patrick 6666\0 \0Patrinho9\0 \0Pattex-chan\0  \0pattkid\0 \0Patymädchen19\0 \0Paula14\0 \0peacemaker81\0  \0Peeper2707\0 \0pey123\0 \0Pfisti-d\0 \0Pfundskerl\0 \0Phililein94\0  \0phoenixsoul w\0 \0PHP4ever\0 \0PhönixZ\0 \0Picaldi@Bushido\0  \0Pickpocked\0 \0Picture 07\0 \0piiTbuLL@Rac0r\0 \0pink devil 6\0  \0PiNkChEn &lt;3\0 \0Pinklady2003\0 \0pitbull germany 1982\0  \0Playaa83\0 \0playar777\0 \0player 87\0 \0Player1990Ge\0 \0Plus que ma  vie\0 \0PoisonAngel\0 \0Polareis\0 \0police21\0 \0policemann\0  \0Poomuckel\0 \0poseidon06\0 \0Power and Glory\0 \0powertina\0  \0Prettywoman38\0 \0Prince of Love\0 \0Propeller\0 \0Proud princess x3\0  \0prudence piper\0 \0psx3\0 \0public-enemy\0 \0pudeldame\0 \0Pumer  123456789\0 \0Punk-Rocker3\0 \0Punnika545\0 \0PuschiGirl 13\0  \0puschy963\0 \0qballleipzig\0 \0Rache &lt;3\0 \0Rambo56\0  \0RamboBoy124\0 \0raphi van der vaart\0 \0rapmaster51\0 \0Rapunzel100\0  \0Ray00731\0 \0Ray1979\0 \0rbksani1981\0 \0RdZicke\0 \0Real devil\0  \0Realplayagirl2000\0 \0Red Diablo 2\0 \0redbull2380\0 \0Reddiamant\0  \0Reenbogen\0 \0Refiused\0 \0regiosprinter\0 \0Rene2710\0  \0Rennelefant\0 \0RheingauerMagic17w\0 \0RigoSH\0 \0Rihanna-Mädel\0  \0Riko12\0 \0Road007\0 \0Rob 6\0 \0Rocci\0 \0Rockcat\0  \0Romantic18mBln\0 \0Romeo021\0 \0Ron2001\0 \0RonaldoXXL\0 \0rose1110\0  \0Rose169\0 \0rosenverkäuferin8\0 \0Rostocker Pils\0 \0Ruffian\0  \0Rufus1989\0 \0Ruhmkugel\0 \0runner power 22\0 \0Räiden\0 \0S T R A ß 3  N J U N G 3\0 \0S&amp;W357\0 \0S-Carlos\0 \0SaBiene 42\0 \0Sadyyy\0  \0Salemann\0 \0sammie 87\0 \0Samtha\0 \0sandhase1971\0 \0saney\0  \0Sanny2006\0 \0santo412\0 \0saskiaos\0 \0Satoshi Blue\0 \0scanreg\0  \0schalkerboy02\0 \0scheinchen1\0 \0SchildkröteMitKleptomanie\0  \0schlechtes VorI3ild\0 \0Schlumpfine222\0 \0schmuckstück04\0  \0schmumimu\0 \0Schmusetigga91\0 \0Schneecristal\0 \0schnegsche4ever\0  \0schnittchen1987\0 \0schnittedelüxe\0 \0schnuckel44328\0  \0Schnuckibär3\0 \0schnuggi gth\0 \0schnulle82\0 \0Schnüffel15 01\0  \0Schuechterne-1989\0 \0Schw3r 3rzi3hbar\0 \0Schwabacher\0 \0schwarzes  Schäfchen 93\0 \0Schäfer@1992\0 \0scream ac\0 \0screamyboy123\0  \0Secki\0 \0Seele-ganz-allein\0 \0Seli7\0 \0semy008\0  \0SenseiKakashi87\0 \0sesshi-groupie\0 \0shining wizzard\0  \0Shiningman\0 \0Shiningstar43\0 \0Shuichi Amazaki\0 \0sibal\0 \0Sido  Gold 02\0 \0sido-49\0 \0sido44894\0 \0sillyangel\0 \0SiLvErDeSertEagLe\0  \0Silverstorm93\0 \0simba&gt;w\0 \0simi aus rosenheim\0 \0simon1904\0  \0SimplePlan1992\0 \0SimpsonsFreak92\0 \0Sinnercgn\0 \0Sir Drako\0 \0Sir  Preiz93\0 \0SirDark\0 \0Sissi 80\0 \0Sister66\0 \0Sjlena\0  \0Skateboarder 4-Life\0 \0Skiangel16\0 \0Skorpi007\0 \0slaveBrit\0  \0Slider82\0 \0slumber\0 \0smart473\0 \0smarty1404\0  \0Smily@knuddels33+de\0 \0Smoonie\0 \0snookerin\0 \0snupygirl16\0  \0SoCuteSunniii&lt;3\0 \0Soft-Air King\0 \0Soldat basti\0  \0sOliver13403\0 \0sonnenblume800\0 \0Sonny Black - Zukunft Pt 2\0  \0SoulJessy\0 \0SpandauerSweetBoy\0 \0Speedster-Fan\0 \0spegham15\0  \0Spencer12567\0 \0Sperrzone17\0 \0Spider@45\0 \0spiderman268\0  \0splash636\0 \0Staartsfeind\0 \0Stars dont shine forever\0  \0StarvinOne\0 \0Steeldreamman\0 \0Steelix\0 \0Stephan1992\0 \0Stephi\0  \0Sternenwaechter\0 \0sternschnuppe555\0 \0sterrnschnuppe\0  \0Stiffler2003\0 \0stoffeltier\0 \0Stormboy 14\0 \0strawberry80\0  \0Streetboy86\0 \0streetstylegee\0 \0Strikee\0 \0Struppi 17\0 \0sTyLer  deLuxe &lt;3\0 \0Stylerin Magda\0 \0Stürmische liebe\0 \0suesses  baerchen\0 \0summer brise\0 \0summertime313\0 \0SumoNakata\0  \0Sumsum86\0 \0sunlady 38\0 \0sunnyboy147147147\0 \0Sunnyboy1478963\0  \0Sunnyboyy17\0 \0SunnySchadz&lt;3\0 \0SunnyTanja25\0  \0supersüßeMelanie\0 \0sussses girli\0 \0SuzieQ\0 \0Suzo\0 \0sveiny14\0  \0Sweeden\0 \0sweedy14\0 \0Sweet Mama 37\0 \0sweet-chica24\0  \0sweet-sun-girly91\0 \0SwEeT&lt;18&gt;LaDy\0 \0sweetangel20\0  \0sweetesdream\0 \0SweetLittleSixteen001\0 \0sweety JoJo\0  \0sweetyboy3190\0 \0SweetyKagome\0 \0SweetySchnuffel\0 \0System Of A  D0wn B0ii\0 \0Systemlord-Anu\0 \0süsse hat immer pech007\0  \0süsseblonde\0 \0SüsseKathy1987\0 \0süssereinsamerboy20\0  \0süsses-engel-girl\0 \0süße doro\0 \0Süße Katha\0 \0süße  zuckerschnegge\0 \0süßertiger1991\0 \0süßes vlauschi &lt;3\0 \0T-Com  Chatter 1992\0 \0tamila131\0 \0Tangagirly1991\0 \0tdu89\0 \0teddi 23\0  \0teddybear 01\0 \0Teddytier\0 \0Telechatter\0 \0tessy3746\0 \0teufel  des ferderbens\0 \0teufel1981\0 \0Teufelchen Nic\0 \0Teufelchen1981\0  \0TH 4-neva\0 \0The biggest Batze fan\0 \0The Butchers\0 \0The Cursed\0  \0the golden hawk\0 \0The Hurricane\0 \0the löwenbräu\0 \0The  Punisher84\0 \0the-best-boy-4ever\0 \0TheDarkSun\0 \0TheHitcher1988\0  \0TheOneSence\0 \0TheRumor\0 \0thommy-emd\0 \0Thunder2789\0  \0ThunderBurn\0 \0thunscor\0 \0Tigerli\0 \0timme82\0 \0TinchenInLove\0  \0Tine333\0 \0Tine91\0 \0Tinky -Winky66\0 \0Tino18HB\0 \0Tjeri\0  \0Tjuna\0 \0Tobias1094\0 \0tobo74\0 \0Toby1991\0 \0Tomy Angelo\0  \0tomyboy 20\0 \0Toonyyy\0 \0Topkeeper\0 \0Toptrottel\0 \0Torfi40\0  \0Tornado17\0 \0tornado2414\0 \0toto1986\0 \0toudy\0 \0Toxique\0  \0Trance\0 \0Trauriges herz 20\0 \0Traxxtracid\0 \0treetsmitohren\0  \0TRex1\0 \0Tribalboy69\0 \0Trinitron90\0 \0trissman\0 \0triziana\0  \0TränenLügenNie&lt;3\0 \0Träumerlle\0 \0TTFan\0 \0u n g e k u e s s t  &lt;3\0 \0U977\0 \0Ultimatebubi\0 \0ULTRAKONKRET\0 \0Undertaker14991\0  \0UniiiQu3 LaaadY\0 \0unionfreaky1\0 \0us5 fan014\0 \0UsherBIG015\0  \0Vampire183\0 \0VampireLady-&gt;Lilith\0 \0Van hellsing 1503\0  \0VanHelllsing\0 \0VaniBonn\0 \0Vanilla-Sox\0 \0VaNiLLaSky\0 \0vanni13  1992\0 \0Vany06\0 \0Vattern\0 \0VerdammteFreakGöre\0 \0verfaulter  entweiher\0 \0Verrueckte Prinzessin &lt;3\0 \0Vicktori\0 \0Vipersnake\0  \0Vodka + BLoodyOranqe\0 \0voice-of-soul\0 \0Volkswagen22\0 \0Volvic für  Unicef\0 \0vw für immer\0 \0Waron\0 \0wassermann31\0  \0weihnachtsengel02\0 \0Weimarer Legende\0 \0welpe15\0 \0Werderfan-16\0  \0WerEWulF\0 \0Werwolfjäger\0 \0When I Get Older&lt;33\0  \0WhiteAngel016\0 \0WieselMaster\0 \0wiigamer00\0 \0WildTeen\0  \0willybull1\0 \0winni-puh53\0 \0WiNo2k\0 \0wiu123\0 \0WoB BoY 24\0  \0wolfi04\0 \0Wolfsfell\0 \0Wonder Boy miri\0 \0wonderfoll\0  \0WordlifeLady\0 \0Worldofhiphop93\0 \0wotan89\0 \0wundersame\0  \0wuppertaler nett\0 \0wuptität\0 \0Wühlfried\0 \0x 1n51d3r x\0 \0x Addy  &lt;3\0 \0x Deluxe Boy x3\0 \0x Dutch Angel x\0 \0x Electro Love x3\0  \0x F A M O U Z S P L 4 Y A\0 \0x I&gt;BlinQBlinQ-Lady&lt;I +\0 \0x Ich  Liebe Siie &lt;3\0 \0x Lu-KeY &lt;c&gt;\0 \0x PriinZ Oleg + &lt;3\0 \0x  s0uh siiick x\0 \0x Your Rescue &lt;3\0 \0x-Schnuffeline-x\0  \0x-X-Kytty-X-x\0 \0x0 SponQeBob &lt;3\0 \0X0XLove0AngelX0X\0 \0x3 EnqeL  0hnE FlüqeL x3\0 \0x&gt;ManU&lt;x\0 \0XblueSky\0 \0XChemoX\0 \0xD  Fününününününüh\0 \0Xell\0 \0Xflammendes-HerzX\0 \0xghost13x\0 \0Xion  82\0 \0xKurt Cobainx\0 \0Xon\0 \0xschoko-shakex\0 \0Xx @ Haul @ xX\0  \0xX Atze Kai Xx\0 \0Xx Cinderella 90 xX\0 \0xX Krüm3l Xx\0 \0Xx Steffis  Haribo xX\0 \0xx-bloodroses-xx\0 \0xX7RiberyxX\0 \0xxbabyboy1971xx\0  \0XxBlacky89xX\0 \0XxBlueWavesxX\0 \0Xxchiller1986xX\0  \0xXFreestyler&lt;&amp;&gt;KönigXx\0 \0xXklene-RockerinXx\0 \0XXL  Bosanac\0 \0XxmagicbunnyxX\0 \0xXsmartlXx\0 \0XxSpirit of DragonxX\0  \0xXTeilzeit EngelXx\0 \0xXWhiteAngelyXx\0 \0xxx Dreamer00 xxx\0  \0xXxPlayBoy51xXx\0 \0xXYour HoneyXx\0 \0Xykar\0 \0xyshadowyx\0  \0XYZNudääL\0 \0Yipsie\0 \0youseeme\0 \0Yumex\0 \0yusuf94\0  \0Zatnikitel\0 \0zauberin21\0 \0zauberschildi\0 \0zeitritter\0  \0Zenifelie\0 \0Zetty-t5\0 \0zuckerschnute2010\0 \0zZ-Ragnarok-Zz\0 \0Äh  äh äh - Socke &lt;3\0 \0ähm-nein&amp;wieso-überhaupt\0
</div>
</div>
</div>Zusammen <b>mit Fif</b> haben wir das eben analysiert:<br />
<br />
0 - Opcode<br />
1 - Titel der Wahl (im Popup)<br />
2 - Verfügbare positive Stimmen<br />
3 - Verfügbare negative Stimmen<br />
4 - Maximale positive Stimmen pro Nick<br />
5 - Maximale negative Stimmen pro Nick<br />
6 - Anzahl der Teilnehmer<br />
7 - Verfügbare Nicks in der Datenbank, getrennt mit \0 \0</div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Diebspiel</dc:creator>
			<guid isPermaLink="true">protokoll-120/input-p-wahlfenster-30382</guid>
		</item>
		<item>
			<title>Begriffserklärungen</title>
			<link>protokoll-120/begriffserklaerungen-30041?goto=newpost</link>
			<pubDate>Sat, 30 Jul 2011 04:49:31 GMT</pubDate>
			<description>Da man hier immer wieder Begriffe wie Paket, Token und Opcode durcheinander bringt, hab ich mal eine kleine Übersicht für euch zusammen gestellt. Ich...</description>
			<content:encoded><![CDATA[<div>Da man hier immer wieder Begriffe wie Paket, Token und Opcode durcheinander bringt, hab ich mal eine kleine Übersicht für euch zusammen gestellt. Ich hoffe, dass es ist nicht zu kompliziert ist und ich durch diesen Thread einige Missverständnisse aus dem Weg räumen kann. Wenn mir nachträglich noch was einfällt, werde ich es selbstverständlich ergänzen.<br />
<br />
<b>Paket</b><br />
Client und Server sprechen nicht etwa Deutsch oder Englisch, sondern eine eigene Sprache. Sie kommunizieren mit Bytes, welche aber nicht einzeln verschickt werden, sondern als Paket. Bytes - und so auch Pakete - drückt man am besten in Hex aus, Bsp.: 9D A4 EE 84 88. Bei Knuddels ergeben die Bytes zusammengefügt einen String - 1999 halt, also kann man es auch in ASCII ausdrücken. Bei einem Paket aber, dem Module-Paket, ist das nicht der Fall, hier heißt es dann bspw. einfach 5 statt &quot;Hallo&quot;. Bei dem Popup-Paket ist es <i>teilweise</i> auch so.<br />
<br />
<b>Delimiter</b><br />
Oder anders ausgedrückt: Trennzeichen. Heutzutage braucht man Delimiter eigentlich gar nicht mehr, da Client und Server genau wissen wie lang das Paket oder einzelne Teile des Pakets sind, statt einem Trennzeichen stellt man hierzu ein Byte voran welches die Länge angibt. Aber bei Knuddels hat sich das noch nicht durchgesetzt, um das Paket in verschiedene Teile zu splitten verwenden sie das Null Char (Oktal: \0 bzw. \000, Hex: 00) als Delimiter.<br />
<br />
<b>Token</b><br />
Token sind die einzelnen Teile eines Pakets welche durch einen Delimiter getrennt werden.<br />
<br />
<b>Opcode</b><br />
Der Opcode (Operation Code) ist der erste Teil des Pakets, bei Knuddels ebenfalls durch einen Delimiter vom Rest getrennt, welcher angibt um welches Paket es sich handelt.<br />
<br />
<b>Paketname</b><br />
Der Paketname ist der Name des durch den Opcode gekennzeichneten Pakets. Wie Knuddels die Pakete nennt bleibt uns vorenthalten, aber wir können ihnen ja eigene Namen verpassen. Das einfachste wäre bspw. das Paket welches durch den Opcode &quot;e&quot; gekennzeichnet wird e-Paket zu nennen, oder um es einen Namen zu verpassen welcher das Paket etwas besser beschreibt: Message-Paket.<br />
<br />
<b>Input</b><br />
Vom Client aus bezeichnen wir die Pakete als Input, die der Server zum Client sendet. Vom Server aus (relevant für Emulatoren) sind es die, die der Client zum Server sendet.<br />
<br />
<b>Output</b><br />
Wie man sich denken kann ist Output das Gegenteil von Input, sprich die Pakete die vom Client aus gesehen von Client zu Server und vom Server aus gesehen von Server zu Client gesendet werden.<br />
<br />
<br />
<font color="Blue"><font size="5">KLogger</font></font><br />
<br />
<b>Download:</b> Source ist mal wieder nicht mehr vorhanden, aber ich schreib die Tage eine neue Version und stell euch diese dann hier zur Verfügung.<br />
<br />
Der KLogger ist ein manipulierter Client (Input entspricht also Server-&gt;Client und Output entspricht Client-&gt;Server) zum Loggen von Paketen. Pakete werden sowohl als Hex als auch als Ascii dargestellt, mit Ausnahme von Sonderzeichen welche in der Ascii-Darstellung durch einen Punkt ersetzt werden. Um zu identifizieren um welches Zeichen es sich handelt muss man sich die Hex-Darstellung anschauen und gegebenfalls mit einen Hex Converter arbeiten.<br />
<br />
<b>Beispiel</b><br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&gt;&gt; 65 00 2F 4B 61 63 6B 70 6F 6F 00 54 65 73 74<br />
e.Knuddels.Test</code><hr />
</div>Das ist unser Paket, als Hex und Ascii dargestellt. &gt;&gt; kennzeichnet, dass es sich um Output (Client-&gt;Server) handelt. Der Hex-Darstellung können wir entnehmen, dass es sich bei den Punkten um das Null Char (00) handelt, dies ist der Delimiter. Also sind e, Knuddels und Test unsere Tokens. e ist das erste Token, welches das Paket kennzeichnet, hierbei handelt es sich um das Message-Paket. Die beiden anderen Tokens enthalten weitere Informationen, z. B. ist Test die Nachricht und Knuddels der Channel in dem ich die Nachricht geschickt habe.</div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Flav</dc:creator>
			<guid isPermaLink="true">protokoll-120/begriffserklaerungen-30041</guid>
		</item>
		<item>
			<title><![CDATA[[Input] a - Channel Frame]]></title>
			<link>protokoll-120/input-a-channel-frame-30191?goto=newpost</link>
			<pubDate>Wed, 27 Jul 2011 15:57:56 GMT</pubDate>
			<description>1. Opcode 
\0 
2. Channel Name 
\0 
3. Nickname 
\0 
4. Scrollspeed 
\0 
5. Breite 
\0</description>
			<content:encoded><![CDATA[<div>1. Opcode<br />
\0<br />
2. Channel Name<br />
\0<br />
3. Nickname<br />
\0<br />
4. Scrollspeed<br />
\0<br />
5. Breite<br />
\0<br />
6. Höhe<br />
\0<br />
7. Position X<br />
\0<br />
8. Position Y<br />
\0<br />
9. Background<br />
\0<br />
10. Background Ausrichtung<br />
\0<br />
11. ?<br />
\0<br />
12. Schriftfarbe<br />
\0<br />
13. Hintergrundfarbe<br />
\0<br />
14. Rotton<br />
\0<br />
15. Blauton<br />
\0<br />
16. Schriftgröße<br />
\0<br />
17. Zeilenabstand<br />
\0<br />
18. Schriftgröße (Userlist)<br />
\0<br />
19. Hintergrundfarbe (Userlist)<br />
\0<br />
20. ?<br />
\0<br />
21. Value der Combobox<br />
\0<br />
22. Combobox anzeigen<br />
\0<br />
23. Max. Nachrichtenlänge<br />
\0<br />
24. Hilfe Button<br />
\0<br />
25. Report Button<br />
\0<br />
26. Feedback Button<br />
\0<br />
27. Search Button<br />
\0<br />
28. ?<br />
\0<br />
29. ?<br />
<br />
Die letzten beiden Tokens scheinen irgendwelche Keys zu sein, ich kann ja nochmal im Client nachschauen wenn ich die Zeit dazu finde.</div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Flav</dc:creator>
			<guid isPermaLink="true">protokoll-120/input-a-channel-frame-30191</guid>
		</item>
		<item>
			<title><![CDATA[[Input] ! - Fensterschließen]]></title>
			<link>protokoll-120/input--fensterschliessen-30566?goto=newpost</link>
			<pubDate>Wed, 29 Jun 2011 18:08:25 GMT</pubDate>
			<description>Dieses Paket erhält man, wenn ein Fenster geschlossen werden soll, weil man /exit gesendet hat. 
 
 *Paket-Token:* 
Code: 
--------- 
!\0Channel...</description>
			<content:encoded><![CDATA[<div>Dieses Paket erhält man, wenn ein Fenster geschlossen werden soll, weil man /exit gesendet hat.<br />
<br />
 <b>Paket-Token:</b><div style="margin-left:40px"><div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">!\0Channel</code><hr />
</div></div><b>Erklärung der Tokens:</b><br />
 Die Pakete werden durch das \0 (Nullchar) getrennt, also werden auch die Tokens dementsprechend erklärt.<br />
 <br />
<br />
<ul><li style="">Der Paket Token (Paket Name)</li><li style="">Channelfenster, welches geschlossen werden soll</li></ul></div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Fronjee</dc:creator>
			<guid isPermaLink="true">protokoll-120/input--fensterschliessen-30566</guid>
		</item>
		<item>
			<title><![CDATA[[OUTPUT] k - Channelliste Kategorie wechsel!]]></title>
			<link>protokoll-120/output-k-channelliste-kategorie-wechsel-31068?goto=newpost</link>
			<pubDate>Mon, 06 Jun 2011 15:59:13 GMT</pubDate>
			<description><![CDATA[Code: 
--------- 
k\00 
--------- 
k => Tokenchar 
0 => Kategorie (in dem Fall, alle Channel) 
__________________ 
0 => Alle Channel 
1 => Eva...]]></description>
			<content:encoded><![CDATA[<div><div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">k\00</code><hr />
</div>k =&gt; Tokenchar<br />
0 =&gt; Kategorie (in dem Fall, alle Channel)<br />
__________________<br />
0 =&gt; Alle Channel<br />
1 =&gt; Eva Hermann Channel<br />
2 =&gt; <br />
3 =&gt; Flirt<br />
4 =&gt; Ü20<br />
5 =&gt; Under 18<br />
6 =&gt; Lokcalchannel<br />
7 =&gt; Games<br />
8 =&gt; Classic<br />
9 =&gt; Thementalk<br />
10 =&gt; Cardgames<br />
11 =&gt; iPhone<br />
12 =&gt; MyChannel</div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>silently</dc:creator>
			<guid isPermaLink="true">protokoll-120/output-k-channelliste-kategorie-wechsel-31068</guid>
		</item>
		<item>
			<title><![CDATA[[Input] *]]></title>
			<link>protokoll-120/input-29726?goto=newpost</link>
			<pubDate>Mon, 06 Jun 2011 15:47:00 GMT</pubDate>
			<description>Eben habe ich gemerkt, Knuddels hat ein neues Token, nämlich das ** *Token. 
 
Aufbau: 
 
Code: 
--------- 
*\0adsenabled|T 
--------- 
Erhält man...</description>
			<content:encoded><![CDATA[<div>Eben habe ich gemerkt, Knuddels hat ein neues Token, nämlich das <b>* </b>Token.<br />
<br />
Aufbau:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">*\0adsenabled|T</code><hr />
</div>Erhält man direkt, nachdem man den Chat berteten hat (einmalig nach dem Betreten eines Channels).<br />
<br />
Wenn man es ins Deutsche übersetzt heißt es, ob <b>Werbung im Chat aktiviert ist</b>, oder nicht. T (TRUE) wenn Werbung aktiviert ist, F (FALSE), wenn nicht. Ich denke mal, bestimmte Benutzergruppen in Knuddels sehen nun keine Werbung mehr oder man kann sich in naher Zukunft Werbefreiheit kaufen.</div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Diebspiel</dc:creator>
			<guid isPermaLink="true">protokoll-120/input-29726</guid>
		</item>
		<item>
			<title><![CDATA[[Diskussion] Erkennung von Bots 2006]]></title>
			<link>protokoll-120/diskussion-erkennung-bots-2006-29727?goto=newpost</link>
			<pubDate>Sun, 24 Apr 2011 20:38:59 GMT</pubDate>
			<description>Hallo, 
 
Die Aktion vom *17.11.2006 *ist schon fast vergessen, für zukünftige Zeiten aber vielleicht sehr interessant. In diesem Thread...</description>
			<content:encoded><![CDATA[<div>Hallo,<br />
<br />
Die Aktion vom <b>17.11.2006 </b>ist schon fast vergessen, für zukünftige Zeiten aber vielleicht sehr interessant. In <a href="http://forum.knuddels.de/ubbthreads.php?ubb=showflat&amp;Number=946651&amp;page=1" target="_blank" rel="nofollow">diesem Thread</a> kündigt Holgi das Vorgehen an. Interssant ist die erste UND die letzte Seite dieses Themas! Wenn man sich den Thread genauer ansieht (man muss mindestens 3 Mal lesen) kann man erkennen, dass es nur um Kisse geht.<br />
<br />
Weiter heißt es:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			<div>
				Zitat von <strong>Holgi</strong>
				
			</div>
			<div class="message">wir die Verwendung von Fremdclients erkennen können</div>
			
		<hr />
	</div>
</div>Interessant. Warum wurde dann die Aktion nur einmal durchgezogen, an einem Tag und nicht jeden Tag automatisch?<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Zitat:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			<div>
				Zitat von <strong>Holgi</strong>
				
			</div>
			<div class="message">Wenn die Bots sich eindeutig an unser Protokoll hielten, wären auch alle beabsichtigten Küsse angekommen.</div>
			
		<hr />
	</div>
</div>Dieser Satz macht - auf heute betrachtet - nicht viel Sinn. Dieser Satz heißt also so viel wie &quot;Es wurden Kisse gesendet, die sind aber nicht angekommen&quot;, wie kann das sein? Auch wenn man unsichtbar kisst, was früher noch locker möglich war, kommen die Kisse ja an. Logische Schlussfolgerung ist also: Die Bots hatten einen Fehler, als sie zum Knuddels-Server verbunden haben. Womöglich hat das mit dem &quot;Ping&quot; gereicht - hier ist aber ein Widerspruch zu oben, dann wären alle Botter gesperrt worden und nicht nur die Kissbotter. Also muss es etwas mit dem Kissen zu tun haben. Damals haben sich die Bots ja mit vielen Clients unendlich oft eingeloggt, da es keine IP-Sperre gab. So konnten Kisse schnell erzielt werden. Demnach hat der Server einfach geloggt, wenn es EXTREM viele Logins gab und die User, die in diesem Channel online waren. Das ist reine Spekulation, wenn man logisch schlussfolgert, wäre dies die für mich einfachste und beste Erklärung.<br />
<br />
Die Nicks wurden dann halt für ein Tag gesperrt und es in der Admininfo vermerkt. Die Kisse wurde abgezogen und die Nicks erhielten diese Mail (danke an Taskamanger):<br />
<br />
<img src="https://u-labs.de/forum/attachment.php?attachmentid=6494&amp;d=1392044063" border="0" alt="Name:  24-04-201122-26-24t79o.png
Hits: 721
Größe:  8,1 KB" class="thumbnail" style="float:CONFIG" /><br />
<br />
Dieser Thread ist als Diskussion gedacht, weitere Ideen und Informationen aus dieser Zeit wären gut.<br />
<br />
Grüße~</div>


	<div style="padding:10px">

	

	
		<fieldset class="fieldset">
			<legend>Angehängte Grafiken</legend>
				<div style="padding:10px">
				<img class="attach" src="https://u-labs.de/forum/attachment.php?attachmentid=6494&amp;stc=1&amp;d=1392044063" alt="" />&nbsp;
			</div>
		</fieldset>
	

	

	

	</div>
]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Diebspiel</dc:creator>
			<guid isPermaLink="true">protokoll-120/diskussion-erkennung-bots-2006-29727</guid>
		</item>
		<item>
			<title>n - Login befehl</title>
			<link>protokoll-120/n-login-befehl-30307?goto=newpost</link>
			<pubDate>Sun, 17 Apr 2011 22:29:33 GMT</pubDate>
			<description>Hi there 
Leider finde ich nirgends eine beschreibung dieses Tokens. Mag mir wer helfen? 
Folgende Infos sind verfügbar(aus der KNLIB): 
 
Code:...</description>
			<content:encoded><![CDATA[<div>Hi there<br />
Leider finde ich nirgends eine beschreibung dieses Tokens. Mag mir wer helfen?<br />
Folgende Infos sind verfügbar(aus der KNLIB):<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code"><a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://mscorlib:2.0.0.0:b77a5c561934e089/System.String" target="_blank" rel="nofollow">string</a> <b>path</b> = <font color="#800000">&quot;applet.jar&quot;</font>;&nbsp; &nbsp;  <font color="#1000a0">if</font> (!<a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://mscorlib:2.0.0.0:b77a5c561934e089/System.IO.File" target="_blank" rel="nofollow">File</a>.<a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://mscorlib:2.0.0.0:b77a5c561934e089/System.IO.File/Exists%28String%29:Boolean" target="_blank" rel="nofollow">Exists</a>(path))&nbsp; &nbsp;  {&nbsp; &nbsp; &nbsp; &nbsp;  <a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://mscorlib:2.0.0.0:b77a5c561934e089/System.Byte" target="_blank" rel="nofollow">byte</a>[] <b>applet</b> = <a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://KNLib:1.0.0.0/A.c40fbae316204f75158b8d4d7c0453355" target="_blank" rel="nofollow">c40fbae316204f75158b8d4d7c0453355</a>.<a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://KNLib:1.0.0.0/A.c40fbae316204f75158b8d4d7c0453355/property:applet:Byte%5b%5d" target="_blank" rel="nofollow">applet</a>;&nbsp; &nbsp; &nbsp; &nbsp;  <a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://mscorlib:2.0.0.0:b77a5c561934e089/System.IO.FileStream" target="_blank" rel="nofollow">FileStream</a> <b>stream1</b> = <a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://mscorlib:2.0.0.0:b77a5c561934e089/System.IO.File" target="_blank" rel="nofollow">File</a>.<a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://mscorlib:2.0.0.0:b77a5c561934e089/System.IO.File/Create%28String%29:System.IO.FileStream" target="_blank" rel="nofollow">Create</a>(path);&nbsp; &nbsp; &nbsp; &nbsp;  <a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://mscorlib:2.0.0.0:b77a5c561934e089/System.IO.FileStream" target="_blank" rel="nofollow">FileStream</a> <b>stream</b> = stream1;&nbsp; &nbsp; &nbsp; &nbsp;  stream.<a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://mscorlib:2.0.0.0:b77a5c561934e089/System.IO.Stream/Write%28Byte%5b%5d,Int32,Int32%29" target="_blank" rel="nofollow">Write</a>(applet, <font color="#800000">0</font>, applet.<a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://mscorlib:2.0.0.0:b77a5c561934e089/System.Array/property:Length:Int32" target="_blank" rel="nofollow">Length</a>);&nbsp; &nbsp; &nbsp; &nbsp;  stream.<a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://mscorlib:2.0.0.0:b77a5c561934e089/System.IO.Stream/Close%28%29" target="_blank" rel="nofollow">Close</a>();&nbsp; &nbsp;  }&nbsp; &nbsp;  <a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://System:2.0.0.0:b77a5c561934e089/System.Diagnostics.Process" target="_blank" rel="nofollow">Process</a> <b>process</b> = <font color="#1000a0">new</font> <a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://System:2.0.0.0:b77a5c561934e089/System.Diagnostics.Process/.ctor%28%29" target="_blank" rel="nofollow">Process</a> {&nbsp; &nbsp; &nbsp; &nbsp;  <a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://System:2.0.0.0:b77a5c561934e089/System.Diagnostics.Process/property:StartInfo:System.Diagnostics.ProcessStartInfo" target="_blank" rel="nofollow">StartInfo</a> = { <a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://System:2.0.0.0:b77a5c561934e089/System.Diagnostics.ProcessStartInfo/property:FileName:String" target="_blank" rel="nofollow">FileName</a> = <font color="#800000">&quot;javaw&quot;</font> }&nbsp; &nbsp;  };&nbsp; &nbsp;  <a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://mscorlib:2.0.0.0:b77a5c561934e089/System.String" target="_blank" rel="nofollow">string</a> <b>text1</b> = <font color="#800000">&quot;-cp &quot;</font> + path + <font color="#800000">&quot; Bridge&quot;</font>;</code><hr />
</div>-&gt; Es wird eine applet.jar gedumpt(war zu faul sie zu dumpen heute ),vermutlich isses die aktuelle Bin von Knd<br />
-&gt; sie wird mit dem befehl Bridge ausgeführt......ka was das bedeutet,denke aber das des mit dem folgenden Code zu tun hat:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp;  startInfo.<a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://System:2.0.0.0:b77a5c561934e089/System.Diagnostics.ProcessStartInfo/property:RedirectStandardInput:Boolean" target="_blank" rel="nofollow">RedirectStandardInput</a> = <font color="#800000">true</font>;&nbsp; &nbsp;  <a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://System:2.0.0.0:b77a5c561934e089/System.Diagnostics.ProcessStartInfo" target="_blank" rel="nofollow">ProcessStartInfo</a> <b>info2</b> = process.<a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://System:2.0.0.0:b77a5c561934e089/System.Diagnostics.Process/property:StartInfo:System.Diagnostics.ProcessStartInfo" target="_blank" rel="nofollow">StartInfo</a>;&nbsp; &nbsp;  info2.<a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://System:2.0.0.0:b77a5c561934e089/System.Diagnostics.ProcessStartInfo/property:RedirectStandardOutput:Boolean" target="_blank" rel="nofollow">RedirectStandardOutput</a> = <font color="#800000">true</font>;&nbsp; &nbsp;  <a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://System:2.0.0.0:b77a5c561934e089/System.Diagnostics.ProcessStartInfo" target="_blank" rel="nofollow">ProcessStartInfo</a> <b>info3</b> = process.<a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://System:2.0.0.0:b77a5c561934e089/System.Diagnostics.Process/property:StartInfo:System.Diagnostics.ProcessStartInfo" target="_blank" rel="nofollow">StartInfo</a>;&nbsp; &nbsp;  info3.<a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://System:2.0.0.0:b77a5c561934e089/System.Diagnostics.ProcessStartInfo/property:UseShellExecute:Boolean" target="_blank" rel="nofollow">UseShellExecute</a> = <font color="#800000">false</font>;&nbsp; &nbsp;  <a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://mscorlib:2.0.0.0:b77a5c561934e089/System.Boolean" target="_blank" rel="nofollow">bool</a> <b>flag2</b> = process.<a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://System:2.0.0.0:b77a5c561934e089/System.Diagnostics.Process/Start%28%29:Boolean" target="_blank" rel="nofollow">Start</a>();&nbsp; &nbsp;  <a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://mscorlib:2.0.0.0:b77a5c561934e089/System.IO.StreamWriter" target="_blank" rel="nofollow">StreamWriter</a> <b>standardInput</b> = process.<a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://System:2.0.0.0:b77a5c561934e089/System.Diagnostics.Process/property:StandardInput:System.IO.StreamWriter" target="_blank" rel="nofollow">StandardInput</a>;&nbsp; &nbsp;  <a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://mscorlib:2.0.0.0:b77a5c561934e089/System.IO.Stream" target="_blank" rel="nofollow">Stream</a> <b>baseStream</b> = standardInput.<a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://mscorlib:2.0.0.0:b77a5c561934e089/System.IO.StreamWriter/property:BaseStream:System.IO.Stream" target="_blank" rel="nofollow">BaseStream</a>;&nbsp; &nbsp;  <font color="#1000a0">this</font>.<a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://KNLib:1.0.0.0/KNLib.Applet/ca9e5b4cbe8bf97521e6fbcc4aa3085c4:System.IO.Stream" target="_blank" rel="nofollow">ca9e5b4cbe8bf97521e6fbcc4aa3085c4</a> = baseStream;&nbsp; &nbsp;  <a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://mscorlib:2.0.0.0:b77a5c561934e089/System.IO.StreamReader" target="_blank" rel="nofollow">StreamReader</a> <b>standardOutput</b> = process.<a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://System:2.0.0.0:b77a5c561934e089/System.Diagnostics.Process/property:StandardOutput:System.IO.StreamReader" target="_blank" rel="nofollow">StandardOutput</a>;&nbsp; &nbsp;  <a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://mscorlib:2.0.0.0:b77a5c561934e089/System.IO.Stream" target="_blank" rel="nofollow">Stream</a> <b>stream3</b> = standardOutput.<a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://mscorlib:2.0.0.0:b77a5c561934e089/System.IO.StreamReader/property:BaseStream:System.IO.Stream" target="_blank" rel="nofollow">BaseStream</a>;&nbsp; &nbsp;  <font color="#1000a0">this</font>.<a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://KNLib:1.0.0.0/KNLib.Applet/c5eca642abca9b8acd3d7da18074cc7bb:System.IO.Stream" target="_blank" rel="nofollow">c5eca642abca9b8acd3d7da18074cc7bb</a> = stream3;&nbsp; &nbsp;  <font color="#1000a0">this</font>.<a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://KNLib:1.0.0.0/KNLib.Applet/cf7aa2493815c0cf3e57d32b43b7f28ef:Object" target="_blank" rel="nofollow">cf7aa2493815c0cf3e57d32b43b7f28ef</a> = <font color="#1000a0">new</font> <a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://mscorlib:2.0.0.0:b77a5c561934e089/System.Object/.ctor%28%29" target="_blank" rel="nofollow">object</a>();</code><hr />
</div>Es werden 2 Pipes erstellt,eine auf STDIN ,eine auf STDOUT. <br />
Danach wird dadrauf die kommunikation aufgebaut. Diese is vergleichbar einfach,sind aber relativ behinderte Stringfunktionen(Obfuscated,deswegen schwer nachzuvollziehen). Denke sie machen nix andres als die Bytearrays rüberzuschicken und dann ne antwort zu erhalten.<br />
Der Interessante Code fängt dann hier an:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp; &nbsp; &nbsp; <font color="#1000a0">if</font> (token.<a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://mscorlib:2.0.0.0:b77a5c561934e089/System.String/StartsWith%28String%29:Boolean" target="_blank" rel="nofollow">StartsWith</a>(<font color="#800000">&quot;n\0&quot;</font>))&nbsp; &nbsp; &nbsp; &nbsp;  {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <font color="#1000a0">if</font> (<font color="#1000a0">this</font>.<a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://KNLib:1.0.0.0/KNLib.KSClient/cda6f3082481ea551eeb637d54b0c9074:String" target="_blank" rel="nofollow">cda6f3082481ea551eeb637d54b0c9074</a> == <font color="#800000">null</font>)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://mscorlib:2.0.0.0:b77a5c561934e089/System.String" target="_blank" rel="nofollow">string</a>[] <b>textArray1</b> = token.<a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://mscorlib:2.0.0.0:b77a5c561934e089/System.String/Split%28Char%5b%5d%29:String%5b%5d" target="_blank" rel="nofollow">Split</a>(<font color="#1000a0">new</font> <a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://mscorlib:2.0.0.0:b77a5c561934e089/System.Char" target="_blank" rel="nofollow">char</a>[<font color="#800000">1</font>]);&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://mscorlib:2.0.0.0:b77a5c561934e089/System.String" target="_blank" rel="nofollow">string</a>[] <b>strArray</b> = textArray1;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <font color="#1000a0">this</font>.<a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://KNLib:1.0.0.0/KNLib.KSClient/c8badabc7fb6b31d89bd8354c857b99a9:String" target="_blank" rel="nofollow">c8badabc7fb6b31d89bd8354c857b99a9</a> = strArray[<font color="#800000">1</font>];&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <font color="#1000a0">this</font>.<a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://KNLib:1.0.0.0/KNLib.KSClient/c228f2bf383c482bfff71b92516496b4d:String" target="_blank" rel="nofollow">c228f2bf383c482bfff71b92516496b4d</a> = strArray[<font color="#800000">2</font>];&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <font color="#1000a0">this</font>.<a href="http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://KNLib:1.0.0.0/KNLib.KSClient/cf4ae2d47b6a471b05046c743d024485a:String" target="_blank" rel="nofollow">cf4ae2d47b6a471b05046c743d024485a</a> = strArray[<font color="#800000">3</font>];&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <font color="#1000a0">return</font>;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  }</code><hr />
</div>Ums kurz zu machen: Wenn ein n-Token kommt,dann schreibt das Programm die infos in 3 verschiedene variablen und dann wird vermutlich irgwo weiter im code(hab die stelle nicht gefunden) eine von den funktionen aufgerufen,die das ganze rüberschickt über die pipes und danach irgwie die antwort parsed.<br />
Jedenfalls,es is zwar sehr schön das alles andere ausser dieser Funktion Dokumentiert ist,aber mich würde brennend interessieren wie man jetzt nen Login hinkriegt :D<br />
<br />
MFG Iruel</div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Iruel</dc:creator>
			<guid isPermaLink="true">protokoll-120/n-login-befehl-30307</guid>
		</item>
		<item>
			<title><![CDATA[[Input] k]]></title>
			<link>protokoll-120/input-k-30921?goto=newpost</link>
			<pubDate>Sat, 16 Apr 2011 20:38:52 GMT</pubDate>
			<description>Das k-Token zeigt ein Popup an, wenn man z. B. ein falsches Passwort beim Login eingegeben hat. Das Paket besteht größtenteils nur aus Bytes und...</description>
			<content:encoded><![CDATA[<div>Das k-Token zeigt ein Popup an, wenn man z. B. ein falsches Passwort beim Login eingegeben hat. Das Paket besteht größtenteils nur aus Bytes und lässt sich deshalb nicht wie die anderen darstellen, ausserdem ist \0 hier kein Delimiter.<br />
<br />
Diese Klasse sollte euch einen kleinen Überblick verschaffen wie das Paket aufgebaut ist, ansonsten schreib ich vielleicht nochmal eine Klasse die das Paket auch lesen kann (wie wir sie auch schon im Client haben).<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">import java.util.ArrayList;<br />
import java.util.List;<br />
import tools.PacketBuilder;<br />
<br />
/**<br />
&nbsp;*<br />
&nbsp;* @author Flav<br />
&nbsp;*/<br />
public class Popup {<br />
&nbsp; &nbsp; private String title, subtitle, message;<br />
&nbsp; &nbsp; private int width, height;<br />
&nbsp; &nbsp; private List&lt;Panel&gt; panels;<br />
&nbsp; &nbsp; private String opcode, parameter;<br />
<br />
&nbsp; &nbsp; public Popup(String title, String subtitle, String message, int width, int height) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; this.title = title;<br />
&nbsp; &nbsp; &nbsp; &nbsp; this.subtitle = subtitle;<br />
&nbsp; &nbsp; &nbsp; &nbsp; this.message = message;<br />
&nbsp; &nbsp; &nbsp; &nbsp; this.width = width;<br />
&nbsp; &nbsp; &nbsp; &nbsp; this.height = height;<br />
&nbsp; &nbsp; &nbsp; &nbsp; panels = new ArrayList&lt;Panel&gt;();<br />
&nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; public void addPanel(Panel panel) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; panels.add(panel);<br />
&nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; public void setOpcode(String opcode, String parameter) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; this.opcode = opcode;<br />
&nbsp; &nbsp; &nbsp; &nbsp; this.parameter = parameter;<br />
&nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; @Override<br />
&nbsp; &nbsp; public String toString() {<br />
&nbsp; &nbsp; &nbsp; &nbsp; PacketBuilder buffer = new PacketBuilder(&quot;k&quot;);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte(0x00);<br />
&nbsp; &nbsp; &nbsp; &nbsp; addString(buffer, title);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; if (opcode != null) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('s');<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addString(buffer, opcode);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addString(buffer, parameter);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; addForeground(buffer, new int[] { 0x00, 0x00, 0x00 });<br />
&nbsp; &nbsp; &nbsp; &nbsp; addBackground(buffer, new int[] { 0xBE, 0xBC, 0xFB });<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte(0xE3);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; // border right<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('E');<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('l');<br />
&nbsp; &nbsp; &nbsp; &nbsp; addString(buffer, &quot;&nbsp; &nbsp; &nbsp; &nbsp;  &quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; addFontStyle(buffer, 'p', 5);<br />
&nbsp; &nbsp; &nbsp; &nbsp; addBackground(buffer, new int[] { 0xBE, 0xBC, 0xFB });<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte(0xE3);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; // border left<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('W');<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('l');<br />
&nbsp; &nbsp; &nbsp; &nbsp; addString(buffer, &quot;&nbsp; &nbsp; &nbsp; &nbsp;  &quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; addFontStyle(buffer, 'p', 5);<br />
&nbsp; &nbsp; &nbsp; &nbsp; addBackground(buffer, new int[] { 0xBE, 0xBC, 0xFB });<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte(0xE3);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('C');<br />
&nbsp; &nbsp; &nbsp; &nbsp; addLayout(buffer, 'B');<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('N');<br />
&nbsp; &nbsp; &nbsp; &nbsp; addLayout(buffer, 'B');<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; // border top<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('N');<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('l');<br />
&nbsp; &nbsp; &nbsp; &nbsp; addString(buffer, &quot; &quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; addFontStyle(buffer, 'p', 5);<br />
&nbsp; &nbsp; &nbsp; &nbsp; addBackground(buffer, new int[] { 0xBE, 0xBC, 0xFB });<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte(0xE3);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; if (subtitle != null) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('C');<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('l');<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addString(buffer, subtitle);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addFontStyle(buffer, 'b', 16);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addForeground(buffer, new int[] { 0x00, 0x00, 0x00 });<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addBackground(buffer, new int[] { 0xE5, 0xE5, 0xFF });<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte(0xE3);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('S');<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('l');<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addString(buffer, &quot; &quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addFontStyle(buffer, 'p', 5);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addBackground(buffer, new int[] { 0xBE, 0xBC, 0xFB });<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte(0xE3);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte(0xE3);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; if (message != null) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('C');<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('c');<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addString(buffer, message);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addFrameSize(buffer, width, height);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addForeground(buffer, new int[] { 0x00, 0x00, 0x00 });<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addBackground(buffer, new int[] { 0xBE, 0xBC, 0xFB });<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addBackgroundImage(buffer, &quot;pics/cloudsblue.gif&quot;, 17);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte(0xE3);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; boolean useBorderLayouts = panels.size() &gt; 1;<br />
&nbsp; &nbsp; &nbsp; &nbsp; int borderLayouts = 0;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; for (Panel panel : panels) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('S');<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (useBorderLayouts) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; borderLayouts++;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addLayout(buffer, 'B');<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('N');<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addLayout(buffer, 'F');<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for (Component component : panel.getComponents()) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ComponentType type = component.getType();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte(type.getValue());<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addString(buffer, component.getText());<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (type == ComponentType.BUTTON) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Button button = (Button) component;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (button.isStyled()) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('c');<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (button.isColored()) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('e');<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (button.isClose()) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('d');<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addFontStyle(buffer, 'p', 16);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (button.isAction()) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('s');<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (button.getCommand() != null) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('u');<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addString(buffer, button.getCommand());<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; } else if (type == ComponentType.TEXT_FIELD) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addSize(buffer, ((TextField) component).getWidth());<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; } else if (type == ComponentType.LABEL) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addFontStyle(buffer, 'p', 16);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; } else if (type == ComponentType.TEXT_AREA) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TextArea textarea = (TextArea) component;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addSize(buffer, textarea.getRows());<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addSize(buffer, textarea.getColumns());<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; switch (textarea.getScrollbars()) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case 0:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('b');<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case 1:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('s');<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case 2:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('w');<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (textarea.isEditable()) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('e');<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addForeground(buffer, component.getForeground());<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addBackground(buffer, component.getBackground());<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte(0xE3);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte(0xE3);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; for (int i = 0; i &lt; borderLayouts; i++) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte(0xE3);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte(0xE3);<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte(0xE3);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; return buffer.toString();<br />
&nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; private static void addSize(PacketBuilder buffer, int size) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('A' + size);<br />
&nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; private static void addString(PacketBuilder buffer, String str) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.writeString(str);<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte(0xF5);<br />
&nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; private static void addFontStyle(PacketBuilder buffer, char weight, int size) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; if (weight != 'p') {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte(weight);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('g');<br />
&nbsp; &nbsp; &nbsp; &nbsp; addSize(buffer, size);<br />
&nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; private static void addLayout(PacketBuilder buffer, char layout) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('p');<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte(layout);<br />
&nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; private static void addFrameSize(PacketBuilder buffer, int width, int height) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('s');<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.writeShort(width);<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.writeShort(height);<br />
&nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; private static void addForeground(PacketBuilder buffer, int[] color) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('f');<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.write(color);<br />
&nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; private static void addBackground(PacketBuilder buffer, int[] color) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('h');<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.write(color);<br />
&nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; private static void addBackgroundImage(PacketBuilder buffer, String image, int position) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.writeByte('i');<br />
&nbsp; &nbsp; &nbsp; &nbsp; addString(buffer, image);<br />
&nbsp; &nbsp; &nbsp; &nbsp; buffer.writeShort(position);<br />
&nbsp; &nbsp; }<br />
}</code><hr />
</div>Wer sich dafür interessiert, sollte sich auch mal <a href="http://k-script.cc/sourcecode-84/java-popup-7941/" target="_blank" rel="nofollow">diesen</a> Thread anschauen.</div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Flav</dc:creator>
			<guid isPermaLink="true">protokoll-120/input-k-30921</guid>
		</item>
		<item>
			<title><![CDATA[[F] Poker Anmelde Befehl oder Token?]]></title>
			<link>protokoll-120/f-poker-anmelde-befehl-token-30086?goto=newpost</link>
			<pubDate>Sat, 02 Apr 2011 11:08:06 GMT</pubDate>
			<description>Hallo, 
 
ich wollte mal wissen ob es in Poker Stundenfinale und Poker Tagesfinale ein Befehl zum anmelden gibt oder ein Token, ich wollte das nur...</description>
			<content:encoded><![CDATA[<div>Hallo,<br />
<br />
ich wollte mal wissen ob es in Poker Stundenfinale und Poker Tagesfinale ein Befehl zum anmelden gibt oder ein Token, ich wollte das nur mal wissen. :confused:<br />
<br />
Mfg Bardi</div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Dbzfreak1337</dc:creator>
			<guid isPermaLink="true">protokoll-120/f-poker-anmelde-befehl-token-30086</guid>
		</item>
		<item>
			<title>. - Spitzname</title>
			<link>protokoll-120/spitzname-30394?goto=newpost</link>
			<pubDate>Tue, 15 Feb 2011 20:18:54 GMT</pubDate>
			<description>Über Input oder Output kann man sich Streiten. :P 
Dieses Paket wird vom Server empfangen, wenn die Spitznamen an den Client überliefert werden...</description>
			<content:encoded><![CDATA[<div>Über Input oder Output kann man sich Streiten. :P<br />
Dieses Paket wird vom Server empfangen, wenn die Spitznamen an den Client überliefert werden sollen.<br />
<br />
<br />
 <b>Paket-Token:</b><div style="margin-left:40px"><div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">.\0Mardcore, K-Script, LOL</code><hr />
</div></div><b>Erklärung der Tokens:</b><br />
 Die Pakete werden durch das \0 (Nullchar) getrennt, also werden auch die Tokens dementsprechend erklärt.<br />
 <br />
<ul><li style="">Der Paket Token (Name des Pakets</li><li style="">Die Spitznamen, getrennt durch Komma's.</li></ul></div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Mardcore</dc:creator>
			<guid isPermaLink="true">protokoll-120/spitzname-30394</guid>
		</item>
		<item>
			<title><![CDATA[[Input] k - Popup Token]]></title>
			<link>protokoll-120/input-k-popup-token-30004?goto=newpost</link>
			<pubDate>Mon, 14 Feb 2011 15:48:55 GMT</pubDate>
			<description>Dieses Paket wird vom Server zum Client gesendet, wenn dieser eine Nachrict im Popup darstellen soll. 
 
z.B. /m Darstellung, News, Loginfehler etc 
...</description>
			<content:encoded><![CDATA[<div>Dieses Paket wird vom Server zum Client gesendet, wenn dieser eine Nachrict im Popup darstellen soll.<br />
<br />
z.B. /m Darstellung, News, Loginfehler etc<br />
<br />
<br />
<br />
 <br />
 <b>Paket-Token:</b><div style="margin-left:40px"><div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">folgt</code><hr />
</div></div><b>Erklärung der Tokens:</b><br />
 Die Pakete werden durch das \0 (Nullchar) getrennt, also werden auch die Tokens dementsprechend erklärt.<br />
 <br />
<br />
<ul><li style=""> 0. Der Token für den Popup. (Paket Name)</li><li style=""> 1. Titel des Popups.</li><li style=""> 4. Überschrift des Popups</li><li style=""> 7. Die Nachricht des Popups</li><li style=""> 10. Hintergrundsbild</li><li style=""> 11. Buttons</li></ul><br />
<br />
<br />
Rest ist mir unbekannt, werden wohl unteranderen größen Angaben sein.</div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>silently</dc:creator>
			<guid isPermaLink="true">protokoll-120/input-k-popup-token-30004</guid>
		</item>
		<item>
			<title>Knuddels RemoteEndPoints</title>
			<link>protokoll-120/knuddels-remoteendpoints-29887?goto=newpost</link>
			<pubDate>Mon, 31 Jan 2011 13:17:48 GMT</pubDate>
			<description>Für manche Bots braucht man folgende Verbindungsdaten, um sich in das gewünschte Chatsystem einloggen zu können. 
 
Knuddels.de: 
 
Code: 
---------...</description>
			<content:encoded><![CDATA[<div>Für manche Bots braucht man folgende Verbindungsdaten, um sich in das gewünschte Chatsystem einloggen zu können.<br />
<br />
Knuddels.de:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">chat.knuddels.de:2710</code><hr />
</div>Knuddels.at:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">chat.knuddels.de:2711</code><hr />
</div>Knuddels.ch:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">chat.knuddels.de:2712</code><hr />
</div>Knuddels.com:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">knuddels.com:2713</code><hr />
</div>Mainfranken-Chat:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">knuddels.net:4242</code><hr />
</div>Knuddels-Testserver:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">knuddels.net:2720</code><hr />
</div></div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Diebspiel</dc:creator>
			<guid isPermaLink="true">protokoll-120/knuddels-remoteendpoints-29887</guid>
		</item>
		<item>
			<title><![CDATA[[Input] r - Private Nachricht]]></title>
			<link>protokoll-120/input-r-private-nachricht-30241?goto=newpost</link>
			<pubDate>Mon, 31 Jan 2011 12:52:46 GMT</pubDate>
			<description>Token vom Server um eine private Nachricht zu erhalten. 
 
*_Allgemeiner Aufbau:_* 
 
 
Code: 
--------- 
r\0Sender\0Empfänger\0Channel\0Nachricht...</description>
			<content:encoded><![CDATA[<div>Token vom Server um eine private Nachricht zu erhalten.<br />
<br />
<b><u>Allgemeiner Aufbau:</u></b><br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">r\0Sender\0Empfänger\0Channel\0Nachricht</code><hr />
</div><b><u>Beispiel:</u></b><br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">r\0James\0kscript\0/mychan\0Hello World.</code><hr />
</div><b><u>Struktur:</u></b><br />
0: r<br />
1: Sender<br />
2: Empfänger<br />
3: Channel<br />
4: Nachricht<br />
<br />
-aspire</div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>aspire</dc:creator>
			<guid isPermaLink="true">protokoll-120/input-r-private-nachricht-30241</guid>
		</item>
		<item>
			<title><![CDATA[[Input] 6 - Kick]]></title>
			<link>protokoll-120/input-6-kick-30367?goto=newpost</link>
			<pubDate>Sun, 30 Jan 2011 23:21:20 GMT</pubDate>
			<description>Dieses Paket erhält man, wenn man einen Kick von einem CM Spendiert bekommen hat. 
 
 *Paket-Token:* 
  
Code: 
--------- 
6\0Grund 
--------- 
...</description>
			<content:encoded><![CDATA[<div>Dieses Paket erhält man, wenn man einen Kick von einem CM Spendiert bekommen hat.<br />
<br />
 <b>Paket-Token:</b><br />
 <div style="margin-left:40px"><div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">6\0Grund</code><hr />
</div></div><b>Erklärung der Tokens:</b><br />
 Die Pakete werden durch das \0 (Nullchar) getrennt, also werden auch die Tokens dementsprechend erklärt.<br />
 <br />
<ul><li style="">Der Paket Token (Paket Name)</li><li style="">Begründung, falls angegeben. Ohne Begründung noch nichts geloggt.</li></ul></div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Mardcore</dc:creator>
			<guid isPermaLink="true">protokoll-120/input-6-kick-30367</guid>
		</item>
		<item>
			<title><![CDATA[[Input] 5 - Butler]]></title>
			<link>protokoll-120/input-5-butler-31073?goto=newpost</link>
			<pubDate>Sun, 30 Jan 2011 23:17:05 GMT</pubDate>
			<description>Dieses Paket beinhaltet den Namen des Butlers vom Chat in den man sich Einloggen möchte.  
 
 
 
 *Paket-Token:* 
  
Code: 
--------- 
5\0James...</description>
			<content:encoded><![CDATA[<div>Dieses Paket beinhaltet den Namen des Butlers vom Chat in den man sich Einloggen möchte. <br />
<br />
<br />
<br />
 <b>Paket-Token:</b><br />
 <div style="margin-left:40px"><div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">5\0James</code><hr />
</div><br />
<b>oder</b><br />
<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">5\0Charles</code><hr />
</div></div><b>Erklärung der Tokens:</b><br />
 Die Pakete werden durch das \0 (Nullchar) getrennt, also werden auch die Tokens dementsprechend erklärt.<br />
 <br />
<ul><li style="">Der Paket Token (Paket Name)</li><li style="">Der Name des Butlers</li></ul></div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Mardcore</dc:creator>
			<guid isPermaLink="true">protokoll-120/input-5-butler-31073</guid>
		</item>
		<item>
			<title><![CDATA[[Output] e - Public Message]]></title>
			<link>protokoll-120/output-e-public-message-29991?goto=newpost</link>
			<pubDate>Sun, 30 Jan 2011 23:13:27 GMT</pubDate>
			<description><![CDATA[Dieses Paket wird von Client zu Server gesendet, wenn eine Öffentliche Nachricht gesendet wird.  
 
Sprich: Sobald man eine "Standard" Nachricht...]]></description>
			<content:encoded><![CDATA[<div>Dieses Paket wird von Client zu Server gesendet, wenn eine Öffentliche Nachricht gesendet wird. <br />
<br />
Sprich: Sobald man eine &quot;Standard&quot; Nachricht schreibt. (In den Chatroom.)<br />
<br />
 <br />
 <b>Paket-Token:</b><br />
 <div style="margin-left:40px"><div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">e\0Erkelenz\0Na, alles klar?</code><hr />
</div></div><b>Erklärung der Tokens:</b><br />
 Die Pakete werden durch das \0 (Nullchar) getrennt, also werden auch die Tokens dementsprechend erklärt.<br />
 <br />
<ul><li style=""> Der Token für Öffentliche Nachrichten. (Paket Name)</li><li style="">Channel Name, indem die Nachricht gesendet und Angezeigt wird.</li><li style="">Die Nachricht, die gesendet werden soll.</li></ul></div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Mardcore</dc:creator>
			<guid isPermaLink="true">protokoll-120/output-e-public-message-29991</guid>
		</item>
		<item>
			<title><![CDATA[[Output] d - Logout]]></title>
			<link>protokoll-120/output-d-logout-30494?goto=newpost</link>
			<pubDate>Sun, 30 Jan 2011 23:08:07 GMT</pubDate>
			<description>Dieses Paket wird von Client zu Server gesendet, wenn dieser sich vom Server abmelden/trennen möchte.  
  
*Paket-Token:* 
Code: 
--------- 
d\0...</description>
			<content:encoded><![CDATA[<div>Dieses Paket wird von Client zu Server gesendet, wenn dieser sich vom Server abmelden/trennen möchte. <br />
 <br />
<b>Paket-Token:</b><div style="margin-left:40px"><div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">d\0</code><hr />
</div></div><b>Erklärung einzelner Token:</b><br />
 Die Pakete werden durch das \0 (Nullchar) getrennt.<br />
 <br />
<ul><li style=""> Der Logout Token</li></ul></div>

]]></content:encoded>
			<category domain="protokoll-120">Protokoll</category>
			<dc:creator>Mardcore</dc:creator>
			<guid isPermaLink="true">protokoll-120/output-d-logout-30494</guid>
		</item>
	</channel>
</rss>
