Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (2025)

HICCPet Complete Grooming Solution >>

Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (1) Free shipping on orders $45 USD+

Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (2) Vet Recommended

Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (3) Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (4)

`); } // 构建 Shopify API 请求 URL,添加page参数 const nextPage = collectionLoadStatus[collectionHandle].page + 1; const apiUrl = `/collections/${collectionHandle}/products.json?limit=6&page=${nextPage}`; // 发送请求获取更多产品 $.ajax({ url: apiUrl, type: 'GET', success: function(response) { // 移除加载提示 $container.next('.loading-indicator').remove(); if (response && response.products && response.products.length > 0) { // 添加产品到列表 response.products.forEach(function(product) { const productHtml = ` ${product.title} `; $container.append(productHtml); }); // 更新页码 collectionLoadStatus[collectionHandle].page = nextPage; // 如果获取的产品少于6个,说明没有更多产品了 if (response.products.length < 6) { collectionLoadStatus[collectionHandle].allLoaded = true; // 添加结束提示 $container.after('

Oops! That\'s all for now.

'); } } else { // 没有更多产品了 collectionLoadStatus[collectionHandle].allLoaded = true; // 添加结束提示 $container.after('

Oops! That\'s all for now.

'); } // 重置加载状态 collectionLoadStatus[collectionHandle].loading = false; }, error: function() { // 移除加载提示 $container.next('.loading-indicator').remove(); // 重置加载状态 collectionLoadStatus[collectionHandle].loading = false; } }); } });

Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (38)

Popular Searches

Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (41)Dental Wipes

Ear Wipes

Eye Wipes

Pet Glove Wipes

Skin Spray

You May Also Like

Home For Cats HICC Pet® Hypoallergenic Pet Glove Wipes For Cats, 6 Pcs

1/6

Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (42)

Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (43)

Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (44)

Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (45)

Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (46)

Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (47)

Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (48)

Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (49)

Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (50)

Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (51)

Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (52)

Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (53)

Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (54)

  • Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (55)Cleanses eye stains, ears, mouth, face
  • Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (56)Moisturizes dry skin
  • Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (57)Removes tough odors
  • Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (58)Nourishes & smoothes hair
  • Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (59)Gentle on pets' sensitive skin
`); $mainMedia.append($video); // 触发重排后添加 active 类 requestAnimationFrame(() => { $video.addClass('active'); }); // 等待过渡完成后移除旧媒体 setTimeout(() => { $currentMedia.remove(); initVideoControls($mainMedia); }, 300); } else { const $img = $(`Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (65)`); $mainMedia.append($img); // 触发重排后添加 active 类 requestAnimationFrame(() => { $img.addClass('active'); }); // 等待过渡完成后移除旧媒体 setTimeout(() => { $currentMedia.remove(); }, 300); } }); // 移除旧的视频控制事件处理 $(document).off('click', '.video-play-btn'); $(document).off('play', '.product-media__video video'); $(document).off('pause ended', '.product-media__video video'); // 修改缩略图滑动功能 if ($('.thumb-slider').length) { const $slider = $('.thumb-slider'); const $prevBtn = $('.thumb-nav-prev'); const $nextBtn = $('.thumb-nav-next'); const $wrapper = $('.thumb-slider-wrapper'); const $thumbs = $slider.find('.product-media__thumb'); // 计算单个缩略图的总宽度(包含间距) const thumbTotalWidth = $wrapper.width() / 3; // 容器宽度三等分 const gap = 8; // 间距 let currentIndex = 0; const maxIndex = Math.ceil($thumbs.length / 3) - 1; // 更新导航按钮状态 function updateNavButtons() { $prevBtn.prop('disabled', currentIndex === 0); $nextBtn.prop('disabled', currentIndex >= maxIndex); } // 滑动到指定位置 function slideTo(index) { currentIndex = index; // 计算滑动距离:每次滑动三个缩略图的宽度 const translateX = -(currentIndex * ($wrapper.width() + gap)); $slider.css('transform', `translateX(${translateX}px)`); updateNavButtons(); } // 绑定导航按钮事件 $nextBtn.on('click', function () { if (currentIndex < maxIndex) { slideTo(currentIndex + 1); } }); $prevBtn.on('click', function () { if (currentIndex > 0) { slideTo(currentIndex - 1); } }); // 初始化按钮状态 updateNavButtons(); // 监听窗口调整 $(window).on('resize', function () { // 重新计算并应用当前位置 slideTo(currentIndex); }); } // 检查内容是否溢出 function checkContentOverflow() { const $description = $('.product-info__description'); const $content = $description.find('.product-info__description-content'); const $toggle = $description.find('.product-info__description-toggle'); // 重置状态 $description.removeClass('expanded truncated'); $content.css('-webkit-line-clamp', window.innerWidth <= 1199 ? '2' : '3'); // 临时移除 -webkit-line-clamp 以获取完整高度 $content.css({ '-webkit-line-clamp': 'unset', 'display': 'block' }); const fullHeight = $content[0].scrollHeight; $content.css({ '-webkit-line-clamp': window.innerWidth <= 1199 ? '2' : '3', 'display': '-webkit-box' }); // 获取当前显示高度 const visibleHeight = $content[0].clientHeight; if (fullHeight > visibleHeight) { $description.addClass('truncated'); $toggle.text('...Read more').show(); } else { $toggle.hide(); } } // 展开/收起功能 $('.product-info__description-toggle').on('click', function() { const $description = $('.product-info__description'); const $content = $description.find('.product-info__description-content'); const isExpanded = $description.hasClass('expanded'); if (isExpanded) { $description.removeClass('expanded'); $content.css({ '-webkit-line-clamp': window.innerWidth <= 1199 ? '2' : '3', 'display': '-webkit-box' }); $(this).text('...Read more'); } else { $description.addClass('expanded'); $content.css({ '-webkit-line-clamp': 'unset', 'display': 'block' }); $(this).text('Hide'); } }); // 变体选择器 function initVariantSelector() { const $desktopForm = $('#product-form-desktop'); const $forms = $desktopForm; const $optionInputs = $forms.find('.variant-option input[type="radio"]'); // 获取所有变体数据 const productVariants = [{"id":50122970431830,"title":"Unscented \/ 6 PCS\/BOX","option1":"Unscented","option2":"6 PCS\/BOX","option3":null,"sku":"CCOGL0106U","requires_shipping":true,"taxable":false,"featured_image":null,"available":true,"name":"HICC Pet® Hypoallergenic Pet Glove Wipes For Cats, 6 Pcs - Unscented \/ 6 PCS\/BOX","public_title":"Unscented \/ 6 PCS\/BOX","options":["Unscented","6 PCS\/BOX"],"price":1399,"weight":156,"compare_at_price":null,"inventory_management":"shopify","barcode":"725765468338","requires_selling_plan":false,"selling_plan_allocations":[]},{"id":50122970399062,"title":"Coconut \/ 6 PCS\/BOX","option1":"Coconut","option2":"6 PCS\/BOX","option3":null,"sku":"CCOGL0106S","requires_shipping":true,"taxable":false,"featured_image":null,"available":true,"name":"HICC Pet® Hypoallergenic Pet Glove Wipes For Cats, 6 Pcs - Coconut \/ 6 PCS\/BOX","public_title":"Coconut \/ 6 PCS\/BOX","options":["Coconut","6 PCS\/BOX"],"price":1399,"weight":156,"compare_at_price":null,"inventory_management":"shopify","barcode":"745604991957","requires_selling_plan":false,"selling_plan_allocations":[]},{"id":50248867021142,"title":"Lemon Verbena \/ 6 PCS\/BOX","option1":"Lemon Verbena","option2":"6 PCS\/BOX","option3":null,"sku":"CCOGL0106V","requires_shipping":true,"taxable":false,"featured_image":null,"available":true,"name":"HICC Pet® Hypoallergenic Pet Glove Wipes For Cats, 6 Pcs - Lemon Verbena \/ 6 PCS\/BOX","public_title":"Lemon Verbena \/ 6 PCS\/BOX","options":["Lemon Verbena","6 PCS\/BOX"],"price":1399,"weight":156,"compare_at_price":null,"inventory_management":"shopify","barcode":"00850060913327","requires_selling_plan":false,"selling_plan_allocations":[]},{"id":50248867053910,"title":"Damask Rose \/ 6 PCS\/BOX","option1":"Damask Rose","option2":"6 PCS\/BOX","option3":null,"sku":"CCOGL0106R","requires_shipping":true,"taxable":false,"featured_image":null,"available":true,"name":"HICC Pet® Hypoallergenic Pet Glove Wipes For Cats, 6 Pcs - Damask Rose \/ 6 PCS\/BOX","public_title":"Damask Rose \/ 6 PCS\/BOX","options":["Damask Rose","6 PCS\/BOX"],"price":1399,"weight":156,"compare_at_price":null,"inventory_management":"shopify","barcode":"00850060913532","requires_selling_plan":false,"selling_plan_allocations":[]}]; let currentVariant = null; // 更新价格显示 function updatePrice(variant) { const quantity = parseInt($('.quantity-selector__input').first().val()); currentVariant = variant; // 计算折扣率(用于主图区域的标签) const discountPercentage = variant.compare_at_price > variant.price ? Math.round((variant.compare_at_price - variant.price) * 100 / variant.compare_at_price) : 0; // 计算总折扣金额(用于价格区域的标签) const totalDiscountAmount = variant.compare_at_price > variant.price ? (((variant.compare_at_price - variant.price) * quantity) / 100).toFixed(2) : 0; // 更新两个表单中的价格 $forms.each(function() { const $form = $(this); const $priceRegular = $form.find('.product-price__regular'); const $priceCompare = $form.find('.product-price__compare'); const $priceDiscount = $form.find('.product-price__discount'); // 添加 "Total" 前缀 // const pricePrefix = quantity > 1 ? 'Total: ' : ''; // $priceRegular.html(pricePrefix + Shopify.formatMoney(variant.price * quantity)); $priceRegular.html(Shopify.formatMoney(variant.price * quantity)); if (variant.compare_at_price > variant.price) { $priceCompare.text(Shopify.formatMoney(variant.compare_at_price * quantity)).show(); if ($priceDiscount.length) { $priceDiscount.text(`-$${totalDiscountAmount}`).show(); } } else { $priceCompare.hide(); if ($priceDiscount.length) { $priceDiscount.hide(); } } }); // 更新主图区域的折扣标签 const $mainDiscountLabels = $('.product-media__main .product-price__discount, .product-media__swiper-container .product-price__discount'); if (variant.compare_at_price > variant.price) { $mainDiscountLabels.text(`${discountPercentage}% off`).show(); } else { $mainDiscountLabels.hide(); } // 更新变体 ID $forms.find('.product-variant-id').val(variant.id); // 更新添加到购物车按钮 updateAddToCartButton(variant); } // 同步两个表单的选项 $optionInputs.on('change', function() { const $input = $(this); const name = $input.attr('name'); const value = $input.val(); const selectedOptions = getCurrentOptions(); const variant = findVariant(selectedOptions); if (variant) { updatePrice(variant); updateOptions(); // 更新 URL if (history.replaceState) { const newurl = window.location.protocol + '//' + window.location.host + window.location.pathname + '?variant=' + variant.id; window.history.replaceState({ path: newurl }, '', newurl); } } }); // 其他函数中的选择器也需要相应更新 function getCurrentOptions() { const options = []; $desktopForm.find('.variant-option').each(function() { options.push($(this).find('input:checked').val()); }); return options; } // 更新数量选择器按钮状态 function updateQuantityButtons() { $forms.each(function() { const $form = $(this); const $input = $form.find('.quantity-selector__input'); const currentValue = parseInt($input.val()); $form.find('.quantity-selector__button--minus').prop('disabled', currentValue <= 1); }); } // 同步所有数量输入框的值 function syncQuantityInputs(value) { $forms.find('.quantity-selector__input').val(value); if (currentVariant) { updatePrice(currentVariant); } else if (productVariants.length > 0) { // 如果没有当前变体但有变体数据,使用第一个变体 updatePrice(productVariants[0]); } updateQuantityButtons(); } // 数量加减按钮事件 - 修改这部分以处理无变体产品 $forms.on('click', '.quantity-selector__button--minus', function() { const $form = $(this).closest('form'); const $input = $form.find('.quantity-selector__input'); let value = parseInt($input.val()); if (value > 1) { value--; syncQuantityInputs(value); } }); $forms.on('click', '.quantity-selector__button--plus', function() { const $form = $(this).closest('form'); const $input = $form.find('.quantity-selector__input'); let value = parseInt($input.val()); value++; syncQuantityInputs(value); }); // 手动输入数量 - 修改这部分以处理无变体产品 $forms.on('change', '.quantity-selector__input', function() { let value = parseInt($(this).val()); if (value < 1) value = 1; syncQuantityInputs(value); }); // 更新按钮状态 function updateAddToCartButton(variant) { if (variant.available) { $('.product-form__submit') .prop('disabled', false) .text('+ ADD TO CART') .off('click') .on('click', function(e) { e.preventDefault(); e.stopPropagation(); $.post(window.Shopify.routes.root + 'cart/add.js', { items: [{ id: variant.id, quantity: parseInt($('.quantity-selector__input').first().val()) }] }, null, 'json') .done(function(response) { $.showFormReminder({ action: 'add-cart', status: 'success', message: 'Success' }); }) .fail(function(xhr) { $.showFormReminder({ action: 'add-cart', status: 'error', message: 'Failed to add to cart' }); }); return false; }); } else { $('.product-form__submit').prop('disabled', true).text('SOLD OUT'); } } // 查找匹配的变体 function findVariant(options) { return productVariants.find(variant => { return variant.options.every((option, index) => option === options[index]); }); } // 更新可选状态 function updateOptions() { const selectedOptions = getCurrentOptions(); $forms.find('.variant-option').each(function(optionIndex) { const $currentOption = $(this); const currentOptionSelected = selectedOptions[optionIndex]; $currentOption.find('input').each(function() { const $input = $(this); const value = $input.val(); let available = false; // 检查使用当前值是否有可用变体 const testOptions = [...selectedOptions]; testOptions[optionIndex] = value; const testVariant = findVariant(testOptions); if (testVariant && testVariant.available) { available = true; } $input.prop('disabled', !available); }); }); } // 初始化选项状态 updateOptions(); updateQuantityButtons(); // 初始化当前变体 const selectedOptions = getCurrentOptions(); const variant = findVariant(selectedOptions); if (variant) { currentVariant = variant; // 初始化时就设置 Add to Cart 按钮的行为 updateAddToCartButton(variant); } else if (productVariants.length > 0) { // 如果没有找到匹配的变体但有变体数据,使用第一个变体 currentVariant = productVariants[0]; updateAddToCartButton(currentVariant); } } // 在文档加载完成后初始化变体选择器 $(document).ready(function() { initVariantSelector(); // 阻止表单默认提交行为 $('#product-form-desktop').on('submit', function(e) { e.preventDefault(); return false; }); // 对于没有变体的产品,确保数量变化时价格也更新 if (false) { const defaultVariant = {"id":50122970431830,"title":"Unscented \/ 6 PCS\/BOX","option1":"Unscented","option2":"6 PCS\/BOX","option3":null,"sku":"CCOGL0106U","requires_shipping":true,"taxable":false,"featured_image":null,"available":true,"name":"HICC Pet® Hypoallergenic Pet Glove Wipes For Cats, 6 Pcs - Unscented \/ 6 PCS\/BOX","public_title":"Unscented \/ 6 PCS\/BOX","options":["Unscented","6 PCS\/BOX"],"price":1399,"weight":156,"compare_at_price":null,"inventory_management":"shopify","barcode":"725765468338","requires_selling_plan":false,"selling_plan_allocations":[]}; // 数量变化时更新价格 $('.quantity-selector__input').on('change', function() { updateSingleProductPrice(defaultVariant); }); $('.quantity-selector__button').on('click', function() { setTimeout(function() { updateSingleProductPrice(defaultVariant); }, 10); }); // 初始化数量按钮状态 updateQuantityButtonsForSingleProduct(); } // 单一产品价格更新函数 function updateSingleProductPrice(variant) { const quantity = parseInt($('.quantity-selector__input').val()); const $priceRegular = $('.product-price__regular'); const $priceCompare = $('.product-price__compare'); const $priceDiscount = $('.product-price__discount'); // 更新常规价格 $priceRegular.text(Shopify.formatMoney(variant.price * quantity)); // 如果有比较价格,更新折扣显示 if (variant.compare_at_price > variant.price) { $priceCompare.text(Shopify.formatMoney(variant.compare_at_price * quantity)).show(); // 计算折扣金额 - 只更新价格区域的折扣标签,不更新主图区域的折扣标签 const discountAmount = (((variant.compare_at_price - variant.price) * quantity) / 100).toFixed(2); // 只更新价格区域的折扣标签,不是主图区域的 const $priceAreaDiscount = $priceDiscount.filter(function() { // 排除主图区域的折扣标签 return !$(this).closest('.product-media__main, .product-media__swiper-container').length; }); if ($priceAreaDiscount.length) { $priceAreaDiscount.text(`-$${discountAmount}`).show(); } } else { $priceCompare.hide(); // 只隐藏价格区域的折扣标签 const $priceAreaDiscount = $priceDiscount.filter(function() { return !$(this).closest('.product-media__main, .product-media__swiper-container').length; }); if ($priceAreaDiscount.length) { $priceAreaDiscount.hide(); } } } // 单一产品数量按钮状态更新 function updateQuantityButtonsForSingleProduct() { const $input = $('.quantity-selector__input'); const currentValue = parseInt($input.val()); $('.quantity-selector__button--minus').prop('disabled', currentValue <= 1); } }); // 在文档加载完成后检测 $(document).ready(function () { // 等待字体加载完成后再检查 document.fonts.ready.then(() => { setTimeout(checkContentOverflow, 100); }); }); // 在窗口调整大小时重新检测 $(window).on('resize', function () { // 使用防抖函数避免频繁触发 clearTimeout(window.resizeTimer); window.resizeTimer = setTimeout(checkContentOverflow, 250); }); });

Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (66)

Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (67)

Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (68)

Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (69)

Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (70)

Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (71)

