Karbon-X Acquires Silviculture Systems: A Synergistic Step towards a Sustainable FutureCALGARY, AB / ACCESSWIRE / August 28, 2023 / Karbon-X Corp (“Karbon-X”) (OTC PINK:KARX), an innovative carbon credit project development company, is pleased to announce finalising the definitive agreement to acquire 80% of Silviculture Systems Corp (“SCS”) for $7,300,000 USD in a combnation of cash and stock transaction. The initial transaction results in Karbon-X owning 32% of SCS, with the remaining ownership being acquired in tranches over the next 14 months. SCS is a leading proponent for reforestation and environmental conservation in South America, with a current focus on a reforestation project in Bolivia. This strategic union marks a pivotal moment in the ongoing efforts to combat climate change and foster a greener, more sustainable world. Learn more about the project here. “We are excited about acquiring Silviculture Systems as it aligns perfectly with our core mission of establishing global portfolio of projects in our mission to create a cleaner and greener planet while driving shareholder value. The synergies between our technologies and their expertise in reforestation and biochar will enable us to tackle climate challenges from multiple angles,” said Chad Clovis, CEO of Karbon-X.SCS has devised a strategic plan to plant 250,000 trees this plantingseason and is also developing a cutting-edge biochar facility. Their visionary scope extends to planting millions more trees in the forthcoming years. These bold reforestation endeavours in Bolivia and other parts of South America align perfectly with Karbon-X’s primary mission of democratising carbon offset solutions and amplifying their ecological impact.”Uniting with Karbon-X opens the door to scaling and expanding our efforts to even greater heights. With a firsthand understanding of our potential in Bolivia gained over the past few years, I’m profoundly aware of the immense possibilities ahead. Partnering with Kabon-X provides us with the resources to make a profound impact.” adds Jeff Zelinski, Founder of Silviculture Systems.For media inquiries, please contact: Sarah Lachance, Director of Operations, at sarah@4everforest.orgFor information on Karbon-X, please contact: Daniel Haigh, Senior Marketing Manager, at dh@karbon-X.comAbout Karbon-XKarbon-X is a trailblazing company dediated to developing and implementing eco-friendly technologies that combat climate change and promote sustainability. With a focus on reducing carbon emissions and environmental impact, Karbon-X is committed to creating a cleaner and greener future.Website: https://karbon-x.comAbout Silviculture SystemsSilviculture Systems is a full-service climate change company and a pioneering force in reforestation and sustainable practices. The company is committed to environmental preservation and drives projects that foster ecosystem restoration and carbon offset initiatives. Silviculture Systems aims to redefine sustainable landmanagement through strategic partnerships and innovative solutions.SOURCE: Karbon-X Project Inc.View source version on accesswire.com: https://www.accesswire.com/777690/Karbon-X-Acquires-Silviculture-Systems-A-Synergistic-Step-towards-a-Sustainable-Future
ACCESSWIREAugust 28, 2023 – 9:10 AM PDTNews by QuoteMediawww.quotemedia.com
Share this article:
.isVisible {
display: block;
}
.isHidden {
display: none;
}
.loader {
font-size: 10px;
margin: 50px auto;
text-indent: -9999em;
width: 11em;
height: 11em;
border-radius: 50%;
background: #003398;
background: -moz-linear-gradient(left, #003398 10%, rgba(255, 255, 255, 0) 42%);
background: -webkit-linear-gradient(left, #003398 10%, rgba(255, 255, 255, 0) 42%);
background: -o-linear-gradient(left, #003398 10%, rgba(255, 255, 255, 0) 42%);
background: -ms-linear-gradient(left, #003398 10%, rgba(255, 255, 255, 0 42%);
background: linear-gradient(to right, #003398 10%, rgba(255, 255, 255, 0) 42%);
position: relative;
-webkit-animation: load3 1.4s infinite linear;
animation: load3 1.4s infinite linear;
-webkit-transform: translateZ(0);
-ms-transform: translateZ0);
transform: translateZ(0);
}
.loader:before {
width: 50%;
height: 50%;
background: #003398;
border-radius: 100% 0 0 0;
position: absolute;
top: 0;
left: 0;
content: ”;
}
.loader:after {
background: #041644;
width: 85%;
height: 85%;
border-radius: 50%;
content: ”;
margin: auto;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
@-webkit-keyframes load3 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes load3 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotat(360deg);
}
}
Stay In The Know
Subscribe to our daily morning update newsletter and never miss out on the need-to-know market news, movements, and more.
Your Name
Email Address
Get Newsletter
Thank you for signing up! You’re all set to receive the Morning Update newsletter
document.getElementById(‘newsletterSignupForm’).addEventListener(‘submit’, (e) => {
e.preventDefault();
setLoading();
let errors = [];
const preferred_name = e.target.elements.userName.value;
const email = e.target.elements.userEmail.value;
const source = window.location.href;
if(!e.target.elements.userName.value) {
setErrors([{id: ‘invalid.name’, message: ‘Please enter your name’}])
return;
}
if(!e.target.elements.userEmail.value) {
setErrors([{id: ‘invalid.email’, message: ‘Please enter your email address’}])
return;
}
const data = {
preferred_name,
email,
source,
publication_list: [‘mu’]
}
let baseUrl = ”;
if(source.includes(‘localhost’) || source.includes(‘.local’)) {
baseUrl = ‘http://fbmai.local/api’
} else if (source.includes(‘test-fd’)) {
baseUrl = ‘https://hercules-test.investorsobserver.com/api’
} else {
baseUrl = ‘https://hercules-api.investorsobserver.com/api’
}
processNewsletterSignup(data, baseUrl).then((res) => {
if(res.errors) {
setErrors(res.errors);
return;
}
if(res.success) {
setSuccess();
}
console.log(errors);
}).catch((e) => {
setNotLoading();
console.log(e);
})
})
const processNewsletterSignup = async (data, baseUrl) => {
const response = await fetch( baseUrl + ‘/publicationsignup’, {
method: ‘POST’,
body: JSON.stringify(data), // string or object
headers: {
‘Content-Type’: ‘application/json’
}
});
const result = await response.json(); //extract JSON from the http response
return result;
}
const setLoading = () => {
clearSuccess();
clearErrors();
const isLoadingEl = doument.getElementById(‘isLoading’);
const ewsletterSignUpFormEl = document.getElementById(‘newsletterSignupForm’);
isLoadingEl.classList.add(‘isVisible’);
isLoadingEl.classList.remove(‘isHidden’);
newsletterSignUpFormEl.classList.add(‘isHidden’);
newsletterSignUpFormEl.classList.remove(‘isVisible’);
}
const setNotLoading = (keepFormHidden = false) => {
const isLoadingEl = document.getElementById(‘isLoading’);
isLoadingEl.classList.remove(‘isVisible’);
isLoadingEl.classList.add(‘isHidden’);
if(!keepFormHidden) {
const newsletterSignUpFormEl = document.getElementById(‘newsletterSignupForm’);
newsletterSignUpFormEl.classList.remove(‘isHidden’);
newsletterSignUpFormEl.classList.add(‘isVisible’);
}
}
const setErrors = (errors) => {
setNotLoading();
const errorMessagesEl = document.getElementById(‘errorMessages’);
errorMessagesEl.classList.add(‘isVisible’);
errorMessagesEl.classList.remove(‘isHidden’);
let frontEndUrl = ‘https://www.investorsobserer.com’;
errors.forEach((e) => {
const errAlertMsg = document.createElement(“div”);
errAlertMsg.className = ‘alert-msg danger’
let node = ”
if(e.message.includes(‘log in to continue’)) {
const loginLink = document.createElement(“a”);
const loginLinkText = document.createTextNode(‘You already have an account. Please log in to continue’)
loginLink.appendChild(loginLinkText);
loginLink.title = “Log In”;
loginLink.href = frontEndUrl + ‘/login’;
node = loginLink
} else {
node = document.createTextNode(e.message);
}
errAlertMsg.appendChild(node);
document.getElementById(‘errorMessages’).appendChild(errAlertMsg)
})
}
const clearErrors = () => {
setNotLoading();
const errorMessagesEl = document.getElementById(‘errorMessages’);
errorMessagesEl.classList.remove(‘isVisible’);
errorMessagesEl.classList.add(‘isHidden’);
document.querySelectorAll(‘.alert-msg.danger’).forEach(el => el.remove())
}
const setSuccess = () => {
setNotLoading(true); const successMessageEl = document.getElementById(‘successMessage’);
successMessageEl.classList.add(‘isVisible’);
successMessageEl.classList.remove(‘isHidden’);
}
const clearSuccess = () => {
setNotLoading();
const successMessageEl = document.getElementById(‘successMessage’);
successMessageEl.classList.remove(‘isVisible’);
successMessageEl.classList.add(‘isHidden’);
}
Related Articles
Starcore Commences Exploration in the Golden Triangle, British Columbia
Tuesday, August 29, 2023 02:30 AM | Newsfile via QuoteMedia
Orexo secures patent protection in the US for OX640, a nasal epinephrine powder product
Tuesday, August 29, 2023 02:16 AM | PR Newswire via QuoteMedia
PureTech Health plc – Half-Yer Report
Tuesday, August 29, 2023 02:00 AM | Business Wire via QuoteMedia
Evotec SE Reports Results for the First Half-year 202 and Provides Corporate Updates
Tuesday, August 29, 2023 01:20 AM | ACCESSWIRE via QuoteMedia
Vice Health and Wellness Announces Close of Equity Financing
Tuesday, August 29, 2023 12:33 AM | Newsfile via QuoteMedia
Meta Trading Club Launches Groundbreaking MTC Incubator Program, Transforming Trading, and Investing Education
Tuesday, August 29, 2023 12:20 AM | Newsfile via QuoteMedia
Related Companies
KARX
You May Also Like
(adsbygoogle = window.adsbygoogle || []).push({});