export declare const checkInitMattelContracts = "\nimport NFTStorefrontV2 from address\nimport NonFungibleToken from 0xNonFungibleToken\nimport MetadataViews from 0xMetadataViews\nimport FungibleToken from 0xFungibleToken\nimport FlowToken from 0xFlowToken\nimport FiatToken from 0xFiatToken\nimport HWGarageCard from 0xHWGarageCard\nimport HWGarageCardV2 from 0xHWGarageCardV2\nimport HWGaragePack from 0xHWGaragePack\nimport HWGaragePackV2 from 0xHWGaragePackV2\nimport HWGarageTokenV2 from 0xHWGarageTokenV2\nimport BBxBarbieCard from 0xBBxBarbieCard\nimport BBxBarbiePack from 0xBBxBarbiePack\nimport BBxBarbieToken from 0xBBxBarbieToken\nimport Gamisodes from 0xGamisodes\n\naccess(all)\nfun main(address: Address): {String: Bool} {\n let account = getAccount(address)\n\n let accountStatus: {String: Bool} = {}\n\n let nftPubPath = HWGarageCard.CollectionPublicPath\n let nftCollection = account.capabilities.get<&{NonFungibleToken.Receiver}>(nftPubPath).borrow()\n\n let packPubPath = HWGaragePack.CollectionPublicPath\n let packCollection = account.capabilities.get<&{NonFungibleToken.Receiver}>(packPubPath).borrow()\n\n let nftV2PubPath = HWGarageCardV2.CollectionPublicPath\n let nftV2Collection = account.capabilities.get<&{NonFungibleToken.Receiver}>(nftV2PubPath).borrow()\n\n let packV2PubPath = HWGaragePackV2.CollectionPublicPath\n let packV2Collection = account.capabilities.get<&{NonFungibleToken.Receiver}>(packV2PubPath).borrow()\n\n let tokenV2PubPath = HWGarageTokenV2.CollectionPublicPath\n let tokenV2Collection = account.capabilities.get<&{NonFungibleToken.Receiver}>(tokenV2PubPath).borrow()\n\n let nftBBPubPath = BBxBarbieCard.CollectionPublicPath\n let nftBBCollection = account.capabilities.get<&{NonFungibleToken.Receiver}>(nftBBPubPath).borrow()\n\n let packBBPubPath = BBxBarbiePack.CollectionPublicPath\n let packBBCollection = account.capabilities.get<&{NonFungibleToken.Receiver}>(packBBPubPath).borrow()\n\n let tokenBBPubPath = BBxBarbieToken.CollectionPublicPath\n let tokenBBCollection = account.capabilities.get<&{NonFungibleToken.Receiver}>(tokenBBPubPath).borrow()\n\n //todo enable later\n //let fiatTokenPubPath = FiatToken.VaultReceiverPubPath\n //let fiatTokenCollection = account.capabilities.get<&FiatToken.Vault{FungibleToken.Receiver}>(fiatTokenPubPath).borrow()\n\n //let NFTStorefrontV2 = NFTStorefrontV2.StorefrontPublicPath\n let StorefrontV2 = account.capabilities.borrow<&{NFTStorefrontV2.StorefrontPublic}>(\n NFTStorefrontV2.StorefrontPublicPath\n )\n\n //let gamisodesCollection = account.capabilities.get<&{NonFungibleToken.Receiver}>(Gamisodes.COLLECTION_PUBLIC_PATH)\n //.borrow()\n\n\n if nftCollection != nil {\n accountStatus.insert(key: \"HWGarageCard\", true)\n } else {\n accountStatus.insert(key: \"HWGarageCard\", false)\n }\n\n if nftV2Collection != nil {\n accountStatus.insert(key: \"HWGarageCardV2\", true)\n } else {\n accountStatus.insert(key: \"HWGarageCardV2\", false)\n }\n\n if packCollection != nil {\n accountStatus.insert(key: \"HWGaragePack\", true)\n } else {\n accountStatus.insert(key: \"HWGaragePack\", false)\n }\n\n if packV2Collection != nil {\n accountStatus.insert(key: \"HWGaragePackV2\", true)\n } else {\n accountStatus.insert(key: \"HWGaragePackV2\", false)\n }\n\n if tokenV2Collection != nil {\n accountStatus.insert(key: \"HWGarageTokenV2\", true)\n } else {\n accountStatus.insert(key: \"HWGarageTokenV2\", false)\n }\n\n if nftBBCollection != nil {\n accountStatus.insert(key: \"BBxBarbieCard\", true)\n } else {\n accountStatus.insert(key: \"BBxBarbieCard\", false)\n }\n\n if packBBCollection != nil {\n accountStatus.insert(key: \"BBxBarbiePack\", true)\n } else {\n accountStatus.insert(key: \"BBxBarbiePack\", false)\n }\n\n if tokenBBCollection != nil {\n accountStatus.insert(key: \"BBxBarbieToken\", true)\n } else {\n accountStatus.insert(key: \"BBxBarbieToken\", false)\n }\n\n if StorefrontV2 != nil {\n accountStatus.insert(key: \"StorefrontV2\", true)\n } else {\n accountStatus.insert(key: \"StorefrontV2\", false)\n }\n\n //todo enable later\n //if fiatTokenCollection != nil {\n // accountStatus.insert(key: \"FiatToken\", true)\n //} else {\n // accountStatus.insert(key: \"FiatToken\", false)\n //}\n\n //if gamisodesCollection != nil {\n // accountStatus.insert(key: \"Gamisodes\", true)\n //} else {\n // accountStatus.insert(key: \"Gamisodes\", false)\n //}\n\n return accountStatus\n}\n\n";