Audio Podcast
Subscribe to our Newsletter

Our quarterly newsletter features links to recent episodes, announcements, special offers and more...


Subscribe to Newsletter


Buy Us a Coffee
If you enjoy the Sixth Sense Society, consider dropping by Ko-fi and buying us a coffee. Your donation helps us to cover the equipment and production costs for our show. Plus we just really like coffee!


Where can I watch the show?

You have a number of good options. You can watch the most recent episode of our show right here on our website. Just go to the “Our Show” tab.

Visit our channel on YouTube: YouTube/c/sixthsensesociety

Be sure to subscribe to our show so that you’ll get notifications of new episodes (plus it just makes us really happy.)

Can I listen to the Sixth Sense Society as an audio podcast?

Absolutely. After live streaming or recording a show, we take the audio and upload it as an audio podcast. You can listen to shows when driving, walking or performing other activities. Just visit Spotify, iTunes, Google Podcast or any number of other podcast services and search “Sixth Sense Society”. We’re easy to find.

Can I be a guest on your show?

Maybe. We really love meeting new people and having interesting guests on the show. But we want to make sure the topic of interest broadly aligns with what our show is about. We also want to make sure your values and beliefs don’t conflict with our own – as our show is about tolerance for various paths, faiths, practices and traditions. We see having you as a guest on our show as being an endorsement by us, so we want to make sure it’s a good fit. But reach out to us and let’s talk about it.

Do I have to pay to listen to your show?

No. We’ve always wanted the show to be available to everyone, not just paid subscribers. We also want to keep little to no advertising on the show. We don’t like to be interrupted by ads, and we figure you probably don’t as well.

If I’m enjoying the show, how can I support you?

We do have a donation button through Ko-fi on the left menu of our website. If you enjoy the show, buy us a coffee. It helps us cover the cost of buying equipment, paying for hosting and all the other expenses associated with producing the show.

Another great way to support the show is to subscribe, like the episodes you enjoy and leave us a positive comment. That really does help us to get noticed and grow our show.

Please contact us if you have any other questions, comments or suggestions. We’re happy to hear from our audience.

Next Show

No event found

