npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

marketplace-toolbar

v3.0.53

Published

Stack Sports Marketplace toolbar. This component will allow authenticated users to switch between applications as well as providing them with recommendations for other services.

Downloads

3,497

Readme

Stack Toolbar

Overview

Stack Toolbar is a lightweight web component injected into a hosting application’s DOM. It provides two different functionalities

  1. Context switching. Using the currently logged in user, the toolbar will gather your claims from SSO (which should be a list of subscription ids representing the sites/application accessible to you) and render a list of links.

  2. A marketing profile. This profile contains recommendations based on the sites currently accessible to you.

Technologies

  1. StencilJs - Stencil is a toolchain for building reusable, scalable Design Systems. Generate small, blazing fast, and 100% standards based Web Components that run in every browser. Additionally, we use @stencil/store for a lightweight state store.
  2. TailwindCss - A utility-first CSS framework packed with classes like flex, pt-4, text-center and rotate-90 that can be composed to build any design, directly in your markup

Setup

Cloning the Repository

git clone https://gitlab.bluestarsports.io/marketplace/stack-toolbar
cd stack-toolbar
npm install
npm run start

After a moment, a browser window should open at the following address: http://localhost:3333. From here, Stencil will continue to build and eventually render a test page hosting the toolbar. This will also enable hot-loading, so your changes will be immediately available upon saving.

Local Integration/Debugging

I prefer to doIf you need to test this package locally on an integrated solution, do the following:

Install

  1. From the toolbar root run: npm link

  2. From the integrated solution run: npm link marketplace-toolbar

Uninstall

  1. From the integrated solution run: npm unlink --no-save marketplace-toolbar

  2. From the toolbar root run: npm unlink

Configuration

stencil.config.ts contains a basic mechanism for loading environment dependent configuration data. All configuration related assets can be found here: src/global

export default function () {
  // or export default async function()

  const url = 'https://cdn.jsdelivr.net/npm/marketplace-toolbar@latest/dist/x-stack-toolbar/assets';
  setupConfig({
    assetBasePath: url,
    production: true,
    apiPath: 'https://ipa.stacksports.com',
    apiKey: 'VgB2hppXpQ',
  });
}

assetBasePath: points to a public CDN network for internal assets.

apiPath: points to the Marketplace API host. You can modify this value for local development.

apiKey: if you are hitting the Marketplace API through Kong, you will need to supply an apiKey.

Production Build

Run the following command to build for production. Make sure you bump the package number in package.json prior to building. stencil.config.ts contains a function that sets the build version number from package.json

npm run build-prod

Deploying The Package

Currently we publish to the public NPM repository. I would like to change this at some point.

Simply run

npm publish

Deploying to internal NPM (Stack) - Currently not used

npm set registry http://npm-cache.bluestarsports.io:4873
npm adduser --registry http://npm-cache.bluestarsports.io:4873

npm publish --registry

Making Your Package Visible

To make your package visible, you need to clear the toolbar version cache in Marketplace . This can be done using the Marketplace REST API through the StackHub Postman workspace.

Stack Hub Workspace/Marketplace/Toolbar/Delete Toolbar Cache.

Currently we don’t employ a distributed cache in Marketplace; therefore, cached data is local to it’s containing server. This means for x number of pods, you will need to call “Delete Toolbar Cache” x times. In staging, you must call it 3 times. I don’t like it anymore than you do.

*At some point we need to deploy a Redis cluster.

Google Tag Manager Integration Code

the code below should be copied+pasted into GTM. The only parameters that need to be set are

  1. subscriptionId

  2. defaultBackgroundColor

  3. isProduction


<!--
    this chunk assumes you have a dedicated container rendering within your application.
    you must place the following <div id='mp-toolbar-host'></div> adjacent to your main application toolbar.
 -->
<script type="module">

  var config = {
    subscriptionId : "5fce52b3d40f60002ecc637c",
    defaultBackgroundColor  : "#0f0f0f",
    isProduction : false
  }
