Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 162204698
ITEM: 203154835
The moment Utah hockey fans have been waiting for is finally here Charge tusks first onto the ice with the newly named Utah Mammoth by grabbing this Tribute Quarter-Zip Pullover from Antigua Inspired by the strength and earth-shattering presence of the ancient giants that called Utah home 10000 years ago the club logo features a mammoth mid-charge with the Wasatch Mountain Range's snow-capped peaks as the silhouette incorporating both the past and present glory of the great state of Utah Featuring a cozy fabric construction this piece will keep you comfortable as you roar "Tusks up" at the next Utah Mammoth game
Features and Benefits
Long sleeve
Material: 100% Polyester
Brand: Antigua
Lightweight pullover suitable for mild temperatures
Officially licensed
Antigua 'A' at right cuff
1/4-Zip
Mock neck with zipper garage
Open cuff and hem
Machine wash, tumble dry low
Rolled shoulder with saddle sleeves
Imported
Specifications
Origin: Imported
Insulation: No
Temperature: Mild
Clothing Type: Jackets
Sleeve length: Long Sleeve
Activity: Hockey
Material: 100% Polyester
Gender: Men's
Zipper: 1/4 Zip
Size Range: Men's
Moisture Wicking: No
Care: Machine wash, tumble dry low
Water Resistant: No
Product Type: Outerwear
Flame Resistant: No
Age Group: Adults'
Style: Light Jacket
Hood: No
function updateCustomerIdStorage() {
const sourceKey = 'aso_cdp_data';
const targetKey = 'm_cdp_customer_id';
let customerId = null;
try {
const storedValue = localStorage.getItem(sourceKey);
if (storedValue) {
const data = JSON.parse(storedValue);
customerId = data.cdpData?.customerId;
} else {
console.warn(`Source Key "${sourceKey}" not found in local storage.`);
}
} catch (error) {
console.error(`Error parsing JSON from source key "${sourceKey}":`, error);
}
if (customerId) {
localStorage.setItem(targetKey, customerId);
// console.log(`Successfully set "${targetKey}" to: ${customerId}`);
} else {
localStorage.removeItem(targetKey);
// console.log(`No customerId found. Removed key "${targetKey}" from local storage.`);
}
}
updateCustomerIdStorage();