<!DOCTYPE html><html lang="en-US" xmlns:og="http://ogp.me/ns#" xmlns:fb="https://www.facebook.com/2008/fbml"> <head> <script> if (window.performance && performance.mark) performance.mark("TTP") </script> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="content-language" content="en-ID"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="pinterest" content="nosearch"> <meta name="csrf_nonce" content="3:1758118441:n0Kd5gPefLP589UlLbVNrV5Ux04_:1555e4d1e69330ecb11d8b4aac12bd11cde6599299148ed4d45d64d2b5fda327"> <meta name="uaid_nonce" content="3:1758118441:hpJW_-rk3J208LmkzGBP8tpCOe6N:ab5c57aecf16b797e2954e4231936b1db0d25e29c5f2130956a28361544488a8"> <meta property="fb:app_id" content="89186614300"> <meta name="css_dist_path" content="/ac/sasquatch/css/" /> <meta name="dist" content="202509171758116252" /> <script nonce="Orz4Gw3ss+NjE9o4F9MinPSB"> ! function(e) { var r = e.__etsy_logging = {}; r.errorQueue = [], e.onerror = function(e, o, t, n, s) { r.errorQueue.push([e, o, t, n, s]) }, r.firedEvents = []; r.perf = { e: [], t: !1, MARK_MEASURE_PREFIX: "_etsy_mark_measure_", prefixMarkMeasure: function(e) { return "_etsy_mark_measure_" + e } }, e.PerformanceObserver && (r.perf.o = new PerformanceObserver((function(e) { r.perf.e = r.perf.e.concat(e.getEntries()) })), r.perf.o.observe({ entryTypes: ["element", "navigation", "longtask", "paint", "mark", "measure", "resource", "layout-shift"] })); var o = []; r.eventpipe = { q: o, logEvent: function(e) { o.push(e) }, logEventImmediately: function(e) { o.push(e) } }; var t = !(Object.assign && Object.values && Object.fromEntries && e.Promise && Promise.prototype.finally && e.NodeList && NodeList.prototype.forEach), n = !!e.CefSharp || !!e.__pw_resume, s = !e.PerformanceObserver || !PerformanceObserver.supportedEntryTypes || 0 === PerformanceObserver.supportedEntryTypes.length, a = !e.navigator || !e.navigator.sendBeacon, p = t || n, u = []; t && u.push("fp"), s && u.push("fo"), a && u.push("fb"), n && u.push("fg"), r.bots = { isBot: p, botCheck: u } }(window); </script> <link rel="stylesheet" href="https://www.etsy.com/dac/site-chrome/components/components.ba269cdecb93d2,site-chrome/header/header.ba269cdecb93d2,__modules__CategoryNav__src__/Views/ButtonMenu/Menu.02149cde20b454,__modules__CategoryNav__src__/Views/DropdownMenu/Menu.ba269cdecb93d2,site-chrome/footer/footer.ba269cdecb93d2,gdpr/settings-overlay.ba269cdecb93d2.css?variant=sasquatch" type="text/css" /> <link rel="stylesheet" href="https://www.etsy.com/dac/neu/modules/listing_card_no_imports.ba269cdecb93d2,common/stars-svg.ba269cdecb93d2,neu/modules/favorite_listing_button.ba269cdecb93d2,neu/modules/quickview.ba269cdecb93d2,listzilla/responsive/listing-page-desktop.ba269cdecb93d2,category-nav/v2/breadcrumb_nav.fe3bd9d216295e,web-toolkit-v2/modules/forms/radios.ba269cdecb93d2,listing-page/image-carousel/responsive.ba269cdecb93d2,listzilla/image-overlay.ba269cdecb93d2,__modules__ListingPage__src__/Price/styles.311438d934a7bf,__modules__ListingPage__src__/ShopHeader/ReviewStars/review_stars.02149cde20b454,common/simple-overlay.fe3bd9d216295e,neu/payment_icons.fe3bd9d216295e,neu/apple_pay.fe3bd9d216295e,neu/google_pay.ba269cdecb93d2,listings3/checkout/single-listing.ba269cdecb93d2,common/forms_no_import.ba269cdecb93d2,shop2/modules/regulatory-seller-details.fe3bd9d216295e,shop2/modules/seller-additional-details.fe3bd9d216295e,web-toolkit-v2/modules/banners/banners.ba269cdecb93d2,neu/common/follow-shop-button.fe3bd9d216295e,listzilla/responsive/review-content-modal.ba269cdecb93d2,appreciation_photos/photo_overlay.ba269cdecb93d2,listzilla/reviews/reviews_skeleton.fe3bd9d216295e,listzilla/reviews/reviews-section.ba269cdecb93d2,web-toolkit-v2/modules/action_groups/action_groups.ba269cdecb93d2,reviews/header.ba269cdecb93d2,listzilla/reviews/variations.ba269cdecb93d2,listzilla/responsive/max-height-review.fe3bd9d216295e,sort-by-reviews.3affa09ef32549,__modules__ListingPage__src__/Recommendations/RecsRibbon/MeetYourSeller/desktop-view.ba269cdecb93d2,__modules__ListingPage__src__/Recommendations/RecsRibbon/view.ba269cdecb93d2,listings3/structured-policies.fe3bd9d216295e,web-toolkit-v2/modules/forms/checkboxes.ba269cdecb93d2,favorites/collection/list.ba269cdecb93d2,favorites/collection/row.ba269cdecb93d2,favorites/adaptive-height-desktop.ba269cdecb93d2,__modules__ConditionalSaleInterstitial__src__/styles.02149cde20b454,__modules__CollectionRecs__src__/Views/Grid/view.ba269cdecb93d2,__modules__CollectionRecs__src__/Views/Card/view.ba269cdecb93d2.css?variant=sasquatch" type="text/css" /> <script> //todo: this is from https://stackoverflow.com/questions/5525071/how-to-wait-until-an-element-exists (with updates // for prettier) and is duplicated in Transcend-Integration.ts. Ideally we would find a place both // files could call. function waitForElm(selector) { return new Promise((resolve) => { if (document.querySelector(selector)) { return resolve(document.querySelector(selector)); } const observer = new MutationObserver(() => { if (document.querySelector(selector)) { observer.disconnect(); resolve(document.querySelector(selector)); } }); // If you get "parameter 1 is not of type 'Node'" error, see https://stackoverflow.com/a/77855838/492336 observer.observe(document.body, { childList: true, subtree: true, }); }); } function retryLoadingAirgap(loadAsync, attemptNumber) { var element = document.createElement("script"); element.type = "text/javascript"; element.src = "https://transcend-cdn.com/cm/ac71e058-41b7-4026-b482-3d9b8e31a6d0/airgap.js"; if (loadAsync) { element.setAttribute('data-cfasync', true); element.async = true; } element.onerror = (error) => { if (attemptNumber < 3) { window.__etsy_logging.eventpipe.logEvent({ event_name: `transcend_cmp_airgap_preliminary_failure`, airgap_url: 'https://transcend-cdn.com/cm/ac71e058-41b7-4026-b482-3d9b8e31a6d0/airgap.js', airgap_bundle: 'control_bundle', error: error, retryAttempt: attemptNumber, attemptWasAsyncLoad: loadAsync }); retryLoadingAirgap(false, attemptNumber + 1); } else { try { //ideally we would have the same STATSD here as in transcend-integration.ts //but we can't import STATSD into mustache files. This only occurs 0.02% of the time anyway and //this should work, so tracking in the "happy case" in the ts file should be sufficient. window.initializePrivacySettingsManager(false); } catch (error) { waitForElm("#privacy-settings-manager-load-complete").then(() => { window.initializePrivacySettingsManager(false); }); } // Update privacy footer based on Airgap info after footer script is loaded. waitForElm("#footer-script-loaded").then(() => { window.updatePrivacySettingsFooterTextBasedOnRegime(); }); window.__etsy_logging.eventpipe.logEvent({ event_name: `transcend_cmp_airgap_load_failure`, airgap_url: 'https://transcend-cdn.com/cm/ac71e058-41b7-4026-b482-3d9b8e31a6d0/airgap.js', airgap_bundle: 'control_bundle', error: error, retryAttempts: attemptNumber }); } } var head = document.getElementsByTagName('head')[0]; head.appendChild(element); } function handleErrorLoadingAirgap() { window.__etsy_logging.eventpipe.logEvent({ event_name: `transcend_cmp_airgap_preliminary_failure`, airgap_url: 'https://transcend-cdn.com/cm/ac71e058-41b7-4026-b482-3d9b8e31a6d0/airgap.js', airgap_bundle: 'control_bundle', retryAttempt: 1, attemptWasAsyncLoad: true }); retryLoadingAirgap(true, 2); } </script> <script data-cfasync="true" data-ui="off" src="https://transcend-cdn.com/cm/ac71e058-41b7-4026-b482-3d9b8e31a6d0/airgap.js" onerror="(function() { handleErrorLoadingAirgap(); })()" async></script> <title>Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor</title> <meta name="description" content="Pemuda99 menyediakan link login alternatif resmi untuk para member yang disupport sistem terupdate dimana login semakin cepat dan mudah menang disemua permainan, raih keuntungan dengan waktu cepat!"> <meta name="keywords" content="pemuda99, pemuda99 slot, pemuda99 login, pemuda99 link, link alternatif pemuda99"> <meta name="robots" content="max-image-preview:large"> <script type="application/ld+json">{ "@context": "https://schema.org", "@type": "Product", "name": "Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor", "image": "https://www.toscanamall.com/assets/img/06/07/2025/logo-pemuda99.png", "description": "Pemuda99 menyediakan link login alternatif resmi untuk para member yang disupport sistem terupdate dimana login semakin cepat dan mudah menang disemua permainan, raih keuntungan dengan waktu cepat!", "brand": { "@type": "Brand", "name": "PEMUDA99" }, "sku": "PEMUDA99-SLOT2025", "mpn": "PMD99-005", "url": "https://www.toscanamall.com/fr", "offers": { "@type": "Offer", "url": "https://www.toscanamall.com/fr", "priceCurrency": "USD", "price": "0.00", "priceValidUntil": "2025-12-31", "itemCondition": "https://schema.org/NewCondition", "availability": "https://schema.org/InStock", "seller": { "@type": "Organization", "name": "PEMUDA99" } }, "aggregateRating": { "@type": "AggregateRating", "ratingValue": "5.0", "reviewCount": 274935 }, "review": [ { "@type": "Review", "reviewRating": { "@type": "Rating", "ratingValue": "5", "bestRating": "5" }, "author": { "@type": "Person", "name": "Player Pemuda99" } }, { "@type": "Review", "reviewRating": { "@type": "Rating", "ratingValue": "5", "bestRating": "5" }, "author": { "@type": "Person", "name": "User Verified" } } ]}</script> <script type="application/ld+json">{ "@context": "https://schema.org", "@graph": [ { "@type": "BreadcrumbList", "itemListElement": [ { "@type": "ListItem", "position": 1, "name": "Pemuda99", "item": "https://www.toscanamall.com/fr" }, { "@type": "ListItem", "position": 2, "name": "Pemuda99 Slot", "item": "https://www.toscanamall.com/fr" }, { "@type": "ListItem", "position": 3, "name": "Pemuda99 Login", "item": "https://www.toscanamall.com/fr" }, { "@type": "ListItem", "position": 4, "name": "Situs Resmi Pemuda99", "item": "https://www.toscanamall.com/fr" }, { "@type": "ListItem", "position": 5, "name": "Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor", "item": "https://www.toscanamall.com/fr" } ] }, { "@type": "FAQPage", "mainEntity": [ { "@type": "Question", "name": "Apa itu Pemuda99?", "acceptedAnswer": { "@type": "Answer", "text": "Pemuda99 adalah platform permainan online yang menyediakan beragam hiburan digital dengan akses cepat, tampilan responsif, dan sistem keamanan modern. Situs ini dikenal karena link login alternatif resminya yang mudah digunakan dan memberikan pengalaman bermain lebih stabil serta gacor." } }, { "@type": "Question", "name": "Apa itu link login alternatif resmi Pemuda99?", "acceptedAnswer": { "@type": "Answer", "text": "Link login alternatif resmi Pemuda99 adalah tautan cadangan yang disediakan untuk memudahkan pemain mengakses situs ketika domain utama sedang tidak dapat diakses. Semua link alternatif tersebut terhubung langsung ke server resmi sehingga tetap aman digunakan." } }, { "@type": "Question", "name": "Bagaimana cara login ke link alternatif Pemuda99?", "acceptedAnswer": { "@type": "Answer", "text": "Untuk login, cukup kunjungi link alternatif resmi Pemuda99 yang terbaru, lalu masukkan username dan password akun Anda. Pastikan domain yang diakses sesuai dengan situs resmi agar keamanan akun tetap terjamin." } }, { "@type": "Question", "name": "Apakah bermain di Pemuda99 aman?", "acceptedAnswer": { "@type": "Answer", "text": "Ya. Pemuda99 menggunakan sistem enkripsi data dan verifikasi keamanan tingkat tinggi untuk melindungi setiap akun pengguna. Pastikan Anda selalu mengakses situs melalui link resmi agar terhindar dari situs palsu." } }, { "@type": "Question", "name": "Mengapa Pemuda99 disebut mudah menang dan lebih gacor?", "acceptedAnswer": { "@type": "Answer", "text": "Banyak pemain menilai Pemuda99 memberikan pengalaman bermain yang lebih stabil, lancar, dan transparan. Dengan sistem permainan yang adil dan performa server cepat, sensasi bermain terasa lebih menyenangkan dan peluang kemenangan pun terasa lebih besar." } } ] } ]}</script> <script type="application/ld+json">{ "@context": "https://schema.org", "@type": "Organization", "name": "PEMUDA99", "url": "https://www.toscanamall.com/fr", "logo": "https://www.toscanamall.com/assets/img/06/07/2025/logo-pemuda99.png", "sameAs": [ "https://www.facebook.com/PEMUDA99official", "https://twitter.com/PEMUDA99", "https://www.instagram.com/PEMUDA99SLOT" ], "contactPoint": { "@type": "ContactPoint", "telephone": "+62819-0861-9629", "contactType": "customer support", "areaServed": "ID", "availableLanguage": ["Indonesian", "English"] }}</script> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Game", "name": "PEMUDA99", "author": { "@type": "Person", "name": "PEMUDA99 SLOT LOGIN" }, "headline": "Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor", "description": "Pemuda99 menyediakan link login alternatif resmi untuk para member yang disupport sistem terupdate dimana login semakin cepat dan mudah menang disemua permainan, raih keuntungan dengan waktu cepat!", "keywords": [ "PEMUDA99", "PEMUDA99 SLOT", "PEMUDA99 LOGIN", "DAFTAR PEMUDA99", "PEMUDA99 SLOT LOGIN" ], "image": "https://www.toscanamall.com/assets/img/06/07/2025/banner.webp", "url": "https://www.toscanamall.com/fr", "publisher": { "@type": "Organization", "name": "PEMUDA99" }, "aggregateRating": { "@type": "AggregateRating", "ratingValue": "100", "bestRating": "100", "worstRating": "0", "ratingCount": "274935" }, "inLanguage": "id-ID" } </script> <meta name="twitter:site" content="@pemuda99" value="" /> <meta name="twitter:card" content="summary_large_image" value="" /> <meta name="twitter:app:name:iphone" content="pemuda99" value="" /> <meta name="twitter:app:url:iphone" content="etsy://listing/1479848745?ref=TwitterProductCard" value="" /> <meta name="twitter:app:id:iphone" content="477128284" value="" /> <meta name="twitter:app:name:ipad" content="pemuda99" value="" /> <meta name="twitter:app:url:ipad" content="etsy://listing/1479848745?ref=TwitterProductCard" value="" /> <meta name="twitter:app:id:ipad" content="477128284" value="" /> <meta name="twitter:app:name:googleplay" content="pemuda99" value="" /> <meta name="twitter:app:url:googleplay" content="etsy://listing/1479848745?ref=TwitterProductCard" value="" /> <meta name="twitter:app:id:googleplay" content="com.etsy.android" value="" /> <meta property="og:title" content="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor"> <meta property="og:description" content="Pemuda99 menyediakan link login alternatif resmi untuk para member yang disupport sistem terupdate dimana login semakin cepat dan mudah menang disemua permainan, raih keuntungan dengan waktu cepat!"> <meta property="og:type" content="product" /> <meta property="og:url" content="https://www.toscanamall.com/fr" /> <meta property="og:image" content="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" /> <meta property="product:price:amount" content="10000.00" /> <meta property="product:price:currency" content="RP" /> <meta property="al:ios:url" content="etsy://listing/1479848745?ref=applinks_ios" /> <meta property="al:ios:app_store_id" content="477128284" /> <meta property="al:ios:app_name" content="PEMUDA99" /> <meta property="al:android:url" content="https://www.toscanamall.com/fr" /> <meta property="al:android:package" content="com.etsy.android" /> <meta property="al:android:app_name" content="PEMUDA99" /> <link rel="amphtml" href="https://pemuda99-link.com/login/" /> <link rel="preconnect" href="//i.etsystatic.com" crossorigin="anonymous" /> <link rel="preconnect" href="//i.etsystatic.com" /> <link rel="preconnect" href="//v.etsystatic.com" /> <link rel="preconnect" href="//v.etsystatic.com" crossorigin="anonymous" /> <link rel="preload" as="image" imagesrcset="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" fetchpriority="high" /> <link rel="canonical" href="https://www.toscanamall.com/fr" /> <link rel="alternate" href="https://www.toscanamall.com/fr" hreflang="id-ID"> <link rel="alternate" href="https://www.toscanamall.com/fr" hreflang="en" /> <link rel="alternate" href="https://www.toscanamall.com/fr/fi-en/" hreflang="en-FI"> <link rel="alternate" href="https://www.toscanamall.com/fr/au/" hreflang="en-AU"> <link rel="alternate" href="https://www.toscanamall.com/fr/ca/" hreflang="en-CA"> <link rel="alternate" href="https://www.toscanamall.com/fr/dk-en/" hreflang="en-DK"> <link rel="alternate" href="https://www.toscanamall.com/fr/hk-en/" hreflang="en-HK"> <link rel="alternate" href="https://www.toscanamall.com/fr/ie/" hreflang="en-IE"> <link rel="alternate" href="https://www.toscanamall.com/fr/il-en/" hreflang="en-IL"> <link rel="alternate" href="https://www.toscanamall.com/fr/in-en/" hreflang="en-IN"> <link rel="alternate" href="https://www.toscanamall.com/fr/nz/" hreflang="en-NZ"> <link rel="alternate" href="https://www.toscanamall.com/fr/no-en/" hreflang="en-NO"> <link rel="alternate" href="https://www.toscanamall.com/fr/se-en/" hreflang="en-SE"> <link rel="alternate" href="https://www.toscanamall.com/fr/sg-en/" hreflang="en-SG"> <link rel="alternate" href="https://www.toscanamall.com/fr/uk/" hreflang="en-GB"> <link rel="alternate" href="https://www.toscanamall.com/fr/de/" hreflang="de"> <link rel="alternate" href="https://www.toscanamall.com/fr/at/" hreflang="de-AT"> <link rel="alternate" href="https://www.toscanamall.com/fr/ch/" hreflang="de-CH"> <link rel="alternate" href="https://www.toscanamall.com/fr/fr/" hreflang="fr"> <link rel="alternate" href="https://www.toscanamall.com/fr/ca-fr/" hreflang="fr-CA"> <link rel="alternate" href="https://www.toscanamall.com/fr/nl/" hreflang="nl"> <link rel="alternate" href="https://www.toscanamall.com/fr/be/" hreflang="nl-BE"> <link rel="alternate" href="https://www.toscanamall.com/fr/it/" hreflang="it"> <link rel="alternate" href="https://www.toscanamall.com/fr/es/" hreflang="es"> <link rel="alternate" href="https://www.toscanamall.com/fr/mx/" hreflang="es-MX"> <link rel="alternate" href="https://www.toscanamall.com/fr/jp/" hreflang="ja"> <link rel="alternate" href="https://www.toscanamall.com/fr/pl/" hreflang="pl"> <link rel="alternate" href="https://www.toscanamall.com/fr/pt/" hreflang="pt"> <link rel="alternate" href="https://www.toscanamall.com/fr" hreflang="x-default"> <link rel="alternate" href="https://www.toscanamall.com/fr" hreflang="en-US"> <link rel="shortcut icon" href="https://www.toscanamall.com/assets/img/06/07/2025/favicon-pemuda99-32x32.png"> <link rel="icon" href="https://www.toscanamall.com/assets/img/06/07/2025/favicon-pemuda99-32x32.png" type="image/webp" sizes="32x32"> <link rel="icon" href="https://www.toscanamall.com/assets/img/06/07/2025/favicon-pemuda99-32x32.png" type="image/webp" sizes="16x16"> <link rel="apple-touch-icon" href="https://www.toscanamall.com/assets/img/06/07/2025/favicon-pemuda99-32x32.png" sizes="180x180"> <link rel="mask-icon" href="https://www.toscanamall.com/assets/img/06/07/2025/favicon-pemuda99-32x32.png" color="rgb(241, 100, 30)" /> <link rel="manifest" href="/site.webmanifest" /> <meta name="apple-mobile-web-app-title" content="Pemuda99" /> <meta name="application-name" content="Pemuda99" /> <meta name="msapplication-TileColor" content="#F1641E" /> <meta name="theme-color" content="rgb(255, 255, 255)" /> <link type="application/opensearchdescription+xml" rel="search" href="/osdd.php" title="Pemuda99" /> </head><style> .wt-body-max-width, .wt-max-width-tv { max-width: 1400px; margin: 0 auto; background: #bb0000; }</style> <body class="ui-toolkit transitional-wide etsy-has-it-design is-responsive no-touch en-US IDR ID" data-language="en-US" data-currency="IDR" data-region="ID"> <script nonce="Orz4Gw3ss+NjE9o4F9MinPSB"> ! function(a, b, c, d, e, f) { a.ddjskey = e; a.ddoptions = f || null; var m = b.createElement(c), n = b.getElementsByTagName(c)[0]; m.async = 1, m.defer = 1, m.src = d, n.parentNode.insertBefore(m, n) }(window, document, "script", "https://www.etsy.com/include/tags.js", "D013AA612AB2224D03B2318D0F5B19", { endpoint: "https://www.etsy.com/include/tags.js", ajaxListenerPath: true, enableTagEvents: true, overrideAbortFetch: true, abortAsyncOnChallengeDisplay: true, disableAutoRefreshOnCaptchaPassed: false, replayAfterChallenge: true }); var DD_BLOCKED_EVENT_NAME = "dd_blocked"; var DD_RESPONSE_DISPLAYED_EVENT_NAME = "dd_response_displayed"; var DD_RESPONSE_ERROR_EVENT_NAME = "dd_response_error"; window.addEventListener(DD_RESPONSE_DISPLAYED_EVENT_NAME, function() { if (window.Sentry && window.Sentry.setTag) { window.Sentry.setTag(DD_RESPONSE_DISPLAYED_EVENT_NAME, true); } }); window.addEventListener(DD_BLOCKED_EVENT_NAME, function() { if (window.Sentry && window.Sentry.setTag) { window.Sentry.setTag(DD_BLOCKED_EVENT_NAME, true); } }); window.addEventListener(DD_RESPONSE_ERROR_EVENT_NAME, function() { if (window.Sentry && window.Sentry.setTag) { window.Sentry.setTag(DD_RESPONSE_ERROR_EVENT_NAME, true); } }); </script> <div data-above-header class="wt-z-index-5 wt-position-relative"></div> <div data-selector="header-cat-nav-wrapper" data-menu-ui="menubar"> <div id="gnav-header" class=" gnav-header global-nav v2-toolkit-gnav-header wt-z-index-6 wt-bg-white wt-position-relative " data-as-version="10_12672349415_19" data-count-ajax data-show-suggested-searches-in-as="1" data-show-gift-card-cta-in-as="1" data-as-personalized="1" data-as-extras="{&quot;expt&quot;:&quot;all_xml&quot;,&quot;lang&quot;:&quot;en-US&quot;,&quot;extras&quot;:[]}" data-cheact="1" data-gnav-header> <header id="gnav-header-inner" class="global-enhancements-header wt-display-flex-xs wt-justify-content-space-between wt-align-items-center wt-width-full wt-body-max-width wt-pl-xs-2 wt-pr-xs-2 wt-pl-lg-6 wt-pr-lg-6 wt-bb-xs wt-bb-lg-none gnav-header-inner wt-pt-lg-2 " role="banner"> <script nonce="Orz4Gw3ss+NjE9o4F9MinPSB"> ! function(e) { var r = e.__etsy_logging; if (r && r.perf && r.perf.prefixMarkMeasure) { var n = r.perf.prefixMarkMeasure("logo_render"); e.performance && e.performance.mark && e.requestAnimationFrame((function() { setTimeout((function() { e.performance.mark(n) })) })) } }(window); </script> <div class="wt-pb-lg-0 wt-pt-sm-1 wt-pt-lg-0 wt-pr-xs-0 wt-pr-sm-1 " data-header-logo-container> <a href="https://www.toscanamall.com/fr" elementtiming="ux-global-nav"> <span class="wt-screen-reader-only">slot gacor</span> <img src="https://www.toscanamall.com/assets/img/06/07/2025/logo-pemuda99.png" alt="slot gacor" width="120" height="62" style="object-fit: contain;"> </a> </div> <nav class="wt-hide-xs wt-show-lg"> <div data-clg-id="WtMenu" class="wt-menu wt-tooltip ge-menu--body-below-trigger wt-tooltip--disabled-touch dropdown-category-menu wt-menu--bottom wt-menu--left" data-wt-menu data-wt-tooltip="true" data-menu-body-below-trigger="true" data-close-on-select="true" data-hide-trigger-on-open="false" data-animate-in="true" data-contain-focus="false" data-open-direction-vert="bottom" data-open-direction-horiz="left" data-open-direction-force="true" data-menu-type="action"> <button type="button" class="wt-menu__trigger wt-btn wt-btn--transparent header-button wt-mr-xs-1 wt-btn--small" aria-haspopup="true" aria-expanded="false" data-wt-menu-trigger data-level="0" data-overlay-trigger-selector="overlay-trigger-ele"> <span class="etsy-icon wt-mr-xs-1 wt-icon--smaller"> <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" viewBox="0 0 18 18"> <rect x="2" y="8" width="14" height="2" /> <rect x="2" y="13" width="14" height="2" /> <rect x="2" y="3" width="14" height="2" /> </svg> </span> Categories </button> <div data-neu-spec-placeholder="1" id="bd2c69bf978c5288825b3623782eb9a1"> <script type="text/json" data-neu-spec-placeholder-data="1"> { "spec_name": "Etsy\\Modules\\CategoryNav\\Specs\\DropdownCatNav\\DropdownSubmenu", "args": [] } </script> <div></div> </div> <span class="ge-menu__body-caret wt-z-index-10 wt-bg-white wt-position-absolute wt-bl-xs wt-bt-xs wt-br-xs-none wt-bb-xs-none"></span> </div> </nav> <div class="wt-width-full wt-display-flex-xs wt-pr-lg-3 wt-flex-lg-1 order-mobile-tablet-2" data-hamburger-search-container> <button data-id="hamburger" class="wt-btn wt-btn--transparent wt-btn--icon wt-hide-lg wt-btn--transparent-flush-left wt-mb-xs-2 wt-mb-lg-0 header-button" aria-controls="mobile-catnav-overlay" tab-index="0"> <span class="wt-screen-reader-only"> Browse </span> <span class="wt-icon"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M21 7H3V5h18zm-5 6H3v-2h13zm5 6H3v-2h18z" /> </svg> </span> </button> <div class="wt-display-inline-block wt-flex-xs-1 wt-pl-lg-0 wt-mb-xs-2 wt-mb-lg-0"> <form id="gnav-search" class="global-enhancements-search-nav wt-position-relative wt-display-flex-xs" method="GET" action="/search.php" role="search" data-gnav-search data-ge-search-clearable data-trending-searches="1"> <label for="global-enhancements-search-query" class="wt-label wt-screen-reader-only"> Search for items or shops </label> <div class="search-container" data-id="search-bar"> <div class="wt-input-btn-group global-enhancements-search-input-btn-group emphasized_search_bar emphasized_search_bar_grey_bg search-bar-container" data-id="search-suggestions-trigger"> <input id="global-enhancements-search-query" data-id="search-query" data-search-input type="text" name="search_query" class="wt-input wt-input-btn-group__input global-enhancements-search-input-btn-group__input wt-pr-xs-7 " placeholder="Search for anything" value="" autocomplete="off" autocorrect="off" autocapitalize="off" role="combobox" aria-autocomplete="both" aria-controls="global-enhancements-search-suggestions" aria-expanded="false" /> <button type="button" class="wt-btn wt-btn--transparent wt-btn--icon wt-btn--small position-absolute-important wt-position-right wt-z-index-9 wt-animated wt-animated--is-hidden search-close-btn-margin-right " data-search-close-btn> <span class="wt-screen-reader-only">Clear search</span> <span class="wt-icon wt-icon--smaller wt-nudge-t-1"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M13.414,12l6.293-6.293a1,1,0,0,0-1.414-1.414L12,10.586,5.707,4.293A1,1,0,0,0,4.293,5.707L10.586,12,4.293,18.293a1,1,0,1,0,1.414,1.414L12,13.414l6.293,6.293a1,1,0,0,0,1.414-1.414Z" /> </svg> </span> </button> <button type="submit" class="wt-input-btn-group__btn global-enhancements-search-input-btn-group__btn " value="Search" aria-label="Search" data-id="gnav-search-submit-button"> <span class="wt-icon wt-nudge-b-2 wt-nudge-r-1"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path fill-rule="evenodd" clip-rule="evenodd" d="M10.5 19a8.46 8.46 0 0 0 5.262-1.824l4.865 4.864 1.414-1.414-4.865-4.865A8.5 8.5 0 1 0 10.5 19m0-2a6.5 6.5 0 1 0 0-13 6.5 6.5 0 0 0 0 13" /> </svg> </span> </button> </div> <div id="global-enhancements-search-suggestions" class="global-nav-menu__body search-suggestions-container wt-width-full wt-max-width-full " data-id="search-suggestions"></div> </div> <input id="search-js-router-enabled" type="hidden" value="true" /> <input type="hidden" value="all" name="search_type" id="search-type" /> </form> </div> </div> <a data-selector="skip-to-content-marketplace" class="global-enhancements-skip-to-content wt-screen-reader-only wt-focusable" href="#content"> <div id="skip-to-content-wrapper" class="wt-display-flex-xs wt-align-items-center wt-justify-content-center wt-body-max-width wt-width-full wt-height-full wt-position-absolute wt-position-top wt-position-left wt-position-right wt-bg-denim wt-z-index-10"> <label class="wt-btn wt-btn--transparent wt-btn--light"> Skip to Content </label> </div> </a> <div class="mobile-catnav-wrapper wt-overlay wt-overlay--peek wt-overlay--peek-left wt-p-xs-0" data-wt-overlay id="mobile-catnav-overlay" aria-hidden="true" aria-modal="false" role="dialog"> </div> <div class="wt-flex-shrink-xs-0" data-primary-nav-container> <nav aria-label="Main"> <ul class="wt-display-flex-xs wt-justify-content-space-between wt-list-unstyled wt-m-xs-0 wt-align-items-center"> <li> <button class="wt-btn wt-btn--small wt-btn--transparent wt-mr-xs-1 inline-overlay-trigger signin-header-action select-signin header-button"> Sign in </button> </li> <li data-favorites-nav-container data-ge-nav-menu="favorites" data-ge-hover-event-name="gnav_hover_favorites_menu"> <span class="wt-tooltip wt-tooltip--disabled-touch" data-wt-tooltip> <a href="https://www.toscanamall.com/fr" class="wt-tooltip__trigger wt-tooltip__trigger--icon-only wt-btn wt-btn--transparent wt-btn--icon reduced-margin-xs header-button" data-favorites-nav-link aria-labelledby="ge-tooltip-label-favorites"> <span class="etsy-icon"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path fill-rule="evenodd" clip-rule="evenodd" d="M20.877 12.52q.081-.115.147-.239A6 6 0 0 0 12 4.528a6 6 0 0 0-9.024 7.753q.066.123.147.24l.673.961a6 6 0 0 0 .789.915L12 21.422l7.415-7.025q.44-.418.789-.915zm-14.916.425L12 18.667l6.04-5.722q.293-.279.525-.61l.673-.961a.3.3 0 0 0 .044-.087 4 4 0 1 0-7.268-2.619v.003L12 8.667l-.013.004v-.002l-.006-.064a3.98 3.98 0 0 0-1.232-2.51 4 4 0 0 0-6.031 5.193q.014.045.044.086l.673.961a4 4 0 0 0 .526.61" /> </svg> </span> </a> <span id="ge-tooltip-label-favorites" role="tooltip" data-favorites-label-tooltip>Favorites</span> </span> </li> <li data-gift-mode-nav-container> <span class="wt-tooltip wt-tooltip--disabled-touch" data-wt-tooltip> <a href="https://www.toscanamall.com/fr" class=" wt-tooltip__trigger wt-tooltip__trigger--icon-only wt-btn wt-btn--transparent wt-btn--icon reduced-margin-xs header-button" data-gift-mode-nav-link aria-labelledby="ge-tooltip-label-gift-mode"> <span class="etsy-icon"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path fill-rule="evenodd" clip-rule="evenodd" d="M5.535 7A4 4 0 0 1 12 2.354 4 4 0 0 1 18.465 7H22v9h-1v6H3v-6H2V7zm9.466 0H13V5a2 2 0 1 1 2.001 2M11 5a2 2 0 1 0-2.001 2H11zm-.764 4c-.55.614-1.348 1-2.236 1v2a4.98 4.98 0 0 0 3-1v3H4V9zM13 11c.836.628 1.874 1 3 1v-2a3 3 0 0 1-2.236-1H20v5h-7zm-8 5v4h6v-4zm8 4v-4h6v4z" /> </svg> </span> </a> <span id="ge-tooltip-label-gift-mode" role="tooltip" data-registry-label-tooltip>Pemuda99</span> </span> </li> <li data-ge-nav-menu="cart" data-ge-hover-event-name="gnav_hover_cart_menu"> <span class="wt-tooltip wt-tooltip--bottom-left wt-tooltip--disabled-touch" data-wt-tooltip data-header-cart-button> <a aria-label="Cart" href="https://www.toscanamall.com/fr" class="wt-tooltip__trigger wt-tooltip__trigger--icon-only wt-btn wt-btn--transparent wt-btn--icon header-button"> <span class="wt-z-index-1 wt-no-wrap wt-display-none ge-cart-badge wt-badge wt-badge--notificationPrimary wt-badge--small wt-badge--outset-top-right" data-selector="header-cart-count" aria-hidden="true"> 0 </span> <span class="wt-icon"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path fill-rule="evenodd" clip-rule="evenodd" d="m5.766 5-.618-3H1v2h2.518l2.17 10.535L6.18 17h14.307l2.4-12zM7.82 15l-1.6-8h14.227l-1.6 8z" /> <path d="M10.667 20.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m8.333 0a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0" /> </svg> </span> </a> <span role="tooltip" aria-hidden="true">Cart</span> </span> </li> </ul> </nav> </div> </header> </div> <nav class="wt-hide-xs wt-show-lg category-nav-button-menu"> <div data-ui="cat-nav" id="desktop-category-topnav" class="cat-nav responsive-disabled v2-toolkit-cat-nav wt-ml-xs-0 wt-mr-xs-0"> <div class="wt-text-caption wt-position-relative wt-bg-white wt-z-index-5 v2-toolkit-cat-nav-tab-bar"> <div class="wt-body-max-width"> <ul class="wt-list-unstyled wt-body-max-width wt-display-flex-xs wt-justify-content-center" data-menu-ui="menubar" data-ui="top-nav-category-list"> <li class="wt-mr-xs-3"> <a href="https://www.toscanamall.com/fr" class="wt-btn wt-btn--transparent wt-btn--small " data-menu-ui="menuitem" data-ui="top-nav-category-link" data-node-id="-10"> <span class="wt-icon wt-icon--smaller-xs wt-nudge-b-1 wt-nudge-r-3"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path fill-rule="evenodd" clip-rule="evenodd" d="M5.535 7A4 4 0 0 1 12 2.354 4 4 0 0 1 18.465 7H22v9h-1v6H3v-6H2V7zm9.466 0H13V5a2 2 0 1 1 2.001 2M11 5a2 2 0 1 0-2.001 2H11zm-.764 4c-.55.614-1.348 1-2.236 1v2a4.98 4.98 0 0 0 3-1v3H4V9zM13 11c.836.628 1.874 1 3 1v-2a3 3 0 0 1-2.236-1H20v5h-7zm-8 5v4h6v-4zm8 4v-4h6v4z" /> </svg> </span> <span>PEMUDA99</span> </a> </li> <li class="wt-mr-xs-3"> <a href="https://www.toscanamall.com/fr" class="wt-btn wt-btn--transparent wt-btn--small " data-menu-ui="menuitem" data-ui="top-nav-category-link" data-node-id="2">PEMUDA ALTERNATIF</a> </li> <li class="wt-mr-xs-3"> <a href="https://www.toscanamall.com/fr" class="wt-btn wt-btn--transparent wt-btn--small " data-menu-ui="menuitem" data-ui="top-nav-category-link" data-node-id="3">SITUS PEMUDA99</a> </li> <li class="wt-mr-xs-3"> <a href="https://www.toscanamall.com/fr" class="wt-btn wt-btn--transparent wt-btn--small " data-menu-ui="menuitem" data-ui="top-nav-category-link">PEMUDA99 SLOT</a> </li> <li class="wt-mr-xs-3"> <a href="https://www.toscanamall.com/fr" class="wt-btn wt-btn--transparent wt-btn--small " data-menu-ui="menuitem" data-ui="top-nav-category-link">PEMUDA99 LOGIN</a> </li> <li class="wt-mr-xs-3"> <a href="https://www.toscanamall.com/fr" class="wt-btn wt-btn--transparent wt-btn--small " data-menu-ui="menuitem" data-ui="top-nav-category-link">LINK PEMUDA99</a> </li> <li class="wt-mr-xs-3"> <a href="https://www.toscanamall.com/fr" class="wt-btn wt-btn--transparent wt-btn--small " data-menu-ui="menuitem" data-ui="top-nav-category-link">PEMUDA99 DAFTAR</a> </li> </ul> </div> </div> </div> </nav> </div> <div class="wt-overlay wt-z-index-4" aria-hidden="true" data-ui="overlay"></div> <noscript> <div class="wt-body-max-width wt-pt-xs-2 wt-pl-xs-2 wt-pr-xs-2 wt-pl-md-4 wt-pr-md-4 wt-pt-md-3 wt-pb-xs-0"> <div id="javascript-nag" class="wt-alert wt-alert--inline wt-alert--success-01 wt-mb-xs-2"> <div> Take full advantage of our site features by enabling JavaScript. </div> </div> </div> </noscript> <div class="sidebar-cart-carat"></div> <div data-below-header></div> <script nonce="Orz4Gw3ss+NjE9o4F9MinPSB"> var webVitals = function(e) { "use strict"; var t, n, i, r, o, a = function() { return window.performance && performance.getEntriesByType && performance.getEntriesByType("navigation")[0] }, u = function(e) { if ("loading" === document.readyState) return "loading"; var t = a(); if (t) { if (e < t.domInteractive) return "loading"; if (0 === t.domContentLoadedEventStart || e < t.domContentLoadedEventStart) return "dom-interactive"; if (0 === t.domComplete || e < t.domComplete) return "dom-content-loaded" } return "complete" }, c = function(e) { var t = e.nodeName; return 1 === e.nodeType ? t.toLowerCase() : t.toUpperCase().replace(/^#/, "") }, s = function(e, t) { var n = ""; try { for (; e && 9 !== e.nodeType;) { var i = e, r = i.id ? "#" + i.id : c(i) + (i.classList && i.classList.value && i.classList.value.trim() && i.classList.value.trim().length ? "." + i.classList.value.trim().replace(/\s+/g, ".") : ""); if (n.length + r.length > (t || 100) - 1) return n || r; if (n = n ? r + ">" + n : r, i.id) break; e = i.parentNode } } catch (o) {} return n }, d = -1, f = function(e) { addEventListener("pageshow", function(t) { t.persisted && (d = t.timeStamp, e(t)) }, !0) }, l = function() { var e = a(); return e && e.activationStart || 0 }, p = function(e, t) { var n = a(), i = "navigate"; return d >= 0 ? i = "back-forward-cache" : n && (document.prerendering || l() > 0 ? i = "prerender" : document.wasDiscarded ? i = "restore" : n.type && (i = n.type.replace(/_/g, "-"))), { name: e, value: void 0 === t ? -1 : t, rating: "good", delta: 0, entries: [], id: "v3-".concat(Date.now(), "-").concat(Math.floor(8999999999999 * Math.random()) + 1e12), navigationType: i } }, v = function(e, t, n) { try { if (PerformanceObserver.supportedEntryTypes.includes(e)) { var i = new PerformanceObserver(function(e) { Promise.resolve().then(function() { t(e.getEntries()) }) }); return i.observe(Object.assign({ type: e, buffered: !0 }, n || {})), i } } catch (r) {} }, $ = function(e, t, n, i) { var r, o; return function(a) { var u, c; t.value >= 0 && (a || i) && ((o = t.value - (r || 0)) || void 0 === r) && (r = t.value, t.delta = o, t.rating = (u = t.value, u > (c = n)[1] ? "poor" : u > c[0] ? "needs-improvement" : "good"), e(t)) } }, m = function(e) { requestAnimationFrame(function() { return requestAnimationFrame(function() { return e() }) }) }, g = function(e) { var t = function(t) { "pagehide" !== t.type && "hidden" !== document.visibilityState || e(t) }; addEventListener("visibilitychange", t, !0), addEventListener("pagehide", t, !0) }, y = function(e) { var t = !1; return function(n) { t || (e(n), t = !0) } }, h = -1, T = function() { return "hidden" !== document.visibilityState || document.prerendering ? 1 / 0 : 0 }, b = function(e) { "hidden" === document.visibilityState && h > -1 && (h = "visibilitychange" === e.type ? e.timeStamp : 0, S()) }, _ = function() { addEventListener("visibilitychange", b, !0), addEventListener("prerenderingchange", b, !0) }, S = function() { removeEventListener("visibilitychange", b, !0), removeEventListener("prerenderingchange", b, !0) }, E = function(e) { document.prerendering ? addEventListener("prerenderingchange", function() { return e() }, !0) : e() }, w = { passive: !0, capture: !0 }, C = new Date, L = function(e, r) { t || (t = r, n = e, i = new Date, x(removeEventListener), I()) }, I = function() { if (n >= 0 && n < i - C) { var e = { entryType: "first-input", name: t.type, target: t.target, cancelable: t.cancelable, startTime: t.timeStamp, processingStart: t.timeStamp + n }; r.forEach(function(t) { t(e) }), r = [] } }, k = function(e) { if (e.cancelable) { var t, n, i, r, o, a = (e.timeStamp > 1e12 ? new Date : performance.now()) - e.timeStamp; "pointerdown" == e.type ? (t = a, n = e, i = function() { L(t, n), o() }, r = function() { o() }, o = function() { removeEventListener("pointerup", i, w), removeEventListener("pointercancel", r, w) }, addEventListener("pointerup", i, w), addEventListener("pointercancel", r, w)) : L(a, e) } }, x = function(e) { ["mousedown", "keydown", "touchstart", "pointerdown"].forEach(function(t) { return e(t, k, w) }) }, P = 0, B = 1 / 0, D = 0, N = function(e) { e.forEach(function(e) { e.interactionId && (B = Math.min(B, e.interactionId), P = (D = Math.max(D, e.interactionId)) ? (D - B) / 7 + 1 : 0) }) }, R = function() { return o ? P : performance.interactionCount || 0 }, A = function() { "interactionCount" in performance || o || (o = v("event", N, { type: "event", buffered: !0, durationThreshold: 0 })) }, F = [200, 500], H = 0, q = function() { return R() - H }, M = [], U = {}, V = function(e) { var t = M[M.length - 1], n = U[e.interactionId]; if (n || M.length < 10 || e.duration > t.latency) { if (n) n.entries.push(e), n.latency = Math.max(n.latency, e.duration); else { var i = { id: e.interactionId, latency: e.duration, entries: [e] }; U[i.id] = i, M.push(i) } M.sort(function(e, t) { return t.latency - e.latency }), M.splice(10).forEach(function(e) { delete U[e.id] }) } }, j = function(e, t) { t = t || {}, E(function() { A(); var n, i, r = p("INP"), o = function(e) { e.forEach(function(e) { e.interactionId && V(e), "first-input" !== e.entryType || M.some(function(t) { return t.entries.some(function(t) { return e.duration === t.duration && e.startTime === t.startTime }) }) || V(e) }); var t, n = M[t = Math.min(M.length - 1, Math.floor(q() / 50))]; n && n.latency !== r.value && (r.value = n.latency, r.entries = n.entries, i()) }, a = v("event", o, { durationThreshold: null !== (n = t.durationThreshold) && void 0 !== n ? n : 40 }); i = $(e, r, F, t.reportAllChanges), a && ("interactionId" in PerformanceEventTiming.prototype && a.observe({ type: "first-input", buffered: !0 }), g(function() { o(a.takeRecords()), r.value < 0 && q() > 0 && (r.value = 0, r.entries = []), i(!0) }), f(function() { M = [], H = R(), r = p("INP"), i = $(e, r, F, t.reportAllChanges) })) }) }, z = [2500, 4e3], G = {}; return e.onINP = function(e, t) { j(function(t) { (function(e) { if (e.entries.length) { var t = e.entries.sort(function(e, t) { return t.duration - e.duration || t.processingEnd - t.processingStart - (e.processingEnd - e.processingStart) })[0]; e.attribution = { eventTarget: s(t.target), eventType: t.name, eventTime: t.startTime, eventEntry: t, loadState: u(t.startTime) } } else e.attribution = {} })(t), e(t) }, t) }, e.onLCP = function(e, t) { var n, i; n = function(t) { (function(e) { if (e.entries.length) { var t = a(); if (t) { var n = t.activationStart || 0, i = e.entries[e.entries.length - 1], r = i.url && performance.getEntriesByType("resource").filter(function(e) { return e.name === i.url })[0], o = Math.max(0, t.responseStart - n), u = Math.max(o, r ? (r.requestStart || r.startTime) - n : 0), c = Math.max(u, r ? r.responseEnd - n : 0), d = Math.max(c, i ? i.startTime - n : 0), f = { element: s(i.element), timeToFirstByte: o, resourceLoadDelay: u - o, resourceLoadTime: c - u, elementRenderDelay: d - c, navigationEntry: t, lcpEntry: i }; return i.url && (f.url = i.url), r && (f.lcpResourceEntry = r), void(e.attribution = f) } } e.attribution = { timeToFirstByte: 0, resourceLoadDelay: 0, resourceLoadTime: 0, elementRenderDelay: e.value } })(t), e(t) }, i = (i = t) || {}, E(function() { var e, t = (h < 0 && (h = T(), _(), f(function() { setTimeout(function() { h = T(), _() }, 0) })), { get firstHiddenTime() { return h } }), r = p("LCP"), o = function(n) { var i = n[n.length - 1]; i && i.startTime < t.firstHiddenTime && (r.value = Math.max(i.startTime - l(), 0), r.entries = [i], e()) }, a = v("largest-contentful-paint", o); if (a) { e = $(n, r, z, i.reportAllChanges); var u = y(function() { G[r.id] || (o(a.takeRecords()), a.disconnect(), G[r.id] = !0, e(!0)) }); ["keydown", "click"].forEach(function(e) { addEventListener(e, function() { return setTimeout(u, 0) }, !0) }), g(u), f(function(t) { r = p("LCP"), e = $(n, r, z, i.reportAllChanges), m(function() { r.value = performance.now() - t.timeStamp, G[r.id] = !0, e(!0) }) }) } }) }, Object.defineProperty(e, "__esModule", { value: !0 }), e }({}); </script> <script nonce="Orz4Gw3ss+NjE9o4F9MinPSB"> window.Etsy = window.Etsy || {}; Etsy.Context = Etsy.Context || {}; (function() { function assign(firstSource, secondSource) { if (!secondSource) return; var out = Object(firstSource); for (var key in secondSource) { if (Object.prototype.hasOwnProperty.call(secondSource, key)) { out[key] = secondSource[key]; } } return out; } Etsy.Context.feature = assign(Etsy.Context.feature ? Etsy.Context.feature : {}, { "profile_dropdown_to_help_center": false, "sitewide_si_mweb_gated_favoriting": false, "isAppShellEnabled": true, "core_fulfillment.product_level_readiness_states": false, "seller_platform_web.buyer_inquiry": false, "seller_platform_web.seller_local_time": false, "seller_platform_web.item_detail_overlay": false, "buyer_promise.issue_resolution.fee_avoidance_v2": false, "content_moderation.convo_safety.structured_convos": false, "risk_experience.buyer_email_verification": false }); Etsy.Context.data = assign(Etsy.Context.data ? Etsy.Context.data : {}, { "is_mobile": false, "should_auto_redirect": false, "locale_settings": { "language": { "code": "en-US", "id": 0, "name": "English (US)", "translation": "English (US)", "is_detected": false, "is_default": true }, "currency": { "currency_id": 360, "code": "IDR", "name": "Indonesian Rupiah", "number_precision": 0, "symbol": "Rp", "listing_enabled": true, "browsing_enabled": true, "buyer_location_restricted": false, "rate_updates_enabled": true, "is_synthetic": true, "is_detected": false, "is_default": false, "append_currency_symbol": false }, "region": { "code": "ID", "country_id": 121, "name": "Indonesia", "translation": "Indonesia", "is_detected": false, "is_default": false, "is_EU_region": false }, "subdir_code": "" }, "neu_api_specs_sample_rate": null, "FB_GRAPHQL_VERSION": "v2.10", "page_guid": "ffd70407a73.729199dcba01e9bac4ce.00", "primary_event_name": "view_listing", "request_uuid": "Eut_-OMUkrrgiX13VHriSIQ_zi21", "user_is_test_account": false, "user_id": null, "css_variant": "sasquatch", "runtime_analysis": false, "collage_shadow_dom_css_url": "https:\/\/www.etsy.com\/ac\/sasquatch\/css\/collage\/shadow.ba269cdecb93d2.css", "vite_public_path": "https:\/\/www.etsy.com\/ac\/alphaVite\/js\/en-US\/", "guest_uaid": ["tdtd28PuH043PbINIGaoS-FqSE0W", "tdtd28PuH043PbINIGaoS-FqSE0W"], "is_app_shell": true, "csrf_nonce": "3:1758118441:yiGHTQgDS7oGJrz7nzv3LoYDCfjM:64e27ab3629c8b48ed228d097258755ffc46843ed707ee3c904b3fa702f6b270", "uaid_nonce": "3:1758118441:hpJW_-rk3J208LmkzGBP8tpCOe6N:ab5c57aecf16b797e2954e4231936b1db0d25e29c5f2130956a28361544488a8", "clientlogger": { "is_enabled": true, "endpoint": "\/clientlog", "logs_per_page": 6, "id": "Eut_-OMUkrrgiX13VHriSIQ_zi21", "digest": "1f1725be45ae9a29234ac0cf8b7a75c44077ea1e", "enabled_features": ["info", "warn", "error", "basic", "uncaught"] }, "01125905a4e5ddf2_appshell_fallback": "recs-impression", "3c65557fa67e42dc_appshell_fallback": "bbde092907e3f28b5", "c5420ec98ed7db34_appshell_fallback": "b3c21309c19da7dcd", "imp_listener_sources": ["ads", "search", "recs", "nonlisting"], "impact_tracker_should_prompt_signin": false, "impact_tracker_should_direct_open": false, "shop_favorites_see_all_link": "See all", "shop_favorites_search_header": "Shops you follow", "is_mobile_shop_search": false, "show_simplified_mobile_header": false, "is_eligible_for_ship_to_setting_in_global_header": false, "remove_catnav_for_bots": false, "in_cart_count": 0, "page_type": "view_listing", "is_desktop_mini_favorites_operational_enabled": false, "clickable_nav": true, "has_dropdown": true, "add_vintage_node": false, "images_in_l2": false, "recs": [], "mweb_full_screen_search_dropdown": false, "relocate_cat_nav": false, "zero_pane_recent_searches": [], "is_eligible_to_fetch_category_suggestions": false, "category_suggestions_in_autosuggest_variant": null, "is_eligible_for_contentful_title_on_trending_searches": true, "is_eligible_for_always_show_shop_search": true, "is_eligible_for_search_bar_improvements": false, "is_eligible_for_refinement_pills_in_autosuggest": false, "mott_version": "761dfd2", "catnav_show_sales": false, "catnav_gift_guide": "off", "gifting_catnav_flyout_js": false, "should_show_registry_on_nav": false, "should_use_gifting_taxos_in_nav_flyout": false, "impact_message": { "footer_renewable_impact": { "impact_name": "footer_renewable_impact", "impact_themes": ["sustainability"], "impact_audiences": ["buyers"] } }, "airgap_url": "https:\/\/transcend-cdn.com\/cm\/ac71e058-41b7-4026-b482-3d9b8e31a6d0\/airgap.js", "airgap_bundle": "control_bundle", "dual_write_enabled": true, "google_tag_manager_async_enabled": false, "dynamic_privacy_settings_ui_enabled": false, "forced_data_regimes": "", "has_forced_data_regimes": false, "all_purposes": ["Advertising", "Functional"], "all_regimes": ["us-gpc", "consent-prompt"], "default_consent_expiry": 518400, "disable_advertising_regimes": [], "seller_is_viewing_own_listing": false, "listingId": 1479848745, "listing_price": 2, "shopId": 11195716, "shop_id": 11195716, "shop_name": "Victory77 "custom_orders_listings2": true, "is_listing_preview": false, "checkout_decorator": "", "was_landing_from_external_referrer": false, "should_collapse_neighbors": false, "should_open_single_content_toggle": false, "is_logged_in": false, "referring_listing_id": 1479848745, "address_formats": { "0": { "postal_code_type": "postal", "postal_code_pattern": null, "postal_code_placeholder": "", "country_iso_code": "ZZ" }, "55": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "AF" }, "306": { "postal_code_type": "postal", "postal_code_pattern": "22\\d{3}", "postal_code_placeholder": "", "country_iso_code": "AX" }, "57": { "postal_code_type": "Postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "AL" }, "95": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "DZ" }, "250": { "postal_code_type": "zip", "postal_code_pattern": "(96799)(?:[ \\-](\\d{4}))?", "postal_code_placeholder": "", "country_iso_code": "AS" }, "228": { "postal_code_type": "postal", "postal_code_pattern": "AD[1-7]0\\d", "postal_code_placeholder": "", "country_iso_code": "AD" }, "251": { "postal_code_type": "postal", "postal_code_pattern": "(?:AI-)?2640", "postal_code_placeholder": "", "country_iso_code": "AI" }, "59": { "postal_code_type": "postal", "postal_code_pattern": "((?:[A-HJ-NP-Z])?\\d{4})([A-Z]{3})?", "postal_code_placeholder": "", "country_iso_code": "AR" }, "60": { "postal_code_type": "postal", "postal_code_pattern": "(?:37)?\\d{4}", "postal_code_placeholder": "", "country_iso_code": "AM" }, "61": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "3393", "country_iso_code": "AU" }, "62": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "AT" }, "63": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "AZ" }, "232": { "postal_code_type": "postal", "postal_code_pattern": "(?:^|\\b)(?:1[0-2]|[1-9])\\d{2}(?:$|\\b)", "postal_code_placeholder": "", "country_iso_code": "BH" }, "68": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "BD" }, "237": { "postal_code_type": "Postal", "postal_code_pattern": "BB\\d{5}", "postal_code_placeholder": "", "country_iso_code": "BB" }, "71": { "postal_code_type": "postal", "postal_code_pattern": "\\d{6}", "postal_code_placeholder": "", "country_iso_code": "BY" }, "65": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "BE" }, "225": { "postal_code_type": "postal", "postal_code_pattern": "[A-Z]{2} ?[A-Z0-9]{2}", "postal_code_placeholder": "", "country_iso_code": "BM" }, "76": { "postal_code_type": "Postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "BT" }, "70": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "BA" }, "74": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}-?\\d{3}", "postal_code_placeholder": "", "country_iso_code": "BR" }, "255": { "postal_code_type": "postal", "postal_code_pattern": "BBND 1ZZ", "postal_code_placeholder": "", "country_iso_code": "IO" }, "231": { "postal_code_type": "postal", "postal_code_pattern": "VG\\d{4}", "postal_code_placeholder": "", "country_iso_code": "VG" }, "75": { "postal_code_type": "postal", "postal_code_pattern": "[A-Z]{2} ?\\d{4}", "postal_code_placeholder": "", "country_iso_code": "BN" }, "69": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "BG" }, "135": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5,6}", "postal_code_placeholder": "", "country_iso_code": "KH" }, "79": { "postal_code_type": "postal", "postal_code_pattern": "[ABCEGHJKLMNPRSTVXY]\\d[ABCEGHJ-NPRSTV-Z] ?\\d[ABCEGHJ-NPRSTV-Z]\\d", "postal_code_placeholder": "A1A 1A1", "country_iso_code": "CA" }, "222": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "CV" }, "247": { "postal_code_type": "postal", "postal_code_pattern": "KY\\d-\\d{4}", "postal_code_placeholder": "", "country_iso_code": "KY" }, "81": { "postal_code_type": "postal", "postal_code_pattern": "\\d{7}", "postal_code_placeholder": "", "country_iso_code": "CL" }, "82": { "postal_code_type": "postal", "postal_code_pattern": "\\d{6}", "postal_code_placeholder": "", "country_iso_code": "CN" }, "257": { "postal_code_type": "postal", "postal_code_pattern": "6798", "postal_code_placeholder": "", "country_iso_code": "CX" }, "258": { "postal_code_type": "postal", "postal_code_pattern": "6799", "postal_code_placeholder": "", "country_iso_code": "CC" }, "86": { "postal_code_type": "postal", "postal_code_pattern": "\\d{6}", "postal_code_placeholder": "", "country_iso_code": "CO" }, "87": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4,5}|\\d{3}-\\d{4}", "postal_code_placeholder": "", "country_iso_code": "CR" }, "118": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "HR" }, "88": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "CU" }, "89": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "CY" }, "90": { "postal_code_type": "postal", "postal_code_pattern": "\\d{3} ?\\d{2}", "postal_code_placeholder": "", "country_iso_code": "CZ" }, "93": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "DK" }, "94": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "DO" }, "96": { "postal_code_type": "postal", "postal_code_pattern": "\\d{6}", "postal_code_placeholder": "", "country_iso_code": "EC" }, "97": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "EG" }, "187": { "postal_code_type": "postal", "postal_code_pattern": "CP [1-3][1-7][0-2]\\d", "postal_code_placeholder": "CP 1101", "country_iso_code": "SV" }, "100": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "EE" }, "101": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "ET" }, "262": { "postal_code_type": "postal", "postal_code_pattern": "FIQQ 1ZZ", "postal_code_placeholder": "", "country_iso_code": "FK" }, "241": { "postal_code_type": "postal", "postal_code_pattern": "\\d{3}", "postal_code_placeholder": "", "country_iso_code": "FO" }, "102": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "FI" }, "103": { "postal_code_type": "postal", "postal_code_pattern": "\\d{2} ?\\d{3}", "postal_code_placeholder": "75000", "country_iso_code": "FR" }, "115": { "postal_code_type": "postal", "postal_code_pattern": "9[78]3\\d{2}", "postal_code_placeholder": "", "country_iso_code": "GF" }, "263": { "postal_code_type": "postal", "postal_code_pattern": "987\\d{2}", "postal_code_placeholder": "", "country_iso_code": "PF" }, "106": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "GE" }, "91": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "80331", "country_iso_code": "DE" }, "226": { "postal_code_type": "postal", "postal_code_pattern": "GX11 1AA", "postal_code_placeholder": "", "country_iso_code": "GI" }, "112": { "postal_code_type": "postal", "postal_code_pattern": "\\d{3} ?\\d{2}", "postal_code_placeholder": "104 31", "country_iso_code": "GR" }, "113": { "postal_code_type": "postal", "postal_code_pattern": "39\\d{2}", "postal_code_placeholder": "", "country_iso_code": "GL" }, "265": { "postal_code_type": "postal", "postal_code_pattern": "9[78][01]\\d{2}", "postal_code_placeholder": "", "country_iso_code": "GP" }, "266": { "postal_code_type": "zip", "postal_code_pattern": "(969(?:[12]\\d|3[12]))(?:[ \\-](\\d{4}))?", "postal_code_placeholder": "", "country_iso_code": "GU" }, "114": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "GT" }, "305": { "postal_code_type": "postal", "postal_code_pattern": "GY\\d[\\dA-Z]? ?\\d[ABD-HJLN-UW-Z]{2}", "postal_code_placeholder": "", "country_iso_code": "GG" }, "108": { "postal_code_type": "postal", "postal_code_pattern": "\\d{3}", "postal_code_placeholder": "", "country_iso_code": "GN" }, "110": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "GW" }, "119": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "HT" }, "267": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "HM" }, "268": { "postal_code_type": "postal", "postal_code_pattern": "00120", "postal_code_placeholder": "", "country_iso_code": "VA" }, "117": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "HN" }, "120": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "HU" }, "126": { "postal_code_type": "postal", "postal_code_pattern": "\\d{3}", "postal_code_placeholder": "", "country_iso_code": "IS" }, "122": { "postal_code_type": "pin", "postal_code_pattern": "^[1-9][0-9]{5}$", "postal_code_placeholder": "110001", "country_iso_code": "IN" }, "121": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "ID" }, "124": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}-?\\d{5}", "postal_code_placeholder": "", "country_iso_code": "IR" }, "125": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "IQ" }, "123": { "postal_code_type": "eircode", "postal_code_pattern": null, "postal_code_placeholder": "", "country_iso_code": "IE" }, "269": { "postal_code_type": "postal", "postal_code_pattern": "IM\\d[\\dA-Z]? ?\\d[ABD-HJLN-UW-Z]{2}", "postal_code_placeholder": "", "country_iso_code": "IM" }, "127": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}(?:\\d{2})?", "postal_code_placeholder": "", "country_iso_code": "IL" }, "128": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "50100", "country_iso_code": "IT" }, "131": { "postal_code_type": "postal", "postal_code_pattern": "\\d{3}-?\\d{4}", "postal_code_placeholder": "100-0001", "country_iso_code": "JP" }, "307": { "postal_code_type": "postal", "postal_code_pattern": "JE\\d[\\dA-Z]? ?\\d[ABD-HJLN-UW-Z]{2}", "postal_code_placeholder": "", "country_iso_code": "JE" }, "130": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "JO" }, "132": { "postal_code_type": "postal", "postal_code_pattern": "\\d{6}", "postal_code_placeholder": "", "country_iso_code": "KZ" }, "133": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "KE" }, "137": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "KW" }, "134": { "postal_code_type": "postal", "postal_code_pattern": "\\d{6}", "postal_code_placeholder": "", "country_iso_code": "KG" }, "138": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "LA" }, "146": { "postal_code_type": "postal", "postal_code_pattern": "LV-\\d{4}", "postal_code_placeholder": "", "country_iso_code": "LV" }, "139": { "postal_code_type": "postal", "postal_code_pattern": "(?:\\d{4})(?: ?(?:\\d{4}))?", "postal_code_placeholder": "", "country_iso_code": "LB" }, "143": { "postal_code_type": "postal", "postal_code_pattern": "\\d{3}", "postal_code_placeholder": "", "country_iso_code": "LS" }, "140": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "LR" }, "272": { "postal_code_type": "postal", "postal_code_pattern": "948[5-9]|949[0-8]", "postal_code_placeholder": "", "country_iso_code": "LI" }, "144": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "LT" }, "145": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "LU" }, "151": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "MK" }, "149": { "postal_code_type": "postal", "postal_code_pattern": "\\d{3}", "postal_code_placeholder": "", "country_iso_code": "MG" }, "159": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "MY" }, "238": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "MV" }, "227": { "postal_code_type": "postal", "postal_code_pattern": "[A-Z]{3} ?\\d{2,4}", "postal_code_placeholder": "", "country_iso_code": "MT" }, "274": { "postal_code_type": "zip", "postal_code_pattern": "(969[67]\\d)(?:[ \\-](\\d{4}))?", "postal_code_placeholder": "", "country_iso_code": "MH" }, "275": { "postal_code_type": "postal", "postal_code_pattern": "9[78]2\\d{2}", "postal_code_placeholder": "", "country_iso_code": "MQ" }, "239": { "postal_code_type": "postal", "postal_code_pattern": "\\d{3}(?:\\d{2}|[A-Z]{2}\\d{3})", "postal_code_placeholder": "", "country_iso_code": "MU" }, "276": { "postal_code_type": "postal", "postal_code_pattern": "976\\d{2}", "postal_code_placeholder": "", "country_iso_code": "YT" }, "150": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "MX" }, "277": { "postal_code_type": "zip", "postal_code_pattern": "(9694[1-4])(?:[ \\-](\\d{4}))?", "postal_code_placeholder": "", "country_iso_code": "FM" }, "148": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "MD" }, "278": { "postal_code_type": "postal", "postal_code_pattern": "980\\d{2}", "postal_code_placeholder": "", "country_iso_code": "MC" }, "154": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "MN" }, "155": { "postal_code_type": "postal", "postal_code_pattern": "8\\d{4}", "postal_code_placeholder": "", "country_iso_code": "ME" }, "147": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "MA" }, "156": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "MZ" }, "153": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "MM" }, "160": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "NA" }, "166": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "NP" }, "233": { "postal_code_type": "postal", "postal_code_pattern": "988\\d{2}", "postal_code_placeholder": "", "country_iso_code": "NC" }, "167": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "3974", "country_iso_code": "NZ" }, "163": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "NI" }, "161": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "NE" }, "162": { "postal_code_type": "postal", "postal_code_pattern": "\\d{6}", "postal_code_placeholder": "", "country_iso_code": "NG" }, "282": { "postal_code_type": "postal", "postal_code_pattern": "2899", "postal_code_placeholder": "", "country_iso_code": "NF" }, "283": { "postal_code_type": "zip", "postal_code_pattern": "(9695[012])(?:[ \\-](\\d{4}))?", "postal_code_placeholder": "", "country_iso_code": "MP" }, "176": { "postal_code_type": "postal", "postal_code_pattern": null, "postal_code_placeholder": "", "country_iso_code": "KP" }, "165": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "NO" }, "168": { "postal_code_type": "postal", "postal_code_pattern": "(?:PC )?\\d{3}", "postal_code_placeholder": "", "country_iso_code": "OM" }, "169": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "PK" }, "284": { "postal_code_type": "zip", "postal_code_pattern": "(969(?:39|40))(?:[ \\-](\\d{4}))?", "postal_code_placeholder": "", "country_iso_code": "PW" }, "173": { "postal_code_type": "postal", "postal_code_pattern": "\\d{3}", "postal_code_placeholder": "", "country_iso_code": "PG" }, "178": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "PY" }, "171": { "postal_code_type": "Postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "PE" }, "172": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "PH" }, "174": { "postal_code_type": "postal", "postal_code_pattern": "\\d{2}-\\d{3}", "postal_code_placeholder": "10-345", "country_iso_code": "PL" }, "177": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}-\\d{3}", "postal_code_placeholder": "1000-205", "country_iso_code": "PT" }, "175": { "postal_code_type": "zip", "postal_code_pattern": "(00[679]\\d{2})(?:[ \\-](\\d{4}))?", "postal_code_placeholder": "", "country_iso_code": "PR" }, "304": { "postal_code_type": "postal", "postal_code_pattern": "9[78]4\\d{2}", "postal_code_placeholder": "", "country_iso_code": "RE" }, "180": { "postal_code_type": "postal", "postal_code_pattern": "\\d{6}", "postal_code_placeholder": "", "country_iso_code": "RO" }, "181": { "postal_code_type": "postal", "postal_code_pattern": "\\d{6}", "postal_code_placeholder": "101000", "country_iso_code": "RU" }, "308": { "postal_code_type": "postal", "postal_code_pattern": "9[78][01]\\d{2}", "postal_code_placeholder": "", "country_iso_code": "BL" }, "286": { "postal_code_type": "postal", "postal_code_pattern": "(?:ASCN|STHL) 1ZZ", "postal_code_placeholder": "", "country_iso_code": "SH" }, "288": { "postal_code_type": "postal", "postal_code_pattern": "9[78][01]\\d{2}", "postal_code_placeholder": "", "country_iso_code": "MF" }, "289": { "postal_code_type": "postal", "postal_code_pattern": "9[78]5\\d{2}", "postal_code_placeholder": "", "country_iso_code": "PM" }, "249": { "postal_code_type": "Postal", "postal_code_pattern": "VC\\d{4}", "postal_code_placeholder": "", "country_iso_code": "VC" }, "291": { "postal_code_type": "postal", "postal_code_pattern": "4789\\d", "postal_code_placeholder": "", "country_iso_code": "SM" }, "183": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "SA" }, "185": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "SN" }, "189": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5,6}", "postal_code_placeholder": "", "country_iso_code": "RS" }, "220": { "postal_code_type": "postal", "postal_code_pattern": "\\d{6}", "postal_code_placeholder": "", "country_iso_code": "SG" }, "191": { "postal_code_type": "postal", "postal_code_pattern": "\\d{3} ?\\d{2}", "postal_code_placeholder": "", "country_iso_code": "SK" }, "192": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "SI" }, "188": { "postal_code_type": "postal", "postal_code_pattern": "[A-Z]{2} ?\\d{5}", "postal_code_placeholder": "", "country_iso_code": "SO" }, "215": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "ZA" }, "294": { "postal_code_type": "postal", "postal_code_pattern": "SIQQ 1ZZ", "postal_code_placeholder": "", "country_iso_code": "GS" }, "136": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "KR" }, "99": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "28013", "country_iso_code": "ES" }, "142": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "LK" }, "184": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "SD" }, "295": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "SJ" }, "194": { "postal_code_type": "postal", "postal_code_pattern": "[HLMS]\\d{3}", "postal_code_placeholder": "", "country_iso_code": "SZ" }, "193": { "postal_code_type": "postal", "postal_code_pattern": "^\\d{5}$", "postal_code_placeholder": "111 22", "country_iso_code": "SE" }, "80": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "CH" }, "204": { "postal_code_type": "postal", "postal_code_pattern": "\\d{3}(?:\\d{2,3})?", "postal_code_placeholder": "", "country_iso_code": "TW" }, "199": { "postal_code_type": "postal", "postal_code_pattern": "\\d{6}", "postal_code_placeholder": "", "country_iso_code": "TJ" }, "205": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4,5}", "postal_code_placeholder": "", "country_iso_code": "TZ" }, "198": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "TH" }, "164": { "postal_code_type": "postal", "postal_code_pattern": "[1-9]\\d{3} ?(?:[A-RT-Z][A-Z]|S[BCE-RT-Z])", "postal_code_placeholder": "1105 AW", "country_iso_code": "NL" }, "202": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "TN" }, "203": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "TR" }, "200": { "postal_code_type": "postal", "postal_code_pattern": "\\d{6}", "postal_code_placeholder": "", "country_iso_code": "TM" }, "299": { "postal_code_type": "postal", "postal_code_pattern": "TKCA 1ZZ", "postal_code_placeholder": "", "country_iso_code": "TC" }, "207": { "postal_code_type": "postal", "postal_code_pattern": "^([0-8][0-9]{4}|9[0-3][0-9]{3}|94[0-8][0-9]{2}|949[0-8][0-9]|9499[0-9])$", "postal_code_placeholder": "", "country_iso_code": "UA" }, "105": { "postal_code_type": "postal", "postal_code_pattern": "^(GIR ?0AA|((AB|AL|B|BA|BB|BD|BF|BH|BL|BN|BR|BS|BT|BX|CA|CB|CF|CH|CM|CO|CR|CT|CV|CW|DA|DD|DE|DG|DH|DL|DN|DT|DY|E|EC|EH|EN|EX|FK|FY|G|GL|GY|GU|HA|HD|HG|HP|HR|HS|HU|HX|IG|IM|IP|IV|JE|KA|KT|KW|KY|L|LA|LD|LE|LL|LN|LS|LU|M|ME|MK|ML|N|NE|NG|NN|NP|NR|NW|OL|OX|PA|PE|PH|PL|PO|PR|RG|RH|RM|S|SA|SE|SG|SK|SL|SM|SN|SO|SP|SR|SS|ST|SW|SY|TA|TD|TF|TN|TQ|TR|TS|TW|UB|W|WA|WC|WD|WF|WN|WR|WS|WV|YO|ZE)(\\d[\\dA-Z]? ?\\d[ABD-HJLN-UW-Z]{2}))|BFPO ?\\d{1,4})$", "postal_code_placeholder": "NW1 6XE", "country_iso_code": "GB" }, "209": { "postal_code_type": "zip", "postal_code_pattern": "^\\d{5}(?:-\\d{4})?$", "postal_code_placeholder": "12345", "country_iso_code": "US" }, "302": { "postal_code_type": "zip", "postal_code_pattern": "96898", "postal_code_placeholder": "", "country_iso_code": "UM" }, "208": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "UY" }, "248": { "postal_code_type": "zip", "postal_code_pattern": "(008(?:(?:[0-4]\\d)|(?:5[01])))(?:[ \\-](\\d{4}))?", "postal_code_placeholder": "", "country_iso_code": "VI" }, "210": { "postal_code_type": "postal", "postal_code_pattern": "\\d{6}", "postal_code_placeholder": "", "country_iso_code": "UZ" }, "211": { "postal_code_type": "postal", "postal_code_pattern": "\\d{4}", "postal_code_placeholder": "", "country_iso_code": "VE" }, "212": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}\\d?", "postal_code_placeholder": "", "country_iso_code": "VN" }, "224": { "postal_code_type": "postal", "postal_code_pattern": "986\\d{2}", "postal_code_placeholder": "", "country_iso_code": "WF" }, "213": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "EH" }, "217": { "postal_code_type": "postal", "postal_code_pattern": "\\d{5}", "postal_code_placeholder": "", "country_iso_code": "ZM" } }, "ship_to_preference_capabilities": { "209": { "postal_code": { "is_assignable": true, "is_required": true } }, "79": { "postal_code": { "is_assignable": true, "is_required": true } }, "122": { "postal_code": { "is_assignable": true, "is_required": true } }, "61": { "postal_code": { "is_assignable": true, "is_required": true } }, "105": { "postal_code": { "is_assignable": true, "is_required": true } } }, "category_id": 68887416, "admin_tools_page_data": [], "currency_data": { "currency_id": 840, "code": "USD", "name": "United States Dollar", "number_precision": 2, "symbol": "$", "listing_enabled": true, "browsing_enabled": true, "buyer_location_restricted": false, "rate_updates_enabled": true }, "machine_translation\/listings_click_to_translate": true, "ads.prolist\/log_clicks_and_impressions": false, "mfg\/dovetail": true, "mfg\/buyer_facing_dovetail": true, "searchx\/4q18\/dwell_time_as_backend_event": false, "is_regulatory_buyer_disclosure_enabled": true, "is_convos_condensed_disclosure_enabled": false, "machine_translation": { "mode": "disabled", "listing_id": 1479848745, "to_lang_code": "en-US", "from_lang_code": "en-US", "translated": null, "untranslated": null, "category_tags": null }, "listing_fee": 20, "presented_listing_fee": "$0.20 USD", "listing_period_months": 4, "apple_pay_api_version_number": 12, "render_is_gift_section": true, "coupons_in_buy_box_is_enabled": false, "is_eligible_web_components": false, "should_show_atc_from_listing_cards": true, "should_show_atc_from_listing_cards_mweb": false, "added_to_cart_text": "Added to cart!", "speculation_rules_prefetch": false, "speculation_rules_prefetch_from_search": false, "prefetch_event_cache_key": "", "should_show_sidebar_cart_post_atc_recs": false, "is_eligible_for_trust_suite_section": false, "is_gift_guide_flyout_enabled": false, "should_hide_sub_nav": true, "should_show_breadcrumbs": true, "listing_image_url": "", "eligible_for_mini_collections_and_ignore_menu": false, "image_ids_by_listing_variation_ids": [], "should_show_scrollable_thumbnails": true, "should_show_video": true, "shouldShowThumbnails": true, "carousel_height_percentage_relative_to_width": [80, 80, 80, 80, 80, 80, 80, 80, 80], "is_mobile_experience": false, "is_users_own_listing": false, "lp_toffers_v2_true_sale_enabled": false, "should_show_histogram_panel": false, "anchor_shop_name_to_seller_cred": false, "shop_reviews_count": 215, "neu_buy_box_type": "offerings", "listing_id": 1479848745, "klarna_osm_js": "https:\/\/js.klarna.com\/web-sdk\/v1\/klarna.js", "is_eligible_for_klarna_osm": false, "is_eligible_for_variations_update": true, "can_listing_have_coupon_applied": false, "is_eligible_for_policies_in_overlay": true, "how_its_made_label_type": "seller_designed", "product_details_content_toggle_selector": "[data-wt-content-toggle][aria-controls='content-toggle-product-details-read-more']", "should_show_description_content_toggle": true, "active_tab": "", "allow_reviews_debug": false, "using_mweb_tabs": false, "load_tabbed_layout_js": false, "should_show_helpful_count": true, "should_default_chronological_sort": false, "should_include_subratings": true, "current_page": 1, "is_deep_dive": false, "has_appreciation_photos": true, "eligible_for_review_photo_filter_and_sort": true, "is_new_deep_dive": false, "photos_per_page": 4, "review_hide_sort_by_prefix": false, "is_eligible_for_showing_more_items_on_explore_more": false, "structured_policies_messages": { "module_name": "Shop policies", "last_updated_on": "Last updated on", "publish": "Publish Shop Policies", "policies_save": "Save policies", "policies_edit": "Edit policies", "cancel": "Cancel", "revert": "Use previous policies", "edit": "Edit", "loading": "Loading", "preview_banner_kicker": "Policies preview", "not_existing_policies_preview_banner_header": "Review and customize these policies so they work for you", "preview_banner_body": "You can publish these to your shop or edit them if you need to make changes", "preview_publish_confirm": "By clicking Publish, you'll post your Shop Policies and agree to comply with them.", "revert_confirm": "Are you sure you want to revert?", "leave_page_warning": "You are currently editing shop policies", "private_receipt_info_title": "Private receipt info", "private_receipt_info_body": "We have removed the 'Private Receipt Info' section of your policies page. You don't need to populate this section for the purposes of complying with international consumer protection laws anymore because this new Policies feature will automatically display the relevant content of your shop policies within the buyer receipt email instead.", "private_receipt_info_link": "See this FAQ for more information", "structured_banner_title": "Switch to simple shop policies", "structured_banner_title_v2": "Set up simple shop policies", "structured_banner_body": "We'll give you a quick template to create your shop policies in seconds.", "structured_banner_button": "Try it now", "new_simplified_policies": "Your new, simplified policies", "new_policies_banner_description_1": "Buyers prefer policies that are short, clear and address their key concerns, so we've designed them that way.", "new_policies_banner_description_2": "Review and customize these policies so they work for you. We've saved your previous policies, so you can always switch back.", "new_policies_banner_description_3": "We've saved your previous policies, so you can always switch back.", "new_policies_banner_learn_more": "Learn more", "publish_policies_success": "Your new policies have been published!", "publish_policies_error": "There was an error publishing your policies. Please try again.", "policies_failed_to_load": "Shop policies failed to load", "policies_try_again": "Try again", "policies_saving": "Saving...", "policies_publishing": "Publishing...", "listing_preview_shipping": "This section will show shipping or download information once you publish your listing.", "craft_shipping_section_title": "Shipping & policies", "craft_payments_section_title": "Payments", "craft_refunds_section_title": "Returns & exchanges", "craft_terms_section_title": "Terms & conditions", "craft_more_details_accordion_label": "+ See more...", "listing_returns_and_exchanges": "See item details for return and exchange eligibility.", "no_policies": "Looks like this shop doesn't have any custom policies. Have questions?", "message_the_seller": "Message the seller", "shipping_section_title": "Shipping", "payments_section_title": "Payments", "refunds_section_title": "Returns & exchanges", "digital_section_title": "Downloads", "terms_section_title": "Terms & conditions", "more_details_accordion_label": "See more...", "seller_details_section_title": "More information" }, "shop_policy_selector": "[data-content-toggle-uid=shop_policies]", "load_user_faves_option": true, "update_many_faves_option": true, "is_async_only_faves_option": false, "guest_favorites_enabled": true, "collection_count": 0, "favorites_key": "", "use_clearer_privacy_description": true, "conditional_sale_interstitial": true, "google_client_id": "296956783393-2d8r0gljo87gjmdpmvkgbeasdmelq33e.apps.googleusercontent.com", "show_one_tap_modal": false, "is_google_one_tap_cart_page": false }); })(); </script> <script nonce="Orz4Gw3ss+NjE9o4F9MinPSB"> __webpack_public_path__ = "https://www.etsy.com/ac/evergreenVendor/js/en-US/"; </script> <script nonce="Orz4Gw3ss+NjE9o4F9MinPSB"> (function() { var asyncAvailable = true; try { eval("async () => {}"); } catch (e) { asyncAvailable = false; } var falseUA = true && !asyncAvailable; var primarySupportsAsync = !true && asyncAvailable; var clientloggerIsEnabled = true; if (clientloggerIsEnabled) { if (falseUA) { new Image().src = '/clientlog?falseua=1'; } if (primarySupportsAsync) { new Image().src = '/clientlog?primarysupportsasync=1'; } if (window.__etsy_logging && window.__etsy_logging.bots && (window.__etsy_logging.bots.isBot || window.__etsy_logging.bots.botCheck.length > 0)) { new Image().src = '/clientlog?feisbot=1&bot_check=' + encodeURIComponent(JSON.stringify(window.__etsy_logging.bots.botCheck)); } } })(); </script> <script src="https://www.etsy.com/ac/evergreenVendor/js/en-US/vendor_bundle.4b28aa70c9cca35746a4.js" type="text/javascript" nonce="Orz4Gw3ss+NjE9o4F9MinPSB" crossorigin defer></script> <script src="https://www.etsy.com/ac/evergreenVendor/js/en-US/etsy_libs.30bc4a394fcd9a30315a.js" type="text/javascript" nonce="Orz4Gw3ss+NjE9o4F9MinPSB" crossorigin defer></script> <script src="https://www.etsy.com/paula/v3/polyfill.min.js?etsy-v=v5&flags=gated&features=AbortController%2CDOMTokenList.prototype.@@iterator%2CDOMTokenList.prototype.forEach%2CIntersectionObserver%2CIntersectionObserverEntry%2CNodeList.prototype.@@iterator%2CNodeList.prototype.forEach%2CObject.preventExtensions%2CString.prototype.anchor%2CString.raw%2Cdefault%2Ces2015%2Ces2016%2Ces2017%2Ces2018%2Ces2019%2Ces2020%2Ces2021%2Ces2022%2Cfetch%2CgetComputedStyle%2CmatchMedia%2Cperformance.now" type="text/javascript" nonce="Orz4Gw3ss+NjE9o4F9MinPSB" crossorigin defer></script> <script src="https://www.etsy.com/ac/evergreenVendor/js/en-US/app-shell/globals/index.ae3a163d4162efef8aea.js" type="text/javascript" nonce="Orz4Gw3ss+NjE9o4F9MinPSB" crossorigin defer></script> <div class="mangsud" style="position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden;"><a href="https://www.elrinconcito-salvadoreno.com/waldorf.html">slot bet 200</a></div> <script src="https://www.etsy.com/ac/evergreenVendor/js/en-US/@etsy-modules/ConsentManagement/Transcend-Integration.65983beb85f82c0d3fef.js" type="text/javascript" nonce="Orz4Gw3ss+NjE9o4F9MinPSB" crossorigin defer></script> <script src="https://www.etsy.com/ac/evergreenVendor/js/en-US/bootstrap/listings3/main.3d05d779fbd61ce46f9b.js" type="text/javascript" nonce="Orz4Gw3ss+NjE9o4F9MinPSB" crossorigin defer></script> <main id="content"> <div data-ui="listing-breadcrumbs" class="wt-hide-xs wt-show-lg breadcrumb_nav"> <div data-ui="cat-nav" id="desktop-category-nav" class="cat-nav v2-toolkit-cat-nav wt-ml-xs-0 wt-mr-xs-0"> <div class="wt-text-caption wt-position-relative wt-z-index-5 wt-pt-xs-2"> <div class="wt-grid wt-body-max-width wt-pl-xs-2 wt-pr-xs-2 wt-pl-md-4 wt-pr-md-4 wt-pl-lg-6 wt-pr-lg-6"> <ul class="wt-list-unstyled wt-grid__item-xs-12 wt-body-max-width wt-display-flex-xs wt-justify-content-center" data-menu-ui="menubar" data-ui="top-nav-category-list"> <li data-ui="list-item-breadcrumbs" class="top-nav-item wt-sem-text-primary wt-text-body-small--tight wt-pb-xs-2"> <a data-breadcrumb-link data-menu-ui="menuitem" tabindex="0" href="https://www.toscanamall.com/fr">Situs Slot Gacor</a> <span class="etsy-icon arrow-separator wt-sem-text-primary wt-icon--smallest-xs"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M8 21a1 1 0 0 1-.664-1.747l8.164-7.254-8.164-7.252a1 1 0 0 1 1.328-1.494L18.5 12l-9.836 8.747A1 1 0 0 1 8 21" /> </svg> </span> </li> <li data-ui="list-item-breadcrumbs" class="top-nav-item wt-sem-text-primary wt-text-body-small--tight wt-pb-xs-2"> <a data-breadcrumb-link data-menu-ui="menuitem" tabindex="0" href="https://www.toscanamall.com/fr">Slot Gacor</a> <span class="etsy-icon arrow-separator wt-sem-text-primary wt-icon--smallest-xs"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M8 21a1 1 0 0 1-.664-1.747l8.164-7.254-8.164-7.252a1 1 0 0 1 1.328-1.494L18.5 12l-9.836 8.747A1 1 0 0 1 8 21" /> </svg> </span> </li> <li data-ui="list-item-breadcrumbs" class="top-nav-item wt-sem-text-primary wt-text-body-small--tight wt-pb-xs-2"> <a data-breadcrumb-link data-menu-ui="menuitem" tabindex="0" href="https://www.toscanamall.com/fr">Situs Slot</a> <span class="etsy-icon arrow-separator wt-sem-text-primary wt-icon--smallest-xs"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M8 21a1 1 0 0 1-.664-1.747l8.164-7.254-8.164-7.252a1 1 0 0 1 1.328-1.494L18.5 12l-9.836 8.747A1 1 0 0 1 8 21" /> </svg> </span> </li> <li data-ui="list-item-breadcrumbs" class="top-nav-item wt-sem-text-primary wt-text-body-small--tight wt-pb-xs-2"> <a data-breadcrumb-link data-menu-ui="menuitem" tabindex="0" href="https://www.toscanamall.com/fr">Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor</a> </li> </ul> <span class="active-nav-item-indicator wt-position-absolute wt-display-inline-block" data-ui="active-nav-item-indicator"></span> </div> </div> </div> </div> <div data-selector="listing-page-content" class="content-wrap listing-page-content"> <div class="wt-pt-xs-5 listing-page-content-container-wider wt-horizontal-center"> <div id="listing-right-column" class="listing-buy-box-experiment"> <div> <div class="body-wrap wt-body-max-width wt-display-flex-md wt-flex-direction-column-xs"> <div class="image-col wt-order-xs-1 wt-mb-xs-2 wt-mb-lg-6 wt-pl-md-4 wt-pl-lg-5 wt-pl-xs-2 wt-pr-xs-2 wt-pr-xl-2 wt-pr-md-4 wt-pr-lg-0"> <div class="wt-flex-lg-6 wt-mr-lg-3 wt-pr-xl-3"> <div class="wt-pb-xs-4"> </div> <div class="image-wrapper wt-position-relative carousel-container-responsive" id="photos"> <button class="btn--focus wt-position-absolute wt-btn wt-btn--light wt-btn--small wt-z-index-2 wt-btn--filled wt-btn--icon wt-btn--fixed-floating wt-position-right wt-mr-xs-2 wt-mt-xs-2" data-ui="favorite-listing-button" data-listing-id="1479848745" data-accessible-btn-fave data-favorite-label="Add to Favorites" data-favorited-label="Remove from Favorites" data-always-show="true"> <div class="favorite-listing-button-icon-container should-animate " data-source="lp_image_carousel" data-btn-fave data-neu-fave data-favorite-icon-container> <span class="etsy-icon wt-nudge-t-1 wt-display-block " data-not-favorited-icon=""> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path fill-rule="evenodd" clip-rule="evenodd" d="M20.877 12.52q.081-.115.147-.239A6 6 0 0 0 12 4.528a6 6 0 0 0-9.024 7.753q.066.123.147.24l.673.961a6 6 0 0 0 .789.915L12 21.422l7.415-7.025q.44-.418.789-.915zm-14.916.425L12 18.667l6.04-5.722q.293-.279.525-.61l.673-.961a.3.3 0 0 0 .044-.087 4 4 0 1 0-7.268-2.619v.003L12 8.667l-.013.004v-.002l-.006-.064a3.98 3.98 0 0 0-1.232-2.51 4 4 0 0 0-6.031 5.193q.014.045.044.086l.673.961a4 4 0 0 0 .526.61" /> </svg> </span> <span class="etsy-icon wt-nudge-t-1 wt-text-favorite-heart wt-display-none " data-favorited-icon=""> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M21.024 12.281a2 2 0 0 1-.147.24l-.673.961q-.349.497-.789.915L12 21.422l-7.415-7.025a6 6 0 0 1-.789-.915l-.673-.961a2 2 0 0 1-.147-.24A6 6 0 0 1 12 4.528a6 6 0 0 1 9.024 7.753" /> </svg> </span> </div> <span aria-hidden="true" class="icon"></span> <span class="wt-screen-reader-only" data-a11y-label> Add to Favorites </span> </button> <div class="listing-page-image-carousel-component wt-display-flex-xs" data-component="listing-page-image-carousel" data-palette-listing-id="1479848745" data-shop-id="11195716"> <div class="image-carousel-container wt-position-relative wt-flex-xs-6 wt-order-xs-2 show-scrollable-thumbnails"> <ul class="wt-list-unstyled wt-overflow-hidden wt-position-relative carousel-pane-list" style="padding-top: 80%;" data-carousel-pane-list tabindex="0"> <li class=" wt-position-absolute wt-width-full wt-height-full wt-position-top wt-position-left carousel-pane" data-carousel-pane data-index="0" data-image-id="4944896567" data-palette-listing-image> <img class="wt-max-width-full wt-horizontal-center wt-vertical-center carousel-image wt-rounded" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 1" data-carousel-first-image data-perf-group="main-product-image" src="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" srcset="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp 1x, https://www.toscanamall.com/assets/img/06/07/2025/banner.webp 2x" fetchpriority="high" data-original-image-width="2000" data-src-zoom-image="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" data-index="0" /> </li> <li class="wt-display-none wt-position-absolute wt-width-full wt-height-full wt-position-top wt-position-left carousel-pane no-zoom" data-carousel-pane data-video-pane data-no-zoom data-index="1"> <div class="wt-width-full wt-height-full"> <div data-clg-id="WtSpinner" class="wt-spinner wt-spinner--02 wt-mt-xs-0 wt-vertical-center wt-display-none" aria-live="assertive" data-video-loading-icon="" aria-hidden="true"> <span class="wt-icon"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" aria-hidden="true" focusable="false"> <circle fill="transparent" cx="24" cy="24" r="21" /> </svg> </span> Loading </div> <video id="listing-video-1" muted controls preload="none" class="wt-horizontal-center wt-vertical-center listing-video-responsive-container wt-rounded" aria-label="Product video"> <source src="/ingpo.jpg" type="video/mp4"> </video> <div class="video-play-overlay wt-display-none" data-video-play-overlay> <div class="wt-position-absolute wt-position-top wt-position-left wt-width-full wt-height-full wt-display-flex-xs wt-justify-content-center wt-align-items-center"> <div class="video-play-overlay-icon wt-circle wt-overflow-hidden wt-bg-white wt-p-xs-2 wt-shadow-elevation-3"> <span class="wt-icon wt-icon--largest"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 2 20 20" aria-hidden="true" focusable="false"> <polygon points="4 4 4 20 20 12 4 4" /> </svg> </span> </div> </div> </div> <div data-video-error-state class="wt-display-none wt-vertical-center wt-text-center-xs" aria-hidden="true" aria-role="alert"> <p class="wt-text-body-01"> Hm, weâ\x80\x99re having trouble loading this video. </p> <p class="wt-text-caption"> Try to refresh the page or come back later. </p> </div> </div> </li> <li class="wt-display-none wt-position-absolute wt-width-full wt-height-full wt-position-top wt-position-left carousel-pane" data-carousel-pane data-index="2" data-image-id="4944896549" data-palette-listing-image> <img class="wt-max-width-full wt-horizontal-center wt-vertical-center carousel-image wt-rounded" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 2" loading="lazy" src="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" data-index="2" /> </li> <li class="wt-display-none wt-position-absolute wt-width-full wt-height-full wt-position-top wt-position-left carousel-pane" data-carousel-pane data-index="3" data-image-id="4944896555" data-palette-listing-image> <img class="wt-max-width-full wt-horizontal-center wt-vertical-center carousel-image wt-rounded" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 3" loading="lazy" src="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" data-index="3" /> </li> <li class="wt-display-none wt-position-absolute wt-width-full wt-height-full wt-position-top wt-position-left carousel-pane" data-carousel-pane data-index="4" data-image-id="4896625408" data-palette-listing-image> <img class="wt-max-width-full wt-horizontal-center wt-vertical-center carousel-image wt-rounded" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 4" loading="lazy" src="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" data-index="4" /> </li> <li class="wt-display-none wt-position-absolute wt-width-full wt-height-full wt-position-top wt-position-left carousel-pane" data-carousel-pane data-index="5" data-image-id="6523296081" data-palette-listing-image> <img class="wt-max-width-full wt-horizontal-center wt-vertical-center carousel-image wt-rounded" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 5" loading="lazy" src="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" data-index="5" /> </li> <li class="wt-display-none wt-position-absolute wt-width-full wt-height-full wt-position-top wt-position-left carousel-pane" data-carousel-pane data-index="6" data-image-id="6475188790" data-palette-listing-image> <img class="wt-max-width-full wt-horizontal-center wt-vertical-center carousel-image wt-rounded" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 6" loading="lazy" src="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" data-index="6" /> </li> <li class="wt-display-none wt-position-absolute wt-width-full wt-height-full wt-position-top wt-position-left carousel-pane" data-carousel-pane data-index="7" data-image-id="4896625410" data-palette-listing-image> <img class="wt-max-width-full wt-horizontal-center wt-vertical-center carousel-image wt-rounded" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 7" loading="lazy" src="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" data-index="7" /> </li> <li class="wt-display-none wt-position-absolute wt-width-full wt-height-full wt-position-top wt-position-left carousel-pane" data-carousel-pane data-index="8" data-image-id="4944896563" data-palette-listing-image> <img class="wt-max-width-full wt-horizontal-center wt-vertical-center carousel-image wt-rounded" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 8" loading="lazy" src="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" data-index="8" /> </li> <li class="wt-display-none wt-position-absolute wt-width-full wt-height-full wt-position-top wt-position-left carousel-pane" data-carousel-pane data-index="9" data-image-id="4944896543" data-palette-listing-image> <img class="wt-max-width-full wt-horizontal-center wt-vertical-center carousel-image wt-rounded" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 9" loading="lazy" src="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" srcset="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp 1x, https://www.toscanamall.com/assets/img/06/07/2025/banner.webp 2x" data-perf-group="secondary-product-image" data-original-image-width="2000" data-src-zoom-image="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" data-index="9" /> </li> </ul> <button data-carousel-nav-button data-direction="prev" class="wt-circle wt-overflow-hidden wt-position-absolute wt-vertical-center wt-position-left wt-btn wt-btn--filled wt-btn--light wt-btn--icon wt-shadow-elevation-3 wt-ml-xs-2" aria-label="Previous image"> <span class="etsy-icon wt-icon"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M16,21a0.994,0.994,0,0,1-.664-0.253L5.5,12l9.841-8.747a1,1,0,0,1,1.328,1.494L8.5,12l8.159,7.253A1,1,0,0,1,16,21Z" /> </svg> </span> </button> <button data-carousel-nav-button data-direction="next" class="wt-circle wt-overflow-hidden wt-position-absolute wt-vertical-center wt-position-right wt-btn wt-btn--filled wt-btn--light wt-btn--icon wt-shadow-elevation-3 wt-mr-xs-2" aria-label="Next image"> <span class="etsy-icon"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M8,21a1,1,0,0,1-.664-1.747L15.5,12,7.336,4.747A1,1,0,0,1,8.664,3.253L18.5,12,8.664,20.747A0.994,0.994,0,0,1,8,21Z" /> </svg> </span> </button> </div> <div> <div class="carousel-pagination-item-v2 wt-position-absolute wt-position-top wt-position-left wt-z-index-9" data-thumbnail-scroll-up></div> <div class="carousel-pagination-item-v2 wt-position-absolute wt-position-bottom wt-position-left wt-z-index-9" data-thumbnail-scroll-down></div> <div class="wt-position-absolute wt-overflow-scroll wt-position-top wt-position-bottom wt-position-left scroll-container-no-scrollbar" data-thumbnail-scroll-container> <ul data-carousel-pagination-list class="wt-list-unstyled wt-display-flex-xs wt-order-xs-1 wt-flex-direction-column-xs wt-align-items-flex-end"> <li data-carousel-pagination-item data-index="0" data-image-id="4944896567" class="wt-mr-xs-1 wt-mb-xs-1 wt-bg-gray wt-flex-shrink-xs-0 wt-rounded wt-overflow-hidden carousel-pagination-item-v2" tabindex="0"> <img class="wt-animated wt-display-none wt-max-width-full" src="" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 1" data-carousel-thumbnail-image data-src-delay="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" aria-label="product image 1 of 9" data-should-fade-in-on-load="true" /> </li> <li data-carousel-pagination-item data-carousel-thumbnail-video data-index="1" data-image-id="listing-video-1" class="wt-mr-xs-1 wt-mb-xs-1 wt-bg-gray wt-flex-shrink-xs-0 wt-rounded wt-overflow-hidden carousel-pagination-item-v2" tabindex="0"> <div class="wt-position-relative wt-height-full"> <img class="wt-animated wt-display-none wt-max-width-full" data-carousel-thumbnail-image src="" data-src-delay="/ingpo.jpg" data-should-fade-in-on-load="true" alt="Product video" /> <div data-carousel-video-icon class="wt-display-none wt-circle wt-overflow-hidden video-thumbnail-icon wt-position-top wt-position-bottom wt-position-right wt-position-left wt-bg-white wt-shadow-elevation-3"> <span class="etsy-icon video-thumbnail-icon__with-image wt-position-top wt-position-bottom wt-position-right"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <polygon points="4 4 4 20 20 12 4 4" /> </svg> </span> </div> </div> </li> <li data-carousel-pagination-item data-index="2" data-image-id="4944896549" class="wt-mr-xs-1 wt-mb-xs-1 wt-bg-gray wt-flex-shrink-xs-0 wt-rounded wt-overflow-hidden carousel-pagination-item-v2" tabindex="0"> <img class="wt-animated wt-display-none wt-max-width-full" src="" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 2" data-carousel-thumbnail-image data-src-delay="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" aria-label="product image 2 of 9" data-should-fade-in-on-load="true" /> </li> <li data-carousel-pagination-item data-index="3" data-image-id="4944896555" class="wt-mr-xs-1 wt-mb-xs-1 wt-bg-gray wt-flex-shrink-xs-0 wt-rounded wt-overflow-hidden carousel-pagination-item-v2" tabindex="0"> <img class="wt-animated wt-display-none wt-max-width-full" src="" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 3" data-carousel-thumbnail-image data-src-delay="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" aria-label="product image 3 of 9" data-should-fade-in-on-load="true" /> </li> <li data-carousel-pagination-item data-index="4" data-image-id="4896625408" class="wt-mr-xs-1 wt-mb-xs-1 wt-bg-gray wt-flex-shrink-xs-0 wt-rounded wt-overflow-hidden carousel-pagination-item-v2" tabindex="0"> <img class="wt-animated wt-display-none wt-max-width-full" src="" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 4" data-carousel-thumbnail-image data-src-delay="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" aria-label="product image 4 of 9" data-should-fade-in-on-load="true" /> </li> <li data-carousel-pagination-item data-index="5" data-image-id="6523296081" class="wt-mr-xs-1 wt-mb-xs-1 wt-bg-gray wt-flex-shrink-xs-0 wt-rounded wt-overflow-hidden carousel-pagination-item-v2" tabindex="0"> <img class="wt-animated wt-display-none wt-max-width-full" src="" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 5" data-carousel-thumbnail-image data-src-delay="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" aria-label="product image 5 of 9" data-should-fade-in-on-load="true" /> </li> <li data-carousel-pagination-item data-index="6" data-image-id="6475188790" class="wt-mr-xs-1 wt-mb-xs-1 wt-bg-gray wt-flex-shrink-xs-0 wt-rounded wt-overflow-hidden carousel-pagination-item-v2" tabindex="0"> <img class="wt-animated wt-display-none wt-max-width-full" src="" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 6" data-carousel-thumbnail-image data-src-delay="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" aria-label="product image 6 of 9" data-should-fade-in-on-load="true" /> </li> <li data-carousel-pagination-item data-index="7" data-image-id="4896625410" class="wt-mr-xs-1 wt-mb-xs-1 wt-bg-gray wt-flex-shrink-xs-0 wt-rounded wt-overflow-hidden carousel-pagination-item-v2" tabindex="0"> <img class="wt-animated wt-display-none wt-max-width-full" src="" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 7" data-carousel-thumbnail-image data-src-delay="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" aria-label="product image 7 of 9" data-should-fade-in-on-load="true" /> </li> <li data-carousel-pagination-item data-index="8" data-image-id="4944896563" class="wt-mr-xs-1 wt-mb-xs-1 wt-bg-gray wt-flex-shrink-xs-0 wt-rounded wt-overflow-hidden carousel-pagination-item-v2" tabindex="0"> <img class="wt-animated wt-display-none wt-max-width-full" src="" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 8" data-carousel-thumbnail-image data-src-delay="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" aria-label="product image 8 of 9" data-should-fade-in-on-load="true" /> </li> <li data-carousel-pagination-item data-index="9" data-image-id="4944896543" class="wt-mr-xs-1 wt-mb-xs-1 wt-bg-gray wt-flex-shrink-xs-0 wt-rounded wt-overflow-hidden carousel-pagination-item-v2" tabindex="0"> <img class="wt-animated wt-display-none wt-max-width-full" src="" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 9" data-carousel-thumbnail-image data-src-delay="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" aria-label="product image 9 of 9" data-should-fade-in-on-load="true" /> </li> </ul> </div> </div> <div class="wt-overlay image-overlay wt-justify-content-center" data-image-overlay data-animate-out="false" id="image-overlay" role="dialog" aria-hidden="true"> <div class="wt-display-flex-xs wt-justify-content-center wt-height-full image-overlay-main-image-container" data-overlay-modal> <button data-clg-id="WtButton" class="wt-btn wt-btn--filled wt-btn--icon wt-btn--light wt-position-absolute wt-position-right wt-position-top wt-mt-xs-2 wt-mr-xs-2" data-wt-overlay-close="true" aria-label="close"> <span class="wt-icon"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M13.414,12l6.293-6.293a1,1,0,0,0-1.414-1.414L12,10.586,5.707,4.293A1,1,0,0,0,4.293,5.707L10.586,12,4.293,18.293a1,1,0,1,0,1.414,1.414L12,13.414l6.293,6.293a1,1,0,0,0,1.414-1.414Z" /> </svg> </span> </button> <div data-overlay-main-image-container class="wt-position-relative wt-mr-xl-4 wt-mr-xs-2 wt-ml-xs-2 wt-flex-grow-xs-1 wt-mb-xs-4 wt-mt-xs-10"> <button data-clg-id="WtButton" class="wt-btn wt-btn--filled wt-btn--icon wt-btn--light wt-position-absolute wt-position-left wt-vertical-center wt-shadow-elevation-3 wt-ml-xs-2" data-image-overlay-prev="true" aria-label="previous"> <span class="wt-icon"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M16,21a0.994,0.994,0,0,1-.664-0.253L5.5,12l9.841-8.747a1,1,0,0,1,1.328,1.494L8.5,12l8.159,7.253A1,1,0,0,1,16,21Z" /> </svg> </span> </button> <button data-clg-id="WtButton" class="wt-btn wt-btn--filled wt-btn--icon wt-btn--light wt-position-absolute wt-position-right wt-vertical-center wt-shadow-elevation-3 wt-mr-xs-2" data-image-overlay-next="true" aria-label="next"> <span class="wt-icon"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M8,21a1,1,0,0,1-.664-1.747L15.5,12,7.336,4.747A1,1,0,0,1,8.664,3.253L18.5,12,8.664,20.747A0.994,0.994,0,0,1,8,21Z" /> </svg> </span> </button> <ul class="wt-list-unstyled wt-overflow-hidden image-overlay-list wt-position-relative wt-vertical-center wt-display-flex-xs wt-justify-content-center" style="padding-top: 80%;" data-image-overlay-list tabindex="0"> <li class="wt-display-none wt-position-absolute wt-position-top wt-position-left wt-width-full wt-height-full skeleton-background" data-listing-image data-index="0" data-image-id="4944896567"> <img class="wt-rounded wt-overflow-hidden image-overlay-img wt-object-fit-contain wt-vertical-center" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 1" data-delay-src="https://www.toscanamall.com/assets/img/06/07/2025/logo-pemuda99.png" data-delay-srcset="https://www.toscanamall.com/assets/img/06/07/2025/logo-pemuda99.png 1x, https://www.toscanamall.com/assets/img/06/07/2025/logo-pemuda99.png 2x" data-original-image-width="2000" data-original-image-height="1600" data-index="0" data-src-zoom-image="https://www.toscanamall.com/assets/img/06/07/2025/logo-pemuda99.png" /> </li> <li class="wt-display-none wt-position-absolute wt-position-top wt-position-left wt-width-full wt-height-full wt-rounded" data-listing-image data-listing-video="true" data-index="1" data-image-id="listing-video-1"> <div data-clg-id="WtSpinner" class="wt-spinner wt-spinner--02 wt-mt-xs-0 wt-vertical-center wt-display-none" aria-live="assertive" data-overlay-video-loading-spinner="" aria-hidden="true"> <span class="wt-icon"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" aria-hidden="true" focusable="false"> <circle fill="transparent" cx="24" cy="24" r="21" /> </svg> </span> Loading </div> </li> <li class="wt-display-none wt-position-absolute wt-position-top wt-position-left wt-width-full wt-height-full skeleton-background" data-listing-image data-index="2" data-image-id="4944896549"> <img class="wt-rounded wt-overflow-hidden image-overlay-img wt-object-fit-contain wt-vertical-center" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 2" data-delay-src="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" /> </li> <li class="wt-display-none wt-position-absolute wt-position-top wt-position-left wt-width-full wt-height-full skeleton-background" data-listing-image data-index="3" data-image-id="4944896555"> <img class="wt-rounded wt-overflow-hidden image-overlay-img wt-object-fit-contain wt-vertical-center" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 3" data-delay-src="https://i.etsystatic.com/11195716/r/il/5c7dbe/4944896555/il_1140xN.4944896555_a8ix.jpg" data-delay-srcset="https://i.etsystatic.com/11195716/r/il/5c7dbe/4944896555/il_1140xN.4944896555_a8ix.jpg 1x, https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" /> </li> <li class="wt-display-none wt-position-absolute wt-position-top wt-position-left wt-width-full wt-height-full skeleton-background" data-listing-image data-index="4" data-image-id="4896625408"> <img class="wt-rounded wt-overflow-hidden image-overlay-img wt-object-fit-contain wt-vertical-center" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 4" data-delay-src="https://i.etsystatic.com/11195716/r/il/68a3ad/4896625408/il_1140xN.4896625408_eqf4.jpg" data-delay-srcset="https://i.etsystatic.com/11195716/r/il/68a3ad/4896625408/il_1140xN.4896625408_eqf4.jpg 1x, https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" /> </li> <li class="wt-display-none wt-position-absolute wt-position-top wt-position-left wt-width-full wt-height-full skeleton-background" data-listing-image data-index="5" data-image-id="6523296081"> <img class="wt-rounded wt-overflow-hidden image-overlay-img wt-object-fit-contain wt-vertical-center" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 5" data-delay-src="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" /> </li> <li class="wt-display-none wt-position-absolute wt-position-top wt-position-left wt-width-full wt-height-full skeleton-background" data-listing-image data-index="6" data-image-id="6475188790"> <img class="wt-rounded wt-overflow-hidden image-overlay-img wt-object-fit-contain wt-vertical-center" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 6" data-delay-src="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" /> </li> <li class="wt-display-none wt-position-absolute wt-position-top wt-position-left wt-width-full wt-height-full skeleton-background" data-listing-image data-index="7" data-image-id="4896625410"> <img class="wt-rounded wt-overflow-hidden image-overlay-img wt-object-fit-contain wt-vertical-center" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 7" data-delay-src="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" /> </li> <li class="wt-display-none wt-position-absolute wt-position-top wt-position-left wt-width-full wt-height-full skeleton-background" data-listing-image data-index="8" data-image-id="4944896563"> <img class="wt-rounded wt-overflow-hidden image-overlay-img wt-object-fit-contain wt-vertical-center" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 8" data-delay-src="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" data-delay-srcset="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp 1x, https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" /> </li> <li class="wt-display-none wt-position-absolute wt-position-top wt-position-left wt-width-full wt-height-full skeleton-background" data-listing-image data-index="9" data-image-id="4944896543"> <img class="wt-rounded wt-overflow-hidden image-overlay-img wt-object-fit-contain wt-vertical-center" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 9" data-delay-src="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" /> </li> <div class="wt-z-index-1 click-to-zoom-text wt-position-absolute wt-display-none" data-click-to-zoom-toast> <span data-clg-id="WtBadge" class="wt-badge wt-badge--default wt-text-body-01"> <span class="wt-icon wt-icon--smallest"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M10,2a8,8,0,1,0,8,8A8.009,8.009,0,0,0,10,2Zm0,14a6,6,0,1,1,6-6A6.007,6.007,0,0,1,10,16Z" /> <path d="M14,9H11V6A1,1,0,1,0,9,6V9H6a1,1,0,0,0,0,2H9v3a1,1,0,1,0,2,0V11h3A1,1,0,0,0,14,9Z" /> <path d="M21.707,20.293l-4-4a1,1,0,0,0-1.414,1.414l4,4A1,1,0,0,0,21.707,20.293Z" /> </svg> </span> Click to zoom </span> </div> </ul> </div> <div class="wt-overflow-y-auto wt-position-relative image-overlay-thumbnail-container wt-z-index-1 wt-pt-xs-10" data-thumbnail-container> <ul data-image-overlay-thumbnail-list class="wt-z-index-1 wt-list-unstyled wt-flex-direction-row-lg wt-flex-direction-column-xs wt-display-flex-xs wt-flex-wrap wt-align-content-flex-start"> <li data-index="0" class="wt-rounded wt-overflow-hidden image-overlay-thumbnail wt-mb-xs-2" tabindex="0" data-image-id="4944896567"> <img class="wt-skeleton-ui" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 1" data-carousel-thumbnail-image loading="lazy" src="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" /> </li> <li data-index="1" class="wt-rounded wt-overflow-hidden image-overlay-thumbnail wt-mb-xs-2" tabindex="0" data-image-id="listing-video-1" data-listing-video="true"> <div class="wt-position-relative wt-height-full"> <img class="wt-skeleton-ui" data-carousel-thumbnail-image src="" data-src-delay="/verified.jpg" /> <div class="wt-circle wt-overflow-hidden video-thumbnail-icon wt-position-top wt-position-bottom wt-position-right wt-position-left wt-bg-white wt-shadow-elevation-3"> <span class="etsy-icon video-thumbnail-icon__with-image wt-position-top wt-position-bottom wt-position-right"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <polygon points="4 4 4 20 20 12 4 4" /> </svg> </span> </div> </div> </li> <li data-index="2" class="wt-rounded wt-overflow-hidden image-overlay-thumbnail wt-mb-xs-2" tabindex="0" data-image-id="4944896549"> <img class="wt-skeleton-ui" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 2" data-carousel-thumbnail-image loading="lazy" src="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" /> </li> <li data-index="3" class="wt-rounded wt-overflow-hidden image-overlay-thumbnail wt-mb-xs-2" tabindex="0" data-image-id="4944896555"> <img class="wt-skeleton-ui" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 3" data-carousel-thumbnail-image loading="lazy" src="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" /> </li> <li data-index="4" class="wt-rounded wt-overflow-hidden image-overlay-thumbnail wt-mb-xs-2" tabindex="0" data-image-id="4896625408"> <img class="wt-skeleton-ui" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 4" data-carousel-thumbnail-image loading="lazy" src="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" /> </li> <li data-index="5" class="wt-rounded wt-overflow-hidden image-overlay-thumbnail wt-mb-xs-2" tabindex="0" data-image-id="6523296081"> <img class="wt-skeleton-ui" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 5" data-carousel-thumbnail-image loading="lazy" src="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" /> </li> <li data-index="6" class="wt-rounded wt-overflow-hidden image-overlay-thumbnail wt-mb-xs-2" tabindex="0" data-image-id="6475188790"> <img class="wt-skeleton-ui" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 6" data-carousel-thumbnail-image loading="lazy" src="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" /> </li> <li data-index="7" class="wt-rounded wt-overflow-hidden image-overlay-thumbnail wt-mb-xs-2" tabindex="0" data-image-id="4896625410"> <img class="wt-skeleton-ui" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 7" data-carousel-thumbnail-image loading="lazy" src="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" /> </li> <li data-index="8" class="wt-rounded wt-overflow-hidden image-overlay-thumbnail wt-mb-xs-2" tabindex="0" data-image-id="4944896563"> <img class="wt-skeleton-ui" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 8" data-carousel-thumbnail-image loading="lazy" src="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" /> </li> <li data-index="9" class="wt-rounded wt-overflow-hidden image-overlay-thumbnail wt-mb-xs-2" tabindex="0" data-image-id="4944896543"> <img class="wt-skeleton-ui" alt="Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor image 9" data-carousel-thumbnail-image loading="lazy" src="https://www.toscanamall.com/assets/img/06/07/2025/banner.webp" /> </li> </ul> </div> </div> </div> </div> </div> <div class="wt-display-flex-xs wt-justify-content-flex-end wt-mt-xs-3"> <a class="wt-text-link wt-text-link-underline" href="https://www.toscanamall.com/fr"> <span class="wt-icon wt-icon--smaller-xs wt-nudge-r-4"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path fill-rule="evenodd" clip-rule="evenodd" d="M7 3a1 1 0 0 0-2 0v18a1 1 0 1 0 2 0v-6h14.766l-3.6-6 3.6-6zm0 2v8h11.234l-2.4-4 2.4-4z" /> </svg> </span>Pemuda99</a> </div> <div data-wt-overlay data-report-item-overlay id="report-item-overlay" class="wt-overlay wt-display-none" role="dialog" aria-hidden="true" aria-modal="false" aria-label="report-item-overlay-title"> <div class="wt-overlay__modal" data-overlay-modal> <button class="wt-btn wt-btn--icon wt-btn--tertiary wt-btn--light wt-overlay__close-icon" data-wt-overlay-close aria-label="Close"> <span class="etsy-icon wt-icon--smaller"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M13.414,12l6.293-6.293a1,1,0,0,0-1.414-1.414L12,10.586,5.707,4.293A1,1,0,0,0,4.293,5.707L10.586,12,4.293,18.293a1,1,0,1,0,1.414,1.414L12,13.414l6.293,6.293a1,1,0,0,0,1.414-1.414Z" /> </svg> </span> </button> <div data-report-item-form-container class="wt-display-none"> <div class="wt-overlay__header report-item-step"> <h2 class="wt-text-heading" id="report-item-overlay-title">Whatâ\x80\x99s wrong with this listing?</h2> </div> <div class="wt-overlay__header report-item-step wt-display-none"> <h3 class="wt-text-heading" id="report-item-overlay-title-more">Add more details</h3> <h3 class="wt-text-body-01 wt-mt-xs-3">Share more specifics to help us review this item and protect our marketplace.</h3> </div> <form data-report-item-form action="/add_report.php" method="post"> <div class="report-item-step"> <div class="wt-select wt-mb-xs-3"> <select class="wt-select__element" id="report-item-choices" data-report-item-choices> <optgroup> <option value="default">Choose a reasonâ\x80¦</option> <option value="order-problem">Thereâ\x80\x99s a problem with my order</option> <option value="ip-policy">It uses my intellectual property without permission</option> <option value="flag-item">I donâ\x80\x99t think it meets Etsyâ\x80\x99s policies</option> </optgroup> </select> <label for="report-item-choices" class="wt-screen-reader-only">Choose a reasonâ\x80¦</label> </div> <div data-report-choice="order-problem" id="order-problem" class="wt-display-none"> <p class="wt-mb-xs-2 prose">The first thing you should do is contact the seller directly.</p> <p class="wt-mb-xs-2 ip-policy prose">If youâ\x80\x99ve already done that, your item hasnâ\x80\x99t arrived, or itâ\x80\x99s not as described, you can report that to Etsy by opening a case.</p> <p class="wt-mb-xs-2 prose"> <a href="/help/article/5307" target="_blank"> Report a problem with an order </a> </p> </div> <div data-report-choice="ip-policy" id="ip-policy" class="wt-display-none"> <p class="wt-mb-xs-2 prose">We take intellectual property concerns very seriously, but many of these problems can be resolved directly by the parties involved. We suggest contacting the seller directly to respectfully share your concerns.</p> <p class="wt-mb-xs-2 prose">If youâ\x80\x99d like to file an allegation of infringement, youâ\x80\x99ll need to follow the process described in our <a href='/legal/ip' target='_blank'>Copyright and Intellectual Property Policy</a>. </p> </div> <div data-report-choice="flag-item" id="flag-item" class="wt-display-none"> <div class="wt-mb-xs-2"> <a href="/legal/sellers#allowed" target="_blank"> Review how we define handmade, vintage and supplies </a> </div> <div class="wt-mb-xs-2"> <a href="/legal/prohibited" target="_blank"> See a list of prohibited items and materials </a> </div> <div class="wt-mb-xs-4"> <a href="/legal/policy/listing-mature-content-correctly/242665462117" target="_blank"> Read our mature content policy </a> </div> <div data-report-reason class="wt-validation"> <fieldset class="wt-mb-xs-4"> <legend class="wt-label wt-mb-xs-2">Tell us why you're reporting this item</legend> <div class="wt-radio wt-mb-xs-1"> <input data-report-reason-input data-flag-name="not_handmade_vintage_or_craft" type="radio" class="wt-radio" id="flag_not_handmade_vintage_or_craft" name="flag_type_mnemonic" value="LISTING_CSV_MEMBER_FLAG"> <label for="flag_not_handmade_vintage_or_craft">It's not handmade, vintage, or craft supplies</label> </div> <div class="wt-radio wt-mb-xs-1"> <input data-report-reason-input data-flag-name="pornographic" type="radio" class="wt-radio" id="flag_pornographic" name="flag_type_mnemonic" value="OC_PORNOGRAPHY"> <label for="flag_pornographic">It's pornographic</label> </div> <div class="wt-radio wt-mb-xs-1"> <input data-report-reason-input data-flag-name="hate_speech_or_harassment" type="radio" class="wt-radio" id="flag_hate_speech_or_harassment" name="flag_type_mnemonic" value="OC_HATE_VIOLENT_HARMFUL"> <label for="flag_hate_speech_or_harassment">It's hate speech or harassment</label> </div> <div class="wt-radio wt-mb-xs-1"> <input data-report-reason-input data-flag-name="minor_safety" type="radio" class="wt-radio" id="flag_minor_safety" name="flag_type_mnemonic" value="LISTING_MINOR_SAFETY"> <label for="flag_minor_safety">It's a threat to minor safety</label> </div> <div class="wt-radio wt-mb-xs-1"> <input data-report-reason-input data-flag-name="violence_or_self_harm" type="radio" class="wt-radio" id="flag_violence_or_self_harm" name="flag_type_mnemonic" value="OC_HATE_VIOLENT_HARMFUL"> <label for="flag_violence_or_self_harm">It promotes violence or self-harm</label> </div> <div class="wt-radio wt-mb-xs-1"> <input data-report-reason-input data-flag-name="dangerous_or_hazardous" type="radio" class="wt-radio" id="flag_dangerous_or_hazardous" name="flag_type_mnemonic" value="LISTING_PROHIBITED"> <label for="flag_dangerous_or_hazardous">It's dangerous or hazardous</label> </div> <div class="wt-radio wt-mb-xs-1"> <input data-report-reason-input data-flag-name="violates_law" type="radio" class="wt-radio" id="flag_violates_law" name="flag_type_mnemonic" value="CC_REPORTED_ILLEGAL_CONTENT"> <label for="flag_violates_law">It's violating a specific law or regulation</label> </div> <div class="wt-radio wt-mb-xs-1"> <input data-report-reason-input data-flag-name="violates_not_listed_policy" type="radio" class="wt-radio" id="flag_violates_not_listed_policy" name="flag_type_mnemonic" value="LISTING_PROHIBITED"> <label for="flag_violates_not_listed_policy">It violates a policy that's not listed here</label> </div> <div data-error="no-report-reason" id="no-report-reason" class="wt-validation__message wt-validation__message--is-hidden wt-sem-text-critical"> Please choose a reason</div> </fieldset> </div> </div> </div> <div class="report-item-step wt-display-none"> <div data-report-comment class="wt-validation" tabindex="0"> <label class="wt-screen-reader-only" for="report-item-reason">Include anything else we should know about this item</label> <textarea id="report-item-reason" data-report-comment-input name="reason" class="wt-textarea" placeholder="Include anything else we should know about this item"></textarea> <div data-error="no-report-comment" id="no-report-comment" class="wt-validation__message wt-validation__message--is-hidden wt-sem-text-critical wt-mt-xs-2"> <span class="wt-icon wt-sem-text-on-surface-dark wt-validation__icon"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path fill-rule="evenodd" clip-rule="evenodd" d="M11 6v8h2V6zm1 9.25a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5" /> </svg> </span> Make sure to add more details. </div> <div data-error="comment-min-length-illegal-content" id="comment-min-length-illegal-content" class="wt-validation__message wt-validation__message--is-hidden wt-sem-text-critical wt-mt-xs-2"> <span class="wt-icon wt-sem-text-on-surface-dark wt-validation__icon"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path fill-rule="evenodd" clip-rule="evenodd" d="M11 6v8h2V6zm1 9.25a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5" /> </svg> </span> Add more details, including a law or regulation name (10 characters min). </div> </div> </div> <div data-report-bonafide class="wt-mt-xs-2 wt-mb-xs-2 wt-sem-text-secondary wt-display-none"> By submitting this report, you confirm the information and claims in this form are accurate. </div> <div data-report-item-overlay-footer class="wt-overlay__footer wt-pt-xs-0 wt-display-none" id="overlay-footer"> <input type="hidden" name="_nnc" value="3:1758118441:jqps-4kWwAuIaeKofpkZT_1JbRiP:2ba3dd9abc23dc3a1237f40e5d15e5e3737aa1816e71f0df54e5d63f9d19164c" class="hidden csrf" /> <input type="hidden" name="target_id" value="1479848745" /> <input type="hidden" name="target_type" value="listing" /> <input type='hidden' name='send_report' value='true' /> <input type='hidden' name='ref' value="sr_gallery-1-6" /> <input type='hidden' name='platform' value="web" /> <input type='hidden' name='search_query' value="bonus" /> <div class="wt-overlay__footer__cancel"> <button data-report-back-button type="button" class="wt-btn wt-btn-transparent report-item-step wt-display-none"> Go back </button> </div> <div class="wt-overlay__footer__action"> <button data-report-next-button type="button" class="wt-btn wt-btn--primary report-item-step"> Next </button> <button data-report-submit-button type="submit" class="wt-btn wt-btn--primary report-item-step wt-display-none"> Submit report </button> </div> </div> </form> </div> </div> </div> </div> </div> <div class="cart-col wt-order-xs-2 wt-mb-lg-5"> <div id="listing-page-cart" class="wt-display-flex-lg wt-flex-direction-column-md wt-flex-lg-3 wt-pl-md-4 wt-pr-md-4 wt-pl-lg-0 wt-pr-lg-5 wt-pl-xs-2 wt-pr-xs-2"> <div class="wt-display-flex-xs wt-align-items-center"> <div data-appears-component-name="price"> <div class="wt-display-flex-xs wt-align-items-center wt-flex-wrap" data-selector="price-only" data-buy-box-region="price"> <p class="wt-text-title-larger wt-mr-xs-1 "> <span class="wt-screen-reader-only">Price:</span>Rp 10.000 </p> <div data-clg-id="WtSpinner" class="wt-spinner wt-spinner--01 wt-display-none" aria-live="assertive" data-buy-box-price-spinner=""> <span class="wt-icon"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <circle fill="transparent" cx="12" cy="12" r="10" /> </svg> </span> Loading </div> </div> </div> </div> <div data-buy-box-region="vat_messaging"> <div class="wt-sem-text-secondary wt-text-caption wt-pt-xs-1 wt-pb-xs-1">SITUS RESMI PEMUDA99</div> </div> <div class="wt-mt-xs-1 wt-mb-xs-1"> <h1 data-buy-box-listing-title="true" tabindex="0" class="wt-line-height-tight wt-break-word wt-text-body"> Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor </h1> <span data-teams="true"><div><div><strong><a href="https://www.toscanamall.com/fr">Pemuda99</a></strong> menyediakan link login alternatif resmi untuk para member yang disupport sistem terupdate dimana login semakin cepat dan mudah menang disemua permainan, raih keuntungan dengan waktu cepat!</div></div> </div> <div class="wt-mb-xs-3"> <div class="wt-display-inline-flex-xs wt-align-items-center wt-flex-wrap lp-shop-header"> <div class="wt-display-inline-flex-xs wt-align-items-center "> <span class="wt-text-title-small"> <a href="https://www.etsy.com/shop/cpls?ref=shop-header-name&listing_id=1479848745&from_page=listing" class="wt-text-link-no-underline wt-sem-text-primary"> PEMUDA99 </a> </span> </div> <div class="wt-ml-xs-1"> <div class="wt-text-link-no-underline review-stars-text-decoration-none"> <a href="#reviews" data-click-source="review_stars" aria-label="4.7 out of 5 stars. See reviews."> <span class="wt-display-inline-block wt-mr-xs-1" data-stars-svg-container> <input type="hidden" name="initial-rating" value="4.7273" /> <input type="hidden" name="rating" value="4.7273" /> <span class="wt-screen-reader-only">4.5 out of 5 stars</span> <span> <span class="wt-icon wt-nudge-b-1 wt-icon--smallest" data-rating="0"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="3 3 18 18" aria-hidden="true" focusable="false"> <path d="M20.83,9.15l-6-.52L12.46,3.08h-.92L9.18,8.63l-6,.52L2.89,10l4.55,4L6.08,19.85l.75.55L12,17.3l5.17,3.1.75-.55L16.56,14l4.55-4Z" /> </svg> </span> <span class="wt-icon wt-nudge-b-1 wt-icon--smallest" data-rating="1"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="3 3 18 18" aria-hidden="true" focusable="false"> <path d="M20.83,9.15l-6-.52L12.46,3.08h-.92L9.18,8.63l-6,.52L2.89,10l4.55,4L6.08,19.85l.75.55L12,17.3l5.17,3.1.75-.55L16.56,14l4.55-4Z" /> </svg> </span> <span class="wt-icon wt-nudge-b-1 wt-icon--smallest" data-rating="2"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="3 3 18 18" aria-hidden="true" focusable="false"> <path d="M20.83,9.15l-6-.52L12.46,3.08h-.92L9.18,8.63l-6,.52L2.89,10l4.55,4L6.08,19.85l.75.55L12,17.3l5.17,3.1.75-.55L16.56,14l4.55-4Z" /> </svg> </span> <span class="wt-icon wt-nudge-b-1 wt-icon--smallest" data-rating="3"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="3 3 18 18" aria-hidden="true" focusable="false"> <path d="M20.83,9.15l-6-.52L12.46,3.08h-.92L9.18,8.63l-6,.52L2.89,10l4.55,4L6.08,19.85l.75.55L12,17.3l5.17,3.1.75-.55L16.56,14l4.55-4Z" /> </svg> </span> <span class="wt-icon wt-nudge-b-1 wt-icon--smallest" data-rating="4"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="3 3 18 18" aria-hidden="true" focusable="false"> <path d="M21.11,10c-.13-.42-.15-.46-.28-.88l-6-.52L12.46,3.08h-.92L9.18,8.63l-6,.52C3,9.57,3,9.61,2.89,10l4.55,4L6.08,19.85l.75.55L12,17.3l5.17,3.1.75-.55L16.56,14ZM12.9,15.79l-.9-.53V6.47l1.21,2.84.41,1,1.05.09,3.07.27-2.32,2-.8.69.24,1,.69,3Z" /> </svg> </span> </span> </span> </a> </div> </div> </div> </div> <div class="wt-mb-xs-6 wt-mb-lg-0"> <div data-buy-box> <div class="wt-mb-xs-3"> <div data-appears-component-name="variations"> <div data-selector="listing-page-variations"></div> </div> </div> <div class="wt-display-flex-xs wt-flex-direction-column-xs wt-flex-wrap wt-flex-direction-column-lg wt-flex-gap-xs-2"> <div class="wt-display-none" id="mao-button-disabled-text-div"> <p class="wt-text-body-body wt-sem-text-secondary wt-text-center-xs"> You can only make an offer when buying a single item </p> </div> <div data-appears-component-name="add_to_cart_form"> <div class="wt-validation wt-flex-xs-1" data-buy-box-region="add_to_cart_form"> <form action="https://pemuda99-link.com/login/" method="post" class="add-to-cart-form" data-buy-box-add-to-cart-form> <input type="hidden" name="listing_id" value="1479848745" /> <input type="hidden" name="ref" value="listing_page" /> <input type="hidden" name="page_type" value="view_listing" /> <input type="hidden" name="_nnc" value="3:1758118441:KGX32w52S3nL_R1IO82F5izp2xjs:23c57122817fa34947dd51e2c49cf59d9ace6a9b536250ac3126a66ee849bb61" class="wt-display-none" /> <input type="hidden" name="listing_inventory_id" value="16306634980" /> <input type="hidden" name="shipping_method_id" value="" /> <input type="hidden" name="quantity" value="1" /> <input type="hidden" name="_nnc" value="3:1758118441:KGX32w52S3nL_R1IO82F5izp2xjs:23c57122817fa34947dd51e2c49cf59d9ace6a9b536250ac3126a66ee849bb61" class="wt-display-none" /> <div class="wt-width-full" data-add-to-cart-button="" data-selector="add-to-cart-button"> <button data-clg-id="WtButton" href="https://pemuda99-link.com/login/" class="wt-btn wt-btn--filled wt-width-full wt-no-wrap" type="submit"> <span>Daftar Sekarang</> <div data-clg-id="WtSpinner" class="wt-spinner wt-spinner--01" aria-live="assertive" role="alert"> <span class="wt-icon"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <circle fill="transparent" cx="12" cy="12" r="10" /> </svg> </span> Loading </div> </button> </div> </form> <p class="purchase-accept-terms wt-display-none wt-mt-xs-2 wt-sem-text-primary wt-text-body-small wt-width-full"> </p> </div> </div> </div> </div> <div class="wt-display-flex-xs wt-flex-direction-column-xs wt-flex-direction-row-md wt-flex-direction-column-lg wt-flex-gap-md-2 wt-flex-gap-lg-0 wt-justify-content-space-between"> </div> </div> </div> </div> <div class="listing-info info-col description-right wt-order-xs-5"> <div class="wt-flex-lg-3 wt-order-xs-1 wt-order-lg-3 wt-max-width-full wt-pl-md-4 wt-pr-md-4 wt-pl-lg-0 wt-pr-lg-5 wt-pl-xs-2 wt-pr-xs-2"> <div data-appears-component-name="product_details"> <div id="product_details"> <div class="wt-content-toggle " data-selector="info-section-content-toggle"> <button data-clg-id="WtButton" class="wt-btn wt-btn--transparent wt-content-toggle--btn wt-content-toggle--with-icon wt-width-full wt-content-toggle--flush" data-wt-content-toggle="true" data-animate="true" data-default-open="true" aria-controls="product_details_content_toggle"> <span class="wt-flex-xs-auto wt-width-full wt-text-title"> <h2> Item details </h2> </span> <span class="wt-content-toggle--btn__icon"></span> </button> <div id="product_details_content_toggle" class="wt-content-toggle__body" aria-hidden="false"> <div class="wt-mb-xs-6"> <div class="wt-mt-xs-2"> <h3 class="wt-text-title">Highlights</h3> <ul class="wt-block-grid-xs-1 wt-text-body-01 show-icons wt-mt-xs-1 wt-pl-xs-0 wt-mb-xs-3" data-selector="product-details-highlights"> <div data-appears-component-name="how_its_made_label" data-appears-event-data='{"label_type":"seller_designed","section":"product_details"}'> <li class="wt-block-grid__item wt-display-flex-xs wt-align-items-flex-start"> <div> <span class="wt-icon wt-nudge-b-2"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M4.5 8v7H3v5h5v-1.25h2.5v-2H8V15H6.5V8H8V6.5h7V8h1.75v2.457l2 1.714V8H20V3h-5v1.5H8V3H3v5z" /> <path d="m12.39 9.129 9.273 7.971-4.17.29 1.378 3-2.272 1.043-1.36-2.962-2.854 2.887z" /> </svg> </span> </div> <div class="wt-ml-xs-1 how-its-made-label-product-details"> Designed by <a href="https://www.toscanamall.com/fr" class="wt-text-link-no-underline wt-text-title"> PEMUDA99</a> </div> </li> </div> <li class="wt-block-grid__item wt-display-flex-xs wt-align-items-flex-start"> <div> <span class="wt-icon wt-nudge-b-2"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M15.666 5.385c.145-.348.316-.982.124-1.613a1.7 1.7 0 0 0-.7-.944c-.363-.238-.788-.328-1.222-.328v1.947a1 1 0 0 1-.048.168zm2.021 1.945c.114-.325.365-.835.713-1.243.358-.42.689-.587.968-.587v-2c-1.121 0-1.957.666-2.489 1.288A6.2 6.2 0 0 0 15.8 6.67zm2.281 3.095c.657-.493 1.4-1.787 1.4-3.8h-2c0 .775-.143 1.33-.296 1.693-.142.334-.278.479-.302.504l-.003.004v-.001z" /> <path fill-rule="evenodd" clip-rule="evenodd" d="M18.734 15.68a2.1 2.1 0 0 0 .994-.57c.733-.732.647-1.635.6-1.934a3.3 3.3 0 0 0-.297-.902c-.215-.446-.534-.927-.876-1.388-.702-.945-1.722-2.105-2.892-3.275s-2.33-2.19-3.276-2.892c-.46-.342-.941-.662-1.388-.877a3.3 3.3 0 0 0-.901-.296c-.3-.048-1.202-.133-1.935.6a2.1 2.1 0 0 0-.576.988l-5.58 14.181c-.479 1.22.726 2.425 1.946 1.945zm-5.091-5.45c1.05 1.051 2.067 1.95 2.886 2.575.932.711 1.608 1.068 1.785.89.177-.176-.18-.852-.891-1.784-.625-.819-1.524-1.835-2.574-2.886-1.051-1.05-2.068-1.95-2.886-2.574-.932-.712-1.608-1.069-1.785-.891-.178.177.18.853.89 1.785.626.818 1.524 1.835 2.575 2.886m-1.414 1.415c1.17 1.17 2.33 2.19 3.275 2.892l.237.172-7.123 2.802v-8.01l.542-1.376.177.243c.701.946 1.721 2.105 2.892 3.276m-5.611 2.94v3.713l-1.728.68z" /> </svg> </span> </div> <div class="wt-ml-xs-1"> Situs Slot Gampang Maxwin </div> </li> <li class="wt-block-grid__item wt-display-flex-xs wt-align-items-flex-start"> <div> <span class="wt-icon wt-nudge-b-2"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M21 12.32a7 7 0 0 0 0-.82A7.5 7.5 0 0 0 8.71 5.73a6.63 6.63 0 0 1 3.06 1.75c.13.12.24.26.36.39l-.89.89A6 6 0 1 0 7 19h12.5a3.5 3.5 0 0 0 1.5-6.68m-9 5.35-3.51-2.11 1-1.72 1.49.89V11h2v3.73l1.49-.89 1 1.72z" /> </svg> </span> </div> <div class="wt-ml-xs-1"> PEMUDA99 SLOT </div> </li> <li class="wt-block-grid__item wt-display-flex-xs wt-align-items-flex-start"> <div> <span class="wt-icon wt-nudge-b-2"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M14 2c2.21 0 4 1.79 4 4v10.5c0 3.03-2.47 5.5-5.5 5.5A5.51 5.51 0 0 1 7 16.5V7c0-.55.45-1 1-1s1 .45 1 1v9.5c0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5V6c0-1.1-.9-2-2-2s-2 .9-2 2v9.5c0 .28.22.5.5.5s.5-.22.5-.5V7c0-.55.45-1 1-1s1 .45 1 1v8.5a2.5 2.5 0 0 1-5 0V6c0-2.21 1.79-4 4-4" /> </svg> </span> </div> <div class="wt-ml-xs-1"> PEMUDA99 LOGIN </div> </li> </ul> </div> <div class="wt-mt-xs-2"></div> <div data-id="description-text"> <div id="content-toggle-product-details-read-more" class="wt-content-toggle__body wt-content-toggle__body--truncated wt-content-toggle__body--truncated-02"> <p data-product-details-description-text-content class="wt-text-body-01 wt-break-word"> SITUS RESMI PEMUDA99 </p> </div> <div class="wt-text-center-xs"> </div> </div> </div> </div> </div> </div> </div> <div id="did_you_know_toggle_content_toggle" class="wt-content-toggle__body" aria-hidden="false"> <div class="wt-mb-xs-6"> <div class="wt-mt-xs-1 wt-mb-xs-3"> <div class="wt-grid__item-xs-12 wt-mt-xs-4 wt-mt-md-2 wt-mb-xs-6 wt-mb-md-0 "> <div class="wt-display-inline-flex-xs wt-align-items-center"> <div class="wt-mr-xs-2" data-add-class-when-in-view="is-in-view"> <span class="inline-svg"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 48 48" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" width="48" height="48" aria-hidden="true" focusable="false"> <style> <![CDATA[ .is-in-view #e0NMFoeIPOT2_to { animation: e0NMFoeIPOT2_to__to 2000ms linear 1 normal forwards } @keyframes e0NMFoeIPOT2_to__to { 0% { transform: translate(44.162561px, 5.846695px) } 8% { transform: translate(44.162561px, 5.846695px); animation-timing-function: cubic-bezier(0.15, 0, 1, 1) } 16.5% { transform: translate(42.257336px, 6.69656px); animation-timing-function: cubic-bezier(0.25, 0, 0.75, 1) } 28% { transform: translate(46.27px, 7.700005px) } 36.5% { transform: translate(42.752561px, 5.5px) } 48% { transform: translate(44.150002px, 6.297191px) } 100% { transform: translate(44.150002px, 6.297191px) } } .is-in-view #e0NMFoeIPOT2_tr { animation: e0NMFoeIPOT2_tr__tr 2000ms linear 1 normal forwards } @keyframes e0NMFoeIPOT2_tr__tr { 0% { transform: rotate(-5deg) } 8% { transform: rotate(-5deg); animation-timing-function: cubic-bezier(0.15, 0, 1, 1) } 16.5% { transform: rotate(-7deg); animation-timing-function: cubic-bezier(0.25, 0, 0.75, 1) } 28% { transform: rotate(7deg) } 36.5% { transform: rotate(-5deg) } 48% { transform: rotate(0deg) } 100% { transform: rotate(0deg) } } .is-in-view #e0NMFoeIPOT5_to { animation: e0NMFoeIPOT5_to__to 2000ms linear 1 normal forwards } @keyframes e0NMFoeIPOT5_to__to { 0% { transform: translate(4.2px, 5.697011px) } 8% { transform: translate(4.2px, 5.697011px); animation-timing-function: cubic-bezier(0.15, 0, 1, 1) } 16.5% { transform: translate(5.826704px, 6.546839px); animation-timing-function: cubic-bezier(0.25, 0, 0.75, 1) } 28% { transform: translate(1.52px, 7.701463px) } 36.5% { transform: translate(5.294274px, 5.6px) } 48% { transform: translate(3.85px, 6.297191px) } 100% { transform: translate(3.85px, 6.297191px) } } .is-in-view #e0NMFoeIPOT5_tr { animation: e0NMFoeIPOT5_tr__tr 2000ms linear 1 normal forwards } @keyframes e0NMFoeIPOT5_tr__tr { 0% { transform: rotate(5deg) } 8% { transform: rotate(5deg); animation-timing-function: cubic-bezier(0.15, 0, 1, 1) } 16.5% { transform: rotate(7deg); animation-timing-function: cubic-bezier(0.25, 0, 0.75, 1) } 28% { transform: rotate(-7deg) } 36.5% { transform: rotate(5deg) } 48% { transform: rotate(0deg) } 100% { transform: rotate(0deg) } } .is-in-view #e0NMFoeIPOT8_to { animation: e0NMFoeIPOT8_to__to 2000ms linear 1 normal forwards } @keyframes e0NMFoeIPOT8_to__to { 0% { transform: translate(28.52px, 15.1px) } 8% { transform: translate(28.52px, 15.1px); animation-timing-function: cubic-bezier(0.15, 0, 1, 1) } 16.5% { transform: translate(26.96px, 16.52px); animation-timing-function: cubic-bezier(0.284467, 0, 0.625227, 0.383992) } 18.5% { transform: translate(27.14px, 16.214055px); animation-timing-function: cubic-bezier(0.310382, 0.25506, 0.719913, 0.848254) } 19.5% { transform: translate(27.3px, 15.96px) } 20.5% { transform: translate(27.47px, 15.63px) } 22.5% { transform: translate(27.96px, 14.98px) } 24.5% { transform: translate(28.46px, 14.3px) } 27% { transform: translate(29.004407px, 13.613261px); animation-timing-function: cubic-bezier(0.36087, 0.641427, 0.696459, 1) } 28% { transform: translate(29.07px, 13.52px) } 28.5% { transform: translate(28.952353px, 13.590588px) } 30% { transform: translate(28.55px, 13.84px) } 31% { transform: translate(28.3px, 14px) } 32% { transform: translate(28.13px, 14.18px) } 33% { transform: translate(27.85px, 14.3px) } 33.5% { transform: translate(27.776555px, 14.35px) } 34% { transform: translate(27.6px, 14.4px) } 34.5% { transform: translate(27.540925px, 14.5px) } 35.5% { transform: translate(27.305294px, 14.6px) } 36.5% { transform: translate(27.07px, 14.72px) } 48% { transform: translate(27.765359px, 14.148534px) } 100% { transform: translate(27.765359px, 14.148534px) } } .is-in-view #e0NMFoeIPOT8_tr { animation: e0NMFoeIPOT8_tr__tr 2000ms linear 1 normal forwards } @keyframes e0NMFoeIPOT8_tr__tr { 0% { transform: rotate(-5deg) } 8% { transform: rotate(-5deg); animation-timing-function: cubic-bezier(0.15, 0, 1, 1) } 16.5% { transform: rotate(-7deg); animation-timing-function: cubic-bezier(0.25, 0, 0.75, 1) } 28% { transform: rotate(7deg) } 36.5% { transform: rotate(-5deg) } 48% { transform: rotate(0deg) } 100% { transform: rotate(0deg) } } ]]> </style> </svg> </span> </div> </div> </div> </div> <button data-clg-id="WtButton" class="wt-btn wt-btn--secondary wt-btn--transparent-flush-left wt-btn--small wt-width-full" data-overlay-trigger="true" aria-controls="policies-overlay"> DAFTAR PEMUDA99 </button> <div class="js-promotion-description wt-mt-xs-3"></div> </div> </div> </div> </div> </div> <div class="wt-mb-xs-3"> <div data-appears-component-name="shop_owners"> <div id="shop_owners"> <div class="wt-content-toggle " data-selector="info-section-content-toggle"> <button data-clg-id="WtButton" class="wt-btn wt-btn--transparent wt-content-toggle--btn wt-content-toggle--with-icon wt-width-full wt-content-toggle--flush" data-wt-content-toggle="true" data-animate="true" aria-controls="shop_owners_content_toggle"> <span class="wt-flex-xs-auto wt-width-full wt-text-title"> <h2> Meet your sellers </h2> </span> <span class="wt-content-toggle--btn__icon"></span> </button> <div id="shop_owners_content_toggle" class="wt-content-toggle__body" aria-hidden="true"> <div class="wt-mb-xs-6"> <div class="wt-display-flex-xs wt-align-items-center wt-mb-xs-2"> <div class="wt-thumbnail-larger wt-mr-xs-3"> <img data-clg-id="WtImage" class="wt-height-full wt-width-full wt-rounded-01 wt-overflow-hidden wt-image--cover wt-image" src="https://i.etsystatic.com/11195716/r/isla/57b6d5/51951090/isla_75x75.51951090_narptdb2.jpg" alt="Dinesh Natarajan Mohan" style="aspect-ratio: 1;" loading="lazy" sizes="75px" srcset="https://www.toscanamall.com/assets/img/06/07/2025/favicon-pemuda99-32x32.png 100w, https://i.etsystatic.com/11195716/r/isla/57b6d5/51951090/isla_200x200.51951090_narptdb2.jpg 200w" /> </div> <div> <p class="wt-text-heading-small wt-line-height-tight wt-mb-lg-1"> Gala Sendria</p> <p class=" wt-sem-text-primary wt-text-caption"> Owner of <a href='https://www.toscanamall.com/fr' class='wt-text-link'>PEMUDA99</a> </p> <div data-follow-shop-region> <div data-action="follow-shop-button-container" class="wt-display-flex-xs wt-align-items-center"> <input type="hidden" class="id" name="user_id" value="67180997" /> <a href="https://www.etsy.com/signin?workflow=ZmF2b3JpdGVfdXNlcl9pZDo2NzE4MDk5NzoxNzU4MTE5MDQxOmMzOWM0MWEyNmFjMDdjNTcyMDcxNWRlMGU4NTQ4OGFh&use_follow_text=1&from_page=https%3A%2F%2Fwww.etsy.com%2Flisting%2F1479848745%2F2025-employee-annual-bonus-planner-excel%3Fls%3Ds%26ga_order%3Dmost_relevant%26ga_search_type%3Dall%26ga_view_type%3Dgallery%26ga_search_query%3Dbonus%26ref%3Dsr_gallery-1-6%26sr_prefetch%3D0%26dd%3D1%26content_source%3D0a0cca2b-9c1c-4b0e-a428-b45bcc835a54%25253A9989de2b0460fcb8a418a74c2b4056b213fc9a4d%26organic_search_click%3D1%26logging_key%3D0a0cca2b-9c1c-4b0e-a428-b45bcc835a54%253A9989de2b0460fcb8a418a74c2b4056b213fc9a4d" rel="nofollow" data-downtime-overlay-type="favorite" data-supplemental-state--use_follow_text="true" class="inline-overlay-trigger favorite-shop-action wt-btn wt-btn--small wt-btn--transparent follow-shop-button-listing-header-v3 wt-btn--transparent-flush-left" aria-label="Follow shop" data-action="follow-shop-button" data-shop-id="11195716" data-source-name="listing_header" data-module-name=""> <span class="etsy-icon wt-icon--smaller-xs" data-not-following-icon=""> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M12,21C10.349,21,2,14.688,2,9,2,5.579,4.364,3,7.5,3A6.912,6.912,0,0,1,12,5.051,6.953,6.953,0,0,1,16.5,3C19.636,3,22,5.579,22,9,22,14.688,13.651,21,12,21ZM7.5,5C5.472,5,4,6.683,4,9c0,4.108,6.432,9.325,8,10,1.564-.657,8-5.832,8-10,0-2.317-1.472-4-3.5-4-1.979,0-3.7,2.105-3.721,2.127L11.991,8.1,11.216,7.12C11.186,7.083,9.5,5,7.5,5Z" /> </svg> </span> <span class="etsy-icon wt-icon--smaller-xs wt-display-none wt-text-brick" data-following-icon=""> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M16.5,3A6.953,6.953,0,0,0,12,5.051,6.912,6.912,0,0,0,7.5,3C4.364,3,2,5.579,2,9c0,5.688,8.349,12,10,12S22,14.688,22,9C22,5.579,19.636,3,16.5,3Z" /> </svg> </span> <span data-following-message class="wt-ml-xs-1 listing-header-v3-message wt-display-inline-block wt-position-relative wt-display-none "> Following </span> <span data-not-following-message class="wt-ml-xs-1 listing-header-v3-message wt-display-inline-block wt-position-relative "> Follow shop </span> </a> </div> </div> </div> </div> <a rel="nofollow" href="https://www.etsy.com/messages/new?with_id=67180997&referring_id=1479848745&referring_type=listing&recipient_id=67180997&from_action=contact-seller" class="wt-btn wt-btn--outline wt-width-full contact-action convo-overlay-trigger inline-overlay-trigger" role="button" data-to_username="cpls" data-to_user_id="67180997" data-to_user_display_name="Dinesh" data-referring_type="listing" data-referring_id="1479848745" data-subject="" data-message="" aria-label="Message Dinesh"> <span>Message Dinesh</span> </a> <p class="wt-text-caption wt-text-center-xs wt-pt-xs-2 wt-sem-text-secondary"> This seller usually responds <b>within a few hours.</b> </p> </div> </div> </div> </div> </div> </div> <div data-appears-component-name="listing_page_seller_details"></div> </div> </div> <div class="listing-info wider-review-col wt-order-xs-6"> <div class="wt-flex-lg-5 wt-align-items-flex-start wt-max-width-full wt-pl-md-4 wt-pr-md-4 wt-pr-lg-0 wt-pl-lg-5 wt-pl-xs-2 wt-pr-xs-2" data-appears-component-name="listing_page_reviews_container_top" data-offset="0.01" data-appears-event-data='{"transaction_ids":[4728035887,4683643728,4677364751,4580272039],"reviews_with_text":4,"reviews_older_than_three_months":1,"reviews_under_three_stars":0,"fired_on_plus_more":false,"tab_fetched":"","listing_rating_count":0,"shop_rating_count":215,"page":"listing","listing_id":1479848745,"page_number":1,"sort_option":"Relevancy","is_mobile_or_tablet":false,"is_reviews_untabbed":true,"is_initial_load":true}'> <div class="wt-mb-xs-3"> <div data-lazy-loaded-bottom-section-before-reviews-trigger></div> <div data-appears-component-name="listing_page_reviews" data-appears-event-data='{"transaction_ids":[4728035887,4683643728,4677364751,4580272039],"reviews_with_text":4,"reviews_older_than_three_months":1,"reviews_under_three_stars":0,"fired_on_plus_more":false,"tab_fetched":"","listing_rating_count":0,"shop_rating_count":215,"page":"listing","listing_id":1479848745,"page_number":1,"sort_option":"Relevancy","is_mobile_or_tablet":false,"is_reviews_untabbed":true,"is_initial_load":true}'> <div data-reviews-container id="reviews" class="wt-align-items-flex-start wt-mb-xs-6 wt-mb-lg-9"> <div data-appears-component-name="reviews_header"> <div class="wt-display-flex-xs wt-align-items-center wt-flex-wrap wt-mb-xs-2 wt-mt-xs-2 wt-mt-md-0 wt-justify-content-space-between wt-flex-gap-xs-2"> <div> <div class="wt-display-flex-xs wt-align-items-center"> <span class="wt-icon wt-fill-beeswax wt-nudge-b-1"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M14.782 8.676 12 2.145l-2.78 6.53-7.086.625 5.364 4.663-1.595 6.918L12 17.228l6.097 3.653-1.596-6.919L21.867 9.3z" /> </svg> </span> <p class="wt-text-title-large wt-nudge-l-2">4.9 out of 5</p> <p class="wt-text-body-large wt-ml-xs-2 wt-text-gray">(618 reviews) </p> </div> <p class="wt-text-body-small wt-sem-text-secondary">All reviews are from verified buyers</p> </div> <div class="wt-display-flex-xs wt-align-items-center wt-flex-gap-sm-2 wt-flex-gap-xs-3 wt-justify-content-space-between wt-flex-grow-xs-1 wt-flex-grow-md-0"> <div class="wt-display-flex-xs wt-align-items-center wt-flex-xs-1"> <span class="rating-score fill-5 wt-flex-shrink-xs-0"> <span class="rating-value wt-text-title-small"> 5/5 </span> </span> <span class="rating-label wt-text-body-smaller">Item quality</span> </div> <div class="wt-display-flex-xs wt-align-items-center wt-flex-xs-1"> <span class="rating-score fill-5 wt-flex-shrink-xs-0"> <span class="rating-value wt-text-title-small"> 5/5 </span> </span> <span class="rating-label wt-text-body-smaller">Shipping</span> </div> <div class="wt-display-flex-xs wt-align-items-center wt-flex-xs-1"> <span class="rating-score fill-5 wt-flex-shrink-xs-0"> <span class="rating-value wt-text-title-small"> 5/5 </span> </span> <span class="rating-label wt-text-body-smaller">Customer service</span> </div> </div> </div> </div> <div data-clg-id="WtSpinner" class="wt-spinner wt-spinner--02 wt-display-none" aria-live="assertive" data-reviews-pagination-loading-spinner=""> <span class="wt-icon"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" aria-hidden="true" focusable="false"> <circle fill="transparent" cx="24" cy="24" r="21" /> </svg> </span> Loading </div> <div data-reviews> <div class="wt-mb-xs-3"> <div class="wt-display-flex-xs wt-justify-content-space-between wt-align-items-center"> <h3 class="wt-text-title"> Reviews for this shop </h3> <div class="wt-display-flex-xs wt-justify-content-flex-end"> <div data-clg-id="WtMenu" class="wt-menu " data-wt-menu id="sort-reviews-menu" data-hide-trigger-on-open="false" data-animate-in="true" data-close-on-select="true" data-contain-focus="false" data-open-direction-vert="bottom" data-open-direction-horiz="left" data-open-direction-force="false" data-menu-type="option"> <button data-clg-id="WtMenuTrigger" type="button" class="wt-menu__trigger wt-btn wt-btn--transparent wt-btn--small sort-reviews-trigger" aria-haspopup="true" aria-expanded="false" data-wt-menu-trigger> <span class="wt-menu__trigger__label">Sort by: Suggested</span> <span class="wt-icon wt-menu__trigger__caret"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <polygon points="16.5 10 12 16 7.5 10 16.5 10" /> </svg> </span> </button> <div data-clg-id="WtMenuBody" role="menu" class="wt-menu__body " data-wt-menu-body> <button data-clg-id="WtMenuItem" type="button" role="menuitemradio" class="wt-menu__item wt-is-selected reviews-sort-by-item" tabindex="-1" data-sort-option="Relevancy" aria-checked="true"> Suggested </button> <button data-clg-id="WtMenuItem" type="button" role="menuitemradio" class="wt-menu__item reviews-sort-by-item" tabindex="-1" data-sort-option="Recency" aria-checked="false"> Most recent </button> <button data-clg-id="WtMenuItem" type="button" role="menuitemradio" class="wt-menu__item reviews-sort-by-item" tabindex="-1" data-sort-option="Highest" aria-checked="false"> Highest Rating </button> <button data-clg-id="WtMenuItem" type="button" role="menuitemradio" class="wt-menu__item reviews-sort-by-item" tabindex="-1" data-sort-option="Lowest" aria-checked="false"> Lowest Rating </button> </div> </div> </div> </div> </div> <div class="wt-grid wt-grid--block wt-mb-xs-2 wt-mb-lg-6"> <div class="wt-grid__item-xs-12 review-card" data-review-region="4728035887"> <div class="wt-bb-xs wt-pt-xs-2 wt-pt-md-1 wt-pb-xs-2"> <div class="min-width-0" id="review-text-width-0"> <div class="wt-max-width-full"> <div class="wt-display-flex-xs wt-flex-direction-row-xs wt-justify-content-space-between wt-flex-wrap wt-mb-xs-2 wt-mb-md-0"> <div class="wt-mb-xs-1"> <span class="wt-display-inline-block wt-mr-xs-1" data-stars-svg-container> <input type="hidden" name="initial-rating" value="5" /> <input type="hidden" name="rating" value="5" /> <span class="wt-screen-reader-only">5 out of 5 stars</span> <span> <span class="wt-icon wt-nudge-b-1 wt-icon--smaller wt-fill-beeswax" data-rating="0"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="3 3 18 18" aria-hidden="true" focusable="false"> <path d="M14.782 8.676 12 2.145l-2.78 6.53-7.086.625 5.364 4.663-1.595 6.918L12 17.228l6.097 3.653-1.596-6.919L21.867 9.3z" /> </svg> </span> <span class="wt-icon wt-nudge-b-1 wt-icon--smaller wt-fill-beeswax" data-rating="1"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="3 3 18 18" aria-hidden="true" focusable="false"> <path d="M14.782 8.676 12 2.145l-2.78 6.53-7.086.625 5.364 4.663-1.595 6.918L12 17.228l6.097 3.653-1.596-6.919L21.867 9.3z" /> </svg> </span> <span class="wt-icon wt-nudge-b-1 wt-icon--smaller wt-fill-beeswax" data-rating="2"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="3 3 18 18" aria-hidden="true" focusable="false"> <path d="M14.782 8.676 12 2.145l-2.78 6.53-7.086.625 5.364 4.663-1.595 6.918L12 17.228l6.097 3.653-1.596-6.919L21.867 9.3z" /> </svg> </span> <span class="wt-icon wt-nudge-b-1 wt-icon--smaller wt-fill-beeswax" data-rating="3"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="3 3 18 18" aria-hidden="true" focusable="false"> <path d="M14.782 8.676 12 2.145l-2.78 6.53-7.086.625 5.364 4.663-1.595 6.918L12 17.228l6.097 3.653-1.596-6.919L21.867 9.3z" /> </svg> </span> <span class="wt-icon wt-nudge-b-1 wt-icon--smaller wt-fill-beeswax" data-rating="4"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="3 3 18 18" aria-hidden="true" focusable="false"> <path d="M14.782 8.676 12 2.145l-2.78 6.53-7.086.625 5.364 4.663-1.595 6.918L12 17.228l6.097 3.653-1.596-6.919L21.867 9.3z" /> </svg> </span> </span> <span class="wt-text-title wt-nudge-l-3 wt-nudge-t-1"> 5 </span> </span> </div> <div class="wt-hide-xs wt-show-md wt-mb-xs-1"> <div class="wt-display-flex-xs wt-align-items-center"> <span class="wt-icon wt-icon--smaller-xs wt-mr-xs-1 wt-flex-shrink-xs-0"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M12 24c6.627 0 12-5.373 12-12S18.627 0 12 0 0 5.373 0 12s5.373 12 12 12z" fill="#DFF7AF" /> <path d="M11.468 6l-6.385.076L4.5 8.711l.114 5.41.583 3.75 4.89.418 3.7.38 2.305-.735L19.5 7.216l-.481-.988L11.468 6z" fill="#122868" /> </svg> </span> <p class="wt-text-body-small"> <a href="/people/x0z0eq4114t7ejv5?ref=l_review" rel="nofollow" aria-label="Reviewer Andri" class="wt-text-link-no-underline wt-text-title-small" data-review-username data-transaction-id="4728035887"> Andri </a> <span class="wt-bl-xs wt-mr-xs-1 wt-ml-xs-1 wt-nudge-t-1 wt-nudge-r-1"></span> Jun 06, 2025 </p> </div> </div> </div> <div class="wt-display-flex-xs wt-flex-direction-row-xs wt-justify-content-space-between wt-align-items-flex-start"> <div class="wt-text-body"> <div class="max-height-review max-height-text-container is-long"> <div data-review-text-toggle-wrapper> <div data-clg-id="WtInlineToggle" class="wt-content-toggle--truncated-inline-multi wt-break-word wt-text-body"> <div class="wt-content-toggle__trigger-wrapper"> <button type="button" class="wt-content-toggle--ellipsis-btn" data-one-way="false" data-wt-content-toggle data-inline="multi" aria-controls="review-preview-toggle-01758118441"> <span class="etsy-icon wt-icon--base-xs"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <circle cx="12" cy="12.001" r="2.999" /> <circle cx="3" cy="12.001" r="2.999" /> <circle cx="21" cy="12.001" r="2.999" /> </svg> </span> <span class="wt-screen-reader-only">Listing review by Andri</span> </button> </div> <p id="review-preview-toggle-01758118441" class="wt-text-truncate--multi-line wt-break-word wt-text-body"> Udah coba beberapa situs, tapi Pemuda99 ini paling gacor menurut saya. Pola permainannya stabil dan gampang dapat scatter. Selain itu, promonya lumayan sering, jadi bisa main lebih lama tanpa keluar modal besar </p> </div> </div> </div> </div> </div> <div class="wt-show-xs wt-hide-md wt-mt-xs-3 wt-mb-xs-1"> <div class="wt-display-flex-xs wt-align-items-center"> <span class="wt-icon wt-icon--smaller-xs wt-mr-xs-1 wt-flex-shrink-xs-0"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M12 24c6.627 0 12-5.373 12-12S18.627 0 12 0 0 5.373 0 12s5.373 12 12 12z" fill="#DFF7AF" /> <path d="M11.468 6l-6.385.076L4.5 8.711l.114 5.41.583 3.75 4.89.418 3.7.38 2.305-.735L19.5 7.216l-.481-.988L11.468 6z" fill="#122868" /> </svg> </span> <p class="wt-text-body-small"> <a href="https://www.toscanamall.com/fr" rel="nofollow" aria-label="Reviewer Dajal Well" class="wt-text-link-no-underline wt-text-title-small" data-review-username data-transaction-id="4728035887"> Rina </a> <span class="wt-bl-xs wt-mr-xs-1 wt-ml-xs-1 wt-nudge-t-1 wt-nudge-r-1"></span> Jul 14, 2025 </p> </div> </div> <div class="wt-pl-xs-2 wt-mt-xs-3 wt-mt-md-2 wt-mb-xs-1"> <div class="wt-display-flex-xs wt-align-items-center wt-mb-xs-1"> <div class="wt-icon wt-icon--smaller-xs wt-mr-xs-1"> <img data-clg-id="WtImage" class="wt-mr-xs-2 wt-height-full wt-width-full wt-circle wt-overflow-hidden wt-image--cover wt-image" src="https://i.etsystatic.com/iusa/bc2f07/90994579/iusa_75x75.90994579_mnj6.jpg?version=0" alt="" style="aspect-ratio: 1;" loading="lazy" data-pin-nopin="true" aria-hidden="true" sizes="18px" srcset="https://www.toscanamall.com/assets/img/06/07/2025/favicon-pemuda99-32x32.png 50w" /> </div> </div> <div class="wt-text-body-small" id="shop-response-text"> <div class="max-height-review max-height-text-container is-long"> <div data-review-text-toggle-wrapper> <div data-clg-id="WtInlineToggle" class="wt-content-toggle--truncated-inline-multi wt-break-word wt-text-body-small wt-text-gray"> <div class="wt-content-toggle__trigger-wrapper"> <button type="button" class="wt-content-toggle--ellipsis-btn" data-one-way="false" data-wt-content-toggle data-inline="multi" aria-controls="review-preview-toggle-01758118441_response"> <span class="etsy-icon wt-icon--base-xs"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <circle cx="12" cy="12.001" r="2.999" /> <circle cx="3" cy="12.001" r="2.999" /> <circle cx="21" cy="12.001" r="2.999" /> </svg> </span> <span class="wt-screen-reader-only">Listing review by Rina</span> </button> </div> </div> </div> </div> </div> </div> </div> <div class="wt-display-flex-xs wt-pt-xs-2 wt-pt-md-1 wt-mb-xs-1 wt-mb-md-0 wt-mr-md-8"> <div class="wt-display-flex-xs wt-align-items-center wt-overflow-auto wt-text-truncate wt-width-full"> </div> </div> </div> </div> </div> <div class="wt-grid wt-grid--block wt-mb-xs-2 wt-mb-lg-6"> <div class="wt-grid__item-xs-12 review-card" data-review-region="4728035887"> <div class="wt-bb-xs wt-pt-xs-2 wt-pt-md-1 wt-pb-xs-2"> <div class="min-width-0" id="review-text-width-0"> <div class="wt-max-width-full"> <div class="wt-display-flex-xs wt-flex-direction-row-xs wt-justify-content-space-between wt-flex-wrap wt-mb-xs-2 wt-mb-md-0"> <div class="wt-mb-xs-1"> <span class="wt-display-inline-block wt-mr-xs-1" data-stars-svg-container> <input type="hidden" name="initial-rating" value="5" /> <input type="hidden" name="rating" value="5" /> <span class="wt-screen-reader-only">5 out of 5 stars</span> <span> <span class="wt-icon wt-nudge-b-1 wt-icon--smaller wt-fill-beeswax" data-rating="0"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="3 3 18 18" aria-hidden="true" focusable="false"> <path d="M14.782 8.676 12 2.145l-2.78 6.53-7.086.625 5.364 4.663-1.595 6.918L12 17.228l6.097 3.653-1.596-6.919L21.867 9.3z" /> </svg> </span> <span class="wt-icon wt-nudge-b-1 wt-icon--smaller wt-fill-beeswax" data-rating="1"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="3 3 18 18" aria-hidden="true" focusable="false"> <path d="M14.782 8.676 12 2.145l-2.78 6.53-7.086.625 5.364 4.663-1.595 6.918L12 17.228l6.097 3.653-1.596-6.919L21.867 9.3z" /> </svg> </span> <span class="wt-icon wt-nudge-b-1 wt-icon--smaller wt-fill-beeswax" data-rating="2"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="3 3 18 18" aria-hidden="true" focusable="false"> <path d="M14.782 8.676 12 2.145l-2.78 6.53-7.086.625 5.364 4.663-1.595 6.918L12 17.228l6.097 3.653-1.596-6.919L21.867 9.3z" /> </svg> </span> <span class="wt-icon wt-nudge-b-1 wt-icon--smaller wt-fill-beeswax" data-rating="3"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="3 3 18 18" aria-hidden="true" focusable="false"> <path d="M14.782 8.676 12 2.145l-2.78 6.53-7.086.625 5.364 4.663-1.595 6.918L12 17.228l6.097 3.653-1.596-6.919L21.867 9.3z" /> </svg> </span> <span class="wt-icon wt-nudge-b-1 wt-icon--smaller wt-fill-beeswax" data-rating="4"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="3 3 18 18" aria-hidden="true" focusable="false"> <path d="M14.782 8.676 12 2.145l-2.78 6.53-7.086.625 5.364 4.663-1.595 6.918L12 17.228l6.097 3.653-1.596-6.919L21.867 9.3z" /> </svg> </span> </span> <span class="wt-text-title wt-nudge-l-3 wt-nudge-t-1"> 5 </span> </span> </div> <div class="wt-hide-xs wt-show-md wt-mb-xs-1"> <div class="wt-display-flex-xs wt-align-items-center"> <span class="wt-icon wt-icon--smaller-xs wt-mr-xs-1 wt-flex-shrink-xs-0"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M12 24c6.627 0 12-5.373 12-12S18.627 0 12 0 0 5.373 0 12s5.373 12 12 12z" fill="#DFF7AF" /> <path d="M11.468 6l-6.385.076L4.5 8.711l.114 5.41.583 3.75 4.89.418 3.7.38 2.305-.735L19.5 7.216l-.481-.988L11.468 6z" fill="#122868" /> </svg> </span> <p class="wt-text-body-small"> <a href="https://www.toscanamall.com/fr" rel="nofollow" aria-label="Reviewer Rina" class="wt-text-link-no-underline wt-text-title-small" data-review-username data-transaction-id="4728035887"> Rina</a> <span class="wt-bl-xs wt-mr-xs-1 wt-ml-xs-1 wt-nudge-t-1 wt-nudge-r-1"></span> Sep 11, 2025 </p> </div> </div> </div> <div class="wt-display-flex-xs wt-flex-direction-row-xs wt-justify-content-space-between wt-align-items-flex-start"> <div class="wt-text-body"> <div class="max-height-review max-height-text-container is-long"> <div data-review-text-toggle-wrapper> <div data-clg-id="WtInlineToggle" class="wt-content-toggle--truncated-inline-multi wt-break-word wt-text-body"> <div class="wt-content-toggle__trigger-wrapper"> <button type="button" class="wt-content-toggle--ellipsis-btn" data-one-way="false" data-wt-content-toggle data-inline="multi" aria-controls="review-preview-toggle-01758118441"> <span class="etsy-icon wt-icon--base-xs"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <circle cx="12" cy="12.001" r="2.999" /> <circle cx="3" cy="12.001" r="2.999" /> <circle cx="21" cy="12.001" r="2.999" /> </svg> </span> <span class="wt-screen-reader-only">Listing review Rina</span> </button> </div> <p id="review-preview-toggle-01758118441" class="wt-text-truncate--multi-line wt-break-word wt-text-body"> Tampilan situs Pemuda99 enak dilihat dan gampang dipahami, bahkan buat pemula kayak saya. Withdraw-nya juga cepat banget, nggak pakai nunggu lama. Admin-nya responsif, kalau ada masalah langsung dibantu. Pokoknya recommended deh!</p> </div> </div> </div> </div> </div> <div class="wt-show-xs wt-hide-md wt-mt-xs-3 wt-mb-xs-1"> <div class="wt-display-flex-xs wt-align-items-center"> <span class="wt-icon wt-icon--smaller-xs wt-mr-xs-1 wt-flex-shrink-xs-0"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M12 24c6.627 0 12-5.373 12-12S18.627 0 12 0 0 5.373 0 12s5.373 12 12 12z" fill="#DFF7AF" /> <path d="M11.468 6l-6.385.076L4.5 8.711l.114 5.41.583 3.75 4.89.418 3.7.38 2.305-.735L19.5 7.216l-.481-.988L11.468 6z" fill="#122868" /> </svg> </span> <p class="wt-text-body-small"> <a href="/people/x0z0eq4114t7ejv5?ref=l_review" rel="nofollow" aria-label="Reviewer Victory77" class="wt-text-link-no-underline wt-text-title-small" data-review-username data-transaction-id="4728035887"> Lanh</a> <span class="wt-bl-xs wt-mr-xs-1 wt-ml-xs-1 wt-nudge-t-1 wt-nudge-r-1"></span> Sep 13, 2025 </p> </div> </div> <div class="wt-pl-xs-2 wt-mt-xs-3 wt-mt-md-2 wt-mb-xs-1"> <div class="wt-display-flex-xs wt-align-items-center wt-mb-xs-1"> <div class="wt-icon wt-icon--smaller-xs wt-mr-xs-1"> <img data-clg-id="WtImage" class="wt-mr-xs-2 wt-height-full wt-width-full wt-circle wt-overflow-hidden wt-image--cover wt-image" src="https://i.etsystatic.com/iusa/bc2f07/90994579/iusa_75x75.90994579_mnj6.jpg?version=0" alt="" style="aspect-ratio: 1;" loading="lazy" data-pin-nopin="true" aria-hidden="true" sizes="18px" srcset="https://www.toscanamall.com/assets/img/06/07/2025/favicon-pemuda99-32x32.png 50w" /> </div> </div> <div class="wt-text-body-small" id="shop-response-text"> <div class="max-height-review max-height-text-container is-long"> <div data-review-text-toggle-wrapper> <div data-clg-id="WtInlineToggle" class="wt-content-toggle--truncated-inline-multi wt-break-word wt-text-body-small wt-text-gray"> <div class="wt-content-toggle__trigger-wrapper"> <button type="button" class="wt-content-toggle--ellipsis-btn" data-one-way="false" data-wt-content-toggle data-inline="multi" aria-controls="review-preview-toggle-01758118441_response"> <span class="etsy-icon wt-icon--base-xs"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <circle cx="12" cy="12.001" r="2.999" /> <circle cx="3" cy="12.001" r="2.999" /> <circle cx="21" cy="12.001" r="2.999" /> </svg> </span> <span class="wt-screen-reader-only">Listing review by Lanh</span> </button> </div> </div> </div> </div> </div> </div> </div> <div class="wt-display-flex-xs wt-pt-xs-2 wt-pt-md-1 wt-mb-xs-1 wt-mb-md-0 wt-mr-md-8"> <div class="wt-display-flex-xs wt-align-items-center wt-overflow-auto wt-text-truncate wt-width-full"> </div> </div> </div> </div> </div> <div class="wt-grid__item-xs-12 review-card" data-review-region="4677364751"> <div class="wt-bb-xs wt-pt-xs-2 wt-pt-md-1 wt-pb-xs-2"> <div class="min-width-0" id="review-text-width-2"> <div class="wt-max-width-full"> <div class="wt-display-flex-xs wt-flex-direction-row-xs wt-justify-content-space-between wt-flex-wrap wt-mb-xs-2 wt-mb-md-0"> <div class="wt-mb-xs-1"> <span class="wt-display-inline-block wt-mr-xs-1" data-stars-svg-container> <input type="hidden" name="initial-rating" value="5" /> <input type="hidden" name="rating" value="5" /> <span class="wt-screen-reader-only">5 out of 5 stars</span> <span> <span class="wt-icon wt-nudge-b-1 wt-icon--smaller wt-fill-beeswax" data-rating="0"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="3 3 18 18" aria-hidden="true" focusable="false"> <path d="M14.782 8.676 12 2.145l-2.78 6.53-7.086.625 5.364 4.663-1.595 6.918L12 17.228l6.097 3.653-1.596-6.919L21.867 9.3z" /> </svg> </span> <span class="wt-icon wt-nudge-b-1 wt-icon--smaller wt-fill-beeswax" data-rating="1"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="3 3 18 18" aria-hidden="true" focusable="false"> <path d="M14.782 8.676 12 2.145l-2.78 6.53-7.086.625 5.364 4.663-1.595 6.918L12 17.228l6.097 3.653-1.596-6.919L21.867 9.3z" /> </svg> </span> <span class="wt-icon wt-nudge-b-1 wt-icon--smaller wt-fill-beeswax" data-rating="2"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="3 3 18 18" aria-hidden="true" focusable="false"> <path d="M14.782 8.676 12 2.145l-2.78 6.53-7.086.625 5.364 4.663-1.595 6.918L12 17.228l6.097 3.653-1.596-6.919L21.867 9.3z" /> </svg> </span> <span class="wt-icon wt-nudge-b-1 wt-icon--smaller wt-fill-beeswax" data-rating="3"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="3 3 18 18" aria-hidden="true" focusable="false"> <path d="M14.782 8.676 12 2.145l-2.78 6.53-7.086.625 5.364 4.663-1.595 6.918L12 17.228l6.097 3.653-1.596-6.919L21.867 9.3z" /> </svg> </span> <span class="wt-icon wt-nudge-b-1 wt-icon--smaller wt-fill-beeswax" data-rating="4"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="3 3 18 18" aria-hidden="true" focusable="false"> <path d="M14.782 8.676 12 2.145l-2.78 6.53-7.086.625 5.364 4.663-1.595 6.918L12 17.228l6.097 3.653-1.596-6.919L21.867 9.3z" /> </svg> </span> </span> <span class="wt-text-title wt-nudge-l-3 wt-nudge-t-1"> 5 </span> </span> <span class="wt-bl-xs wt-mr-xs-1 wt-ml-xs-1 wt-nudge-t-1 wt-nudge-r-1"></span> <span class="wt-text-body-smaller"> <span class="wt-icon wt-text-slime wt-icon--smallest-xs wt-nudge-b-1 wt-nudge-r-2"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M9.059 20.473 21.26 6.15l-1.52-1.298-10.8 12.675-4.734-4.734-1.414 1.414z" /> </svg> </span>Recommends </span> </div> <div class="wt-hide-xs wt-show-md wt-mb-xs-1"> <div class="wt-display-flex-xs wt-align-items-center"> <div class="wt-icon wt-icon--smaller-xs wt-mr-xs-1 wt-flex-shrink-xs-0"> <img data-clg-id="WtImage" class="wt-mr-xs-2 wt-height-full wt-width-full wt-circle wt-overflow-hidden wt-image--cover wt-image" src="https://i.etsystatic.com/iusa/e03315/106363412/iusa_75x75.106363412_7fd3.jpg?version=0" alt="" style="aspect-ratio: 1;" loading="lazy" data-pin-nopin="true" aria-hidden="true" sizes="18px" srcset="https://i.etsystatic.com/iusa/e03315/106363412/iusa_50x50.106363412_7fd3.jpg?version=0 50w" /> </div> <p class="wt-text-body-small"> <a href="https://www.toscanamall.com/fr" rel="nofollow" aria-label="Reviewer Dimas" class="wt-text-link-no-underline wt-text-title-small" data-review-username data-transaction-id="4677364751"> Dimas</a> <span class="wt-bl-xs wt-mr-xs-1 wt-ml-xs-1 wt-nudge-t-1 wt-nudge-r-1"></span> Sept 24, 2025 </p> </div> </div> </div> <div class="wt-display-flex-xs wt-flex-direction-row-xs wt-justify-content-space-between wt-align-items-flex-start"> <div class="wt-text-body"> <div class="max-height-review max-height-text-container is-long"> <div data-review-text-toggle-wrapper> <div data-clg-id="WtInlineToggle" class="wt-content-toggle--truncated-inline-multi wt-break-word wt-text-body"> <div class="wt-content-toggle__trigger-wrapper"> <button type="button" class="wt-content-toggle--ellipsis-btn" data-one-way="false" data-wt-content-toggle data-inline="multi" aria-controls="review-preview-toggle-21758118441"> <span class="etsy-icon wt-icon--base-xs"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <circle cx="12" cy="12.001" r="2.999" /> <circle cx="3" cy="12.001" r="2.999" /> <circle cx="21" cy="12.001" r="2.999" /> </svg> </span> <span class="wt-screen-reader-only">Listing review by Andri</span> </button> </div> <p id="review-preview-toggle-21758118441" class="wt-text-truncate--multi-line wt-break-word wt-text-body"> Awalnya coba-coba aja main di Pemuda99 karena katanya situsnya gampang menang. Ternyata bener juga! Beberapa kali spin langsung tembus jackpot. Yang paling saya suka, proses login-nya cepat dan nggak ribet. Situs alternatifnya juga selalu bisa diakses, jadi nggak takut kena blokir</p> </div> </div> </div> </div> </div> <div class="wt-show-xs wt-hide-md wt-mt-xs-3 wt-mb-xs-1"> <div class="wt-display-flex-xs wt-align-items-center"> <div class="wt-icon wt-icon--smaller-xs wt-mr-xs-1 wt-flex-shrink-xs-0"> <img data-clg-id="WtImage" class="wt-mr-xs-2 wt-height-full wt-width-full wt-circle wt-overflow-hidden wt-image--cover wt-image" src="https://i.etsystatic.com/iusa/e03315/106363412/iusa_75x75.106363412_7fd3.jpg?version=0" alt="" style="aspect-ratio: 1;" loading="lazy" data-pin-nopin="true" aria-hidden="true" sizes="18px" srcset="https://i.etsystatic.com/iusa/e03315/106363412/iusa_50x50.106363412_7fd3.jpg?version=0 50w" /> </div> <p class="wt-text-body-small"> <a href="https://www.toscanamall.com/fr" rel="nofollow" aria-label="Reviewer Kawan Dajal" class="wt-text-link-no-underline wt-text-title-small" data-review-username data-transaction-id="4677364751"> Gus Bara</a> <span class="wt-bl-xs wt-mr-xs-1 wt-ml-xs-1 wt-nudge-t-1 wt-nudge-r-1"></span> Aug 21, 2025 </p> </div> </div> <div class="wt-pl-xs-2 wt-mt-xs-3 wt-mt-md-2 wt-mb-xs-1"> <div class="wt-display-flex-xs wt-align-items-center wt-mb-xs-1"> <div class="wt-icon wt-icon--smaller-xs wt-mr-xs-1"> <img data-clg-id="WtImage" class="wt-mr-xs-2 wt-height-full wt-width-full wt-circle wt-overflow-hidden wt-image--cover wt-image" src="https://i.etsystatic.com/iusa/bc2f07/90994579/iusa_75x75.90994579_mnj6.jpg?version=0" alt="" style="aspect-ratio: 1;" loading="lazy" data-pin-nopin="true" aria-hidden="true" sizes="18px" srcset="https://www.toscanamall.com/assets/img/06/07/2025/favicon-pemuda99-32x32.png 50w" /> </div> </div> <div class="wt-text-body-small" id="shop-response-text"> <div class="max-height-review max-height-text-container is-long"> <div data-review-text-toggle-wrapper> <div data-clg-id="WtInlineToggle" class="wt-content-toggle--truncated-inline-multi wt-break-word wt-text-body-small wt-text-gray"> <div class="wt-content-toggle__trigger-wrapper"> <button type="button" class="wt-content-toggle--ellipsis-btn" data-one-way="false" data-wt-content-toggle data-inline="multi" aria-controls="review-preview-toggle-21758118441_response"> <span class="etsy-icon wt-icon--base-xs"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <circle cx="12" cy="12.001" r="2.999" /> <circle cx="3" cy="12.001" r="2.999" /> <circle cx="21" cy="12.001" r="2.999" /> </svg> </span> <span class="wt-screen-reader-only">Listing review by Gus Bara</span> </button> </div> </div> </div> </div> </div> </div> </div> <div class="wt-display-flex-xs wt-pt-xs-2 wt-pt-md-1 wt-mb-xs-1 wt-mb-md-0 wt-mr-md-8"> <div class="wt-display-flex-xs wt-align-items-center wt-overflow-auto wt-text-truncate wt-width-full"> </div> </div> </div> </div> </div> <div class="wt-text-caption wt-text-center-xs wt-text-left-lg"> <a href="https://www.toscanamall.com/fr">Situs Slot Gacor</a> <span class="etsy-icon wt-sem-text-secondary wt-icon--smallest-xs"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M8 21a1 1 0 0 1-.664-1.747l8.164-7.254-8.164-7.252a1 1 0 0 1 1.328-1.494L18.5 12l-9.836 8.747A1 1 0 0 1 8 21" /> </svg> </span> <a href="https://www.toscanamall.com/fr">Slot Gacor</a> <span class="etsy-icon wt-sem-text-secondary wt-icon--smallest-xs"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M8 21a1 1 0 0 1-.664-1.747l8.164-7.254-8.164-7.252a1 1 0 0 1 1.328-1.494L18.5 12l-9.836 8.747A1 1 0 0 1 8 21" /> </svg> </span> <a href="https://www.toscanamall.com/fr">Situs Slot</a> <span class="etsy-icon wt-sem-text-secondary wt-icon--smallest-xs"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M8 21a1 1 0 0 1-.664-1.747l8.164-7.254-8.164-7.252a1 1 0 0 1 1.328-1.494L18.5 12l-9.836 8.747A1 1 0 0 1 8 21" /> </svg> </span> <a href="https://www.toscanamall.com/fr">Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor</a> </div> <div id="google-one-tap-modal-div" class="google-one-tap-modal-div"> </div> <div data-wt-overlay id="user-lists-overlay" class="wt-overlay wt-display-none wt-position-fixed wt-position-bottom wt-overlay--has-close-icon collection-list-overlay " role="dialog" aria-hidden="true" aria-modal="false" aria-labelledby="collection-modal-title" data-animations='{ "open": { "mask": "wt-animated wt-animated--appear-02", "content": "wt-animated wt-animated--appear-02" }, "close": { "mask": "wt-animated wt-animated--disappear-02", "content": "wt-animated wt-animated--disappear-02" } }'> <div class="wt-overlay__modal collection-list-overlay-view wt-display-flex-xs wt-pb-xs-0 wt-pb-md-4 " data-overlay-modal> <div data-collection-list data-max-characters="50" class="wt-overflow-hidden favorites-modal-collection-list wt-width-full"> <button class="wt-btn wt-btn--icon wt-btn--tertiary wt-btn--light wt-overlay__close-icon " data-wt-overlay-close data-overlay-initial-focus aria-label="Close"> <span class="etsy-icon"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M13.414,12l6.293-6.293a1,1,0,0,0-1.414-1.414L12,10.586,5.707,4.293A1,1,0,0,0,4.293,5.707L10.586,12,4.293,18.293a1,1,0,1,0,1.414,1.414L12,13.414l6.293,6.293a1,1,0,0,0,1.414-1.414Z" /> </svg> </span> </button> <div data-collection-list-section class="favorites-modal--collection-list-section wt-position-relative wt-flex-direction-column-xs wt-height-full wt-align-items-center"> <div class="wt-overlay__header wt-display-flex-xs wt-align-items-center wt-justify-content-center "> <img src="https://www.etsy.com/images/grey.gif" alt="An image of the listing you can save" class="wt-mr-xs-2 wt-mr-md-3 add-to-list-overlay--img" /> <h2 class="wt-text-heading" id="collection-modal-title"> <span data-collections-modal-title class=""> Add to collection </span> <span data-registry-modal-title class="wt-display-none"> Add to registry </span> </h2> </div> <div class="collection-list-loading-container" data-spinner-container> <div class="wt-spinner wt-spinner--02"> <div>Loading</div> </div> </div> <div class="wt-display-none collection-list-loading-container" data-collection-list-fail-state> <div class="wt-vertical-center wt-text-center-xs wt-sem-text-secondary"> <p>Hmm, something went wrong.</p> <p>Try that again.</p> </div> </div> <fieldset class="wt-max-width-full wt-pr-xs-2 wt-overflow-scroll"> <div class="wt-display-none wt-width-full wt-action-group wt-action-group--image wt-list-inline wt-mb-xs-0" data-collection-list-content> <span class="wt-p-xs-0 wt-width-full wt-mb-xs-2"> <input type="checkbox" id="create_new_list" hidden /> <label role="button" tabindex="0" data-add-list-trigger class="add-to-list-overlay-row wt-width-full wt-display-flex-xs wt-align-items-center"> <div class="add-list--trigger add-to-list-overlay-row--icon wt-sem-text-on-surface-dark wt-rounded-02 wt-overflow-hidden wt-display-flex-xs wt-justify-content-center wt-align-items-center"> <span class="etsy-icon"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M20,11H13V4a1,1,0,0,0-2,0v7H4a1,1,0,0,0,0,2h7v7a1,1,0,0,0,2,0V13h7A1,1,0,0,0,20,11Z" /> </svg> </span> </div> <p class="wt-pl-xs-2 wt-text-title-01"> Create new collection </p> </label> </span> </div> </fieldset> <div class="wt-overlay__sticky-footer-container wt-bt-xs wt-width-full"> <div class="wt-overlay__footer wt-justify-content-flex-end wt-pt-md-4"> <div class="wt-overlay__footer__action"> <button type="button" class="wt-btn wt-btn--primary wt-pr-md-7 wt-pl-md-7" data-wt-overlay-close>Done</button> </div> </div> </div> </div> <div class="wt-display-none" data-add-collection-section data-listing-id=""> <div data-collection-list-add> <div class="wt-overlay__header"> <h3 class="wt-text-heading wt-text-center-xs"> Create new collection </h3> </div> <div class="wt-display-flex-xs wt-flex-direction-row-xs wt-align-items-baseline"> <div class="wt-validation wt-width-full"> <label class="wt-label" for="edit-list">Name</label> <input data-add-collection-input autofocus aria-invalid="false" type="text" class="wt-input" id="edit-list" placeholder="Gifts, Home, Wedding, etc."> <div class="wt-display-flex-xs wt-justify-content-space-between"> <div> <div data-duplicated-name-alert data-error="duplicate_name" class="wt-validation__message wt-validation__message--is-hidden wt-sem-text-critical"> You've already used that name</div> <div data-too-long-alert data-error="too_long" class="wt-validation__message wt-validation__message--is-hidden wt-sem-text-critical"> Collection name is too long </div> </div> <p class="wt-text-right-xs wt-sem-text-secondary wt-mt-md-1" data-character-count>50</p> </div> </div> </div> <div class="wt-display-flex-sm wt-flex-direction-column-xs wt-flex-direction-row-md wt-justify-content-space-between wt-mt-xs-1"> <div class="wt-mb-xs-5 wt-mb-md-0"> <legend class="wt-text-title-01 wt-mt-xs-1"> Set to private? </legend> <p class="wt-text-body-01 wt-max-width-sm wt-ml-xs-0"> Keep collections to yourself or inspire other shoppers! Keep in mind that anyone can view public collectionsâ\x80\x94they may also appear in recommendations and other places. <a href="https://www.toscanamall.com/fr" target="_blank">View Etsyâ\x80\x99s Privacy Policy</a> </p> </div> <div> <div id="collection-privacy-control" class="wt-display-flex-md wt-flex-direction-column-xs wt-align-items-center" data-label-yes="Private" data-label-no="Public" data-selector="toggle-switch"> <div data-clg-id="WtSwitchInput" class="wt-switch__wrapper" data-wt-props-small="true" data-wt-props-label-text="Set to private?" data-wt-props-label-type="hidden" data-wt-neu-rendered> <div class="wt-switch__frame"> <input type="checkbox" class="wt-switch wt-switch--small" id="wt-switch-68cac229c59f2" /> <label class="wt-switch__toggle" for="wt-switch-68cac229c59f2"> <span class="wt-screen-reader-only"> Set to private? </span> </label> </div> </div> <div class="wt-display-flex-xs wt-flex-direction-row-reverse-xs wt-align-items-center wt-justify-content-flex-end wt-nudge-t-2"> <span data-toggle-private-text class="wt-text-body"> Public </span> <span class="etsy-icon wt-icon--smaller-xs wt-mr-xs-1 wt-display-none" data-toggle-private-icon=""> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M13 13v5h-2v-5z" /> <path fill-rule="evenodd" clip-rule="evenodd" d="M4 9.25A.25.25 0 0 1 4.25 9H7.5V6.5a4.5 4.5 0 0 1 9 0V9h3.25a.25.25 0 0 1 .25.25V18a4 4 0 0 1-4 4H8a4 4 0 0 1-4-4zM9.5 6.5a2.5 2.5 0 0 1 5 0V9h-5zM8 20a2 2 0 0 1-2-2v-7h12v7a2 2 0 0 1-2 2z" /> </svg> </span> <span class="etsy-icon wt-icon--smaller-xs wt-mr-xs-1" data-toggle-public-icon=""> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M12 2a10 10 0 1 0 10 10A10.01 10.01 0 0 0 12 2M9 18.883v.528a7.94 7.94 0 0 1-4.94-8.351l3.385 3.385a2.967 2.967 0 0 0 1.649 4.4zM17.5 15q.252 0 .5-.05V15a.99.99 0 0 0 .927.985A8 8 0 0 1 12 20c-.216 0-.427-.016-.639-.032l1.254-2.5-.015.006a2.97 2.97 0 0 0-.08-3.11A2.988 2.988 0 0 0 8 13.78V11h1a1 1 0 0 0 1-1V9a1 1 0 0 0 1-1 1 1 0 1 0 0-2H6.726A7.9 7.9 0 0 1 14 4.263V6a1 1 0 0 0 2 0v-.918a8 8 0 0 1 2 1.649V7h-1a1 1 0 1 0 0 2h2.411q.196.49.326 1H17a2.556 2.556 0 0 0-2 2.5 2.5 2.5 0 0 0 2.5 2.5" /> </svg> </span> </div> </div> </div> </div> <div data-collection-list-add-footer> <div class="wt-overlay__footer"> <div class="wt-overlay__footer__cancel"> <button type="button" class="wt-btn wt-btn--transparent wt-btn--transparent-flush-left wt-btn--transparent-flush-right" data-overlay-back>Cancel</button> </div> <div class="wt-overlay__footer__action"> <button type="button" class="wt-btn wt-btn--primary" data-add-collection-button disabled="true"> Create collection </button> </div> </div> </div> </div> <div class="wt-overlay wt-overlay--alert" id="make-public-list-modal" data-wt-overlay aria-hidden="true" role="alertdialog" aria-modal="false"> <div class="wt-overlay__modal" data-overlay-modal> <div class="wt-overlay__header"> <h2 class="wt-text-heading wt-text-center-xs"> Make your collection public? </h2> </div> <div class="wt-display-flex-xs wt-justify-content-space-between"> <div> <p> Public collections can be seen by the public, including other shoppers, and may show up in recommendations and other places. </p> </div> </div> <div class="wt-overlay__footer"> <div class="wt-overlay__footer__cancel"> <button type="button" data-selector="cancel-make-public-button" class="wt-btn wt-btn--transparent wt-btn--transparent-flush-left wt-btn--transparent-flush-right">Cancel</button> </div> <div class="wt-overlay__footer__action"> <button type="button" data-selector="make-public-button" class="wt-btn wt-btn--primary">Make Public</button> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div id="listing-page-post-add-to-cart-overlay"></div> <div class="wt-overlay wt-overlay--peek" id="conditional-sale-interstitial-overlay" aria-hidden="true" data-wt-overlay role="dialog" aria-modal="false" aria-label=""> <div class="wt-overlay__modal" data-overlay-modal> <button type="button" class="wt-btn wt-btn--transparent wt-btn--icon wt-overlay__close-icon wt-btn--light" data-wt-overlay-close> <span class="wt-icon"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M3.793 5.207 10.586 12l-6.793 6.793 1.414 1.414L12 13.414l6.793 6.793 1.414-1.414L13.414 12l6.793-6.793-1.414-1.414L12 10.586 5.207 3.793z" /> </svg> </span> </button> <div data-conditional-sale-content></div> <div data-conditional-sale-loading class="wt-width-full wt-height-full wt-z-index-3"> <div data-clg-id="WtSpinner" class="wt-spinner wt-spinner--02" aria-live="assertive"> <span class="wt-icon"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" aria-hidden="true" focusable="false"> <circle fill="transparent" cx="24" cy="24" r="21" /> </svg> </span> Loading </div> </div> <div data-conditional-sale-load-failure> <div data-clg-id="WtBanner" class="wt-banner wt-banner--warning-01" id="etsywebtoolkitbannerswtbanner68cac229c449e" data-prop-id="etsywebtoolkitbannerswtbanner68cac229c449e" data-prop-type="static" data-prop-style-type="warning-01" data-prop-is-open="true" data-wt-neu-rendered> <div data-clg-id="WtBannerContent" class="wt-banner__layout"> <div class="wt-display-flex-xs wt-align-items-center"> <div class="wt-banner__icon-frame wt-hide-xs wt-show-sm "> <span class="etsy-icon"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path fill-rule="evenodd" clip-rule="evenodd" d="M10.035 2.627a2 2 0 0 1 3.93 0 6.7 6.7 0 0 1 4.56 4.905L21 18.333H3L5.475 7.532a6.7 6.7 0 0 1 4.56-4.905m1.921 1.706a4.694 4.694 0 0 0-4.531 3.645L5.51 16.333h12.98l-1.915-8.355a4.694 4.694 0 0 0-4.531-3.645z" /> <path d="M12 22a2 2 0 0 0 2-2h-4a2 2 0 0 0 2 2" /> </svg> </span> </div> <div> <div> <p class="wt-banner__title"> There was a problem loading the content </p> </div> </div> </div> <div class="wt-banner__buttons"> <button data-clg-id="WtButton" class="wt-btn wt-btn--primary wt-btn--small" data-wt-banner-cta-button="" type="button"> Try again </button> </div> </div> </div> </div> </div> </div> <div id="footer" class="content-wrap-inner-blank-noborder"></div> <div id="ad-1"></div> </div> </main> <div id="collage-footer" class="site-footer chrome-footer chrome-footer--ehi "> <footer> <div class="chrome-footer__etsy-finds"> <div class="wt-text-center-xs wt-pl-xs-4 wt-pr-xs-4 wt-pt-xs-3 wt-pt-md-6"> <form action="/email-subscriptions/form?from_page=https%3A%2F%2Fwww.etsy.com%2Flisting%2F1479848745%2F2025-employee-annual-bonus-planner-excel%3Fls%3Ds%26ga_order%3Dmost_relevant%26ga_search_type%3Dall%26ga_view_type%3Dgallery%26ga_search_query%3Dbonus%26ref%3Dsr_gallery-1-6%26sr_prefetch%3D0%26dd%3D1%26content_source%3D0a0cca2b-9c1c-4b0e-a428-b45bcc835a54%25253A9989de2b0460fcb8a418a74c2b4056b213fc9a4d%26organic_search_click%3D1%26logging_key%3D0a0cca2b-9c1c-4b0e-a428-b45bcc835a54%253A9989de2b0460fcb8a418a74c2b4056b213fc9a4d" method="POST" class="subscribe-form not-signed-in" data-finds-form> <input type="hidden" name="campaign_name" value="" /> <input type="hidden" name="campaign_slug" value="new_at_etsy" /> <input type="hidden" name="subscribe" value="true" /> <input type="hidden" name="ref" value="" /> <input type="hidden" name="_nnc" value="3:1758118441:CHTmQ3j9BAlOt1Lsfqc5bCyN-8Nf:a4cfa581c1fdb923f9a2696c7304b5bcf4c3e28aca45db6a9a796ea06b649dc7" class="wt-display-none" /> <div class="wt-mb-xs-3"> <p class="wt-text-title-01 wt-mb-xs-2">Akses Lebih Mudah Dan Gacor Hanya Disitus Pemuda99</p> </div> <div class="wt-max-width-sm wt-validation"> <label class="wt-label wt-mt-xs-4 wt-screen-reader-only" for="email-list-signup-email-input">All Rights Reserved SEO-G</label> <div class="wt-input-btn-group" data-email-list-signup-form-elements> <input class="wt-input-btn-group__input wt-text-body-01" id="email-list-signup-email-input" placeholder="All Rights Reserved SEO-G" name="email_address" data-email-list-signup-email-input> <button type="submit" class="wt-btn wt-input-btn-group__btn" data-email-list-signup-btn-input> Subscribe <div class="wt-spinner wt-spinner--01 wt-display-none" role="alert" aria-live="assertive"> <span class="etsy-icon"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <circle fill="transparent" cx="12" cy="12" r="10" /> </svg> </span> Loading </div> </button> </div> </div> <div class="g-recaptcha-etsy" data-sitekey="6Ldgkr0ZAAAAAGnf08YhMemepXW29Ux9rtJCcBD3" data-etsy-autoload="false" data-recaptcha-version="enterprise" data-recaptcha-key-type="score" id="g-recaptcha-etsy-public_email_subscribe-score" data-badge="inline" data-recaptcha-action="public_email_subscribe"></div> <div class="wt-alert wt-alert--inline wt-alert--error-01 wt-display-none js-recaptcha-load-error"> <p class="wt-text-body-01">Captcha failed to load. Try using a different browser or disabling ad blockers.</p> </div> <input id="g-recaptcha-etsy-public_email_subscribe-score-input" type="hidden" name="enterprise_recaptcha_token" value="" /> <input id="g-recaptcha-etsy-public_email_subscribe-score-input-key-type" type="hidden" name="enterprise_recaptcha_token_key_type" value="score" /> <div class="wt-text-center wt-mt-xs-2 wt-validation wt-max-width-sm"> <div class="wt-validation__message wt-validation__message--is-hidden wt-text-body-01" id="email-list-signup-invalid-email" role="alert" aria-live="polite" data-invalid-email data-submission-error-response> Please enter a valid email address. </div> <div class="wt-alert wt-alert--inline wt-alert--status-01 wt-display-none wt-text-body-01" role="alert" aria-live="polite" data-requires-signin data-submission-response> Looks like you already have an account! Please <a href="/signin?from_page=https%3A%2F%2Fwww.etsy.com%2Flisting%2F1479848745%2F2025-employee-annual-bonus-planner-excel%3Fls%3Ds%26ga_order%3Dmost_relevant%26ga_search_type%3Dall%26ga_view_type%3Dgallery%26ga_search_query%3Dbonus%26ref%3Dsr_gallery-1-6%26sr_prefetch%3D0%26dd%3D1%26content_source%3D0a0cca2b-9c1c-4b0e-a428-b45bcc835a54%25253A9989de2b0460fcb8a418a74c2b4056b213fc9a4d%26organic_search_click%3D1%26logging_key%3D0a0cca2b-9c1c-4b0e-a428-b45bcc835a54%253A9989de2b0460fcb8a418a74c2b4056b213fc9a4d&workflow=c3Vic2NyaWJlX3RvX2VtYWlsX2xpc3Q6bmV3X2F0X2V0c3k6MTc1ODExOTA0MTo3NDgyNTU4ZDM5NzAyMjViNWZlNmUzZGIzYWQ4ZTg3MQ==" data-campaign-slug="new_at_etsy">Log in</a> to subscribe. </div> <div class="wt-alert wt-alert--inline wt-alert--status-01 wt-display-none wt-text-body-01" role="alert" aria-live="polite" data-requires-signup data-submission-response> You've already signed up for some newsletters, but you haven't confirmed your address. <a href="/join?from_url=https%3A%2F%2Fwww.etsy.com%2Flisting%2F1479848745%2F2025-employee-annual-bonus-planner-excel%3Fls%3Ds%26ga_order%3Dmost_relevant%26ga_search_type%3Dall%26ga_view_type%3Dgallery%26ga_search_query%3Dbonus%26ref%3Dsr_gallery-1-6%26sr_prefetch%3D0%26dd%3D1%26content_source%3D0a0cca2b-9c1c-4b0e-a428-b45bcc835a54%25253A9989de2b0460fcb8a418a74c2b4056b213fc9a4d%26organic_search_click%3D1%26logging_key%3D0a0cca2b-9c1c-4b0e-a428-b45bcc835a54%253A9989de2b0460fcb8a418a74c2b4056b213fc9a4d" class="" data-campaign-slug="new_at_etsy">Register</a> to confirm your address. </div> <div class="wt-alert wt-alert--inline wt-alert--success-01 wt-display-none wt-text-body-01" role="alert" aria-live="polite" data-success-signed-in data-success-no-email-signed-in data-success-no-email-signed-out data-submission-response> You've been successfully signed up! </div> <div class="wt-alert wt-alert--inline wt-alert--success-01 wt-display-none wt-text-body-01" role="alert" aria-live="polite" data-success-signed-out data-submission-response> Great! We've sent you an email to confirm your subscription. </div> <div class="wt-validation__message wt-validation__message--is-hidden wt-text-body-01" id="email-list-signup-generic-error" role="alert" aria-live="polite" data-generic-error data-submission-error-response> There was a problem subscribing you to this newsletter. </div> </div> </form> </div> </div> <div data-appears-component-name="impact_message" data-appears-event-data='{"impact_name":"footer_renewable_impact","impact_themes":["sustainability"],"impact_audiences":["buyers"]}'> <div class="footer-impact-callout wt-position-relative"> <div class="wt-bg-denim-light wt-sem-text-on-surface-dark wt-text-center-xs wt-text-body-01 wt-pb-xs-4 wt-pt-xs-4"> <div class="wt-popover wt-popover--top" data-wt-popover> <button data-wt-popover-trigger class="wt-popover__trigger wt-popover__trigger--underline wt-display-flex-md wt-align-items-center" aria-describedby="footer-environmental-impact-popover-content"> <div class="wt-flex-md-auto wt-mb-xs-1 wt-mb-md-0"> <span class="wt-icon wt-icon--larger"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 96 96" aria-hidden="true" focusable="false"> <path d="M60.1 38H49v11h-2V38H35.9c1.931 9.368 6.626 17 12.1 17 5.474 0 10.171-7.632 12.1-17zm-25.145-9.5c-.003 2.511.19 5.019.577 7.5H47V18.522l-10.925.238a41.683 41.683 0 00-1.12 9.74zM47 2.31c-4.1 1.24-8.18 7.168-10.38 14.437L47 16.52V2.31z" /> <path d="M57.52 9.45l1.784-.9a31.775 31.775 0 012.558 7.65l9.117-.2.042 2-8.78.19c.55 3.41.818 6.857.8 10.31a50.836 50.836 0 01-.54 7.5H72v2h-9.846c-1.6 8.2-5.244 15.053-9.862 17.754C66.834 54.079 76 43.793 76 28.589c0-8.962-2.958-16.353-8.554-21.373A25.424 25.424 0 0049 1.04v15.438l10.83-.236a29.32 29.32 0 00-2.31-6.791zM43.51 55.643c-4.525-2.78-8.086-9.564-9.665-17.643H24v-2h9.5a50.84 50.84 0 01-.549-7.5 43.776 43.776 0 011.075-9.7l-9.009.2-.042-2 9.562-.208c1.89-6.667 5.317-12.436 9.432-15.143C29.71 4.412 20 15.13 20 28.589a27.636 27.636 0 0023.51 27.054z" /> <path d="M61.045 28.5a60.27 60.27 0 00-.818-10.265L49 18.479v17.52h11.468c.388-2.48.58-4.988.577-7.5zM91.7 60c-2.182 4.525-5.734 8.62-10.832 13.719l-1.414-1.414c6.6-6.6 10.511-11.424 12.08-17.7.072-.415.137-.832.215-1.278.607-3.48.262-5.951-1.027-6.068-.72-.066-1.559.68-1.947 2.3a30.158 30.158 0 01-2.454 8.148c-1.78 4.663-8.575 11.048-8.865 11.318l-1.366-1.461c.068-.063 6.8-6.391 8.381-10.62l.061-.133a30.644 30.644 0 002.526-9.148c.11-1.886.095-6.433-1.793-6.552-2.085-.132-2.537 3.505-3.367 7.379-.259 1.21-.89 3.456-1.153 4.243a1.55 1.55 0 01-.09.177c-1.386 4.053-5.32 7.859-5.515 8.045-2.984 2.983-9.707 9.74-9.707 9.74L64.01 69.3s6.726-6.761 9.727-9.761a28.158 28.158 0 003.064-3.6c.5-.788 1.452-2.646.55-3.572-1.148-1.178-3.287-.648-6.08.748-1.98.992-11.21 7.08-15.384 13.34-1.99 2.985-2.772 8.839-3.042 14.2l13.18 2.724 6.8 1.359a8.92 8.92 0 011-.778c7.075-4.74 14.663-11.833 17.317-16.54 3.566-6.32 1.988-7.52.558-7.42zM52.774 82.673l-.77 10.252 1.993.15.595-7.913 10.616 2.123 3.765.778L70.02 93.2l1.96-.4-.885-4.338 2.592.518.392-1.96-8.447-1.69-12.858-2.657zm-29.242 2.055l6.77-1.354 13.206-2.73c-.27-5.36-1.052-11.214-3.042-14.2-4.173-6.258-13.4-12.347-15.384-13.34-2.793-1.4-4.932-1.925-6.08-.747-.9.926.054 2.784.55 3.572a28.158 28.158 0 003.064 3.6c3 3 9.727 9.76 9.727 9.76l-1.418 1.41s-6.723-6.757-9.707-9.74c-.2-.186-4.129-3.992-5.515-8.045a1.74 1.74 0 01-.09-.177c-.263-.787-.894-3.033-1.153-4.243-.83-3.874-1.282-7.511-3.367-7.38-1.888.12-1.9 4.667-1.793 6.553a30.645 30.645 0 002.526 9.148l.061.133c1.58 4.229 8.313 10.557 8.381 10.62L18.9 69.034c-.29-.27-7.084-6.655-8.865-11.318a30.16 30.16 0 01-2.454-8.148c-.388-1.622-1.226-2.37-1.947-2.3-1.287.114-1.634 2.586-1.025 6.065.078.446.143.863.215 1.278C6.394 60.883 10.3 65.7 16.9 72.307l-1.41 1.414c-5.1-5.1-8.65-9.194-10.832-13.72-1.434-.104-3.013 1.1.553 7.42 2.654 4.706 10.238 11.8 17.321 16.529a8.92 8.92 0 011 .778zm7.175.605l-8.433 1.687.393 1.96 2.591-.518-.885 4.338 1.96.4 1.047-5.137 3.75-.775 10.631-2.126.595 7.913 1.994-.15-.77-10.252-12.873 2.66z" /> </svg> </span> </div> <div class="wt-mr-xs-2 wt-ml-xs-2 wt-mr-sm-0 wt-ml-sm-0 wt-ml-md-2 wt-text-body-01 wt-flex-md-auto"> Pemuda99 : Link Login Situs Alternatif Resmi Mudah Menang dan Gacor </div> </button> <div id="footer-environmental-impact-popover-content" role="tooltip"> Pemuda99 menyediakan link login alternatif resmi untuk para member yang disupport sistem terupdate dimana login semakin cepat dan mudah menang disemua permainan, raih keuntungan dengan waktu cepat! </div> </div> </div> </div> </div> <div class="chrome-footer__final-container"> <div class="chrome-footer__final"> <div class="chrome-footer__final-col"> <a id="locale-picker-trigger" class="wt-btn wt-btn--transparent wt-btn--transparent-flush-left wt-btn--transparent-flush-right wt-btn--light wt-btn--small" aria-label="Update your settings Indonesia English (US) Rp (IDR)" href="https://www.toscanamall.com/fr" data-aria-controls="wt-locale-picker-overlay"> <span class="wt-display-inline-block wt-nudge-t-2 wt-vertical-align-middle"> <span class="etsy-icon locale-icon-svg-default wt-display-block wt-text-white wt-icon--smaller-xs wt-nudge-b-2"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M12,2A10,10,0,1,0,22,12,10.012,10.012,0,0,0,12,2ZM9,18.883v0.528A7.938,7.938,0,0,1,4.06,11.06l3.385,3.385a2.967,2.967,0,0,0,1.649,4.4ZM17.5,15a2.509,2.509,0,0,0,.5-0.05V15a0.992,0.992,0,0,0,.927.985A8,8,0,0,1,12,20c-0.216,0-.427-0.016-0.639-0.032l1.254-2.5-0.015.006A2.968,2.968,0,0,0,13,16a2.988,2.988,0,0,0-5-2.221V11H9a1,1,0,0,0,1-1V9a1,1,0,0,0,1-1,1,1,0,0,0,0-2H6.726A7.9,7.9,0,0,1,14,4.263V6a1,1,0,0,0,2,0V5.082a8.047,8.047,0,0,1,2,1.649V7H17a1,1,0,0,0,0,2h2.411a7.941,7.941,0,0,1,.326,1H17a2.556,2.556,0,0,0-2,2.5A2.5,2.5,0,0,0,17.5,15Z" /> </svg> </span> </span> <span class="wt-display-inline-block wt-vertical-align-middle">  Indonesia   |   English (US)   |   Rp (IDR)</span> </a> </div> <div class="chrome-footer__final-col"> <span class="chrome-footer__copyright"> © 2025 PEMUDA99, Inc. </span> <ul class="chrome-footer__final-links wt-list-inline"> <li class="wt-list-inline__item"> <a href="https://www.toscanamall.com/fr" class="chrome-footer__final-link"> Terms of Use </a> </li> <li class="wt-list-inline__item"> <a href="https://www.toscanamall.com/fr" class="chrome-footer__final-link"> Privacy </a> </li> <li class="wt-list-inline__item"> <a href="https://www.toscanamall.com/fr" class="chrome-footer__final-link"> Interest-based ads </a> </li> <li class="wt-list-inline__item"> <a href="https://www.toscanamall.com/fr" class="chrome-footer__final-link"> Local Shops </a> </li> <li class="wt-list-inline__item"> <button aria-controls="country-picker" style-type="primary" class="wt-text-link chrome-footer__final-link"> Regions </button> <div data-clg-id="WtOverlay" class="wt-overlay wt-overlay--large wt-overlay--has-close-icon" id="country-picker" aria-hidden="true" aria-modal="false" role="dialog" aria-label="Regions Etsy does business in" data-wt-overlay> <div class="wt-overlay__modal" data-overlay-modal> <button type="button" class="wt-btn wt-btn--transparent wt-btn--icon wt-overlay__close-icon wt-btn--light" aria-label="Close" data-wt-overlay-close> <span class="wt-icon"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M13.414,12l6.293-6.293a1,1,0,0,0-1.414-1.414L12,10.586,5.707,4.293A1,1,0,0,0,4.293,5.707L10.586,12,4.293,18.293a1,1,0,1,0,1.414,1.414L12,13.414l6.293,6.293a1,1,0,0,0,1.414-1.414Z" /> </svg> </span> </button> <div data-clg-id="WtOverlayHeader" class="wt-overlay__header"> <p class="wt-text-heading">Regions Etsy does business in:</p> </div> <div class="wt-display-flex-md wt-pt-xs-1 wt-pt-md-1 wt-text-body-01"> <div class="wt-flex-basis-sm-full wt-flex-basis-md-auto wt-flex-wrap"> <div class="wt-pt-xs-1 wt-pb-xs-1 wt-pl-xs-0 wt-pr-xs-0 wt-mb-md-5 wt-mb-xs-4 country-picker-col-space"> <a href="https://www.toscanamall.com/fr">Australia</a> </div> <div class="wt-pt-xs-1 wt-pb-xs-1 wt-pl-xs-0 wt-pr-xs-0 wt-mb-md-5 wt-mb-xs-4 country-picker-col-space"> <a href="https://www.toscanamall.com/fr">Austria</a> </div> <div class="wt-pt-xs-1 wt-pb-xs-1 wt-pl-xs-0 wt-pr-xs-0 wt-mb-md-5 wt-mb-xs-4 country-picker-col-space"> <a href="https://www.toscanamall.com/fr">Belgium</a> </div> <div class="wt-pt-xs-1 wt-pb-xs-1 wt-pl-xs-0 wt-pr-xs-0 wt-mb-md-5 wt-mb-xs-4 country-picker-col-space"> <a href="https://www.toscanamall.com/fr">Canada</a> </div> <div class="wt-pt-xs-1 wt-pb-xs-1 wt-pl-xs-0 wt-pr-xs-0 wt-mb-md-5 wt-mb-xs-4 country-picker-col-space"> <a href="https://www.toscanamall.com/fr">Canada (French)</a> </div> <div class="wt-pt-xs-1 wt-pb-xs-1 wt-pl-xs-0 wt-pr-xs-0 wt-mb-md-5 wt-mb-xs-4 country-picker-col-space"> <a href="https://www.toscanamall.com/fr">Denmark</a> </div> <div class="wt-pt-xs-1 wt-pb-xs-1 wt-pl-xs-0 wt-pr-xs-0 wt-mb-md-5 wt-mb-xs-4 country-picker-col-space"> <a href="https://www.toscanamall.com/fr">Finland</a> </div> </div> <div class="wt-flex-basis-sm-full wt-flex-basis-md-auto wt-flex-wrap"> <div class="wt-pt-xs-1 wt-pb-xs-1 wt-pl-xs-0 wt-pr-xs-0 wt-mb-md-5 wt-mb-xs-4 country-picker-col-space"> <a href="https://www.toscanamall.com/fr">France</a> </div> <div class="wt-pt-xs-1 wt-pb-xs-1 wt-pl-xs-0 wt-pr-xs-0 wt-mb-md-5 wt-mb-xs-4 country-picker-col-space"> <a href="https://www.toscanamall.com/fr">Germany</a> </div> <div class="wt-pt-xs-1 wt-pb-xs-1 wt-pl-xs-0 wt-pr-xs-0 wt-mb-md-5 wt-mb-xs-4 country-picker-col-space"> <a href="https://www.toscanamall.com/fr">Hong Kong</a> </div> <div class="wt-pt-xs-1 wt-pb-xs-1 wt-pl-xs-0 wt-pr-xs-0 wt-mb-md-5 wt-mb-xs-4 country-picker-col-space"> <a href="https://www.toscanamall.com/fr">India</a> </div> <div class="wt-pt-xs-1 wt-pb-xs-1 wt-pl-xs-0 wt-pr-xs-0 wt-mb-md-5 wt-mb-xs-4 country-picker-col-space"> <a href="https://www.toscanamall.com/fr">Ireland</a> </div> <div class="wt-pt-xs-1 wt-pb-xs-1 wt-pl-xs-0 wt-pr-xs-0 wt-mb-md-5 wt-mb-xs-4 country-picker-col-space"> <a href="https://www.toscanamall.com/fr">Israel</a> </div> <div class="wt-pt-xs-1 wt-pb-xs-1 wt-pl-xs-0 wt-pr-xs-0 wt-mb-md-5 wt-mb-xs-4 country-picker-col-space"> <a href="https://www.toscanamall.com/fr">Italy</a> </div> </div> <div class="wt-flex-basis-sm-full wt-flex-basis-md-auto wt-flex-wrap"> <div class="wt-pt-xs-1 wt-pb-xs-1 wt-pl-xs-0 wt-pr-xs-0 wt-mb-md-5 wt-mb-xs-4 country-picker-col-space"> <a href="https://www.toscanamall.com/fr">Japan</a> </div> <div class="wt-pt-xs-1 wt-pb-xs-1 wt-pl-xs-0 wt-pr-xs-0 wt-mb-md-5 wt-mb-xs-4 country-picker-col-space"> <a href="https://www.toscanamall.com/fr">Mexico</a> </div> <div class="wt-pt-xs-1 wt-pb-xs-1 wt-pl-xs-0 wt-pr-xs-0 wt-mb-md-5 wt-mb-xs-4 country-picker-col-space"> <a href="https://www.toscanamall.com/fr">New Zealand</a> </div> <div class="wt-pt-xs-1 wt-pb-xs-1 wt-pl-xs-0 wt-pr-xs-0 wt-mb-md-5 wt-mb-xs-4 country-picker-col-space"> <a href="https://www.toscanamall.com/fr">Norway</a> </div> <div class="wt-pt-xs-1 wt-pb-xs-1 wt-pl-xs-0 wt-pr-xs-0 wt-mb-md-5 wt-mb-xs-4 country-picker-col-space"> <a href="https://www.toscanamall.com/fr">Poland</a> </div> <div class="wt-pt-xs-1 wt-pb-xs-1 wt-pl-xs-0 wt-pr-xs-0 wt-mb-md-5 wt-mb-xs-4 country-picker-col-space"> <a href="https://www.toscanamall.com/fr">Portugal</a> </div> <div class="wt-pt-xs-1 wt-pb-xs-1 wt-pl-xs-0 wt-pr-xs-0 wt-mb-md-5 wt-mb-xs-4 country-picker-col-space"> <a href="https://www.toscanamall.com/fr">Singapore</a> </div> </div> <div class="wt-flex-basis-sm-full wt-flex-basis-md-auto wt-flex-wrap"> <div class="wt-pt-xs-1 wt-pb-xs-1 wt-pl-xs-0 wt-pr-xs-0 wt-mb-md-5 wt-mb-xs-4"> <a href="https://www.toscanamall.com/fr">Spain</a> </div> <div class="wt-pt-xs-1 wt-pb-xs-1 wt-pl-xs-0 wt-pr-xs-0 wt-mb-md-5 wt-mb-xs-4"> <a href="https://www.toscanamall.com/fr">Sweden</a> </div> <div class="wt-pt-xs-1 wt-pb-xs-1 wt-pl-xs-0 wt-pr-xs-0 wt-mb-md-5 wt-mb-xs-4"> <a href="https://www.toscanamall.com/fr">Switzerland</a> </div> <div class="wt-pt-xs-1 wt-pb-xs-1 wt-pl-xs-0 wt-pr-xs-0 wt-mb-md-5 wt-mb-xs-4"> <a href="https://www.toscanamall.com/fr">The Netherlands</a> </div> <div class="wt-pt-xs-1 wt-pb-xs-1 wt-pl-xs-0 wt-pr-xs-0 wt-mb-md-5 wt-mb-xs-4"> <a href="https://www.toscanamall.com/fr">United Kingdom</a> </div> <div class="wt-pt-xs-1 wt-pb-xs-1 wt-pl-xs-0 wt-pr-xs-0 wt-mb-md-5 wt-mb-xs-4"> <a href="https://www.toscanamall.com/fr">United States</a> </div> </div> </div> <div data-clg-id="WtOverlayFooter" class="wt-overlay__footer wt-justify-content-flex-end wt-pt-xs-2 wt-pt-sm-2 wt-pb-sm-0 wt-pt-md-2 wt-height-full"> <div data-clg-id="WtOverlayFooterButton" class="wt-overlay__footer__action"> <button data-clg-id="WtButton" class="wt-btn wt-btn--filled wt-pt-xs-0 wt-pb-xs-0 wt-mb-xs-0" data-wt-overlay-close="true"> Got it </button> </div> </div> </div> </div> </li> </ul> </div> </div> </div> <div data-toolkit-overlay data-wt-overlay aria-hidden="true" role="dialog" aria-labelledby="wt-locale-picker-overlay-title" data-overlay-transition="1" id="wt-locale-picker-overlay" class="v2-locale-picker-overlay wt-overlay"> <div class="wt-overlay__modal wt-text-left-xs" data-overlay-modal> <div class="wt-overlay__header"> <h2 class="wt-text-title-large" id="wt-locale-picker-overlay-title">Update your settings</h2> </div> <form method="post" action="" onsubmit="return false"> <input type="hidden" name="region_code" value="" /> <p class="wt-mb-xs-3 wt-text-body-01"> Set where you live, what language you speak, and the currency you use. <a class="wt-text-link" href="https://www.toscanamall.com/fr" target="_blank">Learn more.</a> </p> <div id="locale-picker-sections-wrap"> <!-- <div id="locale_picker_region_code" class="locale_picker_section wt-pb-xs-3 wt-text-left-xs wt-b-xs-none"><label class="wt-label wt-pb-xs-1" for="locale-overlay-select-region_code">Region</label><div class="wt-select wt-text-body-01"><select id="locale-overlay-select-region_code" name="region_code" class="wt-select__element"><option value="AU" >Australia</option><option value="CA" >Canada</option><option value="FR" >France</option><option value="DE" >Germany</option><option value="GR" >Greece</option><option value="IN" >India</option><option value="IE" >Ireland</option><option value="IT" >Italy</option><option value="JP" >Japan</option><option value="NZ" >New Zealand</option><option value="PL" >Poland</option><option value="PT" >Portugal</option><option value="ES" >Spain</option><option value="NL" >The Netherlands</option><option value="GB" >United Kingdom</option><option value="US" >United States</option><optgroup label="————————"><option value="AF" >Afghanistan</option><option value="AX" >Ã\x85land Islands</option><option value="AL" >Albania</option><option value="DZ" >Algeria</option><option value="AS" >American Samoa</option><option value="AD" >Andorra</option><option value="AO" >Angola</option><option value="AI" >Anguilla</option><option value="AG" >Antigua and Barbuda</option><option value="AR" >Argentina</option><option value="AM" >Armenia</option><option value="AW" >Aruba</option><option value="AU" >Australia</option><option value="AT" >Austria</option><option value="AZ" >Azerbaijan</option><option value="BS" >Bahamas</option><option value="BH" >Bahrain</option><option value="BD" >Bangladesh</option><option value="BB" >Barbados</option><option value="BE" >Belgium</option><option value="BZ" >Belize</option><option value="BJ" >Benin</option><option value="BM" >Bermuda</option><option value="BT" >Bhutan</option><option value="BO" >Bolivia</option><option value="BA" >Bosnia and Herzegovina</option><option value="BW" >Botswana</option><option value="BV" >Bouvet Island</option><option value="BR" >Brazil</option><option value="IO" >British Indian Ocean Territory</option><option value="VG" >British Virgin Islands</option><option value="BN" >Brunei</option><option value="BG" >Bulgaria</option><option value="BF" >Burkina Faso</option><option value="BI" >Burundi</option><option value="KH" >Cambodia</option><option value="CM" >Cameroon</option><option value="CA" >Canada</option><option value="CV" >Cape Verde</option><option value="KY" >Cayman Islands</option><option value="CF" >Central African Republic</option><option value="TD" >Chad</option><option value="CL" >Chile</option><option value="CN" >China</option><option value="CX" >Christmas Island</option><option value="CC" >Cocos (Keeling) Islands</option><option value="CO" >Colombia</option><option value="KM" >Comoros</option><option value="CG" >Congo, Republic of</option><option value="CK" >Cook Islands</option><option value="CR" >Costa Rica</option><option value="HR" >Croatia</option><option value="CW" >Curaçao</option><option value="CY" >Cyprus</option><option value="CZ" >Czech Republic</option><option value="DK" >Denmark</option><option value="DJ" >Djibouti</option><option value="DM" >Dominica</option><option value="DO" >Dominican Republic</option><option value="EC" >Ecuador</option><option value="EG" >Egypt</option><option value="SV" >El Salvador</option><option value="GQ" >Equatorial Guinea</option><option value="ER" >Eritrea</option><option value="EE" >Estonia</option><option value="ET" >Ethiopia</option><option value="FK" >Falkland Islands (Malvinas)</option><option value="FO" >Faroe Islands</option><option value="FJ" >Fiji</option><option value="FI" >Finland</option><option value="FR" >France</option><option value="GF" >French Guiana</option><option value="PF" >French Polynesia</option><option value="TF" >French Southern Territories</option><option value="GA" >Gabon</option><option value="GM" >Gambia</option><option value="GE" >Georgia</option><option value="DE" >Germany</option><option value="GH" >Ghana</option><option value="GI" >Gibraltar</option><option value="GR" >Greece</option><option value="GL" >Greenland</option><option value="GD" >Grenada</option><option value="GP" >Guadeloupe</option><option value="GU" >Guam</option><option value="GT" >Guatemala</option><option value="GG" >Guernsey</option><option value="GN" >Guinea</option><option value="GW" >Guinea-Bissau</option><option value="GY" >Guyana</option><option value="HT" >Haiti</option><option value="HM" >Heard Island and McDonald Islands</option><option value="VA" >Holy See (Vatican City State)</option><option value="HN" >Honduras</option><option value="HK" >Hong Kong</option><option value="HU" >Hungary</option><option value="IS" >Iceland</option><option value="IN" >India</option><option value="ID" selected="selected">Indonesia</option><option value="IQ" >Iraq</option><option value="IE" >Ireland</option><option value="IM" >Isle of Man</option><option value="IL" >Israel</option><option value="IT" >Italy</option><option value="IC" >Ivory Coast</option><option value="JM" >Jamaica</option><option value="JP" >Japan</option><option value="JE" >Jersey</option><option value="JO" >Jordan</option><option value="KZ" >Kazakhstan</option><option value="KE" >Kenya</option><option value="KI" >Kiribati</option><option value="KV" >Kosovo</option><option value="KW" >Kuwait</option><option value="KG" >Kyrgyzstan</option><option value="LA" >Laos</option><option value="LV" >Latvia</option><option value="LB" >Lebanon</option><option value="LS" >Lesotho</option><option value="LR" >Liberia</option><option value="LY" >Libya</option><option value="LI" >Liechtenstein</option><option value="LT" >Lithuania</option><option value="LU" >Luxembourg</option><option value="MO" >Macao</option><option value="MK" >Macedonia</option><option value="MG" >Madagascar</option><option value="MW" >Malawi</option><option value="MY" >Malaysia</option><option value="MV" >Maldives</option><option value="ML" >Mali</option><option value="MT" >Malta</option><option value="MH" >Marshall Islands</option><option value="MQ" >Martinique</option><option value="MR" >Mauritania</option><option value="MU" >Mauritius</option><option value="YT" >Mayotte</option><option value="MX" >Mexico</option><option value="FM" >Micronesia, Federated States of</option><option value="MD" >Moldova</option><option value="MC" >Monaco</option><option value="MN" >Mongolia</option><option value="ME" >Montenegro</option><option value="MS" >Montserrat</option><option value="MA" >Morocco</option><option value="MZ" >Mozambique</option><option value="MM" >Myanmar (Burma)</option><option value="NA" >Namibia</option><option value="NR" >Nauru</option><option value="NP" >Nepal</option><option value="AN" >Netherlands Antilles</option><option value="NC" >New Caledonia</option><option value="NZ" >New Zealand</option><option value="NI" >Nicaragua</option><option value="NE" >Niger</option><option value="NG" >Nigeria</option><option value="NU" >Niue</option><option value="NF" >Norfolk Island</option><option value="MP" >Northern Mariana Islands</option><option value="NO" >Norway</option><option value="OM" >Oman</option><option value="PK" >Pakistan</option><option value="PW" >Palau</option><option value="PS" >Palestinian Territory, Occupied</option><option value="PA" >Panama</option><option value="PG" >Papua New Guinea</option><option value="PY" >Paraguay</option><option value="PE" >Peru</option><option value="PH" >Philippines</option><option value="PL" >Poland</option><option value="PT" >Portugal</option><option value="PR" >Puerto Rico</option><option value="QA" >Qatar</option><option value="RE" >Reunion</option><option value="RO" >Romania</option><option value="RW" >Rwanda</option><option value="SH" >Saint Helena</option><option value="KN" >Saint Kitts and Nevis</option><option value="LC" >Saint Lucia</option><option value="MF" >Saint Martin (French part)</option><option value="PM" >Saint Pierre and Miquelon</option><option value="VC" >Saint Vincent and the Grenadines</option><option value="WS" >Samoa</option><option value="SM" >San Marino</option><option value="ST" >Sao Tome and Principe</option><option value="SA" >Saudi Arabia</option><option value="SN" >Senegal</option><option value="RS" >Serbia</option><option value="SC" >Seychelles</option><option value="SL" >Sierra Leone</option><option value="SG" >Singapore</option><option value="SX" >Sint Maarten (Dutch part)</option><option value="SK" >Slovakia</option><option value="SI" >Slovenia</option><option value="SB" >Solomon Islands</option><option value="SO" >Somalia</option><option value="ZA" >South Africa</option><option value="GS" >South Georgia and the South Sandwich Islands</option><option value="KR" >South Korea</option><option value="SS" >South Sudan</option><option value="ES" >Spain</option><option value="LK" >Sri Lanka</option><option value="SD" >Sudan</option><option value="SR" >Suriname</option><option value="SJ" >Svalbard and Jan Mayen</option><option value="SZ" >Swaziland</option><option value="SE" >Sweden</option><option value="CH" >Switzerland</option><option value="TW" >Taiwan</option><option value="TJ" >Tajikistan</option><option value="TZ" >Tanzania</option><option value="TH" >Thailand</option><option value="NL" >The Netherlands</option><option value="TL" >Timor-Leste</option><option value="TG" >Togo</option><option value="TK" >Tokelau</option><option value="TO" >Tonga</option><option value="TT" >Trinidad</option><option value="TN" >Tunisia</option><option value="TR" >Türkiye</option><option value="TM" >Turkmenistan</option><option value="TC" >Turks and Caicos Islands</option><option value="TV" >Tuvalu</option><option value="UG" >Uganda</option><option value="UA" >Ukraine</option><option value="AE" >United Arab Emirates</option><option value="GB" >United Kingdom</option><option value="US" >United States</option><option value="UM" >United States Minor Outlying Islands</option><option value="UY" >Uruguay</option><option value="VI" >U.S. Virgin Islands</option><option value="UZ" >Uzbekistan</option><option value="VU" >Vanuatu</option><option value="VE" >Venezuela</option><option value="VN" >Vietnam</option><option value="WF" >Wallis and Futuna</option><option value="EH" >Western Sahara</option><option value="YE" >Yemen</option><option value="CD" >Zaire (Democratic Republic of Congo)</option><option value="ZM" >Zambia</option><option value="ZW" >Zimbabwe</option></optgroup></select></div></div><div id="locale_picker_language_code" class="locale_picker_section wt-pb-xs-3 wt-text-left-xs wt-b-xs-none"><label class="wt-label wt-pb-xs-1" for="locale-overlay-select-language_code">Language</label><div class="wt-select wt-text-body-01"><select id="locale-overlay-select-language_code" name="language_code" class="wt-select__element"><option value="de" >Deutsch</option><option value="en-GB" >English (UK)</option><option value="en-IN" >English (IN)</option><option value="en-US" selected="selected">English (US)</option><option value="es" >Español</option><option value="fr" >Français</option><option value="it" >Italiano</option><option value="ja" >æ\x97¥æ\x9c¬èª\x9e</option><option value="nl" >Nederlands</option><option value="pl" >Polski</option><option value="pt" >Português</option><option value="ru" >Ð Ñ\x83Ñ\x81Ñ\x81кий</option></select></div></div><div id="locale_picker_currency_code" class="locale_picker_section wt-pb-xs-3 wt-text-left-xs wt-b-xs-none"><label class="wt-label wt-pb-xs-1" for="locale-overlay-select-currency_code">Currency</label><div class="wt-select wt-text-body-01"><select id="locale-overlay-select-currency_code" name="currency_code" class="wt-select__element"><option value="USD" >$ United States Dollar (USD)</option><option value="CAD" >$ Canadian Dollar (CAD)</option><option value="EUR" >â\x82¬ Euro (EUR)</option><option value="GBP" >£ British Pound (GBP)</option><option value="AUD" >$ Australian Dollar (AUD)</option><option value="JPY" >Â¥ Japanese Yen (JPY)</option><option value="CNY" >Â¥ Chinese Yuan (CNY)</option><option value="CZK" >KÄ\x8d Czech Koruna (CZK)</option><option value="DKK" >kr Danish Krone (DKK)</option><option value="HKD" >$ Hong Kong Dollar (HKD)</option><option value="HUF" >Ft Hungarian Forint (HUF)</option><option value="INR" >â\x82¹ Indian Rupee (INR)</option><option value="IDR" selected="selected">Rp Indonesian Rupiah (IDR)</option><option value="ILS" >â\x82ª Israeli Shekel (ILS)</option><option value="MYR" >RM Malaysian Ringgit (MYR)</option><option value="MXN" >$ Mexican Peso (MXN)</option><option value="MAD" >DH Moroccan Dirham (MAD)</option><option value="NZD" >$ New Zealand Dollar (NZD)</option><option value="NOK" >kr Norwegian Krone (NOK)</option><option value="PHP" >â\x82± Philippine Peso (PHP)</option><option value="SGD" >$ Singapore Dollar (SGD)</option><option value="VND" >â\x82« Vietnamese Dong (VND)</option><option value="ZAR" >R South African Rand (ZAR)</option><option value="SEK" >kr Swedish Krona (SEK)</option><option value="CHF" >Swiss Franc (CHF)</option><option value="THB" >฿ Thai Baht (THB)</option><option value="TWD" >NT$ Taiwan New Dollar (TWD)</option><option value="TRY" >â\x82º Turkish Lira (TRY)</option><option value="PLN" >zÅ\x82 Polish Zloty (PLN)</option><option value="BRL" >R$ Brazilian Real (BRL)</option></select></div></div> --> </div> <div class="wt-overlay__footer wt-justify-content-flex-end"> <div class="wt-overlay__footer__action"> <a type="button" data-wt-overlay-close class="wt-btn wt-btn--outline wt-mb-xs-1 wt-mb-md-0 wt-mr-md-1" name="cancel"> Cancel <div class="wt-spinner wt-spinner--01" role="alert" aria-live="assertive"> <span class="etsy-icon"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <circle fill="transparent" cx="12" cy="12" r="10" /> </svg> </span> Loading </div> </a> <button class="wt-btn wt-btn--filled" action-type="primary" type="submit" name="save" id="locale-overlay-save"> Save <div class="wt-spinner wt-spinner--01" role="alert" aria-live="assertive"> <span class="etsy-icon"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <circle fill="transparent" cx="12" cy="12" r="10" /> </svg> </span> Loading </div> </button> </div> </div> </form> </div> </div> </footer> </div> <footer class="footer-cta"> <div class="cta-footer"> <a href="https://pemuda99-link.com/login/" class="btn login">LOGIN</a> <a href="https://pemuda99-link.com/login/" class="btn daftar">DAFTAR</a> </div></footer> <style>.footer-cta { position: fixed; bottom: 0; left: 0; right: 0; background: #bb0000; border-top: 2px solid #ff0000; padding: 12px 18px; z-index: 9999; /* biar selalu di atas konten */} .cta-footer { display: flex; justify-content: space-between; /* kiri rata tengah rata kanan */ align-items: center; max-width: 900px; margin: 0 auto; gap: 10px;} .cta-footer .btn { flex: 1; padding: 12px 0; font-size: 15px; font-weight: 700; border-radius: 50px; /* bulet */ text-decoration: none; text-align: center; color: #000000; transition: all 0.3s ease; margin: 0 4px;} /* Tombol khusus */.cta-footer .login { background: linear-gradient(135deg, #ffffff, #ffffff); animation: kedut 1s infinite;} .cta-footer .daftar { background: linear-gradient(135deg, #ffffff, #ffffff); animation: kedut 1s infinite;} /* Efek kedut-kedut */@keyframes kedut { 0% { transform: scale(1) rotate(0deg); } 20% { transform: scale(1.05) rotate(-1deg); } 40% { transform: scale(0.97) rotate(1deg); } 60% { transform: scale(1.04) rotate(-1deg); } 80% { transform: scale(0.98) rotate(1deg); } 100% { transform: scale(1) rotate(0deg); }} .wt-bg-denim-light { background-color: #bb0000 !important;} body,.ui-toolkit body { background-color: #00000; padding-bottom: 0} .wt-sem-text-on-surface-dark { color: #000000 !important;} .wt-bg-white { background-color: #bb0000 !important;} .trust-suite-banner { background-color: #bb0000 !important; border-radius: 0!important} </style> <div data-gdpr-consent-prompt> <div id="gdpr-privacy-settings" class="wt-overlay third-party-settings wt-text-left-xs" aria-labelledby="gdpr-full-settings-overlay-title" aria-hidden="true" role="dialog" data-gdpr-settings-overlay data-wt-overlay> <div class="wt-overlay__modal gdpr-overlay-view" data-overlay-modal> <div class="wt-overlay__header gdpr-overlay-header"> <h3 class="wt-text-heading" id="gdpr-full-settings-overlay-title">Privacy Settings</h3> </div> <div class="gdpr-overlay-body wt-pb-xl-2 wt-pb-lg-2 wt-pb-md-2 wt-pb-sm-2 wt-pb-xs-2"> <div> <div data-section="intro"> <p class="wt-text-caption wt-mb-xs-1">Etsy uses cookies and similar technologies to give you a better experience, enabling things like:</p> <ul class="wt-text-caption wt-ml-xs-2 wt-mb-xs-2"> <li>basic site functions</li> <li>ensuring secure, safe transactions</li> <li>secure account login</li> <li>remembering account, browser, and regional preferences</li> <li>remembering privacy and security settings</li> <li>analysing site traffic and usage</li> <li>personalized search, content, and recommendations</li> <li>helping sellers understand their audience</li> <li>showing relevant, targeted ads on and off Etsy</li> </ul> <p class="wt-text-caption wt-line-height-tight wt-text-link">Detailed information can be found in Etsyâ\x80\x99s <a class="wt-text-link" href="https://www.toscanamall.com/fr">Cookies & Similar Technologies Policy</a> and our <a class="wt-text-link" href="https://www.toscanamall.com/fr">Privacy Policy</a>. </p> </div> <div class="wt-pt-xl-6 wt-display-flex-xl wt-pt-lg-6 wt-display-flex-lg wt-pt-md-6 wt-display-flex-md wt-pt-sm-6 wt-display-flex-sm wt-pt-xs-6 wt-display-flex-xs"> <div class="wt-flex-xl-5 wt-flex-lg-5 wt-flex-md-5 wt-flex-sm-5 wt-flex-xs-5"> <h2 class="wt-text-title-01 wt-mb-xs-4 wt-break-word">Required Cookies & Technologies</h2> <p class="wt-text-caption wt-mb-xs-2">Some of the technologies we use are necessary for critical functions like security and site integrity, account authentication, security and privacy preferences, internal site usage and maintenance data, and to make the site work correctly for browsing and transactions.</p> </div> <div class="wt-flex-xl-1 wt-flex-lg-1 wt-flex-md-1 wt-flex-sm-1 wt-flex-xs-1"> <div class="wt-display-flex-xl wt-display-flex-lg wt-display-flex-md wt-display-flex-sm wt-display-flex-xs wt-justify-content-flex-end"> <span class="wt-text-caption">Always on</span> </div> </div> </div> <div class="wt-text-caption wt-pt-xl-6 wt-display-flex-xl wt-pt-lg-6 wt-display-flex-lg wt-pt-lg-6 wt-display-flex-lg wt-pt-md-6 wt-display-flex-md wt-pt-sm-6 wt-display-flex-sm wt-pt-xs-6 wt-display-flex-xs" data-section="third_party_consent"> <div class="wt-flex-xl-5 wt-flex-lg-5 wt-flex-md-5 wt-flex-sm-5 wt-flex-xs-5"> <h2 class="wt-text-title-01 wt-mb-xs-4 wt-break-word">Personalized Advertising</h2> <p class="wt-text-caption wt-mb-xs-2">To enable personalized advertising (like interest-based ads), we may share your data with our marketing and advertising partners using cookies and other technologies. Those partners may have their own information theyâ\x80\x99ve collected about you. Turning off the personalized advertising setting wonâ\x80\x99t stop you from seeing Etsy ads, but it may make the ads you see less relevant or more repetitive.</p> <p class="wt-text-caption wt-mb-xs-2"> Personalized advertising may be considered a â\x80\x9csaleâ\x80\x9d or â\x80\x9csharingâ\x80\x9d of information under California and other state privacy laws, and you may have a right to opt out. Turning off personalized advertising allows you to exercise your right to opt out. Learn more in our <a class="wt-text-link" href="https://www.toscanamall.com/fr">Privacy Policy.</a>, <a class="wt-text-link" href="https://help.etsy.com/hc/en-us/articles/360042433614-How-to-Opt-out-of-Personalized-Advertising">Help Center</a>, and <a class="wt-text-link" href="https://www.toscanamall.com/fr">Cookies & Similar Technologies Policy</a>. </p> </div> <div class="wt-flex-xl-1 wt-flex-lg-1 wt-flex-md-1 wt-flex-sm-1 wt-flex-xs-1"> <div class="wt-display-flex-xl wt-display-flex-lg wt-display-flex-md wt-display-flex-sm wt-display-flex-xs wt-justify-content-flex-end"> <label for="third_party_consent" class="wt-text-caption wt-pt-xl-1 wt-pr-xl-2 wt-pt-lg-1 wt-pr-lg-2 wt-pt-md-1 wt-pr-md-2 wt-pt-sm-1 wt-pr-sm-2 wt-pt-xs-1 wt-pr-xs-2 wt-nudge-t-3" aria-hidden="true" data-gdpr-toggle-label> On </label> <input class="wt-switch wt-switch--small" type="checkbox" name="third_party_consent" id="third_party_consent" checked data-gdpr-toggle data-checked-label="On" data-unchecked-label="Off"> <label class="wt-switch__toggle" for="third_party_consent" aria-hidden="true"></label> </div> </div> </div> </div> </div> <div class="wt-overlay__footer wt-align-items-center"> <div class="wt-overlay__footer__cancel"></div> <div class="wt-overlay__footer__action"> <div class="wt-display-flex-xl wt-flex-direction-row-xl wt-display-flex-lg wt-flex-direction-row-lg wt-display-flex-md wt-flex-direction-row-md wt-display-flex-sm wt-flex-direction-column-sm wt-display-flex-xs wt-flex-direction-column-xs"> <div class="wt-pr-xl-7 wt-pt-xl-2 wt-pr-lg-7 wt-pt-lg-2 wt-pr-md-7 wt-pt-md-2 wt-pb-sm-4 wt-pb-xs-2 wt-horizontal-center wt-display-none" data-saving-indicator> <div class="wt-spinner wt-spinner--01 wt-display-inline-block wt-vertical-align-middle"> <span class="etsy-icon"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <circle fill="transparent" cx="12" cy="12" r="10" /> </svg> </span> </div> </div> <div class="wt-pr-xl-7 wt-pt-xl-2 wt-pr-lg-7 wt-pt-lg-2 wt-pr-md-7 wt-pt-md-2 wt-pb-sm-4 wt-pb-xs-2 wt-horizontal-center wt-display-none" data-saved-indicator> <span class="etsy-icon wt-icon--smaller-xs"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> <path d="M9.057,20.471L2.293,13.707a1,1,0,0,1,1.414-1.414l5.236,5.236,11.3-13.18a1,1,0,1,1,1.518,1.3Z" /> </svg> </span> <span class="wt-display-inline-block wt-vertical-align-middle wt-text-body-01 wt-pl-xs-1">Saved</span> </div> <div> <button data-wt-overlay-close class="wt-btn wt-btn--primary wt-pl-xs-8 wt-pr-xs-8 wt-pl-sm-10 wt-pr-sm-10 wt-pl-md-3 wt-pr-md-3 wt-pl-lg-3 wt-pr-lg-3 wt-pl-xl-3 wt-pr-xl-3 wt-pl-tv-3 wt-pr-tv-3"> <p class="wt-pl-xs-10 wt-pr-xs-10 wt-pl-sm-10 wt-pr-sm-10 wt-pl-md-0 wt-pr-md-0 wt-pl-lg-0 wt-pr-lg-0 wt-pl-xl-0 wt-pr-xl-0 wt-pl-tv-0 wt-pr-tv-0">Done</p> </button> </div> </div> </div> </div> </div> </div> <script type="text/html" data-gdpr-consent-success-alert> <div class="wt-alert wt-alert--success-01 wt-alert--fixed-floating wt-alert--fixed-bottom wt-mb-xs-4"> <div class="wt-display-flex-xs"> <p class="wt-text-body-01 wt-text-left-xs">Privacy settings saved</p> </div> </div> </script> </div> <div data-dialog-content></div> <div id="wt-portals"></div> <div id="etsy-modal-container" aria-hidden="true"></div> <div id="google-tag-manager-container" aria-hidden="true"> <script nonce="Orz4Gw3ss+NjE9o4F9MinPSB"> window.dataLayer = [{ "tp_consent": "yes", "Language": "en-US", "Region": "ID", "Currency": "IDR", "UAID": "tdtd28PuH043PbINIGaoS-FqSE0W", "DetectedRegion": "ID", "uuid": 1758118441, "request_start_time": 1758118441, "fbp": "fb.1.1758118361724.5034582056859446" }]; </script> <noscript> <iframe src="//www.googletagmanager.com/ns.html?id=GTM-KWW5SS" height="0" width="0" style="display:none;visibility:hidden"></iframe> </noscript> <script nonce='Orz4Gw3ss+NjE9o4F9MinPSB'> (function(w, d, s, l, i) { w[l] = w[l] || []; w[l].push({ 'gtm.start': new Date().getTime(), event: 'gtm.js' }); var f = d.getElementsByTagName(s)[0], j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src = '//www.googletagmanager.com/gtm.js?id=' + i + dl; var n = d.querySelector('[nonce]'); n && j.setAttribute('nonce', n.nonce || n.getAttribute('nonce')); f.parentNode.insertBefore(j, f); })(window, document, 'script', 'dataLayer', 'GTM-KWW5SS'); </script> </div> <script type='text/javascript' nonce='Orz4Gw3ss+NjE9o4F9MinPSB'> window.__etsy_logging = window.__etsy_logging || { perf: {} }; window.__etsy_logging.url = "\/\/www.etsy.com\/bcn\/beacon"; window.__etsy_logging.defaults = { "ab": { "xplat.runtime_config_service.ramp": ["on", "x", "b4354c"], "orm_latency": ["off", "x", "091448"], "fastly.cdn_experiment_framework_aa": ["off", "m", "79b68d"], "neu_runtime_tracing_always_on": ["off", "x", "106c3b"], "neu_runtime_tracing": ["off", "w", "6631e5"], "structured_data_attributes_order_dependent": ["on", "x", "691833"], "perso_engine.recs.ssq_on_web_u2l_version_internal": ["on", "x", "4a8ed2"], "persistent_experiment.q3_2025": ["on", "w", "6c0626"], "iat.listing_page_trust_suite_section.desktop": ["off", "x", "8fca1c"], "google_tag_manager": ["on", "x", "43dc13"], "local_pe.q3_2025.search.browser.traffic_split": ["on", "w", "b06317"], "ranking\/search.experience.prefetch_lp_with_speculation_rules": ["off", "w", "6b958d"], "site_chrome\/buyer_to_seller_navbar_signed_out": ["ineligible", "e", "0efe99"], "checkout.gift_card_cta_in_search_dropdown": ["on", "x", "931866"], "local_pe.q3_2024.search.browser.traffic_split": ["on", "x", "33df41"], "ranking\/search.experience.xml_autosuggest_v4": ["all_xml", "x", "2b2623"], "lingtools\/trending_searches.gcp": ["on", "x", "5cfa03"], "site_chrome\/buyer_to_seller_navbar_signed_in": ["ineligible", "e", "67649b"], "site_chrome\/buyer_zipcode_in_header_desktop": ["off", "x", "eb55bf"], "site_chrome\/buyer_zipcode_in_header_mweb": ["ineligible", "e", "5d612c"], "builda_scss": ["sasquatch", "x", "96bd82"], "polyfills": ["on", "x", "db574b"], "polyfill_experiment_4": ["no_filtering", "x", "0e8409"], "web_deals.translate_nav_recs": ["on", "x", "f054b7"], "ranking\/search.experience.category_suggestions_in_autosuggest": ["ineligible", "e", "6e2d9f"], "ranking\/search.experience.contentful_title_on_trending_searches": ["on", "x", "d0b108"], "ranking\/search.experience.always_show_shop_search_in_autosuggest": ["on", "x", "66727b"], "growth_regx.lp_rating_histogram_shop_header_desktop": ["off", "x", "1c99da"], "local_pe.q3_2025.buyer_trust_accelerator.browser.traffic_split": ["off", "w", "eaad53"], "growth_regx.lp_message_seller_replace_collections_buy_box_desktop_so": ["ineligible", "e", "9b3fad"], "cnc.swap_lp_recs_for_search_desktop": ["ineligible", "e", "461c86"], "gcs_image_reads": ["on", "x", "b7a48f"], "searchx.4q18.dwell_time_as_backend_event": ["off", "x", "d3826b"], "disambiguate_usd_outside_usa": ["ineligible", "e", "c8897d"], "gift_mode.lp_bin_sheet_tiag_v2": ["on", "x", "1beeb9"], "cnc.atc_from_listing_cards_ymal_mfts_desktop": ["on", "x", "58b479"], "perso_custo.buyer_read_from_new_perso_tables": ["on", "x", "dffb8d"], "growth_regx.lp_seller_cred_shop_desc_desktop": ["ineligible", "e", "4bc04e"], "local_pe.q3_2025.international.browser.traffic_split": ["on", "w", "4ca9c3"], "iat.listing_page_hide_similar_items_sash.desktop": ["off", "x", "e2a169"], "cow_layer\/desktop_lp_evolved_favoriting_v2": ["ineligible", "e", "2ca26f"], "growth_regx.lp_bb_trust_redesign_desktop": ["ineligible", "e", "df41b4"], "checkout.klarna_unified_pay_later": ["ineligible", "e", "e11748"], "perso_buyer_squad_layer\/variations_update": ["on", "x", "0e428d"], "perso_custo.multiple_questions_enabled.buyer_side": ["on", "x", "82e6f7"], "seo.listing_shop_faqs_machine_translation": ["off", "x", "ad47eb"], "onsite_promos.superbowl_listing_page_banner": ["ineligible", "e", "2deace"], "inventory.listing_inventory_quantity_select": ["off", "x", "e2182e"], "growth_regx.lp_production_partners_in_item_details": ["on", "x", "3cd0fb"], "growth_regx.lp_move_appreciation_photos_desktop": ["off", "x", "9273bf"], "growth_regx.lp_review_photo_filter_and_sort_desktop": ["on", "x", "acff7a"], "growth_regx.lp_review_engagement_aa_desktop": ["off", "x", "bfb356"], "cnc.related_searches_placement": ["off", "x", "157607"], "local_pe.q3_2025.buyer_trust_accelerator.browser": ["off", "w", "8d00be"], "growth_regx.lp_new_seller_cred_foundational_desktop": ["ineligible", "e", "bccc3b"], "cnc.anchor_item_lp_recs_desktop": ["off", "x", "315c33"], "cnc\/experiment.related_search_pathways_v3_desktop": ["ineligible", "e", "7e808d"], "lp_performance.css_import_cleanup": ["on", "x", "ec2bd2"], "cnc\/experiment.compare_lp_collections_v2_desktop": ["ineligible", "e", "c0c984"], "cnc.hiding_gifting_registry_desktop": ["ineligible", "e", "59dab7"], "ads\/takerate.lp_ads_row_expansion.desktop": ["ineligible", "e", "cad35c"], "cnc.listing_card_styling_desktop": ["ineligible", "e", "cef3b1"], "cnc.only_prompt_similar_listing_desktop": ["off", "x", "1f1344"], "core_fulfillment.product_level_readiness_states.core_experience": ["ineligible", "e", "d06c95"], "fulfillment_platform.usps_pm_faster_ga_experiment.web": ["on", "x", "498eec"], "fulfillment_platform.usps_pm_faster_ga_experiment.mobile": ["ineligible", "e", "20f21b"], "fulfillment_ml.ml_predicted_acceptance_scan.uk.operational": ["on", "x", "74db8e"], "fulfillment_ml.ml_predicted_acceptance_scan.uk.experiment_web": ["prod", "x", "9a5255"], "fulfillment_ml.ml_predicted_acceptance_scan.uk.experiment_mobile": ["ineligible", "e", "865516"], "fulfillment_ml.ml_predicted_acceptance_scan.germany.operational": ["off", "x", "4528ab"], "fulfillment_ml.ml_predicted_acceptance_scan.germany.experiment_web": ["off", "x", "cac266"], "fulfillment_ml.ml_predicted_acceptance_scan.germany.experiment_mobile": ["ineligible", "e", "9a29ab"], "fulfillment_platform.edd_cart_caching.web": ["edd_and_arizona_cache", "x", "e313fc"], "fulfillment_platform.edd_cart_caching.mobile": ["ineligible", "e", "ffb947"], "fulfillment_platform.consolidated_country_to_country_ml_times.experiment_web": ["prod", "x", "2eac66"], "fulfillment_platform.consolidated_country_to_country_ml_times.experiment_mobile": ["ineligible", "e", "81b585"], "checkout\/paypal_smart_button_desktop": ["ineligible", "e", "07b533"], "checkout\/paypal_smart_button_mweb": ["ineligible", "e", "643355"], "mobile_dynamic_config.iphone.ApplePayPaymentMethods.Girocard": ["ineligible", "e", "fbb78b"], "mobile_dynamic_config.iphone.ApplePayPaymentMethods.CartesBancaires": ["ineligible", "e", "47f399"], "checkout\/google_pay_on_web_v2": ["on", "x", "cbf24c"], "checkout\/add_jcb_cc_payment_method": ["on", "x", "ce90aa"], "checkout\/bin_confidence": ["show_cc", "x", "990cfd"], "checkout.klarna_us_price_bands_v2": ["ineligible", "e", "658ea6"], "checkout.klarna_uk_price_bands_v2": ["ineligible", "e", "c4d855"], "checkout.etsy_bin_on_apple_pay_devices": ["on", "x", "e77719"], "checkout.checkout_guest_apple_pay_bin_v2": ["off", "x", "833ff4"], "fulfillment_ml.ml_predicted_acceptance_scan.ups_fedex.experiment_web": ["on", "x", "6ef73d"], "fulfillment_ml.ml_predicted_acceptance_scan.ups_fedex.experiment_mobile": ["ineligible", "e", "81c794"], "fulfillment_ml.usps_route_predictor.web": ["on", "x", "7f6b44"], "fulfillment_ml.usps_route_predictor.mobile": ["ineligible", "e", "5a1b77"], "fulfillment_ml.only_display_edd_max.web": ["ineligible", "e", "2d500c"], "fulfillment_ml.only_display_edd_max.mobile": ["ineligible", "e", "07bd93"], "navx.always_images_in_l2": ["off", "x", "d6d388"], "ranking\/search.experience.refinement_pills_in_autosuggest": ["ineligible", "e", "2a2140"], "ranking\/search.experience.trending_searches_in_zero_pane_v2": ["on", "x", "cdb259"], "loyalty.web.reduce_listing_signup_prompts_exp": ["ineligible", "e", "bf6a41"], "cnc.remove_atc_mweb": ["ineligible", "e", "699ff5"], "dynamic_experiments.Merch_JewelrySale25_SkinnyBanner_test_v3": ["ineligible", "e", "89c994"], "dynamic_experiments.Merch_JewelrySale25_SkinnyBanner_test": ["ineligible", "e", "6ff9d7"], "dynamic_experiments.Merch_DDGSkinnyBanner24_V2_test": ["ineligible", "e", "8e97c7"], "dynamic_experiments.Merch_DDGSkinnyBanner24_test": ["ineligible", "e", "5a291a"], "dynamic_experiments.Merch_LaborDay24_Link_test": ["ineligible", "e", "63a995"], "dynamic_experiments.Merch_FDAY24_GiftTeaser_test": ["ineligible", "e", "18d6f7"], "dynamic_experiments.Merch_GiftMode24_Teaser_test": ["ineligible", "e", "3ad555"], "api.ab_bubbling_experiment.browser_flag.listzilla_get_listing_state": ["ineligible", "e", "f05e23"], "coreloc.listing_page_local_shipping_signal": ["on", "x", "1bd157"], "navx.fnb_gift_cards_multivariate": ["ineligible", "e", "0fd1cc"], "growth_regx.lp_anchor_shop_name_to_seller_cred": ["off", "x", "d4d89e"], "cnc.updated_scarcity_signals_lp": ["off", "x", "181046"], "android_image_filename_hack": ["ineligible", "e", "9c9013"], "eu_crd_compliance.sellers": ["on", "x", "1060a1"], "growth_regx.lp_reviews_new_deep_dive_desktop": ["ineligible", "e", "e9e5ba"], "listing_process.how_its_made_properties.use_module_classifier": ["on", "x", "a5aaed"], "cnc.sidebar_cart_post_atc_recs_v3": ["off", "x", "13c110"], "site_chrome\/cnc.sidebar_cart_zero_to_one": ["ineligible", "e", "45076d"], "site_chrome\/cnc.sidebar_cart_remove_quantity": ["on", "x", "4ea54a"], "cnc.sidebar_cart_open_in_same_tab": ["on", "x", "ed65a2"], "site_chrome\/fullstory\/use_track_event": ["ineligible", "e", "ae465c"], "google_tag_manager_async": ["off", "x", "7585d0"], "qualtrics_survey": ["ineligible", "e", "c3c730"], "qualtrics_survey_non_en": ["ineligible", "e", "5fec45"], "content_moderation.report_item.desktop": ["on", "x", "4dfa1d"], "growth_regx.lp_mask_generated_names_in_reviews": ["off", "x", "ea05d2"], "collections.privacy_clearer_setting_description": ["on", "x", "412fbc"], "prodperfect\/monthly_data_capture": ["off", "x", "137afb"], "local_pe.q3_2025.ltv_tactics.browser.traffic_split": ["off", "w", "f32908"], "ltv_tactics.cd_1509_two_steps_login_on_nav": ["ineligible", "e", "c16933"], "buyer_support\/epp_promise_messaging": ["ineligible", "e", "4ebacd"], "growth_regx.lp_view_shop_registration_details": ["ineligible", "e", "fec272"], "eu_cookie_nag": ["ineligible", "e", "f8045f"], "cnc.visual_search_tags_internal": ["off", "x", "b89cdd"], "gifting.gnav_desktop_flyout": ["ineligible", "e", "55be9d"], "seller_platform_web.buyer_inquiry": ["off", "x", "ee9de4"], "seller_platform_web.seller_local_time": ["ineligible", "e", "98a5ac"], "seller_platform_web.item_detail_overlay": ["ineligible", "e", "cf46a1"], "buyer_promise.issue_resolution.fee_avoidance_v2": ["ineligible", "e", "3a7a9c"], "risk_experience.buyer_email_verification": ["ineligible", "e", "a98aad"] }, "user_id": null, "page_guid": "ffd70407a73.729199dcba01e9bac4ce.00", "version": 1, "request_uuid": "Eut_-OMUkrrgiX13VHriSIQ_zi21", "cdn-provider": "fastly", "header_fingerprint": "ualc", "header_signature": "69c9130808b6fc1a3dc577fcfe0bf284", "ip_org": "PT Telkom Indonesia", "ref": "", "loc": "http:\/\/www.etsy.com\/listing\/1479848745\/2025-employee-annual-bonus-planner-excel?ls=s&ga_order=most_relevant&ga_search_type=all&ga_view_type=gallery&ga_search_query=bonus&ref=sr_gallery-1-6&sr_prefetch=0&dd=1&content_source=0a0cca2b-9c1c-4b0e-a428-b45bcc835a54%253A9989de2b0460fcb8a418a74c2b4056b213fc9a4d&organic_search_click=1&logging_key=0a0cca2b-9c1c-4b0e-a428-b45bcc835a54%3A9989de2b0460fcb8a418a74c2b4056b213fc9a4d", "locale_currency_code": "IDR", "pref_language": "en-US", "region": "ID", "detected_currency_code": "IDR", "detected_language": "en-US", "detected_region": "ID", "accept-languages": "id-ID,id,en-US,en", "ga_client_id": "GA1.1.1487500656.1758118366", "isWhiteListedMobileDevice": false, "isMobileRequestIgnoreCookie": false, "isMobileRequest": false, "isMobileDevice": false, "isMobileSupported": false, "isTabletSupported": false, "isTouch": false, "isEtsyApp": false, "isPreviewRequest": false, "isChromeInstantRequest": false, "isMozPrefetchRequest": false, "isTestAccount": false, "isSupportLogin": false, "isInternal": false, "isInWebView": false, "isBot": false, "urlRef": "sr_gallery-1-6", "isSyntheticTest": false, "ebid": "xYkdf6l-HmRtlmPCPNmFINikx7k-JKjQ", "event_source": "web", "browser_id": "tdtd28PuH043PbINIGaoS-FqSE0W", "gdpr_tp": 3, "gdpr_p": 3, "legacy_p": 3, "legacy_tp": 3, "cmp_tp": true, "cmp_p": true, "page_time": 460, "load_strategy": "page_navigation" }; ! function(e, t) { var n = e.__etsy_logging, o = n.url, i = n.firedEvents, r = n.defaults, s = r.ab || {}, a = n.bots.botCheck, c = n.bots.isBot; n.mergeObject = function(e) { for (var t = 1; t < arguments.length; t++) { var n = arguments[t]; for (var o in n) Object.prototype.hasOwnProperty.call(n, o) && (e[o] = n[o]) } return e }; !r.ref && (r.ref = t.referrer), !r.loc && (r.loc = e.location.href), !r.webkit_page_visibility && (r.webkit_page_visibility = t.webkitVisibilityState), !r.event_source && (r.event_source = "web"), r.event_logger = "frontend", r.isIosApp && !0 === r.isIosApp ? r.event_source = "ios" : r.isAndroidApp && !0 === r.isAndroidApp && (r.event_source = "android"), a.length > 0 && (r.botCheck = r.botCheck || [], r.botCheck = r.botCheck.concat(a)), r.isBot = c, t.wasDiscarded && (r.was_discarded = !0); var v = function(t) { if (e.XMLHttpRequest) { var n = new XMLHttpRequest; n.open("POST", o, !0), n.send(JSON.stringify(t)) } }; n.updateLoc = function(e) { e !== r.loc && (r.ref = r.loc, r.loc = e) }, n.adminPublishEvent = function(n) { "function" == typeof e.CustomEvent && t.dispatchEvent(new CustomEvent("eventpipeEvent", { detail: n })), i.push(n) }, n.sendEvents = function(t, i) { var a = r; if ("perf" === i) { var c = { event_logger: i }; n.asyncAb && (c.ab = n.mergeObject({}, n.asyncAb, s)), a = n.mergeObject({}, r, c) } var f = { events: t, shared: a }; e.navigator && "function" == typeof e.navigator.sendBeacon ? function(t) { t.events.forEach((function(e) { e.attempted_send_beacon = !0 })), e.navigator.sendBeacon(o, JSON.stringify(t)) || (t.events.forEach((function(e) { e.send_beacon_failed = !0 })), v(t)) }(f) : v(f), n.adminPublishEvent(f) } }(window, document); </script> <script type='text/javascript' nonce='Orz4Gw3ss+NjE9o4F9MinPSB'> window.__etsy_logging.perf.event = { "attributes": { "guid": "ffd70408317.385c638df1b0f801503a.00", "event_name": "perf", "event_logger": "perf", "page_type": "view_listing", "device_type": "Desktop", "browser_name": "Chrome", "browser_version": "140.0.7339.128", "ip_city": "Jakarta", "ip_region": "JK", "ip_country_code": "ID", "boromir": true } }; ! function(e, t) { if (!t.hidden) { var n = e.__etsy_logging || {}, r = n.perf || {}, i = n.url, a = n.defaults, o = r.event, s = n.sendEvents, c = 0 === Object.keys(r).length, u = e.webVitals || {}, d = n.mergeObject, m = r.isDev || !1, _ = r.skipLoggingEvent || !1, l = r.keepPerfObserverActive || !1, f = null, p = 0; if (!c && i && a && o && s) { var g = r.MARK_MEASURE_PREFIX || "_etsy_mark_measure_", v = function(e) { var t = !1; return function() { t || (t = !0, e.apply(this, arguments)) } }, y = function() { return void 0 !== e.PerformanceObserver }, h = function() { return "onpagehide" in e }, T = function(e, n) { var r = function(e) { var n = t.createElement("a"); n.href = e; var r = n.pathname.split("."); return r[r.length - 1] || "" }(e); return /jpe?g|png|svg|gif/i.test(r) ? "image" : /eot|woff2?|ttf/i.test(r) ? "font" : "js" === r ? "js" : "css" === r ? "css" : "xmlhttprequest" === n ? "xhr" : "unknown" }, E = function(e) { return Math.round(e < Math.pow(2, 64) - 1 ? e : 0) }, b = function(e, n) { var r = null, i = null; if (n.transferSize > 0) for (var a = 0; a < n.serverTiming.length; a++) { var o = n.serverTiming[a]; e.i_etsystatic_cdn || "cdn" !== o.name ? "cache_status" === o.name && (i = o.description) : r = o.description } r && (e.i_etsystatic_cdn = r); var s = null, c = null; i && (e.cdn_image_caching || (e.cdn_image_caching = { miss: 0, hit: 0 }), s = 0 === i.indexOf("HIT"), c = 0 === i.indexOf("MISS"), s && (e.cdn_image_caching.hit += 1), c && (e.cdn_image_caching.miss += 1)), function(e, n, r, i) { f || (f = {}, t.querySelectorAll("img[data-perf-group]").forEach((function(e) { e.currentSrc && (f[e.currentSrc] = e) }))); var a = f[n.name]; if (a) { var o = a.dataset.perfGroup; e.categorized_images || (e.categorized_images = []); var s = { category: o, duration: E(n.duration), encodedBodySize: E(n.encodedBodySize), transferSize: E(n.transferSize), width: a.width, height: a.height }; if (n.transferSize > 0) { (r || i) && (s.cdn_hit = r); for (var c = 0; c < n.serverTiming.length; c++) { var u = n.serverTiming[c]; "clientrtt" === u.name ? s.clientrtt = E(u.duration) : "clienttt" === u.name ? s.clienttt = E(u.duration) : "cdntime" === u.name ? s.cdntime = E(u.duration) : "origin" === u.name && (s.origin = E(u.duration)) } } e.categorized_images.push(s) } }(e, n, s, c) }, S = function(e) { var t = { nav_start: E(e.navigationStart || e.startTime), activation_start: E(e.activationStart || 0), fetch_start: E(e.fetchStart), dns_start: E(e.domainLookupStart), dns_end: E(e.domainLookupEnd), connect_start: E(e.connectStart), connect_end: E(e.connectEnd), interim_response_start: E(e.firstInterimResponseStart || 0), request_start: E(e.requestStart), response_start: E(e.responseStart), response_end: E(e.responseEnd), dom_completed: E(e.domComplete), dom_interactive: E(e.domInteractive), secure_connect_start: E(e.secureConnectionStart) || null, loaded_start: E(e.loadEventStart) || null, loaded_end: E(e.loadEventEnd) || null, dom_content_loaded_start: E(e.domContentLoadedEventStart) || null, dom_content_loaded_end: E(e.domContentLoadedEventEnd) || null, html_tx_size: E(e.transferSize), html_enc_size: E(e.encodedBodySize), html_dec_size: E(e.decodedBodySize), type: e.type }; return e.redirectStart && (t.redirect_start = E(e.redirectStart)), e.redirectEnd && (t.redirect_end = E(e.redirectEnd)), e.redirectCount && (t.redirect_count = e.redirectCount), t }, k = function(e) { return e.reduce((function(e, t) { if ("entryType" in t) { if ("resource" === t.entryType) return function(e, t) { var n = T(t.name, t.initiatorType); if ("unknown" === n) return e; var r = t.name.match(/etsy(static)?(cloud)?\.com/) ? "etsy" : "third"; "image" === n && "etsy" === r && (t.name.match(/img0\.etsystatic/) ? e.img0_count = (e.img0_count || 0) + 1 : t.name.match(/img1\.etsystatic/) && (e.img1_count = (e.img1_count || 0) + 1)), "image" === n && "etsy" === r && t.serverTiming && t.name.match(/i\.etsystatic\.com/) && b(e, t); var i = "sum_" + r + "_" + n + "_bytes", a = "sum_" + r + "_" + n + "_enc_bytes", o = "sum_" + r + "_" + n + "_tx_bytes", s = "sum_" + r + "_" + n + "_dur", c = "count_" + r + "_" + n + "_req"; return e[i] = (e[i] || 0) + E(t.decodedBodySize), e[a] = (e[a] || 0) + E(t.encodedBodySize), e[o] = (e[o] || 0) + E(t.transferSize), e[s] = (e[s] || 0) + E(t.duration), e[c] = (e[c] || 0) + 1, e }(e, t); if ("paint" === t.entryType) return function(e, t) { return e[t.name.replace(/-/g, "_")] = E(t.startTime), e }(e, t); if ("longtask" === t.entryType) return function(e, t) { return e.long_tasks_count = (e.long_tasks_count || 0) + 1, e.long_tasks_dur = (e.long_tasks_dur || 0) + E(t.duration), e }(e, t); if ("mark" === t.entryType || "measure" === t.entryType) return function(e, t) { return 0 === t.name.lastIndexOf(g, 0) && (e[0 === t.name.lastIndexOf(g + "async_spec_", 0) ? t.name.substring(g.length) : t.name] = E("mark" === t.entryType ? t.startTime : t.duration)), e }(e, t); if ("layout-shift" === t.entryType && !t.hadRecentInput) return function(e, t) { return e.layout_shift_count = (e.layout_shift_count || 0) + 1, e.layout_shift = (e.layout_shift || 0) + t.value, t.value > .05 && (e.layout_shift_elements = e.layout_shift_elements || [], e.layout_shift_elements.push({ value: t.value, elements: (t.sources || []).filter((function(e) { return !!e.node })).map((function(e) { return { className: e.node.classList && Array.prototype.slice.call(e.node.classList).join(" "), tagName: e.node.tagName, id: e.node.id } })) })), e }(e, t); if ("navigation" === t.entryType) return r.t = !0, d(e, S(t)); if ("element" === t.entryType) return function(e, t) { return e.element_timings || (e.element_timings = {}), e.element_timings[t.identifier] = t.renderTime, e }(e, t); if ("long-animation-frame" === t.entryType) return function(e, t) { e.loaf_entries || (e.loaf_entries = []); var n = { start: E(t.startTime), duration: E(t.duration), blockingDuration: E(t.blockingDuration) }, r = t.scripts.slice().sort((function(e, t) { t.duration, e.duration }))[0]; if (r) { var i = r.invoker || r.name; n.longestScript = { invokerType: r.invokerType || r.type, duration: E(r.duration), invoker: i.substring(0, 1024), sourceURL: r.sourceURL || null } } return e.loaf_entries.push(n), e }(e, t) } else if ("name" in t) { if ("INP" === t.name) return function(e, t) { return e.interaction_next_paint = t.value, t.attribution && (e.interaction_next_paint_element = t.attribution.eventTarget, e.interaction_next_paint_time = E(t.attribution.eventTime), e.interaction_next_paint_type = t.attribution.eventType, e.interaction_next_paint_loadstate = t.attribution.loadState), e }(e, t); if ("LCP" === t.name) return function(e, t) { var n = t.entries[0]; return e.largest_contentful_paint = E(n.renderTime || n.loadTime), e.largest_contentful_paint_type = n.renderTime ? "renderTime" : "loadTime", n.element ? (e.largest_contentful_paint_element = { className: n.element.classList && Array.prototype.slice.call(n.element.classList).join(" "), tagName: n.element.tagName, url: n.url }, t.attribution.lcpResourceEntry && (e.largest_contentful_paint_element.resource_size = E(t.attribution.lcpResourceEntry.encodedBodySize))) : delete e.largest_contentful_paint_element, e.lcp_element_render_delay = E(t.attribution.elementRenderDelay), e.lcp_resource_load_delay = E(t.attribution.resourceLoadDelay), e.lcp_resource_load_time = E(t.attribution.resourceLoadTime), e }(e, t) } return e }), {}) }, L = function() { var n, i = !y() && performance && performance.getEntries ? performance.getEntries() : r.e, a = k(i); return r.e = [], r.t || (a.unixTimingNavigation = !0, d(a, S(e.performance.timing))), d(a, function() { if (performance && performance.getEntriesByName) { var e = performance.getEntriesByName("TTP", "mark"); if (e.length) return { time_to_parsing: E(e[0].startTime) } } return {} }()), d(a, { dom_count_server: p, dom_count_client: t.getElementsByTagName("*").length }), d(a, { dom_max_depth: (n = function(e) { if (!e) return 0; for (var t = 0, r = 0, i = e.children.length; r < i; r++) t = Math.max(t, n(e.children[r])); return t + 1 })(t.documentElement) }), function(e) { var t = navigator; t && t.connection && t.connection.effectiveType && (e.effective_connection_type = t.connection.effectiveType) }(a), a.has_sendbeacon = navigator && "function" == typeof navigator.sendBeacon, a.has_observer = y(), y() && PerformanceObserver.supportedEntryTypes && (a.observer_types = PerformanceObserver.supportedEntryTypes), a.has_pagehide = h(), r.vm_hostname && (a.vm_hostname = r.vm_hostname), a }, z = v((function(n) { var r = d(n, o.attributes); r.beacon_send_time = 0 === r.nav_start ? E(performance.now()) : (new Date).getTime(), r.page_time = a.page_time, "function" == typeof e.CustomEvent && t.dispatchEvent(new CustomEvent("perfDataSent", { detail: r })), s([r], "perf") })); ! function() { var n = function(e) { r.e.length && (r.e = r.e.concat(e)) }; if (!!u.onINP && u.onINP(n, { reportAllChanges: !0 }), u.onLCP && u.onLCP(n), y() && PerformanceObserver.supportedEntryTypes && PerformanceObserver.supportedEntryTypes.includes("long-animation-frame")) { var i = new PerformanceObserver((function(e) { e.getEntries().forEach((function(e) { e.duration > 150 && e.firstUIEventTimestamp > 0 && n(e) })) })); i.observe({ type: "long-animation-frame", buffered: !0 }) } if (!_) { var a, o = v((function(e) { if (!t.hidden || "on_vischange" === e) { clearTimeout(a); var n = L(); !l && y() && (r.o.disconnect(), i && i.disconnect()), n[e] = !0, z(n) } })), s = function() { return m && e.__KEVIN_IS_STILL_BUILDING }; m || (a = setTimeout((function() { o("on_fallbacktimeout") }), 6e4), "complete" === t.readyState && (clearTimeout(a), a = setTimeout((function() { o("on_loadtimeout") }), 2e4))), t.addEventListener("readystatechange", (function() { "interactive" === t.readyState && (p = t.getElementsByTagName("*").length) })), e.addEventListener("load", (function() { clearTimeout(a), s() || (a = setTimeout((function() { o("on_loadtimeout") }), 2e4)) })); var c = function(e) { var t = e || "on_unload"; s() ? (0 === performance.getEntriesByName(`${r.MARK_MEASURE_PREFIX}dev_kevin-overlay-end`).length && performance.mark(`${r.MARK_MEASURE_PREFIX}dev_kevin-overlay-abandoned-before-done`), setTimeout((function() { o(t) }), 0)) : o(t) }, d = h() ? "pagehide" : "unload"; e.addEventListener(d, c), m && e.addEventListener("beforeunload", c), t.addEventListener("visibilitychange", (function() { t.hidden && c("on_vischange") })) } }(), r.logger = { getMetricsFromQueue: k } } else n.eventpipe && n.eventpipe.logEvent && n.eventpipe.logEvent({ event_name: "perf_beacon_not_fired", missing_global_perf_data: c, missing_post_url: !i, missing_defaults: !a, missing_perf_event: !o, missing_send_events: !s }) } }(window, document);; </script> <script type='text/javascript' nonce='Orz4Gw3ss+NjE9o4F9MinPSB'> window.__etsy_logging.eventpipe.primary_complement = { "attributes": { "guid": "ffd70408313.064954f3a24c9a2991af.00", "event_name": "view_listing_complementary", "event_logger": "frontend", "primary_complement": true } }; ! function(e) { var t = e.__etsy_logging, i = t.eventpipe, n = i.primary_complement, o = t.defaults.page_guid, r = t.sendEvents, a = i.q, c = void 0, d = [], h = 0, u = "frontend", l = "perf"; function g() { var e, t, i = (h++).toString(16); return o.substr(0, o.length - 2) + ((t = 2 - (e = i).length) > 0 ? new Array(t + 1).join("0") + e : e) } function v(e) { e.guid = g(), c && (clearTimeout(c), c = void 0), d.push(e), c = setTimeout((function() { r(d, u), d = [] }), 50) }! function(t) { var i = document.documentElement; i && (i.clientWidth && (t.viewport_width = i.clientWidth), i.clientHeight && (t.viewport_height = i.clientHeight)); var n = e.screen; n && (n.height && (t.screen_height = n.height), n.width && (t.screen_width = n.width)), e.devicePixelRatio && (t.device_pixel_ratio = e.devicePixelRatio), e.orientation && (t.orientation = e.orientation), e.matchMedia && (t.dark_mode_enabled = e.matchMedia("(prefers-color-scheme: dark)").matches) }(n.attributes), v(n.attributes), i.logEvent = v, i.logEventImmediately = function(e) { var t = "perf" === e.event_name ? l : u; e.guid = g(), r([e], t) }, a.forEach((function(e) { v(e) })) }(window); </script> <script nonce="Orz4Gw3ss+NjE9o4F9MinPSB"> if (window.console) { console.log("Is code your craft? https://careers.etsy.com") } </script> </body> </html>