Translate

cara memasang Scroll di label atau Categori

Berikut langkah-langkah untuk Membuat Fungsi Scroll pada Label/Kategori di blog :
1. Login ke id Blogger
2. Saat di Dasbor, klik tab Template lalu Edit Template HTML --> Centang pada Expand Widget Templates
3. cari kode <b:widget id='Label1' locked='false' title='Labels' kalau sudah ketemu coba scroll kebawah sedikit sampai temuin kode <div class='widget-content'>, nah sekarang letakkan kode berikut tepat dibawah kode <div class='widget-content'> tadi :
<div style='overflow:auto; width:ancho; height:300px;'>
4. Scroll lagi kebawah samape temuin kode <b:include name='quickedit'/>, kalau sudah dapat copy lalu pastekan kode </div> tepat dibawahnya. (Nantinya akan ada 2 kode </div> dengan yang baru ditambahin)
Untuk lebih jelasnya bisa lihat contoh berikut :
<b:widget id='Label1' locked='false' title='Labels' type='Label'>
<b:includable id='main'>
  <b:if cond='data:title'>
    <h2><data:title/></h2>
  </b:if>
  <div class='widget-content'>
<div style='overflow:auto; width:ancho; height:300px;'>
    <ol>
    <b:loop values='data:labels' var='label'>
      <li>
        <b:if cond='data:blog.url == data:label.url'>
          <span expr:dir='data:blog.languageDirection'>
            <data:label.name/>
          </span>
        <b:else/>
          <a expr:dir='data:blog.languageDirection' expr:href='data:label.url'>
            <data:label.name/>
          </a>
        </b:if>
        <span dir='ltr'>  <a class='labelfeed-link' expr:href='&quot;http://clwolvi.blogspot.com/feeds/posts/default/-/&quot; + data:label.name' style='margin-left:10px;' title='Subscribe'/></span>
      </li>
    </b:loop>
    </ol>
    <b:include name='quickedit'/>
  </div></div>
</b:includable>
</b:widget>
Read More >>

Posted in | Leave a comment

Cara Membuat Menu Multi Tab di Blog

ini biasanya digunakan pada blog yang kontennya sudah padat.. jadi bisa menghemat ruang .. 3 in 1 widget jadinya...tinggal klik tabnya saja untuk berpindah-pindah ke isi menu tab berikutnya... didalam widget multi tab ini pada tiap-tiap tab-nya bisa kamu sematkan kode script Buku Tamu (Tab 1), Kode script Daftar isi (Tab 2), dan Kode Script Blogroll (Tab 3) atau terserahlah sesuai keinginan Shobat...
.... Pahami langkah-langkah cara membuatnya berikut ini ;

A. Menyisipkan Kode Script Menu Multi Tab di Kode HTML Template Blog

1. Seperti biasa.. Login ke Blogger > Rancangan > Edit HTML ( Biasakan centang expand template widget )..
2. Lalu Copy kode script dibawah ini...

/*----MULTItab----*/
div.TabView div.Tabs
{
height: 35px;
overflow: hidden;
}
div.TabView div.Tabs a
{
float: left;
display: block;
background-color: #56FCFA;
-moz-border-radius:10px 0px 0px 0px;
width: 125px;
text-align: center;
height: 35px;
padding-top: 3px;
vertical-align: middle;
border: 0px solid #999999;
border-bottom-width: 0;
text-decoration: none;
font-family: "Times New Roman", Serif;
font-weight: 900;
color: #000000;
}
div.TabView div.Tabs a:hover, div.TabView div.Tabs a.Active
{
background-color: #56FCFA;
text-shadow: 4px 4px 4px #aaa;
font-size:12px;
}
div.TabView div.Pages
{
clear: both;
border: 0px solid #999999;
-moz-border-radius:0px 0px 0px 10px;
text-shadow: 4px 4px 4px #aaa;
font-size:14px;
overflow: hidden;
background-color: #56FCFA;
}
div.TabView div.Pages div.Page
{
height: 100%;
padding: 0px;
overflow: hidden;
}
div.TabView div.Pages div.Page div.Pad
{
padding: 3px 5px;
}
/*----end----*/
3. Dan Paste kan sebelum kode ]]></b:skin> ...seperti contoh dibawah ini...

