Candy Store » Alle Strain Infos | CBD-DEAL24 (2024)

" + "

" + detail + "

" +""; pc_confirmation.style.display = 'block';var mp = document.querySelector('input[name="mp"]');mp.value = '0';} else {form.querySelector('._form-content').style.display = 'inline';pc_confirmation.style.display = 'none';}var hideButton = document.getElementById('hideButton');// Add event listener to the buttonhideButton.addEventListener('click', function() {var submitButton = document.querySelector('#_form_45_submit');submitButton.disabled = false;submitButton.classList.remove('processing');var mp = document.querySelector('input[name="mp"]');mp.value = '1';window.location.href = window.location.href;});const vgoAlias = typeof visitorGlobalObjectAlias === 'undefined' ? 'vgo' : visitorGlobalObjectAlias;var visitorObject = window[vgoAlias];if (email && typeof visitorObject !== 'undefined') {visitorObject('setEmail', email);visitorObject('update');} else if (typeof(trackcmp_url) != 'undefined' && trackcmp_url) {// Site tracking URL to use after inline form submission._load_script(trackcmp_url);}if (typeof window._form_callback !== 'undefined') window._form_callback(id);};window._load_script = function(url, callback, isSubmit) {var head = document.querySelector('head'), script = document.createElement('script'), r = false;var submitButton = document.querySelector('#_form_45_submit');script.charset = 'utf-8';script.src = url;if (callback) {script.onload = script.onreadystatechange = function() {if (!r && (!this.readyState || this.readyState == 'complete')) {r = true;callback();}};}script.onerror = function() {if (isSubmit) {if (script.src.length > 10000) {_show_error("45", "Ihre Übermittlung konnte nicht gesendet werden. Bitte kürzen Sie Ihre Antworten und versuche es erneut.");} else {_show_error("45", "Ihre Übermittlung konnte nicht gesendet werden. Bitte versuchen Sie es erneut.");}submitButton.disabled = false;submitButton.classList.remove('processing');}}head.appendChild(script);};(function() {if (window.location.search.search("excludeform") !== -1) return false;var getCookie = function(name) {var match = document.cookie.match(new RegExp('(^|; )' + name + '=([^;]+)'));return match ? match[2] : null;}var setCookie = function(name, value) {var now = new Date();var time = now.getTime();var expireTime = time + 1000 * 60 * 60 * 24 * 365;now.setTime(expireTime);document.cookie = name + '=' + value + '; expires=' + now + ';path=/; Secure; SameSite=Lax;';}var addEvent = function(element, event, func) {if (element.addEventListener) {element.addEventListener(event, func);} else {var oldFunc = element['on' + event];element['on' + event] = function() {oldFunc.apply(this, arguments);func.apply(this, arguments);};}}var _removed = false;var form_to_submit = document.getElementById('_form_45_');var allInputs = form_to_submit.querySelectorAll('input, select, textarea'), tooltips = [], submitted = false;var getUrlParam = function(name) {if (name.toLowerCase() !== 'email') {var params = new URLSearchParams(window.location.search);return params.get(name) || false;}// email is a special case because a plus is valid in the email addressvar qString = window.location.search;if (!qString) {return false;}var parameters = qString.substr(1).split('&');for (var i = 0; i < parameters.length; i++) {var parameter = parameters[i].split('=');if (parameter[0].toLowerCase() === 'email') {return parameter[1] === undefined ? true : decodeURIComponent(parameter[1]);}}return false;};var acctDateFormat = "%Y.%m.%d";var getNormalizedDate = function(date, acctFormat) {var decodedDate = decodeURIComponent(date);if (acctFormat && acctFormat.match(/(%d|%e).*%m/gi) !== null) {return decodedDate.replace(/(\d{2}).*(\d{2}).*(\d{4})/g, '$3-$2-$1');} else if (Date.parse(decodedDate)) {var dateObj = new Date(decodedDate);var year = dateObj.getFullYear();var month = dateObj.getMonth() + 1;var day = dateObj.getDate();return `${year}-${month < 10 ? `0${month}` : month}-${day < 10 ? `0${day}` : day}`;}return false;};var getNormalizedTime = function(time) {var hour, minutes;var decodedTime = decodeURIComponent(time);var timeParts = Array.from(decodedTime.matchAll(/(\d{1,2}):(\d{1,2})\W*([AaPp][Mm])?/gm))[0];if (timeParts[3]) { // 12 hour formatvar isPM = timeParts[3].toLowerCase() === 'pm';if (isPM) {hour = parseInt(timeParts[1]) === 12 ? '12' : `${parseInt(timeParts[1]) + 12}`;} else {hour = parseInt(timeParts[1]) === 12 ? '0' : timeParts[1];}} else { // 24 hour formathour = timeParts[1];}var normalizedHour = parseInt(hour) < 10 ? `0${parseInt(hour)}` : hour;var minutes = timeParts[2];return `${normalizedHour}:${minutes}`;};for (var i = 0; i < allInputs.length; i++) {var regexStr = "field\\[(\\d+)\\]";var results = new RegExp(regexStr).exec(allInputs[i].name);if (results != undefined) {allInputs[i].dataset.name = allInputs[i].name.match(/\[time\]$/)? `${window.cfields[results[1]]}_time`: window.cfields[results[1]];} else {allInputs[i].dataset.name = allInputs[i].name;}var fieldVal = getUrlParam(allInputs[i].dataset.name);if (fieldVal) {if (allInputs[i].dataset.autofill === "false") {continue;}if (allInputs[i].type == "radio" || allInputs[i].type == "checkbox") {if (allInputs[i].value == fieldVal) {allInputs[i].checked = true;}} else if (allInputs[i].type == "date") {allInputs[i].value = getNormalizedDate(fieldVal, acctDateFormat);} else if (allInputs[i].type == "time") {allInputs[i].value = getNormalizedTime(fieldVal);} else {allInputs[i].value = fieldVal;}}}var remove_tooltips = function() {for (var i = 0; i < tooltips.length; i++) {tooltips[i].tip.parentNode.removeChild(tooltips[i].tip);}tooltips = [];};var remove_tooltip = function(elem) {for (var i = 0; i < tooltips.length; i++) {if (tooltips[i].elem === elem) {tooltips[i].tip.parentNode.removeChild(tooltips[i].tip);tooltips.splice(i, 1);return;}}};var create_tooltip = function(elem, text) {var tooltip = document.createElement('div'),arrow = document.createElement('div'),inner = document.createElement('div'), new_tooltip = {};if (elem.type != 'radio' && elem.type != 'checkbox') {tooltip.className = '_error';arrow.className = '_error-arrow';inner.className = '_error-inner';inner.innerHTML = text;tooltip.appendChild(arrow);tooltip.appendChild(inner);elem.parentNode.appendChild(tooltip);} else {tooltip.className = '_error-inner _no_arrow';tooltip.innerHTML = text;elem.parentNode.insertBefore(tooltip, elem);new_tooltip.no_arrow = true;}new_tooltip.tip = tooltip;new_tooltip.elem = elem;tooltips.push(new_tooltip);return new_tooltip;};var resize_tooltip = function(tooltip) {var rect = tooltip.elem.getBoundingClientRect();var doc = document.documentElement,scrollPosition = rect.top - ((window.pageYOffset || doc.scrollTop) - (doc.clientTop || 0));if (scrollPosition < 40) {tooltip.tip.className = tooltip.tip.className.replace(/ ?(_above|_below) ?/g, '') + ' _below';} else {tooltip.tip.className = tooltip.tip.className.replace(/ ?(_above|_below) ?/g, '') + ' _above';}};var resize_tooltips = function() {if (_removed) return;for (var i = 0; i < tooltips.length; i++) {if (!tooltips[i].no_arrow) resize_tooltip(tooltips[i]);}};var validate_field = function(elem, remove) {var tooltip = null, value = elem.value, no_error = true;remove ? remove_tooltip(elem) : false;if (elem.type != 'checkbox') elem.className = elem.className.replace(/ ?_has_error ?/g, '');if (elem.getAttribute('required') !== null) {if (elem.type == 'radio' || (elem.type == 'checkbox' && /any/.test(elem.className))) {var elems = form_to_submit.elements[elem.name];if (!(elems instanceof NodeList || elems instanceof HTMLCollection) || elems.length <= 1) {no_error = elem.checked;}else {no_error = false;for (var i = 0; i < elems.length; i++) {if (elems[i].checked) no_error = true;}}if (!no_error) {tooltip = create_tooltip(elem, "Bitte eine Option auswählen.");}} else if (elem.type =='checkbox') {var elems = form_to_submit.elements[elem.name], found = false, err = [];no_error = true;for (var i = 0; i < elems.length; i++) {if (elems[i].getAttribute('required') === null) continue;if (!found && elems[i] !== elem) return true;found = true;elems[i].className = elems[i].className.replace(/ ?_has_error ?/g, '');if (!elems[i].checked) {no_error = false;elems[i].className = elems[i].className + ' _has_error';err.push("Die Markierung von %s ist erforderlich.".replace("%s", elems[i].value));}}if (!no_error) {tooltip = create_tooltip(elem, err.join('
'));}} else if (elem.tagName == 'SELECT') {var selected = true;if (elem.multiple) {selected = false;for (var i = 0; i < elem.options.length; i++) {if (elem.options[i].selected) {selected = true;break;}}} else {for (var i = 0; i < elem.options.length; i++) {if (elem.options[i].selected&& (!elem.options[i].value|| (elem.options[i].value.match(/\n/g)))) {selected = false;}}}if (!selected) {elem.className = elem.className + ' _has_error';no_error = false;tooltip = create_tooltip(elem, "Bitte eine Option auswählen.");}} else if (value === undefined || value === null || value === '') {elem.className = elem.className + ' _has_error';no_error = false;tooltip = create_tooltip(elem, "Bitte füllen Sie das markierte Pflichtfeld aus.");}}if (no_error && (elem.id == 'field[]' || elem.id == 'ca[11][v]')) {if (elem.className.includes('phone-input-error')) {elem.className = elem.className + ' _has_error';no_error = false;}}if (no_error && elem.name == 'email') {if (!value.match(/^[\+_a-z0-9-'&=]+(\.[\+_a-z0-9-']+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,})$/i)) {elem.className = elem.className + ' _has_error';no_error = false;tooltip = create_tooltip(elem, "Geben Sie eine gültige E-Mail-Adresse ein.");}}if (no_error && /date_field/.test(elem.className)) {if (!value.match(/^\d\d\d\d-\d\d-\d\d$/)) {elem.className = elem.className + ' _has_error';no_error = false;tooltip = create_tooltip(elem, "Gültiges Datum eingeben");}}tooltip ? resize_tooltip(tooltip) : false;return no_error;};var needs_validate = function(el) {if(el.getAttribute('required') !== null){return true}if(el.name === 'email' && el.value !== ""){return true}if((el.id == 'field[]' || el.id == 'ca[11][v]') && el.className.includes('phone-input-error')){return true}return false};var validate_form = function(e) {var err = form_to_submit.querySelector('._form_error'), no_error = true;if (!submitted) {submitted = true;for (var i = 0, len = allInputs.length; i < len; i++) {var input = allInputs[i];if (needs_validate(input)) {if (input.type == 'tel') {addEvent(input, 'blur', function() {this.value = this.value.trim();validate_field(this, true);});}if (input.type == 'text' || input.type == 'number' || input.type == 'time') {addEvent(input, 'blur', function() {this.value = this.value.trim();validate_field(this, true);});addEvent(input, 'input', function() {validate_field(this, true);});} else if (input.type == 'radio' || input.type == 'checkbox') {(function(el) {var radios = form_to_submit.elements[el.name];for (var i = 0; i < radios.length; i++) {addEvent(radios[i], 'click', function() {validate_field(el, true);});}})(input);} else if (input.tagName == 'SELECT') {addEvent(input, 'change', function() {validate_field(this, true);});} else if (input.type == 'textarea'){addEvent(input, 'input', function() {validate_field(this, true);});}}}}remove_tooltips();for (var i = 0, len = allInputs.length; i < len; i++) {var elem = allInputs[i];if (needs_validate(elem)) {if (elem.tagName.toLowerCase() !== "select") {elem.value = elem.value.trim();}validate_field(elem) ? true : no_error = false;}}if (!no_error && e) {e.preventDefault();}resize_tooltips();return no_error;};addEvent(window, 'resize', resize_tooltips);addEvent(window, 'scroll', resize_tooltips);var hidePhoneInputError = function(inputId) {var errorMessage = document.getElementById("error-msg-" + inputId);var input = document.getElementById(inputId);errorMessage.classList.remove("phone-error");errorMessage.classList.add("phone-error-hidden");input.classList.remove("phone-input-error");};var initializePhoneInput = function(input, defaultCountry) {return window.intlTelInput(input, {utilsScript: "https://unpkg.com/intl-tel-input@17.0.18/build/js/utils.js",autoHideDialCode: false,separateDialCode: true,initialCountry: defaultCountry,preferredCountries: []});}var setPhoneInputEventListeners = function(inputId, input, iti) {input.addEventListener('blur', function() {var errorMessage = document.getElementById("error-msg-" + inputId);if (input.value.trim()) {if (iti.isValidNumber()) {iti.setNumber(iti.getNumber());if (errorMessage.classList.contains("phone-error")){hidePhoneInputError(inputId);}} else {showPhoneInputError(inputId)}} else {if (errorMessage.classList.contains("phone-error")){hidePhoneInputError(inputId);}}});input.addEventListener("countrychange", function() {iti.setNumber('');});input.addEventListener("keydown", function(e) {var charCode = (e.which) ? e.which : e.keyCode;if (charCode > 31 && (charCode < 48 || charCode > 57) && charCode !== 8) {e.preventDefault();}});};var showPhoneInputError = function(inputId) {var errorMessage = document.getElementById("error-msg-" + inputId);var input = document.getElementById(inputId);errorMessage.classList.add("phone-error");errorMessage.classList.remove("phone-error-hidden");input.classList.add("phone-input-error");};window['recaptcha_callback'] = function() { // Get all recaptchas in the DOM (there may be more than one form on the page). var recaptchas = document.getElementsByClassName("g-recaptcha"); for (var i in recaptchas) {// Set the recaptcha element ID, so the recaptcha can be applied to each element.var recaptcha_id = "recaptcha_" + i;recaptchas[i].id = recaptcha_id;var el = document.getElementById(recaptcha_id);if (el != null) { var sitekey = el.getAttribute("data-sitekey"); var stoken = el.getAttribute("data-stoken"); grecaptcha.render(recaptcha_id, {"sitekey":sitekey,"stoken":stoken});} }}; _load_script("https://www.google.com/recaptcha/api.js?onload=recaptcha_callback&render=explicit");var _form_serialize = function(form){if(!form||form.nodeName!=="FORM"){return }var i,j,q=[];for(i=0;i

{if (key !== 'hideButton') {formData.append(key, value);}//formData.append(key, value); });let request = {headers: {"Accept": "application/json"},body: formData,method: "POST"};let pageUrlParams = new URLSearchParams(window.location.search);if (pageUrlParams.has('t')) {request.headers.Authorization = 'Bearer ' + pageUrlParams.get('t');} const response = await fetch('https://cbd-deal24.activehosted.com/proc.php?jsonp=true', request); return response.json();}if (formSupportsPost) { submitForm().then((data) => {eval(data.js); });} else { _load_script('https://cbd-deal24.activehosted.com/proc.php?' + serialized + '&jsonp=true', null, true);}}return false;};addEvent(form_to_submit, 'submit', form_submit);})();
Candy Store » Alle Strain Infos | CBD-DEAL24 (2024)

FAQs

Is Candy an indica or sativa? ›

Candy Kush features indica, sativa and ruderalis elements within its genetic make up. The strain is the result of crossbreeding the parent strains Auto Pounder and Kush. This feminised strain offers a tantalising sweet taste to cannabis smokers, and does not disappoint when it comes to yields.

Is Candy Store RBx indica or sativa? ›

Candy Store RBx is a unique strain that is sure to satisfy even the most discerning cannabis connoisseur. It has a 25% THC content, as well as a 0% CBD content. Candy Store RBx is a 20% sativa and 80% indica strain.

What are the effects of candy strain? ›

What effects does Candy have? Candy cannabis strain is well-balanced in that is has an uplifting and energizing component that eventually gives way to a mellow, stony relaxation according to consumers. Is Candy an Indica, Sativa or Hybrid? Candy cannabis strain is a hybrid.

What is the future number 1 strain? ›

Future #1 offers a more euphoric and functional high that allows for creative expression, daydreaming, and insightful conversation. Coming from Anesia Seeds, Future #1 crosses Original Glue and Starfighter. This potent strain offers a delicious pineapple, citrus, and mango terpene profile.

What is candy Store strain? ›

From Ethos Genetics' Unique Boutique Line, Candy Store R1 crosses Lemon Berry Candy OG and Ethos Cookies #16. Densely packed nugs with monster trichomes cover its branches, making for great extracts. Terpenes put out sharp candied berry, thick floral, and sandalwood incense scents, all backed by a gassy undertone.

What is the best strain for a happy high? ›

We've compiled the best strains that inspire euphoria thanks to a mix of terpenes and genetics that suit any connoisseur's preferences.
  • Trainwreck. ...
  • Sweeties. ...
  • Rainbow Belts. ...
  • Face Off OG. ...
  • Apples and Bananas. ...
  • White Runtz. ...
  • Gelato. ...
  • Jack Frost.

What does RBX mean in strains? ›

US seed bank Ethos Genetics do a lot of this kind of feminised inter-breeding and they would label these seeds as RBX which stands for Reversed Back Cross.

Is Candy Runtz a real strain? ›

Candy Runtz (H) Small Buds 30.56% Thc

The Candy Runtz strain is a crossbreed between two popular and potent cultivars, Zkittlez and Gelato. Both parent strains are highly regarded for their flavors and effects, and Candy Runtz combines the best of both worlds.

Which runtz is sativa? ›

Blue Runtz Strain

Keep in mind that this strain leans towards the sativa side of things, so it's going to make you feel happy, euphoric, uplifted, and talkative. It's ideal for social situations. In terms of the flavor, the dominant terpene is limonene, which means it has a citrusy aroma.

What strain has the strongest effects? ›

  • Most Potent Strain Overall: Godfather OG.
  • Relaxing and Euphoric Highs: Gorilla Glue #4.
  • Potential Pain Relief: Cake Bomb.
  • Powerful Energizing Effects: Bruce Banner.
  • Intense Mood Upliftment: Chocolope Fem.
  • Impressively High Yields: Apple Betty.
  • Irresistible Terpene Profile: Titan F1.
May 21, 2024

Which strain makes you feel high? ›

Commonly associated effects of use: Sativa often produces a “mind high” or an energizing, anxiety-reducing effect. Daytime or nighttime use: Because of its stimulating effects, sativa is often used in the daytime. Popular strains: Various sativa strains may be used for different purposes.

Why does indica make me feel good? ›

Indica Effects

The higher CBD content in indica can mean that for many people, it causes a relaxing, soothing feeling in the body. But experts also point to its higher levels of the terpene myrcene as a reason for a sleepy feeling. For this reason, some people choose to take this strain in the evening hours.

What's the best strain ever? ›

Users call Godfather OG one of the best weed strains for its therapeutic effects on pain, stress, and anxiety. With THC levels reaching up to 30%, Godfather OG provides a legendary and powerful high best suited for seasoned cannabis enthusiasts.

What is the oldest strain? ›

Hindu Kush, or Hindi Kush, also comes from the Hindu Kush Mountains and is referred to as one of the world's oldest weed strains. In Afghanistan, Pakistan, and India, Hindu Kush is commonly used to produce hash.

What is the strongest indica strain in the world? ›

What Is the Strongest Indica Strain? Gorilla Glue is is considered one of the strongest strains of weed. Its known for its potent effects, but the strength of a strain can vary depending on factors such as cultivation and individual tolerance.

Is Candy Land sativa or indica? ›

Candyland is a sativa-dominant hybrid cannabis strain created by crossing Granddaddy Purple and Bay Area Platinum Cookies strain, known for its sweet aroma, dense nugs covered in trichomes, and uplifting effects.

Is Candy Gas indica or sativa? ›

Candy Gas is a hybrid strain, meaning it offers a balanced combination of both indica and sativa effects. This makes it a versatile choice for a wide range of users, whether they are looking for relaxation, pain relief, or a boost in creativity and energy.

Is sativa happier than indica? ›

Indica strains are said to have a calming effect on the body and mind due to their higher CBD content. They are often considered "bedtime strains" because they help induce sleep and ease anxiety. 11. Sativa strains are said to be uplifting and cause more of a cerebral "head-high" feeling due to their high THC content.

What are the effects of sativa Candy? ›

On the sativa side, it triggers a wave of euphoria and keeps the mind alert just enough to keep it from slipping into couch-lock. This strain may help with depression, daily stress, or minor pain. It's also a good choice for a social smoke with friends.

References

Top Articles
Jurassic World Legacy Collection Toys
victoria, TX cars & trucks - craigslist
The Civil Rights Movement: A Very Short Introduction
Family Day returns to Dobbins bigger than before
Royal Bazaar Farmers Market Tuckernuck Drive Richmond Va
Aflac on LinkedIn: Aflac Supplemental Insurance | 22 comments
Wharton County Busted Newspaper
Sevita Sso Login
Sutter Health Candidate Login
How To Get To Brazil In Slap Battles
Un-Pc Purchase Crossword Clue
Midlands Tech Beltline Campus Bookstore
Hannaford Weekly Flyer Manchester Nh
Slmd Skincare Appointment
Nypsl-E Tax Code Category
Hessaire Mini Split Remote Control Manual
Wasmo Link Telegram
Cbs Local News Sacramento
Spanish Flower Names: 150+ Flowers in Spanish
Amazing Lash Bay Colony
Convert liters to quarts
Txu Cash Back Loyalty Card Balance
Friend Offers To Pay For Friend’s B-Day Dinner, Refuses When They See Where He Chose
Central Nj Craiglist
Watch The Lovely Bones Online Free 123Movies
The Boogeyman Showtimes Near Marcus Menomonee Falls Cinema
Crazy Rays Price List
Walgreens Pharmacy | Manage Prescriptions, Transfers, and Refills
Urbfsdreamgirl
Jvid Rina Sauce
Taylorsince1909
BNSF Railway / RAILROADS | Trains and Railroads
Our Favorite Paper Towel Holders for Everyday Tasks
Paris 2024: The first Games to achieve full gender parity
Junees Cedarhurst
How Much Do Internet and Wi-Fi Cost?
Charlotte North Carolina Craigslist Pets
Sam's Club Near Me Gas Price
Missing 2023 Showtimes Near Mjr Partridge Creek Digital Cinema 14
123Movies Iron Man 2
More massage parlors shut down by Roswell Police after ordinance violations
Mekala - Jatland Wiki
United States Map Quiz
Craigslist Free Stuff Columbus Ga
Antonin Balthazar Lévy
Vcu Basketball Wiki
4215 Tapper Rd Norton Oh 44203
Online-Shopping bei Temu: Solltest du lieber die Finger davon lassen?
Centurylink Outage Map Mesa Az
Wat is een Microsoft Tenant
Unblocked Games Premium 77
Latest Posts
Article information

Author: Dong Thiel

Last Updated:

Views: 5503

Rating: 4.9 / 5 (59 voted)

Reviews: 90% of readers found this page helpful

Author information

Name: Dong Thiel

Birthday: 2001-07-14

Address: 2865 Kasha Unions, West Corrinne, AK 05708-1071

Phone: +3512198379449

Job: Design Planner

Hobby: Graffiti, Foreign language learning, Gambling, Metalworking, Rowing, Sculling, Sewing

Introduction: My name is Dong Thiel, I am a brainy, happy, tasty, lively, splendid, talented, cooperative person who loves writing and wants to share my knowledge and understanding with you.