惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

GbyAI
GbyAI
Simon Willison's Weblog
Simon Willison's Weblog
Microsoft Security Blog
Microsoft Security Blog
Y
Y Combinator Blog
The GitHub Blog
The GitHub Blog
Engineering at Meta
Engineering at Meta
F
Fortinet All Blogs
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
A
About on SuperTechFans
Last Week in AI
Last Week in AI
月光博客
月光博客
有赞技术团队
有赞技术团队
P
Proofpoint News Feed
MyScale Blog
MyScale Blog
Martin Fowler
Martin Fowler
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
C
Check Point Blog
U
Unit 42
The Register - Security
The Register - Security
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Hugging Face - Blog
Hugging Face - Blog
阮一峰的网络日志
阮一峰的网络日志
V
Visual Studio Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
D
DataBreaches.Net
WordPress大学
WordPress大学
aimingoo的专栏
aimingoo的专栏
H
Hacker News: Front Page
Recent Announcements
Recent Announcements
C
CXSECURITY Database RSS Feed - CXSecurity.com
Latest news
Latest news
小众软件
小众软件
P
Palo Alto Networks Blog
PCI Perspectives
PCI Perspectives
Security Latest
Security Latest
S
Secure Thoughts
Scott Helme
Scott Helme
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
T
Threat Research - Cisco Blogs
P
Proofpoint News Feed
M
MIT News - Artificial intelligence
Application and Cybersecurity Blog
Application and Cybersecurity Blog
Google DeepMind News
Google DeepMind News
Recorded Future
Recorded Future
O
OpenAI News
S
Securelist
云风的 BLOG
云风的 BLOG
H
Help Net Security
T
Troy Hunt's Blog

New board topics in Global Google Educator Group