/*----MULTItab----*/
div.TabView div.Tabs
{
height: 35px;
overflow: hidden;
}
div.TabView div.Tabs a
{
float: left;
display: block;
background-color: #56FCFA;
-moz-border-radius:10px 0px 0px 0px;
width: 125px;
text-align: center;
height: 35px;
padding-top: 3px;
vertical-align: middle;
border: 0px solid #999999;
border-bottom-width: 0;
text-decoration: none;
font-family: "Times New Roman", Serif;
font-weight: 900;
color: #000000;
}
div.TabView div.Tabs a:hover, div.TabView div.Tabs a.Active
{
background-color: #56FCFA;
text-shadow: 4px 4px 4px #aaa;
font-size:12px;
}
div.TabView div.Pages
{
clear: both;
border: 0px solid #999999;
-moz-border-radius:0px 0px 0px 10px;
text-shadow: 4px 4px 4px #aaa;
font-size:14px;
overflow: hidden;
background-color: #56FCFA;
}
div.TabView div.Pages div.Page
{
height: 100%;
padding: 0px;
overflow: hidden;
}
div.TabView div.Pages div.Page div.Pad
{
padding: 3px 5px;
}
/*----end----*/

]]></b:skin>


4. Kembali ke Wigdet Edit HTML... Copy lagi kode dibawah ini...

