–ÚŽw‚¹!¬ˆ«–‚ƒ{ƒfƒB[™
Erotic,Cool&Cute! mobile
Œô“c˜Ò–¢‚¿‚á‚ñ‰ž‰‡»²Äô
y´Û¶¯º‚©‚í‚¢‚¢Œn¸Þ¯½Þz‚àЉîI
šššÊ²¸µØÃ¨ššš
ô–³—¿’…ƒƒô
š’…ƒƒƒƒjƒ…[š
„°V•ˆˆê——
„°JPOP×ݷݸÞ
„°—mŠy×ݷݸÞ
„°ƒAƒjƒ×ݷݸÞ
„°TV/‰f‰æ×ݷݸÞ
„¯‰ùƒƒ×ݷݸÞ
–³—¿ŽŽ’®OK!Å‹’…‚¤‚½(R)
*** V’…î•ñ ***
‚Í‚¶‚ß‚É [6]
Œô“c˜Ò–¢ÌßŲ̂°Ùetc [3]
Œô“c˜Ò–¢î•ñ [1]
Œô“c˜Ò–¢CDEDVD [76]
Œô“c˜Ò–¢’…ÒÛGet! [0]
‚‚£Á¬ÝŠÖ˜A¸Þ¯½Þ [1]
´Û¶¯º¶Ü²²Œn¼®¯Ìß [4]
´Û¶ÜŒnî•ñ [0]
´Û¶ÜŒņ¯¼®Ý [3]
´Û¶ÜŒnº½Ò [0]
´Û¶ÜŒn‚»‚Ì‘¼ [0]
ØÝ¸W [2]
ŽQ‰Á’†×ݷݸ޻²Ä [0]
ŠÇ—l‘¼»²Ä [12]
އ‚Ì“ú‹L [1]
#!/usr/bin/perl
use LWP::UserAgent;
use Time::HiRes qw(gettimeofday);
use URI::Escape;
sub google_append_color {
my @color_array = split(/,/, $_[0]);
return $color_array[$_[1] % @color_array];
}
sub google_append_screen_res {
my $screen_res = $ENV{"HTTP_UA_PIXELS"};
my $delimiter = "x";
if ($screen_res == "") {
$screen_res = $ENV{"HTTP_X_UP_DEVCAP_SCREENPIXELS"};
$delimiter = ",";
}
my @res_array = split($delimiter, $screen_res);
if (@res_array == 2) {
return "&u_w=" . $res_array[0] . "&u_h=" . $res_array[1];
}
}
my $google_dt = sprintf("%.0f", 1000 * gettimeofday());
my $google_scheme = ($ENV{"HTTPS"} eq "on") ? "https://" : "http://";
my $google_host = uri_escape($google_scheme . $ENV{"HTTP_HOST"});
my $google_ad_url = "http://pagead2.googlesyndication.com/pagead/ads?" .
"ad_type=text_image" .
"&channel=1928331547" .
"&client=ca-mb-pub-4583907957410577" .
"&color_border=" . google_append_color("F9D5F2", $google_dt) .
"&color_bg=" . google_append_color("F9D5F2", $google_dt) .
"&color_link=" . google_append_color("0000ff", $google_dt) .
"&color_text=" . google_append_color("333333", $google_dt) .
"&color_url=" . google_append_color("C000FF", $google_dt) .
"&dt=" . $google_dt .
"&format=mobile_single" .
"&host=" . $google_host .
"&ip=" . uri_escape($ENV{"REMOTE_ADDR"}) .
"&markup=xhtml" .
"&oe=sjis" .
"&output=xhtml" .
"&ref=" . uri_escape($ENV{"HTTP_REFERER"}) .
"&url=" . $google_host . uri_escape($ENV{"REQUEST_URI"}) .
"&useragent=" . uri_escape($ENV{"HTTP_USER_AGENT"}) .
google_append_screen_res();
my $google_ua = LWP::UserAgent->new;
my $google_ad_output = $google_ua->get($google_ad_url);
if ($google_ad_output->is_success) {
print $google_ad_output->content;
}