init III
117
Webseiten/andrewisniewski.dev1/admin/admin.pl
Normal file
@@ -0,0 +1,117 @@
|
||||
#!/bin/perl
|
||||
|
||||
use CGI qw(:standard);
|
||||
|
||||
my $file=param('file');
|
||||
|
||||
print header();
|
||||
|
||||
print <<FIRST_HTML;
|
||||
<!DOCTYPE BHTML PUBLIC "-//BC//DTD BHTML 3.2 Final//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<title>Example of Xinha</title>
|
||||
<link rel="stylesheet" href="full_example.css" />
|
||||
|
||||
<script type="text/javascript">
|
||||
// You must set _editor_url to the URL (including trailing slash) where
|
||||
// where xinha is installed, it's highly recommended to use an absolute URL
|
||||
// eg: _editor_url = "/path/to/xinha/";
|
||||
// You may try a relative URL if you wish]
|
||||
// eg: _editor_url = "../";
|
||||
// in this example we do a little regular expression to find the absolute path.
|
||||
// _editor_url = document.location.href.replace(/examples\/full_example-body\.html.*/, '')
|
||||
_editor_url = "../xinha/";
|
||||
_editor_lang = "en"; // And the language we need to use in the editor.
|
||||
</script>
|
||||
|
||||
<!-- Load up the actual editor core -->
|
||||
<script type="text/javascript" src="../xinha/htmlarea.js"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
xinha_editors = null;
|
||||
xinha_init = null;
|
||||
xinha_config = null;
|
||||
xinha_plugins = null;
|
||||
|
||||
// This contains the names of textareas we will make into Xinha editors
|
||||
xinha_init = xinha_init ? xinha_init : function()
|
||||
{
|
||||
xinha_plugins = xinha_plugins ? xinha_plugins :
|
||||
[
|
||||
'CharacterMap',
|
||||
'ContextMenu',
|
||||
'FullScreen',
|
||||
'ListType',
|
||||
'SpellChecker',
|
||||
'Stylist',
|
||||
'SuperClean',
|
||||
'TableOperations',
|
||||
'ImageManager',
|
||||
'Forms',
|
||||
'FormOperations',
|
||||
'Linker',
|
||||
'InsertAnchor',
|
||||
'FindReplace',
|
||||
'InsertWords',
|
||||
'Equation',
|
||||
'InsertMarquee',
|
||||
'QuickTag',
|
||||
'Template',
|
||||
'DoubleClick'
|
||||
];
|
||||
|
||||
// THIS BIT OF JAVASCRIPT LOADS THE PLUGINS, NO TOUCHING :)
|
||||
if(!HTMLArea.loadPlugins(xinha_plugins, xinha_init)) return;
|
||||
xinha_editors = xinha_editors ? xinha_editors :
|
||||
[
|
||||
'ta'
|
||||
];
|
||||
|
||||
xinha_config = xinha_config ? xinha_config() : new HTMLArea.Config();
|
||||
|
||||
xinha_editors = HTMLArea.makeEditors(xinha_editors, xinha_config, xinha_plugins);
|
||||
|
||||
HTMLArea.startEditors(xinha_editors);
|
||||
}
|
||||
|
||||
window.onload = xinha_init;
|
||||
</script>
|
||||
<!--link type="text/css" rel="alternate stylesheet" title="blue-look" href="../xinha/skins/blue-look/skin.css" />
|
||||
<link type="text/css" rel="alternate stylesheet" title="green-look" href="../xinha/skins/green-look/skin.css" />
|
||||
<link type="text/css" rel="alternate stylesheet" title="xp-blue" href="../xinha/skins/xp-blue/skin.css" />
|
||||
<link type="text/css" rel="alternate stylesheet" title="xp-green" href="../xinha/skins/xp-green/skin.css" />
|
||||
<link type="text/css" rel="alternate stylesheet" title="inditreuse" href="../xinha/skins/inditreuse/skin.css" />
|
||||
<link type="text/css" rel="alternate stylesheet" title="blue-metallic" href="../xinha/skins/blue-metallic/skin.css" /-->
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<form action="save.pl" method="post" id="edit" name="edit">
|
||||
<textarea id="ta" name="ta" rows="30" cols="80" style="width:100%">
|
||||
|
||||
FIRST_HTML
|
||||
|
||||
|
||||
open FILE, "<$file";
|
||||
@file=<FILE>;
|
||||
close FILE;
|
||||
|
||||
print @file;
|
||||
|
||||
print " </textarea>\n";
|
||||
print " <input type='hidden' name='file' value='$file'>";
|
||||
|
||||
print <<THIRD_HTML;
|
||||
|
||||
<input type="submit" name="ok" value="Speichern">
|
||||
<input type="button" name="can" value="Abbruch" onclick="window.open('http://dev1.andrewisniewski.de/admin/','_top','')">
|
||||
|
||||
</form>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
THIRD_HTML
|
||||
|
||||
47
Webseiten/andrewisniewski.dev1/admin/full_example.css
Normal file
@@ -0,0 +1,47 @@
|
||||
/*--------------------------------------:noTabs=true:tabSize=2:indentSize=2:--
|
||||
-- Xinha example CSS file. This is ripped from Trac ;)
|
||||
--
|
||||
-- $HeadURL: http://svn.xinha.python-hosting.com/trunk/examples/full_example.css $
|
||||
-- $LastChangedDate: 2005-02-19 17:10:03 +1300 (Sat, 19 Feb 2005) $
|
||||
-- $LastChangedRevision: 14 $
|
||||
-- $LastChangedBy: gogo $
|
||||
--------------------------------------------------------------------------*/
|
||||
|
||||
body {
|
||||
background: #fff;
|
||||
color: #000;
|
||||
margin: 10px;
|
||||
}
|
||||
body, th, td {
|
||||
font: normal 13px verdana,arial,'Bitstream Vera Sans',helvetica,sans-serif;
|
||||
}
|
||||
h1, h2, h3, h4 {
|
||||
font-family: arial,verdana,'Bitstream Vera Sans',helvetica,sans-serif;
|
||||
font-weight: bold;
|
||||
letter-spacing: -0.018em;
|
||||
}
|
||||
h1 { font-size: 21px; margin: .15em 1em 0 0 }
|
||||
h2 { font-size: 16px; margin: 2em 0 .5em; }
|
||||
h3 { font-size: 14px; margin: 1.5em 0 .5em; }
|
||||
hr { border: none; border-top: 1px solid #ccb; margin: 2em 0; }
|
||||
address { font-style: normal }
|
||||
img { border: none }
|
||||
|
||||
:link, :visited {
|
||||
text-decoration: none;
|
||||
color: #b00;
|
||||
border-bottom: 1px dotted #bbb;
|
||||
}
|
||||
:link:hover, :visited:hover {
|
||||
background-color: #eee;
|
||||
color: #555;
|
||||
}
|
||||
h1 :link, h1 :visited ,h2 :link, h2 :visited, h3 :link, h3 :visited,
|
||||
h4 :link, h4 :visited, h5 :link, h5 :visited, h6 :link, h6 :visited {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.area_holder
|
||||
{
|
||||
margin:10px;
|
||||
}
|
||||
10
Webseiten/andrewisniewski.dev1/admin/index.html
Normal file
@@ -0,0 +1,10 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Admin</title>
|
||||
</head>
|
||||
|
||||
<frameset cols='150,*'>
|
||||
<frame src='./left.html' name='left' frameborder='0' noresize scrolling='no'>
|
||||
<frame src='./right.html' name='right' frameborder='0' noresize scrolling='yes'>
|
||||
</frameset>
|
||||
</html>
|
||||
5
Webseiten/andrewisniewski.dev1/admin/left.html
Normal file
@@ -0,0 +1,5 @@
|
||||
<font size="2"></font>
|
||||
<fieldset style="WIDTH: 120px; HEIGHT: 130px">
|
||||
<p><legend><font style="BACKGROUND-COLOR: #ffffff">edit</font></legend><a href="admin.pl?file=../situation.html" target="right"><font face="georgia,times new roman,times,serif">Situation</font></a><br /><a href="admin.pl?file=../leistung.html" target="right"><font face="georgia,times new roman,times,serif">Leistung</font></a><br /><a href="admin.pl?file=../download.html" target="right"><font face="georgia,times new roman,times,serif">Download</font></a><br /><a href="admin.pl?file=../kontakt.html" target="right"><font face="georgia,times new roman,times,serif">Kontakt</font></a><br /><a href="admin.pl?file=../presse.html" target="right"><font face="georgia,times new roman,times,serif">Presse</font></a><br /><a href="admin.pl?file=../home.html" target="right"><font face="georgia,times new roman,times,serif">Home</font></a><br /></p>
|
||||
</fieldset><br />
|
||||
<fieldset style="WIDTH: 120px; HEIGHT: 39px"><legend><font style="BACKGROUND-COLOR: #ffffff">open</font></legend><a href="http://dev1.andrewisniewski.de/" target="new"><font face="georgia,times new roman,times,serif">Homepage</font></a></fieldset>
|
||||
5
Webseiten/andrewisniewski.dev1/admin/right.html
Normal file
@@ -0,0 +1,5 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
27
Webseiten/andrewisniewski.dev1/admin/save.pl
Normal file
@@ -0,0 +1,27 @@
|
||||
#! /usr/bin/perl -w
|
||||
|
||||
use CGI;
|
||||
|
||||
print "Content-type: text/html\n\n";
|
||||
$c = new CGI;
|
||||
$ta = $c->param('ta');
|
||||
$file = $c->param('file');
|
||||
|
||||
open FILE, ">$file";
|
||||
print FILE $ta;
|
||||
close FILE;
|
||||
|
||||
print <<EOF;
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv='refresh' content='2; URL=./right.html'>
|
||||
</head>
|
||||
<body>
|
||||
gespeichert
|
||||
</body>
|
||||
</html>
|
||||
|
||||
EOF
|
||||
|
||||
1;
|
||||
9
Webseiten/andrewisniewski.dev1/download.html
Normal file
@@ -0,0 +1,9 @@
|
||||
<link href="style.css" type="text/css" rel="stylesheet" />
|
||||
<table id="content_t">
|
||||
<tbody>
|
||||
<tr id="content_r">
|
||||
<td id="content_d" />
|
||||
<td id="edit">download</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
BIN
Webseiten/andrewisniewski.dev1/get_adobe_reader.gif
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
7
Webseiten/andrewisniewski.dev1/home.html
Normal file
@@ -0,0 +1,7 @@
|
||||
<HTML><HEAD><TITLE>Titel</TITLE><LINK href="style.css" type=text/css rel=stylesheet></HEAD>
|
||||
<BODY id=inner >
|
||||
<TABLE id=content_t>
|
||||
<TBODY>
|
||||
<TR id=content_r>
|
||||
<TD id=content_d></TD>
|
||||
<TD id="edit">home</TD></TR></TBODY></TABLE></BODY></HTML>
|
||||
BIN
Webseiten/andrewisniewski.dev1/images/ntimage.gif
Normal file
|
After Width: | Height: | Size: 48 KiB |
81
Webseiten/andrewisniewski.dev1/index.html
Normal file
@@ -0,0 +1,81 @@
|
||||
<?xml version="1.0" encoding="ISO-8859-1" ?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>Titel</title>
|
||||
|
||||
<!-- START OF SCRIPT -->
|
||||
<link href="style.css" type="text/css" rel="stylesheet" />
|
||||
<!-- START OF SCRIPT -->
|
||||
<style type="text/css">
|
||||
#coolmenu{border: 1px solid black;width: 170px;background-color: #E6E6E6;}
|
||||
#coolmenu a{font: bold 13px Verdana;padding: 2px;padding-left: 4px;display: block;width: 100%;color: black;text-decoration: none;border-bottom: 1px solid black;}
|
||||
html>body #coolmenu a{width: auto;}
|
||||
#coolmenu a:hover{background-color: black;color: white;}
|
||||
#tabledescription{width: 100%;height: 3em;padding: 2px;filter:alpha(opacity=0);-moz-opacity:0;}
|
||||
</style>
|
||||
|
||||
<script type="text/javascript">
|
||||
// Fading routine based on Dynamic Drive script: http://www.dynamicdrive.com/dynamicindex4/highlightgrad.htm
|
||||
// This notice must stay intact for usevar baseopacity=0
|
||||
|
||||
function showtext(thetext){
|
||||
if (!document.getElementById)
|
||||
returntextcontainerobj=document.getElementById("tabledescription")
|
||||
browserdetect=textcontainerobj.filters? "ie" : typeof textcontainerobj.style.MozOpacity=="string"? "mozilla" : ""
|
||||
instantset(baseopacity)
|
||||
document.getElementById("tabledescription").innerHTML=thetexthighlighting=setInterval("gradualfade(textcontainerobj)",50)
|
||||
}
|
||||
|
||||
function hidetext(){
|
||||
cleartimer()
|
||||
instantset(baseopacity)
|
||||
}
|
||||
|
||||
function instantset(degree){
|
||||
if (browserdetect=="mozilla")
|
||||
textcontainerobj.style.MozOpacity=degree/100
|
||||
else
|
||||
if (browserdetect=="ie")
|
||||
textcontainerobj.filters.alpha.opacity=degreeelse
|
||||
if (document.getElementById && baseopacity==0)
|
||||
document.getElementById("tabledescription").innerHTML=""
|
||||
}
|
||||
|
||||
function cleartimer(){if (window.highlighting) clearInterval(highlighting)}function gradualfade(cur2){if (browserdetect=="mozilla" && cur2.style.MozOpacity<1)cur2.style.MozOpacity=Math.min(parseFloat(cur2.style.MozOpacity)+0.2, 0.99)else if (browserdetect=="ie" && cur2.filters.alpha.opacity<100)cur2.filters.alpha.opacity+=20else if (window.highlighting)clearInterval(highlighting)}
|
||||
</script>
|
||||
<!-- END OF SCRIPT -->
|
||||
</head>
|
||||
<body id="outer">
|
||||
<div align="center">
|
||||
<table id="inner" cellspacing="0" cellpadding="0" width="800" align="center" border="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<img style="WIDTH: 100%; HEIGHT: 88px" src="newspaper_cut.jpg" border="0" alt="newspaper" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top" align="left">
|
||||
<td width="180px">
|
||||
<div id="coolmenu">
|
||||
<a href="situation.html" target="frame" onMouseover="showtext('Ihre Situation')" onMouseout="hidetext()">Situation</a>
|
||||
<a href="leistung.html" target="frame" onMouseover="showtext('Unsere Leistung')" onMouseout="hidetext()">Leistung</a>
|
||||
<a href="download.html" target="frame" onMouseover="showtext('Informationen und Anträge')" onMouseout="hidetext()">Downloads</a>
|
||||
<a href="presse.html" target="frame" onMouseover="showtext('Aktuelle Pressemitteilungen')" onMouseout="hidetext()">Presse</a>
|
||||
<a href="kontakt.html" target="frame" onMouseover="showtext('So erreichen Sie uns')" onMouseout="hidetext()">Kontakt</a>
|
||||
<div id="tabledescription"></div>
|
||||
</div>
|
||||
</td>
|
||||
<td valign="top" height="400">
|
||||
<iframe id="frame" style="WIDTH: 600px; HEIGHT: 450px" name="frame" src="home.html" frameborder="0"></iframe>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
54
Webseiten/andrewisniewski.dev1/kontakt.html
Normal file
@@ -0,0 +1,54 @@
|
||||
<HTML >
|
||||
<HEAD >
|
||||
<TITLE >Titel</TITLE>
|
||||
</HEAD>
|
||||
<BODY id=inner >
|
||||
<link href="style.css" type="text/css" rel="stylesheet" />
|
||||
<table id="content_t">
|
||||
<tbody>
|
||||
<tr id="content_r">
|
||||
<td id="content_d" />
|
||||
<td id="edit">
|
||||
|
||||
<FORM name=myform action=sent.html target=frame>
|
||||
<TABLE style="WIDTH: 543px; HEIGHT: 270px">
|
||||
<TR>
|
||||
<TD width=66>Name</TD>
|
||||
<TD width=222><INPUT size=30 name=name></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD width=66>eMail</TD>
|
||||
<TD width=222><INPUT size=30 name=email></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD width=66>Telefon</TD>
|
||||
<TD width=222><INPUT size=30 name=tel></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD width=66>Fax</TD>
|
||||
<TD width=222><INPUT size=30 name=fax></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD width=66>
|
||||
<P align=left>Kommentar</P>
|
||||
</TD>
|
||||
<TD width=222>
|
||||
<INPUT size=50 name=text>
|
||||
</TEXTAREA>
|
||||
</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD width=66>
|
||||
<INPUT style="WIDTH: 90px; HEIGHT: 24px" type=button value=Abbruch name=cancel>
|
||||
</TD>
|
||||
<TD width=222><INPUT style="WIDTH: 90px; HEIGHT: 24px" type=submit size=16 value=OK name=send></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</FORM>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</BODY>
|
||||
</HTML>
|
||||
9
Webseiten/andrewisniewski.dev1/leistung.html
Normal file
@@ -0,0 +1,9 @@
|
||||
<link href="style.css" type="text/css" rel="stylesheet" />
|
||||
<table id="content_t">
|
||||
<tbody>
|
||||
<tr id="content_r">
|
||||
<td id="content_d" />
|
||||
<td id="edit">leistung</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
BIN
Webseiten/andrewisniewski.dev1/newspaper.jpg
Normal file
|
After Width: | Height: | Size: 111 KiB |
BIN
Webseiten/andrewisniewski.dev1/newspaper1.jpg
Normal file
|
After Width: | Height: | Size: 65 KiB |
BIN
Webseiten/andrewisniewski.dev1/newspaper_cut.jpg
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
Webseiten/andrewisniewski.dev1/pdf.jpg
Normal file
|
After Width: | Height: | Size: 13 KiB |
30
Webseiten/andrewisniewski.dev1/presse.html
Normal file
@@ -0,0 +1,30 @@
|
||||
<link href="style.css" type="text/css" rel="stylesheet" />
|
||||
<table id="content_t">
|
||||
<tbody>
|
||||
<tr id="content_r">
|
||||
<td id="content_d" rowspan="3" />
|
||||
<td>
|
||||
<fieldset><legend>n-tv</legend>§xy geändert! </fieldset>
|
||||
</td>
|
||||
<td />
|
||||
<td />
|
||||
</tr>
|
||||
<tr>
|
||||
<td />
|
||||
<td>jjj</td>
|
||||
<td>
|
||||
<fieldset>
|
||||
<p><legend>t-online</legend>§cv <sub><del>hei</del></sub>ß<sup> jjjjjjjjj</sup></p>
|
||||
<p>kkkkkdiskutiert </p>
|
||||
</fieldset>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td />
|
||||
<td>
|
||||
<fieldset><legend>BBC</legend>§df Abs.3 gescheitert! </fieldset>
|
||||
</td>
|
||||
<td />
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
1
Webseiten/andrewisniewski.dev1/sent.html
Normal file
@@ -0,0 +1 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html> <head> <title>Titel</title> <link rel='stylesheet' type='text/css' href='style.css'> <meta http-equiv='refresh' content='3; URL=home.html'> </head> <body id="inner"> <table id="content_t"> <tbody> <tr id="content_r"> <td id="content_d"></td> <td>email gesendet!</td> </tr> </tbody> </table> </body></html>
|
||||
9
Webseiten/andrewisniewski.dev1/situation.html
Normal file
@@ -0,0 +1,9 @@
|
||||
<link href="style.css" type="text/css" rel="stylesheet" />
|
||||
<table id="content_t">
|
||||
<tbody>
|
||||
<tr id="content_r">
|
||||
<td id="content_d" />
|
||||
<td id="edit">Situation</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
25
Webseiten/andrewisniewski.dev1/style.css
Normal file
@@ -0,0 +1,25 @@
|
||||
#inner { BACKGROUND-COLOR: #ffffff; }
|
||||
|
||||
#outer { BACKGROUND-COLOR: #aaaaaa; }
|
||||
|
||||
#coolmenu { BORDER-RIGHT: black 1px solid; BORDER-TOP: black 1px solid; BORDER-LEFT: black 1px solid; WIDTH: 170px;
|
||||
BORDER-BOTTOM: black 1px solid; BACKGROUND-COLOR: #e6e6e6 }
|
||||
|
||||
#coolmenu A { PADDING-RIGHT: 2px; DISPLAY: block; PADDING-LEFT: 4px; PADDING-BOTTOM: 2px; FONT: bold 13px Verdana; WIDTH: 170px;
|
||||
COLOR: black; PADDING-TOP: 2px; BORDER-BOTTOM: black 1px solid; TEXT-DECORATION: none }
|
||||
|
||||
UNKNOWN { WIDTH: auto }
|
||||
|
||||
#coolmenu A:hover { COLOR: white; BACKGROUND-COLOR: black }
|
||||
|
||||
#tabledescription { PADDING-RIGHT: 2px; PADDING-LEFT: 2px; FILTER: alpha(opacity=0); PADDING-BOTTOM: 2px; WIDTH: 170px;
|
||||
PADDING-TOP: 2px; HEIGHT: 3em; moz-opacity: 0 }
|
||||
|
||||
#presse { DISPLAY: block; BORDER-RIGHT: black 2px solid; BORDER-TOP: black 2px solid; BORDER-LEFT: black 2px solid;
|
||||
BORDER-BOTTOM: black 2px solid; FONT-FAMILY: Arial; FONT-WEIGHT: bold; }
|
||||
|
||||
#content_t { HEIGHT: 400px; }
|
||||
|
||||
#content_d { BACKGROUND-COLOR: #CC6633; WIDTH: 5px; }
|
||||
|
||||
#content_r { }
|
||||
1933
Webseiten/andrewisniewski.dev1/test.pdf
Normal file
1
Webseiten/bildergallerie/data/count
Normal file
@@ -0,0 +1 @@
|
||||
100171
|
||||
761
Webseiten/bildergallerie/data/count_vote_hist
Normal file
@@ -0,0 +1,761 @@
|
||||
14.02.2007 23:59,92283,1258
|
||||
15.02.2007 23:59,92292,1258
|
||||
16.02.2007 23:59,92306,1260
|
||||
17.02.2007 23:59,92317,1261
|
||||
18.02.2007 23:59,92329,1263
|
||||
19.02.2007 23:59,92340,1265
|
||||
20.02.2007 23:59,92357,1267
|
||||
21.02.2007 23:59,92381,1269
|
||||
22.02.2007 23:59,92398,1271
|
||||
23.02.2007 23:59,92414,1272
|
||||
24.02.2007 23:59,92439,1275
|
||||
25.02.2007 23:59,92446,1275
|
||||
26.02.2007 23:59,92462,1275
|
||||
27.02.2007 23:59,92485,1275
|
||||
28.02.2007 23:59,92499,1280
|
||||
01.03.2007 23:59,92512,1280
|
||||
02.03.2007 23:59,92525,1280
|
||||
03.03.2007 23:59,92532,1280
|
||||
04.03.2007 23:59,92547,1280
|
||||
05.03.2007 23:59,92561,1280
|
||||
06.03.2007 23:59,92570,1283
|
||||
07.03.2007 23:59,92587,1283
|
||||
08.03.2007 23:59,92601,1283
|
||||
09.03.2007 23:59,92613,1283
|
||||
10.03.2007 23:59,92630,1284
|
||||
11.03.2007 23:59,92639,1284
|
||||
12.03.2007 23:59,92651,1284
|
||||
13.03.2007 23:59,92657,1285
|
||||
14.03.2007 23:59,92671,1285
|
||||
15.03.2007 23:59,92683,1286
|
||||
16.03.2007 23:59,92698,1286
|
||||
17.03.2007 23:59,92706,1286
|
||||
18.03.2007 23:59,92716,1287
|
||||
19.03.2007 23:59,92730,1288
|
||||
20.03.2007 23:59,92744,1288
|
||||
21.03.2007 23:59,92759,1288
|
||||
22.03.2007 23:59,92769,1288
|
||||
23.03.2007 23:59,92780,1288
|
||||
24.03.2007 23:59,92790,1289
|
||||
25.03.2007 23:59,92799,1289
|
||||
26.03.2007 23:59,92806,1294
|
||||
27.03.2007 23:59,92816,1294
|
||||
28.03.2007 23:59,92863,1295
|
||||
29.03.2007 23:59,92907,1295
|
||||
30.03.2007 23:59,92924,1295
|
||||
31.03.2007 23:59,92934,1295
|
||||
01.04.2007 23:59,92955,1297
|
||||
02.04.2007 23:59,92969,1298
|
||||
03.04.2007 23:59,92987,1300
|
||||
04.04.2007 23:59,93001,1302
|
||||
05.04.2007 23:59,93007,1302
|
||||
06.04.2007 23:59,93014,1302
|
||||
07.04.2007 23:59,93018,1302
|
||||
08.04.2007 23:59,93030,1302
|
||||
09.04.2007 23:59,93041,1302
|
||||
10.04.2007 23:59,93048,1302
|
||||
11.04.2007 23:59,93060,1302
|
||||
12.04.2007 23:59,93065,1302
|
||||
13.04.2007 23:59,93074,1302
|
||||
14.04.2007 23:59,93084,1303
|
||||
15.04.2007 23:59,93097,1303
|
||||
16.04.2007 23:59,93107,1303
|
||||
17.04.2007 23:59,93119,1304
|
||||
18.04.2007 23:59,93133,1304
|
||||
19.04.2007 23:59,93145,1304
|
||||
20.04.2007 23:59,93157,1304
|
||||
21.04.2007 23:59,93183,1304
|
||||
22.04.2007 23:59,93196,1304
|
||||
23.04.2007 23:59,93216,1304
|
||||
24.04.2007 23:59,93223,1304
|
||||
25.04.2007 23:59,93236,1304
|
||||
26.04.2007 23:59,93254,1304
|
||||
27.04.2007 23:59,93269,1311
|
||||
28.04.2007 23:59,93365,1312
|
||||
29.04.2007 23:59,93377,1312
|
||||
30.04.2007 23:59,93385,1312
|
||||
01.05.2007 23:59,93405,1313
|
||||
02.05.2007 23:59,93420,1313
|
||||
03.05.2007 23:59,93440,1313
|
||||
04.05.2007 23:59,93449,1313
|
||||
05.05.2007 23:59,93456,1313
|
||||
06.05.2007 23:59,93467,1313
|
||||
07.05.2007 23:59,93485,1313
|
||||
08.05.2007 23:59,93501,1313
|
||||
09.05.2007 23:59,93511,1313
|
||||
10.05.2007 23:59,93522,1315
|
||||
11.05.2007 23:59,93532,1315
|
||||
12.05.2007 23:59,93544,1316
|
||||
13.05.2007 23:59,93559,1333
|
||||
14.05.2007 23:59,93574,1334
|
||||
15.05.2007 23:59,93581,1334
|
||||
16.05.2007 23:59,93596,1334
|
||||
17.05.2007 23:59,93615,1335
|
||||
18.05.2007 23:59,93627,1336
|
||||
19.05.2007 23:59,93641,1337
|
||||
20.05.2007 23:59,93649,1337
|
||||
21.05.2007 23:59,93668,1337
|
||||
22.05.2007 23:59,93686,1338
|
||||
23.05.2007 23:59,93704,1338
|
||||
24.05.2007 23:59,93719,1338
|
||||
25.05.2007 23:59,93732,1338
|
||||
26.05.2007 23:59,93746,1338
|
||||
27.05.2007 23:59,93758,1338
|
||||
28.05.2007 23:59,93771,1338
|
||||
29.05.2007 23:59,93787,1338
|
||||
30.05.2007 23:59,93800,1340
|
||||
31.05.2007 23:59,93822,1340
|
||||
01.06.2007 23:59,93840,1340
|
||||
02.06.2007 23:59,93853,1340
|
||||
03.06.2007 23:59,93869,1345
|
||||
04.06.2007 23:59,93881,1345
|
||||
05.06.2007 23:59,93891,1345
|
||||
06.06.2007 23:59,93902,1345
|
||||
07.06.2007 23:59,93917,1345
|
||||
08.06.2007 23:59,93925,1345
|
||||
09.06.2007 23:59,93940,1345
|
||||
10.06.2007 23:59,93987,1395
|
||||
11.06.2007 23:59,93995,1395
|
||||
12.06.2007 23:59,94009,1395
|
||||
13.06.2007 23:59,94017,1397
|
||||
14.06.2007 23:59,94031,1397
|
||||
15.06.2007 23:59,94043,1397
|
||||
16.06.2007 23:59,94060,1398
|
||||
17.06.2007 23:59,94070,1400
|
||||
18.06.2007 23:59,94085,1401
|
||||
19.06.2007 23:59,94101,1405
|
||||
20.06.2007 23:59,94114,1406
|
||||
21.06.2007 23:59,94128,1406
|
||||
22.06.2007 23:59,94136,1406
|
||||
23.06.2007 23:59,94145,1406
|
||||
24.06.2007 23:59,94158,1419
|
||||
25.06.2007 23:59,94179,1419
|
||||
26.06.2007 23:59,94187,1423
|
||||
27.06.2007 23:59,94201,1423
|
||||
28.06.2007 23:59,94206,1428
|
||||
29.06.2007 23:59,94218,1428
|
||||
30.06.2007 23:59,94225,1428
|
||||
01.07.2007 23:59,94246,1430
|
||||
02.07.2007 23:59,94255,1430
|
||||
03.07.2007 23:59,94267,1431
|
||||
04.07.2007 23:59,94284,1431
|
||||
05.07.2007 23:59,94301,1434
|
||||
06.07.2007 23:59,94316,1439
|
||||
07.07.2007 23:59,94336,1439
|
||||
08.07.2007 23:59,94345,1442
|
||||
09.07.2007 23:59,94360,1449
|
||||
10.07.2007 23:59,94369,1450
|
||||
11.07.2007 23:59,94383,1452
|
||||
12.07.2007 23:59,94395,1453
|
||||
13.07.2007 23:59,94410,1453
|
||||
14.07.2007 23:59,94423,1453
|
||||
15.07.2007 23:59,94437,1454
|
||||
16.07.2007 23:59,94454,1454
|
||||
17.07.2007 23:59,94466,1454
|
||||
18.07.2007 23:59,94486,1454
|
||||
19.07.2007 23:59,94504,1461
|
||||
20.07.2007 23:59,94525,1465
|
||||
21.07.2007 23:59,94547,1466
|
||||
22.07.2007 23:59,94563,1466
|
||||
23.07.2007 23:59,94587,1471
|
||||
24.07.2007 23:59,94599,1471
|
||||
25.07.2007 23:59,94610,1471
|
||||
26.07.2007 23:59,94619,1472
|
||||
27.07.2007 23:59,94624,1474
|
||||
28.07.2007 23:59,94631,1475
|
||||
29.07.2007 23:59,94650,1475
|
||||
30.07.2007 23:59,94665,1475
|
||||
31.07.2007 23:59,94681,1478
|
||||
01.08.2007 23:59,94695,1478
|
||||
02.08.2007 23:59,94714,1479
|
||||
03.08.2007 23:59,94726,1482
|
||||
04.08.2007 23:59,94744,1483
|
||||
05.08.2007 23:59,94755,1491
|
||||
06.08.2007 23:59,94765,1491
|
||||
07.08.2007 23:59,94777,1492
|
||||
08.08.2007 23:59,94784,1496
|
||||
09.08.2007 23:59,94789,1498
|
||||
10.08.2007 23:59,94825,1500
|
||||
11.08.2007 23:59,94838,1506
|
||||
12.08.2007 23:59,94852,1506
|
||||
13.08.2007 23:59,94867,1506
|
||||
14.08.2007 23:59,94891,1506
|
||||
15.08.2007 23:59,94904,1507
|
||||
16.08.2007 23:59,94916,1507
|
||||
17.08.2007 23:59,94926,1507
|
||||
18.08.2007 23:59,94927,1507
|
||||
19.08.2007 23:59,94927,1507
|
||||
20.08.2007 23:59,94940,1507
|
||||
21.08.2007 23:59,94943,1507
|
||||
22.08.2007 23:59,94956,1507
|
||||
23.08.2007 23:59,94963,1507
|
||||
24.08.2007 23:59,94978,1509
|
||||
25.08.2007 23:59,94984,1509
|
||||
26.08.2007 23:59,94984,1509
|
||||
27.08.2007 23:59,95002,1512
|
||||
28.08.2007 23:59,95016,1514
|
||||
29.08.2007 23:59,95024,1514
|
||||
30.08.2007 23:59,95035,1514
|
||||
31.08.2007 23:59,95053,1514
|
||||
01.09.2007 23:59,95056,1514
|
||||
02.09.2007 23:59,95056,1514
|
||||
03.09.2007 23:59,95065,1515
|
||||
04.09.2007 23:59,95075,1516
|
||||
05.09.2007 23:59,95081,1516
|
||||
06.09.2007 23:59,95091,1516
|
||||
07.09.2007 23:59,95102,1521
|
||||
08.09.2007 23:59,95114,1521
|
||||
09.09.2007 23:59,95123,1521
|
||||
10.09.2007 23:59,95140,1523
|
||||
11.09.2007 23:59,95156,1527
|
||||
12.09.2007 23:59,95171,1527
|
||||
13.09.2007 23:59,95181,1527
|
||||
14.09.2007 23:59,95188,1532
|
||||
15.09.2007 23:59,95200,1532
|
||||
16.09.2007 23:59,95212,1535
|
||||
17.09.2007 23:59,95217,1535
|
||||
18.09.2007 23:59,95223,1536
|
||||
19.09.2007 23:59,95238,1536
|
||||
20.09.2007 23:59,95260,1539
|
||||
21.09.2007 23:59,95269,1539
|
||||
22.09.2007 23:59,95282,1540
|
||||
23.09.2007 23:59,95296,1543
|
||||
24.09.2007 23:59,95302,1544
|
||||
25.09.2007 23:59,95313,1544
|
||||
26.09.2007 23:59,95324,1548
|
||||
27.09.2007 23:59,95329,1549
|
||||
28.09.2007 23:59,95331,1550
|
||||
29.09.2007 23:59,95347,1551
|
||||
30.09.2007 23:59,95366,1554
|
||||
01.10.2007 23:59,95390,1555
|
||||
02.10.2007 23:59,95413,1557
|
||||
03.10.2007 23:59,95435,1561
|
||||
04.10.2007 23:59,95445,1561
|
||||
05.10.2007 23:59,95464,1561
|
||||
06.10.2007 23:59,95473,1561
|
||||
07.10.2007 23:59,95487,1561
|
||||
08.10.2007 23:59,95504,1561
|
||||
09.10.2007 23:59,95508,1561
|
||||
10.10.2007 23:59,95511,1561
|
||||
11.10.2007 23:59,95523,1565
|
||||
12.10.2007 23:59,95532,1566
|
||||
13.10.2007 23:59,95539,1570
|
||||
14.10.2007 23:59,95547,1571
|
||||
15.10.2007 23:59,95564,1576
|
||||
16.10.2007 23:59,95579,1577
|
||||
17.10.2007 23:59,95588,1577
|
||||
18.10.2007 23:59,95606,1577
|
||||
19.10.2007 23:59,95610,1577
|
||||
20.10.2007 23:59,95624,1581
|
||||
21.10.2007 23:59,95633,1583
|
||||
22.10.2007 23:59,95654,1583
|
||||
23.10.2007 23:59,95666,1584
|
||||
24.10.2007 23:59,95691,1585
|
||||
25.10.2007 23:59,95708,1586
|
||||
26.10.2007 23:59,95729,1588
|
||||
27.10.2007 23:59,95741,1621
|
||||
28.10.2007 23:59,95754,1623
|
||||
29.10.2007 23:59,95764,1623
|
||||
30.10.2007 23:59,95779,1624
|
||||
31.10.2007 23:59,95783,1624
|
||||
01.11.2007 23:59,95794,1624
|
||||
02.11.2007 23:59,95807,1624
|
||||
03.11.2007 23:59,95813,1624
|
||||
04.11.2007 23:59,95830,1624
|
||||
05.11.2007 23:59,95845,1626
|
||||
06.11.2007 23:59,95861,1627
|
||||
07.11.2007 23:59,95873,1628
|
||||
08.11.2007 23:59,95882,1631
|
||||
09.11.2007 23:59,95896,1631
|
||||
10.11.2007 23:59,95905,1632
|
||||
11.11.2007 23:59,95920,1632
|
||||
12.11.2007 23:59,95921,1632
|
||||
13.11.2007 23:59,95935,1633
|
||||
14.11.2007 23:59,95940,1633
|
||||
15.11.2007 23:59,95950,1633
|
||||
16.11.2007 23:59,95963,1635
|
||||
17.11.2007 23:59,95971,1637
|
||||
18.11.2007 23:59,95985,1640
|
||||
19.11.2007 23:59,95995,1640
|
||||
20.11.2007 23:59,96006,1641
|
||||
21.11.2007 23:59,96013,1643
|
||||
22.11.2007 23:59,96022,1647
|
||||
23.11.2007 23:59,96023,1647
|
||||
24.11.2007 23:59,96024,1648
|
||||
25.11.2007 23:59,96040,1648
|
||||
26.11.2007 23:59,96052,1648
|
||||
27.11.2007 23:59,96057,1650
|
||||
28.11.2007 23:59,96073,1651
|
||||
29.11.2007 23:59,96083,1653
|
||||
30.11.2007 23:59,96090,1653
|
||||
01.12.2007 23:59,96098,1654
|
||||
02.12.2007 23:59,96106,1654
|
||||
03.12.2007 23:59,96114,1654
|
||||
04.12.2007 23:59,96131,1654
|
||||
05.12.2007 23:59,96150,1654
|
||||
06.12.2007 23:59,96165,1654
|
||||
07.12.2007 23:59,96187,1657
|
||||
08.12.2007 23:59,96193,1657
|
||||
09.12.2007 23:59,96210,1657
|
||||
10.12.2007 23:59,96213,1657
|
||||
11.12.2007 23:59,96221,1657
|
||||
12.12.2007 23:59,96228,1657
|
||||
13.12.2007 23:59,96234,1657
|
||||
14.12.2007 23:59,96244,1658
|
||||
15.12.2007 23:59,96251,1661
|
||||
16.12.2007 23:59,96264,1665
|
||||
17.12.2007 23:59,96271,1665
|
||||
18.12.2007 23:59,96279,1665
|
||||
19.12.2007 23:59,96291,1666
|
||||
20.12.2007 23:59,96293,1667
|
||||
21.12.2007 23:59,96298,1668
|
||||
22.12.2007 23:59,96310,1670
|
||||
23.12.2007 23:59,96320,1672
|
||||
24.12.2007 23:59,96323,1672
|
||||
25.12.2007 23:59,96325,1672
|
||||
26.12.2007 23:59,96332,1673
|
||||
27.12.2007 23:59,96343,1674
|
||||
28.12.2007 23:59,96356,1692
|
||||
29.12.2007 23:59,96365,1692
|
||||
30.12.2007 23:59,96374,1692
|
||||
31.12.2007 23:59,96387,1692
|
||||
01.01.2008 23:59,96393,1695
|
||||
02.01.2008 23:59,96413,1699
|
||||
03.01.2008 23:59,96424,1702
|
||||
04.01.2008 23:59,96426,1702
|
||||
05.01.2008 23:59,96440,1707
|
||||
06.01.2008 23:59,96443,1708
|
||||
07.01.2008 23:59,96460,1710
|
||||
08.01.2008 23:59,96470,1711
|
||||
09.01.2008 23:59,96479,1711
|
||||
10.01.2008 23:59,96492,1712
|
||||
11.01.2008 23:59,96501,1712
|
||||
12.01.2008 23:59,96511,1712
|
||||
13.01.2008 23:59,96520,1715
|
||||
14.01.2008 23:59,96522,1715
|
||||
15.01.2008 23:59,96530,1715
|
||||
16.01.2008 23:59,96539,1716
|
||||
17.01.2008 23:59,96542,1716
|
||||
18.01.2008 23:59,96556,1718
|
||||
19.01.2008 23:59,96561,1719
|
||||
20.01.2008 23:59,96570,1719
|
||||
21.01.2008 23:59,96580,1723
|
||||
22.01.2008 23:59,96590,1726
|
||||
23.01.2008 23:59,96600,1726
|
||||
24.01.2008 23:59,96615,1727
|
||||
25.01.2008 23:59,96629,1727
|
||||
26.01.2008 23:59,96637,1728
|
||||
27.01.2008 23:59,96643,1729
|
||||
28.01.2008 23:59,96652,1731
|
||||
29.01.2008 23:59,96659,1731
|
||||
30.01.2008 23:59,96674,1732
|
||||
31.01.2008 23:59,96682,1734
|
||||
01.02.2008 23:59,96697,1735
|
||||
02.02.2008 23:59,96713,1737
|
||||
03.02.2008 23:59,96725,1738
|
||||
04.02.2008 23:59,96732,1739
|
||||
05.02.2008 23:59,96740,1741
|
||||
06.02.2008 23:59,96744,1741
|
||||
07.02.2008 23:59,96754,1741
|
||||
08.02.2008 23:59,96763,1741
|
||||
09.02.2008 23:59,96767,1741
|
||||
10.02.2008 23:59,96771,1741
|
||||
11.02.2008 23:59,96777,1741
|
||||
12.02.2008 23:59,96786,1741
|
||||
13.02.2008 23:59,96795,1741
|
||||
16.02.2008 11:09,96822,1743
|
||||
17.02.2008 09:18,96829,1743
|
||||
18.02.2008 00:30,96842,1743
|
||||
19.02.2008 00:48,96847,1743
|
||||
21.02.2008 09:18,96862,1743
|
||||
22.02.2008 00:01,96863,1743
|
||||
23.02.2008 00:01,96865,1743
|
||||
24.02.2008 00:01,96867,1744
|
||||
25.02.2008 00:01,96874,1745
|
||||
26.02.2008 00:01,96879,1747
|
||||
27.02.2008 00:01,96886,1747
|
||||
28.02.2008 00:01,96889,1747
|
||||
29.02.2008 00:01,96894,1748
|
||||
01.03.2008 00:01,96896,1748
|
||||
02.03.2008 00:01,96906,1751
|
||||
03.03.2008 00:01,96913,1751
|
||||
04.03.2008 00:01,96919,1752
|
||||
05.03.2008 00:01,96922,1753
|
||||
06.03.2008 00:01,96922,1753
|
||||
07.03.2008 00:01,96934,1759
|
||||
08.03.2008 00:01,96944,1759
|
||||
09.03.2008 00:01,96960,1760
|
||||
10.03.2008 00:01,96976,1764
|
||||
12.03.2008 01:20,96987,1764
|
||||
12.03.2008 23:59,96990,1764
|
||||
13.03.2008 23:59,97001,1766
|
||||
14.03.2008 23:59,97009,1766
|
||||
15.03.2008 23:59,97017,1766
|
||||
16.03.2008 23:59,97025,1766
|
||||
17.03.2008 23:59,97042,1767
|
||||
18.03.2008 23:59,97051,1767
|
||||
19.03.2008 23:59,97060,1767
|
||||
20.03.2008 23:59,97061,1767
|
||||
21.03.2008 23:59,97069,1767
|
||||
22.03.2008 23:59,97081,1767
|
||||
24.03.2008 23:59,97084,1768
|
||||
24.03.2008 23:59,97084,1768
|
||||
25.03.2008 23:59,97091,1768
|
||||
26.03.2008 23:59,97100,1768
|
||||
27.03.2008 23:59,97116,1769
|
||||
28.03.2008 23:59,97128,1769
|
||||
29.03.2008 23:59,97133,1769
|
||||
30.03.2008 23:59,97138,1769
|
||||
31.03.2008 23:59,97144,1769
|
||||
01.04.2008 23:59,97155,1769
|
||||
02.04.2008 23:59,97162,1769
|
||||
03.04.2008 23:59,97173,1769
|
||||
04.04.2008 23:59,97184,1769
|
||||
05.04.2008 23:59,97195,1772
|
||||
06.04.2008 23:59,97200,1773
|
||||
07.04.2008 23:59,97205,1773
|
||||
08.04.2008 23:59,97212,1774
|
||||
09.04.2008 23:59,97224,1774
|
||||
10.04.2008 23:59,97232,1774
|
||||
11.04.2008 23:59,97240,1774
|
||||
12.04.2008 23:59,97253,1774
|
||||
13.04.2008 23:59,97259,1775
|
||||
14.04.2008 23:59,97269,1775
|
||||
15.04.2008 23:59,97279,1776
|
||||
16.04.2008 23:59,97291,1776
|
||||
17.04.2008 23:59,97301,1777
|
||||
18.04.2008 23:59,97311,1780
|
||||
19.04.2008 23:59,97317,1782
|
||||
20.04.2008 23:59,97325,1783
|
||||
21.04.2008 23:59,97332,1784
|
||||
22.04.2008 23:59,97343,1785
|
||||
23.04.2008 23:59,97352,1787
|
||||
24.04.2008 23:59,97359,1788
|
||||
25.04.2008 23:59,97372,1789
|
||||
26.04.2008 23:59,97380,1790
|
||||
27.04.2008 23:59,97387,1791
|
||||
28.04.2008 23:59,97395,1792
|
||||
29.04.2008 23:59,97407,1794
|
||||
30.04.2008 23:59,97416,1796
|
||||
01.05.2008 23:59,97421,1797
|
||||
02.05.2008 23:59,97426,1799
|
||||
03.05.2008 23:59,97433,1800
|
||||
04.05.2008 23:59,97441,1801
|
||||
05.05.2008 23:59,97446,1802
|
||||
06.05.2008 23:59,97451,1803
|
||||
07.05.2008 23:59,97456,1804
|
||||
08.05.2008 23:59,97461,1805
|
||||
09.05.2008 23:59,97478,1807
|
||||
10.05.2008 23:59,97482,1808
|
||||
11.05.2008 23:59,97486,1809
|
||||
12.05.2008 23:59,97491,1810
|
||||
13.05.2008 23:59,97497,1811
|
||||
14.05.2008 23:59,97505,1812
|
||||
15.05.2008 23:59,97511,1813
|
||||
16.05.2008 23:59,97518,1814
|
||||
17.05.2008 23:59,97527,1815
|
||||
18.05.2008 23:59,97543,1819
|
||||
19.05.2008 23:59,97555,1821
|
||||
20.05.2008 23:59,97566,1830
|
||||
21.05.2008 23:59,97573,1833
|
||||
22.05.2008 23:59,97591,1834
|
||||
23.05.2008 23:59,97609,1839
|
||||
24.05.2008 23:59,97616,1840
|
||||
25.05.2008 23:59,97625,1842
|
||||
26.05.2008 23:59,97639,1846
|
||||
27.05.2008 23:59,97649,1847
|
||||
28.05.2008 23:59,97660,1848
|
||||
29.05.2008 23:59,97670,1849
|
||||
30.05.2008 23:59,97687,1854
|
||||
31.05.2008 23:59,97691,1856
|
||||
01.06.2008 23:59,97695,1857
|
||||
02.06.2008 23:59,97700,1858
|
||||
03.06.2008 23:59,97709,1860
|
||||
05.06.2008 23:59,97725,1862
|
||||
06.06.2008 23:59,97728,1864
|
||||
07.06.2008 23:59,97740,1867
|
||||
08.06.2008 23:59,97749,1868
|
||||
09.06.2008 23:59,97764,1869
|
||||
10.06.2008 23:59,97772,1871
|
||||
11.06.2008 23:59,97778,1872
|
||||
12.06.2008 23:59,97789,1873
|
||||
13.06.2008 23:59,97793,1874
|
||||
14.06.2008 23:59,97795,1875
|
||||
15.06.2008 23:59,97800,1878
|
||||
16.06.2008 23:59,97806,1879
|
||||
17.06.2008 23:59,97811,1880
|
||||
18.06.2008 23:59,97820,1881
|
||||
19.06.2008 23:59,97829,1882
|
||||
20.06.2008 23:59,97834,1883
|
||||
21.06.2008 23:59,97840,1883
|
||||
22.06.2008 23:59,97846,1885
|
||||
23.06.2008 23:59,97856,1886
|
||||
24.06.2008 23:59,97862,1887
|
||||
25.06.2008 23:59,97866,1888
|
||||
26.06.2008 23:59,97877,1890
|
||||
27.06.2008 23:59,97890,1891
|
||||
28.06.2008 23:59,97901,1892
|
||||
29.06.2008 23:59,97904,1893
|
||||
30.06.2008 23:59,97911,1894
|
||||
01.07.2008 23:59,97920,1895
|
||||
02.07.2008 23:59,97926,1896
|
||||
03.07.2008 23:59,97936,1898
|
||||
04.07.2008 23:59,97944,1900
|
||||
05.07.2008 23:59,97947,1901
|
||||
06.07.2008 23:59,97954,1902
|
||||
07.07.2008 23:59,97970,1903
|
||||
08.07.2008 23:59,97976,1904
|
||||
09.07.2008 23:59,97984,1905
|
||||
10.07.2008 23:59,97993,1906
|
||||
11.07.2008 23:59,98003,1907
|
||||
12.07.2008 23:59,98014,1908
|
||||
13.07.2008 23:59,98025,1909
|
||||
14.07.2008 23:59,98037,1910
|
||||
15.07.2008 23:59,98050,1912
|
||||
16.07.2008 23:59,98060,1915
|
||||
17.07.2008 23:59,98067,1917
|
||||
18.07.2008 23:59,98072,1917
|
||||
19.07.2008 23:59,98075,1918
|
||||
20.07.2008 23:59,98084,1921
|
||||
21.07.2008 23:59,98090,1922
|
||||
22.07.2008 23:59,98098,1924
|
||||
23.07.2008 23:59,98101,1925
|
||||
24.07.2008 23:59,98104,1926
|
||||
25.07.2008 23:59,98112,1927
|
||||
26.07.2008 23:59,98113,1928
|
||||
27.07.2008 23:59,98121,1929
|
||||
28.07.2008 23:59,98124,1930
|
||||
29.07.2008 23:59,98136,1931
|
||||
30.07.2008 23:59,98144,1932
|
||||
31.07.2008 23:59,98149,1934
|
||||
01.08.2008 23:59,98161,1935
|
||||
02.08.2008 23:59,98171,1936
|
||||
03.08.2008 23:59,98180,1937
|
||||
04.08.2008 23:59,98185,1938
|
||||
05.08.2008 23:59,98193,1939
|
||||
06.08.2008 23:59,98201,1940
|
||||
07.08.2008 23:59,98212,1941
|
||||
08.08.2008 23:59,98217,1942
|
||||
09.08.2008 23:59,98222,1943
|
||||
10.08.2008 23:59,98230,1944
|
||||
11.08.2008 23:59,98235,1945
|
||||
12.08.2008 23:59,98242,1946
|
||||
13.08.2008 23:59,98244,1946
|
||||
14.08.2008 23:59,98250,1947
|
||||
15.08.2008 23:59,98255,1948
|
||||
16.08.2008 23:59,98262,1949
|
||||
17.08.2008 23:59,98268,1949
|
||||
18.08.2008 23:59,98276,1950
|
||||
19.08.2008 23:59,98284,1951
|
||||
20.08.2008 23:59,98290,1952
|
||||
21.08.2008 23:59,98295,1953
|
||||
22.08.2008 23:59,98304,1954
|
||||
23.08.2008 23:59,98313,1956
|
||||
24.08.2008 23:59,98319,1958
|
||||
25.08.2008 23:59,98333,1962
|
||||
26.08.2008 23:59,98343,1963
|
||||
27.08.2008 23:59,98354,1964
|
||||
28.08.2008 23:59,98359,1965
|
||||
29.08.2008 23:59,98365,1966
|
||||
30.08.2008 23:59,98368,1967
|
||||
03.09.2008 23:59,98387,1971
|
||||
04.09.2008 23:59,98388,1972
|
||||
05.09.2008 23:59,98392,1973
|
||||
06.09.2008 23:59,98395,1974
|
||||
07.09.2008 23:59,98399,1975
|
||||
08.09.2008 23:59,98409,1977
|
||||
09.09.2008 23:59,98413,1978
|
||||
10.09.2008 23:59,98417,1979
|
||||
11.09.2008 23:59,98425,1980
|
||||
12.09.2008 23:59,98443,1981
|
||||
13.09.2008 23:59,98451,1982
|
||||
14.09.2008 23:59,98456,1983
|
||||
15.09.2008 23:59,98460,1984
|
||||
16.09.2008 23:59,98473,1985
|
||||
17.09.2008 23:59,98476,1986
|
||||
18.09.2008 23:59,98486,1987
|
||||
19.09.2008 23:59,98490,1992
|
||||
20.09.2008 23:59,98490,1992
|
||||
21.09.2008 23:59,98497,1993
|
||||
22.09.2008 23:59,98500,1994
|
||||
23.09.2008 23:59,98503,1996
|
||||
24.09.2008 23:59,98508,1997
|
||||
25.09.2008 23:59,98516,2000
|
||||
26.09.2008 23:59,98521,2001
|
||||
27.09.2008 23:59,98527,2002
|
||||
28.09.2008 23:59,98534,2003
|
||||
29.09.2008 23:59,98542,2004
|
||||
30.09.2008 23:59,98545,2006
|
||||
01.10.2008 23:59,98550,2007
|
||||
02.10.2008 23:59,98554,2008
|
||||
03.10.2008 23:59,98555,2009
|
||||
04.10.2008 23:59,98558,2013
|
||||
05.10.2008 23:59,98563,2014
|
||||
06.10.2008 23:59,98569,2015
|
||||
07.10.2008 23:59,98576,2016
|
||||
08.10.2008 23:59,98581,2017
|
||||
09.10.2008 23:59,98586,2019
|
||||
10.10.2008 23:59,98590,2020
|
||||
11.10.2008 23:59,98596,2021
|
||||
12.10.2008 23:59,98601,2022
|
||||
13.10.2008 23:59,98612,2023
|
||||
14.10.2008 23:59,98614,2024
|
||||
15.10.2008 23:59,98619,2026
|
||||
16.10.2008 23:59,98621,2027
|
||||
17.10.2008 23:59,98626,2028
|
||||
18.10.2008 23:59,98635,2029
|
||||
19.10.2008 23:59,98642,2029
|
||||
20.10.2008 23:59,98652,2030
|
||||
21.10.2008 23:59,98653,2031
|
||||
22.10.2008 23:59,98656,2032
|
||||
23.10.2008 23:59,98663,2033
|
||||
24.10.2008 23:59,98670,2034
|
||||
25.10.2008 23:59,98672,2035
|
||||
26.10.2008 23:59,98678,2036
|
||||
27.10.2008 23:59,98682,2037
|
||||
28.10.2008 23:59,98693,2038
|
||||
29.10.2008 23:59,98700,2039
|
||||
30.10.2008 23:59,98709,2040
|
||||
31.10.2008 23:59,98716,2041
|
||||
01.11.2008 23:59,98721,2042
|
||||
02.11.2008 23:59,98727,2043
|
||||
03.11.2008 23:59,98736,2044
|
||||
04.11.2008 23:59,98746,2047
|
||||
05.11.2008 23:59,98752,2047
|
||||
06.11.2008 23:59,98757,2049
|
||||
07.11.2008 23:59,98761,2050
|
||||
08.11.2008 23:59,98765,2051
|
||||
14.11.2008 15:48,98809,2059
|
||||
14.11.2008 15:49,98809,2059
|
||||
15.11.2008 00:01,98817,2059
|
||||
16.11.2008 00:01,98823,2060
|
||||
17.11.2008 00:01,98831,2061
|
||||
18.11.2008 00:01,98836,2062
|
||||
19.11.2008 00:01,98839,2063
|
||||
20.11.2008 00:01,98847,2064
|
||||
21.11.2008 00:01,98851,2067
|
||||
22.11.2008 00:01,98860,2068
|
||||
23.11.2008 00:01,98867,2071
|
||||
24.11.2008 00:01,98875,2072
|
||||
25.11.2008 00:01,98883,2073
|
||||
26.11.2008 00:01,98890,2074
|
||||
27.11.2008 00:01,98893,2075
|
||||
28.11.2008 00:01,98898,2076
|
||||
29.11.2008 00:01,98907,2078
|
||||
30.11.2008 00:01,98916,2079
|
||||
01.12.2008 00:01,98920,2081
|
||||
02.12.2008 00:01,98933,2089
|
||||
04.12.2008 00:01,98949,2092
|
||||
05.12.2008 00:01,98954,2094
|
||||
08.12.2008 00:01,98957,2096
|
||||
10.12.2008 00:01,98969,2099
|
||||
11.12.2008 00:01,98970,2100
|
||||
17.12.2008 00:01,98977,2100
|
||||
18.12.2008 00:01,98980,2101
|
||||
19.12.2008 00:01,98986,2104
|
||||
20.12.2008 00:01,98991,2106
|
||||
21.12.2008 00:01,99011,2107
|
||||
22.12.2008 00:01,99013,2108
|
||||
23.12.2008 00:01,99021,2109
|
||||
24.12.2008 00:01,99029,2110
|
||||
25.12.2008 00:49,99039,2113
|
||||
27.12.2008 00:01,99062,2116
|
||||
28.12.2008 00:01,99064,2117
|
||||
29.12.2008 00:01,99069,2118
|
||||
30.12.2008 00:01,99077,2121
|
||||
31.12.2008 00:01,99083,2122
|
||||
01.01.2009 00:01,99087,2123
|
||||
02.01.2009 00:01,99101,2124
|
||||
03.01.2009 00:01,99107,2125
|
||||
04.01.2009 00:01,99112,2126
|
||||
05.01.2009 00:01,99126,2127
|
||||
06.01.2009 00:01,99135,2129
|
||||
07.01.2009 00:01,99143,2130
|
||||
08.01.2009 00:01,99145,2131
|
||||
09.01.2009 00:01,99153,2133
|
||||
10.01.2009 00:01,99158,2134
|
||||
11.01.2009 00:01,99167,2139
|
||||
12.01.2009 00:01,99172,2140
|
||||
13.01.2009 00:01,99181,2141
|
||||
14.01.2009 00:01,99189,2142
|
||||
15.01.2009 00:01,99199,2143
|
||||
16.01.2009 00:01,99206,2145
|
||||
17.01.2009 00:01,99216,2147
|
||||
18.01.2009 00:01,99225,2148
|
||||
19.01.2009 00:01,99238,2150
|
||||
20.01.2009 00:01,99250,2151
|
||||
21.01.2009 00:01,99265,2152
|
||||
22.01.2009 00:01,99276,2154
|
||||
23.01.2009 00:01,99284,2155
|
||||
24.01.2009 00:01,99294,2156
|
||||
25.01.2009 00:01,99304,2157
|
||||
26.01.2009 00:01,99315,2158
|
||||
27.01.2009 00:01,99328,2159
|
||||
31.01.2009 00:01,99373,2164
|
||||
01.02.2009 00:01,99382,2165
|
||||
02.02.2009 00:01,99406,2166
|
||||
03.02.2009 00:01,99422,2167
|
||||
04.02.2009 00:01,99433,2168
|
||||
05.02.2009 00:01,99443,2169
|
||||
06.02.2009 00:01,99449,2170
|
||||
07.02.2009 00:01,99461,2171
|
||||
08.02.2009 00:01,99473,2172
|
||||
09.02.2009 00:01,99488,2178
|
||||
10.02.2009 00:01,99512,2180
|
||||
11.02.2009 00:01,99524,2182
|
||||
12.02.2009 00:01,99537,2183
|
||||
13.02.2009 00:01,99539,2184
|
||||
14.02.2009 00:01,99547,2187
|
||||
15.02.2009 00:01,99573,2188
|
||||
16.02.2009 00:01,99583,2188
|
||||
17.02.2009 00:01,99592,2189
|
||||
18.02.2009 00:01,99599,2191
|
||||
19.02.2009 00:01,99605,2192
|
||||
20.02.2009 00:01,99615,2193
|
||||
21.02.2009 00:01,99636,2194
|
||||
22.02.2009 00:01,99648,2195
|
||||
23.02.2009 00:01,99666,2196
|
||||
24.02.2009 00:01,99675,2200
|
||||
25.02.2009 00:01,99688,2202
|
||||
26.02.2009 00:01,99696,2203
|
||||
27.02.2009 00:01,99700,2204
|
||||
28.02.2009 00:01,99711,2206
|
||||
01.03.2009 00:01,99726,2208
|
||||
02.03.2009 00:01,99732,2209
|
||||
03.03.2009 00:01,99741,2210
|
||||
04.03.2009 00:01,99753,2210
|
||||
05.03.2009 00:01,99762,2211
|
||||
06.03.2009 00:01,99773,2213
|
||||
07.03.2009 00:01,99787,2214
|
||||
08.03.2009 00:01,99794,2214
|
||||
09.03.2009 00:01,99816,2215
|
||||
10.03.2009 00:01,99828,2217
|
||||
11.03.2009 00:01,99837,2218
|
||||
12.03.2009 00:01,99845,2219
|
||||
13.03.2009 00:01,99857,2220
|
||||
14.03.2009 00:01,99870,2222
|
||||
16.03.2009 00:01,99874,2223
|
||||
17.03.2009 00:01,99887,2224
|
||||
18.03.2009 00:01,99896,2225
|
||||
19.03.2009 00:01,99904,2226
|
||||
20.03.2009 00:01,99911,2227
|
||||
21.03.2009 00:01,99918,2228
|
||||
22.03.2009 00:01,99930,2229
|
||||
23.03.2009 00:01,99939,2231
|
||||
26.03.2009 00:01,99968,2235
|
||||
27.03.2009 00:01,99969,2235
|
||||
28.03.2009 00:01,99979,2236
|
||||
31.03.2009 00:01,100009,2238
|
||||
01.04.2009 00:01,100019,2240
|
||||
02.04.2009 00:01,100028,2240
|
||||
03.04.2009 00:01,100040,2241
|
||||
04.04.2009 00:01,100048,2243
|
||||
05.04.2009 00:01,100057,2244
|
||||
06.04.2009 00:01,100068,2246
|
||||
07.04.2009 00:41,100076,2247
|
||||
08.04.2009 00:01,100087,2248
|
||||
09.04.2009 00:01,100096,2249
|
||||
10.04.2009 00:01,100111,2250
|
||||
11.04.2009 00:01,100116,2251
|
||||
12.04.2009 00:01,100130,2256
|
||||
13.04.2009 00:01,100142,2257
|
||||
196
Webseiten/bildergallerie/data/count_vote_hist_ges
Normal file
@@ -0,0 +1,196 @@
|
||||
02.08.2006 23:59,88814,739
|
||||
03.08.2006 23:59,88831,739
|
||||
04.08.2006 23:59,88845,741
|
||||
05.08.2006 23:59,88855,742
|
||||
06.08.2006 23:59,88872,743
|
||||
07.08.2006 23:59,88884,743
|
||||
08.08.2006 23:59,88899,743
|
||||
09.08.2006 23:59,88915,744
|
||||
10.08.2006 23:59,88932,763
|
||||
11.08.2006 23:59,88953,765
|
||||
12.08.2006 23:59,88970,767
|
||||
13.08.2006 23:59,88990,769
|
||||
14.08.2006 23:59,89007,769
|
||||
15.08.2006 23:59,89029,770
|
||||
16.08.2006 23:59,89042,772
|
||||
17.08.2006 23:59,89063,772
|
||||
18.08.2006 23:59,89082,772
|
||||
19.08.2006 23:59,89098,776
|
||||
20.08.2006 23:59,89116,776
|
||||
21.08.2006 23:59,89133,778
|
||||
22.08.2006 23:59,89143,780
|
||||
23.08.2006 23:59,89160,780
|
||||
24.08.2006 23:59,89180,780
|
||||
25.08.2006 23:59,89192,780
|
||||
26.08.2006 23:59,89202,782
|
||||
27.08.2006 23:59,89214,784
|
||||
28.08.2006 23:59,89233,789
|
||||
29.08.2006 23:59,89246,796
|
||||
30.08.2006 23:59,89271,799
|
||||
31.08.2006 23:59,89294,817
|
||||
01.09.2006 23:59,89308,817
|
||||
02.09.2006 23:59,89322,817
|
||||
03.09.2006 23:59,89337,820
|
||||
04.09.2006 23:59,89351,824
|
||||
05.09.2006 23:59,89370,826
|
||||
06.09.2006 23:59,89388,826
|
||||
07.09.2006 23:59,89401,828
|
||||
08.09.2006 23:59,89425,830
|
||||
09.09.2006 23:59,89451,831
|
||||
10.09.2006 23:59,89469,831
|
||||
11.09.2006 23:59,89496,831
|
||||
12.09.2006 23:59,89523,831
|
||||
13.09.2006 23:59,89546,955
|
||||
14.09.2006 23:59,89568,957
|
||||
15.09.2006 23:59,89606,962
|
||||
16.09.2006 23:59,89618,1047
|
||||
17.09.2006 23:59,89635,1048
|
||||
18.09.2006 23:59,89651,1049
|
||||
19.09.2006 23:59,89663,1050
|
||||
20.09.2006 23:59,89681,1050
|
||||
21.09.2006 23:59,89703,1050
|
||||
22.09.2006 23:59,89719,1050
|
||||
23.09.2006 23:59,89737,1050
|
||||
24.09.2006 23:59,89748,1056
|
||||
25.09.2006 23:59,89779,1062
|
||||
26.09.2006 23:59,89799,1063
|
||||
27.09.2006 23:59,89815,1063
|
||||
28.09.2006 23:59,89835,1063
|
||||
29.09.2006 23:59,89852,1064
|
||||
30.09.2006 23:59,89866,1064
|
||||
01.10.2006 23:59,89883,1065
|
||||
02.10.2006 23:59,89902,1068
|
||||
03.10.2006 23:59,89916,1069
|
||||
04.10.2006 23:59,89930,1070
|
||||
05.10.2006 23:59,89950,1070
|
||||
06.10.2006 23:59,89971,1070
|
||||
07.10.2006 23:59,89980,1071
|
||||
08.10.2006 23:59,90018,1073
|
||||
09.10.2006 23:59,90043,1073
|
||||
10.10.2006 23:59,90073,1073
|
||||
11.10.2006 23:59,90087,1073
|
||||
12.10.2006 23:59,90111,1074
|
||||
13.10.2006 23:59,90130,1074
|
||||
14.10.2006 23:59,90156,1081
|
||||
15.10.2006 23:59,90172,1084
|
||||
16.10.2006 23:59,90191,1084
|
||||
17.10.2006 23:59,90212,1084
|
||||
18.10.2006 23:59,90233,1086
|
||||
19.10.2006 23:59,90259,1103
|
||||
20.10.2006 23:59,90273,1103
|
||||
21.10.2006 23:59,90291,1105
|
||||
22.10.2006 23:59,90310,1105
|
||||
23.10.2006 23:59,90325,1105
|
||||
24.10.2006 23:59,90353,1108
|
||||
25.10.2006 23:59,90364,1109
|
||||
26.10.2006 23:59,90395,1109
|
||||
27.10.2006 23:59,90412,1110
|
||||
28.10.2006 23:59,90429,1110
|
||||
29.10.2006 23:59,90457,1115
|
||||
30.10.2006 23:59,90469,1115
|
||||
31.10.2006 23:59,90493,1115
|
||||
01.11.2006 23:59,90529,1117
|
||||
02.11.2006 23:59,90555,1120
|
||||
03.11.2006 23:59,90579,1125
|
||||
04.11.2006 23:59,90603,1129
|
||||
05.11.2006 23:59,90632,1132
|
||||
06.11.2006 23:59,90653,1132
|
||||
07.11.2006 23:59,90677,1132
|
||||
08.11.2006 23:59,90691,1134
|
||||
09.11.2006 23:59,90710,1137
|
||||
10.11.2006 23:59,90728,1138
|
||||
11.11.2006 23:59,90744,1138
|
||||
12.11.2006 23:59,90756,1139
|
||||
13.11.2006 23:59,90777,1139
|
||||
14.11.2006 23:59,90806,1140
|
||||
15.11.2006 23:59,90821,1143
|
||||
16.11.2006 23:59,90842,1143
|
||||
17.11.2006 23:59,90857,1143
|
||||
18.11.2006 23:59,90876,1144
|
||||
19.11.2006 23:59,90902,1145
|
||||
20.11.2006 23:59,90913,1145
|
||||
21.11.2006 23:59,90940,1146
|
||||
22.11.2006 23:59,90971,1150
|
||||
23.11.2006 23:59,90987,1150
|
||||
24.11.2006 23:59,91005,1150
|
||||
25.11.2006 23:59,91024,1151
|
||||
26.11.2006 23:59,91046,1159
|
||||
27.11.2006 23:59,91058,1159
|
||||
28.11.2006 23:59,91081,1159
|
||||
29.11.2006 23:59,91103,1161
|
||||
30.11.2006 23:59,91124,1161
|
||||
01.12.2006 23:59,91139,1161
|
||||
02.12.2006 23:59,91157,1161
|
||||
03.12.2006 23:59,91177,1163
|
||||
04.12.2006 23:59,91197,1163
|
||||
05.12.2006 23:59,91213,1163
|
||||
06.12.2006 23:59,91236,1165
|
||||
07.12.2006 23:59,91257,1165
|
||||
08.12.2006 23:59,91273,1170
|
||||
09.12.2006 23:59,91285,1170
|
||||
10.12.2006 23:59,91302,1170
|
||||
11.12.2006 23:59,91316,1172
|
||||
12.12.2006 23:59,91333,1172
|
||||
13.12.2006 23:59,91356,1172
|
||||
14.12.2006 23:59,91370,1172
|
||||
15.12.2006 23:59,91384,1174
|
||||
16.12.2006 23:59,91398,1175
|
||||
17.12.2006 23:59,91408,1175
|
||||
18.12.2006 23:59,91424,1176
|
||||
19.12.2006 23:59,91444,1179
|
||||
20.12.2006 23:59,91454,1179
|
||||
21.12.2006 23:59,91468,1182
|
||||
22.12.2006 23:59,91484,1182
|
||||
23.12.2006 23:59,91490,1182
|
||||
24.12.2006 23:59,91500,1182
|
||||
25.12.2006 23:59,91510,1195
|
||||
26.12.2006 23:59,91519,1196
|
||||
27.12.2006 23:59,91535,1196
|
||||
28.12.2006 23:59,91547,1198
|
||||
29.12.2006 23:59,91563,1198
|
||||
30.12.2006 23:59,91577,1204
|
||||
31.12.2006 23:59,91589,1204
|
||||
01.01.2007 23:59,91601,1204
|
||||
02.01.2007 23:59,91615,1205
|
||||
03.01.2007 23:59,91624,1205
|
||||
04.01.2007 23:59,91637,1205
|
||||
05.01.2007 23:59,91646,1209
|
||||
06.01.2007 23:59,91660,1209
|
||||
07.01.2007 23:59,91669,1211
|
||||
08.01.2007 23:59,91690,1214
|
||||
09.01.2007 23:59,91696,1214
|
||||
10.01.2007 23:59,91710,1214
|
||||
11.01.2007 23:59,91727,1218
|
||||
12.01.2007 23:59,91742,1219
|
||||
13.01.2007 23:59,91764,1219
|
||||
14.01.2007 23:59,91780,1219
|
||||
15.01.2007 23:59,91801,1221
|
||||
16.01.2007 23:59,91813,1223
|
||||
17.01.2007 23:59,91833,1223
|
||||
18.01.2007 23:59,91853,1226
|
||||
19.01.2007 23:59,91874,1226
|
||||
20.01.2007 23:59,91896,1226
|
||||
21.01.2007 23:59,91922,1241
|
||||
22.01.2007 23:59,91946,1241
|
||||
23.01.2007 23:59,91955,1241
|
||||
24.01.2007 23:59,91967,1241
|
||||
25.01.2007 23:59,91975,1241
|
||||
26.01.2007 23:59,91991,1241
|
||||
27.01.2007 23:59,92004,1243
|
||||
28.01.2007 23:59,92016,1243
|
||||
29.01.2007 23:59,92030,1243
|
||||
30.01.2007 23:59,92048,1243
|
||||
31.01.2007 23:59,92063,1247
|
||||
01.02.2007 23:59,92078,1247
|
||||
02.02.2007 23:59,92093,1248
|
||||
03.02.2007 23:59,92106,1248
|
||||
04.02.2007 23:59,92119,1248
|
||||
05.02.2007 23:59,92131,1248
|
||||
06.02.2007 23:59,92148,1253
|
||||
07.02.2007 23:59,92162,1253
|
||||
08.02.2007 23:59,92177,1254
|
||||
09.02.2007 23:59,92192,1254
|
||||
10.02.2007 23:59,92208,1254
|
||||
11.02.2007 23:59,92222,1255
|
||||
12.02.2007 23:59,92246,1255
|
||||
13.02.2007 23:59,92262,1256
|
||||
1
Webseiten/bildergallerie/data/flag
Normal file
@@ -0,0 +1 @@
|
||||
28-3-109
|
||||
3
Webseiten/bildergallerie/data/newscorner
Normal file
@@ -0,0 +1,3 @@
|
||||
<marquee scrolldelay='100'>
|
||||
<b>Hunderte neuer Girls! Tausende neuer Bilder! Reinschauen!</b><br>
|
||||
</marquee>
|
||||
1
Webseiten/bildergallerie/data/pic_of_day
Normal file
@@ -0,0 +1 @@
|
||||
../bilder/Elizabeth Corpuz/cc_HeavenlyBodies_17_Elizabeth_Corpuz.jpg
|
||||
208
Webseiten/bildergallerie/data/voting
Normal file
@@ -0,0 +1,208 @@
|
||||
Adriana Sklenarikova,110,749
|
||||
Adriane Grott,177,1524
|
||||
Ali Landry,27,157
|
||||
Alicia Silverstone,18,80
|
||||
Alley Baggett,26,148
|
||||
Amy Sue Cooper,27,192
|
||||
Angelica Bridges,31,219
|
||||
Angelina Jolie,39,211
|
||||
Anika Knudsen,40,297
|
||||
Anita Korsos,9,45
|
||||
Brande Roderick,46,323
|
||||
Bridget Hall,12,52
|
||||
Britney Spears,38,257
|
||||
Brittany Daniel,21,100
|
||||
Brooke Burke,20,95
|
||||
Brooke Shields,12,61
|
||||
Cameron Diaz,22,108
|
||||
Caprice Bourette,10,40
|
||||
Carmen Electra,21,148
|
||||
Catherine Zeta-Jones,28,190
|
||||
Charlie O Neale,24,152
|
||||
Charlize Theron,8,51
|
||||
Christina Aguilera,15,87
|
||||
Cindy Crawford,20,133
|
||||
Daniela Pestova,11,66
|
||||
Daniela Cicarelli,11,29
|
||||
Danielle Gamba,54,347
|
||||
Denise Richards,7,45
|
||||
Diana Herold,8,36
|
||||
Echo Johnson,12,79
|
||||
Elisabetta Gregoraci,42,311
|
||||
Elizabeth Hurley,20,138
|
||||
Emily Alexander,16,110
|
||||
Erika Eleniak,19,128
|
||||
Faith Hill,11,48
|
||||
Gabrielle Reece,14,91
|
||||
Gleicy Santos,13,75
|
||||
Hazell Serrano,30,249
|
||||
Heather Spytek,13,82
|
||||
Heidi Klum,22,75
|
||||
Holly Valance,18,106
|
||||
Imogen Bailey,13,90
|
||||
Inez Manta,10,51
|
||||
Ingrid Seynhaeve,10,61
|
||||
Jaime Bergman,19,127
|
||||
Jaime Rucker,13,84
|
||||
Jennifer Aniston,8,44
|
||||
Jennifer Lopez,13,58
|
||||
Jenny McCarthy,16,95
|
||||
Jessica Simpson,31,220
|
||||
Josie Maran,9,42
|
||||
Kate Groombridge,10,61
|
||||
Katie Alens,17,100
|
||||
Katie Holmes,7,35
|
||||
Katie Lohmann,33,245
|
||||
Katie Price,14,105
|
||||
Keira Knightley,9,62
|
||||
Kelly Carlson,10,66
|
||||
Kelly Monaco,9,62
|
||||
Kinga Pankiewicz,8,41
|
||||
Laetitia Casta,9,43
|
||||
Leticia Netto,16,95
|
||||
Liv Tyler,9,48
|
||||
Luciana Bianchi,15,66
|
||||
Luisana Lopilato,47,303
|
||||
Mariah Carey,17,94
|
||||
Mariella Ahrens,12,72
|
||||
Merritt Cabal,10,61
|
||||
Monica Bellucci,28,189
|
||||
Naomi Campbell,12,57
|
||||
Natalia Casassola,23,110
|
||||
Natalia Paris,12,79
|
||||
Neve Campbell,4,22
|
||||
Olivia Hammil,18,114
|
||||
Pamela Anderson,40,207
|
||||
Penelope Cruz,15,60
|
||||
Petra Nemcova,40,179
|
||||
Rebecca Romijn,13,85
|
||||
Renata Ramos,14,79
|
||||
Rhona Mitra,15,91
|
||||
Robin Jean,11,51
|
||||
Sabrina Staubitz,22,123
|
||||
Salma Hayek,10,68
|
||||
Samantha Torres,25,186
|
||||
Shae Marks,8,57
|
||||
Shannon Elizabeth,10,74
|
||||
Sharon Stone,20,134
|
||||
Stacy Sanches,9,51
|
||||
Tia Carrere,7,39
|
||||
Tiffani Amber Thiessen,7,47
|
||||
Tyra Banks,35,213
|
||||
Vibe Sorensen,12,59
|
||||
Victoria Silvstedt,15,106
|
||||
Yasmin Ghauri,11,78
|
||||
Yasmine Bleeth,19,86
|
||||
Zoe Gregory,17,111
|
||||
Tatjana Patitz,12,62
|
||||
Anna Nicole Smith,29,152
|
||||
Lorraine van Wyk,28,212
|
||||
Maria Jose Suarez,9,64
|
||||
Amanda Marcum,12,93
|
||||
Tiffany Selby,25,201
|
||||
Tiffany Amber Thiessen,3,19
|
||||
Giorgia Palmas,10,14
|
||||
Christina Milian,10,35
|
||||
Natasha Henstridge,5,42
|
||||
Jennifer Garner,3,20
|
||||
Isabel Edvardsson,3,24
|
||||
Leah Remini,1,8
|
||||
Adriana Louvier,1,8
|
||||
Joy Behrman,1,9
|
||||
Xenia Seeberg,2,16
|
||||
Kader Loth,1,2
|
||||
Codi Milo,1,8
|
||||
Fanny Rinne,1,9
|
||||
Christina Lindley,1,8
|
||||
Abby Essien,2,11
|
||||
Tila Nguyen,1,8
|
||||
Neriah Davis,1,9
|
||||
Jasmin Gerat,3,15
|
||||
Jasmin Weber,1,2
|
||||
Sandra Keller,1,8
|
||||
Lucy Hale,1,9
|
||||
Lourdes Munguia,1,8
|
||||
Alicja Bachleda,1,8
|
||||
Miriam Schwarz,1,8
|
||||
Zsuzsanna Ripli,1,5
|
||||
Chandra West,2,10
|
||||
Paris Hilton,2,9
|
||||
Sherilyn Fenn,1,8
|
||||
Sandra Bullock,1,8
|
||||
Sonia Aquino,1,8
|
||||
Leryn Franco,1,8
|
||||
Christine Lopez,1,9
|
||||
Moon Bloodgood,1,10
|
||||
Tricia Helfer,1,8
|
||||
Mi Ridell,1,8
|
||||
Kylie Minogue,1,9
|
||||
Aneta Borzych,1,9
|
||||
Nina Ljungblad,2,18
|
||||
Paulina Porizkova,3,20
|
||||
Abbey Brooks,2,4
|
||||
Celine Dion,1,8
|
||||
Nikki Capelli,1,9
|
||||
Halle Berry,1,8
|
||||
Lucy Pinder,1,9
|
||||
Mirela Vieira,1,9
|
||||
Christine Lakin,1,7
|
||||
Brooke Richards,1,8
|
||||
Gina Wild,1,9
|
||||
Fernanda Schonardie,1,8
|
||||
Magdalena Graaf,1,9
|
||||
Nicole Scherzinger,1,2
|
||||
Shannon James,2,18
|
||||
Ashley Sarto,1,10
|
||||
Sarah Karges,1,9
|
||||
Sara Tommasi,1,9
|
||||
Jennifer Lopez (2),1,10
|
||||
Michelle Hunziker,1,9
|
||||
Karen Mulder,1,9
|
||||
Barbara Borges,1,10
|
||||
Nikkala Stott,1,8
|
||||
Anna Heesch,1,8
|
||||
Nikki Visser,1,10
|
||||
Petra Schweers,1,8
|
||||
Michelle Buswell,1,9
|
||||
Kimberly Williams (2),1,9
|
||||
Zdenka Podkapova,3,16
|
||||
Karen McDougal,1,1
|
||||
Alana De La Garza,1,9
|
||||
Valleria Kalmas,1,9
|
||||
Tyran Richard,1,9
|
||||
Gabriela Monteiro,4,38
|
||||
Gemma Atkinson,1,9
|
||||
Belinda Carlisle,1,3
|
||||
Isabelle Filling,1,9
|
||||
Francesca Chillemi,2,10
|
||||
Amanda Bynes,1,8
|
||||
Paris Dahl,2,16
|
||||
Jana Jordan,2,16
|
||||
Eve Scheer,1,8
|
||||
Sophie Marceau,1,8
|
||||
Tailor James,1,9
|
||||
Kajsa Mellgren,1,9
|
||||
Rosalynd Joyce,1,9
|
||||
Katrin Weisser,1,8
|
||||
Michelle Rodriguez,1,8
|
||||
Natalia Oreiro,1,10
|
||||
Sonja Kinski,1,8
|
||||
Diane Richey,1,9
|
||||
Sara Foster,1,9
|
||||
Claudia Schiffer,1,9
|
||||
Jasmin Brandt,1,9
|
||||
Anna Skyhag,1,10
|
||||
Sofia Vergara,1,9
|
||||
Elena Barolo,1,9
|
||||
Ashley Judd,3,12
|
||||
Alena Gerber,1,9
|
||||
Crissy Moran,1,9
|
||||
Linda Lampenius,1,8
|
||||
Brea Lynn,1,2
|
||||
Emma Johnsson,1,9
|
||||
Silke van Exel,1,8
|
||||
Lucy Becker,1,8
|
||||
Alisa Shamay,1,9
|
||||
Sophie Moone,1,8
|
||||
Amanda Swisten,1,9
|
||||
Kaley Cuoco,1,9
|
||||
7
Webseiten/bildergallerie/data/zip_comment
Normal file
@@ -0,0 +1,7 @@
|
||||
Download from
|
||||
http://www.bildergallerie.de
|
||||
http://www.bildergallerie.com
|
||||
|
||||
For private use only
|
||||
|
||||
Thx to all these girls :)
|
||||
29
Webseiten/bildergallerie/index.html
Normal file
@@ -0,0 +1,29 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Bildergallerie.de</title>
|
||||
|
||||
<meta name="description" content="Die schönsten Frauen der Welt.">
|
||||
<meta name="author" content="Andre W">
|
||||
<meta name="keywords" content="model, schauspieler, sexy, bilder, bildergalerie, bildergallerie, frauen, erotik">
|
||||
</head>
|
||||
|
||||
<frameset cols='*' rows='60,500'>
|
||||
<frame src='./scripts/top.pl' name='top' frameborder='0' noresize scrolling='no'>
|
||||
<frame src='./scripts/pics_e.pl' name='pics' frameborder='0' noresize scrolling='yes'>
|
||||
</frameset>
|
||||
<font size='0'>
|
||||
|
||||
|
||||
|
||||
|
||||
</font>
|
||||
</html>
|
||||
|
||||
<?php
|
||||
echo "<meta name='keywords' content='";
|
||||
$fh = opendir("../bilder");
|
||||
$content = array();
|
||||
while($file=readdir($fh)) { $content[]=$file; }
|
||||
for ($i=0;$i<count($content);$i++) { echo "$content[$i]\n"; }
|
||||
echo "'>";
|
||||
?>
|
||||
BIN
Webseiten/bildergallerie/pics/A.gif
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Webseiten/bildergallerie/pics/A_sel.jpg
Normal file
|
After Width: | Height: | Size: 533 B |
BIN
Webseiten/bildergallerie/pics/B.gif
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Webseiten/bildergallerie/pics/B_sel.jpg
Normal file
|
After Width: | Height: | Size: 553 B |
BIN
Webseiten/bildergallerie/pics/C.gif
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Webseiten/bildergallerie/pics/C_sel.jpg
Normal file
|
After Width: | Height: | Size: 545 B |
BIN
Webseiten/bildergallerie/pics/D.gif
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Webseiten/bildergallerie/pics/D_sel.jpg
Normal file
|
After Width: | Height: | Size: 525 B |
BIN
Webseiten/bildergallerie/pics/E.gif
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Webseiten/bildergallerie/pics/E_sel.jpg
Normal file
|
After Width: | Height: | Size: 536 B |
BIN
Webseiten/bildergallerie/pics/F.gif
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Webseiten/bildergallerie/pics/F_sel.jpg
Normal file
|
After Width: | Height: | Size: 525 B |
BIN
Webseiten/bildergallerie/pics/G.gif
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Webseiten/bildergallerie/pics/G_sel.jpg
Normal file
|
After Width: | Height: | Size: 558 B |
BIN
Webseiten/bildergallerie/pics/H.gif
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Webseiten/bildergallerie/pics/H_sel.jpg
Normal file
|
After Width: | Height: | Size: 547 B |
BIN
Webseiten/bildergallerie/pics/I.gif
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Webseiten/bildergallerie/pics/I_sel.jpg
Normal file
|
After Width: | Height: | Size: 486 B |
BIN
Webseiten/bildergallerie/pics/J.gif
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Webseiten/bildergallerie/pics/J_sel.jpg
Normal file
|
After Width: | Height: | Size: 514 B |
BIN
Webseiten/bildergallerie/pics/K.gif
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Webseiten/bildergallerie/pics/K_sel.jpg
Normal file
|
After Width: | Height: | Size: 563 B |
BIN
Webseiten/bildergallerie/pics/L.gif
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Webseiten/bildergallerie/pics/L_sel.jpg
Normal file
|
After Width: | Height: | Size: 526 B |
BIN
Webseiten/bildergallerie/pics/M.gif
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Webseiten/bildergallerie/pics/M_sel.jpg
Normal file
|
After Width: | Height: | Size: 564 B |
BIN
Webseiten/bildergallerie/pics/N.gif
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Webseiten/bildergallerie/pics/N_sel.jpg
Normal file
|
After Width: | Height: | Size: 563 B |
BIN
Webseiten/bildergallerie/pics/O.gif
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Webseiten/bildergallerie/pics/O_sel.jpg
Normal file
|
After Width: | Height: | Size: 540 B |
BIN
Webseiten/bildergallerie/pics/P.gif
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Webseiten/bildergallerie/pics/P_sel.jpg
Normal file
|
After Width: | Height: | Size: 523 B |
BIN
Webseiten/bildergallerie/pics/PieWhite.gif
Normal file
|
After Width: | Height: | Size: 67 B |
BIN
Webseiten/bildergallerie/pics/Q.gif
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Webseiten/bildergallerie/pics/Q_sel.jpg
Normal file
|
After Width: | Height: | Size: 551 B |
BIN
Webseiten/bildergallerie/pics/R.gif
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Webseiten/bildergallerie/pics/R_sel.jpg
Normal file
|
After Width: | Height: | Size: 562 B |
BIN
Webseiten/bildergallerie/pics/S.gif
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Webseiten/bildergallerie/pics/S_sel.jpg
Normal file
|
After Width: | Height: | Size: 540 B |
BIN
Webseiten/bildergallerie/pics/T.gif
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Webseiten/bildergallerie/pics/T_sel.jpg
Normal file
|
After Width: | Height: | Size: 514 B |
BIN
Webseiten/bildergallerie/pics/U.gif
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Webseiten/bildergallerie/pics/U_sel.jpg
Normal file
|
After Width: | Height: | Size: 507 B |
BIN
Webseiten/bildergallerie/pics/V.gif
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Webseiten/bildergallerie/pics/V_sel.jpg
Normal file
|
After Width: | Height: | Size: 529 B |
BIN
Webseiten/bildergallerie/pics/W.gif
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Webseiten/bildergallerie/pics/W_sel.jpg
Normal file
|
After Width: | Height: | Size: 542 B |
BIN
Webseiten/bildergallerie/pics/X.gif
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Webseiten/bildergallerie/pics/X_sel.jpg
Normal file
|
After Width: | Height: | Size: 562 B |
BIN
Webseiten/bildergallerie/pics/Y.gif
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Webseiten/bildergallerie/pics/Y_sel.jpg
Normal file
|
After Width: | Height: | Size: 519 B |
BIN
Webseiten/bildergallerie/pics/Z.gif
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Webseiten/bildergallerie/pics/Z_sel.jpg
Normal file
|
After Width: | Height: | Size: 545 B |
BIN
Webseiten/bildergallerie/pics/back.gif
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
Webseiten/bildergallerie/pics/check.gif
Normal file
|
After Width: | Height: | Size: 137 B |
BIN
Webseiten/bildergallerie/pics/email.gif
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
Webseiten/bildergallerie/pics/empfehlung.gif
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
Webseiten/bildergallerie/pics/first.gif
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
Webseiten/bildergallerie/pics/google.gif
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
Webseiten/bildergallerie/pics/help.gif
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
Webseiten/bildergallerie/pics/home.gif
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
Webseiten/bildergallerie/pics/ichsuche.GIF
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
Webseiten/bildergallerie/pics/inactive.gif
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
Webseiten/bildergallerie/pics/info.gif
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
Webseiten/bildergallerie/pics/last.gif
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
Webseiten/bildergallerie/pics/next.gif
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
Webseiten/bildergallerie/pics/no_info.gif
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
Webseiten/bildergallerie/pics/open_icon.gif
Normal file
|
After Width: | Height: | Size: 875 B |
BIN
Webseiten/bildergallerie/pics/save.gif
Normal file
|
After Width: | Height: | Size: 1.6 KiB |