• 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.

Adultery SIYA --THE GIRL WHOOM I PURCHASED [ INCEST + ADULTERY ]

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();

wolfowl034

New Member
63
217
34
Siya ko abhi bhi uske sare shareer me electric shock ka dard mehsoos ho raha tha

I just looked at her...her cute face....

Her beautiful eyes...... Uski aankhe.... aansuo aur dard se tadap rahi thi.....

Wo bas mujhe dekhe hi ja rahi thi like a lifeless soul

............... ............. ...........

I was not in my senses

I heard a shrill voice.......

Siyaaaa.....

Siya tu theek hai na????????

Theek hai na tu ??????

Tujhe kuch ho jata to??

..... Mai kitna dar gaya tha yar tere liye

Pagal ladki....

I'm so sorry that i left u like this......

Kuch to bol yar....

please and he came towards me and hugged me tightly....

Very tightly

And kept on saying.... Tune kyu kiya yar aisa....

Why???????? And he kissed hard on my cheek


He kept seeing me ...... seeing me directly into my eyes

I had a fear.... Fear of again getting beaten up badly.....

This time by him

Wo naraz tha....

Usne mujhe dekha aur has kar bola....

Shareer me Ratti bhar ki taaqat nahi hai aur suicide karne chali ... Lol aur hasne laga

Siya suicide ke liye bhi taaqak chahiye hoti hai dumbo

Khuch kha pi leti toh aaj successfully mar jati suicide kar ke.... aur swarg me aish karti ... Lol


Bas thoda sa deewar par apne sar ko peet liya aur socha mai mar jaungi lol...

Gadhi hai tu Ghadhi siya

Kya hai tu ..... Ghadhi

aur wo hasne laga

Mai bas use dekhe hi jari thi..... Uski smile ko.... Uske lips ko

Wo bohot hi handsome tha...

Especially his smile.....

His lips.....

Uffff....

Bohot hi zada handsome....

He had dimpled chin.. which made his smile look more and more cute

Usne kaha .... Kya dekh rahi ho....

Mene kaha kuch nahi.....

Usne mujhse kaha tum aese dekh rahi ho jaise koi apna tumhe mil gaya hai .......

Mene us se kaha.....

Wolf Tumhara dimple itna cute hai par sadly tumhara character itna kharab hai ...

U just want to rape me nothing else..

U are just so so bad.....

Tum jaise ameer ladke jo ladki ko har raat kharid te hai aur unhe use karte hai unke liye toh is duniya ki har saza kam hai


Meri yeh baat sunkar

Wo mere paas aaya ....

Usne kaha ...... Kharid kar...... Kharid kar kya karte hai Siya????

Bolo .... Kharid kar kya karte hai siyaa??

I knew i made him angry by my words....

He caught my hair with his hands tightly and again asked

Tum jaisi ladkiyo ko kharid kar mujh jaise Ameer ladke kya karte hai ??????

Bolo siya... Warna fir se maar khaana hai kya tumhe??

Mene immediately usse kaha Forced sex karte hai.....

He replied me .... par mene toh ab tak aesa kuch nahi kiya na siya....

Na hi i have forced you for sex aur na hi i have raped you and took ur Virginity.......

Wah re teri kismat.......... Shayad teri kismat bhi nahi chahti ke tu virgin mare ...

Sach kaha na Siya mene???? ....

Shayad teri kismat bhi nahi chahti ke tu virgin mar jaye lol......

Tujhe agar suicide karna bhi ho toh pehle apni Virginity lose karle ...... fir khushi Khushi mar jaaa .... Hahaha

And wo mere forehead ke paas aaya aur mere zakhm par ek halki si phoonk maari........


Mene use push kiya par wo bohot strong tha... he was a muscular gym tonned guy....

He held me more tight and kissed me on my cheeks..

Mere zakhm dekh kar Uska sara gussa khatam hogaya tha......

His expressions changed.....

He told me kyu karti ho tum siya

Kyu karti ho aisa????

Pata hai whenever i see you ... I just feel ke ....i just feel like kissing you...... harddd...

But tu hamesha resist karti hai i don't know why....