var marketplaceModuleLoader =  isProduction =>
{
  var productionUrl = 'https://api.stacksports.com/marketplace/toolbar/import';
  var stagingUrl = 'https://ipa.stacksports.com/marketplace/toolbar/import';
  var response = await fetch(isProduction ? productionUrl : stagingUrl);
  var settings = await response.json();
  var factoryModule = await import(settings.toolbarFactoryUrl);
  var loaderModule = await import(settings.toolbarLoaderUrl);
  loaderModule.defineCustomElements();
  return {
    injector: (subscriptionId, backgroundColor, interationOverrides) => {
      return factoryModule.marketplaceToolbarInjector(settings.versionKey,
                                                      subscriptionId,
                                                      settings.userProfileEndpoint, backgroundColor,
                                                      interationOverrides);
    }
  };

};
  //now inject the toolbar
  var loader = await marketplaceModuleLoader(config.isProduction);
           loader.injector(
               config.subscriptionId,
               config.defaultBackgroundColor);


</script>

Images

https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/UsSoccerConnect/assets/USSC_Logo_Horizontal_CwJT8bnTvEI.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/UsSoccerConnect/assets/USSC_Logo_Horizontal_1x_r9Y2GrmCYr8U.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/UsSoccerConnect/assets/USSC_Logo_Horizontal_PBSS_1x_1_iZ7xiAyLF.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/UsSoccerConnect/assets/USSC_Logo_Horizontal_PBSS_eRDGNFfrKg.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/UsSoccerConnect/assets/USSC_Logo_Horizontal_white_oHsL1vENy.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/UsSoccerConnect/assets/USSC_Logo_Horizontal_white_1x_vTAz4pOJTtEW.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/UsSoccerConnect/assets/USSC_Logo_Horizontal_white_PBSS_PkCFELhZbF.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/UsSoccerConnect/assets/USSC_Logo_Stacked_HfTGEIm9t.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/UsSoccerConnect/assets/USSC_Logo_Horizontal_white_PBSS_1x_Wgdo_isv2Fi.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/UsSoccerConnect/assets/USSC_Logo_Stacked_PBSS_t_pIlQrKhn.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/UsSoccerConnect/assets/USSC_Logo_Stacked_white_HFEWJ25TB.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/UsSoccerConnect/assets/USSC_Logo_Stacked_1x_F8gYoEelOUzg.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/UsSoccerConnect/assets/USSC_Logo_Stacked_white_1x__skaj_AD39HP.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/UsSoccerConnect/assets/USSC_Logo_Stacked_PBSS_1x_NCuaSWvZPWUl.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/UsSoccerConnect/assets/USSC_Logo_Stacked_white_PBSS_1x_IWPNlmmC_m2.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/UsSoccerConnect/assets/USSC_Logo_Stacked_white_PBSS_gXA67DqRtT.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/TravelConnect/assets/Travel_Connect_Logo_1x_3ENcKoY6VVLs.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/TravelConnect/assets/Travel_Connect_Logo_white_1x_f0J95OSa1muV.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/TravelConnect/assets/Travel_Connect_Logo_JsQSl1I21.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/TravelConnect/assets/Travel_Connect_Logo_white__WH1JacjRR.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/TravelConnect/assets/Travel_Connect_Logo_white_red_DcsAJDsew.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/TravelConnect/assets/Travel_Connect_Logo_white_red_1x_fkzOWBKFux1.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/TournamentConnect/assets/Tournament_Connect_Logo_HTMl4J2xR3Zl.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/TournamentConnect/assets/Tournament_Connect_Logo_white_SkVsLJ7oRy0.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/TournamentConnect/assets/Tournament_Connect_Logo_1x_h8CjysYTi.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/TournamentConnect/assets/Tournament_Connect_Logo_white_red_aRSNMPGDaZDf.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/TeamInn/assets/TeamInn/Reverse_2x_FDXK6W2k08yY.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/TournamentConnect/assets/Tournament_Connect_Logo_white_1x_5WOUd4HipH.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/TournamentConnect/assets/Tournament_Connect_Logo_white_red_1x_5veE7U9Tg.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/TeamInn/assets/TeamInn/Reverse_Ufdu_Tbcmw.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/TeamInn/assets/TeamInn/Standard_2x_kdl0QyTpOZSw.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/TeamInn/assets/TeamInn/White_2x_nO9rhweUki6.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/TeamInn/assets/TeamInn/Standard_AeemUMYeLK.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/TeamInn/assets/TeamInn/White_aqDhMPgJp.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/TeamConnect/assets/Team_Connect_Logo_white_A6Lu_p5GBUc.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/TeamConnect/assets/Team_Connect_Logo_vBVY-yDfPt.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/TeamConnect/assets/Team_Connect_Logo_1x_o_mAkDFMCk.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/TeamConnect/assets/Team_Connect_Logo_white_1x_2OFm56yDG.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/TeamConnect/assets/Team_Connect_Logo_white_red_JsZCuplWoqf_.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Steva/assets/Steva_Logo_PBSS_kTsUGsj6s0N.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/TeamConnect/assets/Team_Connect_Logo_white_red_1x_sIzAcUpus.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Steva/assets/Steva_Logo_White_PBSS_ZiWEmlmu6RzG.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Steva/assets/Steva_Logo_White_Red_PBSS_6eDoPuY2P7s.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Steva/assets/Steva_Logo_PBSS_1x_iyYbRvRXKE.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Steva/assets/Steva_Logo_White_PBSS_1x_SkvrKIrks.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/StackTeamApp/assets/StackTeam/Reverse_3sdtYDczni4F.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/StackTeamApp/assets/StackTeam/Standard__PcUBxNPcxA.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Steva/assets/Steva_Logo_White_Red_PBSS_1x_3f0qNDNOoP.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/StackTeamApp/assets/StackTeam/Reverse_1x_tftOf-2KqY.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/StackTeamApp/assets/StackTeam/Standard_2x_9iuJGIbMq.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/StackTeamApp/assets/StackTeam/White_4g_BkbHqk9dY.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/StackSports/assets/Stack_Logo_White_Iav6yhGNlLY.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/StackTeamApp/assets/StackTeam/White_1x_xb69wk-69.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/StackSports/assets/Stack_Logo_White_1x_fgZf8fs1id.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/StackRaise/assets/StackRaise/Full_Colors_ypNIZjETS32_.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/StackRaise/assets/StackRaise/Reverse_MaNmZEf2CO4.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/StackRaise/assets/StackRaise/Reverse_White_Bk_CSaA1FjfO.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/StackRaise/assets/StackRaise/Full_Colors_1x_cRMZDAsiOE.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/StackRaise/assets/StackRaise/Reverse_1x_xl6pYmMMG.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/StackRaise/assets/StackRaise/Standard_35mtWiSmV8O.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/StackRaise/assets/StackRaise/Reverse_White_1x_00EkcIXesa.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/StackRaise/assets/StackRaise/Standard_1x_6HBXYVDS1.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Stackpay/assets/Stack_Pay_Logo__siXCJNdxn4g.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Stackpay/assets/Stack_Pay_Logo_White_UXxhqqzRJxJ5.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Stackpay/assets/Stack_Pay_Logo_White_1x_uPyjVNqmiwP.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Stackpay/assets/Stack_Pay_Logo_1x_DKfUREhn-B.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/SportsConnect/assets/SC_Mark_Red_2x_N6xcrCcQOPHN.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/SportsConnect/assets/SC_Mark_White_2x_ELh3r8ykosJ.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/SportsConnect/assets/SC_Mark_Red_QxPBFBRQh.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/SportsConnect/assets/SC_Mark_White_crGJAsFA5.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/SportsConnect/assets/Sports_Connect_Logo_1x_kVIeDIyzuEy.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/SportsConnect/assets/Sports_Connect_Logo_vz1ioXBsUf.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/SportsConnect/assets/Sports_Connect_Logo_white_IQ95f4Td3.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/SportsConnect/assets/Sports_Connect_Logo_white_1x_wqWJOHu2txOq.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/SportsConnect/assets/Sports_Connect_Logo_white_red_gjTxw_hPIc.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/SportsConnect/assets/Sports_Connect_Logo_white_red_1x_O25TqN2Ml.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Skyhawks/assets/Skyhawks_Logo_FrghduYs9Foz.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Skyhawks/assets/Skyhawks_Logo_White_v7yVuXmcz5nz.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Skyhawks/assets/Skyhawks_Logo_White_red_46NaVda63L1.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Skyhawks/assets/Skyhawks_Logo_1x_8VhQuKZLid.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Skyhawks/assets/Skyhawks_Logo_White_1x_WvriqTfP2.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/SDICamps/assets/SDI_Camps/Reverse_Shzz0dQz1ap4.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Skyhawks/assets/Skyhawks_Logo_White_red_1x_dTqKl6QCve.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/SDICamps/assets/SDI_Camps/Reverse_1x_K73jW6OarS.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/SDICamps/assets/SDI_Camps/Reverse_White_1x_ISS4dwVO2dU.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/SDICamps/assets/SDI_Camps/Standard_1x_EMbCdAsbHxA.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/SDICamps/assets/SDI_Camps/Reverse_White_Rq04lheOD.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/SDICamps/assets/SDI_Camps/Standard_PKWa-6WxX.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Pointstreak/assets/POINTSTREAK_Logo_1x_84YZi_aIA18.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Pointstreak/assets/POINTSTREAK_Logo_C0IjwxaVbI.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Pointstreak/assets/POINTSTREAK_Logo_white_ewsikssV0.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Pointstreak/assets/POINTSTREAK_Logo_white_1x_cJ6yjakhrlLX.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Pointstreak/assets/POINTSTREAK_Logo_white_red_6dXP_SACU.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Pointstreak/assets/POINTSTREAK_Logo_white_red_1x_KpJUMN-Hd3j.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/OfficialsConnect/assets/Officials_Connect_Logo_1x_dCR0gI_-BBA.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/OfficialsConnect/assets/Officials_Connect_Logo_white_1x_ucNpVRLndeAh.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/OfficialsConnect/assets/Officials_Connect_Logo_Njzwqwsl0_.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/OfficialsConnect/assets/Officials_Connect_Logo_white_MpZe6MrS1.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/OfficialsConnect/assets/Officials_Connect_Logo_white_red_1x_GSOi4qhwAaAY.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Ignite/assets/Ignite_Logo_1x_LDx2wmLtEQL8.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Ignite/assets/Ignite_Logo_White_1x_BAkGDQvq65r.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/OfficialsConnect/assets/Officials_Connect_Logo_white_red_yE5vD8oeU0.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Ignite/assets/Ignite_Logo_e5sNWBQnAe.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Ignite/assets/Ignite_Logo_White_BFT7DvMwB.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Ignite/assets/Ignite_Logo_White_Red_1gW5k1OzP8eK.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Goaline/assets/GOALLINE_Logo_8fKfqv6YySx.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Ignite/assets/Ignite_Logo_White_Red_1x_4Sx_ZnMGgg.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Goaline/assets/GOALLINE_Logo_1x_W0nggEAwI.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Goaline/assets/GOALLINE_Logo_White_07nQdKV4wHVV.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Goaline/assets/GOALLINE_Logo_White_red_q_JPpETriuu.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Goaline/assets/GOALLINE_Logo_White_1x_7OAwIYCXlu.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Goaline/assets/GOALLINE_Logo_White_red_1x_0L3L4C7eN.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Gameplan/assets/Gameplan_Icon_yZbD1Mj8YPe-.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Gameplan/assets/Gameplan_Icon_1x_0quAinLC4X.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Gameplan/assets/Gameplan_Logo_PBSS_x27ud7bgUQa.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Gameplan/assets/Gameplan_Logo_White_PBSS_RjvLvdwESM_R.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Gameplan/assets/Gameplan_Logo_White_Red_PBSS_7j95B2u2qB9.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Gameplan/assets/Gameplan_Logo_PBSS_1x_QxoQYZbZR.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Gameplan/assets/Gameplan_Logo_White_PBSS_1x_83WioOuXIx.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Gameplan/assets/Gameplan_Logo_White_Red_PBSS_1x_CR3vNKwog.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Gameday/assets/Gameday_Logo_Blue_red_PpTD1BzX46s2.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Gameday/assets/Gameday_Logo_Blue_teal_wjTO5BmuLyZ.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Gameday/assets/Gameday_Logo_Blue_red_1x_zJCQXIQ7yk.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Gameday/assets/Gameday_Logo_white_k4tD5ePmYDgm.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Gameday/assets/Gameday_Logo_white_1x_8d_ZOMwNsIOf.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/CaptainU/assets/CaptainU_logo_primary_ncfXEsEo2Af.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/Gameday/assets/Gameday_Logo_Blue_teal_1x_jkGKcI-GI.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/CaptainU/assets/CaptainU_logo_primary_u2UdjdoAf.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/CaptainU/assets/CaptainU_logo_primary_Reversed_2f291dWu36ls.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/CaptainU/assets/CaptainU_logo_primary_White_F1gUBPhelHA.svg https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/CaptainU/assets/CaptainU_logo_primary_Reversed_VD3V-D2VaT.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/CaptainU/assets/CaptainU_logo_primary_White_8rKI4QBTz.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/CaptainU/assets/Fill_44_2x_Qd9E3dbWt3mC.png https://ik.imagekit.io/gm5jtgeq4sp//StackSportsBrand/CaptainU/assets/Fill_44_e3pxkOPG5z.svg