<script type='text/javascript'>
function tabview_aux(TabViewId, id)
{
var TabView = document.getElementById(TabViewId);

// ----- Tabs -----

var Tabs = TabView.firstChild;
while (Tabs.className != &quot;Tabs&quot; ) Tabs = Tabs.nextSibling;

var Tab = Tabs.firstChild;
var i = 0;

do
{
if (Tab.tagName == &quot;A&quot;)
{
i++;
Tab.href = &quot;javascript:tabview_switch(&#39;&quot;+TabViewId+&quot;&#39;, &quot;+i+&quot;);&quot;;
Tab.className = (i == id) ? &quot;Active&quot; : &quot;&quot;;
Tab.blur();
}
}
while (Tab = Tab.nextSibling);

// ----- Pages -----

var Pages = TabView.firstChild;
while (Pages.className != &#39;Pages&#39;) Pages = Pages.nextSibling;

var Page = Pages.firstChild;
var i = 0;

do
{
if (Page.className == &#39;Page&#39;)
{
i++;
if (Pages.offsetHeight) Page.style.height = (Pages.offsetHeight-2)+&quot;px&quot;;
Page.style.overflow = &quot;auto&quot;;
Page.style.display = (i == id) ? &#39;block&#39; : &#39;none&#39;;
}
}
while (Page = Page.nextSibling);
}

// ----- Functions -------------------------------------------------------------

function tabview_switch(TabViewId, id) { tabview_aux(TabViewId, id); }

function tabview_initialize(TabViewId) { tabview_aux(TabViewId, 1); }
</script>

5. Paste kan lagi sebelum kode </head>
    Maka akan menjadi ...seperti contoh dibawah ini...


<script type='text/javascript'>
function tabview_aux(TabViewId, id)
{
var TabView = document.getElementById(TabViewId);

// ----- Tabs -----

var Tabs = TabView.firstChild;
while (Tabs.className != &quot;Tabs&quot; ) Tabs = Tabs.nextSibling;

var Tab = Tabs.firstChild;
var i = 0;

do
{
if (Tab.tagName == &quot;A&quot;)
{
i++;
Tab.href = &quot;javascript:tabview_switch(&#39;&quot;+TabViewId+&quot;&#39;, &quot;+i+&quot;);&quot;;
Tab.className = (i == id) ? &quot;Active&quot; : &quot;&quot;;
Tab.blur();
}
}
while (Tab = Tab.nextSibling);

// ----- Pages -----

var Pages = TabView.firstChild;
while (Pages.className != &#39;Pages&#39;) Pages = Pages.nextSibling;

var Page = Pages.firstChild;
var i = 0;

do
{
if (Page.className == &#39;Page&#39;)
{
i++;
if (Pages.offsetHeight) Page.style.height = (Pages.offsetHeight-2)+&quot;px&quot;;
Page.style.overflow = &quot;auto&quot;;
Page.style.display = (i == id) ? &#39;block&#39; : &#39;none&#39;;
}
}
while (Page = Page.nextSibling);
}

// ----- Functions -------------------------------------------------------------

function tabview_switch(TabViewId, id) { tabview_aux(TabViewId, id); }

function tabview_initialize(TabViewId) { tabview_aux(TabViewId, 1); }
</script>

</head>
6. Jika sudah selesai dan benar, sesuai dengan langkah-langkah diatas.. maka klik Simpan Template...

B. Menambahkan Widget Menu Multi Tab di Elemen Halaman Blog

1. Blogger > Rancangan > Elemen Halaman > Tambah Gadget > HTML/Javascript... ( Silahkan letakan widget Menu Multi Tab ini di bagian halaman blog yang kamu inginkan )...
2. Lalu Copy kode script dibawah ini...
<form action="tabview.html" method="get">
<div class="TabView" id="TabView">
<div class="Tabs" style="width: 80;text-shadow: 4px 4px 4px #aaa;font-size: 12px;">
<a>GANTILAH NAMA MENU TAB 1 INI</a>
<a>GANTILAH NAMA MENU TAB 2 INI</a>
<a>GANTILAH NAMA MENU TAB 3 INI</a>
</div>
<div class="Pages" style="width: 465px; height: 250px;">

<div class="Page">
<div class="Pad">
ISI MENU TAB 1 - PASTE KODE SCRIPT BUKU TAMU ATAU DAFTAR ISI ATAU BLOGROLL DISINI YA..
</div>
</div>

<div class="Page">
<div class="Pad">
ISI MENU TAB 2 - PASTE KODE SCRIPT BUKU TAMU ATAU DAFTAR ISI ATAU BLOGROLL DISINI YA..
</div>
</div>

<div class="Page">
<div class="Pad">
ISI MENU TAB 3 - PASTE KODE SCRIPT BUKU TAMU ATAU DAFTAR ISI ATAU BLOGROLL DISINI YA..
</div>
</div>

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

<script type="text/javascript">
tabview_initialize('TabView');
</script>
3. Jika sudah.. Simpan  blog Shobat  dan lihatlah hasilnya...
Read More >>

Posted in | Leave a comment

Facebook Chat Keren Dan Lengkap

Emoticon Tersembunyi untuk chat Facebook
1.     Kaskus

For Maho = [[chatmaho]] dan [[221604051248158]]
For Ngakak = [[guengakak]]
For Mewek = [[chatmewek]]
For Matabelo = [[138322169613465]]
For Nohope = [[269530103103270]]
For :P = [[221433314597677]]
For bingung =[[134783116635775]]
For mad = [[271579376231709]]
For hammer = [[273747559341745]]
For malu = [[258997894164902]]
For ( jari tengah ) = [[224130024329329]]
For genit= [[344739652207354]]
For tokai = [[263966766998038]]

2.     Cartoon & Others

[[136446926442912]] = friendster
[[googlechrome]] = google chrome
[[2231777543]] = twitter
[[87741124305]] = old youtube logo
[[2513891999]] = new youtube logo

Troll face: [[171108522930776]]
Me Gusta: [[211782832186415]]
ARE YOU FUCKING KIDDING ME: [[143220739082110]]
Feel like a sir: [[1680408465586189]]
Not bad Obama: [[169919399735055]]
Mother of God: [[142670085793927]]
Cereal Guy: [[170815706323196]]
LOL Face: [[168456309878025]]
NO Guy: [[167359756658519]]
Yao Ming: [[14933336846417]]
Derp: [[224812970902314]]
Derpina: [[192644604154319]]
Forever Alone: [[177903015598419]]
It's Okay!: [[148578318584679]]
ALL the y: [[219611504753863]]
Impossibruh: [[305710872791586]]
Rage Face: [[145768898802324]]
Watch out, badass: [[309795212383816]]
Poker face: [[129627277060203]]
Justin Bieber: [[67253243887]]
Lady GaGa: [[ladygaga]]
Eminem: [[eminem]]
Mark Zuckerberg: [[zuck]]
FUCK YEAH: [[105387672833401]]
CHUCK NORRIS: [[161751797197606]]
POKER FACE: [[129627277060203]]
CHALLENGE ACCEPTED: [[100002727365206]]
Dislike Icon: [[139407806171115]]
Like Icon: [[333181686710881]]
Inverted Like Icon: [[180601488705317]]
[[249199828481201]] - Konata Izumi
[[250128751720149]] - Domo Kun
[[223328504409723]] - Gintoki Sakata
[[236147243124900]] - Pokeball
[[326134990738733]] - Pikachu
[[155393057897143]] - Doraemon
[[224502284290679]] - Nobita
[[144685078974802]] - Mojacko
[[334954663181745]] - Spongebob
[[196431117116365]] - Shin chan
[[148935948523684] ] - Pedo Bear
[[269153023141273]] - Poring
[[332936966718584]] - Hello Kitty
[[252497564817075]] - Kerokeroppi
[[297354436976262]] - Santa Claus
[[157680577671754]] - Angry Bird

3.     Ayodance
[[345533462139449]] = ;bete
[[308300382542918]] = ;calm
[[309626999060642]] = ;dan2
[[263022747090798]] = ;hai
[[200102950080196]] = ;hwa
[[158227984284324]] = ;mad
[[114550798664378]] = ;mo
[[299734090065127]] = ;omg
[[350421394973827]] = ;shy
[[208296672587372]] = ;doa
[[157844747656241]] = ;etc
[[158207970952008]] = ;groa
[[241721525896214]] = ;grr
[[113519815433465]] = ;hepi
[[239939099411255]] = ;joke
[[346508562029170]] = ;kdip
[[185298018232820]] = ;mbok
[[239249926147852]] = ;phew
[[332418196786941]] = ;shok
[[328430820514942]] = ;tear
[[222287944513884]] = ;we
[[164481350318329]] = ;win
[[330544910308348]] = ;zzz
[[267658843290223]] = ;hoeh
[[180154485416003]] = ;
[[221390677938174]] = ;swet
[[269394746450013]] = ;TT
[[222023621206273]] = ;uhuk
[[346372985378735]] = ;luph
[[187322684697844]] = ;tida
[[208533842565519]] = ;cuih
[[266659030060927]] = ;down

4.     Huruf

[[196920740401785]] - A
[[113544575430999]] - B
[[294715893904555]] - C
[[294660140569858]] - D
[[328415510520892]] - E
[[270221906368791]] - F
[[212614922155016]] - G
[[205633882856736]] - H
[[256255337773105]] - I
[[288138264570038]] - J
[[296999947008863]] - K
[[216672855078917]] - L
[[278786215503631]] - M
[[241341589270741]] - N
[[312524205448755]] - O
[[200138403410055]] - P
[[165410113558613]] - Q
[[203403609746433]] - R
[[334427926570136]] - S
[[250632158335643]] - T
[[285985351447161]] - U
[[343627398996642]] - V
[[315740851791114]] - W
[[136342506479536]] - X
[[224173507657194]] - Y
[[317710424919150]] – Z

5.     Profil facebook

[[nama id facebook kalian]]

6.     Situs web

[[nama situs web]]

7.     Browser

[[firefox]]
[[googlechrome]]
[[opera]]
[[safari]]
[[flock]]
[[internetexplorer]]

8.     Special Text


MAHO [[100003277310675]] [[100003252111881]] [[100003281300913]] [[100001428370699]]
HOMO [[100003281300913]] [[100001428370699]] [[100003277310675]] [[100001428370699]]
HOMA [[100003281300913]] [[100001428370699]] [[100003277310675]] [[100003252111881]]
HOAM [[100003281300913]] [[100001428370699]] [[100003252111881]] [[100003277310675]]
HOAX [[100003281300913]] [[100001428370699]] [[100003252111881]] [[hoax.chat]]
HAHAHAHAHA [[100003281300913]] [[100003252111881]] [[100003281300913]] [[100003252111881]] [[100003281300913]] [[100003252111881]] [[100003281300913]] [[100003252111881]] [[100003281300913]] [[100003252111881]]


SAYANG [[268014709918658]] [[312935248739937]] [[327307163960508]] [[312935248739937]] [[138974696214566]] [[185422434888201]]
GALAU [[185422434888201]] [[312935248739937]] [[336820319661426]] [[312935248739937]] [[217892258289816]]
TINGKAT [[142519615859046]] [[120643188053072]] [[138974696214566]] [[185422434888201]] [[258415324223166]] [[312935248739937]] [[142519615859046]]
DEWA [[260257997372115]] [[220240308053498]] [[165171610250178]] [[312935248739937]]
GANTENG [[185422434888201]] [[312935248739937]] [[138974696214566]] [[142519615859046]] [[220240308053498]] [[138974696214566]] [[185422434888201]]

GUA GANTENG
[[185422434888201]] [[217892258289816]] [[312935248739937]]
[[185422434888201]] [[312935248739937]] [[138974696214566]] [[142519615859046]] [[220240308053498]] [[138974696214566]] [[185422434888201]]

SAYA MONYET
[[334427926570136]] [[196920740401785]] [[224173507657194]] [[196920740401785]]
[[278786215503631]] [[312524205448755]] [[241341589270741]] [[224173507657194]] [[328415510520892]] [[250632158335643]]

Christmas:

[[271907092867476]] [[283723885007037]] [[327860897243844]] [[327860897243844]] [[271624196228707]] [[154936547887417]]
[[318243861533088]] [[240416619363543]] [[327860897243844]] [[238634442876406]] [[313359385353119]] [[159993800773468]] [[271907092867476]] [[285167624869191]] [[313359385353119]]

Special Big

U Mad

[[291152600919956]] [[295479677155336]] [[314363058604092]]
[[262834777109378]] [[189006671194968]] [[263319493729810]]
[[251236504943440]] [[287904934588441]] [[185961414833909]]



Poker Face

[[258968244165876]] [[286666501379430]] [[262520713809098]] [[159049157536013]] [[307904395916212]]
[[225447050864310]] [[209926462425564]] [[138411019605305]] [[221670374577056]] [[154671737968862]]
[[138007062977844]] [[291747794194724]] [[122952454488304]] [[337561022923016]] [[288878907831075]]
[[240630206008013]] [[264223330304357]] [[319462458078703]] [[239286912807413]] [[288721814513254]]
[[265575850170635]] [[345354905481875]] [[209004679185391]] [[259785247417432]] [[159480014157666]]
[[267428346644787]] [[239034746168540]] [[350046018344350]] [[209260572491236]] [[198316980259626]]
[[310959705610393]] [[214054278676095]] [[200638253359905]] [[334455703231303]] [[158066514298630]]


Nyan Cat


[[265434590178748]] [[164991926934921]] [[209695692449988]] [[250490361685507]] [[278968458819422]] [[349625665051383]] [[205760419511603]]
[[312189672135533]] [[299788346731384]] [[268532783202434]] [[266669970059695]] [[204170799672068]] [[187204144709527]] [[331078983588306]]
[[149240955184679]] [[206407216112871]] [[240669959335314]] [[180619528702085]] [[347768705240557]] [[186661331430535]] [[218646048216424]]
[[344875905539434]] [[328111047214223]] [[323186421038846]] [[157802940990663]] [[159535350818164]] [[296581710385765]] [[271261609598535]]


True Story
[[159403400834378]] [[297487363621407]] [[1156068411]] [[135921843188987]] [[281219301903813]] [[199562043466774]]
[[295738517127851]] [[155658844536513]] [[209549519130890]] [[142176999226854]] [[246689415397308]] [[199562043466774]]
[[238766052862259]] [[307299595976209]] [[217652968315422]] [[189042331191521]] [[286721874712929]] [[344476392245488]]
[[208520335900424]] [[280378908678680]] [[289772571069549]] [[271456079578545]] [[316530365035101]] [[288356997877538]]
[[291702580880362]] [[165637363538400]] [[150244831751625]] [[241130952627573]] [[120930761357725]] [[325867137432308]]
[[154842501286195]] [[286053358112869]] [[149316288510313]] [[250243511707871]] [[291635414215481]] [[344254632266885]]
[[276412539074685]] [[131586963624296]] [[333374550025341]] [[327570193933422]] [[199699430120687]] [[136021593179546]]


Forever Alone


[[222233554520712]] [[155093667926316]] [[159374644168797]]
[[265556180170509]] [[272006802857159]] [[144596118984229]] [[198806320212294]] [[155432547893166]]
[[239088996160999]] [[293626150673074]] [[203611766392684]] [[214124502002999]] [[268692779851733]]
[[181312795299893]] [[269771269745545]] [[189131527848966]] [[121039688013447]] [[347460675267390]]
[[116007985184523]] [[267703239958069]] [[209491689137152]] [[335109106501612]] [[286053824778978]]
[[140147629431094]] [[286265654759471]] [[208524709231940]] [[135568263223992]] [[265887476807116]]


???
[[179756028790264]] [[131478976968398]] [[314076808615174]] [[206240339463055]] [[159403400834378]]
[[200992799990165]] [[196243973803636]] [[270956806292431]] [[346811212001437]] [[328107453874590]]
[[196721100420672]] [[317586898261340]] [[298140226892101]] [[214914048591653]] [[350101681673756]]
[[123765061073750]] [[245710415498757]] [[243298355738272]] [[138812572897166]] [[149419131833071]]
[[158310927607841]] [[310752072297702]] [[316528255036793]] [[335475163146590]] [[221503331260136]]
[[241781875890038]] [[218268384920510]] [[189509191144351]] [[302618756443499]] [[182961465135557]]
[[206151719471944]] [[223223751088260]] [[158685720904140]] [[249080145157161]] [[310957895604838]]


MOTHER OF GOD

[[159403400834378]] [[301770873198029]] [[124123621037582]] [[165443303555885]] [[225009720907841]] [[159403400834378]]
[[143280719116554]] [[325784210773649]] [[240857172651089]] [[326582487367063]] [[243056889098166]] [[159403400834378]]
[[100126866775028]] [[344748918884490]] [[198318970262933]] [[264742153562246]] [[156223974480296]] [[199239846833770]]
[[337718332906919]] [[159071504197585]] [[159142267522981]] [[285550151496203]] [[217302108349366]] [[243642895706612]]
[[159403400834378]] [[297037847004108]] [[273779062680713]] [[206014099486621]] [[329969420355991]] [[222842284460715]]



Jackie Chan smiley


[[159403400834378]] [[350711854942596]] [[181587845273907]] [[158684234236177]] [[351037108247221]] [[200627473361428]]
[[319903324706941]] [[296000840437382]] [[120826078035368]] [[197216497039069]] [[160081354096525]] [[293380127365491]]
[[268119093246586]] [[304021742976441]] [[241231115950237]] [[319494974748104]] [[346830568677550]] [[206278946125685]]
[[165619636871866]] [[327492260603305]] [[212797055468932]] [[331257773559487]] [[219749661438887]] [[298440666864927]]


X ALL THE Y


[[289233677790219]] [[348654161814774]] [[222705881138252]] [[292141994165379]] [[133154316800330]] [[346337608726421]]
[[100381450083206]] [[313838608648951]] [[166103506823935]] [[314007935297068]] [[139489826163004]] [[269859583071892]]
[[219146461499411]] [[160313270740550]] [[205765899512340]] [[113268378788379]] [[187383804691038]] [[160834734023850]]



Me Gusta
[[10150425979186326]] [[10150425979236326]] [[10150425979391326]] [[10150425979441326]] [[10150425979466326]] [[10150425979526326]]
[[10150425979626326]] [[10150425979671326]] [[10150425979186326]] [[10150425979186326]] [[10150425979186326]] [[10150425979986326]] [[10150425980006326]]
[[10150425980066326]] [[10150425980101326]] [[10150425980231326]] [[10150425980436326]] [[10150425980451326]] [[10150425980506326]] [[10150425980561326]]
[[10150425980646326]] [[10150425980686326]] [[10150425980756326]] [[10150425980831326]] [[10150425980896326]] [[10150425981096326]] [[10150425981191326]]
[[10150425981251326]] [[10150425981306326]] [[10150425981366326]] [[10150425981406326]] [[10150425981466326]] [[10150425981516326]] [[10150425981591326]]
[[10150425981651326]] [[10150425981796326]] [[10150425981816326]] [[10150425981876326]] [[10150425981906326]] [[10150425981966326]] [[10150425982006326]]
[[10150425982066326]] [[10150425982101326]] [[10150425982131326]] [[10150425982196326]] [[10150425982261326]]


Awesome Face
[[334230636605501]] [[335080033169115]] [[314686231886107]]
[[179637912133385]] [[345951442087087]] [[208631755887293]]
[[297872013591588]] [[317089564978607]] [[341555305870236]]


FFFFFFFFFFUUUUUUUUUUUUU


[[159403400834378]] [[257154657685145]] [[132680356847163]] [[290978820948428]] [[334282083267353]] [[198103506950448]] [[210308395722038]]
[[309975965709366]] [[182868988477905]] [[165741460192459]] [[247622781973379]] [[327617393928947]] [[206584556097316]] [[250789351653750]]
[[200790820011838]] [[141243869321548]] [[352183231465619]] [[328771830475687]] [[189210541175816]] [[312252498807676]] [[166541650114498]]
[[208576439231087]] [[205464099541525]] [[241532012586537]] [[328888967128873]] [[245107852224475]] [[145834102193476]] [[186739154755647]]
[[199838353440893]] [[267276669999507]] [[319332414755054]] [[352534161430714]] [[326839384007613]] [[219389444806813]] [[124982690951818]]
[[296444440391057]] [[327760950581864]] [[198689786891893]] [[100673290052775]] [[281174871929559]] [[344704255543758]] [[319037018119558]]

scary face


[[300382333337276]] [[243309622404527]] [[159993510774694]] [[272337229485968]] [[271768612879902]] [[325908680761128]] [[217700464975574]]
[[300382333337276]] [[215129375236098]] [[210080259075655]] [[298772443492242]] [[290772554301843]] [[329147173780415]] [[316895348331542]]
[[210492875703072]] [[286212818097801]] [[207002929386788]] [[263364080392330]] [[289630174422007]] [[159951064110271]] [[286788254707247]]
[[337460916266694]] [[334726783222991]] [[267147000006924]] [[145595485550928]] [[249024281829360]] [[287206887992807]] [[266973376696677]]
[[201672933257258]] [[336219069723510]] [[332882186740415]] [[159707314133427]] [[137098749737782]] [[207886652633783]] [[224321900977413]]



Watch out, we got a badass over here


[[159403400834378]] [[159403400834378]] [[337543586258011]] [[319472504742942]] [[137178113064010]] [[159403400834378]] [[159403400834378]]
[[159403400834378]] [[317704824918461]] [[263132223750979]] [[146082208835706]] [[254206641312375]] [[159403400834378]] [[159403400834378]]
[[140326502746326]] [[269575266432705]] [[224709320940207]] [[317557948275125]] [[347784468580811]] [[221457824600816]] [[180985841999404]]
Read More >>

Posted in | Leave a comment