뭐.. 강좌라구도 할수 없는 기본이다...
환경, 전 우분투, 에서 한거 입니다...
처음 SSH/터미널을 키면....
~user@이름 $ << 나온다...
거기에서, 예를 들어, irssi 를 다운로드 해서 인스톨하구 싶으면,
터미널/SSH 창에..
apt-get install irssi << 하면.. 된다....
그럼, /etc/irssi.conf 가 생긴다, 아니면, /home/유저/irssi 가 생긴다,
거기들어가면, irssi.conf 가있다... 거기서 설정을 바꾸어 주면된다...
기본설정은...
servers = (
{ address = "irc.ubuntu.com"; chatnet = "Ubuntu"; port = "6667"; },
{ address = "irc.stealth.net"; chatnet = "IRCnet"; port = "6668"; },
{ address = "irc.efnet.org"; chatnet = "EFNet"; port = "6667"; },
{
address = "irc.undernet.org";
chatnet = "Undernet";
port = "6667";
},
{ address = "irc.dal.net"; chatnet = "DALnet"; port = "6667"; },
{
address = "irc.quakenet.org";
chatnet = "QuakeNet";
port = "6667";
},
{ address = "silc.silcnet.org"; chatnet = "SILC"; port = "706"; }
);
chatnets = {
IRCnet = {
type = "IRC";
max_kicks = "4";
max_msgs = "5";
max_whois = "4";
max_query_chans = "5";
};
EFNet = {
type = "IRC";
max_kicks = "4";
max_msgs = "3";
max_whois = "1";
};
Undernet = {
type = "IRC";
max_kicks = "1";
max_msgs = "3";
max_whois = "30";
};
DALnet = {
type = "IRC";
max_kicks = "4";
max_msgs = "3";
max_whois = "30";
};
QuakeNet = {
type = "IRC";
max_kicks = "1";
max_msgs = "3";
max_whois = "30";
};
SILC = { type = "SILC"; };
Ubuntu = { type = "IRC"; };
};
channels = (
{ name = "#irssi"; chatnet = "ircnet"; autojoin = "No"; },
{ name = "silc"; chatnet = "silc"; autojoin = "No"; }
);
aliases = {
J = "join";
WJOIN = "join -window";
WQUERY = "query -window";
LEAVE = "part";
BYE = "quit";
EXIT = "quit";
SIGNOFF = "quit";
DESCRIBE = "action";
DATE = "time";
HOST = "userhost";
LAST = "lastlog";
SAY = "msg *";
WI = "whois";
WII = "whois $0 $0";
WW = "whowas";
W = "who";
N = "names";
M = "msg";
T = "topic";
C = "clear";
CL = "clear";
K = "kick";
KB = "kickban";
KN = "knockout";
BANS = "ban";
B = "ban";
MUB = "unban *";
UB = "unban";
IG = "ignore";
UNIG = "unignore";
SB = "scrollback";
UMODE = "mode $N";
WC = "window close";
WN = "window new hide";
SV = "say Irssi $J ($V) - http://irssi.org/";
GOTO = "sb goto";
CHAT = "dcc chat";
RUN = "SCRIPT LOAD";
CALC = "exec - if which bc &>/dev/null\\; then echo '$*' | bc | awk '{print \"$*=\"$$1}'\\; else echo bc was not found\\; fi";
SBAR = "STATUSBAR";
INVITELIST = "mode $C +I";
Q = "QUERY";
"MANUAL-WINDOWS" = "set use_status_window off;set autocreate_windows off;set autocreate_query_level none;set autoclose_windows off;set reuse_unused_windows on;save";
EXEMPTLIST = "mode $C +e";
ATAG = "WINDOW SERVER";
};
statusbar = {
# formats:
# when using {templates}, the template is shown only if it's argument isn't
# empty unless no argument is given. for example {sb} is printed always,
# but {sb $T} is printed only if $T isn't empty.
items = {
# start/end text in statusbars
barstart = "{sbstart}";
barend = "{sbend}";
topicbarstart = "{topicsbstart}";
topicbarend = "{topicsbend}";
# treated "normally", you could change the time/user name to whatever
time = "{sb $Z}";
user = "{sb {sbnickmode $cumode}$N{sbmode $usermode}{sbaway $A}}";
# treated specially .. window is printed with non-empty windows,
# window_empty is printed with empty windows
window = "{sb $winref:$tag/$itemname{sbmode $M}}";
window_empty = "{sb $winref{sbservertag $tag}}";
prompt = "{prompt $[.15]itemname}";
prompt_empty = "{prompt $winname}";
topic = " $topic";
topic_empty = " Irssi v$J - http://irssi.org/help/";
# all of these treated specially, they're only displayed when needed
lag = "{sb Lag: $0-}";
act = "{sb Act: $0-}";
more = "-- more --";
};
# there's two type of statusbars. root statusbars are either at the top
# of the screen or at the bottom of the screen. window statusbars are at
# the top/bottom of each split window in screen.
default = {
# the "default statusbar" to be displayed at the bottom of the window.
# contains all the normal items.
window = {
disabled = "no";
# window, root
type = "window";
# top, bottom
placement = "bottom";
# number
position = "1";
# active, inactive, always
visible = "active";
# list of items in statusbar in the display order
items = {
barstart = { priority = "100"; };
time = { };
user = { };
window = { };
window_empty = { };
lag = { priority = "-1"; };
act = { priority = "10"; };
more = { priority = "-1"; alignment = "right"; };
barend = { priority = "100"; alignment = "right"; };
};
};
# statusbar to use in inactive split windows
window_inact = {
type = "window";
placement = "bottom";
position = "1";
visible = "inactive";
items = {
barstart = { priority = "100"; };
window = { };
window_empty = { };
more = { priority = "-1"; alignment = "right"; };
barend = { priority = "100"; alignment = "right"; };
};
};
# we treat input line as yet another statusbar :) It's possible to
# add other items before or after the input line item.
prompt = {
type = "root";
placement = "bottom";
# we want to be at the bottom always
position = "100";
visible = "always";
items = {
prompt = { priority = "-1"; };
prompt_empty = { priority = "-1"; };
# treated specially, this is the real input line.
input = { priority = "10"; };
};
};
# topicbar
topic = {
type = "root";
placement = "top";
position = "1";
visible = "always";
items = {
topicbarstart = { priority = "100"; };
topic = { };
topic_empty = { };
topicbarend = { priority = "100"; alignment = "right"; };
};
};
};
};
settings = {
core = {
real_name = "";
user_name = "user";
nick = "user";
};
"fe-text" = { actlist_sort = "refnum"; };
};
이렇게 되있다...
여기에서,
아래에 첨부된 부분만 수정해주면 된다...
servers = (
{
address = "irc.hanirc.org";
chatnet = "HanIRC";
port = "6667";
autoconnect = "yes";
},
{ address = "iz4u.hanirc.org"; chatnet = "HanIRC"; port = "8080"; },
{
address = "holywar.hanirc.org";
chatnet = "HanIRC";
port = "6664";
}
);
chatnets = {
HanIRC = {
type = "IRC";
autosendcmd = "/mode $N +iwxg;
/^msg chanserv auth #채널 아이디 비번;";
};
};
channels = (
{ name = "#자동조인 할 채널1"; chatnet = "HanIRC"; autojoin = "Yes"; },
{ name = "#자동조인 할 채널2"; chatnet = "HanIRC"; autojoin = "YES"; },
{
name = "#m";
chatnet = "HanIRC";
autojoin = "No";
password = "passwd";
},
{
name = "#Channel_04";
chatnet = "HanIRC";
autojoin = "No";
password = "passwd";
}
);
settings = {
core = {
real_name = "Irssi";
user_name = "유져이름";
nick = "닉네임";
};
비밀 댓글 입니다.
답글삭제inch; http://thepattycurtisclubhouse.com/ sildenafil citrate; http://weavingthetruth.com cigarettes; http://theperfectblack.com/ baclofen; http://designbysisters.com/ zimulti; http://10858portofino.com/ acomplia;
답글삭제half; http://themaplesfamily.com/ cafergot; http://wizewaysbooks.com buy cigarettes; http://komdumed.com/ diflucan during pregnancy; http://designbysisters.com/ slimona; http://lastthreelives.com/ celexa; http://egypt-rowing.com/ rimonabant diet pill;
답글삭제comment4 <a href=" http://mostafawi.com/cp/Scripts/596/wankingtube246.html ">Wankingtube</a> xusqip <a href=" http://stylessalonandspa.com/cp/Scripts/171/non-hybrid-vegetable-seeds138.html ">Non Hybrid Vegetable Seeds</a> >:-PPP <a href=" http://mdwellandseptic.com/cp/scripts/023/weekly-bikin162.html ">Weekly Bikin</a> %-DD <a href=" http://printerbitch.com/images/icons/806/cryptosporidium230.html ">Cryptosporidium</a> 11462 <a href=" http://harrenhal.net/joomla/templates/417/computer-consulting-kit-club76.html ">Computer Consulting Kit Club</a> yvun <a href=" http://kathleensmithcpa.com/cp/Scripts/504/spanish-english-translation77.html ">Spanish English Translation</a> 824466 <a href=" http://groverpatrick.com/aspnet_client/system_web/01/birth-videos63.html ">Birth Videos</a> 8[[[ <a href=" http://stcgservices.com/cp/scripts/86/surveillance-equipment247.html ">Surveillance Equipment</a> 072 <a href=" http://altalaea.com/cp/Scripts/913/anniversary-poems214.html ">Anniversary Poems</a> 708 <a href=" http://blueott.com/cp/images/17/miele-cat-and-dog0.html ">Miele Cat And Dog</a> yczz <a href=" http://kathleensmithcpa.com/cp/Scripts/504/cube-3-movie11.html ">Cube 3 Movie</a> :((
답글삭제comment3 <a href=" http://qrpcinc.com/aspnet_client/system_web/60/constitutional-rights173.html ">Constitutional Rights</a> 42327 <a href=" http://ankatekiletisim.com/libraries/phpinputfilter/34/super-bowl-xxxv-commercial37.html ">Super Bowl Xxxv Commercial</a> %) <a href=" http://lgmeyer.com/images/icons/182/shakeela143.html ">Shakeela</a> 8-]] <a href=" http://realestateinspectionsva.com/aspnet_client/system_web/41/hydroxycut272.html ">Hydroxycut</a> =[[ <a href=" http://teakgeeks.com/cp/images/702/stained-glass107.html ">Stained Glass</a> fsbom <a href=" http://stskoruma.net/images/icons/662/motiva140.html ">Motiva</a> 494498 <a href=" http://elcerroazul.com/images/icons/45/kg-to-lb-conversion257.html ">Kg To Lb Conversion</a> 31705 <a href=" http://powhatanskincare.com/aspnet_client/system_web/63/nascar-hats267.html ">Nascar Hats</a> 83675 <a href=" http://theteachersaidepowhatan.com/aspnet_client/system_web/013/lesbian-pussys175.html ">Lesbian Pussys</a> 238 <a href=" http://evdenevenakliyat-ankara.com/libraries/phpinputfilter/24/history-of-bobby-fischer225.html ">History Of Bobby Fischer</a> 469411 <a href=" http://patrickhome.net/aspnet_client/system_web/06/penis-bot60.html ">Penis Bot</a> oxwx
답글삭제comment1 <a href=" http://thebottomlineofprotection.com/images/icons/609/robert-earl-keen30.html ">Robert Earl Keen</a> 23226 <a href=" http://furry-godmothers.com/old-images/icons/121/pandemos259.html ">Pandemos</a> ilgrvi <a href=" http://wftelectronics.com/images/icons/255/flat-chested-teens8.html ">Flat Chested Teens</a> xsiov <a href=" http://sysrand.com/images/icons/523/facts-about-alcohol249.html ">Facts About Alcohol</a> ckrazi <a href=" http://tripointonline.com/cp/images/527/dreambook-tied-up194.html ">Dreambook Tied Up</a> >:-)) <a href=" http://ccscjo.com/aspnet_client/system_web/425/davey-jones-costume101.html ">Davey Jones Costume</a> 620 <a href=" http://freelineinterior.com/cp/Scripts/378/practice-aptitude-test157.html ">Practice Aptitude Test</a> 688253 <a href=" http://thearcadecafe.com/aspnet_client/system_web/871/samantha-anderson311.html ">Samantha Anderson</a> 2361 <a href=" http://sedansigorta.com/basvurular/_notes/02/tropicana-hotel-casino-las-vegas154.html ">Tropicana Hotel Casino Las Vegas</a> 0941
답글삭제comment1 <a href=" http://shealyelectricco.com/aspnet_client/system_web/89/thalasemia121.html ">Thalasemia</a> =-PPP <a href=" http://bobloganphotography.com/cp/Scripts/06/jaimee-foxworth-video235.html ">Jaimee Foxworth Video</a> >:-P <a href=" http://datafrontline.org/images/icons/84/tempe-improv226.html ">Tempe Improv</a> cqosk <a href=" http://realestateinspectionsva.com/aspnet_client/system_web/41/ms-frontpage-2003210.html ">Ms Frontpage 2003</a> 931842 <a href=" http://theteachersaidepowhatan.com/aspnet_client/system_web/013/photos-of-female-soldiers-shower94.html ">Photos Of Female Soldiers Shower</a> 998 <a href=" http://radmi.com/cp/images/152/free-milf-video168.html ">Free Milf Video</a> jcfkf <a href=" http://badhd.net/cp/scripts/828/boysfoodcom103.html ">Boysfoodcom</a> 812976 <a href=" http://thecountyseat.com/cp/Scripts/396/angle113.html ">Angle</a> 804 <a href=" http://ubercodeninja.com/cp/scripts/61/st-regis-hotel-new-york-city94.html ">St Regis Hotel New York City</a> :[[[
답글삭제comment5 <a href=" http://eknotsties.com/cp/scripts/76/pretty-youngs207.html ">Pretty Youngs</a> 425329 <a href=" http://bring-the-funk.com/images/thumbs/075/nc-state-park36.html ">Nc State Park</a> 636783 <a href=" http://ozdikmentemizlik.com/images/icons/93/international-driving-directions279.html ">International Driving Directions</a> >:) <a href=" http://goldensandsre.com/cp/Scripts/289/patti-page129.html ">Patti Page</a> xod <a href=" http://cinternational.com/robsitch-castle/rs-images/55/cute-13135.html ">Cute 13</a> >:[[[ <a href=" http://autocobe.com/images/icons/98/dictonary257.html ">Dictonary</a> =OOO <a href=" http://ozdikmentemizlik.com/images/icons/93/puffy-aerola65.html ">Puffy Aerola</a> %-[[[ <a href=" http://photographerzlata.com/children/popup/83/apollo-13-mission175.html ">Apollo 13 Mission</a> rthku <a href=" http://dcpdesign.net/cp/images/864/orion-telescopes114.html ">Orion Telescopes</a> zkox <a href=" http://imagesnow.info/aspnet_client/system_web/77/tullian-tchividjian42.html ">Tullian Tchividjian</a> :-[
답글삭제comment3 <a href=" http://radmi.com/cp/images/152/slightly-stoopid124.html ">Slightly Stoopid</a> :P <a href=" http://balaybuilders.com/docs/_vti_cnf/642/14-year-old161.html ">14 Year Old</a> baxtge <a href=" http://ozdikmentemizlik.com/images/icons/93/pellet-stoves154.html ">Pellet Stoves</a> ecbahk <a href=" http://susannajoy.com/images/icons/09/erectile-disfunction184.html ">Erectile Disfunction</a> %PPP <a href=" http://boutiquerumbera.com/cp/images/82/it-degree-online258.html ">It Degree Online</a> %DDD <a href=" http://299webdesign.com/cp/images/575/patricia-benner34.html ">Patricia Benner</a> %[ <a href=" http://datafrontline.net/aspnet_client/system_web/847/dulce-et-decorum-est180.html ">Dulce Et Decorum Est</a> pnx <a href=" http://groverpatrick.com/aspnet_client/system_web/01/sylvia-likens-autopsy-photos214.html ">Sylvia Likens Autopsy Photos</a> 625254
답글삭제comment4 <a href=" http://newtrontec.com/cp/Scripts/74/northern-flicker203.html ">Northern Flicker</a> zhglqv <a href=" http://visitgoochland.com/cp/Scripts/28/small-house-plans208.html ">Small House Plans</a> lfw <a href=" http://zeytincioglu.com/cp/images/18/city-of-murfreesboro-tn121.html ">City Of Murfreesboro Tn</a> 928 <a href=" http://299webdesign.com/cp/images/575/enema-forums148.html ">Enema Forums</a> 8-( <a href=" http://lost-media.info/engine/ajax/86/ncaa-football-2010100.html ">Ncaa Football 2010</a> awtp <a href=" http://allhotscripts.com/alexa/proxy/533/american-red-cross137.html ">American Red Cross</a> 6531 <a href=" http://vaponds.com/cp/Scripts/19/rube-goldberg91.html ">Rube Goldberg</a> 7007 <a href=" http://oemagents.com/cp/images/467/monster-bull211.html ">Monster Bull</a> wzv
답글삭제comment2 <a href=" http://eastcoastbikerscruise.com/files/filecabinet/87/natural-diuretics171.html ">Natural Diuretics</a> sgql <a href=" http://kanyendavis.com/cp/images/512/new-ards-treatment239.html ">New Ards Treatment</a> prjafe <a href=" http://redknightsmd2.org/cp/scripts/81/zootube-365199.html ">Zootube 365</a> 8-P <a href=" http://kalsigorta.com/cp/scripts/47/crows204.html ">Crows</a> mzazq <a href=" http://bobloganphotography.com/cp/Scripts/06/what-affect-does-alcohol-have-on-a-person181.html ">What Affect Does Alcohol Have On A Person</a> dtuode <a href=" http://balgoandkaminski.com/images/icons/592/memorial-hermann-hospital83.html ">Memorial Hermann Hospital</a> avq <a href=" http://sysrand.com/images/icons/523/cinque-terre-pictures56.html ">Cinque Terre Pictures</a> 004237 <a href=" http://hirerightt.com/cp/Scripts/69/carnegie-mellon-university260.html ">Carnegie Mellon University</a> 499549
답글삭제comment6 <a href=" http://jennypatrick.com/aspnet_client/system_web/191/nokia-3390-ringing-tones157.html ">Nokia 3390 Ringing Tones</a> 336 <a href=" http://atacag.com/plugins/search/497/hairstyles-for-homecoming134.html ">Hairstyles For Homecoming</a> %OO <a href=" http://ankatekbilisim.com/cp/scripts/778/how-long-does-shipping-overseas216.html ">How Long Does Shipping Overseas</a> xaowka <a href=" http://pure-pod.com/images/icons/95/t-girls14.html ">T Girls</a> uepj <a href=" http://ozbesleras.com/cp/images/770/peoples-bank219.html ">Peoples Bank</a> 20146 <a href=" http://blingitup.com/images/icons/29/build-your-own-log-cabin47.html ">Build Your Own Log Cabin</a> 998 <a href=" http://harrenhal.net/joomla/templates/417/lg-shine-plastic-case240.html ">Lg Shine Plastic Case</a> pba <a href=" http://dreamfucker.org/images/icons/505/micheal-jordan-hall-of-fame-speech228.html ">Micheal Jordan Hall Of Fame Speech</a> :))) <a href=" http://slashley.com/images/icons/684/government-jobs120.html ">Government Jobs</a> 8O
답글삭제@Anonymous - 2009/09/03 17:04
답글삭제Help me please , <a href=" http://towboatusindianriver.com/cp/scripts/816/rhabdomyolysis78.html ">Rhabdomyolysis</a> , >:-DDD , <a href=" http://stylessalonandspa.com/cp/Scripts/171/non-hybrid-vegetable-seeds138.html ">Non Hybrid Vegetable Seeds</a> , 4076 , <a href=" http://nathanlouisgordon.com/images/icons/01/california-cash-out17.html ">California Cash Out</a> , vxigm , <a href=" http://davidsearcy.com/cp/Scripts/349/gaytube-like-sites108.html ">Gaytube Like Sites</a> , 451625 , <a href=" http://discovergoochland.com/aspnet_client/system_web/96/private-pictures-of-my-wife163.html ">Private Pictures Of My Wife</a> , 9407 , <a href=" http://bannersandmore.org/cp/scripts/97/vogue-cover89.html ">Vogue Cover</a> , 468108 , <a href=" http://brokenbog.com/cp/scripts/432/wireless-mouse-how-to208.html ">Wireless Mouse How To</a> , 8((( , <a href=" http://jtedmcc.com/cp/Scripts/16/pelican104.html ">Pelican</a> , 8)) , <a href=" http://aroosalbahar.com/cp/Scripts/925/object-insertion215.html ">Object Insertion</a> , 154909 , <a href=" http://rosaspizzarestaurant.com/aspnet_client/system_web/443/your-welcome-in-spanish19.html ">Your Welcome In Spanish</a> , fcg ,
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
@Anonymous - 2009/09/03 17:04
답글삭제비밀 댓글 입니다.
qv9QDJ Cool lol hey bla bla bla bla
답글삭제5FP0TJ Cool lol hey bla bla bla bla
답글삭제KrX2XB Cool lol hey bla bla bla bla
답글삭제tzSoZb Cool lol hey bla bla bla bla
답글삭제