/******/ (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=802772&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: '94%', top: '95%' }; var modelsData = JSON.parse('{"geo_models":[],"top_models":[{"username":"Jesikalooove","profile_page_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/Jesikalooove","display_name":"Jesikalooove","display_age":"20","profile_images":{"profile_image":"\/\/i.wlicdn.com\/069\/3b8\/070\/845e8241ff950312219beb67b1c45045_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/069\/3b8\/070\/845e8241ff950312219beb67b1c45045_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/069\/3b8\/070\/845e8241ff950312219beb67b1c45045_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/069\/3b8\/070\/845e8241ff950312219beb67b1c45045_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/069\/3b8\/070\/xbig_lq\/3d636d.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/069\/3b8\/070\/xbig_lq\/3d636d.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/069\/3b8\/070\/xbig\/3d636d.jpg"},"chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/Jesikalooove","random_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/Jesikalooove","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/Jesikalooove","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/Jesikalooove?https://bongacams.com/track?c=802772&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/Jesikalooove","stream_feed_url":"https:\/\/ded6479-edge64.bcvcdn.com\/hls\/stream_Jesikalooove\/playlist.m3u8","chat_topic":" @total fuck ass @remain ","chat_topic_ru":" @total \u0442\u0440\u0430\u0445\u0430\u0442\u044c \u043f\u043e\u043f\u043a\u0443","flags":["russian","ukrainian"],"online_time":862,"vs_url_root":"https:\/\/db.bngpt.com\/stream_Jesikalooove","chat_status":"public","marker":"nice","gender":"female","members_count":281,"vibratoy":false,"hd_cam":true,"social_networks":[""],"is_new":0},{"username":"CarmellaAngel","profile_page_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/CarmellaAngel","display_name":"CarmellaAngel","display_age":"27","profile_images":{"profile_image":"\/\/i.wlicdn.com\/019\/11a\/3d5\/49eb162118c78320b7f7d618f8f5ae07_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/019\/11a\/3d5\/49eb162118c78320b7f7d618f8f5ae07_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/019\/11a\/3d5\/49eb162118c78320b7f7d618f8f5ae07_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/019\/11a\/3d5\/49eb162118c78320b7f7d618f8f5ae07_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/019\/11a\/3d5\/xbig_lq\/01092d.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/019\/11a\/3d5\/xbig_lq\/01092d.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/019\/11a\/3d5\/xbig\/01092d.jpg"},"chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/CarmellaAngel","random_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/CarmellaAngel","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/CarmellaAngel","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/CarmellaAngel?https://bongacams.com/track?c=802772&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/CarmellaAngel","stream_feed_url":"https:\/\/ded6810-edge48.bcvcdn.com\/hls\/stream_CarmellaAngel\/playlist.m3u8","chat_topic":"100titts,100pussy,300strip on pole,400oil show,500hottest moans,1000orgasm,5000making my day....dont be shy to make me feel u!lush fun...make me moan ur name again and again!","chat_topic_ru":"100titts,100pussy,300strip on pole,400oil show,500hottest moans,1000orgasm,5000making my day....dont be shy to make me feel u!lush fun...make me moan ur name again and again!","flags":["english","italian"],"online_time":6017,"vs_url_root":"https:\/\/db.bngpt.com\/stream_CarmellaAngel","chat_status":"public","marker":"nice","gender":"female","members_count":133,"vibratoy":true,"hd_cam":true,"social_networks":[""],"is_new":0},{"username":"Girl-Pleasure","profile_page_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/Girl-Pleasure","display_name":"Tasty-me","display_age":"28","profile_images":{"profile_image":"\/\/i.wlicdn.com\/04a\/18d\/1fc\/f9fd7493a4124bc9bce7c6b8c5f983f6_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/04a\/18d\/1fc\/f9fd7493a4124bc9bce7c6b8c5f983f6_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/04a\/18d\/1fc\/f9fd7493a4124bc9bce7c6b8c5f983f6_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/04a\/18d\/1fc\/f9fd7493a4124bc9bce7c6b8c5f983f6_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/04a\/18d\/1fc\/xbig_lq\/3e7948.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/04a\/18d\/1fc\/xbig_lq\/3e7948.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/04a\/18d\/1fc\/xbig\/3e7948.jpg"},"chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/Girl-Pleasure","random_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/Girl-Pleasure","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/Girl-Pleasure","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/Girl-Pleasure?https://bongacams.com/track?c=802772&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/Girl-Pleasure","stream_feed_url":"https:\/\/ded6358-edge24.bcvcdn.com\/hls\/stream_Girl-Pleasure\/playlist.m3u8","chat_topic":"Make my day @remain ","chat_topic_ru":"\u041f\u043e\u0440\u0430\u0434\u0443\u0439 \u043c\u0435\u043d\u044f @remain","flags":["russian","english"],"online_time":4966,"vs_url_root":"https:\/\/db.bngpt.com\/stream_Girl-Pleasure","chat_status":"public","marker":"nice","gender":"female","members_count":664,"vibratoy":true,"hd_cam":true,"social_networks":["snapchat"],"is_new":0},{"username":"crazyanna9","profile_page_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/crazyanna9","display_name":"Happy_Doll","display_age":"25","profile_images":{"profile_image":"\/\/i.wlicdn.com\/034\/270\/1e8\/981ee9b97bc8ed5dc7029e8f73b204e5_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/034\/270\/1e8\/981ee9b97bc8ed5dc7029e8f73b204e5_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/034\/270\/1e8\/981ee9b97bc8ed5dc7029e8f73b204e5_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/034\/270\/1e8\/981ee9b97bc8ed5dc7029e8f73b204e5_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/034\/270\/1e8\/xbig_lq\/56ba0a.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/034\/270\/1e8\/xbig_lq\/56ba0a.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/034\/270\/1e8\/xbig\/56ba0a.jpg"},"chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/crazyanna9","random_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/crazyanna9","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/crazyanna9","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/crazyanna9?https://bongacams.com/track?c=802772&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/crazyanna9","stream_feed_url":"https:\/\/ded6688-edge35.bcvcdn.com\/hls\/stream_crazyanna9\/playlist.m3u8","chat_topic":"Hi guys, I am very glad to see everyone. Let\u2019s have fun after office time Instagram happy_doll_1_ !! So hot stuff on OnlyFans , link in profile 500 naked","chat_topic_ru":"\u0441\u0430\u043b\u044e\u0442, \u0434\u0430\u0432\u0430\u0439\u0442\u0435 \u0440\u0430\u0437\u0432\u043b\u0435\u043a\u0430\u0442\u044c\u0441\u044f \u043f\u043e\u0441\u043b\u0435 \u0440\u0430\u0431\u043e\u0442\u044b) \u0438\u043d\u0441\u0442\u0430 happy_doll_1_ !! \u0412\u0441\u0435 \u0441\u0430\u043c\u043e\u0435 \u0433\u043e\u0440\u044f\u0447\u0438\u0435 \u0441\u043a\u043e\u0440\u043e \u0432 OnlyFans , \u0441\u0441\u044b\u043b\u043a\u0430 \u0432 \u043f\u0440\u043e\u0444\u0438\u043b\u0435 500 \u0433\u043e\u043b\u0430\u044f","flags":["russian","english"],"online_time":625,"vs_url_root":"https:\/\/db.bngpt.com\/stream_crazyanna9","chat_status":"public","marker":"nice","gender":"female","members_count":751,"vibratoy":true,"hd_cam":true,"social_networks":["instagram","snapchat"],"is_new":0},{"username":"-MaybeBaby-","profile_page_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/-MaybeBaby-","display_name":"-MaybeBaby-","display_age":"25","profile_images":{"profile_image":"\/\/i.wlicdn.com\/04a\/319\/267\/e9afbc88225c2cd6e5bafd0aad431a92_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/04a\/319\/267\/e9afbc88225c2cd6e5bafd0aad431a92_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/04a\/319\/267\/e9afbc88225c2cd6e5bafd0aad431a92_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/04a\/319\/267\/e9afbc88225c2cd6e5bafd0aad431a92_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/04a\/319\/267\/xbig_lq\/0c2bd5.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/04a\/319\/267\/xbig_lq\/0c2bd5.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/04a\/319\/267\/xbig\/0c2bd5.jpg"},"chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/-MaybeBaby-","random_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/-MaybeBaby-","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/-MaybeBaby-","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/-MaybeBaby-?https://bongacams.com/track?c=802772&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/-MaybeBaby-","stream_feed_url":"https:\/\/ded7126-edge65.bcvcdn.com\/hls\/stream_-MaybeBaby-\/playlist.m3u8","chat_topic":"Naked @remain Lovense in pussy work from 2 tokens \u2764\ufe0f","chat_topic_ru":"\u0413\u043e\u043b\u0435\u043d\u044c\u043a\u0430\u044f @remain \u041b\u043e\u0432\u0435\u043d\u0441 \u0432 \u043a\u0438\u0441\u043a\u0435 , \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043e\u0442 2\u0445 \u0442\u043e\u043a\u0435\u043d\u043e\u0432 \u2764\ufe0f","flags":["russian","english"],"online_time":8453,"vs_url_root":"https:\/\/db.bngpt.com\/stream_-MaybeBaby-","chat_status":"public","marker":"nice","gender":"female","members_count":1009,"vibratoy":true,"hd_cam":true,"social_networks":["instagram","tiktok"],"is_new":0},{"username":"TheFallingAngel","profile_page_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/TheFallingAngel","display_name":"TheFallingAngel","display_age":"37","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0b5\/1aa\/217\/a53406e0b156308990d97a607e6a1f53_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0b5\/1aa\/217\/a53406e0b156308990d97a607e6a1f53_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0b5\/1aa\/217\/a53406e0b156308990d97a607e6a1f53_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0b5\/1aa\/217\/a53406e0b156308990d97a607e6a1f53_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0b5\/1aa\/217\/xbig_lq\/dfa3a2.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0b5\/1aa\/217\/xbig_lq\/dfa3a2.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0b5\/1aa\/217\/xbig\/dfa3a2.jpg"},"chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/TheFallingAngel","random_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/TheFallingAngel","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/TheFallingAngel","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/TheFallingAngel?https://bongacams.com/track?c=802772&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/TheFallingAngel","stream_feed_url":"https:\/\/ded6358-edge24.bcvcdn.com\/hls\/stream_TheFallingAngel\/playlist.m3u8","chat_topic":" Naughty blonde ready for any fantasy #lovense #blonde #dildo #lush #boobs #milf ","chat_topic_ru":" Naughty blonde ready for any fantasy #lovense #blonde #dildo #lush #boobs #milf ","flags":["romanian"],"online_time":10367,"vs_url_root":"https:\/\/db.bngpt.com\/stream_TheFallingAngel","chat_status":"public","marker":"nice","gender":"female","members_count":208,"vibratoy":false,"hd_cam":false,"social_networks":["instagram"],"is_new":0},{"username":"AshleyVasquez","profile_page_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/AshleyVasquez","display_name":"AshleyVasquez","display_age":"28","profile_images":{"profile_image":"\/\/i.wlicdn.com\/019\/11a\/1b4\/40b9b4f3c73db16dd4f44d74bfe91572_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/019\/11a\/1b4\/40b9b4f3c73db16dd4f44d74bfe91572_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/019\/11a\/1b4\/40b9b4f3c73db16dd4f44d74bfe91572_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/019\/11a\/1b4\/40b9b4f3c73db16dd4f44d74bfe91572_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/019\/11a\/1b4\/xbig_lq\/f8fca3.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/019\/11a\/1b4\/xbig_lq\/f8fca3.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/019\/11a\/1b4\/xbig\/f8fca3.jpg"},"chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/AshleyVasquez","random_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/AshleyVasquez","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/AshleyVasquez","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/AshleyVasquez?https://bongacams.com/track?c=802772&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/AshleyVasquez","stream_feed_url":"https:\/\/ded6895-edge4.bcvcdn.com\/hls\/stream_AshleyVasquez\/playlist.m3u8","chat_topic":" Lovense is on and privates as well ! If you have any request check my tip menu or simply ask me! Let's make it a fun day ! :P","chat_topic_ru":" Lovense is on and privates as well ! If you have any request check my tip menu or simply ask me! Let's make it a fun day ! :P","flags":["english","spanish"],"online_time":9566,"vs_url_root":"https:\/\/db.bngpt.com\/stream_AshleyVasquez","chat_status":"public","marker":"amazing","gender":"female","members_count":123,"vibratoy":true,"hd_cam":true,"social_networks":["snapchat"],"is_new":0},{"username":"LennaGodess","profile_page_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/LennaGodess","display_name":"LennaGodess","display_age":"23","profile_images":{"profile_image":"\/\/i.wlicdn.com\/051\/080\/187\/8643bf1df96cb97ea4781214f51acdfb_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/051\/080\/187\/8643bf1df96cb97ea4781214f51acdfb_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/051\/080\/187\/8643bf1df96cb97ea4781214f51acdfb_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/051\/080\/187\/8643bf1df96cb97ea4781214f51acdfb_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/051\/080\/187\/xbig_lq\/f0933e.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/051\/080\/187\/xbig_lq\/f0933e.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/051\/080\/187\/xbig\/f0933e.jpg"},"chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/LennaGodess","random_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/LennaGodess","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/LennaGodess","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/LennaGodess?https://bongacams.com/track?c=802772&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/LennaGodess","stream_feed_url":"https:\/\/ded6685-edge34.bcvcdn.com\/hls\/stream_LennaGodess\/playlist.m3u8","chat_topic":"Get me wet with 1114443332221234 and lets make it rain! #lovense #bigboobs #squirt #anal #feet","chat_topic_ru":"Get me wet with 1114443332221234 and lets make it rain! #lovense #bigboobs #squirt #anal #feet","flags":["english"],"online_time":14665,"vs_url_root":"https:\/\/db.bngpt.com\/stream_LennaGodess","chat_status":"public","marker":"nice","gender":"female","members_count":4211,"vibratoy":true,"hd_cam":true,"social_networks":[""],"is_new":0},{"username":"LuvC","profile_page_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/LuvC","display_name":"LuvC","display_age":"27","profile_images":{"profile_image":"\/\/i.wlicdn.com\/017\/36f\/31b\/1a8754569688fa07f61202c1ed9b5a86_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/017\/36f\/31b\/1a8754569688fa07f61202c1ed9b5a86_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/017\/36f\/31b\/1a8754569688fa07f61202c1ed9b5a86_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/017\/36f\/31b\/1a8754569688fa07f61202c1ed9b5a86_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/017\/36f\/31b\/xbig_lq\/a1c46b.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/017\/36f\/31b\/xbig_lq\/a1c46b.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/017\/36f\/31b\/xbig\/a1c46b.jpg"},"chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/LuvC","random_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/LuvC","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/LuvC","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/LuvC?https://bongacams.com/track?c=802772&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/LuvC","stream_feed_url":"https:\/\/ded6810-edge48.bcvcdn.com\/hls\/stream_LuvC\/playlist.m3u8","chat_topic":" *lovense on * make me wet * Sale on my onlyfans @misscreazy_c","chat_topic_ru":" *lovense on * make me wet * Sale on my onlyfans @misscreazy_c","flags":["english","romanian"],"online_time":6999,"vs_url_root":"https:\/\/db.bngpt.com\/stream_LuvC","chat_status":"public","marker":"amazing","gender":"female","members_count":300,"vibratoy":true,"hd_cam":true,"social_networks":[""],"is_new":0},{"username":"LeylaRoss","profile_page_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/LeylaRoss","display_name":"LeylaRoss","display_age":"23","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0b1\/02f\/252\/3654572c7c85d060bba3d6360f522703_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0b1\/02f\/252\/3654572c7c85d060bba3d6360f522703_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0b1\/02f\/252\/3654572c7c85d060bba3d6360f522703_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0b1\/02f\/252\/3654572c7c85d060bba3d6360f522703_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0b1\/02f\/252\/xbig_lq\/24336e.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0b1\/02f\/252\/xbig_lq\/24336e.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0b1\/02f\/252\/xbig\/24336e.jpg"},"chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/LeylaRoss","random_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/LeylaRoss","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/LeylaRoss","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/LeylaRoss?https://bongacams.com/track?c=802772&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/LeylaRoss","stream_feed_url":"https:\/\/ded6685-edge34.bcvcdn.com\/hls\/stream_LeylaRoss\/playlist.m3u8","chat_topic":"Feel free to pick anything from my menu, my favorite pattern is 111 :* ","chat_topic_ru":"Feel free to pick anything from my menu, my favorite pattern is 111 :* ","flags":["english","spanish"],"online_time":2809,"vs_url_root":"https:\/\/db.bngpt.com\/stream_LeylaRoss","chat_status":"public","marker":"nice","gender":"female","members_count":373,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"jennifer-annistom","profile_page_url":"https://bongacams.com/track?c=802772&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\/6054fb.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0b8\/3c8\/2cb\/xbig_lq\/6054fb.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0b8\/3c8\/2cb\/xbig\/6054fb.jpg"},"chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/jennifer-annistom","random_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=802772&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=802772&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/jennifer-annistom","stream_feed_url":"https:\/\/ded6810-edge48.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":22033,"vs_url_root":"https:\/\/db.bngpt.com\/stream_jennifer-annistom","chat_status":"public","marker":"nice","gender":"female","members_count":147,"vibratoy":false,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"SelenaWest","profile_page_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/SelenaWest","display_name":"SelenaWest","display_age":"26","profile_images":{"profile_image":"\/\/i.wlicdn.com\/041\/069\/243\/5dd935d12726a8f7ef5ba9841acaa06f_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/041\/069\/243\/5dd935d12726a8f7ef5ba9841acaa06f_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/041\/069\/243\/5dd935d12726a8f7ef5ba9841acaa06f_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/041\/069\/243\/5dd935d12726a8f7ef5ba9841acaa06f_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/041\/069\/243\/xbig_lq\/9f7b34.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/041\/069\/243\/xbig_lq\/9f7b34.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/041\/069\/243\/xbig\/9f7b34.jpg"},"chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/SelenaWest","random_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/SelenaWest","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/SelenaWest","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/SelenaWest?https://bongacams.com/track?c=802772&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/SelenaWest","stream_feed_url":"https:\/\/ded6479-edge64.bcvcdn.com\/hls\/stream_SelenaWest\/playlist.m3u8","chat_topic":"\u2764\ufe0fTouch me in my naughty places.:)lush is on for vibe kisses .... TIPS MAKES ME WET....Deep in my heart..and pussy\u2764\ufe0f","chat_topic_ru":"\u2764\ufe0fTouch me in my naughty places.:)lush is on for vibe kisses .... TIPS MAKES ME WET....Deep in my heart..and pussy\u2764\ufe0f","flags":["english"],"online_time":2031,"vs_url_root":"https:\/\/db.bngpt.com\/stream_SelenaWest","chat_status":"public","marker":"nice","gender":"female","members_count":124,"vibratoy":true,"hd_cam":true,"social_networks":["twitter"],"is_new":0},{"username":"tannya38","profile_page_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/tannya38","display_name":"tannya38","display_age":"38","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0a8\/14e\/17a\/671ab8e70d2f477e0977e923fe98ab59_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0a8\/14e\/17a\/671ab8e70d2f477e0977e923fe98ab59_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0a8\/14e\/17a\/671ab8e70d2f477e0977e923fe98ab59_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0a8\/14e\/17a\/671ab8e70d2f477e0977e923fe98ab59_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0a8\/14e\/17a\/xbig_lq\/eb5c2a.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0a8\/14e\/17a\/xbig_lq\/eb5c2a.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0a8\/14e\/17a\/xbig\/eb5c2a.jpg"},"chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/tannya38","random_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/tannya38","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/tannya38","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/tannya38?https://bongacams.com/track?c=802772&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/tannya38","stream_feed_url":"https:\/\/ded4184-edge-us19.bcvcdn.com\/hls\/stream_tannya38\/playlist.m3u8","chat_topic":"","chat_topic_ru":"","flags":["spanish","english"],"online_time":7817,"vs_url_root":"https:\/\/db.bngpt.com\/stream_tannya38","chat_status":"public","marker":null,"gender":"female","members_count":4,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"AloveA69","profile_page_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/AloveA69","display_name":"AloveA69","display_age":"30","profile_images":{"profile_image":"\/\/i.wlicdn.com\/090\/2d9\/2de\/1edf81f6d6bb23590cccd23f4c69cdd6_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/090\/2d9\/2de\/1edf81f6d6bb23590cccd23f4c69cdd6_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/090\/2d9\/2de\/1edf81f6d6bb23590cccd23f4c69cdd6_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/090\/2d9\/2de\/1edf81f6d6bb23590cccd23f4c69cdd6_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/090\/2d9\/2de\/xbig_lq\/67260c.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/090\/2d9\/2de\/xbig_lq\/67260c.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/090\/2d9\/2de\/xbig\/67260c.jpg"},"chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/AloveA69","random_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/AloveA69","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/AloveA69","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/AloveA69?https://bongacams.com/track?c=802772&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/AloveA69","stream_feed_url":"https:\/\/ded6740-edge20.bcvcdn.com\/hls\/stream_AloveA69\/playlist.m3u8","chat_topic":"Hello, I\u2019m Alexa) Sguirt in full private ","chat_topic_ru":" \u041f\u0440\u0438\u0432\u0435\u0442\u0438\u043a, \u044f \u0410\u043b\u0435\u043a\u0441\u0430) \u0437\u0430 1 \u0442\u043e\u043a\u0435\u043d \u0438 2 \u0442\u043e\u043a\u0435\u043d\u0430 \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u0434\u0435\u043b\u0430\u044e)))\u0421\u043c\u043e\u0442\u0440\u0438\u043c \u043c\u0435\u043d\u044e*\u0441\u043a\u0432\u0438\u0440\u0442 \u0432 \u043f\u043e\u043b\u043d\u043e\u043c \u043f\u0440\u0438\u0432\u0430\u0442\u0435. \u041c\u0443\u0436\u0438\u043a\u0430 \u043d\u0435 \u0438\u0449\u0443! \u041a\u0430\u043c\u0435\u0440\u0443 \u043d\u0435 \u0441\u043c\u043e\u0442\u0440\u044e ","flags":["russian","english"],"online_time":7549,"vs_url_root":"https:\/\/db.bngpt.com\/stream_AloveA69","chat_status":"public","marker":"average","gender":"female","members_count":49,"vibratoy":true,"hd_cam":false,"social_networks":["instagram"],"is_new":0},{"username":"Jenniee","profile_page_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/Jenniee","display_name":"Jenniee","display_age":"24","profile_images":{"profile_image":"\/\/i.wlicdn.com\/093\/025\/157\/818134b9973e110f31d297915bf3fd4d_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/093\/025\/157\/818134b9973e110f31d297915bf3fd4d_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/093\/025\/157\/818134b9973e110f31d297915bf3fd4d_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/093\/025\/157\/818134b9973e110f31d297915bf3fd4d_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/093\/025\/157\/xbig_lq\/67cff6.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/093\/025\/157\/xbig_lq\/67cff6.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/093\/025\/157\/xbig\/67cff6.jpg"},"chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/Jenniee","random_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/Jenniee","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/Jenniee","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/Jenniee?https://bongacams.com/track?c=802772&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/Jenniee","stream_feed_url":"https:\/\/ded7126-edge65.bcvcdn.com\/hls\/stream_Jenniee\/playlist.m3u8","chat_topic":"Hello, I'm Jennie! I'm glad to see you in my chat :) Lovense from 1 token. Favorite vibrations 15 tkns, 60 tkns- wave, 100 tkns. Before inviting to a private write in pm)","chat_topic_ru":"\u041f\u0440\u0438\u0432\u0435\u0442, \u044f \u0416\u0435\u043d\u044f! \u0420\u0430\u0434\u0430 \u0432\u0438\u0434\u0435\u0442\u044c \u0432 \u043c\u043e\u0435\u043c \u0447\u0430\u0442\u0435:) Lovense \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043e\u0442 1 \u0442\u043e\u043a\u0435\u043d\u0430. \u041b\u044e\u0431\u0438\u043c\u044b\u0435 \u0432\u0438\u0431\u0440\u0430\u0446\u0438\u0438 15, 60 - \u0432\u043e\u043b\u043d\u0430, 100 \u0442\u043e\u043a\u0435\u043d\u043e\u0432. \u041f\u0435\u0440\u0435\u0434 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435\u043c \u0432 \u043f\u0440\u0438\u0432\u0430\u0442 \u043f\u0438\u0448\u0438 \u0432 \u043b\u0438\u0447\u043a\u0443)","flags":["russian"],"online_time":3096,"vs_url_root":"https:\/\/db.bngpt.com\/stream_Jenniee","chat_status":"public","marker":"average","gender":"female","members_count":711,"vibratoy":true,"hd_cam":false,"social_networks":["instagram"],"is_new":0},{"username":"louisk2","profile_page_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/louisk2","display_name":"louisk2","display_age":"19","profile_images":{"profile_image":"\/\/i.wlicdn.com\/063\/379\/203\/cce97c6059512d82930456e0c65eec06_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/063\/379\/203\/cce97c6059512d82930456e0c65eec06_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/063\/379\/203\/cce97c6059512d82930456e0c65eec06_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/063\/379\/203\/cce97c6059512d82930456e0c65eec06_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/063\/379\/203\/xbig_lq\/2f06e6.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/063\/379\/203\/xbig_lq\/2f06e6.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/063\/379\/203\/xbig\/2f06e6.jpg"},"chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/louisk2","random_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/louisk2","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/louisk2","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/louisk2?https://bongacams.com/track?c=802772&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/louisk2","stream_feed_url":"https:\/\/ded4416-edge-us56.bcvcdn.com\/hls\/stream_louisk2\/playlist.m3u8","chat_topic":"hello guys welcome","chat_topic_ru":"hello guys welcome","flags":["spanish"],"online_time":234,"vs_url_root":"https:\/\/db.bngpt.com\/stream_louisk2","chat_status":"public","marker":"average","gender":"female","members_count":1,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"Theresina","profile_page_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/Theresina","display_name":"Theresina","display_age":"31","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0ba\/0bc\/132\/a3686bb9b270221fefa4af785834fdbc_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0ba\/0bc\/132\/a3686bb9b270221fefa4af785834fdbc_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0ba\/0bc\/132\/a3686bb9b270221fefa4af785834fdbc_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0ba\/0bc\/132\/a3686bb9b270221fefa4af785834fdbc_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0ba\/0bc\/132\/xbig_lq\/150a56.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0ba\/0bc\/132\/xbig_lq\/150a56.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0ba\/0bc\/132\/xbig\/150a56.jpg"},"chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/Theresina","random_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/Theresina","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/Theresina","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/Theresina?https://bongacams.com/track?c=802772&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/Theresina","stream_feed_url":"https:\/\/ded6685-edge34.bcvcdn.com\/hls\/stream_Theresina\/playlist.m3u8","chat_topic":"FUCK my PUSSY PLSSS #fuckmachine #squirt #german #smalltits #muscle","chat_topic_ru":"FUCK my PUSSY PLSSS #fuckmachine #squirt #german #smalltits #muscle","flags":["german","english"],"online_time":3500,"vs_url_root":"https:\/\/db.bngpt.com\/stream_Theresina","chat_status":"public","marker":"average","gender":"female","members_count":79,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"salomewilliams","profile_page_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/salomewilliams","display_name":"salomewilliams","display_age":"18","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0ba\/3ce\/116\/b4e6b49c00ae26237afc4531d9333806_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0ba\/3ce\/116\/b4e6b49c00ae26237afc4531d9333806_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0ba\/3ce\/116\/b4e6b49c00ae26237afc4531d9333806_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0ba\/3ce\/116\/b4e6b49c00ae26237afc4531d9333806_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0ba\/3ce\/116\/xbig_lq\/a2e25a.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0ba\/3ce\/116\/xbig_lq\/a2e25a.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0ba\/3ce\/116\/xbig\/a2e25a.jpg"},"chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/salomewilliams","random_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/salomewilliams","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/salomewilliams","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/salomewilliams?https://bongacams.com/track?c=802772&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/salomewilliams","stream_feed_url":"https:\/\/ded5281-edge-us50.bcvcdn.com\/hls\/stream_salomewilliams\/playlist.m3u8","chat_topic":"Welcome !! add me to fav Let's have fun together, make me Cum! \u00bflet's go private? ","chat_topic_ru":"Welcome !! add me to fav Let's have fun together, make me Cum! \u00bflet's go private? ","flags":["spanish","english"],"online_time":11304,"vs_url_root":"https:\/\/db.bngpt.com\/stream_salomewilliams","chat_status":"public","marker":"average","gender":"female","members_count":29,"vibratoy":true,"hd_cam":true,"social_networks":[""],"is_new":0},{"username":"maelie-angels","profile_page_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/maelie-angels","display_name":"maelie-angels","display_age":"21","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0b8\/02b\/25a\/8731b55c32ae617c05cb10adf3e3fdcc_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0b8\/02b\/25a\/8731b55c32ae617c05cb10adf3e3fdcc_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0b8\/02b\/25a\/8731b55c32ae617c05cb10adf3e3fdcc_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0b8\/02b\/25a\/8731b55c32ae617c05cb10adf3e3fdcc_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0b8\/02b\/25a\/xbig_lq\/996b6e.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0b8\/02b\/25a\/xbig_lq\/996b6e.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0b8\/02b\/25a\/xbig\/996b6e.jpg"},"chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/maelie-angels","random_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/maelie-angels","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/maelie-angels","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/maelie-angels?https://bongacams.com/track?c=802772&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/maelie-angels","stream_feed_url":"https:\/\/ded5487-edge-us13.bcvcdn.com\/hls\/stream_maelie-angels\/playlist.m3u8","chat_topic":"FULL NACKED\u2764\u2764","chat_topic_ru":"FULL NACKED\u2764\u2764","flags":["spanish","english"],"online_time":5324,"vs_url_root":"https:\/\/db.bngpt.com\/stream_maelie-angels","chat_status":"public","marker":"average","gender":"female","members_count":7,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"MelodyHill","profile_page_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/MelodyHill","display_name":"MelodyHill","display_age":"19","profile_images":{"profile_image":"\/\/i.wlicdn.com\/09f\/08e\/361\/223f3ef69aa6c28ab79f18f46a7c5d12_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/09f\/08e\/361\/223f3ef69aa6c28ab79f18f46a7c5d12_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/09f\/08e\/361\/223f3ef69aa6c28ab79f18f46a7c5d12_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/09f\/08e\/361\/223f3ef69aa6c28ab79f18f46a7c5d12_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/09f\/08e\/361\/xbig_lq\/dd9e15.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/09f\/08e\/361\/xbig_lq\/dd9e15.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/09f\/08e\/361\/xbig\/dd9e15.jpg"},"chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/MelodyHill","random_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/MelodyHill","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/MelodyHill","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/MelodyHill?https://bongacams.com/track?c=802772&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/MelodyHill","stream_feed_url":"https:\/\/ded4416-edge-us56.bcvcdn.com\/hls\/stream_MelodyHill\/playlist.m3u8","chat_topic":"\u2665 --O L Y M P U S-- Are you ready to fuck this goddess?\u2665 IG: @hill.melx \u2764 Goal:Fuck me hard @remain tkns left \u2764 ","chat_topic_ru":"\u2665 --O L Y M P U S-- Are you ready to fuck this goddess?\u2665 IG: @hill.melx \u2764 Goal:Fuck me hard @remain tkns left \u2764 ","flags":["english","spanish"],"online_time":3043,"vs_url_root":"https:\/\/db.bngpt.com\/stream_MelodyHill","chat_status":"public","marker":"average","gender":"female","members_count":23,"vibratoy":true,"hd_cam":false,"social_networks":["instagram"],"is_new":0}],"initial_models":[{"username":"-MaybeBaby-","profile_page_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/-MaybeBaby-","display_name":"-MaybeBaby-","display_age":"25","profile_images":{"profile_image":"\/\/i.wlicdn.com\/04a\/319\/267\/e9afbc88225c2cd6e5bafd0aad431a92_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/04a\/319\/267\/e9afbc88225c2cd6e5bafd0aad431a92_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/04a\/319\/267\/e9afbc88225c2cd6e5bafd0aad431a92_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/04a\/319\/267\/e9afbc88225c2cd6e5bafd0aad431a92_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/04a\/319\/267\/xbig_lq\/0c2bd5.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/04a\/319\/267\/xbig_lq\/0c2bd5.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/04a\/319\/267\/xbig\/0c2bd5.jpg"},"chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/-MaybeBaby-","random_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/-MaybeBaby-","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/-MaybeBaby-","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/-MaybeBaby-?https://bongacams.com/track?c=802772&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/-MaybeBaby-","stream_feed_url":"https:\/\/ded7126-edge65.bcvcdn.com\/hls\/stream_-MaybeBaby-\/playlist.m3u8","chat_topic":"Naked @remain Lovense in pussy work from 2 tokens \u2764\ufe0f","chat_topic_ru":"\u0413\u043e\u043b\u0435\u043d\u044c\u043a\u0430\u044f @remain \u041b\u043e\u0432\u0435\u043d\u0441 \u0432 \u043a\u0438\u0441\u043a\u0435 , \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043e\u0442 2\u0445 \u0442\u043e\u043a\u0435\u043d\u043e\u0432 \u2764\ufe0f","flags":["russian","english"],"online_time":8453,"vs_url_root":"https:\/\/db.bngpt.com\/stream_-MaybeBaby-","chat_status":"public","marker":"nice","gender":"female","members_count":1009,"vibratoy":true,"hd_cam":true,"social_networks":["instagram","tiktok"],"is_new":0},{"username":"LuvC","profile_page_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/LuvC","display_name":"LuvC","display_age":"27","profile_images":{"profile_image":"\/\/i.wlicdn.com\/017\/36f\/31b\/1a8754569688fa07f61202c1ed9b5a86_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/017\/36f\/31b\/1a8754569688fa07f61202c1ed9b5a86_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/017\/36f\/31b\/1a8754569688fa07f61202c1ed9b5a86_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/017\/36f\/31b\/1a8754569688fa07f61202c1ed9b5a86_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/017\/36f\/31b\/xbig_lq\/a1c46b.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/017\/36f\/31b\/xbig_lq\/a1c46b.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/017\/36f\/31b\/xbig\/a1c46b.jpg"},"chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/LuvC","random_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/LuvC","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/LuvC","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/LuvC?https://bongacams.com/track?c=802772&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/LuvC","stream_feed_url":"https:\/\/ded6810-edge48.bcvcdn.com\/hls\/stream_LuvC\/playlist.m3u8","chat_topic":" *lovense on * make me wet * Sale on my onlyfans @misscreazy_c","chat_topic_ru":" *lovense on * make me wet * Sale on my onlyfans @misscreazy_c","flags":["english","romanian"],"online_time":6999,"vs_url_root":"https:\/\/db.bngpt.com\/stream_LuvC","chat_status":"public","marker":"amazing","gender":"female","members_count":300,"vibratoy":true,"hd_cam":true,"social_networks":[""],"is_new":0},{"username":"crazyanna9","profile_page_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/crazyanna9","display_name":"Happy_Doll","display_age":"25","profile_images":{"profile_image":"\/\/i.wlicdn.com\/034\/270\/1e8\/981ee9b97bc8ed5dc7029e8f73b204e5_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/034\/270\/1e8\/981ee9b97bc8ed5dc7029e8f73b204e5_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/034\/270\/1e8\/981ee9b97bc8ed5dc7029e8f73b204e5_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/034\/270\/1e8\/981ee9b97bc8ed5dc7029e8f73b204e5_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/034\/270\/1e8\/xbig_lq\/56ba0a.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/034\/270\/1e8\/xbig_lq\/56ba0a.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/034\/270\/1e8\/xbig\/56ba0a.jpg"},"chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/crazyanna9","random_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/crazyanna9","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/crazyanna9","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/crazyanna9?https://bongacams.com/track?c=802772&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/crazyanna9","stream_feed_url":"https:\/\/ded6688-edge35.bcvcdn.com\/hls\/stream_crazyanna9\/playlist.m3u8","chat_topic":"Hi guys, I am very glad to see everyone. Let\u2019s have fun after office time Instagram happy_doll_1_ !! So hot stuff on OnlyFans , link in profile 500 naked","chat_topic_ru":"\u0441\u0430\u043b\u044e\u0442, \u0434\u0430\u0432\u0430\u0439\u0442\u0435 \u0440\u0430\u0437\u0432\u043b\u0435\u043a\u0430\u0442\u044c\u0441\u044f \u043f\u043e\u0441\u043b\u0435 \u0440\u0430\u0431\u043e\u0442\u044b) \u0438\u043d\u0441\u0442\u0430 happy_doll_1_ !! \u0412\u0441\u0435 \u0441\u0430\u043c\u043e\u0435 \u0433\u043e\u0440\u044f\u0447\u0438\u0435 \u0441\u043a\u043e\u0440\u043e \u0432 OnlyFans , \u0441\u0441\u044b\u043b\u043a\u0430 \u0432 \u043f\u0440\u043e\u0444\u0438\u043b\u0435 500 \u0433\u043e\u043b\u0430\u044f","flags":["russian","english"],"online_time":625,"vs_url_root":"https:\/\/db.bngpt.com\/stream_crazyanna9","chat_status":"public","marker":"nice","gender":"female","members_count":751,"vibratoy":true,"hd_cam":true,"social_networks":["instagram","snapchat"],"is_new":0},{"username":"AshleyVasquez","profile_page_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/AshleyVasquez","display_name":"AshleyVasquez","display_age":"28","profile_images":{"profile_image":"\/\/i.wlicdn.com\/019\/11a\/1b4\/40b9b4f3c73db16dd4f44d74bfe91572_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/019\/11a\/1b4\/40b9b4f3c73db16dd4f44d74bfe91572_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/019\/11a\/1b4\/40b9b4f3c73db16dd4f44d74bfe91572_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/019\/11a\/1b4\/40b9b4f3c73db16dd4f44d74bfe91572_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/019\/11a\/1b4\/xbig_lq\/f8fca3.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/019\/11a\/1b4\/xbig_lq\/f8fca3.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/019\/11a\/1b4\/xbig\/f8fca3.jpg"},"chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/AshleyVasquez","random_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/AshleyVasquez","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/AshleyVasquez","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/AshleyVasquez?https://bongacams.com/track?c=802772&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/AshleyVasquez","stream_feed_url":"https:\/\/ded6895-edge4.bcvcdn.com\/hls\/stream_AshleyVasquez\/playlist.m3u8","chat_topic":" Lovense is on and privates as well ! If you have any request check my tip menu or simply ask me! Let's make it a fun day ! :P","chat_topic_ru":" Lovense is on and privates as well ! If you have any request check my tip menu or simply ask me! Let's make it a fun day ! :P","flags":["english","spanish"],"online_time":9566,"vs_url_root":"https:\/\/db.bngpt.com\/stream_AshleyVasquez","chat_status":"public","marker":"amazing","gender":"female","members_count":123,"vibratoy":true,"hd_cam":true,"social_networks":["snapchat"],"is_new":0},{"username":"Jesikalooove","profile_page_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/Jesikalooove","display_name":"Jesikalooove","display_age":"20","profile_images":{"profile_image":"\/\/i.wlicdn.com\/069\/3b8\/070\/845e8241ff950312219beb67b1c45045_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/069\/3b8\/070\/845e8241ff950312219beb67b1c45045_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/069\/3b8\/070\/845e8241ff950312219beb67b1c45045_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/069\/3b8\/070\/845e8241ff950312219beb67b1c45045_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/069\/3b8\/070\/xbig_lq\/3d636d.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/069\/3b8\/070\/xbig_lq\/3d636d.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/069\/3b8\/070\/xbig\/3d636d.jpg"},"chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/Jesikalooove","random_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/Jesikalooove","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/Jesikalooove","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/Jesikalooove?https://bongacams.com/track?c=802772&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/Jesikalooove","stream_feed_url":"https:\/\/ded6479-edge64.bcvcdn.com\/hls\/stream_Jesikalooove\/playlist.m3u8","chat_topic":" @total fuck ass @remain ","chat_topic_ru":" @total \u0442\u0440\u0430\u0445\u0430\u0442\u044c \u043f\u043e\u043f\u043a\u0443","flags":["russian","ukrainian"],"online_time":862,"vs_url_root":"https:\/\/db.bngpt.com\/stream_Jesikalooove","chat_status":"public","marker":"nice","gender":"female","members_count":281,"vibratoy":false,"hd_cam":true,"social_networks":[""],"is_new":0},{"username":"LeylaRoss","profile_page_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/LeylaRoss","display_name":"LeylaRoss","display_age":"23","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0b1\/02f\/252\/3654572c7c85d060bba3d6360f522703_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0b1\/02f\/252\/3654572c7c85d060bba3d6360f522703_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0b1\/02f\/252\/3654572c7c85d060bba3d6360f522703_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0b1\/02f\/252\/3654572c7c85d060bba3d6360f522703_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0b1\/02f\/252\/xbig_lq\/24336e.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0b1\/02f\/252\/xbig_lq\/24336e.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0b1\/02f\/252\/xbig\/24336e.jpg"},"chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/LeylaRoss","random_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/LeylaRoss","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/LeylaRoss","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/LeylaRoss?https://bongacams.com/track?c=802772&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/LeylaRoss","stream_feed_url":"https:\/\/ded6685-edge34.bcvcdn.com\/hls\/stream_LeylaRoss\/playlist.m3u8","chat_topic":"Feel free to pick anything from my menu, my favorite pattern is 111 :* ","chat_topic_ru":"Feel free to pick anything from my menu, my favorite pattern is 111 :* ","flags":["english","spanish"],"online_time":2809,"vs_url_root":"https:\/\/db.bngpt.com\/stream_LeylaRoss","chat_status":"public","marker":"nice","gender":"female","members_count":373,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"jennifer-annistom","profile_page_url":"https://bongacams.com/track?c=802772&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\/6054fb.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0b8\/3c8\/2cb\/xbig_lq\/6054fb.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0b8\/3c8\/2cb\/xbig\/6054fb.jpg"},"chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/jennifer-annistom","random_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=802772&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=802772&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/jennifer-annistom","stream_feed_url":"https:\/\/ded6810-edge48.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":22033,"vs_url_root":"https:\/\/db.bngpt.com\/stream_jennifer-annistom","chat_status":"public","marker":"nice","gender":"female","members_count":147,"vibratoy":false,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"SelenaWest","profile_page_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/SelenaWest","display_name":"SelenaWest","display_age":"26","profile_images":{"profile_image":"\/\/i.wlicdn.com\/041\/069\/243\/5dd935d12726a8f7ef5ba9841acaa06f_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/041\/069\/243\/5dd935d12726a8f7ef5ba9841acaa06f_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/041\/069\/243\/5dd935d12726a8f7ef5ba9841acaa06f_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/041\/069\/243\/5dd935d12726a8f7ef5ba9841acaa06f_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/041\/069\/243\/xbig_lq\/9f7b34.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/041\/069\/243\/xbig_lq\/9f7b34.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/041\/069\/243\/xbig\/9f7b34.jpg"},"chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/SelenaWest","random_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/SelenaWest","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/SelenaWest","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/SelenaWest?https://bongacams.com/track?c=802772&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/SelenaWest","stream_feed_url":"https:\/\/ded6479-edge64.bcvcdn.com\/hls\/stream_SelenaWest\/playlist.m3u8","chat_topic":"\u2764\ufe0fTouch me in my naughty places.:)lush is on for vibe kisses .... TIPS MAKES ME WET....Deep in my heart..and pussy\u2764\ufe0f","chat_topic_ru":"\u2764\ufe0fTouch me in my naughty places.:)lush is on for vibe kisses .... TIPS MAKES ME WET....Deep in my heart..and pussy\u2764\ufe0f","flags":["english"],"online_time":2031,"vs_url_root":"https:\/\/db.bngpt.com\/stream_SelenaWest","chat_status":"public","marker":"nice","gender":"female","members_count":124,"vibratoy":true,"hd_cam":true,"social_networks":["twitter"],"is_new":0},{"username":"TheFallingAngel","profile_page_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/TheFallingAngel","display_name":"TheFallingAngel","display_age":"37","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0b5\/1aa\/217\/a53406e0b156308990d97a607e6a1f53_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0b5\/1aa\/217\/a53406e0b156308990d97a607e6a1f53_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0b5\/1aa\/217\/a53406e0b156308990d97a607e6a1f53_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0b5\/1aa\/217\/a53406e0b156308990d97a607e6a1f53_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0b5\/1aa\/217\/xbig_lq\/dfa3a2.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0b5\/1aa\/217\/xbig_lq\/dfa3a2.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0b5\/1aa\/217\/xbig\/dfa3a2.jpg"},"chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/TheFallingAngel","random_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/TheFallingAngel","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/TheFallingAngel","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/TheFallingAngel?https://bongacams.com/track?c=802772&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/TheFallingAngel","stream_feed_url":"https:\/\/ded6358-edge24.bcvcdn.com\/hls\/stream_TheFallingAngel\/playlist.m3u8","chat_topic":" Naughty blonde ready for any fantasy #lovense #blonde #dildo #lush #boobs #milf ","chat_topic_ru":" Naughty blonde ready for any fantasy #lovense #blonde #dildo #lush #boobs #milf ","flags":["romanian"],"online_time":10367,"vs_url_root":"https:\/\/db.bngpt.com\/stream_TheFallingAngel","chat_status":"public","marker":"nice","gender":"female","members_count":208,"vibratoy":false,"hd_cam":false,"social_networks":["instagram"],"is_new":0},{"username":"Girl-Pleasure","profile_page_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/Girl-Pleasure","display_name":"Tasty-me","display_age":"28","profile_images":{"profile_image":"\/\/i.wlicdn.com\/04a\/18d\/1fc\/f9fd7493a4124bc9bce7c6b8c5f983f6_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/04a\/18d\/1fc\/f9fd7493a4124bc9bce7c6b8c5f983f6_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/04a\/18d\/1fc\/f9fd7493a4124bc9bce7c6b8c5f983f6_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/04a\/18d\/1fc\/f9fd7493a4124bc9bce7c6b8c5f983f6_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/04a\/18d\/1fc\/xbig_lq\/3e7948.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/04a\/18d\/1fc\/xbig_lq\/3e7948.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/04a\/18d\/1fc\/xbig\/3e7948.jpg"},"chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/Girl-Pleasure","random_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=802772&ps=sticky_banner&csurl=http:\/\/bongacams.com\/Girl-Pleasure","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/Girl-Pleasure","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/Girl-Pleasure?https://bongacams.com/track?c=802772&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/Girl-Pleasure","stream_feed_url":"https:\/\/ded6358-edge24.bcvcdn.com\/hls\/stream_Girl-Pleasure\/playlist.m3u8","chat_topic":"Make my day @remain ","chat_topic_ru":"\u041f\u043e\u0440\u0430\u0434\u0443\u0439 \u043c\u0435\u043d\u044f @remain","flags":["russian","english"],"online_time":4966,"vs_url_root":"https:\/\/db.bngpt.com\/stream_Girl-Pleasure","chat_status":"public","marker":"nice","gender":"female","members_count":664,"vibratoy":true,"hd_cam":true,"social_networks":["snapchat"],"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/04a/319/267/e9afbc88225c2cd6e5bafd0aad431a92_thumb_medium.jpg', snapshotUrl: '//i.wlicdn.com/live/04a/319/267/xbig/0c2bd5.jpg', username: '-MaybeBaby-', displayname: '-MaybeBaby-', vsUrlRoot: 'https://db.bngpt.com/stream_-MaybeBaby-', 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; /***/ }) /******/ });