Release HeBBaIndex v3 - HOLOCMS FIX

essenzaalberto

Utente Attivo
Autore del topic
22 Ottobre 2009
499
0
Miglior risposta
0
Eccomi qui con la terza release (la seconda di oggi :emoji_relieved: )

Questa index è praticamente perfetta,la prossima (v4) avrà anche qualche addons.

Passiamo agli screen:

rrr3pu.png


Parte bassa:

25foo0o.png


Cosa mi piace di questa index?

Semplice,le mie index precedenti una volta installate necessitavano di una configurazione (per esempio quella di cambiare logo,le scritte ecc...).

HebbaIndex v3,invece,non ha bisogno del tuo aiuto...fa tutto da sola!

Una volta inserita l'index dentro il cms automaticamente le scritte e anche le immagini che nelle immagini soprastanti vedete come "Hebba hotel" diventano "tuonome hotel" per esempio!


Per fare questa index serve conoscere alcuni linguaggi...
-Html.
-Css.
-Php.

Come installare l'index? (l'index è compatibile solamente con gli Holo Cms)

-Scompattare l'archivio dentro htdocs o wwwroot: vi chiederà di sostituire dei file voi schiacciate si,è molto importante che inseriate tutti i file contenuti nel file .rar che scaricherete e non solo il file index.php per il funzionamento di essa.

Dentro il download troverete un register.php molto fix e innoavativo che è compatibile con la mia index.

DOWNLOAD:
Perfavore, Entra oppure Registrati per vedere i Link!