Ingredients

Coconut scent:
EDI Purified water, Fermented coconut oil , Colloidal oatmeal, Glycerin, Potassium sorbate, Mild coconut fragrance.
Unscented:
EDI Purified water, Fermented coconut oil , Colloidal oatmeal, Glycerin, Potassium sorbate.

Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (72)

Got questions?

  • The Hypoallergenic Pet Glove Wipes contain a uniquely crafted HICC vet-recommended formula of magical organic 7-day fermented coconut oil essence and natural oatmeal. These wipes are ideal for seasonal allergies, dirty stains on fur/skin, for dogs, cats, and even rabbits.

  • HICC Pet® natural products are free of sulfates, alcohol, and synthetic fragrances making them safe enough for newborn cats and dogs or pets of any breed at any life stage.

  • The Hypoallergenic Pet Glove Wipes are carefully designed with your pet's sensitive skin in mind. It is perfect for daily cleaning, removing odor, providing nourishment to fur, moisturizing, and maintaining water-oil balance.

    To get even more out of your wipes, we recommend using the hypoallergenic series glove wipes, paired with our Hypochlorous Acid (HOCl) Spray & Gloves for pets with skin issues and sensitivities. HOCI can gently, safely, and effectively soothe skin issues like itching, hot spots, rashes, irritations, and allergies.

  • The Difference in Ingredients

    Hypoallergenic Pet Glove Wipes contain 7-day fermented coconut ol essence, oatmeal, glycerin, and potassium sorbate.

    Deodorizing Pet Glove Wipes contain 7-day fermented coconut oil essence, aloe vera leaf extract, and chamomile extract

    The Difference in Packaging:

    • Hypoallergenic Pet Glove Wipes are individually packaged with 6 gloves per box.
    • Deodorizing Pet Glove Wipes come in a lid-safepackage, with 20 gloves in each.

    The Difference in Functions

    Hypoalergenic Pet Glove Wipes

    • Specifically designed for sensitive skin
    • Suitable for daily cleansing
    • Moisturizing for pet skin
    • Nourishes and smoothes fur

    Deodorizing Pet Glove Wipes

    • Specifically designed for deodorizing
    • Moisturizes and soothes pet skin
    • Perfect for cleaning petsafter outdoor activities
Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (73)

Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (74)

Hypoallergenic Pet Glove Wipes – Easy, Gentle & Mess-Free Cleaning | HICC Pet® (2025)

References

Top Articles
Latest Posts
Recommended Articles
Article information

Author: Arielle Torp

Last Updated:

Views: 5895

Rating: 4 / 5 (61 voted)

Reviews: 92% of readers found this page helpful

Author information

Name: Arielle Torp

Birthday: 1997-09-20

Address: 87313 Erdman Vista, North Dustinborough, WA 37563

Phone: +97216742823598

Job: Central Technology Officer

Hobby: Taekwondo, Macrame, Foreign language learning, Kite flying, Cooking, Skiing, Computer programming

Introduction: My name is Arielle Torp, I am a comfortable, kind, zealous, lovely, jolly, colorful, adventurous person who loves writing and wants to share my knowledge and understanding with you.