Tao Quote of the Day</div> </div><div class="art-blockcontent"><h2>No event found</h2><div style="text-align: justify;">He who talks more is sooner exhausted.</div><div style="text-align: right;"><i>Lao Tzu </i></div></div> </div><div id="custom_html-11" class="art-block widget_text widget widget_custom_html clearfix"> <div class="art-blockcontent"><div class="textwidget custom-html-widget"></div></div> </div><div id="ephemeris-2" class="art-block extendedwopts-hide extendedwopts-mobile widget widget_ephemeris clearfix"> <div class="art-blockheader"> <div class="t">Ephemeris</div> </div><div class="art-blockcontent"><table width="100%" border="0" style="border: none;"><tr><td width="60"><img src="https://sixthsensesociety.com/wp-content/plugins/ephemeris/images/zodiac/cancer_55x55.png" alt="Cancer" title="Cancer" width="55" height="55" /><br /></td><td align="left">Sun in Cancer<br />1 degree</td></tr></table><table width="100%" border="0" style="border: none;"><tr><td width="60"><img src="https://sixthsensesociety.com/wp-content/plugins/ephemeris/images/zodiac/scorpio_55x55.png" alt="Scorpio" title="Scorpio" width="55" height="55" /><br /></td><td align="left">Moon in Scorpio<br />2 degrees</td></tr></table><table width="100%" border="0" style="border: none;"><tr><td width="60"><img src="https://sixthsensesociety.com/wp-content/plugins/ephemeris/images/moon/waxing_gibbous_moon_55x55.png" alt="Waxing Gibbous Moon" title="Waxing Gibbous Moon" width="55" height="55" /><br /></td><td align="left">Waxing Gibbous Moon<br />9 days old</td></tr></table><div style="text-align: right;"><font face="arial" size="-3"><a href="http://www.joeswebtools.com/wordpress-plugins/ephemeris/">Joe's</a></font></div></div> </div></div> </div> </div> </div><footer class="art-footer"><div class="art-footer-text"> <p><a href="https://sixthsensesociety.com/?feed=rss2" class="art-rss-tag-icon" title="Sixth Sense Society RSS Feed" style="float: left; line-height: 0px;"></a></p> <p><a href="http://sixthsensesociety.com/wp-login.php">Admin</a></p> <p>Copyright © 2026. All Rights Reserved.</p> </div> </footer> </div> <p class="art-page-footer"> <span id="art-footnote-links">Powered by <a href="http://wordpress.org/" target="_blank">WordPress</a> and <a href="http://www.artisteer.com/?p=wordpress_themes" target="_blank">WordPress Theme</a> created with Artisteer.</span> </p> </div> <div id="wp-footer"> <!-- WP Audio player plugin v1.9.15 - https://www.tipsandtricks-hq.com/wordpress-audio-music-player-plugin-4556/ --> <script type="text/javascript"> soundManager.useFlashBlock = true; // optional - if used, required flashblock.css soundManager.url = 'https://sixthsensesociety.com/wp-content/plugins/compact-wp-audio-player/swf/soundmanager2.swf'; function play_mp3(flg, ids, mp3url, volume, loops) { //Check the file URL parameter value var pieces = mp3url.split("|"); if (pieces.length > 1) {//We have got an .ogg file too mp3file = pieces[0]; oggfile = pieces[1]; //set the file URL to be an array with the mp3 and ogg file mp3url = new Array(mp3file, oggfile); } soundManager.createSound({ id: 'btnplay_' + ids, volume: volume, url: mp3url }); if (flg == 'play') { soundManager.play('btnplay_' + ids, { onfinish: function() { if (loops == 'true') { loopSound('btnplay_' + ids); } else { document.getElementById('btnplay_' + ids).style.display = 'inline'; document.getElementById('btnstop_' + ids).style.display = 'none'; } } }); } else if (flg == 'stop') { //soundManager.stop('btnplay_'+ids); soundManager.pause('btnplay_' + ids); } } function show_hide(flag, ids) { if (flag == 'play') { document.getElementById('btnplay_' + ids).style.display = 'none'; document.getElementById('btnstop_' + ids).style.display = 'inline'; } else if (flag == 'stop') { document.getElementById('btnplay_' + ids).style.display = 'inline'; document.getElementById('btnstop_' + ids).style.display = 'none'; } } function loopSound(soundID) { window.setTimeout(function() { soundManager.play(soundID, {onfinish: function() { loopSound(soundID); }}); }, 1); } function stop_all_tracks() { soundManager.stopAll(); var inputs = document.getElementsByTagName("input"); for (var i = 0; i < inputs.length; i++) { if (inputs[i].id.indexOf("btnplay_") == 0) { inputs[i].style.display = 'inline';//Toggle the play button } if (inputs[i].id.indexOf("btnstop_") == 0) { inputs[i].style.display = 'none';//Hide the stop button } } } </script> <div class="mysticky-welcomebar-fixed front-site mysticky-welcomebar-notpresent mysticky-welcomebar-widget-0 mysticky-welcomebar-position-top mysticky-welcomebar-showx-desktop mysticky-welcomebar-showx-mobile mysticky-welcomebar-btn-desktop mysticky-welcomebar-btn-mobile mysticky-welcomebar-display-desktop mysticky-welcomebar-display-mobile mysticky-welcomebar-attention-default mysticky-welcomebar-entry-effect-slide-in" data-after-triger="after_a_few_seconds" data-triger-sec="1" data-position="top" data-height="60" data-rediect="redirect_to_url" data-aftersubmission="dont_show_welcomebar" data-automatically-enabled="1" data-automatically-triggersec="" data-welcomebar-widget="0" data-isenablecoupon="0" data-btn-click-action="redirect_to_url"> <div class="mysticky-welcomebar-fixed-wrap mysticky-welcomebar-position-center" data-widget-nonce="b845793edf" data-welcomebar-widget="0" data-widget-analytics="on"> <div class="mysticky-welcomebar-content" style="margin-right:20px;" > <p>Sixth Sense Society airs new episodes Wednesdays @ 1:00 PM (Pacific Time) on YouTube</p> <div class="mysticky-welcomebar-thankyou-content" style="display: none;"> </div> </div> <div class="mysticky-welcomebar-btn mysticky-welcomebar-hover-effect-none" > <a class="mysticky-welcomebar-btn-a" href="https://youtube.com/sixthsensesociety" target="_blank" data-welcomebar-widget="0" data-isenable-coupon="0" data-widget-analytics="on" data-widget-nonce="b845793edf" > Subscribe on YouTube </a> </div> <span class="mysticky-welcomebar-close close-btn-widget-0" data-welcomebar-widget="0" tabindex="0" role="button" aria-label="close" data-widget-nonce="b845793edf" data-widget-analytics="on">X</span> </div> </div> <style> .mysticky-welcomebar-fixed.mysticky-welcomebar-widget-0 { background-color: #000000; font-family: Copse; height:60px } .mysticky-welcomebar-widget-0 .mysticky-welcomebar-fixed-wrap { min-height: 60px; } .mysticky-welcomebar-fixed.mysticky-welcomebar-widget-0 .mysticky-welcomebar-content p a, .mysticky-welcomebar-fixed.mysticky-welcomebar-widget-0 .mysticky-welcomebar-content p { color: #ffffff; font-size: 16px; font-family:Copse } .mysticky-welcomebar-fixed.mysticky-welcomebar-widget-0 .mysticky-couponbar-content .coupon-text p { color: #ffffff; font-size: 16px; font-family:Copse } .mysticky-welcomebar-fixed.mysticky-welcomebar-widget-0 .mysticky-welcomebar-btn a { background-color: #ffffff; color: #000000; font-size: 16px; } .mysticky-welcomebar-fixed.mysticky-welcomebar-widget-0 .mysticky-welcomebar-thankyou-content p { color: ; font-size: px; } .mysticky-welcomebar-fixed .mysticky-welcomebar-close.close-btn-widget-0{ color : #000000 } .mysticky-welcomebar-widget-0 .mysticky-coupon-btn a{ background-color : #553882; color : #eeeeed; } .mysticky-welcomebar-widget-0 .vector path{ fill: #6d7374; } .mysticky-welcomebar-widget-0 .coupon-text-sp{ border-color : #6d7374; } .mysticky-welcomebar-widget-0 .count-down-timer-box .counter-main-block label {font-size:12px!important;} </style> <style type="text/css"></style> <div id="bravepop_element_tooltip"></div><div id="bravepop_element_lightbox"><div id="bravepop_element_lightbox_close" onclick="brave_lightbox_close()"></div><div id="bravepop_element_lightbox_content"></div></div><!-- Instagram Feed JS --> <script type="text/javascript"> var sbiajaxurl = "https://sixthsensesociety.com/wp-admin/admin-ajax.php"; </script> <script async data-wp-strategy="async" fetchpriority="low" id="comment-reply-js" src="https://sixthsensesociety.com/wp-includes/js/comment-reply.min.js?ver=7.0"></script> <script id="wp-hooks-js" src="https://sixthsensesociety.com/wp-includes/js/dist/hooks.min.js?ver=7496969728ca0f95732d"></script> <script id="wp-i18n-js" src="https://sixthsensesociety.com/wp-includes/js/dist/i18n.min.js?ver=781d11515ad3d91786ec"></script> <script id="wp-i18n-js-after"> wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); //# sourceURL=wp-i18n-js-after </script> <script id="event_script-js" src="https://sixthsensesociety.com/wp-content/plugins/quick-event-manager/legacy/quick-event-manager.js?ver=9.17"></script> <script id="jquery-ui-core-js" src="https://sixthsensesociety.com/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3"></script> <script id="jquery-ui-datepicker-js" src="https://sixthsensesociety.com/wp-includes/js/jquery/ui/datepicker.min.js?ver=1.13.3"></script> <script id="jquery-ui-datepicker-js-after"> jQuery(function(jQuery){jQuery.datepicker.setDefaults({"closeText":"Close","currentText":"Today","monthNames":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthNamesShort":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"nextText":"Next","prevText":"Previous","dayNames":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"dayNamesShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"dayNamesMin":["S","M","T","W","T","F","S"],"dateFormat":"MM d, yy","firstDay":1,"isRTL":false});}); //# sourceURL=jquery-ui-datepicker-js-after </script> <script id="underscore-js" src="https://sixthsensesociety.com/wp-includes/js/underscore.min.js?ver=1.13.8"></script> <script id="backbone-js" src="https://sixthsensesociety.com/wp-includes/js/backbone.min.js?ver=1.6.1"></script> <script id="wp-api-request-js-extra"> var wpApiSettings = {"root":"https://sixthsensesociety.com/index.php?rest_route=/","nonce":"b49b12bcb3","versionString":"wp/v2/"}; //# sourceURL=wp-api-request-js-extra </script> <script id="wp-api-request-js" src="https://sixthsensesociety.com/wp-includes/js/api-request.min.js?ver=7.0"></script> <script id="wp-api-js" src="https://sixthsensesociety.com/wp-includes/js/wp-api.min.js?ver=7.0"></script> <script id="wp-url-js" src="https://sixthsensesociety.com/wp-includes/js/dist/url.min.js?ver=bb0f766c3d2efe497871"></script> <script id="wp-api-fetch-js" src="https://sixthsensesociety.com/wp-includes/js/dist/api-fetch.min.js?ver=d7efe4dc1468d36c39b8"></script> <script id="wp-api-fetch-js-after"> wp.apiFetch.use( wp.apiFetch.createRootURLMiddleware( "https://sixthsensesociety.com/index.php?rest_route=/" ) ); wp.apiFetch.nonceMiddleware = wp.apiFetch.createNonceMiddleware( "b49b12bcb3" ); wp.apiFetch.use( wp.apiFetch.nonceMiddleware ); wp.apiFetch.use( wp.apiFetch.mediaUploadMiddleware ); wp.apiFetch.nonceEndpoint = "https://sixthsensesociety.com/wp-admin/admin-ajax.php?action=rest-nonce"; //# sourceURL=wp-api-fetch-js-after </script> <script id="quick-event-manager-user-script-js-extra"> var qem_data = {"register":{"sort":"field1,field2,field3,field4,field5,field17,field6,field7,field8,field9,field10,field11,field12,field13,field14,field15,field16","useform":"","formwidth":280,"usename":"checked","usemail":"checked","useblank1":"","useblank2":"","usedropdown":"","usenumber1":"","useaddinfo":"","useoptin":"","usechecks":"","usechecksradio":"","reqname":"checked","reqmail":"checked","reqblank1":"","reqblank2":"","reqdropdown":"","reqnumber1":"","formborder":"","ontheright":"","notificationsubject":"New registration for","title":"Register for this event","blurb":"Enter your details below","replytitle":"Thank you for registering","replyblurb":"We will be in contact soon","replydeferred":"Please ensure you bring the registration fee to the event","yourname":"Your Name","youremail":"Email Address","yourtelephone":"Telephone Number","yourplaces":"Places required","donation":"Donation Amount","placesposition":"left","yourmessage":"Message","yourattend":"I will not be attending this event","yourblank1":"More Information","yourblank2":"More Information","yourdropdown":"Separate,With,Commas","yourselector":"Separate,With,Commas","yournumber1":"Number","addinfo":"Fill in this field","captchalabel":"Answer the sum","optinblurb":"Sign me up for email messages","checkslabel":"Select options","checkslist":"Option 1,Option 4,Option 3","usemorenames":"","morenames":"Enter all names:","useterms":"","termslabel":"I agree to the Terms and Conditions","termsurl":"","termstarget":"","notattend":"","error":"Please complete the form","qemsubmit":"Register","whoscoming":"","whoscomingmessage":"Look who's coming: ","placesbefore":"There are","placesafter":"places available.","numberattendingbefore":"There are","numberattendingafter":"people coming.","eventlist":"","eventfull":"","eventfullmessage":"Registration is closed","waitinglist":"","waitinglistreply":"Your name has been added to the waiting list","waitinglistmessage":"But you can register for the waiting list","moderate":"","moderatereply":"Your registration is awaiting approval","read_more":"Return to the event","useread_more":"","sendemail":"krista.6thsensesoc@gmail.com","qemmail":"wpmail","sendcopy":"","usecopy":"","completed":"","copyblurb":"Send registration details to your email address","alreadyregistered":"You are already registered for this event","nameremoved":"You have been removed from the list","checkremoval":"","spam":"Your Details have been flagged as spam","thanksurl":"","cancelurl":"","allowmultiple":"","paypal":"","perevent":"perperson","couponcode":"Coupon code","ignorepayment":"","ignorepaymentlabel":"Pay on arrival","placesavailable":"checked","submitbackground":"#343838","hoversubmitbackground":"#888888","listname":false,"listblurb":"[name] x[places] ([telephone]) [website]"}}; //# sourceURL=quick-event-manager-user-script-js-extra </script> <script id="quick-event-manager-user-script-js" src="https://sixthsensesociety.com/wp-content/plugins/quick-event-manager/ui/user/js/frontend.js?ver=9.17"></script> <script id="wp_mailjet_form_builder_widget-front-script-js-extra"> var mjWidget = {"ajax_url":"https://sixthsensesociety.com/wp-admin/admin-ajax.php"}; //# sourceURL=wp_mailjet_form_builder_widget-front-script-js-extra </script> <script id="wp_mailjet_form_builder_widget-front-script-js" src="https://sixthsensesociety.com/wp-content/plugins/mailjet-for-wordpress/src/widgetformbuilder/js/front-widget.js?ver=7.0"></script> <script id="page-links-to-js" src="https://sixthsensesociety.com/wp-content/plugins/page-links-to/dist/new-tab.js?ver=3.4.1"></script> <script id="__ytprefsfitvids__-js" src="https://sixthsensesociety.com/wp-content/plugins/youtube-embed-plus/scripts/fitvids.min.js?ver=14.2.6"></script> <script data-wp-strategy="defer" defer id="morphext-js-js" src="https://sixthsensesociety.com/wp-content/plugins/mystickymenu-pro/js/morphext/morphext.min.js?ver=2.7.6"></script> <script id="welcomebar-frontjs-js-extra"> var welcomebar_frontjs = {"ajaxurl":"https://sixthsensesociety.com/wp-admin/admin-ajax.php","days":"Days","hours":"Hours","minutes":"Minutes","seconds":"Seconds","ajax_nonce":"523cc71d1d"}; //# sourceURL=welcomebar-frontjs-js-extra </script> <script data-wp-strategy="defer" defer id="welcomebar-frontjs-js" src="https://sixthsensesociety.com/wp-content/plugins/mystickymenu-pro/js/welcomebar-front.js?ver=2.7.6"></script> <script data-wp-strategy="defer" defer id="detectmobilebrowser-js" src="https://sixthsensesociety.com/wp-content/plugins/mystickymenu-pro/js/detectmobilebrowser.js?ver=2.7.6"></script> <script id="mystickymenu-js-extra"> var option = {"mystickyClass":".art-nav.desktop-nav","activationHeight":"0","disableWidth":"0","disableLargeWidth":"0","adminBar":"false","device_desktop":"1","device_mobile":"1","mystickyTransition":"slide","mysticky_disable_down":"false"}; //# sourceURL=mystickymenu-js-extra </script> <script data-wp-strategy="defer" defer id="mystickymenu-js" src="https://sixthsensesociety.com/wp-content/plugins/mystickymenu-pro/js/mystickymenu.min.js?ver=2.7.6"></script> <script id="bravepop_front_js-js-extra"> var bravepop_global = {"loggedin":"false","isadmin":"false","referer":"","security":"dfa50b0c29","goalSecurity":"1dfd5d7a12","couponSecurity":"fef3cf2d4f","cartURL":"","checkoutURL":"","ajaxURL":"https://sixthsensesociety.com/wp-admin/admin-ajax.php","field_required":"Required","no_html_allowed":"No Html Allowed","invalid_number":"Invalid Number","invalid_phone":"Invalid Phone Number","invalid_email":"Invalid Email","invalid_url":"Invalid URL","invalid_date":"Invalid Date","fname_required":"First Name is Required.","lname_required":"Last Name is Required.","username_required":"Username is Required.","email_required":"Email is Required.","email_invalid":"Invalid Email addresss.","pass_required":"Password is Required.","pass_short":"Password is too Short.","yes":"Yes","no":"No","login_error":"Something Went Wrong. Please contact the Site administrator.","pass_reset_success":"Please check your Email for the Password reset link.","customFonts":[],"disableGoogleFonts":"false"}; //# sourceURL=bravepop_front_js-js-extra </script> <script id="bravepop_front_js-js" src="https://sixthsensesociety.com/wp-content/plugins/brave-popup-builder/assets/frontend/brave.js?ver=7.0"></script> <script id="wp-emoji-settings" type="application/json"> {"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://sixthsensesociety.com/wp-includes/js/wp-emoji-release.min.js?ver=7.0"}} </script> <script type="module"> /*! This file is auto-generated */ const a=JSON.parse(document.getElementById("wp-emoji-settings").textContent),o=(window._wpemojiSettings=a,"wpEmojiSettingsSupports"),s=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const a=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===a[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,a){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!a(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,a){let r;const o=(r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),s=(o.textBaseline="top",o.font="600 32px Arial",{});return e.forEach(e=>{s[e]=t(o,e,n,a)}),s}function r(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}a.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),c.toString(),p.toString()].join(",")+"));",a=new Blob([e],{type:"text/javascript"});const r=new Worker(URL.createObjectURL(a),{name:"wpTestEmojiSupports"});return void(r.onmessage=e=>{i(n=e.data),r.terminate(),t(n)})}catch(e){}i(n=f(s,u,c,p))}t(n)}).then(e=>{for(const n in e)a.supports[n]=e[n],a.supports.everything=a.supports.everything&&a.supports[n],"flag"!==n&&(a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&a.supports[n]);var t;a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&!a.supports.flag,a.supports.everything||((t=a.source||{}).concatemoji?r(t.concatemoji):t.wpemoji&&t.twemoji&&(r(t.twemoji),r(t.wpemoji)))}); //# sourceURL=https://sixthsensesociety.com/wp-includes/js/wp-emoji-loader.min.js </script> <!-- 100 queries. 0.950 seconds. --> </div> </body> </html>