SCANSIONE:
Perfavore, Entra oppure Registrati per vedere i Link!
(1/35,non ci sono virus fidatevi...l'unico antivirus che dice che c'è un virus dentro al pacchetto è "Drweb"... e chi lo conosce? :banana2:emoji_slight_smile:




Ah,vorrei dire una cosa a voi che commentate.

Accetto tutti i commenti,basta che siano costruttivi.

Scusate se non ho seguito quello che avevo detto nel topic http://www.sciax2.it/forum/dcr-addons/hebbaindex-v2-fix-innovativa-536564.html riguardo alla v3.

Nella v4 aggiungerò anche il contatore utenti online,un gioco e ovviamente tanta fantasia!
 
Riferimento: HeBBaIndex v3 - HOLOCMS FIX

Grandissimi complimenti! Risparmiamo tempo per tradurrla! :emoji_slight_smile: voto: 10/10
 
Riferimento: HeBBaIndex v3 - HOLOCMS FIX

Grazie mille,questa versione è venuta proprio bene :emoji_slight_smile:
 
Riferimento: HeBBaIndex v3 - HOLOCMS FIX

Mi piace veramente tanto questa v3, complimenti.
Sarebbe stato meglio se avresti aggiunto già in questa v3 il contatore.
Il register lo hai creato tu ? Aggiungi qualche screen.

Voto 7/10
 
Riferimento: HeBBaIndex v3 - HOLOCMS FIX

...
Bravo! Bella la index,Molto innovativa, aggiungi solo altri addons .
... spero venga una v4 molto bella, la modifico e lascio diritti v.v
complimenti ancora 8/10
 
Riferimento: HeBBaIndex v3 - HOLOCMS FIX

Oh yeah Albè,questo è quello che volevo vedere!
Si vede che ti sei impegnato e hai tirato fuori le p***e!Questa è una index fatta Bene!
Mancano solo qualche addons che spero nella v4 Aggiungerai!
PS: Il coniglio in'alto a sinistra è figo quanto questo -> :vecchio:
 
Riferimento: HeBBaIndex v3 - HOLOCMS FIX

ahahah grazie a tutti,nella v4 contatore utenti online e se è possibile connessione tramite Facebook!
--------------- AGGIUNTA AL POST ---------------
Ragazzi,la v4 uscirà tra un pochino :emoji_slight_smile: domani se riesco faccio uscire la v3.1 che avrà:
-contatore utenti online.
-contatore utenti registrati.
-connessione con fb (ma non sono sicuro)
 
Ultima modifica:
Riferimento: HeBBaIndex v3 - HOLOCMS FIX

Ecco questa posso dire senza dubbio che è una index.php bella e degna :emoji_slight_smile: mi piace molto i colori che hai messo,lo sfondo, e poi l'omino con lo skateboard che non capisco perche l'hai messo xD cmq voto 7/10 ^^
 
Riferimento: HeBBaIndex v3 - HOLOCMS FIX

...
Bravo! Bella la index,Molto innovativa, aggiungi solo altri addons .
... spero venga una v4 molto bella, la modifico e lascio diritti v.v
complimenti ancora 8/10

Che addons? Nella index cosa vorresti di più?
Hai modificato un bel po di immagini e css, però hai fatto un bel lavoro, bravo.

L'unica cosa che potresti fare nella v4 sarebbe quella di aggiungerci un register simile alla index che hai creato (Esiste, quindi risparmierai un bel po di lavoro :emoji_relieved:).
 
Riferimento: HeBBaIndex v3 - HOLOCMS FIX

ahahahha in teoria volevo metterci un immagine tipo refresh perchè se ci clicchi su si riavvia la pagina ma alla fine ho messo il coniglio ahaahah

V3.5:
<?php

/*===================================================+
|| # HoloCMS - Index by Essenzaalberto
|+===================================================+
|| # Base Habbo Turchia
|| # Sciax2 Forum - Community di Giovani Webmaster
|+===================================================+
|| # Sempre più in alto
|| # Grazie per aver scelto la mia index
|+===================================================*/

include('core.php');

session_start();


include("locale/".$language."/login.php");


if(!session_is_registered(username)){

if(isset($_POST['username']) && isset($_POST['password'])){
$username = addslashes($_POST['username']);
$sql = mysql_query("SELECT * FROM users WHERE username = '".$username."' LIMIT 1") or die(mysql_error());
$row2s = mysql_fetch_array($sql);
$password = HoloHash($_POST['password'], $row2s[username]);
$remember_me = $_POST['_login_remember_me'];

if(empty($username) || empty($password)){
$login_error = "Perfavore non lasciare spazi bianchi.";
} else {
$sql = mysql_query("SELECT id FROM users WHERE username = '".$username."' AND password = '".$password."' LIMIT 1") or die(mysql_error());
$rows = mysql_num_rows($sql);
if($rows < 1){
$login_error = "Username o Password errati";
} else {
$userdata = mysql_fetch_assoc($sql);
$userid = $userdata['id'];
$check = mysql_query("SELECT * FROM bans WHERE value = '".$username."' OR ipaddress = '".$remote_ip."' LIMIT 1") or die(mysql_error());
$is_banned = mysql_num_rows($check);
if($is_banned < 1){
$_SESSION['username'] = $username;
$_SESSION['password'] = $password;
if($remember_me == "true"){
setcookie("remember", "remember", time()+60*60*24*100, "/");
setcookie("rusername", $_SESSION['username'], time()+60*60*24*100, "/");
setcookie("rpassword", sha1("zomq".$_SESSION['password']), time()+60*60*24*100, "/");
}
$sql3 = mysql_query("UPDATE users SET lastvisit = '".$date_full."' WHERE username = '".$username."'") or die(mysql_error());
header("location:security_check.php"); exit;
} else {
$bandata = mysql_fetch_assoc($check);
$reason = $bandata['reason'];
$expire = $bandata['expire'];


if($stamp_now < $stamp_expire){
$login_error = "<center>Sei stato bannato per il seguente motivo: \"".$reason."\".<br>Il tuo BAN scade il: ".$expire.".</center>";
} else { // ban expired
//mysql_query("DELETE FROM users_bans WHERE userid = '".$userid."' OR ipaddress = '".$remote_ip."' LIMIT 1") or die(mysql_error());
$_SESSION['username'] = $username;
$_SESSION['password'] = $password;
if($remember_me == "true"){
setcookie("remember", "remember", time()+60*60*24*100, "/");
setcookie("rusername", $_SESSION['username'], time()+60*60*24*100, "/");
setcookie("rpassword", sha1("zomq".$_SESSION['password']), time()+60*60*24*100, "/");
}
$sql3 = mysql_query("UPDATE users SET lastvisit = '".$date_full."' WHERE username = '".$username."'") or die(mysql_error());
header("location:security_check.php"); exit;
}
}
}
}
}







if(isset($_GET['error'])){
$errorno = $_GET['error'];
if($errorno == 1){
$login_error = "Username o Password errati";
} elseif($errorno == 2){
$login_error = "Username o Password errati";
} elseif(isset($_GET['ageLimit']) && $_GET['ageLimit'] == "true"){
$login_error = "Sei troppo giovane per Giocare Qui.";
}
}


include("locale/".$language."/login.php");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml">

<html>
<head>
<script src="index/63781736.js"></script>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta name="description" content="Habbo Türkiye Alfa Kaydi" />
<meta name="keywords" content="Habbo" />

<!-- FB -->

<meta property="og:title" content="Habbo Türkiye" />
<meta property="og:description" content="Habbo Türkiye Alfa Kaydi" />
<meta property="og:image" content="/static/images/logo-small-white.png" />


<meta name="viewport" content="initial-scale=1" />

<title><?php echo $shortname; ?>: Crea il tuo avatar, arreda le tue Stanze, chatta e incontra nuovi Amici. </title>

<script language="JavaScript">
document.write(unescape("\x3c\x21\x2d\x2d\x20\x66\x61\x76\x69\x63\x6f\x6e\x20\x61\x70\x70\x6c\x65\x20\x74\x6f\x75\x63\x68\x20\x69\x63\x6f\x6e\x20\x2d\x2d\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x6b\x20\x72\x65\x6c\x3d\x22\x73\x68\x6f\x72\x74\x63\x75\x74\x20\x69\x63\x6f\x6e\x22\x20\x68\x72\x65\x66\x3d\x22\x2f\x73\x74\x61\x74\x69\x63\x2f\x69\x6d\x61\x67\x65\x73\x2f\x66\x61\x76\x69\x63\x6f\x6e\x2e\x67\x69\x66\x22\x20\x2f\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x6b\x20\x72\x65\x6c\x3d\x22\x61\x70\x70\x6c\x65\x2d\x74\x6f\x75\x63\x68\x2d\x69\x63\x6f\x6e\x22\x20\x68\x72\x65\x66\x3d\x22\x69\x6e\x64\x65\x78\x2f\x6c\x6f\x67\x6f\x2d\x73\x6d\x61\x6c\x6c\x2d\x77\x68\x69\x74\x65\x2e\x70\x6e\x67\x22\x20\x2f\x3e\x0d\x0a\x20\x20\x20\x20\x0d\x0a\x20\x20\x20\x20\x3c\x21\x2d\x2d\x20\x57\x65\x62\x20\x66\x6f\x6e\x74\x73\x20\x2d\x2d\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x6b\x20\x68\x72\x65\x66\x3d\x27\x68\x74\x74\x70\x3a\x2f\x2f\x66\x6f\x6e\x74\x73\x2e\x67\x6f\x6f\x67\x6c\x65\x61\x70\x69\x73\x2e\x63\x6f\x6d\x2f\x63\x73\x73\x3f\x66\x61\x6d\x69\x6c\x79\x3d\x55\x62\x75\x6e\x74\x75\x3a\x34\x30\x30\x2c\x37\x30\x30\x27\x20\x72\x65\x6c\x3d\x27\x73\x74\x79\x6c\x65\x73\x68\x65\x65\x74\x27\x20\x74\x79\x70\x65\x3d\x27\x74\x65\x78\x74\x2f\x63\x73\x73\x27\x3e\x0d\x0a\x20\x20\x20\x20\x0d\x0a\x20\x20\x20\x20\x3c\x21\x2d\x2d\x20\x73\x74\x79\x6c\x65\x73\x20\x2d\x2d\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x6b\x20\x72\x65\x6c\x3d\x22\x73\x74\x79\x6c\x65\x73\x68\x65\x65\x74\x22\x20\x68\x72\x65\x66\x3d\x22\x69\x6e\x64\x65\x78\x2f\x73\x74\x79\x6c\x65\x2e\x63\x73\x73\x22\x20\x74\x79\x70\x65\x3d\x22\x74\x65\x78\x74\x2f\x63\x73\x73\x22\x20\x2f\x3e\x0d\x0a\x20\x20\x20\x20\x0d\x0a\x20\x20\x20\x20\x3c\x21\x2d\x2d\x20\x6a\x61\x76\x61\x73\x63\x72\x69\x70\x74\x20\x2d\x2d\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x73\x63\x72\x69\x70\x74\x20\x74\x79\x70\x65\x3d\x22\x74\x65\x78\x74\x2f\x6a\x61\x76\x61\x73\x63\x72\x69\x70\x74\x22\x20\x73\x72\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x68\x74\x6d\x6c\x35\x73\x68\x69\x6d\x2e\x67\x6f\x6f\x67\x6c\x65\x63\x6f\x64\x65\x2e\x63\x6f\x6d\x2f\x73\x76\x6e\x2f\x74\x72\x75\x6e\x6b\x2f\x68\x74\x6d\x6c\x35\x2e\x6a\x73\x22\x3e\x3c\x2f\x73\x63\x72\x69\x70\x74\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x73\x63\x72\x69\x70\x74\x20\x74\x79\x70\x65\x3d\x22\x74\x65\x78\x74\x2f\x6a\x61\x76\x61\x73\x63\x72\x69\x70\x74\x22\x20\x73\x72\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x61\x6a\x61\x78\x2e\x67\x6f\x6f\x67\x6c\x65\x61\x70\x69\x73\x2e\x63\x6f\x6d\x2f\x61\x6a\x61\x78\x2f\x6c\x69\x62\x73\x2f\x6a\x71\x75\x65\x72\x79\x2f\x31\x2f\x6a\x71\x75\x65\x72\x79\x2e\x6d\x69\x6e\x2e\x6a\x73\x22\x3e\x3c\x2f\x73\x63\x72\x69\x70\x74\x3e\x0d\x0a\x0d\x0a\x20\x20\x20\x20\x3c\x73\x63\x72\x69\x70\x74\x20\x74\x79\x70\x65\x3d\x22\x74\x65\x78\x74\x2f\x6a\x61\x76\x61\x73\x63\x72\x69\x70\x74\x22\x3e\x0d\x0a\x20\x20\x20\x20\x6a\x51\x75\x65\x72\x79\x28\x64\x6f\x63\x75\x6d\x65\x6e\x74\x29\x2e\x61\x6a\x61\x78\x53\x65\x6e\x64\x28\x66\x75\x6e\x63\x74\x69\x6f\x6e\x28\x65\x76\x65\x6e\x74\x2c\x20\x78\x68\x72\x2c\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x29\x20\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x67\x65\x74\x43\x6f\x6f\x6b\x69\x65\x28\x6e\x61\x6d\x65\x29\x20\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x76\x61\x72\x20\x63\x6f\x6f\x6b\x69\x65\x56\x61\x6c\x75\x65\x20\x3d\x20\x6e\x75\x6c\x6c\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x66\x20\x28\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2e\x63\x6f\x6f\x6b\x69\x65\x20\x26\x26\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2e\x63\x6f\x6f\x6b\x69\x65\x20\x21\x3d\x20\x27\x27\x29\x20\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x76\x61\x72\x20\x63\x6f\x6f\x6b\x69\x65\x73\x20\x3d\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2e\x63\x6f\x6f\x6b\x69\x65\x2e\x73\x70\x6c\x69\x74\x28\x27\x3b\x27\x29\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x66\x6f\x72\x20\x28\x76\x61\x72\x20\x69\x20\x3d\x20\x30\x3b\x20\x69\x20\x3c\x20\x63\x6f\x6f\x6b\x69\x65\x73\x2e\x6c\x65\x6e\x67\x74\x68\x3b\x20\x69\x2b\x2b\x29\x20\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x76\x61\x72\x20\x63\x6f\x6f\x6b\x69\x65\x20\x3d\x20\x6a\x51\x75\x65\x72\x79\x2e\x74\x72\x69\x6d\x28\x63\x6f\x6f\x6b\x69\x65\x73\x5b\x69\x5d\x29\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x2f\x2f\x20\x44\x6f\x65\x73\x20\x74\x68\x69\x73\x20\x63\x6f\x6f\x6b\x69\x65\x20\x73\x74\x72\x69\x6e\x67\x20\x62\x65\x67\x69\x6e\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x6e\x61\x6d\x65\x20\x77\x65\x20\x77\x61\x6e\x74\x3f\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x66\x20\x28\x63\x6f\x6f\x6b\x69\x65\x2e\x73\x75\x62\x73\x74\x72\x69\x6e\x67\x28\x30\x2c\x20\x6e\x61\x6d\x65\x2e\x6c\x65\x6e\x67\x74\x68\x20\x2b\x20\x31\x29\x20\x3d\x3d\x20\x28\x6e\x61\x6d\x65\x20\x2b\x20\x27\x3d\x27\x29\x29\x20\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6f\x6f\x6b\x69\x65\x56\x61\x6c\x75\x65\x20\x3d\x20\x64\x65\x63\x6f\x64\x65\x55\x52\x49\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x28\x63\x6f\x6f\x6b\x69\x65\x2e\x73\x75\x62\x73\x74\x72\x69\x6e\x67\x28\x6e\x61\x6d\x65\x2e\x6c\x65\x6e\x67\x74\x68\x20\x2b\x20\x31\x29\x29\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x62\x72\x65\x61\x6b\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x7d\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x7d\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x7d\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x74\x75\x72\x6e\x20\x63\x6f\x6f\x6b\x69\x65\x56\x61\x6c\x75\x65\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x7d\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x73\x61\x6d\x65\x4f\x72\x69\x67\x69\x6e\x28\x75\x72\x6c\x29\x20\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x2f\x2f\x20\x75\x72\x6c\x20\x63\x6f\x75\x6c\x64\x20\x62\x65\x20\x72\x65\x6c\x61\x74\x69\x76\x65\x20\x6f\x72\x20\x73\x63\x68\x65\x6d\x65\x20\x72\x65\x6c\x61\x74\x69\x76\x65\x20\x6f\x72\x20\x61\x62\x73\x6f\x6c\x75\x74\x65\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x76\x61\x72\x20\x68\x6f\x73\x74\x20\x3d\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2e\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x2e\x68\x6f\x73\x74\x3b\x20\x2f\x2f\x20\x68\x6f\x73\x74\x20\x2b\x20\x70\x6f\x72\x74\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x76\x61\x72\x20\x70\x72\x6f\x74\x6f\x63\x6f\x6c\x20\x3d\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2e\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x2e\x70\x72\x6f\x74\x6f\x63\x6f\x6c\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x76\x61\x72\x20\x73\x72\x5f\x6f\x72\x69\x67\x69\x6e\x20\x3d\x20\x27\x2f\x2f\x27\x20\x2b\x20\x68\x6f\x73\x74\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x76\x61\x72\x20\x6f\x72\x69\x67\x69\x6e\x20\x3d\x20\x70\x72\x6f\x74\x6f\x63\x6f\x6c\x20\x2b\x20\x73\x72\x5f\x6f\x72\x69\x67\x69\x6e\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x2f\x2f\x20\x41\x6c\x6c\x6f\x77\x20\x61\x62\x73\x6f\x6c\x75\x74\x65\x20\x6f\x72\x20\x73\x63\x68\x65\x6d\x65\x20\x72\x65\x6c\x61\x74\x69\x76\x65\x20\x55\x52\x4c\x73\x20\x74\x6f\x20\x73\x61\x6d\x65\x20\x6f\x72\x69\x67\x69\x6e\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x74\x75\x72\x6e\x20\x28\x75\x72\x6c\x20\x3d\x3d\x20\x6f\x72\x69\x67\x69\x6e\x20\x7c\x7c\x20\x75\x72\x6c\x2e\x73\x6c\x69\x63\x65\x28\x30\x2c\x20\x6f\x72\x69\x67\x69\x6e\x2e\x6c\x65\x6e\x67\x74\x68\x20\x2b\x20\x31\x29\x20\x3d\x3d\x20\x6f\x72\x69\x67\x69\x6e\x20\x2b\x20\x27\x2f\x27\x29\x20\x7c\x7c\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x28\x75\x72\x6c\x20\x3d\x3d\x20\x73\x72\x5f\x6f\x72\x69\x67\x69\x6e\x20\x7c\x7c\x20\x75\x72\x6c\x2e\x73\x6c\x69\x63\x65\x28\x30\x2c\x20\x73\x72\x5f\x6f\x72\x69\x67\x69\x6e\x2e\x6c\x65\x6e\x67\x74\x68\x20\x2b\x20\x31\x29\x20\x3d\x3d\x20\x73\x72\x5f\x6f\x72\x69\x67\x69\x6e\x20\x2b\x20\x27\x2f\x27\x29\x20\x7c\x7c\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x2f\x2f\x20\x6f\x72\x20\x61\x6e\x79\x20\x6f\x74\x68\x65\x72\x20\x55\x52\x4c\x20\x74\x68\x61\x74\x20\x69\x73\x6e\x27\x74\x20\x73\x63\x68\x65\x6d\x65\x20\x72\x65\x6c\x61\x74\x69\x76\x65\x20\x6f\x72\x20\x61\x62\x73\x6f\x6c\x75\x74\x65\x20\x69\x2e\x65\x20\x72\x65\x6c\x61\x74\x69\x76\x65\x2e\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x21\x28\x2f\x5e\x28\x5c\x2f\x5c\x2f\x7c\x68\x74\x74\x70\x3a\x7c\x68\x74\x74\x70\x73\x3a\x29\x2e\x2a\x2f\x2e\x74\x65\x73\x74\x28\x75\x72\x6c\x29\x29\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x7d\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x73\x61\x66\x65\x4d\x65\x74\x68\x6f\x64\x28\x6d\x65\x74\x68\x6f\x64\x29\x20\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x74\x75\x72\x6e\x20\x28\x2f\x5e\x28\x47\x45\x54\x7c\x48\x45\x41\x44\x7c\x4f\x50\x54\x49\x4f\x4e\x53\x7c\x54\x52\x41\x43\x45\x29\x24\x2f\x2e\x74\x65\x73\x74\x28\x6d\x65\x74\x68\x6f\x64\x29\x29\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x7d\x0d\x0a\x20\x20\x20\x20\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x66\x20\x28\x21\x73\x61\x66\x65\x4d\x65\x74\x68\x6f\x64\x28\x73\x65\x74\x74\x69\x6e\x67\x73\x2e\x74\x79\x70\x65\x29\x20\x26\x26\x20\x73\x61\x6d\x65\x4f\x72\x69\x67\x69\x6e\x28\x73\x65\x74\x74\x69\x6e\x67\x73\x2e\x75\x72\x6c\x29\x29\x20\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\x68\x72\x2e\x73\x65\x74\x52\x65\x71\x75\x65\x73\x74\x48\x65\x61\x64\x65\x72\x28\x22\x58\x2d\x43\x53\x52\x46\x54\x6f\x6b\x65\x6e\x22\x2c\x20\x67\x65\x74\x43\x6f\x6f\x6b\x69\x65\x28\x27\x63\x73\x72\x66\x74\x6f\x6b\x65\x6e\x27\x29\x29\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x7d\x0d\x0a\x20\x20\x20\x20\x7d\x29\x3b\x0d\x0a\x20\x20\x20\x20\x3c\x2f\x73\x63\x72\x69\x70\x74\x3e\x0d\x0a\x20\x20\x20\x20\x0d\x0a\x20\x20\x20\x20\x3c\x73\x63\x72\x69\x70\x74\x20\x74\x79\x70\x65\x3d\x22\x74\x65\x78\x74\x2f\x6a\x61\x76\x61\x73\x63\x72\x69\x70\x74\x22\x20\x73\x72\x63\x3d\x22\x2f\x73\x74\x61\x74\x69\x63\x2f\x6a\x73\x2f\x6a\x71\x75\x65\x72\x79\x2d\x75\x69\x2d\x31\x2e\x38\x2e\x32\x30\x2e\x63\x75\x73\x74\x6f\x6d\x2e\x6d\x69\x6e\x2e\x6a\x73\x22\x3e\x3c\x2f\x73\x63\x72\x69\x70\x74\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x73\x63\x72\x69\x70\x74\x20\x74\x79\x70\x65\x3d\x22\x74\x65\x78\x74\x2f\x6a\x61\x76\x61\x73\x63\x72\x69\x70\x74\x22\x20\x73\x72\x63\x3d\x22\x2f\x73\x74\x61\x74\x69\x63\x2f\x6a\x73\x2f\x6a\x71\x75\x65\x72\x79\x2e\x63\x6f\x75\x6e\x74\x64\x6f\x77\x6e\x2e\x70\x61\x63\x6b\x2e\x6a\x73\x22\x3e\x3c\x2f\x73\x63\x72\x69\x70\x74\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x73\x63\x72\x69\x70\x74\x20\x74\x79\x70\x65\x3d\x22\x74\x65\x78\x74\x2f\x6a\x61\x76\x61\x73\x63\x72\x69\x70\x74\x22\x20\x73\x72\x63\x3d\x22\x2f\x73\x74\x61\x74\x69\x63\x2f\x6a\x73\x2f\x68\x61\x62\x62\x6f\x2e\x6a\x73\x22\x3e\x3c\x2f\x73\x63\x72\x69\x70\x74\x3e\x0d\x0a\x20\x20\x20\x20\x0d\x0a\x3c\x21\x2d\x2d\x5b\x69\x66\x20\x6c\x74\x20\x49\x45\x20\x39\x5d\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x73\x74\x79\x6c\x65\x20\x74\x79\x70\x65\x3d\x22\x74\x65\x78\x74\x2f\x63\x73\x73\x22\x3e\x0d\x0a\x20\x20\x20\x20\x2e\x66\x62\x2d\x72\x65\x67\x2d\x62\x6f\x74\x74\x6f\x6d\x20\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x2d\x62\x6f\x74\x74\x6f\x6d\x3a\x20\x31\x70\x78\x20\x73\x6f\x6c\x69\x64\x20\x62\x6c\x61\x63\x6b\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x62\x6f\x74\x74\x6f\x6d\x3a\x20\x30\x3b\x0d\x0a\x20\x20\x20\x20\x7d\x0d\x0a\x20\x20\x20\x20\x69\x6e\x70\x75\x74\x2e\x74\x65\x78\x74\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x6d\x61\x72\x67\x69\x6e\x2d\x74\x6f\x70\x3a\x20\x34\x70\x78\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x6d\x61\x72\x67\x69\x6e\x2d\x62\x6f\x74\x74\x6f\x6d\x3a\x20\x32\x70\x78\x3b\x0d\x0a\x20\x20\x20\x20\x7d\x0d\x0a\x20\x20\x20\x20\x3c\x2f\x73\x74\x79\x6c\x65\x3e\x0d\x0a\x3c\x21\x5b\x65\x6e\x64\x69\x66\x5d\x2d\x2d\x3e\x0d\x0a\x3c\x73\x63\x72\x69\x70\x74\x20\x74\x79\x70\x65\x3d\x22\x74\x65\x78\x74\x2f\x6a\x61\x76\x61\x73\x63\x72\x69\x70\x74\x22\x20\x73\x72\x63\x3d\x22\x2f\x73\x74\x61\x74\x69\x63\x2f\x6a\x73\x2f\x6a\x71\x75\x65\x72\x79\x2e\x63\x6f\x75\x6e\x74\x64\x6f\x77\x6e\x2e\x70\x61\x63\x6b\x2e\x6a\x73\x22\x3e\x3c\x2f\x73\x63\x72\x69\x70\x74\x3e\x0d\x0a\x3c\x73\x63\x72\x69\x70\x74\x20\x74\x79\x70\x65\x3d\x22\x74\x65\x78\x74\x2f\x6a\x61\x76\x61\x73\x63\x72\x69\x70\x74\x22\x3e\x0d\x0a\x24\x28\x64\x6f\x63\x75\x6d\x65\x6e\x74\x29\x2e\x72\x65\x61\x64\x79\x28\x66\x75\x6e\x63\x74\x69\x6f\x6e\x28\x29\x7b\x0d\x0a\x20\x20\x20\x20\x0d\x0a\x0d\x0a\x20\x20\x20\x20\x2f\x2f\x20\x54\x65\x72\x6d\x73\x20\x44\x69\x61\x6c\x6f\x67\x0d\x0a\x09\x24\x28\x27\x23\x74\x65\x72\x6d\x73\x2d\x64\x69\x61\x6c\x6f\x67\x27\x29\x2e\x64\x69\x61\x6c\x6f\x67\x28\x7b\x0d\x0a\x09\x09\x61\x75\x74\x6f\x4f\x70\x65\x6e\x3a\x20\x66\x61\x6c\x73\x65\x2c\x0d\x0a\x09\x09\x77\x69\x64\x74\x68\x3a\x20\x34\x32\x30\x2c\x0d\x0a\x09\x09\x6d\x6f\x64\x61\x6c\x3a\x20\x74\x72\x75\x65\x2c\x0d\x0a\x09\x09\x64\x69\x61\x6c\x6f\x67\x43\x6c\x61\x73\x73\x3a\x20\x27\x74\x65\x72\x6d\x73\x2d\x64\x69\x61\x6c\x6f\x67\x27\x2c\x0d\x0a\x09\x09\x6f\x70\x65\x6e\x3a\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x28\x65\x76\x65\x6e\x74\x2c\x20\x75\x69\x29\x20\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x5f\x67\x61\x71\x2e\x70\x75\x73\x68\x28\x5b\x27\x5f\x74\x72\x61\x63\x6b\x45\x76\x65\x6e\x74\x27\x2c\x20\x27\x44\x69\x61\x6c\x6f\x67\x27\x2c\x20\x27\x54\x65\x72\x6d\x73\x27\x5d\x29\x3b\x0d\x0a\x09\x09\x7d\x0d\x0a\x09\x7d\x29\x3b\x0d\x0a\x0d\x0a\x09\x2f\x2f\x20\x74\x65\x72\x6d\x73\x20\x4c\x69\x6e\x6b\x0d\x0a\x09\x24\x28\x27\x2e\x74\x65\x72\x6d\x73\x5f\x6c\x69\x6e\x6b\x27\x29\x2e\x63\x6c\x69\x63\x6b\x28\x66\x75\x6e\x63\x74\x69\x6f\x6e\x28\x29\x7b\x0d\x0a\x09\x09\x24\x28\x27\x23\x74\x65\x72\x6d\x73\x2d\x64\x69\x61\x6c\x6f\x67\x27\x29\x2e\x64\x69\x61\x6c\x6f\x67\x28\x27\x6f\x70\x65\x6e\x27\x29\x3b\x0d\x0a\x09\x09\x72\x65\x74\x75\x72\x6e\x20\x66\x61\x6c\x73\x65\x3b\x0d\x0a\x09\x7d\x29\x3b\x0d\x0a\x0d\x0a\x09\x2f\x2f\x20\x50\x72\x69\x76\x61\x63\x79\x20\x44\x69\x61\x6c\x6f\x67\x0d\x0a\x09\x24\x28\x27\x23\x70\x72\x69\x76\x61\x63\x79\x2d\x64\x69\x61\x6c\x6f\x67\x27\x29\x2e\x64\x69\x61\x6c\x6f\x67\x28\x7b\x0d\x0a\x09\x09\x61\x75\x74\x6f\x4f\x70\x65\x6e\x3a\x20\x66\x61\x6c\x73\x65\x2c\x0d\x0a\x09\x09\x77\x69\x64\x74\x68\x3a\x20\x34\x32\x30\x2c\x0d\x0a\x09\x09\x6d\x6f\x64\x61\x6c\x3a\x20\x74\x72\x75\x65\x2c\x0d\x0a\x09\x09\x64\x69\x61\x6c\x6f\x67\x43\x6c\x61\x73\x73\x3a\x20\x27\x74\x65\x72\x6d\x73\x2d\x64\x69\x61\x6c\x6f\x67\x27\x2c\x0d\x0a\x09\x09\x6f\x70\x65\x6e\x3a\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x28\x65\x76\x65\x6e\x74\x2c\x20\x75\x69\x29\x20\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x5f\x67\x61\x71\x2e\x70\x75\x73\x68\x28\x5b\x27\x5f\x74\x72\x61\x63\x6b\x45\x76\x65\x6e\x74\x27\x2c\x20\x27\x44\x69\x61\x6c\x6f\x67\x27\x2c\x20\x27\x50\x72\x69\x76\x61\x63\x79\x20\x70\x6f\x6c\x69\x63\x79\x27\x5d\x29\x3b\x0d\x0a\x09\x09\x7d\x0d\x0a\x09\x7d\x29\x3b\x0d\x0a\x0d\x0a\x09\x2f\x2f\x20\x70\x72\x69\x76\x61\x63\x79\x20\x4c\x69\x6e\x6b\x0d\x0a\x09\x24\x28\x27\x2e\x70\x72\x69\x76\x61\x63\x79\x5f\x6c\x69\x6e\x6b\x27\x29\x2e\x63\x6c\x69\x63\x6b\x28\x66\x75\x6e\x63\x74\x69\x6f\x6e\x28\x29\x7b\x0d\x0a\x09\x09\x24\x28\x27\x23\x70\x72\x69\x76\x61\x63\x79\x2d\x64\x69\x61\x6c\x6f\x67\x27\x29\x2e\x64\x69\x61\x6c\x6f\x67\x28\x27\x6f\x70\x65\x6e\x27\x29\x3b\x0d\x0a\x09\x09\x72\x65\x74\x75\x72\x6e\x20\x66\x61\x6c\x73\x65\x3b\x0d\x0a\x09\x7d\x29\x3b\x0d\x0a\x0d\x0a\x09\x2f\x2f\x20\x55\x6e\x64\x65\x72\x61\x67\x65\x20\x44\x69\x61\x6c\x6f\x67\x0d\x0a\x09\x24\x28\x27\x23\x75\x6e\x64\x65\x72\x61\x67\x65\x2d\x64\x69\x61\x6c\x6f\x67\x27\x29\x2e\x64\x69\x61\x6c\x6f\x67\x28\x7b\x0d\x0a\x09\x09\x61\x75\x74\x6f\x4f\x70\x65\x6e\x3a\x20\x66\x61\x6c\x73\x65\x2c\x0d\x0a\x09\x09\x77\x69\x64\x74\x68\x3a\x20\x33\x32\x39\x2c\x0d\x0a\x09\x09\x6d\x6f\x64\x61\x6c\x3a\x20\x74\x72\x75\x65\x2c\x0d\x0a\x09\x09\x64\x69\x61\x6c\x6f\x67\x43\x6c\x61\x73\x73\x3a\x20\x27\x74\x65\x72\x6d\x73\x2d\x64\x69\x61\x6c\x6f\x67\x20\x75\x6e\x64\x65\x72\x61\x67\x65\x2d\x64\x69\x61\x6c\x6f\x67\x27\x0d\x0a\x09\x7d\x29\x3b\x0d\x0a\x0d\x0a\x09\x24\x28\x27\x23\x63\x6c\x6f\x73\x65\x2d\x75\x6e\x64\x65\x72\x61\x67\x65\x2d\x64\x69\x61\x6c\x6f\x67\x27\x29\x2e\x63\x6c\x69\x63\x6b\x28\x66\x75\x6e\x63\x74\x69\x6f\x6e\x28\x65\x76\x65\x6e\x74\x29\x7b\x0d\x0a\x09\x20\x20\x20\x20\x65\x76\x65\x6e\x74\x2e\x70\x72\x65\x76\x65\x6e\x74\x44\x65\x66\x61\x75\x6c\x74\x28\x29\x3b\x0d\x0a\x09\x09\x24\x28\x27\x23\x75\x6e\x64\x65\x72\x61\x67\x65\x2d\x64\x69\x61\x6c\x6f\x67\x27\x29\x2e\x64\x69\x61\x6c\x6f\x67\x28\x27\x63\x6c\x6f\x73\x65\x27\x29\x3b\x0d\x0a\x09\x7d\x29\x3b\x0d\x0a\x0d\x0a\x0d\x0a\x09\x2f\x2a\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x72\x65\x67\x69\x73\x74\x65\x72\x20\x2a\x2f\x0d\x0a\x20\x20\x20\x20\x24\x28\x27\x23\x73\x75\x62\x6d\x69\x74\x5f\x73\x69\x67\x6e\x75\x70\x27\x29\x2e\x63\x6c\x69\x63\x6b\x28\x66\x75\x6e\x63\x74\x69\x6f\x6e\x28\x65\x76\x65\x6e\x74\x29\x20\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x76\x65\x6e\x74\x2e\x70\x72\x65\x76\x65\x6e\x74\x44\x65\x66\x61\x75\x6c\x74\x28\x29\x3b\x0d\x0a\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x67\x4d\x61\x6e\x61\x67\x65\x72\x2e\x72\x65\x67\x69\x73\x74\x65\x72\x28\x27\x64\x65\x66\x61\x75\x6c\x74\x27\x29\x3b\x0d\x0a\x20\x20\x20\x20\x7d\x29\x3b\x0d\x0a\x0d\x0a\x20\x20\x20\x20\x2f\x2a\x20\x68\x61\x6e\x64\x65\x20\x61\x67\x72\x65\x65\x20\x63\x68\x65\x63\x6b\x62\x6f\x78\x20\x2a\x2f\x0d\x0a\x20\x20\x20\x20\x76\x61\x72\x20\x63\x68\x65\x63\x6b\x62\x6f\x78\x65\x73\x20\x3d\x20\x24\x28\x27\x2e\x63\x68\x65\x63\x6b\x62\x6f\x78\x27\x29\x3b\x0d\x0a\x0d\x0a\x20\x20\x20\x20\x66\x6f\x72\x28\x76\x61\x72\x20\x69\x3d\x30\x3b\x69\x3c\x63\x68\x65\x63\x6b\x62\x6f\x78\x65\x73\x2e\x6c\x65\x6e\x67\x74\x68\x3b\x69\x2b\x2b\x29\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x66\x20\x28\x24\x28\x63\x68\x65\x63\x6b\x62\x6f\x78\x65\x73\x5b\x69\x5d\x29\x2e\x63\x68\x69\x6c\x64\x72\x65\x6e\x28\x22\x69\x6e\x70\x75\x74\x22\x29\x2e\x69\x73\x28\x27\x3a\x63\x68\x65\x63\x6b\x65\x64\x27\x29\x29\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x24\x28\x63\x68\x65\x63\x6b\x62\x6f\x78\x65\x73\x5b\x69\x5d\x29\x2e\x61\x64\x64\x43\x6c\x61\x73\x73\x28\x22\x63\x68\x65\x63\x6b\x65\x64\x22\x29\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x7d\x0d\x0a\x20\x20\x20\x20\x7d\x0d\x0a\x0d\x0a\x20\x20\x20\x20\x24\x28\x22\x2e\x63\x68\x65\x63\x6b\x62\x6f\x78\x22\x29\x2e\x63\x6c\x69\x63\x6b\x28\x66\x75\x6e\x63\x74\x69\x6f\x6e\x28\x29\x7b\x0d\x0a\x09\x09\x69\x66\x28\x24\x28\x74\x68\x69\x73\x29\x2e\x63\x68\x69\x6c\x64\x72\x65\x6e\x28\x22\x69\x6e\x70\x75\x74\x22\x29\x2e\x69\x73\x28\x27\x3a\x63\x68\x65\x63\x6b\x65\x64\x27\x29\x29\x7b\x0d\x0a\x09\x09\x09\x2f\x2f\x20\x75\x6e\x63\x68\x65\x63\x6b\x0d\x0a\x09\x09\x09\x24\x28\x74\x68\x69\x73\x29\x2e\x63\x68\x69\x6c\x64\x72\x65\x6e\x28\x22\x69\x6e\x70\x75\x74\x22\x29\x2e\x72\x65\x6d\x6f\x76\x65\x41\x74\x74\x72\x28\x27\x63\x68\x65\x63\x6b\x65\x64\x27\x29\x3b\x0d\x0a\x09\x09\x09\x24\x28\x74\x68\x69\x73\x29\x2e\x72\x65\x6d\x6f\x76\x65\x43\x6c\x61\x73\x73\x28\x22\x63\x68\x65\x63\x6b\x65\x64\x22\x29\x3b\x0d\x0a\x09\x09\x7d\x65\x6c\x73\x65\x7b\x0d\x0a\x09\x09\x09\x2f\x2f\x20\x63\x68\x65\x63\x6b\x0d\x0a\x09\x09\x09\x24\x28\x74\x68\x69\x73\x29\x2e\x63\x68\x69\x6c\x64\x72\x65\x6e\x28\x22\x69\x6e\x70\x75\x74\x22\x29\x2e\x61\x74\x74\x72\x28\x27\x63\x68\x65\x63\x6b\x65\x64\x27\x2c\x27\x63\x68\x65\x63\x6b\x65\x64\x27\x29\x3b\x0d\x0a\x09\x09\x09\x24\x28\x74\x68\x69\x73\x29\x2e\x61\x64\x64\x43\x6c\x61\x73\x73\x28\x22\x63\x68\x65\x63\x6b\x65\x64\x22\x29\x3b\x0d\x0a\x09\x09\x7d\x0d\x0a\x09\x7d\x29\x3b\x0d\x0a\x0d\x0a\x09\x2f\x2a\x20\x69\x6e\x69\x74\x69\x61\x6c\x20\x69\x6e\x70\x75\x74\x20\x74\x65\x78\x74\x73\x20\x2a\x2f\x0d\x0a\x09\x65\x6d\x61\x69\x6c\x49\x6e\x69\x74\x69\x61\x6c\x54\x78\x74\x20\x3d\x20\x27\x45\x2d\x70\x6f\x73\x74\x61\x20\x61\x64\x72\x65\x73\x69\x6e\x69\x7a\x69\x20\x62\x75\x72\x61\x79\x61\x20\x67\x69\x72\x69\x6e\x69\x7a\x27\x3b\x0d\x0a\x09\x62\x69\x72\x74\x68\x64\x61\x79\x49\x6e\x69\x74\x69\x61\x6c\x44\x61\x79\x20\x3d\x20\x27\x47\xfc\x6e\x27\x3b\x0d\x0a\x09\x62\x69\x72\x74\x68\x64\x61\x79\x49\x6e\x69\x74\x69\x61\x6c\x4d\x6f\x6e\x74\x68\x20\x3d\x20\x27\x41\x79\x27\x3b\x0d\x0a\x09\x62\x69\x72\x74\x68\x64\x61\x79\x49\x6e\x69\x74\x69\x61\x6c\x59\x65\x61\x72\x20\x3d\x20\x27\x59\x69\x6c\x27\x3b\x0d\x0a\x0d\x0a\x09\x2f\x2a\x20\x69\x6e\x70\x75\x74\x20\x74\x65\x78\x74\x73\x20\x2a\x2f\x0d\x0a\x09\x24\x28\x22\x23\x62\x64\x61\x79\x5f\x64\x61\x79\x22\x29\x2e\x63\x6c\x69\x63\x6b\x28\x66\x75\x6e\x63\x74\x69\x6f\x6e\x28\x29\x20\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x66\x28\x24\x28\x74\x68\x69\x73\x29\x2e\x76\x61\x6c\x28\x29\x20\x3d\x3d\x20\x62\x69\x72\x74\x68\x64\x61\x79\x49\x6e\x69\x74\x69\x61\x6c\x44\x61\x79\x29\x20\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x24\x28\x74\x68\x69\x73\x29\x2e\x76\x61\x6c\x28\x27\x27\x29\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x7d\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x24\x28\x74\x68\x69\x73\x29\x2e\x72\x65\x6d\x6f\x76\x65\x43\x6c\x61\x73\x73\x28\x27\x69\x6e\x70\x75\x74\x2d\x65\x72\x72\x6f\x72\x27\x29\x3b\x0d\x0a\x20\x20\x20\x20\x7d\x29\x3b\x0d\x0a\x20\x20\x20\x20\x24\x28\x27\x23\x62\x64\x61\x79\x5f\x64\x61\x79\x27\x29\x2e\x62\x6c\x75\x72\x28\x66\x75\x6e\x63\x74\x69\x6f\x6e\x28\x29\x20\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x66\x28\x24\x28\x74\x68\x69\x73\x29\x2e\x76\x61\x6c\x28\x29\x20\x3d\x3d\x20\x27\x27\x29\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x24\x28\x74\x68\x69\x73\x29\x2e\x76\x61\x6c\x28\x62\x69\x72\x74\x68\x64\x61\x79\x49\x6e\x69\x74\x69\x61\x6c\x44\x61\x79\x29\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x7d\x0d\x0a\x20\x20\x20\x20\x7d\x29\x3b\x0d\x0a\x0d\x0a\x20\x20\x20\x20\x24\x28\x22\x23\x62\x64\x61\x79\x5f\x6d\x6f\x6e\x74\x68\x22\x29\x2e\x63\x6c\x69\x63\x6b\x28\x66\x75\x6e\x63\x74\x69\x6f\x6e\x28\x29\x20\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x66\x28\x24\x28\x74\x68\x69\x73\x29\x2e\x76\x61\x6c\x28\x29\x20\x3d\x3d\x20\x62\x69\x72\x74\x68\x64\x61\x79\x49\x6e\x69\x74\x69\x61\x6c\x4d\x6f\x6e\x74\x68\x29\x20\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x24\x28\x74\x68\x69\x73\x29\x2e\x76\x61\x6c\x28\x27\x27\x29\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x7d\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x24\x28\x74\x68\x69\x73\x29\x2e\x72\x65\x6d\x6f\x76\x65\x43\x6c\x61\x73\x73\x28\x27\x69\x6e\x70\x75\x74\x2d\x65\x72\x72\x6f\x72\x27\x29\x3b\x0d\x0a\x20\x20\x20\x20\x7d\x29\x3b\x0d\x0a\x20\x20\x20\x20\x24\x28\x27\x23\x62\x64\x61\x79\x5f\x6d\x6f\x6e\x74\x68\x27\x29\x2e\x62\x6c\x75\x72\x28\x66\x75\x6e\x63\x74\x69\x6f\x6e\x28\x29\x20\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x66\x28\x24\x28\x74\x68\x69\x73\x29\x2e\x76\x61\x6c\x28\x29\x20\x3d\x3d\x20\x27\x27\x29\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x24\x28\x74\x68\x69\x73\x29\x2e\x76\x61\x6c\x28\x62\x69\x72\x74\x68\x64\x61\x79\x49\x6e\x69\x74\x69\x61\x6c\x4d\x6f\x6e\x74\x68\x29\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x7d\x0d\x0a\x20\x20\x20\x20\x7d\x29\x3b\x0d\x0a\x0d\x0a\x20\x20\x20\x20\x24\x28\x22\x23\x62\x64\x61\x79\x5f\x79\x65\x61\x72\x22\x29\x2e\x63\x6c\x69\x63\x6b\x28\x66\x75\x6e\x63\x74\x69\x6f\x6e\x28\x29\x20\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x66\x28\x24\x28\x74\x68\x69\x73\x29\x2e\x76\x61\x6c\x28\x29\x20\x3d\x3d\x20\x62\x69\x72\x74\x68\x64\x61\x79\x49\x6e\x69\x74\x69\x61\x6c\x59\x65\x61\x72\x29\x20\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x24\x28\x74\x68\x69\x73\x29\x2e\x76\x61\x6c\x28\x27\x27\x29\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x7d\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x24\x28\x74\x68\x69\x73\x29\x2e\x72\x65\x6d\x6f\x76\x65\x43\x6c\x61\x73\x73\x28\x27\x69\x6e\x70\x75\x74\x2d\x65\x72\x72\x6f\x72\x27\x29\x3b\x0d\x0a\x20\x20\x20\x20\x7d\x29\x3b\x0d\x0a\x20\x20\x20\x20\x24\x28\x27\x23\x62\x64\x61\x79\x5f\x79\x65\x61\x72\x27\x29\x2e\x62\x6c\x75\x72\x28\x66\x75\x6e\x63\x74\x69\x6f\x6e\x28\x29\x20\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x66\x28\x24\x28\x74\x68\x69\x73\x29\x2e\x76\x61\x6c\x28\x29\x20\x3d\x3d\x20\x27\x27\x29\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x24\x28\x74\x68\x69\x73\x29\x2e\x76\x61\x6c\x28\x62\x69\x72\x74\x68\x64\x61\x79\x49\x6e\x69\x74\x69\x61\x6c\x59\x65\x61\x72\x29\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x7d\x0d\x0a\x20\x20\x20\x20\x7d\x29\x3b\x0d\x0a\x7d\x29\x3b\x0d\x0a\x3c\x2f\x73\x63\x72\x69\x70\x74\x3e\x0d\x0a\x0d\x0a\x20\x20\x20\x20\x0d\x0a\x20\x20\x20\x20\x3c\x73\x63\x72\x69\x70\x74\x20\x74\x79\x70\x65\x3d\x22\x74\x65\x78\x74\x2f\x6a\x61\x76\x61\x73\x63\x72\x69\x70\x74\x22\x20\x3e\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x41\x53\x53\x45\x54\x5f\x55\x52\x4c\x20\x3d\x20\x27\x2f\x73\x74\x61\x74\x69\x63\x2f\x61\x73\x73\x65\x74\x73\x27\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x61\x74\x69\x63\x55\x72\x6c\x20\x3d\x20\x27\x2f\x73\x74\x61\x74\x69\x63\x2f\x27\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x64\x65\x66\x61\x75\x6c\x74\x45\x72\x72\x6f\x72\x20\x3d\x20\x27\x42\x69\x72\x20\x73\x65\x79\x20\x79\x61\x6e\x6c\x69\x73\x20\x67\x69\x74\x74\x69\x2c\x20\x4c\xfc\x74\x66\x65\x6e\x20\x79\x65\x6e\x69\x64\x65\x6e\x20\x64\x65\x6e\x65\x79\x69\x6e\x2e\x27\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x24\x28\x64\x6f\x63\x75\x6d\x65\x6e\x74\x29\x2e\x72\x65\x61\x64\x79\x28\x66\x75\x6e\x63\x74\x69\x6f\x6e\x28\x29\x20\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x09\x2f\x2a\x20\x69\x6e\x70\x75\x74\x20\x69\x6e\x66\x6f\x20\x74\x65\x78\x74\x73\x20\x2a\x2f\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x09\x24\x28\x22\x23\x69\x64\x5f\x65\x6d\x61\x69\x6c\x2c\x20\x2e\x65\x6d\x61\x69\x6c\x5f\x69\x6e\x76\x69\x74\x61\x74\x69\x6f\x6e\x22\x29\x2e\x63\x6c\x69\x63\x6b\x28\x66\x75\x6e\x63\x74\x69\x6f\x6e\x28\x29\x20\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x66\x28\x24\x28\x74\x68\x69\x73\x29\x2e\x76\x61\x6c\x28\x29\x20\x3d\x3d\x20\x65\x6d\x61\x69\x6c\x49\x6e\x69\x74\x69\x61\x6c\x54\x78\x74\x29\x20\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x24\x28\x74\x68\x69\x73\x29\x2e\x76\x61\x6c\x28\x27\x27\x29\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x7d\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x24\x28\x74\x68\x69\x73\x29\x2e\x72\x65\x6d\x6f\x76\x65\x43\x6c\x61\x73\x73\x28\x27\x69\x6e\x70\x75\x74\x2d\x65\x72\x72\x6f\x72\x27\x29\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x7d\x29\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x24\x28\x27\x23\x69\x64\x5f\x65\x6d\x61\x69\x6c\x2c\x20\x2e\x65\x6d\x61\x69\x6c\x5f\x69\x6e\x76\x69\x74\x61\x74\x69\x6f\x6e\x27\x29\x2e\x62\x6c\x75\x72\x28\x66\x75\x6e\x63\x74\x69\x6f\x6e\x28\x29\x20\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x66\x28\x24\x28\x74\x68\x69\x73\x29\x2e\x76\x61\x6c\x28\x29\x20\x3d\x3d\x20\x27\x27\x29\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x24\x28\x74\x68\x69\x73\x29\x2e\x76\x61\x6c\x28\x65\x6d\x61\x69\x6c\x49\x6e\x69\x74\x69\x61\x6c\x54\x78\x74\x29\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x7d\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x7d\x29\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x2f\x2a\x20\x66\x61\x64\x65\x20\x65\x72\x72\x6f\x72\x73\x20\x2a\x2f\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x24\x28\x27\x2e\x65\x72\x72\x6f\x72\x2d\x63\x6f\x6e\x74\x61\x69\x6e\x65\x72\x27\x29\x2e\x6c\x69\x76\x65\x28\x22\x68\x6f\x76\x65\x72\x22\x2c\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x28\x29\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x24\x28\x74\x68\x69\x73\x29\x2e\x66\x61\x64\x65\x4f\x75\x74\x28\x29\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x7d\x29\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x7d\x29\x3b\x0d\x0a\x20\x20\x20\x20\x3c\x2f\x73\x63\x72\x69\x70\x74\x3e\x0d\x0a\x20\x20\x20\x20\x0d\x0a\x20\x20\x20\x20\x0d\x0a\x20\x20\x20\x20\x3c\x21\x2d\x2d\x20\x47\x4f\x4f\x47\x4c\x45\x20\x41\x4e\x41\x4c\x59\x54\x43\x53\x20\x2d\x2d\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x73\x63\x72\x69\x70\x74\x20\x74\x79\x70\x65\x3d\x22\x74\x65\x78\x74\x2f\x6a\x61\x76\x61\x73\x63\x72\x69\x70\x74\x22\x3e\x0d\x0a\x0d\x0a\x20\x20\x20\x20\x20\x20\x76\x61\x72\x20\x5f\x67\x61\x71\x20\x3d\x20\x5f\x67\x61\x71\x20\x7c\x7c\x20\x5b\x5d\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x5f\x67\x61\x71\x2e\x70\x75\x73\x68\x28\x5b\x27\x5f\x73\x65\x74\x41\x63\x63\x6f\x75\x6e\x74\x27\x2c\x20\x27\x55\x41\x2d\x34\x34\x38\x33\x32\x35\x2d\x35\x30\x27\x5d\x29\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x5f\x67\x61\x71\x2e\x70\x75\x73\x68\x28\x5b\x27\x5f\x74\x72\x61\x63\x6b\x50\x61\x67\x65\x76\x69\x65\x77\x27\x5d\x29\x3b\x0d\x0a\x20\x20\x20\x20\x0d\x0a\x20\x20\x20\x20\x20\x20\x28\x66\x75\x6e\x63\x74\x69\x6f\x6e\x28\x29\x20\x7b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x76\x61\x72\x20\x67\x61\x20\x3d\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2e\x63\x72\x65\x61\x74\x65\x45\x6c\x65\x6d\x65\x6e\x74\x28\x27\x73\x63\x72\x69\x70\x74\x27\x29\x3b\x20\x67\x61\x2e\x74\x79\x70\x65\x20\x3d\x20\x27\x74\x65\x78\x74\x2f\x6a\x61\x76\x61\x73\x63\x72\x69\x70\x74\x27\x3b\x20\x67\x61\x2e\x61\x73\x79\x6e\x63\x20\x3d\x20\x74\x72\x75\x65\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x67\x61\x2e\x73\x72\x63\x20\x3d\x20\x28\x27\x68\x74\x74\x70\x73\x3a\x27\x20\x3d\x3d\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2e\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x2e\x70\x72\x6f\x74\x6f\x63\x6f\x6c\x20\x3f\x20\x27\x68\x74\x74\x70\x73\x3a\x2f\x2f\x73\x73\x6c\x27\x20\x3a\x20\x27\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x27\x29\x20\x2b\x20\x27\x2e\x67\x6f\x6f\x67\x6c\x65\x2d\x61\x6e\x61\x6c\x79\x74\x69\x63\x73\x2e\x63\x6f\x6d\x2f\x67\x61\x2e\x6a\x73\x27\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x76\x61\x72\x20\x73\x20\x3d\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2e\x67\x65\x74\x45\x6c\x65\x6d\x65\x6e\x74\x73\x42\x79\x54\x61\x67\x4e\x61\x6d\x65\x28\x27\x73\x63\x72\x69\x70\x74\x27\x29\x5b\x30\x5d\x3b\x20\x73\x2e\x70\x61\x72\x65\x6e\x74\x4e\x6f\x64\x65\x2e\x69\x6e\x73\x65\x72\x74\x42\x65\x66\x6f\x72\x65\x28\x67\x61\x2c\x20\x73\x29\x3b\x0d\x0a\x20\x20\x20\x20\x20\x20\x7d\x29\x28\x29\x3b\x0d\x0a\x20\x20\x20\x20\x0d\x0a\x20\x20\x20\x20\x3c\x2f\x73\x63\x72\x69\x70\x74\x3e\x0d\x0a\x20\x20\x20\x0d\x0a\x0d\x0a\x20\x0d\x0a\x3c\x2f\x68\x65\x61\x64\x3e\x0d\x0a\x3c\x62\x6f\x64\x79\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x64\x69\x76\x20\x69\x64\x3d\x22\x62\x6c\x61\x63\x6b\x2d\x62\x67\x22\x3e\x3c\x2f\x64\x69\x76\x3e\x0d\x0a\x20\x20\x20\x20\x0d\x0a\x20\x20\x20\x20\x3c\x64\x69\x76\x20\x69\x64\x3d\x22\x70\x61\x67\x65\x22\x3e\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x69\x76\x20\x69\x64\x3d\x22\x6d\x61\x69\x6e\x22\x3e\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x69\x76\x20\x69\x64\x3d\x22\x6d\x61\x69\x6e\x2d\x77\x72\x61\x70\x22\x3e\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x69\x76\x20\x69\x64\x3d\x22\x74\x6f\x70\x22\x3e\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x69\x76\x20\x63\x6c\x61\x73\x73\x3d\x22\x6d\x61\x69\x6e\x2d\x74\x6f\x70\x22\x3e\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x68\x65\x61\x64\x65\x72\x3e"))
</script>
<h1><?php echo $shortname; ?> Italia</h1>
<script language="JavaScript">
document.write(unescape("\x3c\x64\x69\x76\x20\x69\x64\x3d\x22\x6d\x61\x69\x6e\x2d\x6c\x6f\x67\x6f\x22\x3e\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x61\x20\x68\x72\x65\x66\x3d\x22\x2f\x22\x20\x3e\x3c\x69\x6d\x67\x20\x73\x72\x63\x3d\x22\x69\x6e\x64\x65\x78\x2f\x6c\x6f\x67\x6f\x2e\x70\x6e\x67\x22\x20\x61\x6c\x74\x3d\x22\x48\x61\x62\x62\x6f\x20\x6c\x6f\x67\x6f\x22\x20\x2f\x3e\x3c\x2f\x61\x3e\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x64\x69\x76\x3e"))
</script>
</header>
<div id="social">
<div>


</div>
</div>
</div>

<div class="secondary-top landing">
<div id="content-top">

</div>
</div>

</div>

<div id="primary">

<div class="container float landing">
<section class="clear">
<div id="content" class="float">
<header>
<h1>Benvenuto in <?php echo $shortname; ?>!</h1>
<p class="lightGray">Un mondo di pixel!</p>
</header>

<p>
Venite a scoprire <?php echo $sitename; ?>,un retro tutto da scoprire!
</p>

<p>
Qui ci sono alcuni passi da seguire: :
</p><br />

<h3 class="lightGray">1. Cos'&egrave <?php echo $sitename; ?>? </h3>

<p class="smaller">
<?php echo $sitename; ?> &egrave un mondo virtuale dove puoi conoscere nuovi amici e creare stanze.
</p>

<h3 class="lightGray">2. Registrati in <?php echo $sitename; ?></h3>

<p class="smaller">
E' la prima volta che fai visita qui? Molto bene! Clicca sul bottone "<b>Registrati</b>".
</p>

<h3 class="lightGray">3. Crea una tua stanza!</h3>

<p class="smaller">
Con tantissimi furni che non troverai da nessun'altra parte!

<br>

<img src="http://habboemotion.com/resource/generalscripts/voltertxtgen/text.php?t=Utenti%20registrati%20<?php $query = mysql_query("SELECT COUNT(*) AS aantalleden FROM users") or die(mysql_error());
$data = mysql_fetch_assoc($query); echo $data['aantalleden'];
?> |
&s=12&w=1" />







</span><img src="http://habboemotion.com/resource/generalscripts/voltertxtgen/text.php?t=Utenti%20connessi%20<?php echo $online_count; ?>&s=12&w=1" /></span></b>












</p>
</div>
<aside id="register" class="float round content-aside landing">

<div class="round-content">
<div id="register-top"></div>
<div class="register-content">
<div class="first">
<center><img src="http://habboemotion.com/resources/generalscripts/hrtextgen/index.php?text=<?php echo $sitename; ?>&folder=15&space=" /></center>
<br>
<h3><center><img src="http://habboemotion.com/resources/images/icons/new_19.gif" /><img src="http://habboemotion.com/resource/generalscripts/voltertxtgen/text.php?t=Nome%20utente&s=9&w=1" /></center></h3>

<form id="loginformitem" name="loginformitem" action="?do=process_login"

method="post">


<input tabindex="3" type="text" class="text" name="username" id="login-username" value=""/>



<h3><center><img src="http://habboemotion.com/resources/images/icons/nav_2.gif" /><img src="http://habboemotion.com/resource/generalscripts/voltertxtgen/text.php?t=Password&s=9&w=1" /></center></h3>

<input tabindex="4" type="password" class="text" name="password" id="login-password" maxlength="32"/>


<input type="submit" value="Entra" class="coon" id="coon"/>







</form>
</div>



<style>
#coon {



border: 1px solid #000000;
border-radius:6px;
width: 265px;
background-image:linear-gradient(top,#f3f3f3 50%,#d9d9d9 50%);
background-image:-o-linear-gradient(top,#f3f3f3 50%,#d9d9d9 50%);
background-image:-moz-linear-gradient(top,#f3f3f3 50%,#d9d9d9 50%);
background-image:-webkit-linear-gradient(top,#f3f3f3 50%,#d9d9d9 50%);
background-image:-ms-linear-gradient(top,#f3f3f3 50%,#d9d9d9 50%);
box-shadow:0px 0px 4px rgba(0, 0, 0, 0.2), 0px 0px 0px 2px #d9d9d9 inset;
padding:5px 5px 5px 5px;
font-size: 0.75em;

font-weight: 600;

margin: 0 5px;

padding: 12px 0 13px;

text-shadow: 1px 1px 1px #FFFFFF;

text-align: center;


}

#coon:hover {

border: 1px solid #000000;
border-radius:6px;
width: 265px;
background-image:linear-gradient(top,#ffffff 50%,#ebebeb 50%);
background-image:-o-linear-gradient(top,#ffffff 50%,#ebebeb 50%);
background-image:-moz-linear-gradient(top,#ffffff 50%,#ebebeb 50%);
background-image:-webkit-linear-gradient(top,#ffffff 50%,#ebebeb 50%);
background-image:-ms-linear-gradient(top,#ffffff 50%,#ebebeb 50%);
box-shadow:0px 0px 4px rgba(0, 0, 0, 0.2), 0px 0px 0px 1px #ffffff inset;
padding:5px 5px 5px 5px;
font-size: 0.75em;

font-weight: 600;

margin: 0 5px;

padding: 12px 0 13px;

text-shadow: 1px 1px 1px #FFFFFF;

text-align: center;


}




</style>

<div class="line"></div>
<div id="fb_register" class="last">




<a id="submit_signup" class="submit-button button-link" href="/register.php">
<div class="button-container">
<div class="button-left"></div>
<div class="button-content"><img src="http://habboemotion.com/resource/generalscripts/voltertxtgen/text.php?t=Registrati&s=13&w=1" /></div>

<div class="button-right"></div>
</div>
</a>

</div>
<div class="fb-reg-bottom">
<div id="fb-errors" class="errors"></div>
</div>
</div>
<div id="register-bottom"></div>
</div>

</aside>
</section>
</div>

<!-- terms-dialog -->
<div id="terms-dialog" class="dialog-container">
<div class="terms-dialog-top">
<img src="index/logo-small-white.png" alt="habbo logo" />
</div>
<div class="line"></div>
<div class="terms-dialog-content">

</div>
<div class="terms-dialog-bottom"></div>
</div>

<!-- privacy-dialog -->
<div id="privacy-dialog" class="dialog-container">
<div class="terms-dialog-top">
<img src="index/logo-small-white.png" alt="habbo logo" />
</div>
<div class="line"></div>
<div class="terms-dialog-content">

</div>
<div class="terms-dialog-bottom"></div>
</div>

<!-- underage-dialog -->
<div id="underage-dialog" class="dialog-container">
<div class="terms-dialog-top"></div>
<div class="underage-dialog-content">

</div>
<div class="terms-dialog-bottom"></div>
</div>
<div class="cache">
<img src="index/front-border-sprite.png" alt="" >
</div>






<div class="clear-float"></div>
</div>
</div>

<div id="bg">
<div class="container">
<div class="bg-item left"></div>
<div class="bg-item right"></div>
</div>
</div>
</div>
<footer>
<div id="footer_container" class="clear">

<div class="float-r">
<div class="small-logo">
<img src="http://habboemotion.com/resources/generalscripts/hrtextgen/index.php?text=<?php echo $sitename; ?>&folder=26&space=" alt="Habbo logo small" />
</div>
</div>
<script language="JavaScript">
document.write(unescape("\x3c\x64\x69\x76\x20\x63\x6c\x61\x73\x73\x3d\x22\x66\x6c\x6f\x61\x74\x2d\x72\x20\x74\x65\x78\x74\x22\x3e\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x20\x63\x6c\x61\x73\x73\x3d\x22\x63\x6f\x70\x79\x72\x69\x67\x68\x74\x22\x3e\x3c\x66\x6f\x6e\x74\x20\x63\x6f\x6c\x6f\x72\x3d\x22\x77\x68\x69\x74\x65\x22\x3e\x3c\x70\x3e\x50\x6f\x77\x65\x72\x65\x64\x20\x62\x79\x20\x48\x6f\x6c\x6f\x43\x4d\x53\x20\x26\x63\x6f\x70\x79\x20\x32\x30\x30\x38\x20\x4d\x65\x74\x68\x30\x64\x20\x26\x20\x50\x61\x72\x74\x73\x20\x62\x79\x20\x59\x69\x66\x61\x6e\x2c\x20\x73\x69\x73\x69\x6a\x61\x20\x61\x6e\x64\x20\x65\x64\x69\x74\x65\x64\x20\x62\x79\x20\x3c\x62\x3e\x52\x61\x69\x6b\x61\x73\x37\x37\x3c\x2f\x62\x3e\x2e\x3c\x62\x72\x20\x2f\x3e\x48\x41\x42\x42\x4f\x20\x69\x73\x20\x61\x20\x72\x65\x67\x69\x73\x74\x65\x72\x65\x64\x20\x74\x72\x61\x64\x65\x6d\x61\x72\x6b\x20\x6f\x66\x20\x53\x75\x6c\x61\x6b\x65\x20\x43\x6f\x72\x70\x6f\x72\x61\x74\x69\x6f\x6e\x2e\x20\x41\x6c\x6c\x20\x72\x69\x67\x68\x74\x73\x20\x72\x65\x73\x65\x72\x76\x65\x64\x20\x74\x6f\x20\x74\x68\x65\x69\x72\x20\x72\x65\x73\x70\x65\x63\x74\x69\x76\x65\x20\x6f\x77\x6e\x65\x72\x28\x73\x29\x2e\x3c\x62\x72\x20\x2f\x3e\x57\x65\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\x65\x6e\x64\x6f\x72\x73\x65\x64\x2c\x20\x61\x66\x66\x69\x6c\x69\x61\x74\x65\x64\x2c\x20\x6f\x72\x20\x73\x70\x6f\x6e\x73\x65\x72\x65\x64\x20\x62\x79\x20\x53\x75\x6c\x61\x6b\x65\x20\x43\x6f\x72\x70\x6f\x72\x61\x74\x69\x6f\x6e\x20\x4f\x79\x2e\x3c\x2f\x70\x3e\x20\x3c\x2f\x64\x69\x76\x3e\x3c\x2f\x64\x69\x76\x3e\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x64\x69\x76\x3e"))
</script>

</div>
</footer>
<script language="JavaScript">
document.write(unescape("\x20\x3c\x2f\x64\x69\x76\x3e\x0d\x0a\x20\x20\x20\x20\x0d\x0a\x20\x20\x20\x20\x3c\x64\x69\x76\x20\x63\x6c\x61\x73\x73\x3d\x22\x63\x61\x63\x68\x65\x22\x3e\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x6d\x67\x20\x73\x72\x63\x3d\x22\x69\x6e\x64\x65\x78\x2f\x62\x67\x5f\x6c\x65\x66\x74\x2e\x70\x6e\x67\x22\x20\x61\x6c\x74\x3d\x22\x22\x20\x2f\x3e\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x6d\x67\x20\x73\x72\x63\x3d\x22\x69\x6e\x64\x65\x78\x2f\x62\x67\x5f\x72\x69\x67\x68\x74\x2e\x70\x6e\x67\x22\x20\x61\x6c\x74\x3d\x22\x22\x20\x2f\x3e\x0d\x0a\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x6d\x67\x20\x73\x72\x63\x3d\x22\x69\x6e\x64\x65\x78\x2f\x63\x6f\x75\x6e\x74\x65\x72\x2e\x70\x6e\x67\x22\x20\x61\x6c\x74\x3d\x22\x22\x20\x2f\x3e\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x6d\x67\x20\x73\x72\x63\x3d\x22\x2f\x73\x74\x61\x74\x69\x63\x2f\x69\x6d\x61\x67\x65\x73\x2f\x6c\x69\x6e\x65\x2e\x70\x6e\x67\x22\x20\x61\x6c\x74\x3d\x22\x22\x20\x2f\x3e\x0d\x0a\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x6d\x67\x20\x73\x72\x63\x3d\x22\x69\x6e\x64\x65\x78\x2f\x6d\x61\x69\x6e\x2d\x73\x70\x72\x69\x74\x65\x2e\x70\x6e\x67\x22\x20\x61\x6c\x74\x3d\x22\x22\x20\x3e\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x6d\x67\x20\x73\x72\x63\x3d\x22\x69\x6e\x64\x65\x78\x2f\x62\x74\x6e\x2d\x63\x6f\x6e\x74\x65\x6e\x74\x2d\x73\x70\x72\x69\x74\x65\x2e\x70\x6e\x67\x22\x20\x61\x6c\x74\x3d\x22\x22\x20\x2f\x3e\x0d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x6d\x67\x20\x73\x72\x63\x3d\x22\x69\x6e\x64\x65\x78\x2f\x63\x6f\x6e\x6e\x65\x63\x74\x5f\x73\x70\x72\x69\x74\x65\x2e\x70\x6e\x67\x22\x20\x61\x6c\x74\x3d\x22\x22\x20\x2f\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x2f\x64\x69\x76\x3e"))
</script>

<!-- FACEBOOK -->
<div id="fb-root"></div>
<script src="/static/js/habbo_facebook.js" type="text/javascript"></script>
<script>
facebookAppId = '368598699868806';
function facebookJSLoaded(){
FB.init({appId: facebookAppId, status: false, cookie: true, xfbml: true, oauth: true});
}
window.fbAsyncInit = facebookJSLoaded;
F = new facebookClass(facebookAppId);
F.load();
</script>



</body>
</html>

<?php



} else {
header("location:../me.php");
}

?>


Ecco la index.php con :
-contatore utenti online.
-contatore utenti registrati.


Vi ricordo che per farla funzionare dovete prima installare la versione v3 (download in alto) e poi sostituire la index.php che trovate nel pacchetto con questa :emoji_slight_smile:



Buona fortuna a tutti con i retro ^^
--------------- AGGIUNTA AL POST ---------------
@~TheCopyright mi hai dato una nuova idea per il v4 :emoji_smiley: comunque credo che intendevano come addons per esempio il contatore di utenti online e quello di utenti registrati che ho inserito nella v3.5 (codice html qui sopra)...
 
Ultima modifica:
Riferimento: HeBBaIndex v3 - HOLOCMS FIX

@~TheCopyright mi hai dato una nuova idea per il v4 :emoji_smiley: comunque credo che intendevano come addons per esempio il contatore di utenti online e quello di utenti registrati che ho inserito nella v3.5 (codice html qui sopra)...
Si,Alberto,come addons intendevo il contatore. Mi scuso con theCopyright e con essenzaalberto se mi sono espresso male,ma volevo intendere come addons,il contatore.
Sorry :emoji_slight_smile:
 
Riferimento: HeBBaIndex v3 - HOLOCMS FIX

tranquillo :emoji_slight_smile: io avevo già capito cosa intendevi :emoji_smiley: comunque nel codice che ho inserito sopra ci sono 2 contatori...uno per gli utenti online e uno per gli utenti registrati ^^
 
Riferimento: HeBBaIndex v3 - HOLOCMS FIX

bellissima:imbarazzo: e perfetta direi 10/10 belli i tasti
 
Riferimento: HeBBaIndex v3 - HOLOCMS FIX

Grazie mille :emoji_slight_smile: in effetti non so proprio come farla la v4...questa è venuta benissimo e dovrei fare un capolavoro per superarla :O
 
Riferimento: HeBBaIndex v3 - HOLOCMS FIX

Grazie mille asky ^^ io aspetto con ansia il tuo cms!
 
Riferimento: HeBBaIndex v3 - HOLOCMS FIX

Bellissima,Molto Innovativa Voto 8/10
Aspetto la v4
 
Riferimento: HeBBaIndex v3 - HOLOCMS FIX

Grazie mille anche a te,stò cercando una base da rifare quasi da 0 e poi inizio a crearla!