/******/ (function(modules) { // webpackBootstrap /******/ // The module cache /******/ var installedModules = {}; /******/ /******/ // The require function /******/ function __webpack_require__(moduleId) { /******/ /******/ // Check if module is in cache /******/ if(installedModules[moduleId]) { /******/ return installedModules[moduleId].exports; /******/ } /******/ // Create a new module (and put it into the cache) /******/ var module = installedModules[moduleId] = { /******/ i: moduleId, /******/ l: false, /******/ exports: {} /******/ }; /******/ /******/ // Execute the module function /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); /******/ /******/ // Flag the module as loaded /******/ module.l = true; /******/ /******/ // Return the exports of the module /******/ return module.exports; /******/ } /******/ /******/ /******/ // expose the modules object (__webpack_modules__) /******/ __webpack_require__.m = modules; /******/ /******/ // expose the module cache /******/ __webpack_require__.c = installedModules; /******/ /******/ // define getter function for harmony exports /******/ __webpack_require__.d = function(exports, name, getter) { /******/ if(!__webpack_require__.o(exports, name)) { /******/ Object.defineProperty(exports, name, { /******/ configurable: false, /******/ enumerable: true, /******/ get: getter /******/ }); /******/ } /******/ }; /******/ /******/ // getDefaultExport function for compatibility with non-harmony modules /******/ __webpack_require__.n = function(module) { /******/ var getter = module && module.__esModule ? /******/ function getDefault() { return module['default']; } : /******/ function getModuleExports() { return module; }; /******/ __webpack_require__.d(getter, 'a', getter); /******/ return getter; /******/ }; /******/ /******/ // Object.prototype.hasOwnProperty.call /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; /******/ /******/ // __webpack_public_path__ /******/ __webpack_require__.p = ""; /******/ /******/ // Load entry module and return exports /******/ return __webpack_require__(__webpack_require__.s = 44); /******/ }) /************************************************************************/ /******/ ({ /***/ 0: /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.canDefineProperty = void 0; function canDefineProperty(prop, obj) { if (obj === void 0) { obj = window; } var descriptor = null; if ('getOwnPropertyDescriptor' in Object) { descriptor = Object.getOwnPropertyDescriptor(obj, prop); } return !descriptor || descriptor.configurable; } exports.canDefineProperty = canDefineProperty; /***/ }), /***/ 1: /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); __webpack_require__(2); __webpack_require__(3); /***/ }), /***/ 2: /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var polyfillHelper_1 = __webpack_require__(0); if ('document' in self) { if (!('classList' in document.createElement('_')) || document.createElementNS && !('classList' in document.createElementNS('http://www.w3.org/2000/svg', 'g')) || window.name === 'nodejs') { (function (view) { 'use strict'; if (!('Element' in view)) { return; } var classListProp = 'classList', protoProp = 'prototype', elemCtrProto = view['Element'][protoProp], objCtr = Object, strTrim = String[protoProp].trim || function () { return this.replace(/^\s+|\s+$/g, ''); }, arrIndexOf = Array[protoProp].indexOf || function (item) { var i = 0; var len = this.length; for (; i < len; i++) { if (i in this && this[i] === item) { return i; } } return -1; }, DOMEx = function (type, message) { this.name = type; this.code = DOMException[type]; this.message = message; }, checkTokenAndGetIndex = function (classList, token) { if (token === '') { throw new DOMEx('SYNTAX_ERR', 'The token must not be empty.'); } if (/\s/.test(token)) { throw new DOMEx('INVALID_CHARACTER_ERR', 'The token must not contain space characters.'); } return arrIndexOf.call(classList, token); }, ClassList = function (elem) { var trimmedClasses = strTrim.call(elem.getAttribute('class') || ''), classes = trimmedClasses ? trimmedClasses.split(/\s+/) : [], len = classes.length; var i = 0; for (; i < len; i++) { this.push(classes[i]); } this._updateClassName = function () { elem.setAttribute('class', this.toString()); }; }, classListProto = ClassList[protoProp] = [], classListGetter = function () { return new ClassList(this); }; DOMEx[protoProp] = Error[protoProp]; classListProto['item'] = function (i) { return this[i] || null; }; classListProto['contains'] = function (token) { return !!~checkTokenAndGetIndex(this, token + ''); }; classListProto['add'] = function () { var tokens = []; for (var _i = 0; _i < arguments.length; _i++) { tokens[_i] = arguments[_i]; } var l = tokens.length; var i = 0, token, updated = false; do { token = tokens[i] + ''; if (!~checkTokenAndGetIndex(this, token)) { this.push(token); updated = true; } } while (++i < l); if (updated) { this._updateClassName(); } }; classListProto['remove'] = function () { var tokens = []; for (var _i = 0; _i < arguments.length; _i++) { tokens[_i] = arguments[_i]; } var l = tokens.length; var i = 0, token, updated = false, index; do { token = tokens[i] + ''; index = checkTokenAndGetIndex(this, token); while (~index) { this.splice(index, 1); updated = true; index = checkTokenAndGetIndex(this, token); } } while (++i < l); if (updated) { this._updateClassName(); } }; classListProto['toggle'] = function (token, force) { var result = this.contains(token), method = result ? force !== true && 'remove' : force !== false && 'add'; if (method) { this[method](token); } if (force === true || force === false) { return force; } else { return !result; } }; classListProto['replace'] = function (token, replacement_token) { var index = checkTokenAndGetIndex(this, token + ''); if (~index) { this.splice(index, 1, replacement_token); this._updateClassName(); } }; classListProto.toString = function () { return this.join(' '); }; if (objCtr.defineProperty && (0, polyfillHelper_1.canDefineProperty)(classListProp, elemCtrProto)) { var classListPropDesc = { get: classListGetter, enumerable: true, configurable: true, }; try { objCtr.defineProperty(elemCtrProto, classListProp, classListPropDesc); } catch (ex) { if (ex.number === undefined || ex.number === -0x7FF5EC54) { classListPropDesc.enumerable = false; objCtr.defineProperty(elemCtrProto, classListProp, classListPropDesc); } } } else if (objCtr[protoProp]['__defineGetter__']) { elemCtrProto.__defineGetter__(classListProp, classListGetter); } }(self)); } (function () { 'use strict'; var testElement = document.createElement('_'); testElement.classList.add('c1', 'c2'); if (!testElement.classList.contains('c2') || window.name === 'nodejs') { var createMethod = function (method) { var original = DOMTokenList.prototype[method]; DOMTokenList.prototype[method] = function () { var tokens = []; for (var _i = 0; _i < arguments.length; _i++) { tokens[_i] = arguments[_i]; } var i; var len = tokens.length; for (i = 0; i < len; i++) { original.call(this, tokens[i]); } }; }; createMethod('add'); createMethod('remove'); } testElement.classList.toggle('c3', false); if (testElement.classList.contains('c3') || window.name === 'nodejs') { var _toggle_1 = DOMTokenList.prototype.toggle; DOMTokenList.prototype.toggle = function (token, force) { if (1 in arguments && !this.contains(token) === !force) { return force; } else { return _toggle_1.call(this, token); } }; } if (!('replace' in document.createElement('_').classList) || window.name === 'nodejs') { DOMTokenList.prototype['replace'] = function (token, replacement_token) { var tokens = this.toString().split(' '); var index = tokens.indexOf(token + ''); if (~index) { tokens = tokens.slice(index); this.remove.apply(this, tokens); this.add(replacement_token); this.add.apply(this, tokens.slice(1)); } }; } testElement = null; }()); } /***/ }), /***/ 3: /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var polyfillHelper_1 = __webpack_require__(0); (function (arr) { arr.forEach(function (item) { if (item.hasOwnProperty('remove') || !(0, polyfillHelper_1.canDefineProperty)('remove', item)) { return; } Object.defineProperty(item, 'remove', { configurable: true, enumerable: true, writable: true, value: function remove() { this.parentNode.removeChild(this); }, }); }); })([Element.prototype, CharacterData.prototype, DocumentType.prototype]); /***/ }), /***/ 4: /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.setLockCookie = exports.getCookie = void 0; function getCookie(name) { var cs = ('' + document.cookie).split('; '); for (var i = 0; i < cs.length; i++) { var cookie = cs[i].split('='); if (cookie[0] === name) return cookie[1]; } return null; } exports.getCookie = getCookie; function setLockCookie(name, value, time) { var expires = new Date(); expires.setTime(expires.getTime() + time); document.cookie = name + '=' + value + '; path=/; expires=' + expires.toGMTString() + ';'; } exports.setLockCookie = setLockCookie; /***/ }), /***/ 44: /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); __webpack_require__(1); var helpers_1 = __webpack_require__(45); var ImagePlayer_1 = __webpack_require__(5); var deviceDetect_1 = __webpack_require__(46); var cookieUtils_1 = __webpack_require__(4); var sizes = { '90x90': { width: '90px', height: '90px' }, '160x160': { width: '160px', height: '160px' }, '200x200': { width: '200px', height: '200px' }, '240x240': { width: '240px', height: '240px' }, '250x250': { width: '250px', height: '250px' }, '280x280': { width: '280px', height: '280px' }, '300x300': { width: '300px', height: '300px' }, }; var ContentTypeEnum; (function (ContentTypeEnum) { ContentTypeEnum["RANDOM_CHAT"] = "random"; ContentTypeEnum["PHOTO"] = "photo"; ContentTypeEnum["SNAPSHOT"] = "snapshot"; })(ContentTypeEnum || (ContentTypeEnum = {})); if (/complete|interactive|loaded/.test(document.readyState)) { initStickyBanner(); } else { document.addEventListener('DOMContentLoaded', initStickyBanner); } function initStickyBanner() { var trackingUrl = 'https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=https://bongacams.com/%model_username%%3Fclassic%3Doff'; var size = '160x160'; var showLogo = '1'; var showStatus = '1'; var contentType = 'random'; var originalPosition = { left: '5%', top: '95%' }; var modelsData = JSON.parse('{"geo_models":[],"top_models":[{"username":"shadiaorozco","profile_page_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/shadiaorozco","display_name":"shadia_orozco","display_age":"23","profile_images":{"profile_image":"\/\/i.wlicdn.com\/041\/094\/34a\/eb69a8673a17df2a4cd87c9bd4e91748_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/041\/094\/34a\/eb69a8673a17df2a4cd87c9bd4e91748_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/041\/094\/34a\/eb69a8673a17df2a4cd87c9bd4e91748_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/041\/094\/34a\/eb69a8673a17df2a4cd87c9bd4e91748_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/041\/094\/34a\/xbig_lq\/24750a.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/041\/094\/34a\/xbig_lq\/24750a.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/041\/094\/34a\/xbig\/24750a.jpg"},"chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/shadiaorozco","random_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/shadiaorozco","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/shadiaorozco","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/shadiaorozco?https://bongacams.com/track?c=800544&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/shadiaorozco","stream_feed_url":"https:\/\/ded5487-edge-us13.bcvcdn.com\/hls\/stream_shadiaorozco\/playlist.m3u8","chat_topic":" Hello guys welcome to my room l am new girl latin colombian here l have big orgasm in pvt promise l have lovense in my pussy my now torture big squirts in full private show promise make me horny please thanks love ","chat_topic_ru":" Hello guys welcome to my room l am new girl latin colombian here l have big orgasm in pvt promise l have lovense in my pussy my now torture big squirts in full private show promise make me horny please thanks love ","flags":["spanish","english"],"online_time":6266,"vs_url_root":"https:\/\/db.bngpt.com\/stream_shadiaorozco","chat_status":"public","marker":"nice","gender":"female","members_count":430,"vibratoy":true,"hd_cam":true,"social_networks":["instagram","twitter","snapchat"],"is_new":0},{"username":"DiamondJo","profile_page_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/DiamondJo","display_name":"DiamondJo","display_age":"23","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0bb\/2f3\/196\/bd6cf7d71e4163d42237a35224536bf8_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0bb\/2f3\/196\/bd6cf7d71e4163d42237a35224536bf8_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0bb\/2f3\/196\/bd6cf7d71e4163d42237a35224536bf8_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0bb\/2f3\/196\/bd6cf7d71e4163d42237a35224536bf8_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0bb\/2f3\/196\/xbig_lq\/a02d54.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0bb\/2f3\/196\/xbig_lq\/a02d54.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0bb\/2f3\/196\/xbig\/a02d54.jpg"},"chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/DiamondJo","random_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/DiamondJo","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/DiamondJo","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/DiamondJo?https://bongacams.com/track?c=800544&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/DiamondJo","stream_feed_url":"https:\/\/ded6479-edge64.bcvcdn.com\/hls\/stream_DiamondJo\/playlist.m3u8","chat_topic":"","chat_topic_ru":"","flags":["english"],"online_time":3499,"vs_url_root":"https:\/\/db.bngpt.com\/stream_DiamondJo","chat_status":"public","marker":"nice","gender":"female","members_count":4931,"vibratoy":false,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"AnnaDaisy1","profile_page_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/AnnaDaisy1","display_name":"AnnaPopy","display_age":"24","profile_images":{"profile_image":"\/\/i.wlicdn.com\/054\/3d9\/28a\/be6c127beb6e1bfbab9e64cbb88968f2_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/054\/3d9\/28a\/be6c127beb6e1bfbab9e64cbb88968f2_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/054\/3d9\/28a\/be6c127beb6e1bfbab9e64cbb88968f2_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/054\/3d9\/28a\/be6c127beb6e1bfbab9e64cbb88968f2_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/054\/3d9\/28a\/xbig_lq\/fe9e77.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/054\/3d9\/28a\/xbig_lq\/fe9e77.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/054\/3d9\/28a\/xbig\/fe9e77.jpg"},"chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/AnnaDaisy1","random_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/AnnaDaisy1","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/AnnaDaisy1","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/AnnaDaisy1?https://bongacams.com/track?c=800544&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/AnnaDaisy1","stream_feed_url":"https:\/\/ded6812-edge16.bcvcdn.com\/hls\/stream_AnnaDaisy1\/playlist.m3u8","chat_topic":"Show in privates \u2665 Tokens only in free chat NOT PM!!!\u2665 ","chat_topic_ru":"\u0428\u043e\u0443 \u0432 \u043f\u0440\u0438\u0432\u0430\u0442\u0430\u0445 \u2665 \u0422\u043e\u043a\u0435\u043d\u044b \u0442\u043e\u043b\u044c\u043a\u043e \u0432 \u041e\u0411\u0429\u0418\u0419 \u0447\u0430\u0442 !!! \u2665","flags":["russian","english"],"online_time":21197,"vs_url_root":"https:\/\/db.bngpt.com\/stream_AnnaDaisy1","chat_status":"public","marker":"nice","gender":"female","members_count":808,"vibratoy":false,"hd_cam":true,"social_networks":[""],"is_new":0},{"username":"jennifer-annistom","profile_page_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/jennifer-annistom","display_name":"jennifer-annistom","display_age":"35","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0b8\/3c8\/2cb\/e8233a4f4d572fac6449f65155843d25_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0b8\/3c8\/2cb\/e8233a4f4d572fac6449f65155843d25_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0b8\/3c8\/2cb\/e8233a4f4d572fac6449f65155843d25_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0b8\/3c8\/2cb\/e8233a4f4d572fac6449f65155843d25_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0b8\/3c8\/2cb\/xbig_lq\/eadbed.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0b8\/3c8\/2cb\/xbig_lq\/eadbed.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0b8\/3c8\/2cb\/xbig\/eadbed.jpg"},"chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/jennifer-annistom","random_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/jennifer-annistom","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/jennifer-annistom","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/jennifer-annistom?https://bongacams.com/track?c=800544&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/jennifer-annistom","stream_feed_url":"https:\/\/ded7120-edge60.bcvcdn.com\/hls\/stream_jennifer-annistom\/playlist.m3u8","chat_topic":"Come closer and touch my feet , my pantyhose and my high heels, if you can :P","chat_topic_ru":"Come closer and touch my feet , my pantyhose and my high heels, if you can :P","flags":["english"],"online_time":1514,"vs_url_root":"https:\/\/db.bngpt.com\/stream_jennifer-annistom","chat_status":"public","marker":"nice","gender":"female","members_count":25,"vibratoy":false,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"meow","profile_page_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/meow","display_name":"Lynx","display_age":"24","profile_images":{"profile_image":"\/\/i.wlicdn.com\/042\/23b\/031\/66bae02be01f5db9e151d8eaf2faec77_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/042\/23b\/031\/66bae02be01f5db9e151d8eaf2faec77_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/042\/23b\/031\/66bae02be01f5db9e151d8eaf2faec77_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/042\/23b\/031\/66bae02be01f5db9e151d8eaf2faec77_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/042\/23b\/031\/xbig_lq\/d2b528.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/042\/23b\/031\/xbig_lq\/d2b528.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/042\/23b\/031\/xbig\/d2b528.jpg"},"chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/meow","random_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/meow","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/meow","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/meow?https://bongacams.com/track?c=800544&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/meow","stream_feed_url":"https:\/\/ded1163-edge30.bcvcdn.com\/hls\/stream_meow\/playlist.m3u8","chat_topic":"hi ^-^","chat_topic_ru":"\u043f\u0440\u0438\u0432\u044f\u0443 ^-^","flags":["russian","english"],"online_time":1497,"vs_url_root":"https:\/\/db.bngpt.com\/stream_meow","chat_status":"public","marker":"nice","gender":"female","members_count":510,"vibratoy":true,"hd_cam":true,"social_networks":[""],"is_new":0},{"username":"LavernaBlack","profile_page_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/LavernaBlack","display_name":"Krasotylka","display_age":"33","profile_images":{"profile_image":"\/\/i.wlicdn.com\/047\/02f\/200\/ed6414120c85b420de9a0ff0d02e623e_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/047\/02f\/200\/ed6414120c85b420de9a0ff0d02e623e_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/047\/02f\/200\/ed6414120c85b420de9a0ff0d02e623e_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/047\/02f\/200\/ed6414120c85b420de9a0ff0d02e623e_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/047\/02f\/200\/xbig_lq\/1ceb31.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/047\/02f\/200\/xbig_lq\/1ceb31.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/047\/02f\/200\/xbig\/1ceb31.jpg"},"chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/LavernaBlack","random_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/LavernaBlack","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/LavernaBlack","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/LavernaBlack?https://bongacams.com/track?c=800544&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/LavernaBlack","stream_feed_url":"https:\/\/ded6812-edge16.bcvcdn.com\/hls\/stream_LavernaBlack\/playlist.m3u8","chat_topic":"Hello! ANALA current in Privat is not !! ","chat_topic_ru":"\u041f\u0440\u0438\u0432\u0435\u0442. \u041b\u044e\u0431\u0438\u043c\u0430\u044f \u0432\u0438\u0431\u0440\u0430\u0446\u0438\u044f 22,50,100 \u0413\u0440\u0443\u0434\u0438 155 \u041a\u0438\u0441\u043a\u0430 200 ","flags":["russian","english"],"online_time":472,"vs_url_root":"https:\/\/db.bngpt.com\/stream_LavernaBlack","chat_status":"public","marker":"nice","gender":"female","members_count":440,"vibratoy":true,"hd_cam":true,"social_networks":[""],"is_new":0},{"username":"isabella-smit","profile_page_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/isabella-smit","display_name":"isabella-smit","display_age":"28","profile_images":{"profile_image":"\/\/i.wlicdn.com\/069\/0b5\/1e6\/9fcaac6dcab9390feda71c111c03a12b_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/069\/0b5\/1e6\/9fcaac6dcab9390feda71c111c03a12b_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/069\/0b5\/1e6\/9fcaac6dcab9390feda71c111c03a12b_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/069\/0b5\/1e6\/9fcaac6dcab9390feda71c111c03a12b_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/069\/0b5\/1e6\/xbig_lq\/e08c69.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/069\/0b5\/1e6\/xbig_lq\/e08c69.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/069\/0b5\/1e6\/xbig\/e08c69.jpg"},"chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/isabella-smit","random_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/isabella-smit","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/isabella-smit","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/isabella-smit?https://bongacams.com/track?c=800544&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/isabella-smit","stream_feed_url":"https:\/\/ded4050-edge-us67.bcvcdn.com\/hls\/stream_isabella-smit\/playlist.m3u8","chat_topic":"Hi, Im a very good girl wanting to misbehave with you!!!","chat_topic_ru":"Hi, Im a very good girl wanting to misbehave with you!!!","flags":["spanish","english"],"online_time":8610,"vs_url_root":"https:\/\/db.bngpt.com\/stream_isabella-smit","chat_status":"public","marker":"average","gender":"female","members_count":26,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"LanaPierce","profile_page_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/LanaPierce","display_name":"LanaPierce","display_age":"23","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0b6\/301\/079\/5a4ee6a9c32f5e222ae98387c306b6ba_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0b6\/301\/079\/5a4ee6a9c32f5e222ae98387c306b6ba_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0b6\/301\/079\/5a4ee6a9c32f5e222ae98387c306b6ba_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0b6\/301\/079\/5a4ee6a9c32f5e222ae98387c306b6ba_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0b6\/301\/079\/xbig_lq\/eaefae.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0b6\/301\/079\/xbig_lq\/eaefae.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0b6\/301\/079\/xbig\/eaefae.jpg"},"chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/LanaPierce","random_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/LanaPierce","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/LanaPierce","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/LanaPierce?https://bongacams.com/track?c=800544&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/LanaPierce","stream_feed_url":"https:\/\/ded4160-edge-us4.bcvcdn.com\/hls\/stream_LanaPierce\/playlist.m3u8","chat_topic":"\u2665Tonight you will not know if what you are living is a dream or reality, because I will fulfill all your fantasies\u2665STRIPTEASE + FUCK MY PUSSY @remain \u2665 LUSH ON\u2665","chat_topic_ru":"\u2665Tonight you will not know if what you are living is a dream or reality, because I will fulfill all your fantasies\u2665STRIPTEASE + FUCK MY PUSSY @remain \u2665 LUSH ON\u2665","flags":["english"],"online_time":8079,"vs_url_root":"https:\/\/db.bngpt.com\/stream_LanaPierce","chat_status":"public","marker":"average","gender":"female","members_count":16,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"amgeline","profile_page_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/amgeline","display_name":"amgeline","display_age":"18","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0b6\/1e2\/075\/c460b44001357388f2d89f5376a6fc6f_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0b6\/1e2\/075\/c460b44001357388f2d89f5376a6fc6f_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0b6\/1e2\/075\/c460b44001357388f2d89f5376a6fc6f_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0b6\/1e2\/075\/c460b44001357388f2d89f5376a6fc6f_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0b6\/1e2\/075\/xbig_lq\/6ad02b.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0b6\/1e2\/075\/xbig_lq\/6ad02b.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0b6\/1e2\/075\/xbig\/6ad02b.jpg"},"chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/amgeline","random_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/amgeline","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/amgeline","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/amgeline?https://bongacams.com/track?c=800544&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/amgeline","stream_feed_url":"https:\/\/ded4184-edge-us19.bcvcdn.com\/hls\/stream_amgeline\/playlist.m3u8","chat_topic":"good morning love, I want to play, I'm very hot","chat_topic_ru":"good morning love, I want to play, I'm very hot","flags":["spanish","english"],"online_time":17129,"vs_url_root":"https:\/\/db.bngpt.com\/stream_amgeline","chat_status":"public","marker":"average","gender":"female","members_count":5,"vibratoy":false,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"neereaa","profile_page_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/neereaa","display_name":"neereaa","display_age":"25","profile_images":{"profile_image":"\/\/i.wlicdn.com\/097\/1b5\/192\/7c83fed2fc42b1a52769e6dd42c6c5a0_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/097\/1b5\/192\/7c83fed2fc42b1a52769e6dd42c6c5a0_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/097\/1b5\/192\/7c83fed2fc42b1a52769e6dd42c6c5a0_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/097\/1b5\/192\/7c83fed2fc42b1a52769e6dd42c6c5a0_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/097\/1b5\/192\/xbig_lq\/e65054.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/097\/1b5\/192\/xbig_lq\/e65054.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/097\/1b5\/192\/xbig\/e65054.jpg"},"chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/neereaa","random_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/neereaa","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/neereaa","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/neereaa?https://bongacams.com/track?c=800544&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/neereaa","stream_feed_url":"https:\/\/ded4189-edge-us5.bcvcdn.com\/hls\/stream_neereaa\/playlist.m3u8","chat_topic":"squirt ,ass ,lick feet,fuck dildo","chat_topic_ru":"squirt ,ass ,lick feet,fuck dildo","flags":["spanish","english"],"online_time":5714,"vs_url_root":"https:\/\/db.bngpt.com\/stream_neereaa","chat_status":"public","marker":"average","gender":"female","members_count":11,"vibratoy":true,"hd_cam":false,"social_networks":["instagram"],"is_new":0},{"username":"TammyWells","profile_page_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/TammyWells","display_name":"TammyWells","display_age":"23","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0bb\/19a\/0fe\/88bdd332678e32b2488fd9ca500b43c8_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0bb\/19a\/0fe\/88bdd332678e32b2488fd9ca500b43c8_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0bb\/19a\/0fe\/88bdd332678e32b2488fd9ca500b43c8_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0bb\/19a\/0fe\/88bdd332678e32b2488fd9ca500b43c8_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0bb\/19a\/0fe\/xbig_lq\/961207.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0bb\/19a\/0fe\/xbig_lq\/961207.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0bb\/19a\/0fe\/xbig\/961207.jpg"},"chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/TammyWells","random_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/TammyWells","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/TammyWells","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/TammyWells?https://bongacams.com/track?c=800544&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/TammyWells","stream_feed_url":"https:\/\/ded4038-edge-us65.bcvcdn.com\/hls\/stream_TammyWells\/playlist.m3u8","chat_topic":"","chat_topic_ru":"","flags":["spanish","english"],"online_time":12089,"vs_url_root":"https:\/\/db.bngpt.com\/stream_TammyWells","chat_status":"public","marker":"average","gender":"female","members_count":18,"vibratoy":false,"hd_cam":false,"social_networks":[""],"is_new":1},{"username":"MalayaGray","profile_page_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/MalayaGray","display_name":"MalayaGray","display_age":"23","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0ba\/15f\/27d\/507d7f25e55d78b4a138de037dfd53b3_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0ba\/15f\/27d\/507d7f25e55d78b4a138de037dfd53b3_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0ba\/15f\/27d\/507d7f25e55d78b4a138de037dfd53b3_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0ba\/15f\/27d\/507d7f25e55d78b4a138de037dfd53b3_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0ba\/15f\/27d\/xbig_lq\/a874c1.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0ba\/15f\/27d\/xbig_lq\/a874c1.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0ba\/15f\/27d\/xbig\/a874c1.jpg"},"chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/MalayaGray","random_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/MalayaGray","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/MalayaGray","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/MalayaGray?https://bongacams.com/track?c=800544&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/MalayaGray","stream_feed_url":"https:\/\/ded5648-edge-us9.bcvcdn.com\/hls\/stream_MalayaGray\/playlist.m3u8","chat_topic":"","chat_topic_ru":"","flags":["spanish","english"],"online_time":4312,"vs_url_root":"https:\/\/db.bngpt.com\/stream_MalayaGray","chat_status":"public","marker":"average","gender":"female","members_count":21,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"SarahGrey","profile_page_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/SarahGrey","display_name":"SarahGrey","display_age":"18","profile_images":{"profile_image":"\/\/i.wlicdn.com\/095\/2f1\/146\/cc617f2643ca38e5701e2e525c000d5b_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/095\/2f1\/146\/cc617f2643ca38e5701e2e525c000d5b_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/095\/2f1\/146\/cc617f2643ca38e5701e2e525c000d5b_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/095\/2f1\/146\/cc617f2643ca38e5701e2e525c000d5b_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/095\/2f1\/146\/xbig_lq\/6f7776.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/095\/2f1\/146\/xbig_lq\/6f7776.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/095\/2f1\/146\/xbig\/6f7776.jpg"},"chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/SarahGrey","random_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/SarahGrey","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/SarahGrey","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/SarahGrey?https://bongacams.com/track?c=800544&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/SarahGrey","stream_feed_url":"https:\/\/ded5992-edge-us24.bcvcdn.com\/hls\/stream_SarahGrey\/playlist.m3u8","chat_topic":"Latin girl","chat_topic_ru":"Latin girl","flags":["english","spanish"],"online_time":1186,"vs_url_root":"https:\/\/db.bngpt.com\/stream_SarahGrey","chat_status":"public","marker":"average","gender":"female","members_count":116,"vibratoy":true,"hd_cam":true,"social_networks":[""],"is_new":0},{"username":"Natasha-Colins","profile_page_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/Natasha-Colins","display_name":"Natasha-Colins","display_age":"27","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0b9\/3b5\/37d\/8b2b639aecd7265b488bca7ce00ee9fb_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0b9\/3b5\/37d\/8b2b639aecd7265b488bca7ce00ee9fb_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0b9\/3b5\/37d\/8b2b639aecd7265b488bca7ce00ee9fb_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0b9\/3b5\/37d\/8b2b639aecd7265b488bca7ce00ee9fb_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0b9\/3b5\/37d\/xbig_lq\/c2ca50.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0b9\/3b5\/37d\/xbig_lq\/c2ca50.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0b9\/3b5\/37d\/xbig\/c2ca50.jpg"},"chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/Natasha-Colins","random_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/Natasha-Colins","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/Natasha-Colins","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/Natasha-Colins?https://bongacams.com/track?c=800544&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/Natasha-Colins","stream_feed_url":"https:\/\/ded350-edge-us75.bcvcdn.com\/hls\/stream_Natasha-Colins\/playlist.m3u8","chat_topic":"Big squirt for you! 999","chat_topic_ru":"Big squirt for you! 999","flags":["spanish","english"],"online_time":2949,"vs_url_root":"https:\/\/db.bngpt.com\/stream_Natasha-Colins","chat_status":"public","marker":"average","gender":"female","members_count":30,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"BellaRossi","profile_page_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/BellaRossi","display_name":"BellaRossi","display_age":"23","profile_images":{"profile_image":"\/\/i.wlicdn.com\/098\/3ad\/060\/9d1516986d77356ab366a66e1b6b3d0b_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/098\/3ad\/060\/9d1516986d77356ab366a66e1b6b3d0b_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/098\/3ad\/060\/9d1516986d77356ab366a66e1b6b3d0b_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/098\/3ad\/060\/9d1516986d77356ab366a66e1b6b3d0b_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/098\/3ad\/060\/xbig_lq\/2d5a31.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/098\/3ad\/060\/xbig_lq\/2d5a31.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/098\/3ad\/060\/xbig\/2d5a31.jpg"},"chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/BellaRossi","random_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/BellaRossi","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/BellaRossi","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/BellaRossi?https://bongacams.com/track?c=800544&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/BellaRossi","stream_feed_url":"https:\/\/ded4160-edge-us4.bcvcdn.com\/hls\/stream_BellaRossi\/playlist.m3u8","chat_topic":"\u2665 I invite you to misbehave \u2665Goal: FUCK ME\u2665 IG: @bella_rossix\u2665 @remain Tkns ","chat_topic_ru":"\u2665 I invite you to misbehave \u2665Goal: FUCK ME\u2665 IG: @bella_rossix\u2665 @remain Tkns ","flags":["english","spanish"],"online_time":16697,"vs_url_root":"https:\/\/db.bngpt.com\/stream_BellaRossi","chat_status":"public","marker":"above_average","gender":"female","members_count":107,"vibratoy":true,"hd_cam":false,"social_networks":["instagram"],"is_new":0},{"username":"liya-len","profile_page_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/liya-len","display_name":"liya-len","display_age":"18","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0b6\/18c\/3af\/2c4dbde9dfab227162de42197c96000f_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0b6\/18c\/3af\/2c4dbde9dfab227162de42197c96000f_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0b6\/18c\/3af\/2c4dbde9dfab227162de42197c96000f_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0b6\/18c\/3af\/2c4dbde9dfab227162de42197c96000f_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0b6\/18c\/3af\/xbig_lq\/5d0a93.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0b6\/18c\/3af\/xbig_lq\/5d0a93.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0b6\/18c\/3af\/xbig\/5d0a93.jpg"},"chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/liya-len","random_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/liya-len","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/liya-len","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/liya-len?https://bongacams.com/track?c=800544&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/liya-len","stream_feed_url":"https:\/\/ded6685-edge34.bcvcdn.com\/hls\/stream_liya-len\/playlist.m3u8","chat_topic":"Just want to have some fun today ","chat_topic_ru":"\u0422\u044b \u0445\u043e\u0447\u0435\u0448\u044c \u043f\u043e\u0438\u0433\u0440\u0430\u0442\u044c \u0441 \u043a\u0438\u0441\u043a\u043e\u0439?)","flags":["russian","english"],"online_time":985,"vs_url_root":"https:\/\/db.bngpt.com\/stream_liya-len","chat_status":"public","marker":"average","gender":"female","members_count":20,"vibratoy":false,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"SamanthaKlein","profile_page_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/SamanthaKlein","display_name":"SamanthaKlein","display_age":"20","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0b9\/0f6\/391\/210d5c0abb0e0ca22be0a9a21bd6859e_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0b9\/0f6\/391\/210d5c0abb0e0ca22be0a9a21bd6859e_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0b9\/0f6\/391\/210d5c0abb0e0ca22be0a9a21bd6859e_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0b9\/0f6\/391\/210d5c0abb0e0ca22be0a9a21bd6859e_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0b9\/0f6\/391\/xbig_lq\/060753.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0b9\/0f6\/391\/xbig_lq\/060753.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0b9\/0f6\/391\/xbig\/060753.jpg"},"chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/SamanthaKlein","random_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/SamanthaKlein","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/SamanthaKlein","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/SamanthaKlein?https://bongacams.com/track?c=800544&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/SamanthaKlein","stream_feed_url":"https:\/\/ded4362-edge-us18.bcvcdn.com\/hls\/stream_SamanthaKlein\/playlist.m3u8","chat_topic":"How about if you undress me, I could cum on top of you\u2665 IG:@samanthakleincm\u2665 Fuck Pussy + Blowjob tk @remain ","chat_topic_ru":"My body is waiting for you... Do you want to take it?\u2665 IG:@samanthakleincm\u2665 Fuck Pussy + Blowjob tk @remain ","flags":["english","spanish"],"online_time":12134,"vs_url_root":"https:\/\/db.bngpt.com\/stream_SamanthaKlein","chat_status":"public","marker":"average","gender":"female","members_count":13,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"Hilary-Martiin","profile_page_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/Hilary-Martiin","display_name":"Hilary-Martiin","display_age":"23","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0bb\/231\/03b\/80328aaf09630d04c255ecd2b81295a4_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0bb\/231\/03b\/80328aaf09630d04c255ecd2b81295a4_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0bb\/231\/03b\/80328aaf09630d04c255ecd2b81295a4_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0bb\/231\/03b\/80328aaf09630d04c255ecd2b81295a4_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0bb\/231\/03b\/xbig_lq\/0cc4bf.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0bb\/231\/03b\/xbig_lq\/0cc4bf.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0bb\/231\/03b\/xbig\/0cc4bf.jpg"},"chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/Hilary-Martiin","random_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/Hilary-Martiin","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/Hilary-Martiin","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/Hilary-Martiin?https://bongacams.com/track?c=800544&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/Hilary-Martiin","stream_feed_url":"https:\/\/ded5991-edge-us23.bcvcdn.com\/hls\/stream_Hilary-Martiin\/playlist.m3u8","chat_topic":"","chat_topic_ru":"","flags":["spanish","english"],"online_time":9448,"vs_url_root":"https:\/\/db.bngpt.com\/stream_Hilary-Martiin","chat_status":"public","marker":"average","gender":"female","members_count":34,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"Tofij-Soffiej","profile_page_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/Tofij-Soffiej","display_name":"Tofij-Soffiej","display_age":"20","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0bb\/11d\/17d\/8c829a6ea6942934aada925c2b836310_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0bb\/11d\/17d\/8c829a6ea6942934aada925c2b836310_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0bb\/11d\/17d\/8c829a6ea6942934aada925c2b836310_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0bb\/11d\/17d\/8c829a6ea6942934aada925c2b836310_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0bb\/11d\/17d\/xbig_lq\/a6b1eb.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0bb\/11d\/17d\/xbig_lq\/a6b1eb.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0bb\/11d\/17d\/xbig\/a6b1eb.jpg"},"chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/Tofij-Soffiej","random_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/Tofij-Soffiej","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/Tofij-Soffiej","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/Tofij-Soffiej?https://bongacams.com/track?c=800544&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/Tofij-Soffiej","stream_feed_url":"https:\/\/ded5281-edge-us50.bcvcdn.com\/hls\/stream_Tofij-Soffiej\/playlist.m3u8","chat_topic":"My sexy slave wants punishment today, help me punish her ","chat_topic_ru":"My sexy slave wants punishment today, help me punish her ","flags":["spanish","english"],"online_time":1793,"vs_url_root":"https:\/\/db.bngpt.com\/stream_Tofij-Soffiej","chat_status":"public","marker":"average","gender":"couple_f_m","members_count":247,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"asian-moon","profile_page_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/asian-moon","display_name":"asian-moon","display_age":"19","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0bb\/31f\/255\/a02043ed3c253ada1d56f0b272304271_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0bb\/31f\/255\/a02043ed3c253ada1d56f0b272304271_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0bb\/31f\/255\/a02043ed3c253ada1d56f0b272304271_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0bb\/31f\/255\/a02043ed3c253ada1d56f0b272304271_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0bb\/31f\/255\/xbig_lq\/7cd825.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0bb\/31f\/255\/xbig_lq\/7cd825.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0bb\/31f\/255\/xbig\/7cd825.jpg"},"chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/asian-moon","random_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/asian-moon","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/asian-moon","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/asian-moon?https://bongacams.com/track?c=800544&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/asian-moon","stream_feed_url":"https:\/\/ded6812-edge16.bcvcdn.com\/hls\/stream_asian-moon\/playlist.m3u8","chat_topic":"","chat_topic_ru":"","flags":["kazakh","english"],"online_time":20418,"vs_url_root":"https:\/\/db.bngpt.com\/stream_asian-moon","chat_status":"public","marker":"average","gender":"female","members_count":58,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":1}],"initial_models":[{"username":"meow","profile_page_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/meow","display_name":"Lynx","display_age":"24","profile_images":{"profile_image":"\/\/i.wlicdn.com\/042\/23b\/031\/66bae02be01f5db9e151d8eaf2faec77_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/042\/23b\/031\/66bae02be01f5db9e151d8eaf2faec77_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/042\/23b\/031\/66bae02be01f5db9e151d8eaf2faec77_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/042\/23b\/031\/66bae02be01f5db9e151d8eaf2faec77_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/042\/23b\/031\/xbig_lq\/d2b528.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/042\/23b\/031\/xbig_lq\/d2b528.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/042\/23b\/031\/xbig\/d2b528.jpg"},"chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/meow","random_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/meow","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/meow","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/meow?https://bongacams.com/track?c=800544&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/meow","stream_feed_url":"https:\/\/ded1163-edge30.bcvcdn.com\/hls\/stream_meow\/playlist.m3u8","chat_topic":"hi ^-^","chat_topic_ru":"\u043f\u0440\u0438\u0432\u044f\u0443 ^-^","flags":["russian","english"],"online_time":1497,"vs_url_root":"https:\/\/db.bngpt.com\/stream_meow","chat_status":"public","marker":"nice","gender":"female","members_count":510,"vibratoy":true,"hd_cam":true,"social_networks":[""],"is_new":0},{"username":"DiamondJo","profile_page_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/DiamondJo","display_name":"DiamondJo","display_age":"23","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0bb\/2f3\/196\/bd6cf7d71e4163d42237a35224536bf8_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0bb\/2f3\/196\/bd6cf7d71e4163d42237a35224536bf8_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0bb\/2f3\/196\/bd6cf7d71e4163d42237a35224536bf8_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0bb\/2f3\/196\/bd6cf7d71e4163d42237a35224536bf8_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0bb\/2f3\/196\/xbig_lq\/a02d54.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0bb\/2f3\/196\/xbig_lq\/a02d54.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0bb\/2f3\/196\/xbig\/a02d54.jpg"},"chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/DiamondJo","random_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/DiamondJo","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/DiamondJo","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/DiamondJo?https://bongacams.com/track?c=800544&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/DiamondJo","stream_feed_url":"https:\/\/ded6479-edge64.bcvcdn.com\/hls\/stream_DiamondJo\/playlist.m3u8","chat_topic":"","chat_topic_ru":"","flags":["english"],"online_time":3499,"vs_url_root":"https:\/\/db.bngpt.com\/stream_DiamondJo","chat_status":"public","marker":"nice","gender":"female","members_count":4931,"vibratoy":false,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"jennifer-annistom","profile_page_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/jennifer-annistom","display_name":"jennifer-annistom","display_age":"35","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0b8\/3c8\/2cb\/e8233a4f4d572fac6449f65155843d25_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0b8\/3c8\/2cb\/e8233a4f4d572fac6449f65155843d25_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0b8\/3c8\/2cb\/e8233a4f4d572fac6449f65155843d25_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0b8\/3c8\/2cb\/e8233a4f4d572fac6449f65155843d25_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0b8\/3c8\/2cb\/xbig_lq\/eadbed.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0b8\/3c8\/2cb\/xbig_lq\/eadbed.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0b8\/3c8\/2cb\/xbig\/eadbed.jpg"},"chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/jennifer-annistom","random_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/jennifer-annistom","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/jennifer-annistom","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/jennifer-annistom?https://bongacams.com/track?c=800544&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/jennifer-annistom","stream_feed_url":"https:\/\/ded7120-edge60.bcvcdn.com\/hls\/stream_jennifer-annistom\/playlist.m3u8","chat_topic":"Come closer and touch my feet , my pantyhose and my high heels, if you can :P","chat_topic_ru":"Come closer and touch my feet , my pantyhose and my high heels, if you can :P","flags":["english"],"online_time":1514,"vs_url_root":"https:\/\/db.bngpt.com\/stream_jennifer-annistom","chat_status":"public","marker":"nice","gender":"female","members_count":25,"vibratoy":false,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"shadiaorozco","profile_page_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/shadiaorozco","display_name":"shadia_orozco","display_age":"23","profile_images":{"profile_image":"\/\/i.wlicdn.com\/041\/094\/34a\/eb69a8673a17df2a4cd87c9bd4e91748_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/041\/094\/34a\/eb69a8673a17df2a4cd87c9bd4e91748_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/041\/094\/34a\/eb69a8673a17df2a4cd87c9bd4e91748_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/041\/094\/34a\/eb69a8673a17df2a4cd87c9bd4e91748_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/041\/094\/34a\/xbig_lq\/24750a.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/041\/094\/34a\/xbig_lq\/24750a.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/041\/094\/34a\/xbig\/24750a.jpg"},"chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/shadiaorozco","random_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/shadiaorozco","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/shadiaorozco","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/shadiaorozco?https://bongacams.com/track?c=800544&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/shadiaorozco","stream_feed_url":"https:\/\/ded5487-edge-us13.bcvcdn.com\/hls\/stream_shadiaorozco\/playlist.m3u8","chat_topic":" Hello guys welcome to my room l am new girl latin colombian here l have big orgasm in pvt promise l have lovense in my pussy my now torture big squirts in full private show promise make me horny please thanks love ","chat_topic_ru":" Hello guys welcome to my room l am new girl latin colombian here l have big orgasm in pvt promise l have lovense in my pussy my now torture big squirts in full private show promise make me horny please thanks love ","flags":["spanish","english"],"online_time":6266,"vs_url_root":"https:\/\/db.bngpt.com\/stream_shadiaorozco","chat_status":"public","marker":"nice","gender":"female","members_count":430,"vibratoy":true,"hd_cam":true,"social_networks":["instagram","twitter","snapchat"],"is_new":0},{"username":"LavernaBlack","profile_page_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/LavernaBlack","display_name":"Krasotylka","display_age":"33","profile_images":{"profile_image":"\/\/i.wlicdn.com\/047\/02f\/200\/ed6414120c85b420de9a0ff0d02e623e_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/047\/02f\/200\/ed6414120c85b420de9a0ff0d02e623e_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/047\/02f\/200\/ed6414120c85b420de9a0ff0d02e623e_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/047\/02f\/200\/ed6414120c85b420de9a0ff0d02e623e_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/047\/02f\/200\/xbig_lq\/1ceb31.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/047\/02f\/200\/xbig_lq\/1ceb31.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/047\/02f\/200\/xbig\/1ceb31.jpg"},"chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/LavernaBlack","random_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/LavernaBlack","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/LavernaBlack","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/LavernaBlack?https://bongacams.com/track?c=800544&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/LavernaBlack","stream_feed_url":"https:\/\/ded6812-edge16.bcvcdn.com\/hls\/stream_LavernaBlack\/playlist.m3u8","chat_topic":"Hello! ANALA current in Privat is not !! ","chat_topic_ru":"\u041f\u0440\u0438\u0432\u0435\u0442. \u041b\u044e\u0431\u0438\u043c\u0430\u044f \u0432\u0438\u0431\u0440\u0430\u0446\u0438\u044f 22,50,100 \u0413\u0440\u0443\u0434\u0438 155 \u041a\u0438\u0441\u043a\u0430 200 ","flags":["russian","english"],"online_time":472,"vs_url_root":"https:\/\/db.bngpt.com\/stream_LavernaBlack","chat_status":"public","marker":"nice","gender":"female","members_count":440,"vibratoy":true,"hd_cam":true,"social_networks":[""],"is_new":0},{"username":"AnnaDaisy1","profile_page_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/AnnaDaisy1","display_name":"AnnaPopy","display_age":"24","profile_images":{"profile_image":"\/\/i.wlicdn.com\/054\/3d9\/28a\/be6c127beb6e1bfbab9e64cbb88968f2_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/054\/3d9\/28a\/be6c127beb6e1bfbab9e64cbb88968f2_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/054\/3d9\/28a\/be6c127beb6e1bfbab9e64cbb88968f2_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/054\/3d9\/28a\/be6c127beb6e1bfbab9e64cbb88968f2_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/054\/3d9\/28a\/xbig_lq\/fe9e77.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/054\/3d9\/28a\/xbig_lq\/fe9e77.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/054\/3d9\/28a\/xbig\/fe9e77.jpg"},"chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/AnnaDaisy1","random_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/AnnaDaisy1","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/AnnaDaisy1","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/AnnaDaisy1?https://bongacams.com/track?c=800544&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/AnnaDaisy1","stream_feed_url":"https:\/\/ded6812-edge16.bcvcdn.com\/hls\/stream_AnnaDaisy1\/playlist.m3u8","chat_topic":"Show in privates \u2665 Tokens only in free chat NOT PM!!!\u2665 ","chat_topic_ru":"\u0428\u043e\u0443 \u0432 \u043f\u0440\u0438\u0432\u0430\u0442\u0430\u0445 \u2665 \u0422\u043e\u043a\u0435\u043d\u044b \u0442\u043e\u043b\u044c\u043a\u043e \u0432 \u041e\u0411\u0429\u0418\u0419 \u0447\u0430\u0442 !!! \u2665","flags":["russian","english"],"online_time":21197,"vs_url_root":"https:\/\/db.bngpt.com\/stream_AnnaDaisy1","chat_status":"public","marker":"nice","gender":"female","members_count":808,"vibratoy":false,"hd_cam":true,"social_networks":[""],"is_new":0},{"username":"Tofij-Soffiej","profile_page_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/Tofij-Soffiej","display_name":"Tofij-Soffiej","display_age":"20","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0bb\/11d\/17d\/8c829a6ea6942934aada925c2b836310_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0bb\/11d\/17d\/8c829a6ea6942934aada925c2b836310_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0bb\/11d\/17d\/8c829a6ea6942934aada925c2b836310_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0bb\/11d\/17d\/8c829a6ea6942934aada925c2b836310_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0bb\/11d\/17d\/xbig_lq\/a6b1eb.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0bb\/11d\/17d\/xbig_lq\/a6b1eb.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0bb\/11d\/17d\/xbig\/a6b1eb.jpg"},"chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/Tofij-Soffiej","random_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/Tofij-Soffiej","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/Tofij-Soffiej","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/Tofij-Soffiej?https://bongacams.com/track?c=800544&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/Tofij-Soffiej","stream_feed_url":"https:\/\/ded5281-edge-us50.bcvcdn.com\/hls\/stream_Tofij-Soffiej\/playlist.m3u8","chat_topic":"My sexy slave wants punishment today, help me punish her ","chat_topic_ru":"My sexy slave wants punishment today, help me punish her ","flags":["spanish","english"],"online_time":1793,"vs_url_root":"https:\/\/db.bngpt.com\/stream_Tofij-Soffiej","chat_status":"public","marker":"average","gender":"couple_f_m","members_count":247,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"TammyWells","profile_page_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/TammyWells","display_name":"TammyWells","display_age":"23","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0bb\/19a\/0fe\/88bdd332678e32b2488fd9ca500b43c8_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0bb\/19a\/0fe\/88bdd332678e32b2488fd9ca500b43c8_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0bb\/19a\/0fe\/88bdd332678e32b2488fd9ca500b43c8_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0bb\/19a\/0fe\/88bdd332678e32b2488fd9ca500b43c8_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0bb\/19a\/0fe\/xbig_lq\/961207.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0bb\/19a\/0fe\/xbig_lq\/961207.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0bb\/19a\/0fe\/xbig\/961207.jpg"},"chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/TammyWells","random_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/TammyWells","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/TammyWells","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/TammyWells?https://bongacams.com/track?c=800544&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/TammyWells","stream_feed_url":"https:\/\/ded4038-edge-us65.bcvcdn.com\/hls\/stream_TammyWells\/playlist.m3u8","chat_topic":"","chat_topic_ru":"","flags":["spanish","english"],"online_time":12089,"vs_url_root":"https:\/\/db.bngpt.com\/stream_TammyWells","chat_status":"public","marker":"average","gender":"female","members_count":18,"vibratoy":false,"hd_cam":false,"social_networks":[""],"is_new":1},{"username":"MalayaGray","profile_page_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/MalayaGray","display_name":"MalayaGray","display_age":"23","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0ba\/15f\/27d\/507d7f25e55d78b4a138de037dfd53b3_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0ba\/15f\/27d\/507d7f25e55d78b4a138de037dfd53b3_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0ba\/15f\/27d\/507d7f25e55d78b4a138de037dfd53b3_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0ba\/15f\/27d\/507d7f25e55d78b4a138de037dfd53b3_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0ba\/15f\/27d\/xbig_lq\/a874c1.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0ba\/15f\/27d\/xbig_lq\/a874c1.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0ba\/15f\/27d\/xbig\/a874c1.jpg"},"chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/MalayaGray","random_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/MalayaGray","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/MalayaGray","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/MalayaGray?https://bongacams.com/track?c=800544&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/MalayaGray","stream_feed_url":"https:\/\/ded5648-edge-us9.bcvcdn.com\/hls\/stream_MalayaGray\/playlist.m3u8","chat_topic":"","chat_topic_ru":"","flags":["spanish","english"],"online_time":4312,"vs_url_root":"https:\/\/db.bngpt.com\/stream_MalayaGray","chat_status":"public","marker":"average","gender":"female","members_count":21,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"neereaa","profile_page_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/neereaa","display_name":"neereaa","display_age":"25","profile_images":{"profile_image":"\/\/i.wlicdn.com\/097\/1b5\/192\/7c83fed2fc42b1a52769e6dd42c6c5a0_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/097\/1b5\/192\/7c83fed2fc42b1a52769e6dd42c6c5a0_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/097\/1b5\/192\/7c83fed2fc42b1a52769e6dd42c6c5a0_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/097\/1b5\/192\/7c83fed2fc42b1a52769e6dd42c6c5a0_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/097\/1b5\/192\/xbig_lq\/e65054.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/097\/1b5\/192\/xbig_lq\/e65054.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/097\/1b5\/192\/xbig\/e65054.jpg"},"chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/neereaa","random_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=800544&ps=sticky_banner&csurl=http:\/\/bongacams.com\/neereaa","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/neereaa","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/neereaa?https://bongacams.com/track?c=800544&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/neereaa","stream_feed_url":"https:\/\/ded4189-edge-us5.bcvcdn.com\/hls\/stream_neereaa\/playlist.m3u8","chat_topic":"squirt ,ass ,lick feet,fuck dildo","chat_topic_ru":"squirt ,ass ,lick feet,fuck dildo","flags":["spanish","english"],"online_time":5714,"vs_url_root":"https:\/\/db.bngpt.com\/stream_neereaa","chat_status":"public","marker":"average","gender":"female","members_count":11,"vibratoy":true,"hd_cam":false,"social_networks":["instagram"],"is_new":0}]}'); var geoEnabled = '0'; var autoUpdate = '1'; var videoPlayed, banner, boundary, avatar, status, logo, autoupdateTimer, fallbackPlayer, isBannerOpened, imagePlayer; var lockCookieName = 'bcsbtool'; var isUCBrowser = navigator.userAgent.indexOf('UCBrowser/') > -1; var isRandomChat = contentType === ContentTypeEnum.RANDOM_CHAT; var frequency = '3600000'; var modelData = { avatarUrl: '//i.wlicdn.com/042/23b/031/66bae02be01f5db9e151d8eaf2faec77_thumb_medium.jpg', snapshotUrl: '//i.wlicdn.com/live/042/23b/031/xbig/d2b528.jpg', username: 'meow', displayname: 'Lynx', vsUrlRoot: 'https://db.bngpt.com/stream_meow', trackingUrl: trackingUrl, iframeSrc: '' }; function open() { if (!isBannerOpened) { setSize(); boundary.classList.add('__bcsb_open'); isBannerOpened = true; if (isRandomChat) { videoEmbed(); } if (autoUpdate === '1') { startTimer(); } } } function close() { isBannerOpened = false; boundary.remove(); var isPreviewPage = document.referrer.indexOf('promo/sticky-banner') > -1; var lockTime = isPreviewPage ? 1000 : Number(frequency); var closeVideo = document.querySelector('#bcsb_tool .video_played'); (0, cookieUtils_1.setLockCookie)(lockCookieName, 1, lockTime); closeVideo && closeVideo.pause(); } function attachHandlers() { document.querySelector('#bcsb_tool .bcsb_btn_close').addEventListener('click', handleClickClose); banner.addEventListener('click', openPromoUrl); attachVideoHandler(true); } function attachVideoHandler(firstLoad) { if (firstLoad === void 0) { firstLoad = false; } var sources = document.getElementsByTagName('source'); var videoLoaded = document.querySelector('#bcsb_tool .video.__loaded'); if (sources) { var firstSource_1 = sources[0]; if (!firstLoad && firstSource_1) { firstSource_1.removeEventListener('error', handleImagePlayer); } setTimeout(function () { if (firstSource_1 && !(0, deviceDetect_1.iOS)()) { firstSource_1.addEventListener('error', handleImagePlayer); if (videoLoaded) { videoLoaded.addEventListener('play', handleStopRequests); } } }, 1); } } function initVideoSrc(video, firstLoad) { if (firstLoad === void 0) { firstLoad = false; } updateSources(video.getElementsByTagName('source')); var videoLoaded = document.querySelector('#bcsb_tool .video.__loaded'); if (firstLoad) { updateSources(videoLoaded.getElementsByTagName('source')); } if (isUCBrowser) { handleImagePlayer(); } else { video.load(); } } function updateSources(sources) { if (sources) { sources[0].src = "".concat(modelData.vsUrlRoot, ".webm"); sources[1].src = "".concat(modelData.vsUrlRoot, ".mp4"); } } function videoEmbed() { if (isUCBrowser) { handleImagePlayer(); } else if (videoPlayed) { initVideoSrc(videoPlayed, true); } } function onLoad() { var lockCookie = (0, cookieUtils_1.getCookie)(lockCookieName); if (lockCookie) { return; } boundary = document.querySelector('#bcsb_tool'); banner = document.querySelector('#bcsb_tool .bcsb_wrapper'); avatar = document.querySelector('#bcsb_tool .bcsb_avatar'); status = document.querySelector('#bcsb_tool .bcsb_status'); logo = document.querySelector('#bcsb_tool .bcsb_logo'); videoPlayed = document.querySelector('#bcsb_tool .video.__played'); fallbackPlayer = document.querySelector('.js-stream_fallback'); var left = originalPosition.left, top = originalPosition.top; banner.style.left = left; banner.style.top = top; banner.style.transform = "translate(-".concat(left, ", -").concat(top, ")"); if (showLogo === '0') { logo.style.display = 'none'; } if (showStatus === '0') { status.style.display = 'none'; } onModelDataChange(modelData, true); attachHandlers(); open(); } function handleClickClose(e) { e.stopPropagation(); close(); } function openPromoUrl() { close(); window.open(modelData.trackingUrl, '_blank'); } function onModelDataChange(data, firstLoad) { if (firstLoad === void 0) { firstLoad = false; } modelData.username = data.username; modelData.snapshotUrl = data.snapshotUrl; modelData.avatarUrl = data.avatarUrl; modelData.vsUrlRoot = data.vsUrlRoot; modelData.trackingUrl = trackingUrl.replace('%model_username%', modelData.username); updateTemplate(firstLoad); } function updateTemplate(firstLoad) { if (firstLoad === void 0) { firstLoad = false; } var video = document.querySelector('#bcsb_tool .video.__played'); var videoUpdated = document.querySelector('#bcsb_tool .video.__loaded'); if (isRandomChat) { if (!firstLoad && videoUpdated) { initVideoSrc(videoUpdated); setTimeout(function () { videoUpdated.classList.add('__played'); videoUpdated.classList.remove('__loaded'); setTimeout(function () { if (video) { video.classList.remove('__played'); video.classList.add('__loaded'); initVideoSrc(video); attachVideoHandler(); } }, 1000); }, (0, deviceDetect_1.iOS)() ? 2000 : 1000); } } else { avatar.style.backgroundImage = contentType === ContentTypeEnum.PHOTO ? "url(\"".concat(modelData.avatarUrl, "\")") : "url(\"".concat(modelData.snapshotUrl, "\")"); } } function handleImagePlayer() { if (imagePlayer) { imagePlayer.updatePath(modelData.vsUrlRoot); } else { imagePlayer = new ImagePlayer_1.ImagePlayer(fallbackPlayer, modelData.vsUrlRoot, { frameRatio: 270 / 480 }); } } function handleStopRequests() { if (imagePlayer) { imagePlayer.stopRequests(); imagePlayer = null; } } function setSize() { var _a = sizes[size], width = _a.width, height = _a.height; banner.style.width = width; banner.style.height = height; } function startTimer() { if (modelsData) { var initialModels_1 = modelsData['initial_models'] || []; var geoModels_1 = modelsData['geo_models'] || []; var topModels_1 = modelsData['top_models'] || []; autoupdateTimer = setTimeout(function () { (0, helpers_1.shuffle)(initialModels_1); (0, helpers_1.shuffle)(geoModels_1); (0, helpers_1.shuffle)(topModels_1); geoModels_1 = (0, helpers_1.topmodels)(geoModels_1); topModels_1 = (0, helpers_1.topmodels)(topModels_1); var models = geoEnabled ? (0, helpers_1.arrayUnique)(geoModels_1.concat(topModels_1).concat(initialModels_1)) : (0, helpers_1.arrayUnique)(topModels_1.concat(geoModels_1).concat(initialModels_1)); updateProcess(models); startTimer(); }, 9000); } } function updateProcess(models) { var randomIndex = (0, helpers_1.randomInteger)(0, models.length - 1); var model = models[randomIndex]; if (model) { if (modelData.username === model.username) { model = models[randomIndex === 0 ? 1 : randomIndex - 1]; } var data = { avatarUrl: model.profile_images['profile_image'], snapshotUrl: model.profile_images['thumbnail_image_big_live'], username: model.username, vsUrlRoot: model.vs_url_root, }; onModelDataChange(data, false); } } var style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = '#bcsb_tool { display: none}#bcsb_tool.__bcsb_open { display: block;}#bcsb_tool .bcsb_wrapper { position: fixed; z-index: 100}#bcsb_tool .bcsb_wrapper.bcsb_wl .bcsb_logo img { display: block;}#bcsb_tool .bcsb_wrapper.bcsb_wl .bcsb_logo_icon { display: none;}#bcsb_tool .bcsb_wrapper.bcsb_s90x90 .bcsb_logo { width: 70px; height: 21px;}#bcsb_tool .bcsb_wrapper.bcsb_s90x90 .bcsb_status { width: 26px; height: 14px;}#bcsb_tool .bcsb_wrapper.bcsb_s90x90 .bcsb_status_text { width: 16px; height: 6px;}#bcsb_tool .bcsb_wrapper.bcsb_s90x90 .bcsb_btn_close { width: 7%; height: 7%; min-width: 14px; min-height: 14px}#bcsb_tool .bcsb_wrapper.bcsb_s90x90 .bcsb_btn_close:before { left: -1px; top: -1px; right: 0; bottom: -1px;}#bcsb_tool .bcsb_wrapper.bcsb_s160x160 .bcsb_logo { width: 103px; height: 31px;}#bcsb_tool .bcsb_wrapper.bcsb_s160x160 .bcsb_status { top: 29px; left: 6px; width: 30px; height: 17px;}#bcsb_tool .bcsb_wrapper.bcsb_s160x160 .bcsb_status_text { width: 21px; height: 9px;}#bcsb_tool .bcsb_wrapper.bcsb_s160x160 .bcsb_btn_close { width: 7%; height: 7%;}#bcsb_tool .bcsb_wrapper.bcsb_s160x160 .bcsb_avatar { width: 140px; height: 140px;}#bcsb_tool .bcsb_wrapper.bcsb_s200x200 .bcsb_logo { width: 128px; height: 39px;}#bcsb_tool .bcsb_wrapper.bcsb_s200x200 .bcsb_status { top: 29px; left: 6px; width: 38px; height: 21px;}#bcsb_tool .bcsb_wrapper.bcsb_s200x200 .bcsb_status_text { width: 26px; height: 11px;}#bcsb_tool .bcsb_wrapper.bcsb_s240x240 .bcsb_logo { width: 154px; height: 46px;}#bcsb_tool .bcsb_wrapper.bcsb_s240x240 .bcsb_status { top: 35px; left: 7px; width: 45px; height: 25px;}#bcsb_tool .bcsb_wrapper.bcsb_s240x240 .bcsb_status_text { width: 31px; height: 13px;}#bcsb_tool .bcsb_wrapper.bcsb_s240x240 .bcsb_btn_close { width: 18px; height: 18px;}#bcsb_tool .bcsb_wrapper.bcsb_s250x250 .bcsb_logo { width: 160px; height: 48px;}#bcsb_tool .bcsb_wrapper.bcsb_s250x250 .bcsb_status { top: 35px; left: 7px; width: 47px; height: 26px;}#bcsb_tool .bcsb_wrapper.bcsb_s250x250 .bcsb_status_text { width: 32px; height: 14px;}#bcsb_tool .bcsb_wrapper.bcsb_s280x280 .bcsb_logo { width: 180px; height: 54px;}#bcsb_tool .bcsb_wrapper.bcsb_s280x280 .bcsb_status { top: 40px; left: 8px; width: 53px; height: 30px;}#bcsb_tool .bcsb_wrapper.bcsb_s280x280 .bcsb_status_text { width: 33px; height: 14px;}#bcsb_tool .bcsb_wrapper.bcsb_s300x300 .bcsb_logo { width: 192px; height: 58px;}#bcsb_tool .bcsb_wrapper.bcsb_s300x300 .bcsb_status { top: 43px; left: 9px; width: 57px; height: 32px;}#bcsb_tool .bcsb_wrapper.bcsb_s300x300 .bcsb_status_text { width: 35px; height: 14px;}#bcsb_tool .bcsb_content { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; height: 100%; -webkit-border-radius: 50%; border-radius: 50%; background: -webkit-gradient(linear, left top, left bottom, from(#9948ff), color-stop(44.79%, #ff1c74), to(#ff891c)); background: -webkit-linear-gradient(top, #9948ff 0%, #ff1c74 44.79%, #ff891c 100%); background: linear-gradient(180deg, #9948ff 0%, #ff1c74 44.79%, #ff891c 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'#ff9948ff\', endColorstr=\'#ffff891c\', GradientType=0); cursor: pointer;}#bcsb_tool .bcsb_close_icon { position: absolute; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); width: 50%; height: 50%; fill: #fff;}#bcsb_tool .bcsb_btn_close { position: absolute; right: 0; top: 0; width: 8%; height: 8%; min-width: 18px; min-height: 18px; max-width: 20px; max-height: 20px; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-border-radius: 50%; border-radius: 50%; background-color: rgba(0, 0, 0, .7); z-index: 4; cursor: pointer}#bcsb_tool .bcsb_btn_close:before { content: ""; -webkit-border-radius: 50%; border-radius: 50%; display: block; position: absolute; left: -3px; top: -3px; right: -3px; bottom: -3px;}#bcsb_tool .bcsb_logo { position: absolute; bottom: -1px; width: -webkit-calc(100% - 10px); width: calc(100% - 10px); max-width: 192px; left: 50%; -webkit-transform: translate(-50%); -ms-transform: translate(-50%); transform: translate(-50%); z-index: 3}#bcsb_tool .bcsb_logo img { position: absolute; width: auto; max-width: 76%; max-height: 100%; display: none; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%);}#bcsb_tool .bcsb_logo .bcsb_logo_icon { position: absolute; width: 88%; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%);}#bcsb_tool .bcsb_logo .bcsb_logo_bg { width: 100%; height: auto;}#bcsb_tool .bcsb_border { position: absolute; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); width: 95%; height: 95%; -webkit-border-radius: 50%; border-radius: 50%; background-color: #fff;}#bcsb_tool .bcsb_avatar { position: relative; z-index: 2; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-flex-shrink: 0; -ms-flex-negative: 0; flex-shrink: 0; width: 88%; height: 88%; -webkit-border-radius: 50%; border-radius: 50%; background-color: darkgrey; background-size: cover; background-position: center; overflow: hidden}#bcsb_tool .bcsb_avatar .video { position: absolute; min-width: 100%; height: 100%; width: 100%; min-height: 100%; -o-object-fit: cover; object-fit: cover}#bcsb_tool .bcsb_avatar .video.__played { display: block;}#bcsb_tool .bcsb_avatar .video.__loaded { display: none;}#bcsb_tool .bcsb_canvas_wrapper { position: absolute; left: 0; top: 0; width: 100%; height: 100%; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-border-radius: 50%; border-radius: 50%; overflow: hidden}#bcsb_tool .bcsb_canvas_wrapper canvas { height: 100%;}#bcsb_tool .bcsb_status { position: absolute; left: 0; top: 15%; width: 13%; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; z-index: 3; background-color: #00e693; color: #fff; -webkit-box-shadow: 0 0 8px rgba(0, 255, 163, 0.6); box-shadow: 0 0 8px rgba(0, 255, 163, 0.6); -webkit-border-radius: 50px; border-radius: 50px;}'; document.head.appendChild(style); var template = document.createElement('div'); template.id = 'bcsb_tool'; template.innerHTML = '
'; document.body.appendChild(template); onLoad(); } /***/ }), /***/ 45: /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.randomInteger = exports.topmodels = exports.shuffle = exports.arrayUnique = void 0; function arrayUnique(array) { var usernames = []; var result = []; for (var i = 0; i < array.length; i++) { if (!(usernames.indexOf(array[i].username) + 1)) { usernames.push(array[i].username); result.push(array[i]); } } usernames = null; return result; } exports.arrayUnique = arrayUnique; function shuffle(arr) { for (var j = void 0, x = void 0, i = arr.length; i; j = parseInt(Math.random() * i), x = arr[--i], arr[i] = arr[j], arr[j] = x) ; return arr; } exports.shuffle = shuffle; function topmodels(models) { var levels = { amazing: 5, nice: 4, average: 3, bad: 2, ugly: 1 }; var getLevel = function (performer) { return performer.marker && levels.hasOwnProperty(performer.marker) ? levels[performer.marker] : 0; }; models.sort(function (a, b) { var levelA = getLevel(a); var levelB = getLevel(b); if (levelA > levelB) { return -1; } else if (levelB > levelA) { return 1; } return 0; }); return models; } exports.topmodels = topmodels; function randomInteger(min, max) { var rand = min - 0.5 + Math.random() * (max - min + 1); return Math.abs(Math.round(rand)); } exports.randomInteger = randomInteger; /***/ }), /***/ 46: /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.iOS = exports.deviceDetect = void 0; function deviceDetect() { return /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent); } exports.deviceDetect = deviceDetect; function iOS() { return [ 'iPad Simulator', 'iPhone Simulator', 'iPod Simulator', 'iPad', 'iPhone', 'iPod' ].indexOf(navigator.platform) > -1 || navigator.userAgent.indexOf('Mac') > -1; } exports.iOS = iOS; /***/ }), /***/ 5: /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ImagePlayer = void 0; var ImagePlayer = (function () { function ImagePlayer(el, path, options) { this.frameCount = 1; this.loadTimeout = 400; this.el = el; this.el.innerHTML = ''; this.canvasEl = document.createElement('canvas'); this.el.appendChild(this.canvasEl); this.pathToFrames = path; this.imgType = options && options.imgType || 'jpg'; this.frameRatio = options && options.frameRatio || 3 / 4; if (this.pathToFrames) { this.loadFrame(); } } ImagePlayer.prototype.stopRequests = function () { clearTimeout(this.loadTimer); this.pathToFrames = null; }; ImagePlayer.prototype.updatePath = function (path) { clearTimeout(this.loadTimer); this.frameCount = 1; this.pathToFrames = path; if (this.pathToFrames) { this.loadFrame(); } }; ImagePlayer.prototype.loadFrame = function () { var _this = this; var img = new Image(); var stamp = Date.now(); img.onload = function () { _this.drawFrame(img); _this.waitLoadTimeout(Date.now() - stamp); }; img.onerror = function () { if (_this.frameCount === 1) { _this.frameCount++; } else { _this.frameCount = 1; } _this.waitLoadTimeout(Date.now() - stamp); }; img.src = "".concat(this.pathToFrames, "/").concat(this.frameCount, ".").concat(this.imgType); }; ImagePlayer.prototype.waitLoadTimeout = function (loadTime) { var _this = this; if (this.pathToFrames) { clearTimeout(this.loadTimer); this.loadTimer = window.setTimeout(function () { _this.loadFrame(); }, this.loadTimeout - loadTime); } }; ImagePlayer.prototype.drawFrame = function (image) { var displayContext = this.canvasEl.getContext('2d'); this.el.style.width = ''; this.el.style.height = ''; this.el.style.marginLeft = ''; var elWidth = this.el.offsetWidth; var elHeight = this.el.offsetHeight; var newWidth; var newHeight; if (elWidth < elHeight) { newHeight = elHeight; newWidth = elHeight / this.frameRatio; } else { newWidth = elWidth; newHeight = elWidth * this.frameRatio * 1.1; } this.frameCount++; this.canvasEl.width = newWidth; this.canvasEl.height = newHeight; this.el.style.width = "".concat(newWidth, "px"); this.el.style.height = "".concat(newHeight, "px"); if (newWidth > elWidth) { this.el.style.marginLeft = "-".concat((newWidth - elWidth) / 2, "px"); } if (displayContext != null) { try { displayContext.drawImage(image, 0, 0, image.width, image.height, 0, 0, this.el.offsetWidth, this.el.offsetHeight); } catch (e) { } } }; ; return ImagePlayer; }()); exports.ImagePlayer = ImagePlayer; /***/ }) /******/ });