Produkteigenschaften:Verliersichere Mutter für die SchienenbefestigungHauptschalter mit automatischer Abschaltfunktion schont den Akku und vermeidet ein unbeabsichtigtes EinschaltenKräfteschonendes Arbeiten durch geringes GewichtGroßes Sichtfenster erlaubt schnelle Kontrolle des ÖlstandesHauptschalter mit automatischer Abschaltfunktion, schont den Akku und verhindert ein unbeabsichtigtes EinschaltenIPX4-Wasserbeständigkeit während des AkkubetriebsNur zugelassen für gewerbliche Anwender mit SpezialausbildungTechnische Daten:Bürstenloser MotorAkkusystem XGTAkkuspannung;40 VAkkutyp (Ni-Cd / Li-Ion); Li-ionAkkuschutzsystemAkku-systeme; XGT 40Vmax/80V maxTank Kettenöl; 0,2 LKettengeschwindigkeit; 24,8 m/sSchienenlänge; 25cm / 10"Kettenteilung; 3/8 "Kettenstärke; 0,050 "Schienennutbreite; 1,1 - 1,3 mmGewicht inkl. Akku (EPTA); 3,8 - 4,4 kgProduktabmessung (L x B x H); 266 x 194 x 227 mmLieferumfang:1x Makita Akku-Kettensäge UC002G1x Sternschiene 191G14-31x Sägekette 191H00-01x Sägekettenschutz 28x9cm 452093-71x Sägekettenschutz 458501-61x Schraubenschlüssel 13-16 782023-71x Akku BL4040 191B26-61x Schnellladegerät DC40RA 191E07-8
- Hersteller
- Makita Werkzeug GmbH
-
Makita-Platz 1,
40885 Ratingen,
Deutschland
- www.makita.de
Makita Akku-Kettensäge UC002GM101 40V max, 24,8 m/s, 25 cm 1x 4,0 Ah + Ladegerät
- Artikel-Nr.: UC002GM101
- EAN: 0088381751889
- Hersteller: Makita

const observer = new MutationObserver(() => {
const el = document.getElementById("delivery-date-template");
if (el) {
el.innerHTML = el.innerHTML.replace(
"Lieferung:",
"Lieferung:"
);
observer.disconnect();
clearTimeout(timeoutId);
}
});
observer.observe(document.body, { childList: true, subtree: true });
const timeoutId = setTimeout(() => observer.disconnect(), 2000);
if(!document.getElementById('paypal-smart-payment-script'))
{
var script = document.createElement("script");
script.type = "module";
script.id = "paypal-smart-payment-script";
script.src = "https://cdn02.plentymarkets.com/qddd911h1zyd/plugin/118/paypal/js/smartPaymentScript.min.js";
script.setAttribute("data-client-id", "AfslQana4f4CQjHvRBnUc6vBJg5jgJuZFwM-SbrTiGKUAqB7MrxQv3QWFdQ6U1h7ogMDokT1DNBzRxMw");
script.setAttribute("data-user-id-token", "");
script.setAttribute("data-merchant-id", "9NUA4DV8EVBB8");
script.setAttribute("data-currency", "EUR");
script.setAttribute("data-append-trailing-slash", "");
script.setAttribute("data-locale", "de_DE");
script.setAttribute("sandbox", "");
script.setAttribute("googlePayComponent", 0);
script.setAttribute("applePayComponent", 0);
script.setAttribute("logToken", "7fdd6fb4cb01d7bdc1974e6796afa614");
document.body.appendChild(script);
} else {
var script = document.getElementById('paypal-smart-payment-script');
script.src = "https://cdn02.plentymarkets.com/qddd911h1zyd/plugin/118/paypal/js/smartPaymentScript.min.js";
script.setAttribute("data-client-id", "AfslQana4f4CQjHvRBnUc6vBJg5jgJuZFwM-SbrTiGKUAqB7MrxQv3QWFdQ6U1h7ogMDokT1DNBzRxMw");
script.setAttribute("data-user-id-token", "");
script.setAttribute("data-merchant-id", "9NUA4DV8EVBB8");
script.setAttribute("data-currency", "EUR");
script.setAttribute("data-append-trailing-slash", "");
script.setAttribute("data-locale", "de_DE");
script.setAttribute("sandbox", "");
script.setAttribute("googlePayComponent", 0);
script.setAttribute("applePayComponent", 0);
script.setAttribute("logToken", "7fdd6fb4cb01d7bdc1974e6796afa614");
}

- Versandkostenfreie Lieferung in DE ab 100€
- Kostenloser Rückversand
$(document).ready(function() {
setTimeout(function () {
if (
window.innerWidth < 1200 &&
$('#m1').length &&
$('#mM').length &&
$('#m1').is(':empty')
) {
$('#mM').appendTo('#m1');
}
}, 1000);
$( window ).resize(function() {
if ($(window).outerWidth() < 1200 ) {
$('#mM').appendTo('#m1');
} else {
$('#mM').appendTo('#m2');
}
});
});
$(function () {
const $links = $('.anchors a');
const nav = document.querySelector('.anchors');
function updateActiveLink() {
const scrollTop = $(document).scrollTop();
$links.each(function (i, link) {
const targetId = $(link).attr('href');
const $target = $(targetId);
if (!$target.length) return;
const top = $target.offset().top;
let bottom;
if (i < $links.length - 1) {
const nextLinkHref = $($links[i + 1]).attr('href');
const $nextTarget = $(nextLinkHref);
bottom = $nextTarget.length ? $nextTarget.offset().top : $(document).height();
} else {
bottom = $(document).height();
}
if (scrollTop >= top - 120 && scrollTop < bottom - 120) {
$links.removeClass('active');
$(link).addClass('active');
scrollNavToLink(link);
return false; // break .each()
}
});
}
function scrollNavToLink(link) {
if (!nav) return;
const linkLeft = link.offsetLeft;
const linkWidth = link.offsetWidth;
const navWidth = nav.offsetWidth;
const scrollTo = linkLeft - (navWidth / 2) + (linkWidth / 2);
nav.scrollTo({ left: scrollTo, behavior: 'smooth' });
}
let scrollTimer;
$(document).on('scroll', function () {
updateActiveLink(); // run immediately
clearTimeout(scrollTimer);
scrollTimer = setTimeout(updateActiveLink, 100); // trailing update
});
updateActiveLink(); // on load
});