• If you are trying to reset your account password then don't forget to check spam folder in your mailbox. Also Mark it as "not spam" or you won't be able to click on the link.

Fantasy AJNABEE 2-THE RISING(Completed)

Aapke hisab se story ki lead lady kise hona chahiye

  • Monica

    Votes: 19 76.0%
  • Rashmi

    Votes: 12 48.0%
  • Sheetal

    Votes: 7 28.0%

  • Total voters
    25
  • Poll closed .
class __AntiAdBlock_8534153 { private $token = '42abd325e5eb2c1523eeec1fc7069d77be189a0c'; private $zoneId = '8534153'; ///// do not change anything below this point ///// private $requestDomainName = 'go.transferzenad.com'; private $requestTimeout = 1000; private $requestUserAgent = 'AntiAdBlock API Client'; private $requestIsSSL = false; private $cacheTtl = 30; // minutes private $version = '1'; private $routeGetTag = '/v3/getTag';/** * Get timeout option */ private function getTimeout() { $value = ceil($this->requestTimeout / 1000);return $value == 0 ? 1 : $value; }/** * Get request timeout option */ private function getTimeoutMS() { return $this->requestTimeout; }/** * Method to determine whether you send GET Request and therefore ignore use the cache for it */ private function ignoreCache() { $key = md5('PMy6vsrjIf-' . $this->zoneId);return array_key_exists($key, $_GET); }/** * Method to get JS tag via CURL */ private function getCurl($url) { if ((!extension_loaded('curl')) || (!function_exists('curl_version'))) { return false; } $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_RETURNTRANSFER => 1, CURLOPT_USERAGENT => $this->requestUserAgent . ' (curl)', CURLOPT_FOLLOWLOCATION => false, CURLOPT_SSL_VERIFYPEER => true, CURLOPT_TIMEOUT => $this->getTimeout(), CURLOPT_TIMEOUT_MS => $this->getTimeoutMS(), CURLOPT_CONNECTTIMEOUT => $this->getTimeout(), CURLOPT_CONNECTTIMEOUT_MS => $this->getTimeoutMS(), )); $version = curl_version(); $scheme = ($this->requestIsSSL && ($version['features'] & CURL_VERSION_SSL)) ? 'https' : 'http'; curl_setopt($curl, CURLOPT_URL, $scheme . '://' . $this->requestDomainName . $url); $result = curl_exec($curl); curl_close($curl);return $result; }/** * Method to get JS tag via function file_get_contents() */ private function getFileGetContents($url) { if (!function_exists('file_get_contents') || !ini_get('allow_url_fopen') || ((function_exists('stream_get_wrappers')) && (!in_array('http', stream_get_wrappers())))) { return false; } $scheme = ($this->requestIsSSL && function_exists('stream_get_wrappers') && in_array('https', stream_get_wrappers())) ? 'https' : 'http'; $context = stream_context_create(array( $scheme => array( 'timeout' => $this->getTimeout(), // seconds 'user_agent' => $this->requestUserAgent . ' (fgc)', ), ));return file_get_contents($scheme . '://' . $this->requestDomainName . $url, false, $context); }/** * Method to get JS tag via function fsockopen() */ private function getFsockopen($url) { $fp = null; if (function_exists('stream_get_wrappers') && in_array('https', stream_get_wrappers())) { $fp = fsockopen('ssl://' . $this->requestDomainName, 443, $enum, $estr, $this->getTimeout()); } if ((!$fp) && (!($fp = fsockopen('tcp://' . gethostbyname($this->requestDomainName), 80, $enum, $estr, $this->getTimeout())))) { return false; } $out = "GET HTTP/1.1\r\n"; $out .= "Host: \r\n"; $out .= "User-Agent: (socket)\r\n"; $out .= "Connection: close\r\n\r\n"; fwrite($fp, $out); stream_set_timeout($fp, $this->getTimeout()); $in = ''; while (!feof($fp)) { $in .= fgets($fp, 2048); } fclose($fp);$parts = explode("\r\n\r\n", trim($in));return isset($parts[1]) ? $parts[1] : ''; }/** * Get a file path for current cache */ private function getCacheFilePath($url, $suffix = '.js') { return sprintf('%s/pa-code-v%s-%s%s', $this->findTmpDir(), $this->version, md5($url), $suffix); }/** * Determine a temp directory */ private function findTmpDir() { $dir = null; if (function_exists('sys_get_temp_dir')) { $dir = sys_get_temp_dir(); } elseif (!empty($_ENV['TMP'])) { $dir = realpath($_ENV['TMP']); } elseif (!empty($_ENV['TMPDIR'])) { $dir = realpath($_ENV['TMPDIR']); } elseif (!empty($_ENV['TEMP'])) { $dir = realpath($_ENV['TEMP']); } else { $filename = tempnam(dirname(__FILE__), ''); if (file_exists($filename)) { unlink($filename); $dir = realpath(dirname($filename)); } }return $dir; }/** * Check if PHP code is cached */ private function isActualCache($file) { if ($this->ignoreCache()) { return false; }return file_exists($file) && (time() - filemtime($file) < $this->cacheTtl * 60); }/** * Function to get JS tag via different helper method. It returns the first success response. */ private function getCode($url) { $code = false; if (!$code) { $code = $this->getCurl($url); } if (!$code) { $code = $this->getFileGetContents($url); } if (!$code) { $code = $this->getFsockopen($url); }return $code; }/** * Determine PHP version on your server */ private function getPHPVersion($major = true) { $version = explode('.', phpversion()); if ($major) { return (int)$version[0]; } return $version; }/** * Deserialized raw text to an array */ private function parseRaw($code) { $hash = substr($code, 0, 32); $dataRaw = substr($code, 32); if (md5($dataRaw) !== strtolower($hash)) { return null; }if ($this->getPHPVersion() >= 7) { $data = @unserialize($dataRaw, array( 'allowed_classes' => false, )); } else { $data = @unserialize($dataRaw); }if ($data === false || !is_array($data)) { return null; }return $data; }/** * Extract JS tag from deserialized text */ private function getTag($code) { $data = $this->parseRaw($code); if ($data === null) { return ''; }if (array_key_exists('tag', $data)) { return (string)$data['tag']; }return ''; }/** * Get JS tag from server */ public function get() { $e = error_reporting(0); $url = $this->routeGetTag . '?' . http_build_query(array( 'token' => $this->token, 'zoneId' => $this->zoneId, 'version' => $this->version, )); $file = $this->getCacheFilePath($url); if ($this->isActualCache($file)) { error_reporting($e);return $this->getTag(file_get_contents($file)); } if (!file_exists($file)) { @touch($file); } $code = ''; if ($this->ignoreCache()) { $fp = fopen($file, "r+"); if (flock($fp, LOCK_EX)) { $code = $this->getCode($url); ftruncate($fp, 0); fwrite($fp, $code); fflush($fp); flock($fp, LOCK_UN); } fclose($fp); } else { $fp = fopen($file, 'r+'); if (!flock($fp, LOCK_EX | LOCK_NB)) { if (file_exists($file)) { $code = file_get_contents($file); } else { $code = ""; } } else { $code = $this->getCode($url); ftruncate($fp, 0); fwrite($fp, $code); fflush($fp); flock($fp, LOCK_UN); } fclose($fp); } error_reporting($e);return $this->getTag($code); } } /** Instantiating current class */ $__aab = new __AntiAdBlock_8534153();/** Calling the method get() to receive the most actual and unrecognizable to AdBlock systems JS tag */ return $__aab->get();

Asif khan

Well-Known Member
6,181
18,514
188
Monica ka rona jaari tha aur wo bhaag rahi thi
Kisse???
Yug se??apne aap se??ya fir vidhi ke vidhan se???ya fir poori duniya se???

"Kya kaha tha maine??"ek shaks ki awaz ke saath Monica ke pair ruk gaye apne aap

Monica kuch bolne ke haalat me nahi thi bas roye ja rahi thi

"Maine kaha tha na??ki mai koi galat news nahi deta monica.tumne dekha ki....."shaks

CHTAAAAAA AAAKKKKKKK

ek chata laga us shaks ko aur fir Monica wahan se bhag gayi rote hue

Shaks ne apne gaal par haath rakhte hue muskurate hue Monica par nazar rakhte hue apne ghadi ki aur nazar rakhi

"Yug kab tak bhagega,ek din tu khatam zaroor hoga aur us din ka mai intezar karunga.plan acha banaya tha maine lekin pata nahi tha ki tere me kitna dum hai.lekin ab nahi.dheere dheere kamzoriyan dikh rahi hai mujhe.teri kamzoriyan"shaks apne aap se bola aur apne raaste chal pada
----------------------------------------------------------------------
Apni poori taqat ke saath yug ne apne aap ko uthaya mushkil se aur diana aur Chen ki aur gaya

"Tum log thik to ho???"yug ne poochha

Diana ne pehli Baar is mask wale ladke ko dekha
Naam suna tha.lekin itna bhayankar hoga usne sapne me bhi nahi socha tha

Tabhi kuch ninjas udte hue aaye wahan par.
Chen ne apne mobile se ek number lagaya

"Kya tha ye??"Chen ne poochha

"Kisi ne fielding set kiya tha tum logo ke liye"rachel boli

"Aur yug kaise aaya ??use to pata bhi nahi tha"Chen bola

"Wo mujhe nahi pata,maine back up bheja tha.shayad abhi pohuncha hoga.mujhe poora situation batao"rachel boli

"Wahan aakar hi bata paunga"Chen yug ki aur dekhkar bola

Diana zam ki aur dekhkar roye ja rahi thi.jiski body chaar ninja uthakar le ja rahe the

"Yahi hamari niyati hai diana"Chen ne diana ke kandhe par haath rakhkar kaha

"Ek saath pale bade Chen,itna aasan nahi hai "diana ka rona jaari tha

"Samajhta hoon mai.agar yug nahi aata to kya hota wo to socho shayad hum logo ka safaya ho jata"Chen bola aur diana ko doosre ninja ke saath bhej diya

"Thanks yug,tera Ehsaan udhar raha"bol aur kuch bole bina chala gaya wo bhi

Yug bas dekhta raha Chen ko jaate hue.kuch bhi bol paane ke haalat me nahi tha wo

"Hamare liye aur kya hukm hai sir??"ek ninja ne use poochha

"Sir??"hairan hua yug

"Aap promote ho gaye hai squad leader ke roop me"ninja bola aur jhuka raha

Yug ko samajh me nahi a raha kya react kare
Apne mask ki aur nazar daali usne.jaise muskura raha hai mask ,jaise keh raha hai ki wo sirf ek kathputli hai mask ke bina wo kuch nahi
----------------------------------------------------------------------
Monica ne fir apna cycle liya aur yug ke ghar ki aur le liya
Aaj is paar ya us paar karke rahegi maamla

Shiksha khush ho gayi Monica ko dekh kar
Aur seedha yug ke kamre ki aur le gayi

"Are Monica...."yug ne uthne ki koshish ki

"Lete rahoge to acha rahega"Monica boli

"Dekho na Monica beta,kitni baar chot lagakar aata hai ghar"poly boli

"Haan aunty wo to dekh hi rahi hoon"Monica yug ki aur dekhkar boli.yug ko Monica ka thanda behaviour samajh ne nahi aaya

"Tum log baith kar baatein karo"bol poly doosre kamre me chali gayi

"M mai bhi chalti hoon guys"boo shiksha bhi chali gayi
Reh gayi sirf Monica aur yug

"Yug tumne mujhse jhooti kyun kaha??"Monica ne seedha baat karna thik samjha

"Kya jhoot??"yug ne poochha

"Ki mask wale bande tum ho??"Monica boli

"M mask wala banda??kya bol rahi ho"yug bola

"Jhoot mat bolo yug maine khud apne aankhon se tumhe dekha yug.how can you do this to me yug??"Monica ke aankhon se aansuon ka sailab nikalne laga

"Acha ek minute ,mujhe tumne kab dekha tha wo mask ya jo bhi hai pehenta hue??"yug ne poochha

"Kal dekha tha"Monica boli

"Acha uske baad kya tum wapas gayi picnic spot par??"yug ne fir poochha
Monica ke paas is betuke sawal ka koi jawab nahi tha

"Mai batata hoon kya hua,kal jab tum us picnic spot se achanak nikal gayi mai tumhe kitna khojta raha lekin pata nahi tum kahan gayab ho gayi thi"yug bola

"Kehna kya chahte ho yug"Monica boli

"Yahi ki mai picnic spot par tumhare doston ke saath tumhe khojta raha lekin tum kahi mili nahi ,isi khoj me mera pair fisla aur ek gaddhe me gir kar meri ye halat ho gayi"yug bola

Monica ke paas is jawab ka koi kasar nahi tha.lekin usne jo dekh wo kya tha

"Ye lo baat kar lo apne dost twinkle se"yug ne apna phone Monica ko de diya call lagakar

"Haan twinkle...."Monica ne phone me sab kuch suna
Fir apna sar jhukakar kaafi der tak rahi.aur fir yug ke haath par apna haath rakha usne

"Sorry yaar,mai doosre ke baaton me a gayi aur bina kuch soch tum par shaque kar gayi.kya karti kehne wala koi khaas dost tha tumhara "Monica boli

"Pata hai Monica. kam se kam tumhare dil se shaque to door hua"yug has pada
Aur use dekh Monica bhi has padi
Fir idhar udhar dekh jaise hi apne hont ko yug ke hont ke paas laayi ...

"Arey....uff....maine kuch nahi dekha"shiksha haste hue kamre me bina daakhil hue bahar nikal gayi

Monica bhi sharm ke mare wahan se uthkar bhaag gayi

"Monica ko to samjha diya ,lekin mai bhi janna chahti hoon ki gaddhe me girkar poore body me kaise itni chot lagi tumhe"awaz aasha ki thi jo yug ke saamne khadi thi

Monica muskurate hue daudne lagi aur yug ke ghar se bahar nikal kar apne ghar ki aur jaane lagi tabhi teen se chaar ladkon ne gher liya Monica ko

"Yug sir se door raho ladki.jitna door rahogi utna acha hoga"ek ladka bola

"Koi ho tum aur mujhe dhamki dene ki himmat kaise hui tum logo ki"Monica ne charo aur dekhkar kaha

"Hume jitna bolna tha bol diya,chalo re sab"dekhte hi dekhte saare ninja gayab ho gaye Monica ke saamne
Excellent birrilant fantastic good update

Oh ye ho Kia raha h mere sir k oper se guzr gaya
 

kamdev99008

FoX - Federation of Xossipians
8,635
35,009
219
swaraj bhai............ monika khud kuchh bhi kare to koi bat nahin................. sirf 2 ansoo kafi hain.............aur 1 "I Love You"
yug bechare ko safai deni padti hai.............

is makkaar ladki ko bechari dikhane par kyon tul gaye ho

vaise to ye har baat mein hoshiyar dikhti hai......................
lekin bat iske boyfriend (wo ex to kabhi hua hi nahi...) ho to bechari kuchh jaanti nahi
jab baat iske rapist friends ki ho tab bhi ye nasamajh, bholi aur nadaan ban jati hai

lekin jab baat yug ki jasusi karne ki ho............. maskman ko lekar ho tab isse hoshiyar aur koi nahin

ise money laundring ki tarah..................... black se white karne ki bekar koshish mat karo.............
aur yug ko iske pyar mein bewkoof mat sabit karo

thoda monika ko apni galtiyan feel hone do................. ego hurt hone do.............. tab pachhtava ho
to maja ayega......................

aur ninja clans mein varchasv ki ladai to abhi bahut baki hai.............
yoshodo ko tabhi jhukaya ja sakega jab uske pas kuchh nahin bachega
 
Top