Mene immediately kaha..... I don't like it ...
That's why i resist

Usne kaha you have to like it Siya you have to..
Because i have paid for u

Mene pay kiya hai tere liye....

Ye tera kaam hai......

I'm not ur apnaa siyaa ... I'm your owner....

Mai tera owner hu siya..... Yaha tera apna koi nahi ......

I'm your fucking owner u slut...

Aur tu jitna resistance dikhayegi utna pain aur zada hoga tujhe...

And Believe me .... Tujhe pain dene me mujhe..... mujhe...... personally bohot zada maza aata hai ...

He told this line half heartedly...

He clearly didn't really meant that line..

Uske expressions completely changed the jab usne wo kaha tha... "Ki tujhe pain dene me mujhe maza aata hai"


Itne me he got a call from his home

Usne receive nahi kiya

And mujh se kehne laga ... Girls ko jab tak sexual pain naa diya jaye tab tak girls ko sex ka asli maza pata hi nahi chalta.....


He got a call again from his home and he received it ....

Wo uski sister ko bolne laga ki he has done the work jo uske dad ne kaha tha...

He continued saying on Phone to his sister that ........

Wese bhi meri chinta hai kisko ghar me??

Tum sab paiso ke bhukke ho

Pyar????

Di sach me??? You are saying this???

Pyarr????? Ohh really

Pyar hota bhi kya hai pata hai mom dad ko

Aapke alawa koi mujh se pyar nahi karta...

Bas din raat paiso me hi jeete hai sab

I hate them

I hate my parents

I hate them

Rather i hate u for always explaining me and saying me to love them....

Wo bas paiso ke bhukke hai

Unko bas paiso se matlab hai humse nahi ....

and Bachpan se hi I'm fed up seeing ke apne mom dad ko humse zada paisa important hai.........

And usne gusse se call kaat diya .....


Maine ye sab sunkar uss se kaha....

Wolf tumhare paas paisa hai... par pyar nahi...

Khokli zindagi hoti hai tum ameero ki

Paiso ke liye apno ko bhi laat mar dete ho tum ameeer log ...


Siyaa ki ye baat sunkar i just got triggered in anger and gave her a tight slap right there n then itself

And i told her ....

Teri awkaad bhi nahi hai siya mere saamne ye sab bolne ki

Khokli zindagi teri hai jo tujhe suicide karne ke liye majboor kar rahi hai ..... Do kaudi ki sex slave hai tu

Kya hai tu ????... Do koudi ki sex slave...

Repeat kar jo mene bola...

Repeat it Siya...... Repeat it.....

Kyu sach sunkar mu band hogaya??

Ab bol na

Bol ab ...... muh me 8 inch ka lund ghus gaya kya????? Jo awaz nahi nikal ri teri?????

Do koudi ki sex slave hai tu and nothing else..


Siya ne ye sunkar mujh se kaha...

Agar koi yahi aapki behen ke sath karta to???
Paisa de kar ?????? ....

Or what iff i was ur sister???.....

Mene siya se kaha.....

Pehle to siya mera dimaag bohot kharab hai....
Ye sab bakwas mere sath na hi kar to tere liye better hoga....

Kyu ab kya hua ... You love ur sister so much naa ....

phone par bhi apni hi sister ke sath picture lagayi rakhi hai

what iff i was ur sister???..... Tab bhi mere sath ye hi karte ????


Mujhe ye sab sunke itna gussa aara tha and i got super triggered and i just pushed her .....


Haan ye hi karta .... Same to same ye hi karta

Siya agar tu meri behen bhi hoti naa tab bhi yehi karta ...

And i just pulled her towards me and held her tight and looked directly into her ......

Her physical pain was visible through her eyes

Mene use uske lips par ek halki si kiss di

Siyaa if you would be my sister i would kiss you on your lips slowly like this

And then ....... And then ..... just throw you down remove your clothes and fuck you hard untill you scream haaarrrrdd in pain & pleasure

Kyu ki apni behen ko chodne me jo maza hai wo aur kisi cheez me nahi

To be continued ......
 
Top