Panthers’ Luostarinen, Lundell expected to play Game 1 of Stanley Cup Final

Florida Panthers forwards Eetu Luostarinen and Anton Lundell should be good to go for the start of the Stanley Cup Final.

Panthers’ Luostarinen, Lundell expected to play Game 1 of Stanley Cup Final

Florida Panthers forwards Eetu Luostarinen and Anton Lundell should be good to go for the start of the Stanley Cup Final.

Although Luostarinen and Lundell did not practise with the team Saturday, Maurice told reporters afterward that both should be fine.

Maurice said “the only question mark” is forward A.J. Greer, who remains day-to-day with an undisclosed injury.

Luostarinen left midway through the Panthers’ 5-3 series-clinching win over the Carolina Hurricanes on Thursday. The 26-year-old crashed into the boards after missing a check on Hurricanes’ Taylor Hall and was later ruled out for the remainder of the game.

Luostarinen has 13 points (four goals and nine assists) in 17 games during the playoffs.

It’s unclear why Lundell was absent from practice. He has 12 points (five goals and seven assists) in 17 post-season games.

Greer missed Game 4 of the Eastern Conference Final on Monday but returned for Thursday’s finale. He has three points (two goals and one assist) in 12 playoff games.

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_833406a7ec9acbbc415dcc0867266e9f', 'NHL', 'ca1fadb5-22cb-4a8d-b5e5-3154740b8c9e');

The defending champion Panthers take on the Edmonton Oilers in a rematch of last year’s Stanley Cup Final.

Watch Game 1 live Wednesday starting at 8 p.m. ET / 6 p.m. MT on Sportsnet and Sportsnet+.