Senators’ Zub questionable, Kleven out for Game 2 against Hurricanes

1 day ago 1

Rommie Analytics

Senators defenceman Artem Zub will be a game-time decision Monday.

Ottawa head coach Travis Green said following his team’s morning skate the shutdown blueliner’s availability will be determined after warm-ups with the Senators trailing the Carolina Hurricanes 1-0 in their first-round playoff series.

Live coverage is available on Sportsnet and Sportsnet+ beginning at 7:30 p.m. ET / 4:30 p.m. PT.

Zub was injured in the first period of Saturday’s 2-0 loss to open the best-of-seven matchup after colliding with Hurricanes forward Seth Jarvis.

The 30-year-old ranked third for Ottawa in ice time during the regular season at 20 minutes 48 seconds, trailing only regular top-pair defence partner Jake Sanderson (24:50) and Thomas Chabot (22:35).

Tyler Kleven wore a regular jersey at the morning skate for the first time since taking a puck to the face in a game against the Buffalo Sabres in early April. The hulking defender sported extra protection for his jaw Monday, but Green said the 24-year-old will sit for an eighth straight game.

Ottawa had to go 12 skaters deep into its blue-line reserves at one point during the regular season because of a rash of injuries.

“We had a lot of new defencemen playing,” Green said. “You could tell that our group was a little bit concerned, even from the coaching standpoint. 

“Now that we’ve gone through that, I think that’s prepared us now.”

The series shifts to Ottawa for Game 3 on Thursday night at Canadian Tire Centre. Game 4 is set for Saturday afternoon in the nation’s capital.

if (!res.ok) { throw new Error('Failed to fetch odds data'); }

const data = await res.json(); const oddsData = data?.data?.game?.details?.current_line; const visitingTeam = data?.data?.game?.visiting_team; const visitingTeamLogo = data?.data?.game?.visiting_team?.image_url_90; const homeTeam = data?.data?.game?.home_team; const homeTeamLogo = data?.data?.game?.home_team?.image_url_90; const gameTimestamp = data?.data?.game?.details?.timestamp;

return { oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp }; }

async function renderBetMGM(componentId, league, gameId) { let oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp, error;

const container = document.getElementById(componentId + '-odds'); if (!container) return;

try { ({ oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp } = await fetchOddsData(league, gameId)); } catch (err) { error = err.message; }

if (error) { container.innerHTML = `

Error: ${error}

`; return; }

if (!oddsData) { container.innerHTML = `

Odds data not available

`; return; }

let gameDate = new Date(gameTimestamp * 1000); const gameDateFormatted = gameDate.toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' });

container.innerHTML = `

BetMGM Odds
Moneyline
${visitingTeam.short_name}
${oddsData.away_money > 0 ? `+${oddsData.away_money}` : oddsData.away_money}
${homeTeam.short_name}
${oddsData.home_money > 0 ? `+${oddsData.home_money}` : oddsData.home_money}
Spread
${oddsData.fav_id === visitingTeam.id ? oddsData.fav_points : oddsData.fav_points > 0 ? `-${oddsData.fav_points}` : `+${Math.abs(oddsData.fav_points)}`}
${oddsData.fav_id === visitingTeam.id ? oddsData.fav_money > 0 ? `+${oddsData.fav_money}` : oddsData.fav_money : oddsData.underdog_money > 0 ? `+${oddsData.underdog_money}` : oddsData.underdog_money}
${oddsData.fav_id === homeTeam.id ? oddsData.fav_points : oddsData.fav_points > 0 ? `-${oddsData.fav_points}` : `+${Math.abs(oddsData.fav_points)}`}
${oddsData.fav_id === homeTeam.id ? oddsData.fav_money > 0 ? `+${oddsData.fav_money}` : oddsData.fav_money : oddsData.underdog_money > 0 ? `+${oddsData.underdog_money}` : oddsData.underdog_money}
Over/Under
O ${oddsData.total}
${oddsData.over_money > 0 ? `+${oddsData.over_money}` : oddsData.over_money}
U ${oddsData.total}
${oddsData.under_money > 0 ? `+${oddsData.under_money}` : oddsData.under_money}

`; }

// Example usage renderBetMGM('block_46a3c7bdaee8cca4fdb0088bb656e5cc', 'NHL', 'ad64132b-b5f3-4937-9528-1b2b1d411a79');

Read Entire Article