¡Bienvenidos a GEG El Salvador!🇸🇻 Google AI Educator Series - Check it out! ISTE Live 26 Vibe code into Google sites help? 3D Interactive Hand Tracking 3D Interactive Hand Tracking A HEARTFELT THANK YOU: CHAMPIONING THE DIGITAL EDUCATION VISION AT SK PULAU MERANTI! Gemini Applications for Scientific Literacy: Sharing Experiences Welcome to the Revived GEG Tennessee! Interactive Reading Adventure with Google Classroom Google Classroom as a Daily Character Reflection Journal Hi Introduction ☕✨ Café Coletivo GEGs Diadema e São Bernardo do Campo ☕✨ Café Coletivo GEGs Diadema e São Bernardo do Campo 🚀GEG ITALIA: How do Salesiani Educators Use Gemini in School? True Best Practices! Google Meet Link Expiry 🌎 Champions, necesito su apoyo para llegar a miles de educadores de Iberoamérica. Global Connection: What is your definition of a Globally Connection? Global Connection: What is your definition of a Globally Connection? ISTELive26 Архангайн багш нартаа мэндчилгээ дэвшүүлье Idaho AI Ecosystem: PD opportunities and challenges Welcome to the GEG Malawi hub! :) Introduction to us! Register Today for the Missouri Summit! 🚀 Create Cutting-Edge Educational Videos with Google Vids: A Step-by-Step Guide That Will Blow Your 12 New EduGems from May 2026 GEG Italia welcomes the first Italian Google for Education Reference Municipality 🎉 June 2026 Newsletter Ferramentas do google NotebookLM Updates for May 2026 Gemini and Google Certified Educator GEG Malawi Events (recent and upcoming!) GEG Africa week! 🐝 GEG Italia Meets GEG Pennsylvania: A Journey of Inspiration and Creativity! 🌍✨ Hello teachers, I have a problem and I need a solution. When "Innovators" Meet "Ultimate AI"—That’s Where the "Wow" Happens! Exam credentials, Looking for a local North America GEG... Using AI with Classroom Data - A Problem Solved From One-Off Visits to Ongoing Support: The Power of Intentional Follow Up How have you been able to leverage Google Gemini in your Coaching Position? Empowering School Leaders in KIPS Education System in Pakistan The Google AI Educator Series launched today! 🤩 Short PD earn Badges👈🏻 Recording for GEG Malawi Gemini & Gems session! :) 🗺️ The GEG Sidoarjo Digital Home! BENVENUTI IN GEG ITALIA 🇮🇹 🌍 GEG Italia meets GEG SPED Texas 🇮🇹🤝🇺🇸 ➡️ Info Sessions | Webinars GEG Obregón 🇧🇷 GEG Summit 2026 | Dúvidas e questionamentos AI in Classroom: A friend or a foe?
Opening the School to the Real World Through AI and Entrepreneurship
https://www.googleforeducommunity.com/t5/user/viewprofilepage/us · 2026-05-12 · via New board topics in Global Google Educator Group
]*>([\S\s]*?)<\/script>/gmi, ''); str = str.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gmi, ''); element.innerHTML = str; str = element.textContent; element.textContent = ''; } return str; } return decodeHTMLEntities; })(); /** * @function openWorkbench * @description Opens the workbench link of the selected code * */ $scope.openWorkbench = function (def_Lang_Code, tid, threadhref, sourceLocale) { /* Open workbench link in new tab */ window.location.href = "/t5/custom/page/page-id/ModifyTranslation_preview?tid="+tid+"&locale="+def_Lang_Code+"&redirect_uri="+threadhref+"&sourcelocale="+sourceLocale; }; /** * @function detectBrowserLanguage * @description detects the browser language and displays the UI to request translation for browser language * */ $scope.detectBrowserLanguage = function () { /* Get cookie value of the user choice regarding browser language translation */ var brTChoice = cookieService.getBrTChoice() if (brTChoice != undefined && brTChoice == "true") { /* Do nothing if user dont want option for browser language translation */ } else { /* Get user browser language */ var brLangCode = window.navigator.userLanguage || window.navigator.language; brLang = ""; /* Get right language code of the browser language. Get the first value in the matching list */ if (brLangCode.indexOf("-") >= 0) { var obj = $filter('filter')($scope.languages, function (obj) { return obj.code === brLangCode }); if (obj.length > 0) { brLang = obj[0]; } } else { var obj = $filter('filter')($scope.languages, function (obj) { return obj.code.split("-")[0] === brLangCode }); if (obj.length > 0) { brLang = obj[0]; } } /* If browser language is valid one then provide UI to request browser language translation */ if (brLang != "") { var defaultLang = ""; if (('en-US'.indexOf(brLang.code) == -1) && (brLang.code.indexOf('en-US') == -1) && (defaultLang.indexOf(brLang.code) == -1) && (brLang.code.indexOf(defaultLang) == -1)) { $scope.brLang = brLang; $scope.brTransMsg = "brTransMsg.html"; } else { $scope.brTransMsg = ""; } } } } /** * @function neverDisplayBrTransMsg * @description sets cookie if user never want browser language translation choice * */ $scope.neverDisplayBrTransMsg = function () { cookieService.putBrTChoice() $scope.brTransMsg = ""; } /** * @function trnaslateToBrowserLang * @param {isTranslate} isTranslate - true/false * @description Requests for browser translation based on user choice * */ $scope.trnaslateToBrowserLang = function (isTranslate) { if (isTranslate) { /* Point language dropdown to browser language */ $scope.selLang = $scope.brLang.code; /* Initiate preview process for browser language */ $scope.selectThisLang($scope.selLang); /* Remove browser language translation UI */ $scope.brTransMsg = ""; } else { $scope.brTransMsg = ""; } } /* V1.4 */ /** * @function translateThisThread * @description Triggers the translation on button click * @param {mode} manual click or auto - click/null */ $scope.translateThisThread = function (mode) { if (mode != undefined && mode == 'click') { /* Cheking author decision on validation */ if ((document.querySelectorAll(".lingo-TrFlag").length == 0) && ("18614" != "-1")) { //if (!confirm("This thread is not selected for translation by the Author. Do you want to translate this thread?")) { if (!confirm("This thread is not selected for translation by the Author. Do you want to translate this thread?")) { return false; } } } $scope.showTransLation = true; /* If language exists in selected languages then initiate or manage translation */ if ("false" == "true") { $scope.selLang = ""; /* 1.4 Update Analytics on language selected */ try { lingoThreadLangSelected('', '240131'); } catch (e) { } if (angular.element(document.querySelector("#trABody"))) { console.log(angular.element(document.querySelector("trABody"))); $scope.showPreview(angular.element(document.querySelector("#trABody")).innerHTML, $scope.mszList, ""); } $scope.manageTranslation("", "240131"); } else { if ("false" == "true") { alert("Requested languages not present in the selected languages list"); } } /* Detecting Browser language */ $scope.detectBrowserLanguage(); } $rootScope.profLang = ""; /* If language exists in selected languages then initiate or manage translation */ /* Get Cookie */ function getCookie(cname) { var name = cname + "="; var ca = document.cookie.split(';'); for (var i = 0; i < ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') { c = c.substring(1); } if (c.indexOf(name) == 0) { return c.substring(name.length, c.length); } } return ""; } var lang_code = ""; if ("false" == "true") { /* Language from Parameter */ var lang_code = ""; } else if (anonLang = getCookie('lia.anon.profile.language')) { /* Language from cookie */ /* Get code from source list */ var srObj = $filter('filter')($scope.sourceLangList, function (obj) { return obj.id === anonLang }); if (srObj.length > 0) { /* check code in selected languages */ var selObj = $filter('filter')($scope.languages, function (obj) { return obj.code === srObj[0].code }); if (selObj.length > 0) { lang_code = srObj[0].code; } } } else if (brLangCode = window.navigator.userLanguage || window.navigator.language) { /* Browser Language */ /* Get right language code of the browser language. Get the first value in the matching list */ if (brLangCode.indexOf("-") >= 0) { var obj = $filter('filter')($scope.languages, function (obj) { return obj.code === brLangCode }); if (obj.length > 0) { lang_code = obj[0].code; } } else { var obj = $filter('filter')($scope.languages, function (obj) { return obj.code.split("-")[0] === brLangCode }); if (obj.length > 0) { lang_code = obj[0].code; } } } else { } $rootScope.profLang = lang_code; if (lang_code == "") { lang_code = "en-US"; } $scope.selLang = lang_code; if (angular.element(document.querySelector("#trABody"))) { console.log(angular.element(document.querySelector("#trABody")).innerHTML); $scope.showPreview(angular.element(document.querySelector("#trABody")).innerHTML, $scope.mszList, $scope.selLang); } $scope.showTransLation = true; $scope.selectThisLang($scope.selLang, "1"); if ("auto" == "true") { try { lingoThreadLangSelected($scope.selLang, '240131'); } catch (e) { } $scope.manageTranslation($scope.selLang, "240131"); } /* V1.4 Loading dashbaord (converted into script to remove glitch) */ $scope.dashboard = "dashboard.html"; /** * @function triggerRefresh * @description Managess the translation of given language for the thread * @param {string} langCode - Language Code * @param {string} tid - Thread ID */ $scope.triggerRefresh = function(langCode,tid) { if(confirm("Are you sure you want to manually resubmit the translation?")) { $scope.transPercent = ""; var manualTriggerTrans = lithiumPlugin.manualTriggerTrans(langCode,tid); manualTriggerTrans.then(function(status){ if(status == "refresh") { var resetTranslation = lithiumPlugin.resetTranslation(tid); resetTranslation.then(function(error){ if(error) { $rootScope.errorMsg = error.$; } else { var bulkTranslation = lithiumPlugin.bulkTranslation(langCode,tid); bulkTranslation.then(function(data){ //$rootScope.errorMsg = "Translation has been refreshed. Please refresh page after some time."; $rootScope.errorMsg = "Translation has been refreshed. Please refresh page after some time."; }); } }); } else { $rootScope.errorMsg = status; } }); } } /* V 2.0: 2 = this function called on click reply sync button */ /** * @function manualOOS * @description Sends the Out of sync check request. * */ $scope.manualTriggerOSS = function(replyID){ if($scope.transPercent!="") { var manualOSS = lithiumPlugin.manualOSS("240131",replyID); manualOSS.then(function(value){ if(!value.includes("false")) { $scope.transPercent = ""; // $rootScope.errorMsg = "Message requested for re-translation. Please refresh after some time."; //$rootScope.errorMsg = "Downloading Translated content. Please refresh after some time."; } else { // $rootScope.errorMsg = "Auto translation of message failed. Please refresh the page and retry."; // $rootScope.errorMsg = "Auto translation of message failed. Please refresh the page and retry."; } }); } else { //$rootScope.errorMsg = "Translation is in progress. Please retry after some time."; $rootScope.errorMsg = "Translation is in progress. Please retry in a few minutes."; } } }) .factory('httpInterceptor', ['$q', '$rootScope', function ($q, $rootScope) { /* httpInterceptor intercepts the http calls */ return { request: function (config) { if(config.url.indexOf("language_ep")>=0){ /* Start Loader */ $rootScope.isLoading = true; $rootScope.errorMsg = ""; } return config || $q.when(config); }, requestError: function(request){ if((request.config != undefined) && (request.config.url.indexOf("language_ep")>=0)){ /* Stop Loader */ $rootScope.isLoading = false; /* Display error message */ $rootScope.errorMsg = "Error while processing the request. Please refresh the page and retry."; } return $q.reject(request); }, response: function (response) { if(response.config.url.indexOf("language_ep")>=0){ /* Stop Loader */ $rootScope.isLoading = false; } return response || $q.when(response); }, responseError: function (response) { if((response.config != undefined) && (response.config.url.indexOf("language_ep")>=0)){ /* Display error message */ $rootScope.errorMsg = "Error while processing the request. Please refresh the page and retry."; /* Stop Loader */ $rootScope.isLoading = false; } return $q.reject(response); } }; } ]) .service('lithiumPlugin', function($http,$rootScope) { /* Service that connects the dashboard with Lithium endpoints */ /* V 1.1:7 = Converting all POST calls GET calls */ /** * @function isOutOfSync * @param {string} sourceID - Thread id * @description Sends the ot of sync check request * */ var isOutOfSync = function(sourceID) { return $http.get('/plugins/custom/google/googleeducator/language_ep_proj_callback?mode=OSS&tid='+sourceID+'&xslt=json.xsl').then(function(result){ var apiResponse = result.data; return apiResponse.result; }, function(result){ // debugger; return {"status": "false"}; }); }; /** * @function getTrContent * @param {string} code - Language code * @param {string} tid - Thread id * @description Get the translated content from Lithium. * */ var getTranslation = function(code,tid){ /* var param = { mode:'trContent', code:code, tid:tid, xslt:'json.xsl' }; */ return $http.get('/plugins/custom/google/googleeducator/language_ep_rest_connector?mode=trContent&code='+code+'&tid='+tid+'&xslt=json.xsl').then(function(result){ var apiResponse = result.data; return apiResponse.result; },function(response) { return { "id":"", "body":"", "subject":"", "status":"", "wb":"" }; }); }; /** * @function bulkTransStatus * @param {string} code - Language code * @param {string} tid - Thread id * @description Manages translation of given thread * */ var bulkTranslation = function(code,tid){ /* V1.1: 2*/ /* var param = { mode:'manageTrContent', code:code, tid:tid, xslt:'json.xsl' }; */ return $http.get('/plugins/custom/google/googleeducator/language_ep_rest_connector?mode=manageTrContent&code='+code+'&tid='+tid+'&xslt=json.xsl').then(function(result){ var apiResponse = result.data; /* V1.4:3 Update source language of content in analytics on new post */ if(apiResponse.result.posts != undefined) { var trPosts = JSON.parse(apiResponse.result.posts); angular.forEach(trPosts,function(pObj_l){ try{ lingoUpdateSource(pObj_l.source,pObj_l.tid); } catch(error) { console.log(error); } }) } return apiResponse.result; },function(response) { return { "id":"", "body":"", "status":"", "wb":"" }; }); }; /** * @function setDefaultLang * @param {string} code - Language code * @description Changes the user default language to requested language. * */ var setDefaultLang = function(code){ /* V1.1: 2*/ return $http.get("/plugins/custom/google/googleeducator/language_ep_update_settings?mode=langSet&xslt=json.xsl&code="+code).then(function(result){ return "success"; }, function(result){ return "Error. Please retry after some time"; }); }; /* V 2.0: 1 */ /** * @function resetTranslation * @param {string} tid - Thread ID * @description Calls the endpoint to reset the translation of given thread. * */ var resetTranslation = function(tid){ return $http.get('/plugins/custom/google/googleeducator/language_support?mode=refresh&tid='+tid+'&xslt=json.xsl').then(function(result){ var apiResponse = result.data; return apiResponse.logs.error; }, function(result){ return ""; }); }; /** * @function manualTriggerTrans * @param {string} code - Language code * @param {string} tid - Thread id * @description Manages translation of given thread * */ var manualTriggerTrans = function(code,tid){ /* V 2.0: 3*/ /* var param = { mode:'mtrigger', code:code, tid:tid, xslt:'json.xsl' }; */ return $http.get('/plugins/custom/google/googleeducator/language_ep_proj_callback?mode=mtrigger&code='+code+'&tid='+tid+'&xslt=json.xsl').then(function(result){ var apiResponse = result.data; return apiResponse.result.status; },function(response) { return "Please retry after some time."; }); }; /** @function isOutOfSync * @param {string} sourceID - Thread id * @description Sends the ot of sync check request * */ var manualOSS = function(sourceID,replyID) { return $http.get('/plugins/custom/google/googleeducator/language_ep_proj_callback?mode=manualOSS&tid='+sourceID+'&reply='+replyID+'&xslt=json.xsl').then(function(result){ var apiResponse = result.data; return apiResponse.result.status; }, function(result){ // debugger; return "false"; }); }; /* V 2.0: 3 */ /** * @function trCompletCallback * @param {string} code - Language code * @param {string} docID - Document id * @description Triggers the translation completed callback from Lithium * */ var trCompletCallback = function(code,docID){ return $http.get('/plugins/custom/google/googleeducator/language_ep_proj_callback?mode=callback&type=target&progress=100&document_id='+docID+'&locale_code='+code+'&xslt=json.xsl').then(function(result){ var apiResponse = result.data; return apiResponse.result.status; },function(response) { return "Please retry after some time."; }); }; /* V 2.0: 3 */ /** * @function trCompletUpload * @param {string} code - Language code * @param {string} docID - Document id * @description Triggers the document upload callback from Lithium * */ var trCompletUpload = function(code,docID){ return $http.get('/plugins/custom/google/googleeducator/language_ep_proj_callback?mode=callback&type=document_uploaded&progress=0&document_id='+docID+'&xslt=json.xsl').then(function(result){ var apiResponse = result.data; return apiResponse.result.status; },function(response) { return "Please retry after some time."; }); }; return { isOutOfSync:isOutOfSync, getTranslation:getTranslation, bulkTranslation:bulkTranslation, setDefaultLang:setDefaultLang, resetTranslation:resetTranslation, manualTriggerTrans:manualTriggerTrans, manualOSS:manualOSS, trCompletCallback:trCompletCallback, trCompletUpload:trCompletUpload }; }) .service("cookieService",function(){ /* Service for cookie storage */ /** * @function getBrTChoice * @description Returns the cookie set for browser language translation. * */ var getBrTChoice = function() { var cname = "it_lang_notify_hide"; var name = cname + "="; var ca = document.cookie.split(';'); for(var i=0; i', { class: 'avatar-role-icon', src: '/html/assets/googleLogo.png' }); element.append(img); } }, error: function(err) { console.log(err); } }); }); }; processAvatars($(".UsersOnlineAvatarsTaplet a")); processAvatars($(".lia-node-activity .UserAvatar.lia-link-navigation")); }); })(LITHIUM.jQuery); } catch (err) { console.log(err); } ;(function ($) { 'use strict'; var currentIdVal = "-1"; var endpointUrl = "/plugins/custom/google/googleeducator/custom.hub_access"; var nodeId = "GEG_LATAMforum-board"; var ancestorIds = []; ancestorIds.push("GEG_LATAM"); ancestorIds.push("educators_groups"); ancestorIds.push("educators"); ancestorIds.push("primary_and_secondary_education"); ancestorIds.push("qjstt96257"); var HUB_CONFIG = { "higher-education": "ELP_HUB", "admin_hub": "adminHub", "education-leadership": "leadershipHub", "educators": "educators-community" }; var ROLE_CHECK = { "higher-education": false, "admin_hub": false, "education-leadership": false, "educators": false }; var isGlobalAdmin = false; var hubKey = ""; var hubType = ""; var nodeHierarchy = [nodeId].concat(ancestorIds).reverse(); nodeHierarchy.some(function (id) { if (HUB_CONFIG[id]) { hubKey = id; hubType = HUB_CONFIG[id]; return true; } return false; }); if (!hubType) { return; } if (ROLE_CHECK[hubKey] || isGlobalAdmin) { return; } var finalUrl = endpointUrl + '?hubType=' + encodeURIComponent(hubType) + '¤tId=' + encodeURIComponent(currentIdVal); $.ajax({ type: 'POST', url: finalUrl, success: function () { }, error: function (err) { } }); })(LITHIUM.jQuery); LITHIUM.Link({"linkSelector":"a.lia-link-ticket-post-action"}); LITHIUM.AjaxSupport.defaultAjaxFeedbackHtml = "

\n\t\t\t

<\/div>\n\t\t\t\n\t\n\n\t\n\n\t\t<\/div>"; LITHIUM.AjaxSupport.defaultAjaxErrorHtml = " <\/span>\n\n\t\n\t\t

\n\t\t\t

\n\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\t

\n\t\t\t\t\t\tSorry, unable to complete the action you requested.\n\t\t\t\t\t<\/p>\n\t\t\t\t\n\n\t\t\t\t\n\n\t\t\t\t\n\n\t\t\t\t\n\t\t\t<\/div>\n\n\t\t\t\n\t\t<\/div>"; LITHIUM.AjaxSupport.fromLink('#link_0', 'acceptCookieEvent', 'false', 'LITHIUM:ajaxError', {}, 'MJEfzOx0PnmirZXo1_HDGsLFHRkzDyX-RAfd0hHN2fQ.', 'ajax'); LITHIUM.AjaxSupport.fromLink('#link_1', 'rejectCookieEvent', 'false', 'LITHIUM:ajaxError', {}, 'mwmBHWl2IkuC-xwukqWrZNoZQuyV3by8A5qlW8aLv1g.', 'ajax'); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:lightboxRenderComponent","parameters":{"componentParams":"{\n \"triggerSelector\" : {\n \"value\" : \"#link_2\",\n \"class\" : \"lithium.util.css.CssSelector\"\n }\n}","componentId":"cookie.preferences"},"trackableEvent":false},"tokenId":"ajax","elementSelector":"#link_2","action":"lightboxRenderComponent","feedbackSelector":false,"url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.cookiebanneralertv2.link_1:lightboxrendercomponent?t:ac=board-id/GEG_LATAMforum-board/message-id/1/thread-id/1&t:cp=gdprcookiebanner/contributions/cookiebannercontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"g6vTa2lmgO7XzcsQnay4lhSTfPb1e13A93hcNtr-ayI."}); LITHIUM.Dialog.options['-1854072981'] = {"contentContext":"cookie.preferences","dialogOptions":{"minHeight":399,"draggable":true,"maxHeight":1400,"dialogContentClass":"lia-cookie-banner-preferences-dialog-body","autoOpen":false,"width":710,"minWidth":760,"dialogClass":"lia-cookie-banner-preferences-dialog","position":["center","center"],"title":"Privacy Preferences","modal":false,"maxWidth":910},"contentType":"ajax"}; LITHIUM.Dialog({ "closeImageIconURL" : "https://www.googleforeducommunity.com/skins/images/D0D52B560C4C88C05284D4CB51C2B81A/theme_hermes/images/button_dialog_close.svg", "activecastFullscreen" : false, "dialogTitleHeadingLevel" : "2", "dropdownMenuSelector" : ".lia-menu-navigation-wrapper", "accessibility" : true, "triggerSelector" : ".lia-panel-dialog-trigger-event-click", "ajaxEvent" : "LITHIUM:lightboxRenderComponent", "focusOnDialogTriggerWhenClosed" : false, "closeEvent" : "LITHIUM:lightboxCloseEvent", "defaultAriaLabel" : "", "dropdownMenuOpenerSelector" : ".lia-js-menu-opener", "buttonDialogCloseAlt" : "Close", "dialogContentCssClass" : "lia-panel-dialog-content", "triggerEvent" : "click", "dialogKey" : "dialogKey" }); LITHIUM.Form.resetFieldForFocusFound(); LITHIUM.CookieBannerAlert({"cookieBannerAlertContent":".lia-cookie-banner-alert-text-content","privacyPolicyURL":"https://policies.google.com/technologies/cookies"}); LITHIUM.DropDownMenu({"userMessagesFeedOptionsClass":"div.user-messages-feed-options-menu a.lia-js-menu-opener","menuOffsetContainer":".lia-menu-offset-container","hoverLeaveEvent":"LITHIUM:hoverLeave","mouseoverElementSelector":".lia-js-mouseover-menu","userMessagesFeedOptionsAriaLabel":"Show contributions of the user, selected option is Options. You may choose another option from the dropdown menu.","disabledLink":"lia-link-disabled","menuOpenCssClass":"dropdownHover","menuElementSelector":".lia-menu-navigation-wrapper","dialogSelector":".lia-panel-dialog-trigger","messageOptions":"lia-component-message-view-widget-action-menu","menuBarComponent":"lia-component-menu-bar","closeMenuEvent":"LITHIUM:closeMenu","menuOpenedEvent":"LITHIUM:menuOpened","pageOptions":"lia-component-community-widget-page-options","clickElementSelector":".lia-js-click-menu","menuItemsSelector":".lia-menu-dropdown-items","menuClosedEvent":"LITHIUM:menuClosed"}); LITHIUM.DropDownMenuVisibilityHandler({"selectors":{"menuSelector":"#actionMenuDropDown","menuItemsSelector":".lia-menu-dropdown-items"}}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#pageInformation","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_0","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_1","feedbackSelector":".InfoMessage"}); LITHIUM.DropDownMenu({"userMessagesFeedOptionsClass":"div.user-messages-feed-options-menu a.lia-js-menu-opener","menuOffsetContainer":".lia-menu-offset-container","hoverLeaveEvent":"LITHIUM:hoverLeave","mouseoverElementSelector":".lia-js-mouseover-menu","userMessagesFeedOptionsAriaLabel":"Show contributions of the user, selected option is Show Opening the School to the Real World Through AI and Entrepreneurship post option menu. You may choose another option from the dropdown menu.","disabledLink":"lia-link-disabled","menuOpenCssClass":"dropdownHover","menuElementSelector":".lia-menu-navigation-wrapper","dialogSelector":".lia-panel-dialog-trigger","messageOptions":"lia-component-message-view-widget-action-menu","menuBarComponent":"lia-component-menu-bar","closeMenuEvent":"LITHIUM:closeMenu","menuOpenedEvent":"LITHIUM:menuOpened","pageOptions":"lia-component-community-widget-page-options","clickElementSelector":".lia-js-click-menu","menuItemsSelector":".lia-menu-dropdown-items","menuClosedEvent":"LITHIUM:menuClosed"}); LITHIUM.DropDownMenuVisibilityHandler({"selectors":{"menuSelector":"#actionMenuDropDown_0","menuItemsSelector":".lia-menu-dropdown-items"}}); LITHIUM.MessageBodyDisplay('#bodyDisplay', '.lia-truncated-body-container', '#viewMoreLink', '.lia-full-body-container' ); LITHIUM.CustomEvent('.lia-custom-event', 'click'); LITHIUM.AjaxSupport.fromLink('#kudoEntity', 'kudoEntity', '#ajaxfeedback', 'LITHIUM:ajaxError', {}, 'pnCRHGXicxEQAEaAQGMuPsxbieZuZr-r_uhFrDC-NrU.', 'ajax'); LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "kudoEntity", "actions" : [ { "context" : "envParam:entity", "action" : "rerender" } ] } ], "componentId" : "kudos.widget.button", "initiatorBinding" : true, "selector" : "#kudosButtonV2", "parameters" : { "displayStyle" : "horizontal", "disallowZeroCount" : "false", "revokeMode" : "true", "kudosable" : "true", "showCountOnly" : "false", "disableKudosForAnonUser" : "false", "useCountToKudo" : "false", "entity" : "240131", "linkDisabled" : "false" }, "initiatorDataMatcher" : "data-lia-kudos-id" }); LITHIUM.InlineMessageReplyContainer({"openEditsSelector":".lia-inline-message-edit","renderEventParams":{"replyWrapperId":"replyWrapper","messageId":240131,"messageActionsId":"messageActions"},"isRootMessage":true,"collapseEvent":"LITHIUM:collapseInlineMessageEditor","confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","messageActionsSelector":"#messageActions","loaderSelector":"#loader","topicMessageSelector":".lia-forum-topic-message-gte-5","containerSelector":"#inlineMessageReplyContainer","loaderEnabled":false,"useSimpleEditor":false,"isReplyButtonDisabled":false,"linearDisplayViewSelector":".lia-linear-display-message-view","threadedDetailDisplayViewSelector":".lia-threaded-detail-display-message-view","replyEditorPlaceholderWrapperSelector":".lia-placeholder-wrapper","renderEvent":"LITHIUM:renderInlineMessageReply","expandedRepliesSelector":".lia-inline-message-reply-form-expanded","isLazyLoadEnabled":false,"layoutView":"threaded","isAllowAnonUserToReply":false,"replyButtonSelector":".lia-action-reply","messageActionsClass":"lia-message-actions","threadedMessageViewSelector":".lia-threaded-display-message-view-wrapper","lazyLoadScriptsEvent":"LITHIUM:lazyLoadScripts","isGteForumV5":true}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineMessageReply"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer","action":"renderInlineMessageReply","feedbackSelector":"#inlineMessageReplyContainer","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:renderinlinemessagereply?t:ac=board-id/GEG_LATAMforum-board/message-id/1/thread-id/1&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"7ZmrjHyxUH6cU4D8LD7VNRhaoaT6hsFgC5YdJOA8itk."}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:lazyLoadScripts"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer","action":"lazyLoadScripts","feedbackSelector":"#inlineMessageReplyContainer","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:lazyloadscripts?t:ac=board-id/GEG_LATAMforum-board/message-id/1/thread-id/1&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"W6sHR1QnXhk1Np5Vrf8D2MblXTVNmVt8CdhNvpMMa0E."}); LITHIUM.AjaxFeedback(".lia-inline-ajax-feedback", "LITHIUM:hideAjaxFeedback", ".lia-inline-ajax-feedback-persist"); LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "approveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "unapproveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "deleteMessage", "actions" : [ { "context" : "lia-deleted-state", "action" : "addClassName" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "QuickReply", "actions" : [ { "context" : "envParam:feedbackData", "action" : "rerender" } ] }, { "event" : "expandMessage", "actions" : [ { "context" : "envParam:quiltName,expandedQuiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswer", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswerComment", "actions" : [ { "context" : "envParam:selectedMessage", "action" : "rerender" } ] }, { "event" : "editProductMessage", "actions" : [ { "context" : "envParam:quiltName,message", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAction", "actions" : [ { "context" : "envParam:quiltName,message,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "ProductMessageEdit", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "MessagesWidgetMessageEdit", "actions" : [ { "context" : "envParam:quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "AcceptSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "RevokeSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "markAsSpamWithoutRedirect", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "MessagesWidgetAnswerForm", "actions" : [ { "context" : "envParam:messageUid,page,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAnswerForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] } ], "componentId" : "forums.widget.message-view", "initiatorBinding" : true, "selector" : "#messageview", "parameters" : { "disableLabelLinks" : "false", "truncateBodyRetainsHtml" : "false", "forceSearchRequestParameterForBlurbBuilder" : "false", "kudosLinksDisabled" : "false", "useSubjectIcons" : "true", "quiltName" : "ForumMessage", "truncateBody" : "true", "message" : "240131", "includeRepliesModerationState" : "true", "syndicatedView" : "false", "useSimpleView" : "false", "useTruncatedSubject" : "true", "disableLinks" : "false", "messageViewOptions" : "1101110111111111111110111110100101111101", "displaySubject" : "true" }, "initiatorDataMatcher" : "data-lia-message-uid" }); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_2","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_3","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_4","feedbackSelector":".InfoMessage"}); LITHIUM.DropDownMenu({"userMessagesFeedOptionsClass":"div.user-messages-feed-options-menu a.lia-js-menu-opener","menuOffsetContainer":".lia-menu-offset-container","hoverLeaveEvent":"LITHIUM:hoverLeave","mouseoverElementSelector":".lia-js-mouseover-menu","userMessagesFeedOptionsAriaLabel":"Show contributions of the user, selected option is Show comment option menu. You may choose another option from the dropdown menu.","disabledLink":"lia-link-disabled","menuOpenCssClass":"dropdownHover","menuElementSelector":".lia-menu-navigation-wrapper","dialogSelector":".lia-panel-dialog-trigger","messageOptions":"lia-component-message-view-widget-action-menu","menuBarComponent":"lia-component-menu-bar","closeMenuEvent":"LITHIUM:closeMenu","menuOpenedEvent":"LITHIUM:menuOpened","pageOptions":"lia-component-community-widget-page-options","clickElementSelector":".lia-js-click-menu","menuItemsSelector":".lia-menu-dropdown-items","menuClosedEvent":"LITHIUM:menuClosed"}); LITHIUM.DropDownMenuVisibilityHandler({"selectors":{"menuSelector":"#actionMenuDropDown_1","menuItemsSelector":".lia-menu-dropdown-items"}}); LITHIUM.MessageBodyDisplay('#bodyDisplay_0', '.lia-truncated-body-container', '#viewMoreLink', '.lia-full-body-container' ); LITHIUM.AjaxSupport.fromLink('#kudoEntity_0', 'kudoEntity', '#ajaxfeedback_0', 'LITHIUM:ajaxError', {}, 'YN5EECaPC-9AkVOPUT12R5Rb3tv8o1FmV-j9heRGB-8.', 'ajax'); LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "kudoEntity", "actions" : [ { "context" : "envParam:entity", "action" : "rerender" } ] } ], "componentId" : "kudos.widget.button", "initiatorBinding" : true, "selector" : "#kudosButtonV2_0", "parameters" : { "displayStyle" : "horizontal", "disallowZeroCount" : "false", "revokeMode" : "true", "kudosable" : "true", "showCountOnly" : "false", "disableKudosForAnonUser" : "false", "useCountToKudo" : "false", "entity" : "240170", "linkDisabled" : "false" }, "initiatorDataMatcher" : "data-lia-kudos-id" }); LITHIUM.InlineMessageReplyContainer({"openEditsSelector":".lia-inline-message-edit","renderEventParams":{"replyWrapperId":"replyWrapper_0","messageId":240170,"messageActionsId":"messageActions_0"},"isRootMessage":false,"collapseEvent":"LITHIUM:collapseInlineMessageEditor","confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","messageActionsSelector":"#messageActions_0","loaderSelector":"#loader","topicMessageSelector":".lia-forum-topic-message-gte-5","containerSelector":"#inlineMessageReplyContainer_0","loaderEnabled":false,"useSimpleEditor":false,"isReplyButtonDisabled":false,"linearDisplayViewSelector":".lia-linear-display-message-view","threadedDetailDisplayViewSelector":".lia-threaded-detail-display-message-view","replyEditorPlaceholderWrapperSelector":".lia-placeholder-wrapper","renderEvent":"LITHIUM:renderInlineMessageReply","expandedRepliesSelector":".lia-inline-message-reply-form-expanded","isLazyLoadEnabled":false,"layoutView":"threaded","isAllowAnonUserToReply":false,"replyButtonSelector":".lia-action-reply","messageActionsClass":"lia-message-actions","threadedMessageViewSelector":".lia-threaded-display-message-view-wrapper","lazyLoadScriptsEvent":"LITHIUM:lazyLoadScripts","isGteForumV5":true}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineMessageReply"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer_0","action":"renderInlineMessageReply","feedbackSelector":"#inlineMessageReplyContainer_0","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:renderinlinemessagereply?t:ac=board-id/GEG_LATAMforum-board/message-id/1/thread-id/1&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"HqztyY1_eEUj5yCrqfTk2rmQaqJkWbft_B1PracPjv0."}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:lazyLoadScripts"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer_0","action":"lazyLoadScripts","feedbackSelector":"#inlineMessageReplyContainer_0","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:lazyloadscripts?t:ac=board-id/GEG_LATAMforum-board/message-id/1/thread-id/1&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"kE8LisqkQYqNuYMVQOzNwGIf6N3i_trNIfCCsA-mt3w."}); LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "approveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "unapproveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "deleteMessage", "actions" : [ { "context" : "lia-deleted-state", "action" : "addClassName" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "QuickReply", "actions" : [ { "context" : "envParam:feedbackData", "action" : "rerender" } ] }, { "event" : "expandMessage", "actions" : [ { "context" : "envParam:quiltName,expandedQuiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswer", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswerComment", "actions" : [ { "context" : "envParam:selectedMessage", "action" : "rerender" } ] }, { "event" : "editProductMessage", "actions" : [ { "context" : "envParam:quiltName,message", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAction", "actions" : [ { "context" : "envParam:quiltName,message,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "ProductMessageEdit", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "MessagesWidgetMessageEdit", "actions" : [ { "context" : "envParam:quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "AcceptSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "RevokeSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "markAsSpamWithoutRedirect", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "MessagesWidgetAnswerForm", "actions" : [ { "context" : "envParam:messageUid,page,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAnswerForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] } ], "componentId" : "forums.widget.message-view", "initiatorBinding" : true, "selector" : "#messageview_0", "parameters" : { "disableLabelLinks" : "false", "truncateBodyRetainsHtml" : "false", "forceSearchRequestParameterForBlurbBuilder" : "false", "kudosLinksDisabled" : "false", "useSubjectIcons" : "true", "quiltName" : "ForumMessage", "truncateBody" : "true", "message" : "240170", "includeRepliesModerationState" : "true", "syndicatedView" : "false", "useSimpleView" : "false", "useTruncatedSubject" : "true", "disableLinks" : "false", "messageViewOptions" : "1111110011111111111110111110100101111101", "displaySubject" : "true" }, "initiatorDataMatcher" : "data-lia-message-uid" }); LITHIUM.MessageViewDisplay({"openEditsSelector":".lia-inline-message-edit","renderInlineFormEvent":"LITHIUM:renderInlineEditForm","componentId":"threadeddetaildisplaymessageviewwrapper","componentSelector":"#threadeddetaildisplaymessageviewwrapper","editEvent":"LITHIUM:editMessageViaAjax","collapseEvent":"LITHIUM:collapseInlineMessageEditor","messageId":240170,"confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","loaderSelector":"#threadeddetaildisplaymessageviewwrapper .lia-message-body-loader .lia-loader","expandedRepliesSelector":".lia-inline-message-reply-form-expanded"}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineEditForm"},"tokenId":"ajax","elementSelector":"#threadeddetaildisplaymessageviewwrapper","action":"renderInlineEditForm","feedbackSelector":"#threadeddetaildisplaymessageviewwrapper","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.threadeddisplay_0.threadeddetaildisplaymessageviewwrapper:renderinlineeditform?t:ac=board-id/GEG_LATAMforum-board/message-id/1/thread-id/1","ajaxErrorEventName":"LITHIUM:ajaxError","token":"35ngty6nqFGp5PD2n1BviRnJpB7u61Xb2ss-VguFqeo."}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_5","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_6","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_7","feedbackSelector":".InfoMessage"}); LITHIUM.DropDownMenuVisibilityHandler({"selectors":{"menuSelector":"#actionMenuDropDown_2","menuItemsSelector":".lia-menu-dropdown-items"}}); LITHIUM.MessageBodyDisplay('#bodyDisplay_1', '.lia-truncated-body-container', '#viewMoreLink', '.lia-full-body-container' ); LITHIUM.AjaxSupport.fromLink('#kudoEntity_1', 'kudoEntity', '#ajaxfeedback_1', 'LITHIUM:ajaxError', {}, 'MHLmnfZ3Z3IHNTJWJXXhpmyH4_BcZleRVNxB3_JcAO8.', 'ajax'); LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "kudoEntity", "actions" : [ { "context" : "envParam:entity", "action" : "rerender" } ] } ], "componentId" : "kudos.widget.button", "initiatorBinding" : true, "selector" : "#kudosButtonV2_1", "parameters" : { "displayStyle" : "horizontal", "disallowZeroCount" : "false", "revokeMode" : "true", "kudosable" : "true", "showCountOnly" : "false", "disableKudosForAnonUser" : "false", "useCountToKudo" : "false", "entity" : "244777", "linkDisabled" : "false" }, "initiatorDataMatcher" : "data-lia-kudos-id" }); LITHIUM.InlineMessageReplyContainer({"openEditsSelector":".lia-inline-message-edit","renderEventParams":{"replyWrapperId":"replyWrapper_1","messageId":244777,"messageActionsId":"messageActions_1"},"isRootMessage":false,"collapseEvent":"LITHIUM:collapseInlineMessageEditor","confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","messageActionsSelector":"#messageActions_1","loaderSelector":"#loader","topicMessageSelector":".lia-forum-topic-message-gte-5","containerSelector":"#inlineMessageReplyContainer_1","loaderEnabled":false,"useSimpleEditor":false,"isReplyButtonDisabled":false,"linearDisplayViewSelector":".lia-linear-display-message-view","threadedDetailDisplayViewSelector":".lia-threaded-detail-display-message-view","replyEditorPlaceholderWrapperSelector":".lia-placeholder-wrapper","renderEvent":"LITHIUM:renderInlineMessageReply","expandedRepliesSelector":".lia-inline-message-reply-form-expanded","isLazyLoadEnabled":false,"layoutView":"threaded","isAllowAnonUserToReply":false,"replyButtonSelector":".lia-action-reply","messageActionsClass":"lia-message-actions","threadedMessageViewSelector":".lia-threaded-display-message-view-wrapper","lazyLoadScriptsEvent":"LITHIUM:lazyLoadScripts","isGteForumV5":true}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineMessageReply"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer_1","action":"renderInlineMessageReply","feedbackSelector":"#inlineMessageReplyContainer_1","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:renderinlinemessagereply?t:ac=board-id/GEG_LATAMforum-board/message-id/1/thread-id/1&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"Pr4-YDzdT8m7Gi10NA86Nuam7hib3vEh1g29OjDGovw."}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:lazyLoadScripts"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer_1","action":"lazyLoadScripts","feedbackSelector":"#inlineMessageReplyContainer_1","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:lazyloadscripts?t:ac=board-id/GEG_LATAMforum-board/message-id/1/thread-id/1&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"P5q9neznEpOHA5h1CHQy8jR7KQ3ddcj4GWJwm62LW0M."}); LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "approveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "unapproveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "deleteMessage", "actions" : [ { "context" : "lia-deleted-state", "action" : "addClassName" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "QuickReply", "actions" : [ { "context" : "envParam:feedbackData", "action" : "rerender" } ] }, { "event" : "expandMessage", "actions" : [ { "context" : "envParam:quiltName,expandedQuiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswer", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswerComment", "actions" : [ { "context" : "envParam:selectedMessage", "action" : "rerender" } ] }, { "event" : "editProductMessage", "actions" : [ { "context" : "envParam:quiltName,message", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAction", "actions" : [ { "context" : "envParam:quiltName,message,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "ProductMessageEdit", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "MessagesWidgetMessageEdit", "actions" : [ { "context" : "envParam:quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "AcceptSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "RevokeSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "markAsSpamWithoutRedirect", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "MessagesWidgetAnswerForm", "actions" : [ { "context" : "envParam:messageUid,page,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAnswerForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] } ], "componentId" : "forums.widget.message-view", "initiatorBinding" : true, "selector" : "#messageview_1", "parameters" : { "disableLabelLinks" : "false", "truncateBodyRetainsHtml" : "false", "forceSearchRequestParameterForBlurbBuilder" : "false", "kudosLinksDisabled" : "false", "useSubjectIcons" : "true", "quiltName" : "ForumMessage", "truncateBody" : "true", "message" : "244777", "includeRepliesModerationState" : "true", "syndicatedView" : "false", "useSimpleView" : "false", "useTruncatedSubject" : "true", "disableLinks" : "false", "messageViewOptions" : "1111110011111111111110111110100101111101", "displaySubject" : "true" }, "initiatorDataMatcher" : "data-lia-message-uid" }); LITHIUM.MessageViewDisplay({"openEditsSelector":".lia-inline-message-edit","renderInlineFormEvent":"LITHIUM:renderInlineEditForm","componentId":"threadeddetaildisplaymessageviewwrapper_0","componentSelector":"#threadeddetaildisplaymessageviewwrapper_0","editEvent":"LITHIUM:editMessageViaAjax","collapseEvent":"LITHIUM:collapseInlineMessageEditor","messageId":244777,"confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","loaderSelector":"#threadeddetaildisplaymessageviewwrapper_0 .lia-message-body-loader .lia-loader","expandedRepliesSelector":".lia-inline-message-reply-form-expanded"}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineEditForm"},"tokenId":"ajax","elementSelector":"#threadeddetaildisplaymessageviewwrapper_0","action":"renderInlineEditForm","feedbackSelector":"#threadeddetaildisplaymessageviewwrapper_0","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.threadeddisplay_0.threadeddetaildisplaymessageviewwrapper:renderinlineeditform?t:ac=board-id/GEG_LATAMforum-board/message-id/1/thread-id/1","ajaxErrorEventName":"LITHIUM:ajaxError","token":"QAY4EzmExneuvJ2b8dnikv4pZgRwcGRUMAfTMBGeMR4."}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_8","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_9","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_10","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_11","feedbackSelector":".InfoMessage"}); LITHIUM.DropDownMenuVisibilityHandler({"selectors":{"menuSelector":"#actionMenuDropDown_3","menuItemsSelector":".lia-menu-dropdown-items"}}); LITHIUM.MessageBodyDisplay('#bodyDisplay_2', '.lia-truncated-body-container', '#viewMoreLink', '.lia-full-body-container' ); LITHIUM.AjaxSupport.fromLink('#kudoEntity_2', 'kudoEntity', '#ajaxfeedback_2', 'LITHIUM:ajaxError', {}, 'IdP4joNQDCRQOnQSW9TCQt0yX0KEzX903lQdvjUmnwM.', 'ajax'); LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "kudoEntity", "actions" : [ { "context" : "envParam:entity", "action" : "rerender" } ] } ], "componentId" : "kudos.widget.button", "initiatorBinding" : true, "selector" : "#kudosButtonV2_2", "parameters" : { "displayStyle" : "horizontal", "disallowZeroCount" : "false", "revokeMode" : "true", "kudosable" : "true", "showCountOnly" : "false", "disableKudosForAnonUser" : "false", "useCountToKudo" : "false", "entity" : "240170", "linkDisabled" : "false" }, "initiatorDataMatcher" : "data-lia-kudos-id" }); LITHIUM.InlineMessageReplyContainer({"openEditsSelector":".lia-inline-message-edit","renderEventParams":{"replyWrapperId":"replyWrapper_2","messageId":240170,"messageActionsId":"messageActions_2"},"isRootMessage":false,"collapseEvent":"LITHIUM:collapseInlineMessageEditor","confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","messageActionsSelector":"#messageActions_2","loaderSelector":"#loader","topicMessageSelector":".lia-forum-topic-message-gte-5","containerSelector":"#inlineMessageReplyContainer_2","loaderEnabled":false,"useSimpleEditor":false,"isReplyButtonDisabled":false,"linearDisplayViewSelector":".lia-linear-display-message-view","threadedDetailDisplayViewSelector":".lia-threaded-detail-display-message-view","replyEditorPlaceholderWrapperSelector":".lia-placeholder-wrapper","renderEvent":"LITHIUM:renderInlineMessageReply","expandedRepliesSelector":".lia-inline-message-reply-form-expanded","isLazyLoadEnabled":false,"layoutView":"threaded","isAllowAnonUserToReply":false,"replyButtonSelector":".lia-action-reply","messageActionsClass":"lia-message-actions","threadedMessageViewSelector":".lia-threaded-display-message-view-wrapper","lazyLoadScriptsEvent":"LITHIUM:lazyLoadScripts","isGteForumV5":true}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineMessageReply"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer_2","action":"renderInlineMessageReply","feedbackSelector":"#inlineMessageReplyContainer_2","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:renderinlinemessagereply?t:ac=board-id/GEG_LATAMforum-board/message-id/1/thread-id/1&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"XN-AXCxT-jDqt9N2VVO9X1n8_nnnWfrctHSlldU9tTI."}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:lazyLoadScripts"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer_2","action":"lazyLoadScripts","feedbackSelector":"#inlineMessageReplyContainer_2","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:lazyloadscripts?t:ac=board-id/GEG_LATAMforum-board/message-id/1/thread-id/1&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"-NAADL11KQotDl23hu8izHMXIMy32CiA70DCFpfo_AI."}); LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "approveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "unapproveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "deleteMessage", "actions" : [ { "context" : "lia-deleted-state", "action" : "addClassName" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "QuickReply", "actions" : [ { "context" : "envParam:feedbackData", "action" : "rerender" } ] }, { "event" : "expandMessage", "actions" : [ { "context" : "envParam:quiltName,expandedQuiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswer", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswerComment", "actions" : [ { "context" : "envParam:selectedMessage", "action" : "rerender" } ] }, { "event" : "editProductMessage", "actions" : [ { "context" : "envParam:quiltName,message", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAction", "actions" : [ { "context" : "envParam:quiltName,message,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "ProductMessageEdit", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "MessagesWidgetMessageEdit", "actions" : [ { "context" : "envParam:quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "AcceptSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "RevokeSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "markAsSpamWithoutRedirect", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "MessagesWidgetAnswerForm", "actions" : [ { "context" : "envParam:messageUid,page,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAnswerForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] } ], "componentId" : "forums.widget.message-view", "initiatorBinding" : true, "selector" : "#messageview_2", "parameters" : { "disableLabelLinks" : "false", "truncateBodyRetainsHtml" : "false", "forceSearchRequestParameterForBlurbBuilder" : "false", "kudosLinksDisabled" : "false", "useSubjectIcons" : "true", "quiltName" : "ForumMessage", "truncateBody" : "true", "message" : "240170", "includeRepliesModerationState" : "true", "syndicatedView" : "false", "useSimpleView" : "false", "useTruncatedSubject" : "true", "disableLinks" : "false", "messageViewOptions" : "1111110111111111111110111110100101011101", "displaySubject" : "true" }, "initiatorDataMatcher" : "data-lia-message-uid" }); LITHIUM.MessageViewDisplay({"openEditsSelector":".lia-inline-message-edit","renderInlineFormEvent":"LITHIUM:renderInlineEditForm","componentId":"threadeddetaildisplaymessageviewwrapper_1","componentSelector":"#threadeddetaildisplaymessageviewwrapper_1","editEvent":"LITHIUM:editMessageViaAjax","collapseEvent":"LITHIUM:collapseInlineMessageEditor","messageId":240170,"confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","loaderSelector":"#threadeddetaildisplaymessageviewwrapper_1 .lia-message-body-loader .lia-loader","expandedRepliesSelector":".lia-inline-message-reply-form-expanded"}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineEditForm"},"tokenId":"ajax","elementSelector":"#threadeddetaildisplaymessageviewwrapper_1","action":"renderInlineEditForm","feedbackSelector":"#threadeddetaildisplaymessageviewwrapper_1","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.threadeddetaildisplay.threadeddetailmessagelist.threadeddetaildisplaymessageviewwrapper:renderinlineeditform?t:ac=board-id/GEG_LATAMforum-board/message-id/1/thread-id/1","ajaxErrorEventName":"LITHIUM:ajaxError","token":"C1N8w2hlIuaQkdnBNWyUzg6hQycP8KfXQ7LuWzbYaIs."}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_12","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_13","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_14","feedbackSelector":".InfoMessage"}); LITHIUM.DropDownMenuVisibilityHandler({"selectors":{"menuSelector":"#actionMenuDropDown_4","menuItemsSelector":".lia-menu-dropdown-items"}}); LITHIUM.MessageBodyDisplay('#bodyDisplay_3', '.lia-truncated-body-container', '#viewMoreLink', '.lia-full-body-container' ); LITHIUM.AjaxSupport.fromLink('#kudoEntity_3', 'kudoEntity', '#ajaxfeedback_3', 'LITHIUM:ajaxError', {}, 'fevLfvxZdbV1HQgW0QpAn_fzhYoAxWmkVNx9g80No-U.', 'ajax'); LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "kudoEntity", "actions" : [ { "context" : "envParam:entity", "action" : "rerender" } ] } ], "componentId" : "kudos.widget.button", "initiatorBinding" : true, "selector" : "#kudosButtonV2_3", "parameters" : { "displayStyle" : "horizontal", "disallowZeroCount" : "false", "revokeMode" : "true", "kudosable" : "true", "showCountOnly" : "false", "disableKudosForAnonUser" : "false", "useCountToKudo" : "false", "entity" : "244777", "linkDisabled" : "false" }, "initiatorDataMatcher" : "data-lia-kudos-id" }); LITHIUM.InlineMessageReplyContainer({"openEditsSelector":".lia-inline-message-edit","renderEventParams":{"replyWrapperId":"replyWrapper_3","messageId":244777,"messageActionsId":"messageActions_3"},"isRootMessage":false,"collapseEvent":"LITHIUM:collapseInlineMessageEditor","confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","messageActionsSelector":"#messageActions_3","loaderSelector":"#loader","topicMessageSelector":".lia-forum-topic-message-gte-5","containerSelector":"#inlineMessageReplyContainer_3","loaderEnabled":false,"useSimpleEditor":false,"isReplyButtonDisabled":false,"linearDisplayViewSelector":".lia-linear-display-message-view","threadedDetailDisplayViewSelector":".lia-threaded-detail-display-message-view","replyEditorPlaceholderWrapperSelector":".lia-placeholder-wrapper","renderEvent":"LITHIUM:renderInlineMessageReply","expandedRepliesSelector":".lia-inline-message-reply-form-expanded","isLazyLoadEnabled":false,"layoutView":"threaded","isAllowAnonUserToReply":false,"replyButtonSelector":".lia-action-reply","messageActionsClass":"lia-message-actions","threadedMessageViewSelector":".lia-threaded-display-message-view-wrapper","lazyLoadScriptsEvent":"LITHIUM:lazyLoadScripts","isGteForumV5":true}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineMessageReply"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer_3","action":"renderInlineMessageReply","feedbackSelector":"#inlineMessageReplyContainer_3","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:renderinlinemessagereply?t:ac=board-id/GEG_LATAMforum-board/message-id/1/thread-id/1&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"4JKkiwI0CJ8HSyMbQ3eeXGsi72wgs8VCDskgsDJvowo."}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:lazyLoadScripts"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer_3","action":"lazyLoadScripts","feedbackSelector":"#inlineMessageReplyContainer_3","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:lazyloadscripts?t:ac=board-id/GEG_LATAMforum-board/message-id/1/thread-id/1&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"R64r8I4vDVoXbga8xvEJFC0clgMPBnWjhG9GY4_B6J4."}); LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "approveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "unapproveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "deleteMessage", "actions" : [ { "context" : "lia-deleted-state", "action" : "addClassName" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "QuickReply", "actions" : [ { "context" : "envParam:feedbackData", "action" : "rerender" } ] }, { "event" : "expandMessage", "actions" : [ { "context" : "envParam:quiltName,expandedQuiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswer", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswerComment", "actions" : [ { "context" : "envParam:selectedMessage", "action" : "rerender" } ] }, { "event" : "editProductMessage", "actions" : [ { "context" : "envParam:quiltName,message", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAction", "actions" : [ { "context" : "envParam:quiltName,message,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "ProductMessageEdit", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "MessagesWidgetMessageEdit", "actions" : [ { "context" : "envParam:quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "AcceptSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "RevokeSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "markAsSpamWithoutRedirect", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "MessagesWidgetAnswerForm", "actions" : [ { "context" : "envParam:messageUid,page,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAnswerForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] } ], "componentId" : "forums.widget.message-view", "initiatorBinding" : true, "selector" : "#messageview_3", "parameters" : { "disableLabelLinks" : "false", "truncateBodyRetainsHtml" : "false", "forceSearchRequestParameterForBlurbBuilder" : "false", "kudosLinksDisabled" : "false", "useSubjectIcons" : "true", "quiltName" : "ForumMessage", "truncateBody" : "true", "message" : "244777", "includeRepliesModerationState" : "true", "syndicatedView" : "false", "useSimpleView" : "false", "useTruncatedSubject" : "true", "disableLinks" : "false", "messageViewOptions" : "1111110111111111111110111110100101011101", "displaySubject" : "true" }, "initiatorDataMatcher" : "data-lia-message-uid" }); LITHIUM.MessageViewDisplay({"openEditsSelector":".lia-inline-message-edit","renderInlineFormEvent":"LITHIUM:renderInlineEditForm","componentId":"threadeddetaildisplaymessageviewwrapper_2","componentSelector":"#threadeddetaildisplaymessageviewwrapper_2","editEvent":"LITHIUM:editMessageViaAjax","collapseEvent":"LITHIUM:collapseInlineMessageEditor","messageId":244777,"confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","loaderSelector":"#threadeddetaildisplaymessageviewwrapper_2 .lia-message-body-loader .lia-loader","expandedRepliesSelector":".lia-inline-message-reply-form-expanded"}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineEditForm"},"tokenId":"ajax","elementSelector":"#threadeddetaildisplaymessageviewwrapper_2","action":"renderInlineEditForm","feedbackSelector":"#threadeddetaildisplaymessageviewwrapper_2","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.threadeddetaildisplay.threadeddetailmessagelist.threadeddetaildisplaymessageviewwrapper:renderinlineeditform?t:ac=board-id/GEG_LATAMforum-board/message-id/1/thread-id/1","ajaxErrorEventName":"LITHIUM:ajaxError","token":"EUicbdvUsVyrZtMayjiuiGJ77KSFnDwshne56ZL4AwY."}); LITHIUM.ThreadedDetailMessageList({"renderLoadMoreEvent":"LITHIUM:renderLoadMoreMessages","loadingText":"Loading...","placeholderClass":"lia-messages-threadedDetailList-placeholder","loadFetchSelector":"#threadeddetailmessagelist .lia-load-fetch","rootMessageId":240131,"loadPageNumber":1}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderLoadMoreMessages","parameters":{"javascript.ignore_combine_and_minify":"true"}},"tokenId":"ajax","elementSelector":"#threadeddetailmessagelist .lia-load-fetch","action":"renderLoadMoreMessages","feedbackSelector":"#ajaxFeedback","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.threadeddetaildisplay.threadeddetailmessagelist:renderloadmoremessages?t:ac=board-id/GEG_LATAMforum-board/message-id/1/thread-id/1","ajaxErrorEventName":"LITHIUM:ajaxError","token":"0DU2eY2tvVFJjees4M2PgXhhYSBPnX7pmR3kog6Z0jg."}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_15","feedbackSelector":".InfoMessage"}); LITHIUM.Placeholder(); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_16","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_17","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_18","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_19","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_20","feedbackSelector":".InfoMessage"}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:getMentions","parameters":{"javascript.ignore_combine_and_minify":"true"}},"tokenId":"ajax","elementSelector":document,"action":"getMentions","feedbackSelector":false,"url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.threadeddetaildisplay.inlinemessagereplyeditor_0.form.messageeditor.tinymceeditor:getmentions?t:ac=board-id/GEG_LATAMforum-board/message-id/1/thread-id/1","ajaxErrorEventName":"LITHIUM:ajaxError","token":"XadmatMVTNWuLaV87CJttPFIkvqI0_EF5DBOmmI_L7E."}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:getProductMentions","parameters":{"javascript.ignore_combine_and_minify":"true"}},"tokenId":"ajax","elementSelector":document,"action":"getProductMentions","feedbackSelector":false,"url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.threadeddetaildisplay.inlinemessagereplyeditor_0.form.messageeditor.tinymceeditor:getproductmentions?t:ac=board-id/GEG_LATAMforum-board/message-id/1/thread-id/1","ajaxErrorEventName":"LITHIUM:ajaxError","token":"QLsOXrzuSbH5R0G7h0390tQWVdXdYc2meqVuNZfkPz4."}); LITHIUM.Mentions = {"minSearchLength":3,"maxSearchLength":15,"allowSpaces":false,"loadingImgUrl":"/skins/images/F4C6F8C3C4FA1A1ED997AD299BFAC30A/responsive_peak/images/feedback_loading_trans.gif","headerText":{"atMention":"Type 3 or more letters of a user's name to search","hashMention":"Type 3 or more letters of a product's title to search"},"defaultMentions":{"atMention":{"loginList":[],"content":"

\n\t\t

    \n\t\n \n \n\t\n\t\t\n\t\t
  • \n

    \n Users\n <\/div>\n\t\t\t<\/li>\n\t\t\n\t\t\n\t\t\t

  • \n\t\t\t\t

    \n\t\n\n\t\n\n\t\n\n\t\n\n\t\n\t\t\t\n\t\t

    \n

    \n\t\n\t\t\t\n\t\t\t\tEGazzella\n\t\t\t\t\t\n\t\t\t\t<\/span>\n\t\t\t\t\n\t\t\t\n\t\t\n<\/div> <\/div>\n\n\t\n\t\t\n\n\t

    \n\t\t\n\t\t\t\n\t\t

    \n\t\t\t\n\t\n\n\t\n\t\t\t\n\t\t\t\t\n\t\t\n\t\t\n\t\t\tEGazzella<\/span><\/span>\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\n\t\t\t<\/span>\n\t\t\n\n\t\t<\/div>\n\t\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\t<\/div>\n<\/div>\n\t\t\t\t<\/input>\n\t\t\t<\/li>\n\t\t\n\t\t\t

  • \n\t\t\t\t

    \n\t\n\n\t\n\n\t\n\n\t\n\n\t\n\t\t\t\n\t\t

    \n

    \n\t\n\t\t\t\n\t\t\t\tisaacdiaz44\n\t\t\t\t\t\n\t\t\t\t<\/span>\n\t\t\t\t\n\t\t\t\n\t\t\n<\/div> <\/div>\n\n\t\n\t\t\n\n\t

    \n\t\t\n\t\t\t\n\t\t

    \n\t\t\t\n\t\n\n\t\n\t\t\t\n\t\t\t\t\n\t\t\n\t\t\n\t\t\tisaacdiaz44<\/span><\/span>\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\n\t\t\t<\/span>\n\t\t\n\n\t\t<\/div>\n\t\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\t<\/div>\n<\/div>\n\t\t\t\t<\/input>\n\t\t\t<\/li>\n\t\t\n\t\t\t

  • \n\t\t\t\t

    \n\t\n\n\t\n\n\t\n\n\t\n\n\t\n\t\t\t\n\t\t

    \n

    \n\t\n\t\t\t\n\t\t\t\tSabina_Hussaini\n\t\t\t\t\t\n\t\t\t\t<\/span>\n\t\t\t\t\n\t\t\t\n\t\t\n<\/div> <\/div>\n\n\t\n\t\t\n\n\t

    \n\t\t\n\t\t\t\n\t\t

    \n\t\t\t\n\t\n\n\t\n\t\t\t\n\t\t\t\t\n\t\t\"Community\n\t\t\n\t\t\tSabina_Hussaini<\/span><\/span>\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\n\t\t\t<\/span>\n\t\t\n\n\t\t<\/div>\n\t\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\t<\/div>\n<\/div>\n\t\t\t\t<\/input>\n\t\t\t<\/li>\n\t\t\n\t\t\n\t\t\n\t\n\n \n \n\t\t\t\n<\/ul>\n\t\t<\/div>"},"hashMention":{"content":"

    \n\t\t\t\t\n\t\t\t<\/div>"}},"maxProductSearchLength":30}; LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:getAutoTitle","parameters":{"javascript.ignore_combine_and_minify":"true"}},"tokenId":"ajax","elementSelector":document,"action":"getAutoTitle","feedbackSelector":false,"url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.threadeddetaildisplay.inlinemessagereplyeditor_0.form.messageeditor.tinymceeditor:getautotitle?t:ac=board-id/GEG_LATAMforum-board/message-id/1/thread-id/1","ajaxErrorEventName":"LITHIUM:ajaxError","token":"q--ziveboZs5-3GV_TheNydmyd9dHs7jjLejWT8HgTc."}); LITHIUM.ImageUploaderPopupPage = "/t5/media/imageuploaderpopuppage/board-id/GEG_LATAMforum-board"; LITHIUM.EmoticonsPopupPage = "/t5/util/emoticonspopuppage"; LITHIUM.TinyMceEditor.emoji = {"tones":"{\"tone-0\":{\"lia_baby\":\"/html/@C144100D60960C1AE75F4835F320B425/emoticons/1f476.png\",\"lia_boy\":\"/html/@11048ABF9254E6325748E4FA473AD4B1/emoticons/1f466.png\",\"lia_girl\":\"/html/@C1993237454866F3041AFAFDE4CFA468/emoticons/1f467.png\",\"lia_man\":\"/html/@6CE67DFF6D7218D3206F3AACA7015CCC/emoticons/1f468.png\",\"lia_woman\":\"/html/@11F02A11F6CD0A1F1836727839B55DC3/emoticons/1f469.png\",\"lia_old-man\":\"/html/@124367FF5C2F83D3A87DB8CEBF966694/emoticons/1f474.png\",\"lia_old-woman\":\"/html/@CF7B6AAAD6FEA2EE5964E37C27357374/emoticons/1f475.png\",\"lia_man-health-worker\":\"/html/@7ECA311DA0A0E4B99A961D9741F41544/emoticons/1f468_200d_2695.png\",\"lia_woman-health-worker\":\"/html/@76C55061069278D076D60000BD2FF131/emoticons/1f469_200d_2695.png\",\"lia_man-student\":\"/html/@C4F24A97D447EAB6AA69E3F6DDA0790B/emoticons/1f468_200d_1f393.png\",\"lia_woman-student\":\"/html/@B0B78CD77A26BC3CCADA496A6796FD45/emoticons/1f469_200d_1f393.png\",\"lia_man-teacher\":\"/html/@FF03AC274B1623EC3873CA76DF7D47B4/emoticons/1f468_200d_1f3eb.png\",\"lia_woman-teacher\":\"/html/@DB7BBFC9F75595631ADFF8F8727657BF/emoticons/1f469_200d_1f3eb.png\",\"lia_man-judge\":\"/html/@1205105C28113ECEA0342F7F3C31861C/emoticons/1f468_200d_2696.png\",\"lia_woman-judge\":\"/html/@D6C064717C2BF9591000177B4EECB30D/emoticons/1f469_200d_2696.png\",\"lia_man-farmer\":\"/html/@FF66CCCFB61CDF33F1BF0FD1F86BD9C1/emoticons/1f468_200d_1f33e.png\",\"lia_woman-farmer\":\"/html/@36F8A0A8D2F516A6BFE155BB2B45A2F0/emoticons/1f469_200d_1f33e.png\",\"lia_man-cook\":\"/html/@6B48380171777B3925256FDA1335139D/emoticons/1f468_200d_1f373.png\",\"lia_woman-cook\":\"/html/@075C9583BFAA59E0BC5DEF8BC9C415AE/emoticons/1f469_200d_1f373.png\",\"lia_man-mechanic\":\"/html/@ABD43260C7863033EB703A224C16D2F1/emoticons/1f468_200d_1f527.png\",\"lia_woman-mechanic\":\"/html/@67C751394EBB020FCEDEC233D0241DB2/emoticons/1f469_200d_1f527.png\",\"lia_man-factory-worker\":\"/html/@671C8619C7A4971365097184E54D93AB/emoticons/1f468_200d_1f3ed.png\",\"lia_woman-factory-worker\":\"/html/@EC7D44D63A078CA8CFB2780A55257D20/emoticons/1f469_200d_1f3ed.png\",\"lia_man-office-worker\":\"/html/@BAA8AA22EC7D6CB4A87C11CB09046152/emoticons/1f468_200d_1f4bc.png\",\"lia_woman-office-worker\":\"/html/@1314EA2E36AFEDFC3EF8CA649C4BF2E0/emoticons/1f469_200d_1f4bc.png\",\"lia_man-scientist\":\"/html/@57284582F0FDEC71E4B83FFE35B1961E/emoticons/1f468_200d_1f52c.png\",\"lia_woman-scientist\":\"/html/@9171EB909C266D124191F6592733D45C/emoticons/1f469_200d_1f52c.png\",\"lia_man-technologist\":\"/html/@F4E13672EE134DE6B0EFA3DEE2AFCB0B/emoticons/1f468_200d_1f4bb.png\",\"lia_woman-technologist\":\"/html/@A21B3CD4291E97A6B1EC40840A47ED55/emoticons/1f469_200d_1f4bb.png\",\"lia_man-singer\":\"/html/@43007BC382AA99E2DDA3A31500E6A7D8/emoticons/1f468_200d_1f3a4.png\",\"lia_woman-singer\":\"/html/@8B8127081245EBFEF7FF6B77A7CB7CEE/emoticons/1f469_200d_1f3a4.png\",\"lia_man-artist\":\"/html/@C2F6E28A31725FA0D0BEDF87C347FC43/emoticons/1f468_200d_1f3a8.png\",\"lia_woman-artist\":\"/html/@B8AE2C5C20DEE3AB8AA54CA78AF9F1D1/emoticons/1f469_200d_1f3a8.png\",\"lia_man-pilot\":\"/html/@D35A223AC002D03C9C35A9437D35711D/emoticons/1f468_200d_2708.png\",\"lia_woman-pilot\":\"/html/@26C17C2CB4DB94763D921783776F8C4D/emoticons/1f469_200d_2708.png\",\"lia_man-astronaut\":\"/html/@0C42E7747E9D40062AD0A21B45262096/emoticons/1f468_200d_1f680.png\",\"lia_woman-astronaut\":\"/html/@8626E3B534ED1DC7BF6BB417484A1794/emoticons/1f469_200d_1f680.png\",\"lia_man-firefighter\":\"/html/@0FBCFAA4746AD3D6E6E2EC6859301525/emoticons/1f468_200d_1f692.png\",\"lia_woman-firefighter\":\"/html/@7C2F2F51922D70E4A4032C173E758812/emoticons/1f469_200d_1f692.png\",\"lia_prince\":\"/html/@866F2A2B608798E60290302015B0BC52/emoticons/1f934.png\",\"lia_princess\":\"/html/@157B71D0A95162F8BCA055745E742C13/emoticons/1f478.png\",\"lia_man-with-chinese-cap\":\"/html/@9DDAC653E0C332B3B74B956517631CAB/emoticons/1f472.png\",\"lia_man-in-tuxedo\":\"/html/@DA47A0F1A5AB77FB33083E30C97F8AD9/emoticons/1f935.png\",\"lia_bride-with-veil\":\"/html/@188249C7E838E15D5AA7FB8776F90D17/emoticons/1f470.png\",\"lia_pregnant-woman\":\"/html/@93E13CF5647AA06C28777439089726CB/emoticons/1f930.png\",\"lia_baby-angel\":\"/html/@66673D6320772250C494328B2AE23C72/emoticons/1f47c.png\",\"lia_santa-claus\":\"/html/@71BE0FBB2691DDE784F046E5FEBC55B0/emoticons/1f385.png\",\"lia_mrs.-claus\":\"/html/@08F7E5BC7FFE74B501D9F94122D667D8/emoticons/1f936.png\",\"lia_woman-dancing\":\"/html/@D10D1E5C40B80CE847CC718720F11E89/emoticons/1f483.png\",\"lia_man-dancing\":\"/html/@8607C8081C7144E5723EB10B78C58C1D/emoticons/1f57a.png\",\"lia_person-taking-bath\":\"/html/@230B9D31C3B81A07B4434B40076547E7/emoticons/1f6c0.png\",\"lia_person-in-bed\":\"/html/@30D78C8741DE6BDF235BE8D3E0253B52/emoticons/1f6cc.png\",\"lia_man-in-suit-levitating\":\"/html/@5E00623CC40D30597EC9665E370B6819/emoticons/1f574.png\",\"lia_horse-racing\":\"/html/@47A1880F982D9A66DE6EFCF78A90F193/emoticons/1f3c7.png\",\"lia_snowboarder\":\"/html/@4352C580AF161927E47401765D9064CB/emoticons/1f3c2.png\",\"lia_selfie\":\"/html/@4388DE79FD4AF8B96E1C9B52A66F36AD/emoticons/1f933.png\",\"lia_flexed-biceps\":\"/html/@78FE31B2E57B2F45A45474A6BB26F3E0/emoticons/1f4aa.png\",\"lia_backhand-index-pointing-left\":\"/html/@D8BD58A0376EAE35EC4D491C49734E3C/emoticons/1f448.png\",\"lia_backhand-index-pointing-right\":\"/html/@27BF5E7546394521AE30392AF01A6232/emoticons/1f449.png\",\"lia_index-pointing-up\":\"/html/@44DF2AFBB539068CFE6135ABB43147BC/emoticons/261d.png\",\"lia_backhand-index-pointing-up\":\"/html/@8981883E45831C4B9010E9614A945711/emoticons/1f446.png\",\"lia_middle-finger\":\"/html/@3F727AB29322675BDDABC864508461F8/emoticons/1f595.png\",\"lia_backhand-index-pointing-down\":\"/html/@C4426CBCED7274238B36789587DE3E4E/emoticons/1f447.png\",\"lia_victory-hand\":\"/html/@58B60AE2C5A56443FFC1B172E647930D/emoticons/270c.png\",\"lia_crossed-fingers\":\"/html/@6C3E9BDCE0E09494FC7C0BE50C129DED/emoticons/1f91e.png\",\"lia_vulcan-salute\":\"/html/@7737ECD27F0F314BEE3F1651B9C04C40/emoticons/1f596.png\",\"lia_sign-of-the-horns\":\"/html/@30BEA46A1E9F6B899E33388F5CEB625F/emoticons/1f918.png\",\"lia_call-me-hand\":\"/html/@0BED007DD9BDF466A271615D870F3511/emoticons/1f919.png\",\"lia_hand-with-fingers-splayed\":\"/html/@367908783B1123C8CCD242032050ADA1/emoticons/1f590.png\",\"lia_raised-hand\":\"/html/@1A2A99D338DC03624349EC1A0C3E83B3/emoticons/270b.png\",\"lia_ok-hand\":\"/html/@BC7D1AEA13F6CE68E591DBDAB1C9BAC5/emoticons/1f44c.png\",\"lia_thumbs-up\":\"/html/@8EC22078441FC292D7AAFAB9C5E661AF/emoticons/1f44d.png\",\"lia_thumbs-down\":\"/html/@885BA8B0591DE5971753786F8D02022F/emoticons/1f44e.png\",\"lia_raised-fist\":\"/html/@67785EA24CB647E916961CC824769A0B/emoticons/270a.png\",\"lia_oncoming-fist\":\"/html/@773A2A0F8A9CD6A896A7460DA248E773/emoticons/1f44a.png\",\"lia_left-facing-fist\":\"/html/@2C709D879610F38B60FD64349C577762/emoticons/1f91b.png\",\"lia_right-facing-fist\":\"/html/@03EAE6E59A4EC30418860035C0680076/emoticons/1f91c.png\",\"lia_raised-back-of-hand\":\"/html/@3F1092686A3505A0240BD36B25F72704/emoticons/1f91a.png\",\"lia_waving-hand\":\"/html/@FB2D60106DDA0431427D43B813E724C1/emoticons/1f44b.png\",\"lia_writing-hand\":\"/html/@F61307046096169ED548DDD3B0EBCA80/emoticons/270d.png\",\"lia_clapping-hands\":\"/html/@4068A0C41700543BEBAE2E23FA6FB447/emoticons/1f44f.png\",\"lia_open-hands\":\"/html/@4C5DCA342E4CC60ED67834A93261C86E/emoticons/1f450.png\",\"lia_raising-hands\":\"/html/@C1D351473768647205892C578A461F5C/emoticons/1f64c.png\",\"lia_folded-hands\":\"/html/@BB492B4C3E8E9F58BB15C84454BD1D9B/emoticons/1f64f.png\",\"lia_nail-polish\":\"/html/@667AB0D223EDC759264F1C4088F242F0/emoticons/1f485.png\",\"lia_ear\":\"/html/@49727EB98BA8619D11E81E2AC2B27FE1/emoticons/1f442.png\",\"lia_nose\":\"/html/@06CCEC6CAAD98E0733B1A725761FDAD5/emoticons/1f443.png\"},\"tone-2\":{\"lia_baby-tone-2\":\"/html/@F52599E2B5A62D0949D5E36B19E4EF9D/emoticons/1f476_1f3fc.png\",\"lia_boy-tone-2\":\"/html/@D8A4B50948920ED406C03E97E14E5CD4/emoticons/1f466_1f3fc.png\",\"lia_girl-tone-2\":\"/html/@D2D375F71A706F2501866AA7D677F248/emoticons/1f467_1f3fc.png\",\"lia_man-tone-2\":\"/html/@96AC64896D14822DB8ABD9E180B2F14A/emoticons/1f468_1f3fc.png\",\"lia_woman-tone-2\":\"/html/@D03ABCCC1A4ED1132B064108EA31C41D/emoticons/1f469_1f3fc.png\",\"lia_old-man-tone-2\":\"/html/@17B19C036FD088D151268A6CF613EB41/emoticons/1f474_1f3fc.png\",\"lia_old-woman-tone-2\":\"/html/@712667B9FC206E0A6F324AC0DC566C9B/emoticons/1f475_1f3fc.png\",\"lia_man-health-worker-tone-2\":\"/html/@503D20240AA0160997AEAAFB97FA7BA6/emoticons/1f468_1f3fc_200d_2695.png\",\"lia_woman-health-worker-tone-2\":\"/html/@02C2902073396C3351D690083790BD8F/emoticons/1f469_1f3fc_200d_2695.png\",\"lia_man-student-tone-2\":\"/html/@9CF366F1CFBC70AA3BA7F7CB3E3747E2/emoticons/1f468_1f3fc_200d_1f393.png\",\"lia_woman-student-tone-2\":\"/html/@ECD37A05C6A65D487C9B8B0F00DEEE49/emoticons/1f469_1f3fc_200d_1f393.png\",\"lia_man-teacher-tone-2\":\"/html/@3F45B59A95AE7ADC06E6B1F8A55D7E32/emoticons/1f468_1f3fc_200d_1f3eb.png\",\"lia_woman-teacher-tone-2\":\"/html/@851410D782B98FFB3E96CC777FC51037/emoticons/1f469_1f3fc_200d_1f3eb.png\",\"lia_man-judge-tone-2\":\"/html/@0321B16D517CF28456AB88FA641A14E4/emoticons/1f468_1f3fc_200d_2696.png\",\"lia_woman-judge-tone-2\":\"/html/@6BB1D156D2587898AB4EC94DDE5B2180/emoticons/1f469_1f3fc_200d_2696.png\",\"lia_man-farmer-tone-2\":\"/html/@9C9578DD551F349A2E685C55C58345F5/emoticons/1f468_1f3fc_200d_1f33e.png\",\"lia_woman-farmer-tone-2\":\"/html/@5829C0BFCC9ED5BF7A158656EA705B56/emoticons/1f469_1f3fc_200d_1f33e.png\",\"lia_man-cook-tone-2\":\"/html/@B9E0A6A280B87234D21F513445842AF4/emoticons/1f468_1f3fc_200d_1f373.png\",\"lia_woman-cook-tone-2\":\"/html/@8E2BCF8358B1EE0DDB01867A9DB28143/emoticons/1f469_1f3fc_200d_1f373.png\",\"lia_man-mechanic-tone-2\":\"/html/@589BD9DFC922BE5C0CDF875E8E51FCBE/emoticons/1f468_1f3fc_200d_1f527.png\",\"lia_woman-mechanic-tone-2\":\"/html/@1D935AEC83D97CD8EB6C2D0DA363D4CE/emoticons/1f469_1f3fc_200d_1f527.png\",\"lia_man-factory-worker-tone-2\":\"/html/@2A998083708DE7AB2552196A15CCD04B/emoticons/1f468_1f3fc_200d_1f3ed.png\",\"lia_woman-factory-worker-tone-2\":\"/html/@AF51F73D2687792249DB298691C9D59A/emoticons/1f469_1f3fc_200d_1f3ed.png\",\"lia_man-office-worker-tone-2\":\"/html/@09DAA36D64E9348042618BED8C82A9D1/emoticons/1f468_1f3fc_200d_1f4bc.png\",\"lia_woman-office-worker-tone-2\":\"/html/@4C55ECBE2A9E3DEEC06C3B54ECE88293/emoticons/1f469_1f3fc_200d_1f4bc.png\",\"lia_man-scientist-tone-2\":\"/html/@432D112020F752EEDC8D076E8B5865AB/emoticons/1f468_1f3fc_200d_1f52c.png\",\"lia_woman-scientist-tone-2\":\"/html/@55D87A4E9BA855FF6E094ED1542DB0E5/emoticons/1f469_1f3fc_200d_1f52c.png\",\"lia_man-technologist-tone-2\":\"/html/@51BC67776B7C3EAB208414F9A1A05940/emoticons/1f468_1f3fc_200d_1f4bb.png\",\"lia_woman-technologist-tone-2\":\"/html/@F2393137B4DAC876240AE81C7935470F/emoticons/1f469_1f3fc_200d_1f4bb.png\",\"lia_man-singer-tone-2\":\"/html/@197DABD20C2D39D49E3558BBE176BB6D/emoticons/1f468_1f3fc_200d_1f3a4.png\",\"lia_woman-singer-tone-2\":\"/html/@71373E09AB468E360256D1A58CBF2A50/emoticons/1f469_1f3fc_200d_1f3a4.png\",\"lia_man-artist-tone-2\":\"/html/@4B48C8E708485BD05C4E3E6125D3BCE0/emoticons/1f468_1f3fc_200d_1f3a8.png\",\"lia_woman-artist-tone-2\":\"/html/@DF6C67117A0886F9E6543554AD36D70E/emoticons/1f469_1f3fc_200d_1f3a8.png\",\"lia_man-pilot-tone-2\":\"/html/@45D443B02E307C3E835CBEE04CA1308B/emoticons/1f468_1f3fc_200d_2708.png\",\"lia_woman-pilot-tone-2\":\"/html/@0B2D579067D3CDFF9B6E8498BEECEF72/emoticons/1f469_1f3fc_200d_2708.png\",\"lia_man-astronaut-tone-2\":\"/html/@82893F9753302B7B2F564B30B58E8D92/emoticons/1f468_1f3fc_200d_1f680.png\",\"lia_woman-astronaut-tone-2\":\"/html/@2FA3F2BA60467B3C7E32751CA4544684/emoticons/1f469_1f3fc_200d_1f680.png\",\"lia_man-firefighter-tone-2\":\"/html/@D6AE5BD2F0C5279B592AC108772C2DEA/emoticons/1f468_1f3fc_200d_1f692.png\",\"lia_woman-firefighter-tone-2\":\"/html/@D511D92826BDA355D47531C1EF371708/emoticons/1f469_1f3fc_200d_1f692.png\",\"lia_prince-tone-2\":\"/html/@F825978511D542D059E59DE59E0CE456/emoticons/1f934_1f3fc.png\",\"lia_princess-tone-2\":\"/html/@2FB1D72E0BC9DE0B658447F6534B5F90/emoticons/1f478_1f3fc.png\",\"lia_man-with-chinese-cap-tone-2\":\"/html/@448B88EEF14006DC6D1176C902310F50/emoticons/1f472_1f3fc.png\",\"lia_man-in-tuxedo-tone-2\":\"/html/@80DA85AF9513790EBF41841DA32862AD/emoticons/1f935_1f3fc.png\",\"lia_bride-with-veil-tone-2\":\"/html/@135A28316BB9E26FA0826DA79862F178/emoticons/1f470_1f3fc.png\",\"lia_pregnant-woman-tone-2\":\"/html/@91D6E1D7738291D9288D132B81043DAD/emoticons/1f930_1f3fc.png\",\"lia_baby-angel-tone-2\":\"/html/@1F74284EB3E0A4A4EB3D10B5F953690C/emoticons/1f47c_1f3fc.png\",\"lia_santa-claus-tone-2\":\"/html/@8E39EFCC296E62368052E83B8A3356BC/emoticons/1f385_1f3fc.png\",\"lia_mrs.-claus-tone-2\":\"/html/@3BE4052D9DD814FAAD3DDE5B1C40D341/emoticons/1f936_1f3fc.png\",\"lia_woman-dancing-tone-2\":\"/html/@56933F02DF5F3648DCFFD4D11ED75A65/emoticons/1f483_1f3fc.png\",\"lia_man-dancing-tone-2\":\"/html/@505D095A4DDDEB68DB24B61AE0C247BF/emoticons/1f57a_1f3fc.png\",\"lia_person-taking-bath-tone-2\":\"/html/@618FD6A384ABD3FFA1A467CA7C2785AD/emoticons/1f6c0_1f3fc.png\",\"lia_person-in-bed-tone-2\":\"/html/@313070849EDB5C6AB6F8C66CD79C2ACB/emoticons/1f6cc_1f3fc.png\",\"lia_man-in-suit-levitating-tone-2\":\"/html/@CC4323E474F46D8DC66BB88ED0C681A8/emoticons/1f574_1f3fc.png\",\"lia_horse-racing-tone-2\":\"/html/@83DA3E869255B55952BE00CD3AE3C7AD/emoticons/1f3c7_1f3fc.png\",\"lia_snowboarder-tone-2\":\"/html/@E1CCE7E7D98830C0ACABE30EBB123223/emoticons/1f3c2_1f3fc.png\",\"lia_selfie-tone-2\":\"/html/@8E2DA2634D973E469F1E9FEDB8C4A6BC/emoticons/1f933_1f3fc.png\",\"lia_flexed-biceps-tone-2\":\"/html/@2D2014055C8443C5F7CB74C8C63E570F/emoticons/1f4aa_1f3fc.png\",\"lia_backhand-index-pointing-left-tone-2\":\"/html/@9A3AC5CA966B43FDA264CD8660AAE6B7/emoticons/1f448_1f3fc.png\",\"lia_backhand-index-pointing-right-tone-2\":\"/html/@644BA003E8DE5A812C5BCF7CAECAB9F0/emoticons/1f449_1f3fc.png\",\"lia_index-pointing-up-tone-2\":\"/html/@8F3AC15184EB4FA13B873BE55D3E7045/emoticons/261d_1f3fc.png\",\"lia_backhand-index-pointing-up-tone-2\":\"/html/@E26EE8F5B2C52DAEA831A8083CE8D5C2/emoticons/1f446_1f3fc.png\",\"lia_middle-finger-tone-2\":\"/html/@E108D161D99136B544B7BE29183E8A7E/emoticons/1f595_1f3fc.png\",\"lia_backhand-index-pointing-down-tone-2\":\"/html/@10F5D40951E87C1044DC627508F8F603/emoticons/1f447_1f3fc.png\",\"lia_victory-hand-tone-2\":\"/html/@9210DF97B3E6E1C03DD9FCB0E0D370FD/emoticons/270c_1f3fc.png\",\"lia_crossed-fingers-tone-2\":\"/html/@ED68F5334634FC100183C9C28A11EA34/emoticons/1f91e_1f3fc.png\",\"lia_vulcan-salute-tone-2\":\"/html/@1F6D1FA5D28EC9DE3B13A1113D8B89F1/emoticons/1f596_1f3fc.png\",\"lia_sign-of-the-horns-tone-2\":\"/html/@B4BB8AF42A0349E2EFB2FCD247CE1393/emoticons/1f918_1f3fc.png\",\"lia_call-me-hand-tone-2\":\"/html/@2718A5FF98A64D6A4E7CB4ED105FE769/emoticons/1f919_1f3fc.png\",\"lia_hand-with-fingers-splayed-tone-2\":\"/html/@0F1D50F183FF62203B1FC581DC06B1E7/emoticons/1f590_1f3fc.png\",\"lia_raised-hand-tone-2\":\"/html/@0DC14CEF5D08112290294A47E8FDA5A4/emoticons/270b_1f3fc.png\",\"lia_ok-hand-tone-2\":\"/html/@3224A09404C4ECF96F0267DB03894222/emoticons/1f44c_1f3fc.png\",\"lia_thumbs-up-tone-2\":\"/html/@1372636B304D4709B9440C7D774A3B52/emoticons/1f44d_1f3fc.png\",\"lia_thumbs-down-tone-2\":\"/html/@E4ECB359182D03ED0B48727A98E19D8E/emoticons/1f44e_1f3fc.png\",\"lia_raised-fist-tone-2\":\"/html/@3237514FC67BD39458CD167274588773/emoticons/270a_1f3fc.png\",\"lia_oncoming-fist-tone-2\":\"/html/@B414EE0B32EE3170A00AFE2FC975E286/emoticons/1f44a_1f3fc.png\",\"lia_left-facing-fist-tone-2\":\"/html/@1DF87F050071B00AC84F7DB83DE0E2A0/emoticons/1f91b_1f3fc.png\",\"lia_right-facing-fist-tone-2\":\"/html/@43598A62D466C137FE11ED767A7C0350/emoticons/1f91c_1f3fc.png\",\"lia_raised-back-of-hand-tone-2\":\"/html/@9CCA0BCEE6A87056741A4F30DB46CEAF/emoticons/1f91a_1f3fc.png\",\"lia_waving-hand-tone-2\":\"/html/@B83A66139F55B20DA5F9F356F80DC8FC/emoticons/1f44b_1f3fc.png\",\"lia_writing-hand-tone-2\":\"/html/@F335E09B70593420E1A2734B908A2E6F/emoticons/270d_1f3fc.png\",\"lia_clapping-hands-tone-2\":\"/html/@05D40B9F88F6AABE5DAA03CE053D0DD4/emoticons/1f44f_1f3fc.png\",\"lia_open-hands-tone-2\":\"/html/@84DAA3D70497F8207D09D021A7C4AF09/emoticons/1f450_1f3fc.png\",\"lia_raising-hands-tone-2\":\"/html/@E74CF6B85C00A70507904F408028C881/emoticons/1f64c_1f3fc.png\",\"lia_folded-hands-tone-2\":\"/html/@338D72CE8D6128BCAA739C9A2D7EB74D/emoticons/1f64f_1f3fc.png\",\"lia_nail-polish-tone-2\":\"/html/@5FD9AC2ABF7C60DF8EC1EAABA0E7B1FE/emoticons/1f485_1f3fc.png\",\"lia_ear-tone-2\":\"/html/@2E434C12B2320F7EDF07C0189F15982D/emoticons/1f442_1f3fc.png\",\"lia_nose-tone-2\":\"/html/@2F75EF296882CC813DBF6A81F397BAF5/emoticons/1f443_1f3fc.png\"},\"tone-1\":{\"lia_baby-tone-1\":\"/html/@25A56DD75B3C7C5D606CABEF5A3D11F6/emoticons/1f476_1f3fb.png\",\"lia_boy-tone-1\":\"/html/@987FB134698397EF48D5A440A40BCFE9/emoticons/1f466_1f3fb.png\",\"lia_girl-tone-1\":\"/html/@95FCAB24D183A23450651BAE1315F74A/emoticons/1f467_1f3fb.png\",\"lia_man-tone-1\":\"/html/@DCF3A04A0C56D59D03A245265503EADA/emoticons/1f468_1f3fb.png\",\"lia_woman-tone-1\":\"/html/@6293C2547EE1475438F47F56BFD4AB92/emoticons/1f469_1f3fb.png\",\"lia_old-man-tone-1\":\"/html/@EFE64742E55A42DF9DA1BE2C07A6FC53/emoticons/1f474_1f3fb.png\",\"lia_old-woman-tone-1\":\"/html/@97BA72F5732AF49A9AABB6BF2990A784/emoticons/1f475_1f3fb.png\",\"lia_man-health-worker-tone-1\":\"/html/@797D80AB193BE2F1FCEAF17AD525ECAB/emoticons/1f468_1f3fb_200d_2695.png\",\"lia_woman-health-worker-tone-1\":\"/html/@F70FAE5CE8C283760A811D9B05B51A5F/emoticons/1f469_1f3fb_200d_2695.png\",\"lia_man-student-tone-1\":\"/html/@78329AD51BE7C16600AA2B72F6A84AB2/emoticons/1f468_1f3fb_200d_1f393.png\",\"lia_woman-student-tone-1\":\"/html/@BF1545575B898CBD5457E4728A8487D6/emoticons/1f469_1f3fb_200d_1f393.png\",\"lia_man-teacher-tone-1\":\"/html/@4FE7C67AFE21B9505194CC5982E4D62E/emoticons/1f468_1f3fb_200d_1f3eb.png\",\"lia_woman-teacher-tone-1\":\"/html/@49F50BF473BEA54B19C8CCC0D29119AA/emoticons/1f469_1f3fb_200d_1f3eb.png\",\"lia_man-judge-tone-1\":\"/html/@02F3A9D6EBB643ABA6B720411DBDD216/emoticons/1f468_1f3fb_200d_2696.png\",\"lia_woman-judge-tone-1\":\"/html/@4364ED599909DAA3A0C73F957258FA8C/emoticons/1f469_1f3fb_200d_2696.png\",\"lia_man-farmer-tone-1\":\"/html/@D34546C9CC8C76982BD3C8998F09C553/emoticons/1f468_1f3fb_200d_1f33e.png\",\"lia_woman-farmer-tone-1\":\"/html/@057D8F8A7A1D2C1A9C3EDAC1E34B8555/emoticons/1f469_1f3fb_200d_1f33e.png\",\"lia_man-cook-tone-1\":\"/html/@A7CC659269F1E03DD3948D93B18A4AF9/emoticons/1f468_1f3fb_200d_1f373.png\",\"lia_woman-cook-tone-1\":\"/html/@F53F8762337F57E215146CC0447CC9D0/emoticons/1f469_1f3fb_200d_1f373.png\",\"lia_man-mechanic-tone-1\":\"/html/@104C22B4577797B4526942D35323485D/emoticons/1f468_1f3fb_200d_1f527.png\",\"lia_woman-mechanic-tone-1\":\"/html/@6A3D8B480B475A3C7EA5BE535E5B032B/emoticons/1f469_1f3fb_200d_1f527.png\",\"lia_man-factory-worker-tone-1\":\"/html/@DC3AC2ABF6C5E84788385A7A9D89059B/emoticons/1f468_1f3fb_200d_1f3ed.png\",\"lia_woman-factory-worker-tone-1\":\"/html/@76233359156F5ABC56946E7CD7AD03E3/emoticons/1f469_1f3fb_200d_1f3ed.png\",\"lia_man-office-worker-tone-1\":\"/html/@E1A8A3277C2656F2D427B611082F99F2/emoticons/1f468_1f3fb_200d_1f4bc.png\",\"lia_woman-office-worker-tone-1\":\"/html/@BEA09E860879622BFCBDEDEC1BF01086/emoticons/1f469_1f3fb_200d_1f4bc.png\",\"lia_man-scientist-tone-1\":\"/html/@9A1368728AE6AAE091E493883A8820AF/emoticons/1f468_1f3fb_200d_1f52c.png\",\"lia_woman-scientist-tone-1\":\"/html/@2DB9FFB50003836F74286D4678994E14/emoticons/1f469_1f3fb_200d_1f52c.png\",\"lia_man-technologist-tone-1\":\"/html/@CFEF7A47AD2166A4F1E396CBD04F36C1/emoticons/1f468_1f3fb_200d_1f4bb.png\",\"lia_woman-technologist-tone-1\":\"/html/@40DD389D5EA0D585C8FD4E5CED86231E/emoticons/1f469_1f3fb_200d_1f4bb.png\",\"lia_man-singer-tone-1\":\"/html/@AC15AE07550524B0990E632F6A4D29B7/emoticons/1f468_1f3fb_200d_1f3a4.png\",\"lia_woman-singer-tone-1\":\"/html/@57BE82B38CAD62D23BA20140D2499A43/emoticons/1f469_1f3fb_200d_1f3a4.png\",\"lia_man-artist-tone-1\":\"/html/@A610AD18F831D992074DC659B2245741/emoticons/1f468_1f3fb_200d_1f3a8.png\",\"lia_woman-artist-tone-1\":\"/html/@B6CF84FD52E62BE2E477354B15C2D6A8/emoticons/1f469_1f3fb_200d_1f3a8.png\",\"lia_man-pilot-tone-1\":\"/html/@46982F31A05C3A82EA30025656C195B6/emoticons/1f468_1f3fb_200d_2708.png\",\"lia_woman-pilot-tone-1\":\"/html/@CCD9C66D2295FA351B509BE347456CE3/emoticons/1f469_1f3fb_200d_2708.png\",\"lia_man-astronaut-tone-1\":\"/html/@9E9908FE84A2FB039EA8ED5C9E4E6139/emoticons/1f468_1f3fb_200d_1f680.png\",\"lia_woman-astronaut-tone-1\":\"/html/@655646162E76ECCEEACAB2154BCE7252/emoticons/1f469_1f3fb_200d_1f680.png\",\"lia_man-firefighter-tone-1\":\"/html/@5EB3DBD106AA4CA68F74F38CAF23E2FB/emoticons/1f468_1f3fb_200d_1f692.png\",\"lia_woman-firefighter-tone-1\":\"/html/@E69BBBDF788E6D4BC7D573D71485E1F8/emoticons/1f469_1f3fb_200d_1f692.png\",\"lia_prince-tone-1\":\"/html/@45305F4A31635184405D8449F15064CF/emoticons/1f934_1f3fb.png\",\"lia_princess-tone-1\":\"/html/@7F95F074CB95DD2D2793AD0AD1DC91D9/emoticons/1f478_1f3fb.png\",\"lia_man-with-chinese-cap-tone-1\":\"/html/@45A5A9AFE517541B2E2FADBD0CCEED9B/emoticons/1f472_1f3fb.png\",\"lia_man-in-tuxedo-tone-1\":\"/html/@864DE0B013F0453C61263E826978EA2A/emoticons/1f935_1f3fb.png\",\"lia_bride-with-veil-tone-1\":\"/html/@424F833C7A249AC6A3D1A57C56C89632/emoticons/1f470_1f3fb.png\",\"lia_pregnant-woman-tone-1\":\"/html/@0F169CE9C4D7F9AC83D25BB3FCE6BFEC/emoticons/1f930_1f3fb.png\",\"lia_baby-angel-tone-1\":\"/html/@BCBA17478932F1490315CC929CF8ABB1/emoticons/1f47c_1f3fb.png\",\"lia_santa-claus-tone-1\":\"/html/@F3D0E528DD368B032E01DCE7898A4565/emoticons/1f385_1f3fb.png\",\"lia_mrs.-claus-tone-1\":\"/html/@1147C90508192079C2C88E1895710991/emoticons/1f936_1f3fb.png\",\"lia_woman-dancing-tone-1\":\"/html/@0E211DC7B4887CC8D29ACEBC4C57B581/emoticons/1f483_1f3fb.png\",\"lia_man-dancing-tone-1\":\"/html/@4DDF3C495F1A7EEF512F4124B8AF248B/emoticons/1f57a_1f3fb.png\",\"lia_person-taking-bath-tone-1\":\"/html/@B39798F9FBD62467A98AE5056124BEF4/emoticons/1f6c0_1f3fb.png\",\"lia_person-in-bed-tone-1\":\"/html/@17F080A1D13F340406E53CF7492355A8/emoticons/1f6cc_1f3fb.png\",\"lia_man-in-suit-levitating-tone-1\":\"/html/@A07B3C54CD5A786237B9049C568078B5/emoticons/1f574_1f3fb.png\",\"lia_horse-racing-tone-1\":\"/html/@613FEDFB4AA64E3E5B37E4132C0CDC52/emoticons/1f3c7_1f3fb.png\",\"lia_snowboarder-tone-1\":\"/html/@B4282DA83CA1AE469BAABB74527366FA/emoticons/1f3c2_1f3fb.png\",\"lia_selfie-tone-1\":\"/html/@727BEF805A324C48C6247E9068FE5361/emoticons/1f933_1f3fb.png\",\"lia_flexed-biceps-tone-1\":\"/html/@33B27DDE0298E899DADE416681B3BB9B/emoticons/1f4aa_1f3fb.png\",\"lia_backhand-index-pointing-left-tone-1\":\"/html/@DB30C05BAB1F577BD4894352F2B97C75/emoticons/1f448_1f3fb.png\",\"lia_backhand-index-pointing-right-tone-1\":\"/html/@40D09E3C1EB92CCE5EBF60D4D58AE491/emoticons/1f449_1f3fb.png\",\"lia_index-pointing-up-tone-1\":\"/html/@6F86181780FCC4075634344C9A8A28DF/emoticons/261d_1f3fb.png\",\"lia_backhand-index-pointing-up-tone-1\":\"/html/@4D28D01361752138A9E43677C5CF10CD/emoticons/1f446_1f3fb.png\",\"lia_middle-finger-tone-1\":\"/html/@C5D0CD110A2AEBB4CBB59F7FFD50CB6F/emoticons/1f595_1f3fb.png\",\"lia_backhand-index-pointing-down-tone-1\":\"/html/@9A8A918B49E7D45EF6FCD73C678CBF26/emoticons/1f447_1f3fb.png\",\"lia_victory-hand-tone-1\":\"/html/@C12FA5C01868B1689C0827B05EBA5798/emoticons/270c_1f3fb.png\",\"lia_crossed-fingers-tone-1\":\"/html/@E933A7FBE2795EF302D04245F2105E69/emoticons/1f91e_1f3fb.png\",\"lia_vulcan-salute-tone-1\":\"/html/@26378AC1BAD9A0F22304912CB261C907/emoticons/1f596_1f3fb.png\",\"lia_sign-of-the-horns-tone-1\":\"/html/@8CB9A3B8CF434DC6D489F1011E34054E/emoticons/1f918_1f3fb.png\",\"lia_call-me-hand-tone-1\":\"/html/@5183437365DBADBF398DFE143153526B/emoticons/1f919_1f3fb.png\",\"lia_hand-with-fingers-splayed-tone-1\":\"/html/@164F8CC05D6828D9C8CD1A104685E3FC/emoticons/1f590_1f3fb.png\",\"lia_raised-hand-tone-1\":\"/html/@292D96C77D2EFBE3A276A7AA22AE5D45/emoticons/270b_1f3fb.png\",\"lia_ok-hand-tone-1\":\"/html/@5E361E01C0D702AC9D6B75A6973FDB27/emoticons/1f44c_1f3fb.png\",\"lia_thumbs-up-tone-1\":\"/html/@2959FCA0924A5A655435186E6B820B66/emoticons/1f44d_1f3fb.png\",\"lia_thumbs-down-tone-1\":\"/html/@CDCC081581D3C19A10CCA60D8CFC2B14/emoticons/1f44e_1f3fb.png\",\"lia_raised-fist-tone-1\":\"/html/@4253AF3BE2D2BDCDD583ADCDEA2FCA9B/emoticons/270a_1f3fb.png\",\"lia_oncoming-fist-tone-1\":\"/html/@8C87AB5443BB52483B1C2372DF5A2401/emoticons/1f44a_1f3fb.png\",\"lia_left-facing-fist-tone-1\":\"/html/@7AFD7C8956D8AF25E083E562AFB3FE5B/emoticons/1f91b_1f3fb.png\",\"lia_right-facing-fist-tone-1\":\"/html/@40512605DE2B28E8D5875EB4E2C0CDEB/emoticons/1f91c_1f3fb.png\",\"lia_raised-back-of-hand-tone-1\":\"/html/@A96B51140C9F29A9F2411EC8D482B3E0/emoticons/1f91a_1f3fb.png\",\"lia_waving-hand-tone-1\":\"/html/@4DF63640F26DA98DD59D990EA7A0EE8B/emoticons/1f44b_1f3fb.png\",\"lia_writing-hand-tone-1\":\"/html/@4DA6DDE24D7400861D89604969F4D4EE/emoticons/270d_1f3fb.png\",\"lia_clapping-hands-tone-1\":\"/html/@61EB8533B42FBC51DE0AD6ED2E977007/emoticons/1f44f_1f3fb.png\",\"lia_open-hands-tone-1\":\"/html/@BFE324E68080CFD3DCC0304FFE9D3C81/emoticons/1f450_1f3fb.png\",\"lia_raising-hands-tone-1\":\"/html/@FA6EC157F97707DDB4F6593758EBA46F/emoticons/1f64c_1f3fb.png\",\"lia_folded-hands-tone-1\":\"/html/@AFC64B84AC25324ADBC9FBFD284477B7/emoticons/1f64f_1f3fb.png\",\"lia_nail-polish-tone-1\":\"/html/@3467D5ED789CE4451BDBE13B40E912BB/emoticons/1f485_1f3fb.png\",\"lia_ear-tone-1\":\"/html/@BCBE236809BDAF49756BAE04573C3B35/emoticons/1f442_1f3fb.png\",\"lia_nose-tone-1\":\"/html/@C893C9E7B44D935A321CAF24BD4DD51D/emoticons/1f443_1f3fb.png\"},\"tone-4\":{\"lia_baby-tone-4\":\"/html/@61B5D86CE0114A53D074DECFFFA0B528/emoticons/1f476_1f3fe.png\",\"lia_boy-tone-4\":\"/html/@6F79C73746A683838C80866A8B0B9F83/emoticons/1f466_1f3fe.png\",\"lia_girl-tone-4\":\"/html/@530ECB2CB0E14DD6EB7CDE83440C5E69/emoticons/1f467_1f3fe.png\",\"lia_man-tone-4\":\"/html/@F2E1BF9194CE35F28464BB5BF249E2B2/emoticons/1f468_1f3fe.png\",\"lia_woman-tone-4\":\"/html/@8BC215445D6206D45EC2AD26450DCAEC/emoticons/1f469_1f3fe.png\",\"lia_old-man-tone-4\":\"/html/@5678CC86B4A962F783F20331823245CF/emoticons/1f474_1f3fe.png\",\"lia_old-woman-tone-4\":\"/html/@CB3BCDC8DF48C0E878DFA97BE1E71EE3/emoticons/1f475_1f3fe.png\",\"lia_man-health-worker-tone-4\":\"/html/@5052AF0A339A86F27FF5ECE5F72B43DC/emoticons/1f468_1f3fe_200d_2695.png\",\"lia_woman-health-worker-tone-4\":\"/html/@88F54DE919B84CE77654B38DD2636AAF/emoticons/1f469_1f3fe_200d_2695.png\",\"lia_man-student-tone-4\":\"/html/@9AC222C110755FD3E3DC36B7D60D38D5/emoticons/1f468_1f3fe_200d_1f393.png\",\"lia_woman-student-tone-4\":\"/html/@D625B62BD24862685F11F93050F15D53/emoticons/1f469_1f3fe_200d_1f393.png\",\"lia_man-teacher-tone-4\":\"/html/@126280435988376F9D8DB4E8C5FE5308/emoticons/1f468_1f3fe_200d_1f3eb.png\",\"lia_woman-teacher-tone-4\":\"/html/@0D5AC792A6A3C6BBCE0D7511E81892A9/emoticons/1f469_1f3fe_200d_1f3eb.png\",\"lia_man-judge-tone-4\":\"/html/@514279B2093BCA1B16E1DE5C54F5523F/emoticons/1f468_1f3fe_200d_2696.png\",\"lia_woman-judge-tone-4\":\"/html/@457CF1D6DF2572036C89175BDB5FD8D8/emoticons/1f469_1f3fe_200d_2696.png\",\"lia_man-farmer-tone-4\":\"/html/@4F55BFF10AAD1510A8AA51D5DFA49F62/emoticons/1f468_1f3fe_200d_1f33e.png\",\"lia_woman-farmer-tone-4\":\"/html/@07C2ED241958DAC782E745A27B75CEC8/emoticons/1f469_1f3fe_200d_1f33e.png\",\"lia_man-cook-tone-4\":\"/html/@9DC484D714BD55DBD852465F69100603/emoticons/1f468_1f3fe_200d_1f373.png\",\"lia_woman-cook-tone-4\":\"/html/@F2FE07AE187E105157B6B01DB15E87F0/emoticons/1f469_1f3fe_200d_1f373.png\",\"lia_man-mechanic-tone-4\":\"/html/@1A8BA3227BA5A076B897CFEA1A8D33A5/emoticons/1f468_1f3fe_200d_1f527.png\",\"lia_woman-mechanic-tone-4\":\"/html/@A12252B0AC7C6259A568BBBBC7686154/emoticons/1f469_1f3fe_200d_1f527.png\",\"lia_man-factory-worker-tone-4\":\"/html/@6FCDCFBF9AE983A1249A8AC3C8124122/emoticons/1f468_1f3fe_200d_1f3ed.png\",\"lia_woman-factory-worker-tone-4\":\"/html/@D7A9E297290B8F7DABD6338A633611C1/emoticons/1f469_1f3fe_200d_1f3ed.png\",\"lia_man-office-worker-tone-4\":\"/html/@11FA4B7FCC065D320EE546141E1350ED/emoticons/1f468_1f3fe_200d_1f4bc.png\",\"lia_woman-office-worker-tone-4\":\"/html/@466508281E089D23A427F66C907FD56E/emoticons/1f469_1f3fe_200d_1f4bc.png\",\"lia_man-scientist-tone-4\":\"/html/@9681C5444C6CC5199BC7D266140DF1B8/emoticons/1f468_1f3fe_200d_1f52c.png\",\"lia_woman-scientist-tone-4\":\"/html/@36C7A5785A7224EE20ABCD648DA4FCB4/emoticons/1f469_1f3fe_200d_1f52c.png\",\"lia_man-technologist-tone-4\":\"/html/@765E30B8B7046228F6E2890AD325E927/emoticons/1f468_1f3fe_200d_1f4bb.png\",\"lia_woman-technologist-tone-4\":\"/html/@EF8178367C3F568B87BD039B3898613C/emoticons/1f469_1f3fe_200d_1f4bb.png\",\"lia_man-singer-tone-4\":\"/html/@B2BF5B1788434C8C68241593C0EA6D79/emoticons/1f468_1f3fe_200d_1f3a4.png\",\"lia_woman-singer-tone-4\":\"/html/@FE853F51A7EBDF69ACAD85A786DCC1DB/emoticons/1f469_1f3fe_200d_1f3a4.png\",\"lia_man-artist-tone-4\":\"/html/@516DFE4D6F7DF5247E91A264023DED85/emoticons/1f468_1f3fe_200d_1f3a8.png\",\"lia_woman-artist-tone-4\":\"/html/@F3D0523333EDC2238A55952150591549/emoticons/1f469_1f3fe_200d_1f3a8.png\",\"lia_man-pilot-tone-4\":\"/html/@E9DB8C0FF3A2C998C5F9715F7DF14223/emoticons/1f468_1f3fe_200d_2708.png\",\"lia_woman-pilot-tone-4\":\"/html/@69055BC0500F5B624DDF457EB688A6BF/emoticons/1f469_1f3fe_200d_2708.png\",\"lia_man-astronaut-tone-4\":\"/html/@5D67B159390AF553A9113768B8F744EC/emoticons/1f468_1f3fe_200d_1f680.png\",\"lia_woman-astronaut-tone-4\":\"/html/@896FEEE9A240D59B94D261FE9737831C/emoticons/1f469_1f3fe_200d_1f680.png\",\"lia_man-firefighter-tone-4\":\"/html/@8C7A064CE70072CB3FF53F7FD1353B15/emoticons/1f468_1f3fe_200d_1f692.png\",\"lia_woman-firefighter-tone-4\":\"/html/@48DD1D0FE1146E658B8B76F530515645/emoticons/1f469_1f3fe_200d_1f692.png\",\"lia_prince-tone-4\":\"/html/@BBD6AD2CE114D5AEB62EE074B1BCB4F2/emoticons/1f934_1f3fe.png\",\"lia_princess-tone-4\":\"/html/@AC903E851F511706D5A644BD5D42E394/emoticons/1f478_1f3fe.png\",\"lia_man-with-chinese-cap-tone-4\":\"/html/@E4817292FA84A29BC69804D065CC66CB/emoticons/1f472_1f3fe.png\",\"lia_man-in-tuxedo-tone-4\":\"/html/@457D97F97A9EA7D1A34DBA8E8E4584FC/emoticons/1f935_1f3fe.png\",\"lia_bride-with-veil-tone-4\":\"/html/@9F0C93F50FEB2E25BB82867B56C9E78E/emoticons/1f470_1f3fe.png\",\"lia_pregnant-woman-tone-4\":\"/html/@4B9969FA4DDB7B3B4DCFE87ED93A929E/emoticons/1f930_1f3fe.png\",\"lia_baby-angel-tone-4\":\"/html/@E760614C85FE4437D5AE273886F2B266/emoticons/1f47c_1f3fe.png\",\"lia_santa-claus-tone-4\":\"/html/@1CA3ACF3154A72D09D5CB3E6DC14E7C5/emoticons/1f385_1f3fe.png\",\"lia_mrs.-claus-tone-4\":\"/html/@997514134BE546BE656DF333B6A7BA26/emoticons/1f936_1f3fe.png\",\"lia_woman-dancing-tone-4\":\"/html/@8DEA33EA03A2288345B766224826A356/emoticons/1f483_1f3fe.png\",\"lia_man-dancing-tone-4\":\"/html/@AFE5589F6BE6EE5E734F1D5025462682/emoticons/1f57a_1f3fe.png\",\"lia_person-taking-bath-tone-4\":\"/html/@9B98D96F9155965F236681C49F90395A/emoticons/1f6c0_1f3fe.png\",\"lia_person-in-bed-tone-4\":\"/html/@509A9BEDE78C96D188EB1AE26F43BC09/emoticons/1f6cc_1f3fe.png\",\"lia_man-in-suit-levitating-tone-4\":\"/html/@427C4E573CF425B34D6A09335377AF1D/emoticons/1f574_1f3fe.png\",\"lia_horse-racing-tone-4\":\"/html/@696D5CACB0AFE5A41A14D36D9D52EA86/emoticons/1f3c7_1f3fe.png\",\"lia_snowboarder-tone-4\":\"/html/@74269E5F183FC0C621316FFA81E090BC/emoticons/1f3c2_1f3fe.png\",\"lia_selfie-tone-4\":\"/html/@A4175772112F6BC341367AA1B7146D25/emoticons/1f933_1f3fe.png\",\"lia_flexed-biceps-tone-4\":\"/html/@5433713BA68E6AB05179CEE31F2ED588/emoticons/1f4aa_1f3fe.png\",\"lia_backhand-index-pointing-left-tone-4\":\"/html/@55400791B910AD9BD909C78CD53EA21E/emoticons/1f448_1f3fe.png\",\"lia_backhand-index-pointing-right-tone-4\":\"/html/@E0A3975C912776B6CDD9E7E70A02D098/emoticons/1f449_1f3fe.png\",\"lia_index-pointing-up-tone-4\":\"/html/@B903F28C05137F7DF329FF282B9A82A0/emoticons/261d_1f3fe.png\",\"lia_backhand-index-pointing-up-tone-4\":\"/html/@D163D6182F48ABDF4BE071A00DC9E736/emoticons/1f446_1f3fe.png\",\"lia_middle-finger-tone-4\":\"/html/@10E1D4B5F9E44D608997064CEBB74C03/emoticons/1f595_1f3fe.png\",\"lia_backhand-index-pointing-down-tone-4\":\"/html/@0F640A3C14D842363762BC768C805525/emoticons/1f447_1f3fe.png\",\"lia_victory-hand-tone-4\":\"/html/@796F9156249547CDC48070FEC1C11B4C/emoticons/270c_1f3fe.png\",\"lia_crossed-fingers-tone-4\":\"/html/@6C234E63E39496BD07733BF15BF527FA/emoticons/1f91e_1f3fe.png\",\"lia_vulcan-salute-tone-4\":\"/html/@2D0DA90F441787CBDCAB72C4EB1E3A58/emoticons/1f596_1f3fe.png\",\"lia_sign-of-the-horns-tone-4\":\"/html/@A1C3A70A043CBE5EA5B245D45AB577C6/emoticons/1f918_1f3fe.png\",\"lia_call-me-hand-tone-4\":\"/html/@B77A2A2B8D1294E3516A763AE4E68F62/emoticons/1f919_1f3fe.png\",\"lia_hand-with-fingers-splayed-tone-4\":\"/html/@2ECB48FCBC34164DAD672BBEB75A6300/emoticons/1f590_1f3fe.png\",\"lia_raised-hand-tone-4\":\"/html/@B4BB5810A685025C113B563FACD4C7BB/emoticons/270b_1f3fe.png\",\"lia_ok-hand-tone-4\":\"/html/@FE3FF99E433D99D28FC77A5820D198BD/emoticons/1f44c_1f3fe.png\",\"lia_thumbs-up-tone-4\":\"/html/@B6DE48C011728ED65FD287E3D7904F3E/emoticons/1f44d_1f3fe.png\",\"lia_thumbs-down-tone-4\":\"/html/@EFC7D750E0286210A7635D7AB7ADCD5E/emoticons/1f44e_1f3fe.png\",\"lia_raised-fist-tone-4\":\"/html/@B8EFE0A5D3B94A274CFE881BEFD0784C/emoticons/270a_1f3fe.png\",\"lia_oncoming-fist-tone-4\":\"/html/@C860DB17AA903FD94C4CFB8C678A24AB/emoticons/1f44a_1f3fe.png\",\"lia_left-facing-fist-tone-4\":\"/html/@6120FA67C296C1A85C22E2331B154DEE/emoticons/1f91b_1f3fe.png\",\"lia_right-facing-fist-tone-4\":\"/html/@5C5242A21C6BEF850055EAEBA06835D6/emoticons/1f91c_1f3fe.png\",\"lia_raised-back-of-hand-tone-4\":\"/html/@18F873E00468C4C95C99A760D43D0E00/emoticons/1f91a_1f3fe.png\",\"lia_waving-hand-tone-4\":\"/html/@6114759677F6A06760705A2D51CDBCB6/emoticons/1f44b_1f3fe.png\",\"lia_writing-hand-tone-4\":\"/html/@DB0C43FEE990E22073B0D44E7C766897/emoticons/270d_1f3fe.png\",\"lia_clapping-hands-tone-4\":\"/html/@28BAFC92B29BE554AED7752797EFFDD9/emoticons/1f44f_1f3fe.png\",\"lia_open-hands-tone-4\":\"/html/@ADFBCB1B8CFA34B8E5095FC3365E3B32/emoticons/1f450_1f3fe.png\",\"lia_raising-hands-tone-4\":\"/html/@DEF5AED8A5E1F71EB4C52DDB2F5B2ED5/emoticons/1f64c_1f3fe.png\",\"lia_folded-hands-tone-4\":\"/html/@C2FB96AAA43A6FABCDFA91D3A5AA1363/emoticons/1f64f_1f3fe.png\",\"lia_nail-polish-tone-4\":\"/html/@6F948B3BF3FBE01D86C52F139C9D8998/emoticons/1f485_1f3fe.png\",\"lia_ear-tone-4\":\"/html/@BAA214CFF5F7851D5D530CAE458CD693/emoticons/1f442_1f3fe.png\",\"lia_nose-tone-4\":\"/html/@9523C18AD3DB582FF33429BCBFE3EC57/emoticons/1f443_1f3fe.png\"},\"tone-3\":{\"lia_baby-tone-3\":\"/html/@F0B8362CFA894AFE7432DB62DE90BF74/emoticons/1f476_1f3fd.png\",\"lia_boy-tone-3\":\"/html/@B65D0926EDA88179B2AB294A55F23931/emoticons/1f466_1f3fd.png\",\"lia_girl-tone-3\":\"/html/@D05AFEA794E413420392D3AA4E118B20/emoticons/1f467_1f3fd.png\",\"lia_man-tone-3\":\"/html/@3708BFE6874D1FCC06D5A1C750729768/emoticons/1f468_1f3fd.png\",\"lia_woman-tone-3\":\"/html/@3BE86ECFF674F0611724DCF49952BB74/emoticons/1f469_1f3fd.png\",\"lia_old-man-tone-3\":\"/html/@C2DCC8CAFD43CA0D4B0C8552BE8E1302/emoticons/1f474_1f3fd.png\",\"lia_old-woman-tone-3\":\"/html/@6663F2923E1A57766D4CC6DD294CC526/emoticons/1f475_1f3fd.png\",\"lia_man-health-worker-tone-3\":\"/html/@6ED257462FDA3B61B6FB6E01FF6AF976/emoticons/1f468_1f3fd_200d_2695.png\",\"lia_woman-health-worker-tone-3\":\"/html/@77C7856E04EE5EB800230772760ECC6C/emoticons/1f469_1f3fd_200d_2695.png\",\"lia_man-student-tone-3\":\"/html/@2CB78E24C73C28281EAEA7FEA11B9905/emoticons/1f468_1f3fd_200d_1f393.png\",\"lia_woman-student-tone-3\":\"/html/@2BE20FFEA31357EF86B637CBD1BEF53F/emoticons/1f469_1f3fd_200d_1f393.png\",\"lia_man-teacher-tone-3\":\"/html/@8A52E97D291A564B963FB5436C4C94AD/emoticons/1f468_1f3fd_200d_1f3eb.png\",\"lia_woman-teacher-tone-3\":\"/html/@5BBCDA3A1896113BF06EBEC7C93AB10D/emoticons/1f469_1f3fd_200d_1f3eb.png\",\"lia_man-judge-tone-3\":\"/html/@6EFE02A9AC27330147F309D178305F8E/emoticons/1f468_1f3fd_200d_2696.png\",\"lia_woman-judge-tone-3\":\"/html/@D8D3088B57025E8E10E5C8A24638F197/emoticons/1f469_1f3fd_200d_2696.png\",\"lia_man-farmer-tone-3\":\"/html/@1787810384883C6E89C3C494276A8173/emoticons/1f468_1f3fd_200d_1f33e.png\",\"lia_woman-farmer-tone-3\":\"/html/@5F5F1B6F3C1BC88C35ED0D07DE8BBAE3/emoticons/1f469_1f3fd_200d_1f33e.png\",\"lia_man-cook-tone-3\":\"/html/@8FB558C1D4B6ADCF40AF916FFE11E0C5/emoticons/1f468_1f3fd_200d_1f373.png\",\"lia_woman-cook-tone-3\":\"/html/@6A006886F4BE838018D690B3AABCCD4A/emoticons/1f469_1f3fd_200d_1f373.png\",\"lia_man-mechanic-tone-3\":\"/html/@ADFA7722D2ACF28EB938C96D2F5418FE/emoticons/1f468_1f3fd_200d_1f527.png\",\"lia_woman-mechanic-tone-3\":\"/html/@F8FBBD3A1277234BC5A8997F6E4149FB/emoticons/1f469_1f3fd_200d_1f527.png\",\"lia_man-factory-worker-tone-3\":\"/html/@DC94800DC9A60F02A5ADC31E9B7AE6F4/emoticons/1f468_1f3fd_200d_1f3ed.png\",\"lia_woman-factory-worker-tone-3\":\"/html/@F96B63B89598E5864A132875871718FF/emoticons/1f469_1f3fd_200d_1f3ed.png\",\"lia_man-office-worker-tone-3\":\"/html/@13D96B34FA9E53626014BB19CC40149B/emoticons/1f468_1f3fd_200d_1f4bc.png\",\"lia_woman-office-worker-tone-3\":\"/html/@8D171630D192D5895F7332314B584AB8/emoticons/1f469_1f3fd_200d_1f4bc.png\",\"lia_man-scientist-tone-3\":\"/html/@24FE03BBDB9C12AD1DC5102039EFF874/emoticons/1f468_1f3fd_200d_1f52c.png\",\"lia_woman-scientist-tone-3\":\"/html/@CF453945589EDAEE8AEDA9E6159FF47F/emoticons/1f469_1f3fd_200d_1f52c.png\",\"lia_man-technologist-tone-3\":\"/html/@C8D8A0DE508AF6D9619170FBBE82C281/emoticons/1f468_1f3fd_200d_1f4bb.png\",\"lia_woman-technologist-tone-3\":\"/html/@F7984E19DCA042AE57F02D9C789298A8/emoticons/1f469_1f3fd_200d_1f4bb.png\",\"lia_man-singer-tone-3\":\"/html/@36F9089CF7275004292FF79D2A7F5D1D/emoticons/1f468_1f3fd_200d_1f3a4.png\",\"lia_woman-singer-tone-3\":\"/html/@773A39A467B4A9B6C4C54FB7F5C74995/emoticons/1f469_1f3fd_200d_1f3a4.png\",\"lia_man-artist-tone-3\":\"/html/@E5F5893676A168C60D6BC7FFDB6202DA/emoticons/1f468_1f3fd_200d_1f3a8.png\",\"lia_woman-artist-tone-3\":\"/html/@BDC5052380A3512A2B95CC2190C7176E/emoticons/1f469_1f3fd_200d_1f3a8.png\",\"lia_man-pilot-tone-3\":\"/html/@E78CFDE56E607563E75DE61245732DCA/emoticons/1f468_1f3fd_200d_2708.png\",\"lia_woman-pilot-tone-3\":\"/html/@EA1E5DEF0B01783402DAF6F2E003EB58/emoticons/1f469_1f3fd_200d_2708.png\",\"lia_man-astronaut-tone-3\":\"/html/@3B5AFC9FC429F82EE17B22CDA9B538CF/emoticons/1f468_1f3fd_200d_1f680.png\",\"lia_woman-astronaut-tone-3\":\"/html/@462AE13CC700E61BC94F806F2A4EC6D3/emoticons/1f469_1f3fd_200d_1f680.png\",\"lia_man-firefighter-tone-3\":\"/html/@AA56057BE6582C627A4171FE3464DB0D/emoticons/1f468_1f3fd_200d_1f692.png\",\"lia_woman-firefighter-tone-3\":\"/html/@76EB2D16C00AE8ADA72237F5D247B8BF/emoticons/1f469_1f3fd_200d_1f692.png\",\"lia_prince-tone-3\":\"/html/@FF5A1C84469EBBC80E2F6EE25207EDBD/emoticons/1f934_1f3fd.png\",\"lia_princess-tone-3\":\"/html/@57749BE8222CDED8C69D092178D5C6F3/emoticons/1f478_1f3fd.png\",\"lia_man-with-chinese-cap-tone-3\":\"/html/@54494B1E4DDD58F93D033BC63BD025BF/emoticons/1f472_1f3fd.png\",\"lia_man-in-tuxedo-tone-3\":\"/html/@F1AC24DCFC41C44A8192E18246C87E0D/emoticons/1f935_1f3fd.png\",\"lia_bride-with-veil-tone-3\":\"/html/@979153C44C9C37B2ECBC7D965A5B0F3B/emoticons/1f470_1f3fd.png\",\"lia_pregnant-woman-tone-3\":\"/html/@763BEA783EB3739856C26EC06CFFAD87/emoticons/1f930_1f3fd.png\",\"lia_baby-angel-tone-3\":\"/html/@FA7CCBC8EEA327123C757B0AF46FFF7B/emoticons/1f47c_1f3fd.png\",\"lia_santa-claus-tone-3\":\"/html/@794E24BE187AFBFA61DD290895326841/emoticons/1f385_1f3fd.png\",\"lia_mrs.-claus-tone-3\":\"/html/@4B8D9523A303D17C4EE49924FD4ABD19/emoticons/1f936_1f3fd.png\",\"lia_woman-dancing-tone-3\":\"/html/@2D814B89B86038676D2BD8577282A43E/emoticons/1f483_1f3fd.png\",\"lia_man-dancing-tone-3\":\"/html/@AC6FF92FBBA6671618D91BBD3C936F81/emoticons/1f57a_1f3fd.png\",\"lia_person-taking-bath-tone-3\":\"/html/@1BCAEAAC13EAA1FE8E73163567D54EA9/emoticons/1f6c0_1f3fd.png\",\"lia_person-in-bed-tone-3\":\"/html/@47A228846253E37FFE5FEBAA19FEEDB3/emoticons/1f6cc_1f3fd.png\",\"lia_man-in-suit-levitating-tone-3\":\"/html/@E763EF833DF85810CE05E9FB2F3BFCC4/emoticons/1f574_1f3fd.png\",\"lia_horse-racing-tone-3\":\"/html/@D3B6157110472B9F116E850DB78D4D74/emoticons/1f3c7_1f3fd.png\",\"lia_snowboarder-tone-3\":\"/html/@832E023B4ABA42C46F8CD11FECBCABDD/emoticons/1f3c2_1f3fd.png\",\"lia_selfie-tone-3\":\"/html/@4895CE8CD4829A188BE8716206B2BF65/emoticons/1f933_1f3fd.png\",\"lia_flexed-biceps-tone-3\":\"/html/@3E394877CC57712A0A058A488E019CE9/emoticons/1f4aa_1f3fd.png\",\"lia_backhand-index-pointing-left-tone-3\":\"/html/@8A50F0CC5D5E884C81A5014DB97FEB42/emoticons/1f448_1f3fd.png\",\"lia_backhand-index-pointing-right-tone-3\":\"/html/@5792097D024237468E4728FD2D790CB4/emoticons/1f449_1f3fd.png\",\"lia_index-pointing-up-tone-3\":\"/html/@325883C45F8805134ECD2700E9DC3E6D/emoticons/261d_1f3fd.png\",\"lia_backhand-index-pointing-up-tone-3\":\"/html/@7D957833DD95DAF2CB4A4AE1F911D533/emoticons/1f446_1f3fd.png\",\"lia_middle-finger-tone-3\":\"/html/@465F4505580E13749CC3C938D0477CA5/emoticons/1f595_1f3fd.png\",\"lia_backhand-index-pointing-down-tone-3\":\"/html/@4F1975C889FBC1D310428BC07F679061/emoticons/1f447_1f3fd.png\",\"lia_victory-hand-tone-3\":\"/html/@CDCAEFC65BC20A9E0E5ED1BD694F8432/emoticons/270c_1f3fd.png\",\"lia_crossed-fingers-tone-3\":\"/html/@FBF1016BFF5B2B76D717F4806AE567F7/emoticons/1f91e_1f3fd.png\",\"lia_vulcan-salute-tone-3\":\"/html/@ED35B2C0E9BF57964A1F43B11B27406B/emoticons/1f596_1f3fd.png\",\"lia_sign-of-the-horns-tone-3\":\"/html/@E19741580F4F5DC34B70F5A372EFFF92/emoticons/1f918_1f3fd.png\",\"lia_call-me-hand-tone-3\":\"/html/@67EC7B1AFC6948069CA378819788D87F/emoticons/1f919_1f3fd.png\",\"lia_hand-with-fingers-splayed-tone-3\":\"/html/@078CC86588B0AC80F14451F455358A32/emoticons/1f590_1f3fd.png\",\"lia_raised-hand-tone-3\":\"/html/@F369B9E8FAB248A284777CB2CEAFFF99/emoticons/270b_1f3fd.png\",\"lia_ok-hand-tone-3\":\"/html/@6FBABC12C476ED9AB80B685A92563007/emoticons/1f44c_1f3fd.png\",\"lia_thumbs-up-tone-3\":\"/html/@5C6FF88D21DA2FD9CB86D82318767203/emoticons/1f44d_1f3fd.png\",\"lia_thumbs-down-tone-3\":\"/html/@F31A77D66F20A52AD83D8E3575913444/emoticons/1f44e_1f3fd.png\",\"lia_raised-fist-tone-3\":\"/html/@65716618BB03AAE61D68172C17F401A4/emoticons/270a_1f3fd.png\",\"lia_oncoming-fist-tone-3\":\"/html/@FDE4BB27928BE1AFC1F203A5D74CA398/emoticons/1f44a_1f3fd.png\",\"lia_left-facing-fist-tone-3\":\"/html/@7B6371E048E267709CE3778360A84DE8/emoticons/1f91b_1f3fd.png\",\"lia_right-facing-fist-tone-3\":\"/html/@B6B76886B80D4BA03CCDC64FCEFD3A6C/emoticons/1f91c_1f3fd.png\",\"lia_raised-back-of-hand-tone-3\":\"/html/@26ED832253F3F67110ECE99E943B43BC/emoticons/1f91a_1f3fd.png\",\"lia_waving-hand-tone-3\":\"/html/@FC9DEAF68AF4A48CD606DCFF1AC5E6FF/emoticons/1f44b_1f3fd.png\",\"lia_writing-hand-tone-3\":\"/html/@4CF3935CA56B8A4627139FF58E0E6725/emoticons/270d_1f3fd.png\",\"lia_clapping-hands-tone-3\":\"/html/@CEB7BBDB3DD623213FDE33B64C706ADC/emoticons/1f44f_1f3fd.png\",\"lia_open-hands-tone-3\":\"/html/@888A420CED7997D3C99903553906C62F/emoticons/1f450_1f3fd.png\",\"lia_raising-hands-tone-3\":\"/html/@A558B1E5E584AE1A79990B7658E9527C/emoticons/1f64c_1f3fd.png\",\"lia_folded-hands-tone-3\":\"/html/@09437F04179ED5E97438F18A2C27835C/emoticons/1f64f_1f3fd.png\",\"lia_nail-polish-tone-3\":\"/html/@CA8B822014BAD3E10272B25E18222800/emoticons/1f485_1f3fd.png\",\"lia_ear-tone-3\":\"/html/@174F96A739BAA652EAADFC45304E4EE1/emoticons/1f442_1f3fd.png\",\"lia_nose-tone-3\":\"/html/@05CE9A359144792C9280A0BADCCA8D4D/emoticons/1f443_1f3fd.png\"},\"tone-5\":{\"lia_baby-tone-5\":\"/html/@816B6F9AA4F876DE212183B1F2D26751/emoticons/1f476_1f3ff.png\",\"lia_boy-tone-5\":\"/html/@BC00A7F14B2EF214D62949C9636FDECB/emoticons/1f466_1f3ff.png\",\"lia_girl-tone-5\":\"/html/@DC4F5C3C0554397A71D06F00B5D44FEC/emoticons/1f467_1f3ff.png\",\"lia_man-tone-5\":\"/html/@1295C8F163FFC6218D09DF48DAB85042/emoticons/1f468_1f3ff.png\",\"lia_woman-tone-5\":\"/html/@31D5DD9B8C19695516D59FCECDE455B0/emoticons/1f469_1f3ff.png\",\"lia_old-man-tone-5\":\"/html/@A0AD22B1FA6E03B9ADFAEE70CE824F17/emoticons/1f474_1f3ff.png\",\"lia_old-woman-tone-5\":\"/html/@E8317CF35365D71F4C3A41695CE2E534/emoticons/1f475_1f3ff.png\",\"lia_man-health-worker-tone-5\":\"/html/@3A1CA8883191E581049230959A6C2C08/emoticons/1f468_1f3ff_200d_2695.png\",\"lia_woman-health-worker-tone-5\":\"/html/@E222A10E4C1943E56A0192A0D8CCD7B9/emoticons/1f469_1f3ff_200d_2695.png\",\"lia_man-student-tone-5\":\"/html/@01C7A8BB5A1E7FACC795AB78CEC4DED6/emoticons/1f468_1f3ff_200d_1f393.png\",\"lia_woman-student-tone-5\":\"/html/@378F79232641975C9328F74746D073A5/emoticons/1f469_1f3ff_200d_1f393.png\",\"lia_man-teacher-tone-5\":\"/html/@A4CE0DF83EFD4C032DB1286AA313B33A/emoticons/1f468_1f3ff_200d_1f3eb.png\",\"lia_woman-teacher-tone-5\":\"/html/@39806768B5CBBCD1E40F3CC8A05BDB63/emoticons/1f469_1f3ff_200d_1f3eb.png\",\"lia_man-judge-tone-5\":\"/html/@235285EECA27F225EC997791A19CE174/emoticons/1f468_1f3ff_200d_2696.png\",\"lia_woman-judge-tone-5\":\"/html/@EE235455DF5784780B8B0F3EC3B789EB/emoticons/1f469_1f3ff_200d_2696.png\",\"lia_man-farmer-tone-5\":\"/html/@CD717ECE45A10A6F1C10C0FE237C2301/emoticons/1f468_1f3ff_200d_1f33e.png\",\"lia_woman-farmer-tone-5\":\"/html/@40B3BB1973EC63EF39780AA5007A8F93/emoticons/1f469_1f3ff_200d_1f33e.png\",\"lia_man-cook-tone-5\":\"/html/@6116579FAB8983C18C24222B4DCBD251/emoticons/1f468_1f3ff_200d_1f373.png\",\"lia_woman-cook-tone-5\":\"/html/@19C0417EFA7F50C04C3BE6B493659404/emoticons/1f469_1f3ff_200d_1f373.png\",\"lia_man-mechanic-tone-5\":\"/html/@5DB68FBF30C38942682F39D6DD40EA92/emoticons/1f468_1f3ff_200d_1f527.png\",\"lia_woman-mechanic-tone-5\":\"/html/@6E86F6D8893DE6DE941FDABEB5D5B1B5/emoticons/1f469_1f3ff_200d_1f527.png\",\"lia_man-factory-worker-tone-5\":\"/html/@9F0BE6548A7598DF6262F5EDFEBEB775/emoticons/1f468_1f3ff_200d_1f3ed.png\",\"lia_woman-factory-worker-tone-5\":\"/html/@730BC844A8AA628B0F622BD70AF48050/emoticons/1f469_1f3ff_200d_1f3ed.png\",\"lia_man-office-worker-tone-5\":\"/html/@FEA34BC67000B993003366A984A41C8E/emoticons/1f468_1f3ff_200d_1f4bc.png\",\"lia_woman-office-worker-tone-5\":\"/html/@F83281AB5F83EF73D04D246A7D85F756/emoticons/1f469_1f3ff_200d_1f4bc.png\",\"lia_man-scientist-tone-5\":\"/html/@D37026BCCAA40718AA4E045A7E880DBE/emoticons/1f468_1f3ff_200d_1f52c.png\",\"lia_woman-scientist-tone-5\":\"/html/@11DD2FF9BC8A755B97FF6FA76A170E1D/emoticons/1f469_1f3ff_200d_1f52c.png\",\"lia_man-technologist-tone-5\":\"/html/@FAD7C5B6B0CF816890D4BD22EE7A1262/emoticons/1f468_1f3ff_200d_1f4bb.png\",\"lia_woman-technologist-tone-5\":\"/html/@5984D7E88B84CE71240EDE854AB39872/emoticons/1f469_1f3ff_200d_1f4bb.png\",\"lia_man-singer-tone-5\":\"/html/@3033C8AFB2536312DC5E011FF55F61EF/emoticons/1f468_1f3ff_200d_1f3a4.png\",\"lia_woman-singer-tone-5\":\"/html/@74849457DABF780193A93A83BD95A655/emoticons/1f469_1f3ff_200d_1f3a4.png\",\"lia_man-artist-tone-5\":\"/html/@FC98590BEBFFF7FE565301E1A114E803/emoticons/1f468_1f3ff_200d_1f3a8.png\",\"lia_woman-artist-tone-5\":\"/html/@92C28A02651743DDE7D59F792077DAB7/emoticons/1f469_1f3ff_200d_1f3a8.png\",\"lia_man-pilot-tone-5\":\"/html/@D722BA312A7BF1A9A2ACB1F415484DAF/emoticons/1f468_1f3ff_200d_2708.png\",\"lia_woman-pilot-tone-5\":\"/html/@E9B364F853FEB1A02CA226CAD15980B4/emoticons/1f469_1f3ff_200d_2708.png\",\"lia_man-astronaut-tone-5\":\"/html/@F3F0BDBB499A5941D59A5DD69092AE28/emoticons/1f468_1f3ff_200d_1f680.png\",\"lia_woman-astronaut-tone-5\":\"/html/@980AE66DDE20F9DCDFDFE79F5F46E7C4/emoticons/1f469_1f3ff_200d_1f680.png\",\"lia_man-firefighter-tone-5\":\"/html/@F9E3D032F0C01070632565258DAA3BF7/emoticons/1f468_1f3ff_200d_1f692.png\",\"lia_woman-firefighter-tone-5\":\"/html/@D860860C711B9DF2E271DEB918F5323D/emoticons/1f469_1f3ff_200d_1f692.png\",\"lia_prince-tone-5\":\"/html/@DC0A055FBAA08859329343648C730CAB/emoticons/1f934_1f3ff.png\",\"lia_princess-tone-5\":\"/html/@DCD87C88B8E7BAC9D248D11430C513ED/emoticons/1f478_1f3ff.png\",\"lia_man-with-chinese-cap-tone-5\":\"/html/@7EBFB15D92706EEA988264933118EB5C/emoticons/1f472_1f3ff.png\",\"lia_man-in-tuxedo-tone-5\":\"/html/@EDBE66FDA997E771991B300CFCFE689B/emoticons/1f935_1f3ff.png\",\"lia_bride-with-veil-tone-5\":\"/html/@102866BCCF228E940111F8EF2F93B085/emoticons/1f470_1f3ff.png\",\"lia_pregnant-woman-tone-5\":\"/html/@C648641B75FB9C209A58CC6EE92F00FC/emoticons/1f930_1f3ff.png\",\"lia_baby-angel-tone-5\":\"/html/@4162B5E7238C7AD907D046028F500A91/emoticons/1f47c_1f3ff.png\",\"lia_santa-claus-tone-5\":\"/html/@9BB740427DB35597B9DA401B2F58B784/emoticons/1f385_1f3ff.png\",\"lia_mrs.-claus-tone-5\":\"/html/@F091E667F5DA2D122767D31801385D3A/emoticons/1f936_1f3ff.png\",\"lia_woman-dancing-tone-5\":\"/html/@7F3C839353D9605ED194A022CA48E69A/emoticons/1f483_1f3ff.png\",\"lia_man-dancing-tone-5\":\"/html/@D45F7E404D8B12D829A23F5D88D2CA1A/emoticons/1f57a_1f3ff.png\",\"lia_person-taking-bath-tone-5\":\"/html/@AE03E939E63FF387CFEDF39E70F81FB6/emoticons/1f6c0_1f3ff.png\",\"lia_person-in-bed-tone-5\":\"/html/@E65FF2B8F4452A73A00A36402B2557E2/emoticons/1f6cc_1f3ff.png\",\"lia_man-in-suit-levitating-tone-5\":\"/html/@D09F7C2A8F519759541727C20652B6B6/emoticons/1f574_1f3ff.png\",\"lia_horse-racing-tone-5\":\"/html/@5143684387CA2A357F23234A3EA8A706/emoticons/1f3c7_1f3ff.png\",\"lia_snowboarder-tone-5\":\"/html/@A815D5C686370DD6D05B5FEAE02A1429/emoticons/1f3c2_1f3ff.png\",\"lia_selfie-tone-5\":\"/html/@E92C3DBFB9305D9C7083DA28A7757CCC/emoticons/1f933_1f3ff.png\",\"lia_flexed-biceps-tone-5\":\"/html/@973E24808EB40FD4059F50A82C4E3ABB/emoticons/1f4aa_1f3ff.png\",\"lia_backhand-index-pointing-left-tone-5\":\"/html/@3394E385D0917438F8258962810FD60F/emoticons/1f448_1f3ff.png\",\"lia_backhand-index-pointing-right-tone-5\":\"/html/@FDCB66399A6D53DED79202E41AF4D0CD/emoticons/1f449_1f3ff.png\",\"lia_index-pointing-up-tone-5\":\"/html/@9A58128FEBD0582F781E9BD6EEADCDD8/emoticons/261d_1f3ff.png\",\"lia_backhand-index-pointing-up-tone-5\":\"/html/@2F799438E888839706C9D839C38A5479/emoticons/1f446_1f3ff.png\",\"lia_middle-finger-tone-5\":\"/html/@68461FC3936595D659A11DE4A23E1A7F/emoticons/1f595_1f3ff.png\",\"lia_backhand-index-pointing-down-tone-5\":\"/html/@0412A7AC7E6FF5BFA32CF1725EB758E5/emoticons/1f447_1f3ff.png\",\"lia_victory-hand-tone-5\":\"/html/@D8AA4D719477A64B801523C1120A3411/emoticons/270c_1f3ff.png\",\"lia_crossed-fingers-tone-5\":\"/html/@938874AD79ADFFC84EFF37096B971F4B/emoticons/1f91e_1f3ff.png\",\"lia_vulcan-salute-tone-5\":\"/html/@392D4459825522C94A46454799966786/emoticons/1f596_1f3ff.png\",\"lia_sign-of-the-horns-tone-5\":\"/html/@64EBC677EDBDB02F4C1B2B96C91CA9B7/emoticons/1f918_1f3ff.png\",\"lia_call-me-hand-tone-5\":\"/html/@F704B0E07F3B3F1E6D6680A32F727123/emoticons/1f919_1f3ff.png\",\"lia_hand-with-fingers-splayed-tone-5\":\"/html/@6F7C8586852761F621CD1AD404A9E080/emoticons/1f590_1f3ff.png\",\"lia_raised-hand-tone-5\":\"/html/@DD20D317922223738590F4E4B88F93BB/emoticons/270b_1f3ff.png\",\"lia_ok-hand-tone-5\":\"/html/@AF026F09756500E5DB83C3CE621760D7/emoticons/1f44c_1f3ff.png\",\"lia_thumbs-up-tone-5\":\"/html/@DA085AF6BEE34065585B00A3AA1616D6/emoticons/1f44d_1f3ff.png\",\"lia_thumbs-down-tone-5\":\"/html/@FB7EBA8CE895B488B2D8CD2A6D82AD8F/emoticons/1f44e_1f3ff.png\",\"lia_raised-fist-tone-5\":\"/html/@2CFFA96DFB86F68749EBE5017CC72AF1/emoticons/270a_1f3ff.png\",\"lia_oncoming-fist-tone-5\":\"/html/@454C8DEDD622846CEFB926346CB509A4/emoticons/1f44a_1f3ff.png\",\"lia_left-facing-fist-tone-5\":\"/html/@EF455B751385C803B537EE640785DE03/emoticons/1f91b_1f3ff.png\",\"lia_right-facing-fist-tone-5\":\"/html/@0BFDB38DD41952F0B4CB587CF03F5BC3/emoticons/1f91c_1f3ff.png\",\"lia_raised-back-of-hand-tone-5\":\"/html/@AA7A2EEEAB2B2C1ECEF083FD7407F4AB/emoticons/1f91a_1f3ff.png\",\"lia_waving-hand-tone-5\":\"/html/@16B87ACF92879FBDA9CB25C574B93199/emoticons/1f44b_1f3ff.png\",\"lia_writing-hand-tone-5\":\"/html/@CA039B0E62A82AE77766FDB30307D794/emoticons/270d_1f3ff.png\",\"lia_clapping-hands-tone-5\":\"/html/@60839F79BA3FC27315B340EF8B5A1751/emoticons/1f44f_1f3ff.png\",\"lia_open-hands-tone-5\":\"/html/@9171D296E4C7A62132827D51C8716FBD/emoticons/1f450_1f3ff.png\",\"lia_raising-hands-tone-5\":\"/html/@2DBBFB6725259119AE5A1E0B94D7493E/emoticons/1f64c_1f3ff.png\",\"lia_folded-hands-tone-5\":\"/html/@98479C1AE1DE81C7404B0B339976EE09/emoticons/1f64f_1f3ff.png\",\"lia_nail-polish-tone-5\":\"/html/@FF03E3FD197D9102F5E847C92D8C19E1/emoticons/1f485_1f3ff.png\",\"lia_ear-tone-5\":\"/html/@A2812D58AE108C36CA9BC92881E00DCE/emoticons/1f442_1f3ff.png\",\"lia_nose-tone-5\":\"/html/@E91259D537E6D6FE6BDE759922F64315/emoticons/1f443_1f3ff.png\"}}","emoticonsAutosuggestionTextMaxLength":20,"html":"

    <\/span><\/i><\/span><\/i><\/span><\/i><\/span><\/i><\/span><\/i><\/span><\/i><\/span><\/i><\/span><\/i><\/span><\/i><\/div>

    <\/i><\/input><\/div>

    Search Results<\/div>

    No Matching Results<\/div>